@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
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).
|
package/dist/cjs/index.js
CHANGED
|
@@ -1044,8 +1044,6 @@ const ColorPickerValueText = props => {
|
|
|
1044
1044
|
const ColorPickerView = props => {
|
|
1045
1045
|
const api = useColorPickerContext();
|
|
1046
1046
|
const mergedProps = solid.mergeProps(() => anatomy.colorPickerAnatomy.build().view.attrs, props);
|
|
1047
|
-
|
|
1048
|
-
// TODO @segunadebayo
|
|
1049
1047
|
return web.createComponent(solidJs.Show, {
|
|
1050
1048
|
get when() {
|
|
1051
1049
|
return api().format === props.format;
|
|
@@ -2578,7 +2576,7 @@ const usePagination = props => {
|
|
|
2578
2576
|
};
|
|
2579
2577
|
|
|
2580
2578
|
const PaginationRoot = props => {
|
|
2581
|
-
const [usePaginationProps, localProps] = createSplitProps()(props, ['count', 'defaultPage', 'id', 'ids', 'onPageChange', 'page', 'pageSize', 'siblingCount', 'translations', 'type']);
|
|
2579
|
+
const [usePaginationProps, localProps] = createSplitProps()(props, ['count', 'defaultPage', 'id', 'ids', 'onPageChange', 'onPageSizeChange', 'page', 'pageSize', 'siblingCount', 'translations', 'type']);
|
|
2582
2580
|
const api = usePagination(usePaginationProps);
|
|
2583
2581
|
const mergedProps = solid.mergeProps(() => api().rootProps, localProps);
|
|
2584
2582
|
return web.createComponent(PaginationProvider, {
|