@ark-ui/solid 3.0.0-6 → 3.0.0-7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,3 @@
1
1
  export * from './components';
2
2
  export * from './providers';
3
+ export type { Assign, Optional } from './types';
@@ -1,5 +1,3 @@
1
- type DistributiveOmit<T, K extends keyof any> = T extends any ? Omit<T, K> : never;
2
- export type Assign<T, U> = DistributiveOmit<T, keyof U> & U;
1
+ export type Assign<T, U> = Omit<T, keyof U> & U;
3
2
  export type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
4
3
  export type CollectionItem = string | object;
5
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ark-ui/solid",
3
- "version": "3.0.0-6",
3
+ "version": "3.0.0-7",
4
4
  "description": "A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.",
5
5
  "keywords": [
6
6
  "accordion",