ITADN
solidjs-community/solid-primitives

版本发布 8

@solid-primitives/a11y@1.0.0-next.3预发布
? · 18 天前

### Patch Changes - Bump the `solid-js`/`@solidjs/web`/`@solidjs/signals`/`babel-preset-solid` peer and dev dependency range to `2.0.0-rc.0`. No API or behavior changes on our end — this tracks upstream's move from the beta series into the release candidate. - Updated dependencies - @solid-primitives/utils@7.0.0-next.4

@solid-primitives/spring@1.0.0-next.2预发布
? · 2026-07-20

### Patch Changes - Updated dependencies [b7ef2f3] - @solid-primitives/utils@7.0.0-next.3

@solid-primitives/gestures@3.0.0-next.1预发布
? · 2026-07-04

### Patch Changes - 5fc4efa: Fix named imports breaking under Rolldown (Vite 8+ / Storybook 10.4.6+) bundlers. These packages re-export their public API via `export * from "./x.js"` barrels. Rollup resolves named imports through these at link time, but Rolldown's static analysis doesn't reliably follow `export *` for named-export resolution, causing errors like: ``` "createEventListener" is not exported by "@solid-primitives/event-listener/dist/index.js" ``` The build now also emits explicit `export { name } from "./x.js"` lines for every runtime export reachable through a barrel's `export *`, derived automatically from each submodule's compiled output — so `dist/` is bundler-agnostic regardless of how a given tool resolves star re-exports.

@solid-primitives/clipboard@1.6.5
? · 2026-07-04

### Patch Changes - 4af6707: Fix `createClipboard`'s `deferInitial` parameter being completely non-functional — `deferInitial || true` always evaluated to `true` regardless of the argument passed, so explicitly passing `deferInitial={false}` had no effect and the clipboard was never written from the initial signal value (resolves #790). Also corrected the JSDoc, which incorrectly claimed the default was `false` when the intended (and actual, once fixed) default is `true` — skip the initial write unless `deferInitial` is explicitly `false`.

@solid-primitives/stream@0.7.3
? · 2026-02-24

### Patch Changes - Updated dependencies [6680ab9] - @solid-primitives/utils@6.4.0

@solid-primitives/storage@4.3.4
? · 2026-02-24

### Patch Changes - Updated dependencies [6680ab9] - @solid-primitives/utils@6.4.0

@solid-primitives/pointer@0.3.5
? · 2026-02-24

### Patch Changes - Updated dependencies [6680ab9] - @solid-primitives/utils@6.4.0 - @solid-primitives/event-listener@2.4.5 - @solid-primitives/rootless@1.5.3

@solid-primitives/utils@6.4.0
? · 2026-02-24

### Minor Changes - 6680ab9: Add string transform utilities: `json`, `ndjson`, `lines`, `number`, `safe`, `pipe`. These are `(string) => T` transform functions useful as the `transform` option for SSE, WebSocket, and similar streaming primitives.