@ctlyst.id/internal-ui 2.0.9 → 2.0.11
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/dist/components/button/index.d.ts +1 -1
- package/dist/components/data-table/components/data-table.d.ts +2 -2
- package/dist/components/form/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/layouting/index.d.ts +1 -1
- package/dist/components/loader/index.d.ts +1 -0
- package/dist/components/table/index.d.ts +1 -0
- package/dist/components/text/index.d.ts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/internal-ui.cjs.development.js +148 -58
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +13 -13
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +24 -60
- package/dist/internal-ui.esm.js.map +1 -1
- package/dist/provider/index.d.ts +1 -1
- package/package.json +2 -2
- package/dist/components/data-table/components/indeterminate-checkbox.d.ts +0 -8
package/dist/provider/index.d.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
export { default as Provider } from './components/provider';
|
2
2
|
export * from './components/provider';
|
3
|
-
export { ChakraProvider, ChakraProviderProps } from '@chakra-ui/react';
|
3
|
+
export { ChakraProvider, ChakraProviderProps, ColorMode, ColorModeScript, ColorModeScriptProps, } from '@chakra-ui/react';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ctlyst.id/internal-ui",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.11",
|
4
4
|
"description": "Voila Internal UI Component",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"module": "dist/internal-ui.esm.js",
|
@@ -66,5 +66,5 @@
|
|
66
66
|
"framer-motion": "^6.3.13",
|
67
67
|
"jest": "^26.6.3"
|
68
68
|
},
|
69
|
-
"gitHead": "
|
69
|
+
"gitHead": "4403d0d382227ce918982b8f6a1e7cf004c36b43"
|
70
70
|
}
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import type { CheckboxProps } from '@chakra-ui/react';
|
2
|
-
import React from 'react';
|
3
|
-
interface IndeterminateCheckboxProps extends CheckboxProps {
|
4
|
-
isIndeterminate?: boolean;
|
5
|
-
name: string;
|
6
|
-
}
|
7
|
-
declare const IndeterminateCheckbox: React.ForwardRefExoticComponent<IndeterminateCheckboxProps & React.RefAttributes<HTMLInputElement>>;
|
8
|
-
export default IndeterminateCheckbox;
|