@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/dist/esm/index.js
CHANGED
|
@@ -992,8 +992,6 @@ const ColorPickerValueText = props => {
|
|
|
992
992
|
const ColorPickerView = props => {
|
|
993
993
|
const api = useColorPickerContext();
|
|
994
994
|
const mergedProps = mergeProps$1(() => colorPickerAnatomy.build().view.attrs, props);
|
|
995
|
-
|
|
996
|
-
// TODO @segunadebayo
|
|
997
995
|
return createComponent(Show, {
|
|
998
996
|
get when() {
|
|
999
997
|
return api().format === props.format;
|
|
@@ -2526,7 +2524,7 @@ const usePagination = props => {
|
|
|
2526
2524
|
};
|
|
2527
2525
|
|
|
2528
2526
|
const PaginationRoot = props => {
|
|
2529
|
-
const [usePaginationProps, localProps] = createSplitProps()(props, ['count', 'defaultPage', 'id', 'ids', 'onPageChange', 'page', 'pageSize', 'siblingCount', 'translations', 'type']);
|
|
2527
|
+
const [usePaginationProps, localProps] = createSplitProps()(props, ['count', 'defaultPage', 'id', 'ids', 'onPageChange', 'onPageSizeChange', 'page', 'pageSize', 'siblingCount', 'translations', 'type']);
|
|
2530
2528
|
const api = usePagination(usePaginationProps);
|
|
2531
2529
|
const mergedProps = mergeProps$1(() => api().rootProps, localProps);
|
|
2532
2530
|
return createComponent(PaginationProvider, {
|