@ark-ui/react 3.0.0-3 → 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/components/pagination/index.d.cts +1 -1
- package/dist/components/pagination/index.d.ts +1 -1
- package/dist/components/pagination/pagination-root.cjs +1 -0
- package/dist/components/pagination/pagination-root.js +1 -0
- package/dist/components/pagination/pagination.d.cts +1 -1
- package/dist/components/pagination/pagination.d.ts +1 -1
- package/dist/components/tags-input/tags-input-root.d.cts +1 -1
- package/dist/components/tags-input/tags-input-root.d.ts +1 -1
- package/package.json +51 -51
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Welcome to Ark UI
|
|
2
2
|
|
|
3
|
-
Ark UI is a headless, open-source UI library with over 30+ components designed for building
|
|
3
|
+
Ark UI is a headless, open-source UI library with over 30+ components designed for building
|
|
4
|
+
reusable, scalable Design Systems. It supports a wide range of JavaScript frameworks, offering
|
|
5
|
+
dedciated packages for each supported framework.
|
|
4
6
|
|
|
5
7
|
## Supported Frameworks
|
|
6
8
|
|
|
@@ -97,7 +99,8 @@ export const MySlider = (props: SliderProps) => {
|
|
|
97
99
|
|
|
98
100
|
## Documentation
|
|
99
101
|
|
|
100
|
-
For more detailed documentation and examples, please visit the
|
|
102
|
+
For more detailed documentation and examples, please visit the
|
|
103
|
+
[official documentation](https://ark-ui.com/).
|
|
101
104
|
|
|
102
105
|
## Roadmap
|
|
103
106
|
|
|
@@ -105,8 +108,11 @@ You can request, vote for, and check upcoming features on our [roadmap](https://
|
|
|
105
108
|
|
|
106
109
|
## Contribution
|
|
107
110
|
|
|
108
|
-
We welcome contributions to Ark UI. Please read our
|
|
111
|
+
We welcome contributions to Ark UI. Please read our
|
|
112
|
+
[contributing guidelines](https://github.com/chakra-ui/ark/blob/main/CONTRIBUTING.md) for more
|
|
113
|
+
information on how to contribute.
|
|
109
114
|
|
|
110
115
|
## License
|
|
111
116
|
|
|
112
|
-
This project is licensed under the terms of the
|
|
117
|
+
This project is licensed under the terms of the
|
|
118
|
+
[MIT license](https://github.com/chakra-ui/ark/blob/main/LICENSE).
|
|
@@ -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 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';
|
|
@@ -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';
|
|
@@ -5,4 +5,4 @@ import { ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
|
5
5
|
|
|
6
6
|
export interface TagsInputRootProps extends Assign<HTMLArkProps<'div'>, UseTagsInputProps> {
|
|
7
7
|
}
|
|
8
|
-
export declare const TagsInputRoot: ForwardRefExoticComponent<TagsInputRootProps & RefAttributes<
|
|
8
|
+
export declare const TagsInputRoot: ForwardRefExoticComponent<TagsInputRootProps & RefAttributes<HTMLDivElement>>;
|
|
@@ -5,4 +5,4 @@ import { ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
|
5
5
|
|
|
6
6
|
export interface TagsInputRootProps extends Assign<HTMLArkProps<'div'>, UseTagsInputProps> {
|
|
7
7
|
}
|
|
8
|
-
export declare const TagsInputRoot: ForwardRefExoticComponent<TagsInputRootProps & RefAttributes<
|
|
8
|
+
export declare const TagsInputRoot: ForwardRefExoticComponent<TagsInputRootProps & RefAttributes<HTMLDivElement>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/react",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"accordion",
|
|
@@ -500,73 +500,73 @@
|
|
|
500
500
|
"sideEffects": false,
|
|
501
501
|
"dependencies": {
|
|
502
502
|
"@ark-ui/anatomy": "3.1.0",
|
|
503
|
-
"@zag-js/accordion": "0.
|
|
504
|
-
"@zag-js/avatar": "0.
|
|
505
|
-
"@zag-js/carousel": "0.
|
|
506
|
-
"@zag-js/checkbox": "0.
|
|
507
|
-
"@zag-js/clipboard": "0.
|
|
508
|
-
"@zag-js/collapsible": "0.
|
|
509
|
-
"@zag-js/color-picker": "0.
|
|
510
|
-
"@zag-js/color-utils": "0.
|
|
511
|
-
"@zag-js/combobox": "0.
|
|
512
|
-
"@zag-js/core": "0.
|
|
513
|
-
"@zag-js/date-picker": "0.
|
|
514
|
-
"@zag-js/date-utils": "0.
|
|
515
|
-
"@zag-js/dom-query": "0.
|
|
516
|
-
"@zag-js/dialog": "0.
|
|
517
|
-
"@zag-js/editable": "0.
|
|
518
|
-
"@zag-js/file-upload": "0.
|
|
519
|
-
"@zag-js/file-utils": "0.
|
|
520
|
-
"@zag-js/hover-card": "0.
|
|
521
|
-
"@zag-js/i18n-utils": "0.
|
|
522
|
-
"@zag-js/menu": "0.
|
|
523
|
-
"@zag-js/number-input": "0.
|
|
524
|
-
"@zag-js/pagination": "0.
|
|
525
|
-
"@zag-js/pin-input": "0.
|
|
526
|
-
"@zag-js/popover": "0.
|
|
527
|
-
"@zag-js/presence": "0.
|
|
528
|
-
"@zag-js/progress": "0.
|
|
529
|
-
"@zag-js/radio-group": "0.
|
|
530
|
-
"@zag-js/rating-group": "0.
|
|
531
|
-
"@zag-js/react": "0.
|
|
532
|
-
"@zag-js/select": "0.
|
|
533
|
-
"@zag-js/slider": "0.
|
|
534
|
-
"@zag-js/splitter": "0.
|
|
535
|
-
"@zag-js/switch": "0.
|
|
536
|
-
"@zag-js/tabs": "0.
|
|
537
|
-
"@zag-js/tags-input": "0.
|
|
538
|
-
"@zag-js/toast": "0.
|
|
539
|
-
"@zag-js/toggle-group": "0.
|
|
540
|
-
"@zag-js/tooltip": "0.
|
|
541
|
-
"@zag-js/tree-view": "0.
|
|
542
|
-
"@zag-js/types": "0.
|
|
503
|
+
"@zag-js/accordion": "0.51.1",
|
|
504
|
+
"@zag-js/avatar": "0.51.1",
|
|
505
|
+
"@zag-js/carousel": "0.51.1",
|
|
506
|
+
"@zag-js/checkbox": "0.51.1",
|
|
507
|
+
"@zag-js/clipboard": "0.51.1",
|
|
508
|
+
"@zag-js/collapsible": "0.51.1",
|
|
509
|
+
"@zag-js/color-picker": "0.51.1",
|
|
510
|
+
"@zag-js/color-utils": "0.51.1",
|
|
511
|
+
"@zag-js/combobox": "0.51.1",
|
|
512
|
+
"@zag-js/core": "0.51.1",
|
|
513
|
+
"@zag-js/date-picker": "0.51.1",
|
|
514
|
+
"@zag-js/date-utils": "0.51.1",
|
|
515
|
+
"@zag-js/dom-query": "0.51.1",
|
|
516
|
+
"@zag-js/dialog": "0.51.1",
|
|
517
|
+
"@zag-js/editable": "0.51.1",
|
|
518
|
+
"@zag-js/file-upload": "0.51.1",
|
|
519
|
+
"@zag-js/file-utils": "0.51.1",
|
|
520
|
+
"@zag-js/hover-card": "0.51.1",
|
|
521
|
+
"@zag-js/i18n-utils": "0.51.1",
|
|
522
|
+
"@zag-js/menu": "0.51.1",
|
|
523
|
+
"@zag-js/number-input": "0.51.1",
|
|
524
|
+
"@zag-js/pagination": "0.51.1",
|
|
525
|
+
"@zag-js/pin-input": "0.51.1",
|
|
526
|
+
"@zag-js/popover": "0.51.1",
|
|
527
|
+
"@zag-js/presence": "0.51.1",
|
|
528
|
+
"@zag-js/progress": "0.51.1",
|
|
529
|
+
"@zag-js/radio-group": "0.51.1",
|
|
530
|
+
"@zag-js/rating-group": "0.51.1",
|
|
531
|
+
"@zag-js/react": "0.51.1",
|
|
532
|
+
"@zag-js/select": "0.51.1",
|
|
533
|
+
"@zag-js/slider": "0.51.1",
|
|
534
|
+
"@zag-js/splitter": "0.51.1",
|
|
535
|
+
"@zag-js/switch": "0.51.1",
|
|
536
|
+
"@zag-js/tabs": "0.51.1",
|
|
537
|
+
"@zag-js/tags-input": "0.51.1",
|
|
538
|
+
"@zag-js/toast": "0.51.1",
|
|
539
|
+
"@zag-js/toggle-group": "0.51.1",
|
|
540
|
+
"@zag-js/tooltip": "0.51.1",
|
|
541
|
+
"@zag-js/tree-view": "0.51.1",
|
|
542
|
+
"@zag-js/types": "0.51.1"
|
|
543
543
|
},
|
|
544
544
|
"devDependencies": {
|
|
545
545
|
"@biomejs/biome": "1.7.3",
|
|
546
546
|
"@release-it/keep-a-changelog": "5.0.0",
|
|
547
|
-
"@storybook/addon-a11y": "8.1.
|
|
548
|
-
"@storybook/addon-essentials": "8.1.
|
|
549
|
-
"@storybook/react-vite": "8.1.
|
|
550
|
-
"@storybook/react": "8.1.
|
|
547
|
+
"@storybook/addon-a11y": "8.1.3",
|
|
548
|
+
"@storybook/addon-essentials": "8.1.3",
|
|
549
|
+
"@storybook/react-vite": "8.1.3",
|
|
550
|
+
"@storybook/react": "8.1.3",
|
|
551
551
|
"@testing-library/dom": "10.1.0",
|
|
552
552
|
"@testing-library/jest-dom": "6.4.5",
|
|
553
553
|
"@testing-library/react": "15.0.7",
|
|
554
554
|
"@testing-library/user-event": "14.5.2",
|
|
555
555
|
"@types/jsdom": "21.1.6",
|
|
556
|
-
"@types/react": "18.3.
|
|
556
|
+
"@types/react": "18.3.3",
|
|
557
557
|
"@types/react-dom": "18.3.0",
|
|
558
558
|
"@types/testing-library__jest-dom": "5.14.9",
|
|
559
|
-
"@vitejs/plugin-react": "4.
|
|
559
|
+
"@vitejs/plugin-react": "4.3.0",
|
|
560
560
|
"globby": "14.0.1",
|
|
561
561
|
"jsdom": "24.0.0",
|
|
562
|
-
"lucide-react": "0.
|
|
562
|
+
"lucide-react": "0.379.0",
|
|
563
563
|
"react": "18.3.1",
|
|
564
564
|
"react-dom": "18.3.1",
|
|
565
565
|
"react-frame-component": "5.2.6",
|
|
566
|
-
"react-hook-form": "7.51.
|
|
567
|
-
"release-it": "17.
|
|
566
|
+
"react-hook-form": "7.51.5",
|
|
567
|
+
"release-it": "17.3.0",
|
|
568
568
|
"resize-observer-polyfill": "1.5.1",
|
|
569
|
-
"storybook": "8.1.
|
|
569
|
+
"storybook": "8.1.3",
|
|
570
570
|
"typescript": "5.4.5",
|
|
571
571
|
"vite": "5.2.11",
|
|
572
572
|
"vite-plugin-dts": "3.9.1",
|