@archieai/ui 0.1.2 → 0.1.4
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/atoms/Typography/Typography.d.ts +4 -3
- package/dist/components/atoms/Typography/Typography.d.ts.map +1 -1
- package/dist/components/molecules/Button/Button.d.ts +1 -1
- package/dist/components/molecules/Button/Button.d.ts.map +1 -1
- package/dist/components/molecules/Button/Button.styles.d.ts +1 -1
- package/dist/components/molecules/Button/Button.styles.d.ts.map +1 -1
- package/dist/components/molecules/RangeInput/RangeInput.d.ts +7 -0
- package/dist/components/molecules/RangeInput/RangeInput.d.ts.map +1 -0
- package/dist/components/molecules/RangeInput/RangeInput.styles.d.ts +5 -0
- package/dist/components/molecules/RangeInput/RangeInput.styles.d.ts.map +1 -0
- package/dist/components/molecules/TextArea/TextArea.d.ts +8 -0
- package/dist/components/molecules/TextArea/TextArea.d.ts.map +1 -0
- package/dist/components/molecules/TextArea/TextArea.styles.d.ts +9 -0
- package/dist/components/molecules/TextArea/TextArea.styles.d.ts.map +1 -0
- package/dist/components/molecules/Toggle/Toggle.d.ts +9 -0
- package/dist/components/molecules/Toggle/Toggle.d.ts.map +1 -0
- package/dist/components/molecules/Toggle/Toggle.styles.d.ts +10 -0
- package/dist/components/molecules/Toggle/Toggle.styles.d.ts.map +1 -0
- package/dist/components/organisms/ChatInput/ChatInput.d.ts +34 -5
- package/dist/components/organisms/ChatInput/ChatInput.d.ts.map +1 -1
- package/dist/components/organisms/ChatInput/ChatInput.styles.d.ts +16 -0
- package/dist/components/organisms/ChatInput/ChatInput.styles.d.ts.map +1 -1
- package/dist/components/organisms/Modal/Modal.d.ts +1 -1
- package/dist/components/organisms/Modal/Modal.d.ts.map +1 -1
- package/dist/components/organisms/Modal/Modal.styles.d.ts +0 -3
- package/dist/components/organisms/Modal/Modal.styles.d.ts.map +1 -1
- package/dist/components/organisms/Modal/Modal.types.d.ts +0 -2
- package/dist/components/organisms/Modal/Modal.types.d.ts.map +1 -1
- package/dist/index.cjs +27 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +8 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4414 -4089
- package/dist/index.js.map +1 -1
- package/dist/ui.css +1 -1
- package/package.json +19 -20
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export type { AvatarProps } from './components/atoms/Avatar/Avatar';
|
|
|
3
3
|
export { StatusIndicator } from './components/atoms/StatusIndicator/StatusIndicator';
|
|
4
4
|
export type { StatusIndicatorProps } from './components/atoms/StatusIndicator/StatusIndicator';
|
|
5
5
|
export { Typography } from './components/atoms/Typography/Typography';
|
|
6
|
-
export type { TypographyVariant, TypographyWeight, } from './components/atoms/Typography/Typography';
|
|
6
|
+
export type { TypographyProps, TypographyVariant, TypographyWeight, TypographyFontFamily, } from './components/atoms/Typography/Typography';
|
|
7
7
|
export * from './components/atoms/icons';
|
|
8
8
|
export * from './components/atoms/logos';
|
|
9
9
|
export { ArtifactCard } from './components/molecules/ArtifactCard/ArtifactCard';
|
|
@@ -25,20 +25,26 @@ export { MessageBubble } from './components/molecules/MessageBubble/MessageBubbl
|
|
|
25
25
|
export type { MessageBubbleProps } from './components/molecules/MessageBubble/MessageBubble';
|
|
26
26
|
export { ProgressBar } from './components/molecules/ProgressBar/ProgressBar';
|
|
27
27
|
export type { ProgressBarProps } from './components/molecules/ProgressBar/ProgressBar';
|
|
28
|
+
export { RangeInput } from './components/molecules/RangeInput/RangeInput';
|
|
29
|
+
export type { RangeInputProps } from './components/molecules/RangeInput/RangeInput';
|
|
28
30
|
export { SidebarItem } from './components/molecules/SidebarItem/SidebarItem';
|
|
29
31
|
export type { SidebarItemProps } from './components/molecules/SidebarItem/SidebarItem';
|
|
30
32
|
export { Tabs, TabsList, TabsTrigger, TabsContent, } from './components/molecules/Tabs/Tabs';
|
|
31
33
|
export { Tag } from './components/molecules/Tag/Tag';
|
|
32
34
|
export type { TagProps } from './components/molecules/Tag/Tag';
|
|
35
|
+
export { TextArea } from './components/molecules/TextArea/TextArea';
|
|
36
|
+
export type { TextAreaProps } from './components/molecules/TextArea/TextArea';
|
|
33
37
|
export { Timestamp } from './components/molecules/Timestamp/Timestamp';
|
|
34
38
|
export type { TimestampProps, TimestampFormat, } from './components/molecules/Timestamp/Timestamp';
|
|
35
39
|
export { Toast, ToastContainer, showToast, } from './components/molecules/Toast/Toast';
|
|
36
40
|
export type { ToastProps, ToastAction, ToastVariant, } from './components/molecules/Toast/Toast';
|
|
41
|
+
export { Toggle } from './components/molecules/Toggle/Toggle';
|
|
42
|
+
export type { ToggleProps } from './components/molecules/Toggle/Toggle';
|
|
37
43
|
export { StatusMessage } from './components/molecules/StatusMessage/StatusMessage';
|
|
38
44
|
export type { StatusMessageProps } from './components/molecules/StatusMessage/StatusMessage';
|
|
39
45
|
export { Tooltip, TooltipProvider, TooltipTrigger, TooltipContent, } from './components/molecules/Tooltip/Tooltip';
|
|
40
46
|
export { ChatInput } from './components/organisms/ChatInput/ChatInput';
|
|
41
|
-
export type { ChatInputProps } from './components/organisms/ChatInput/ChatInput';
|
|
47
|
+
export type { ChatInputProps, ChatInputAction, ChatInputFile, ChatInputModelOption, } from './components/organisms/ChatInput/ChatInput';
|
|
42
48
|
export { ConversationHeader } from './components/organisms/ConversationHeader/ConversationHeader';
|
|
43
49
|
export type { ConversationHeaderProps } from './components/organisms/ConversationHeader/ConversationHeader';
|
|
44
50
|
export { Modal } from './components/organisms/Modal/Modal';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAC;AAC1D,YAAY,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAEpE,OAAO,EAAE,eAAe,EAAE,MAAM,oDAAoD,CAAC;AACrF,YAAY,EAAE,oBAAoB,EAAE,MAAM,oDAAoD,CAAC;AAE/F,OAAO,EAAE,UAAU,EAAE,MAAM,0CAA0C,CAAC;AACtE,YAAY,EACV,iBAAiB,EACjB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|