@canaia/ui-kit 0.0.10-alpha.59 → 0.0.10-alpha.61
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/canaia-ui-kit.es.js +11536 -10857
- package/dist/canaia-ui-kit.umd.js +37 -37
- package/dist/src/components/ChatInput/ChatInput.d.ts +1 -1
- package/dist/src/components/ChatUser/ChatUser.d.ts +1 -1
- package/dist/src/components/ModalFeedback/ModalFeedback.d.ts +3 -0
- package/dist/src/components/ModalFeedback/ModalFeedback.types.d.ts +10 -0
- package/dist/src/components/ModalFeedback/index.d.ts +2 -0
- package/dist/src/components/PositiveModal/PositiveModal.d.ts +3 -0
- package/dist/src/components/PositiveModal/PositiveModal.types.d.ts +7 -0
- package/dist/src/components/PositiveModal/index.d.ts +2 -0
- package/dist/src/components/TabsOptions/TabsOptions.d.ts +3 -0
- package/dist/src/components/TabsOptions/TabsOptions.types.d.ts +7 -0
- package/dist/src/components/TabsOptions/index.d.ts +2 -0
- package/dist/src/icons/SuccessTick/SuccessTick.d.ts +6 -0
- package/dist/src/index.d.ts +4 -0
- package/package.json +2 -2
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ChatInputProps } from './ChatInput.type';
|
|
2
|
-
declare const ChatInput: ({ placeholder, onSend, disabled }: ChatInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const ChatInput: ({ placeholder, onSend, disabled, }: ChatInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default ChatInput;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { CustomChatUserProps } from './ChatUser.types';
|
|
2
|
-
declare const ChatUser: ({ message, userImage, timestamp, isError, userName }: CustomChatUserProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const ChatUser: ({ message, userImage, timestamp, isError, userName, type, src, alt }: CustomChatUserProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default ChatUser;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -30,3 +30,7 @@ export { default as AudioButtons } from './components/AudioButtons';
|
|
|
30
30
|
export { default as Tabs } from './components/Tabs';
|
|
31
31
|
export { default as SwitchCustom } from './components/Switch';
|
|
32
32
|
export { default as TagSelector } from './components/Tags';
|
|
33
|
+
export { default as CustomCheckBox } from './components/Checkbox';
|
|
34
|
+
export { default as TabsOptions } from './components/TabsOptions';
|
|
35
|
+
export { default as ModalFeedback } from './components/ModalFeedback';
|
|
36
|
+
export { default as PositiveModal } from './components/PositiveModal';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canaia/ui-kit",
|
|
3
|
-
"version": "0.0.10-alpha.
|
|
3
|
+
"version": "0.0.10-alpha.61",
|
|
4
4
|
"main": "dist/canaia-ui-kit.umd.js",
|
|
5
5
|
"module": "dist/canaia-ui-kit.es.js",
|
|
6
6
|
"type": "module",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@chakra-ui/react": "^2.0.0",
|
|
28
28
|
"@emotion/react": "^11.0.0",
|
|
29
29
|
"@emotion/styled": "^11.0.0",
|
|
30
|
-
"framer-motion": "^11.
|
|
30
|
+
"framer-motion": "^11.18.2",
|
|
31
31
|
"lodash.mergewith": "^4.6.2",
|
|
32
32
|
"path": "^0.12.7",
|
|
33
33
|
"react-dropzone": "^14.3.5",
|