@ark-ui/solid 3.0.0-7 → 3.0.0
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.
- package/README.md +10 -4
- package/dist/cjs/index.js +1 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/source/components/color-picker/color-picker-view.jsx +0 -1
- package/dist/source/components/pagination/pagination-root.jsx +1 -0
- package/dist/types/components/color-picker/color-picker-view.d.ts +3 -4
- package/dist/types/components/pagination/index.d.ts +1 -1
- package/dist/types/components/pagination/pagination.d.ts +1 -1
- package/package.json +44 -44
|
@@ -6,7 +6,6 @@ import { useColorPickerContext } from './use-color-picker-context';
|
|
|
6
6
|
export const ColorPickerView = (props) => {
|
|
7
7
|
const api = useColorPickerContext();
|
|
8
8
|
const mergedProps = mergeProps(() => colorPickerAnatomy.build().view.attrs, props);
|
|
9
|
-
// TODO @segunadebayo
|
|
10
9
|
return (<Show when={api().format === props.format}>
|
|
11
10
|
<ark.div data-format={props.format} {...mergedProps}/>
|
|
12
11
|
</Show>);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { ColorFormat } from '@zag-js/color-picker';
|
|
2
|
-
import { type
|
|
3
|
-
export interface ColorPickerViewProps {
|
|
2
|
+
import { type HTMLArkProps } from '../factory';
|
|
3
|
+
export interface ColorPickerViewProps extends HTMLArkProps<'div'> {
|
|
4
4
|
format: ColorFormat;
|
|
5
|
-
children?: JSX.Element;
|
|
6
5
|
}
|
|
7
|
-
export declare const ColorPickerView: (props: ColorPickerViewProps) => JSX.Element;
|
|
6
|
+
export declare const ColorPickerView: (props: ColorPickerViewProps) => import("solid-js").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { ItemLabelDetails as PaginationItemLabelDetails, PageChangeDetails as PaginationPageChangeDetails, } from '@zag-js/pagination';
|
|
1
|
+
export type { ItemLabelDetails as PaginationItemLabelDetails, PageChangeDetails as PaginationPageChangeDetails, PageSizeChangeDetails as PaginationPageSizeChangeDetails, } from '@zag-js/pagination';
|
|
2
2
|
export { PaginationContext, type PaginationContextProps } from './pagination-context';
|
|
3
3
|
export { PaginationEllipsis, type PaginationEllipsisProps } from './pagination-ellipsis';
|
|
4
4
|
export { PaginationItem, type PaginationItemProps } from './pagination-item';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { ItemLabelDetails, PageChangeDetails } from '@zag-js/pagination';
|
|
1
|
+
export type { ItemLabelDetails, PageChangeDetails, PageSizeChangeDetails } from '@zag-js/pagination';
|
|
2
2
|
export { PaginationContext as Context, type PaginationContextProps as ContextProps, } from './pagination-context';
|
|
3
3
|
export { PaginationEllipsis as Ellipsis, type PaginationEllipsisProps as EllipsisProps, } from './pagination-ellipsis';
|
|
4
4
|
export { PaginationItem as Item, type PaginationItemProps as ItemProps } from './pagination-item';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/solid",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"accordion",
|
|
@@ -81,50 +81,50 @@
|
|
|
81
81
|
"sideEffects": false,
|
|
82
82
|
"dependencies": {
|
|
83
83
|
"@ark-ui/anatomy": "3.1.0",
|
|
84
|
-
"@zag-js/accordion": "0.
|
|
85
|
-
"@zag-js/avatar": "0.
|
|
86
|
-
"@zag-js/carousel": "0.
|
|
87
|
-
"@zag-js/checkbox": "0.
|
|
88
|
-
"@zag-js/clipboard": "0.
|
|
89
|
-
"@zag-js/collapsible": "0.
|
|
90
|
-
"@zag-js/color-picker": "0.
|
|
91
|
-
"@zag-js/combobox": "0.
|
|
92
|
-
"@zag-js/date-picker": "0.
|
|
93
|
-
"@zag-js/dialog": "0.
|
|
94
|
-
"@zag-js/dom-query": "0.
|
|
95
|
-
"@zag-js/editable": "0.
|
|
96
|
-
"@zag-js/file-upload": "0.
|
|
97
|
-
"@zag-js/hover-card": "0.
|
|
98
|
-
"@zag-js/file-utils": "0.
|
|
99
|
-
"@zag-js/i18n-utils": "0.
|
|
100
|
-
"@zag-js/menu": "0.
|
|
101
|
-
"@zag-js/number-input": "0.
|
|
102
|
-
"@zag-js/pagination": "0.
|
|
103
|
-
"@zag-js/pin-input": "0.
|
|
104
|
-
"@zag-js/popover": "0.
|
|
105
|
-
"@zag-js/presence": "0.
|
|
106
|
-
"@zag-js/progress": "0.
|
|
107
|
-
"@zag-js/radio-group": "0.
|
|
108
|
-
"@zag-js/rating-group": "0.
|
|
109
|
-
"@zag-js/select": "0.
|
|
110
|
-
"@zag-js/slider": "0.
|
|
111
|
-
"@zag-js/solid": "0.
|
|
112
|
-
"@zag-js/splitter": "0.
|
|
113
|
-
"@zag-js/switch": "0.
|
|
114
|
-
"@zag-js/tabs": "0.
|
|
115
|
-
"@zag-js/tags-input": "0.
|
|
116
|
-
"@zag-js/toast": "0.
|
|
117
|
-
"@zag-js/toggle-group": "0.
|
|
118
|
-
"@zag-js/tooltip": "0.
|
|
119
|
-
"@zag-js/tree-view": "0.
|
|
120
|
-
"@zag-js/types": "0.
|
|
84
|
+
"@zag-js/accordion": "0.51.1",
|
|
85
|
+
"@zag-js/avatar": "0.51.1",
|
|
86
|
+
"@zag-js/carousel": "0.51.1",
|
|
87
|
+
"@zag-js/checkbox": "0.51.1",
|
|
88
|
+
"@zag-js/clipboard": "0.51.1",
|
|
89
|
+
"@zag-js/collapsible": "0.51.1",
|
|
90
|
+
"@zag-js/color-picker": "0.51.1",
|
|
91
|
+
"@zag-js/combobox": "0.51.1",
|
|
92
|
+
"@zag-js/date-picker": "0.51.1",
|
|
93
|
+
"@zag-js/dialog": "0.51.1",
|
|
94
|
+
"@zag-js/dom-query": "0.51.1",
|
|
95
|
+
"@zag-js/editable": "0.51.1",
|
|
96
|
+
"@zag-js/file-upload": "0.51.1",
|
|
97
|
+
"@zag-js/hover-card": "0.51.1",
|
|
98
|
+
"@zag-js/file-utils": "0.51.1",
|
|
99
|
+
"@zag-js/i18n-utils": "0.51.1",
|
|
100
|
+
"@zag-js/menu": "0.51.1",
|
|
101
|
+
"@zag-js/number-input": "0.51.1",
|
|
102
|
+
"@zag-js/pagination": "0.51.1",
|
|
103
|
+
"@zag-js/pin-input": "0.51.1",
|
|
104
|
+
"@zag-js/popover": "0.51.1",
|
|
105
|
+
"@zag-js/presence": "0.51.1",
|
|
106
|
+
"@zag-js/progress": "0.51.1",
|
|
107
|
+
"@zag-js/radio-group": "0.51.1",
|
|
108
|
+
"@zag-js/rating-group": "0.51.1",
|
|
109
|
+
"@zag-js/select": "0.51.1",
|
|
110
|
+
"@zag-js/slider": "0.51.1",
|
|
111
|
+
"@zag-js/solid": "0.51.1",
|
|
112
|
+
"@zag-js/splitter": "0.51.1",
|
|
113
|
+
"@zag-js/switch": "0.51.1",
|
|
114
|
+
"@zag-js/tabs": "0.51.1",
|
|
115
|
+
"@zag-js/tags-input": "0.51.1",
|
|
116
|
+
"@zag-js/toast": "0.51.1",
|
|
117
|
+
"@zag-js/toggle-group": "0.51.1",
|
|
118
|
+
"@zag-js/tooltip": "0.51.1",
|
|
119
|
+
"@zag-js/tree-view": "0.51.1",
|
|
120
|
+
"@zag-js/types": "0.51.1"
|
|
121
121
|
},
|
|
122
122
|
"devDependencies": {
|
|
123
123
|
"@biomejs/biome": "1.7.3",
|
|
124
124
|
"@release-it/keep-a-changelog": "5.0.0",
|
|
125
125
|
"@solidjs/testing-library": "0.8.8",
|
|
126
|
-
"@storybook/addon-a11y": "8.1.
|
|
127
|
-
"@storybook/addon-essentials": "8.1.
|
|
126
|
+
"@storybook/addon-a11y": "8.1.3",
|
|
127
|
+
"@storybook/addon-essentials": "8.1.3",
|
|
128
128
|
"@testing-library/dom": "10.1.0",
|
|
129
129
|
"@testing-library/jest-dom": "6.4.5",
|
|
130
130
|
"@testing-library/user-event": "14.5.2",
|
|
@@ -132,13 +132,13 @@
|
|
|
132
132
|
"@types/testing-library__jest-dom": "5.14.9",
|
|
133
133
|
"globby": "14.0.1",
|
|
134
134
|
"jsdom": "24.0.0",
|
|
135
|
-
"lucide-solid": "0.
|
|
136
|
-
"release-it": "17.
|
|
135
|
+
"lucide-solid": "0.379.0",
|
|
136
|
+
"release-it": "17.3.0",
|
|
137
137
|
"resize-observer-polyfill": "1.5.1",
|
|
138
|
-
"rollup": "4.
|
|
138
|
+
"rollup": "4.18.0",
|
|
139
139
|
"rollup-preset-solid": "2.0.1",
|
|
140
140
|
"solid-js": "1.8.17",
|
|
141
|
-
"storybook": "8.1.
|
|
141
|
+
"storybook": "8.1.3",
|
|
142
142
|
"storybook-solidjs": "1.0.0-beta.2",
|
|
143
143
|
"storybook-solidjs-vite": "1.0.0-beta.2",
|
|
144
144
|
"typescript": "5.4.5",
|