@ctlyst.id/internal-ui 2.0.6 → 2.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. package/dist/components/button/__stories__/button.stories.d.ts +1 -1
  2. package/dist/components/button/index.d.ts +1 -0
  3. package/dist/components/image/index.d.ts +1 -0
  4. package/dist/components/index.d.ts +1 -0
  5. package/dist/components/layouting/index.d.ts +1 -12
  6. package/dist/components/list/index.d.ts +1 -0
  7. package/dist/components/popover/index.d.ts +1 -0
  8. package/dist/components/text/index.d.ts +1 -2
  9. package/dist/components/tooltip/__stories__/tooltip.stories.d.ts +10 -0
  10. package/dist/components/tooltip/index.d.ts +1 -0
  11. package/dist/config/theme/components/checkbox.d.ts +15 -1
  12. package/dist/config/theme/components/chips.d.ts +3 -0
  13. package/dist/config/theme/components/radio.d.ts +3 -0
  14. package/dist/hooks/index.d.ts +1 -0
  15. package/dist/index.d.ts +2 -0
  16. package/dist/internal-ui.cjs.development.js +224 -40
  17. package/dist/internal-ui.cjs.development.js.map +1 -1
  18. package/dist/internal-ui.cjs.production.min.js +5 -5
  19. package/dist/internal-ui.cjs.production.min.js.map +1 -1
  20. package/dist/internal-ui.esm.js +106 -36
  21. package/dist/internal-ui.esm.js.map +1 -1
  22. package/dist/provider/index.d.ts +1 -0
  23. package/package.json +3 -3
  24. package/dist/components/layouting/components/box.d.ts +0 -4
  25. package/dist/components/layouting/components/container.d.ts +0 -4
  26. package/dist/components/layouting/components/flex.d.ts +0 -4
  27. package/dist/components/layouting/components/grid.d.ts +0 -4
  28. package/dist/components/layouting/components/stack.d.ts +0 -4
  29. package/dist/components/layouting/components/wrap.d.ts +0 -4
  30. package/dist/components/text/components/text.d.ts +0 -4
@@ -1,2 +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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctlyst.id/internal-ui",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "description": "Voila Internal UI Component",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/internal-ui.esm.js",
@@ -35,7 +35,7 @@
35
35
  "@chakra-ui/system": "^2.3.0",
36
36
  "@chakra-ui/theme-tools": "^2.0.12",
37
37
  "@chakra-ui/utils": "^2.0.11",
38
- "@ctlyst.id/internal-icon": "^1.0.1",
38
+ "@ctlyst.id/internal-icon": "^1.0.2",
39
39
  "@tanstack/react-table": "^8.5.17",
40
40
  "axios": "^0.27.2",
41
41
  "clsx": "^1.1.1",
@@ -66,5 +66,5 @@
66
66
  "framer-motion": "^6.3.13",
67
67
  "jest": "^26.6.3"
68
68
  },
69
- "gitHead": "8040290da72a36cffccdee02ce0b09d7df963ea1"
69
+ "gitHead": "7133cdc4ab7f8285c82b045555ba9c677d888c30"
70
70
  }
@@ -1,4 +0,0 @@
1
- import type { BoxProps as BoxPropsChakra } from '@chakra-ui/react';
2
- import { Box } from '@chakra-ui/react';
3
- export declare type BoxProps = BoxPropsChakra;
4
- export default Box;
@@ -1,4 +0,0 @@
1
- import type { ContainerProps as ContainerPropsChakra } from '@chakra-ui/react';
2
- import { Container } from '@chakra-ui/react';
3
- export declare type ContainerProps = ContainerPropsChakra;
4
- export default Container;
@@ -1,4 +0,0 @@
1
- import type { FlexProps as FlexPropsChakra } from '@chakra-ui/react';
2
- import { Flex } from '@chakra-ui/react';
3
- export declare type FlexProps = FlexPropsChakra;
4
- export default Flex;
@@ -1,4 +0,0 @@
1
- import type { GridProps as GridPropsChakra } from '@chakra-ui/react';
2
- import { Grid } from '@chakra-ui/react';
3
- export declare type GridProps = GridPropsChakra;
4
- export default Grid;
@@ -1,4 +0,0 @@
1
- import type { StackProps as StackPropsChakra } from '@chakra-ui/react';
2
- import { Stack } from '@chakra-ui/react';
3
- export declare type StackProps = StackPropsChakra;
4
- export default Stack;
@@ -1,4 +0,0 @@
1
- import type { WrapProps as WrapPropsChakra } from '@chakra-ui/react';
2
- import { Wrap } from '@chakra-ui/react';
3
- export declare type WrapProps = WrapPropsChakra;
4
- export default Wrap;
@@ -1,4 +0,0 @@
1
- import type { TextProps as TextPropsChakra } from '@chakra-ui/react';
2
- import { Text } from '@chakra-ui/react';
3
- export declare type TextProps = TextPropsChakra;
4
- export default Text;