@ctlyst.id/internal-ui 2.1.5 → 2.1.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/accordion/__stories__/accordion.stories.d.ts +9 -0
- package/dist/components/accordion/components/accordion-indicator.d.ts +1 -0
- package/dist/components/accordion/components/index.d.ts +2 -0
- package/dist/components/accordion/index.d.ts +1 -0
- package/dist/components/badge/__stories__/badge.stories.d.ts +8 -0
- package/dist/components/header/components/header.d.ts +1 -0
- package/dist/components/header/components/profile.d.ts +1 -0
- package/dist/components/toast/__stories__/toast.stories.d.ts +13 -0
- package/dist/components/toast/components/toast.d.ts +20 -0
- package/dist/components/toast/index.d.ts +1 -0
- package/dist/config/__stories__/globals.stories.d.ts +10 -0
- package/dist/config/theme/components/accordion.d.ts +53 -0
- package/dist/config/theme/components/alert.d.ts +2 -2
- package/dist/config/theme/components/index.d.ts +1 -0
- package/dist/config/theme/components/switch.d.ts +9 -0
- package/dist/internal-ui.cjs.development.js +214 -127
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +5 -5
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +216 -129
- package/dist/internal-ui.esm.js.map +1 -1
- package/dist/provider/__stories__/provider.stories.d.ts +3 -0
- package/dist/provider/components/provider.d.ts +1 -0
- package/package.json +6 -4
@@ -1,9 +1,12 @@
|
|
1
|
+
import 'react-toastify/dist/ReactToastify.css';
|
1
2
|
import React from 'react';
|
2
3
|
declare const _default: {
|
3
4
|
title: string;
|
4
5
|
};
|
5
6
|
export default _default;
|
6
7
|
export declare const Provider: () => JSX.Element;
|
8
|
+
export declare const theme: Record<string, any>;
|
9
|
+
export declare const voilatheme: Record<string, any>;
|
7
10
|
export declare const CatalystProvider: ({ children }: {
|
8
11
|
children: React.ReactNode;
|
9
12
|
}) => JSX.Element;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ctlyst.id/internal-ui",
|
3
|
-
"version": "2.1.
|
3
|
+
"version": "2.1.6",
|
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.
|
38
|
+
"@ctlyst.id/internal-icon": "^1.0.6",
|
39
39
|
"@tanstack/react-table": "^8.5.17",
|
40
40
|
"axios": "^0.27.2",
|
41
41
|
"clsx": "^1.1.1",
|
@@ -44,6 +44,7 @@
|
|
44
44
|
"react-icons": "^4.6.0",
|
45
45
|
"react-select": "^5.6.0",
|
46
46
|
"react-select-async-paginate": "0.7.0",
|
47
|
+
"react-toastify": "^10.0.5",
|
47
48
|
"tslib": "^2.3.1"
|
48
49
|
},
|
49
50
|
"peerDependencies": {
|
@@ -53,7 +54,8 @@
|
|
53
54
|
"devDependencies": {
|
54
55
|
"@babel/core": "^7.15.0",
|
55
56
|
"@babel/preset-typescript": "^7.18.6",
|
56
|
-
"@ctlyst.id/ctlyst-theme": "^0.0.
|
57
|
+
"@ctlyst.id/ctlyst-theme": "^0.0.4",
|
58
|
+
"@ctlyst.id/voila-theme": "^0.0.5",
|
57
59
|
"@emotion/core": "^11.0.0",
|
58
60
|
"@emotion/react": "^11.9.3",
|
59
61
|
"@emotion/styled": "^11.9.3",
|
@@ -67,5 +69,5 @@
|
|
67
69
|
"framer-motion": "^6.3.13",
|
68
70
|
"jest": "^26.6.3"
|
69
71
|
},
|
70
|
-
"gitHead": "
|
72
|
+
"gitHead": "9ddc674d3fef56b61fc8a5772673ded69e400076"
|
71
73
|
}
|