@tutti-os/ui-system 0.0.1
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/AGENTS.md +146 -0
- package/LICENSE +202 -0
- package/README.md +97 -0
- package/agent/install-skill.mjs +241 -0
- package/agent/nextop-ui-system/SKILL.md +227 -0
- package/agent/nextop-ui-system/references/extract-base-component.md +87 -0
- package/agent/nextop-ui-system/references/maintain-inventory.md +45 -0
- package/agent/nextop-ui-system/references/promote-business-component.md +316 -0
- package/agent/nextop-ui-system/references/use-existing-component.md +37 -0
- package/agent/nextop-ui-system/scripts/create-business-preview.mjs +658 -0
- package/dist/chunk-2AUYRRDG.js +3078 -0
- package/dist/chunk-2AUYRRDG.js.map +1 -0
- package/dist/chunk-DGPY4WP3.js +11 -0
- package/dist/chunk-DGPY4WP3.js.map +1 -0
- package/dist/chunk-GX3U3V36.js +70 -0
- package/dist/chunk-GX3U3V36.js.map +1 -0
- package/dist/chunk-UTUVPSKL.js +873 -0
- package/dist/chunk-UTUVPSKL.js.map +1 -0
- package/dist/chunk-XHA7R2WC.js +292 -0
- package/dist/chunk-XHA7R2WC.js.map +1 -0
- package/dist/components/index.d.ts +360 -0
- package/dist/components/index.js +221 -0
- package/dist/components/index.js.map +1 -0
- package/dist/date-format.d.ts +6 -0
- package/dist/date-format.js +11 -0
- package/dist/date-format.js.map +1 -0
- package/dist/dev-vite.d.ts +9 -0
- package/dist/dev-vite.js +583 -0
- package/dist/dev-vite.js.map +1 -0
- package/dist/icons/index.d.ts +112 -0
- package/dist/icons/index.js +191 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +419 -0
- package/dist/index.js.map +1 -0
- package/dist/metadata/components.json +2819 -0
- package/dist/metadata/components.schema.json +110 -0
- package/dist/metadata/index.d.ts +27 -0
- package/dist/metadata/index.js +2827 -0
- package/dist/metadata/index.js.map +1 -0
- package/dist/styles/base.css +170 -0
- package/dist/styles/index.css +4 -0
- package/dist/styles/semantic.css +50 -0
- package/dist/styles/theme.css +366 -0
- package/dist/utils.d.ts +5 -0
- package/dist/utils.js +7 -0
- package/dist/utils.js.map +1 -0
- package/package.json +118 -0
- package/ui-system.md +671 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
interface IconProps extends React.ComponentPropsWithoutRef<"svg"> {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
title?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
type LayoutPresetIconVariant = "balanced" | "row" | "column";
|
|
10
|
+
interface LayoutPresetIconProps extends IconProps {
|
|
11
|
+
selectedCount?: number;
|
|
12
|
+
variant: LayoutPresetIconVariant;
|
|
13
|
+
}
|
|
14
|
+
declare function LayoutPresetIcon({ className, selectedCount, size, title, variant, ...props }: LayoutPresetIconProps): react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
declare function NextopMark({ className, size, title, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare function LaunchIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
19
|
+
declare function PlayIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
20
|
+
declare function PauseIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
21
|
+
declare function FolderIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
22
|
+
declare function FolderFilledIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
23
|
+
declare function DashboardIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
24
|
+
declare function NewWorkspaceIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
declare function NewWorkspaceLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
26
|
+
declare function NoWorkspaceLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
27
|
+
declare function HealthIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
28
|
+
interface LoadingIconProps extends IconProps {
|
|
29
|
+
trackColor?: string;
|
|
30
|
+
}
|
|
31
|
+
declare function LoadingIcon({ size, title, strokeWidth, trackColor, ...props }: LoadingIconProps): react_jsx_runtime.JSX.Element;
|
|
32
|
+
declare function PlatformIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
33
|
+
declare function SettingsIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
34
|
+
declare function CloseIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
35
|
+
declare function MinimizeIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
36
|
+
declare function MaximizeIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
37
|
+
declare function RestoreIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
38
|
+
declare function LayoutMenuIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
39
|
+
declare function GridLeftLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
40
|
+
declare function GridRightLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
41
|
+
declare function GridTopLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
42
|
+
declare function GridBottomLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
43
|
+
declare function GridHorizontalLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
44
|
+
declare function GridVerticalLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
45
|
+
declare function AppWindowIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
46
|
+
declare function ArrowLeftIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
47
|
+
declare function ArrowRightIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
48
|
+
declare function CheckIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
49
|
+
declare function ChevronDownIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
50
|
+
declare function ChevronUpIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
51
|
+
declare function AddIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
52
|
+
declare function CopyIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
53
|
+
declare function DirectoryIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
54
|
+
declare function EyeIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
55
|
+
declare function FileIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
56
|
+
declare function FileLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
57
|
+
declare function FileTextIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
58
|
+
declare function FileCodeIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
59
|
+
declare function FileCreateIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
60
|
+
declare function ImageFileIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
61
|
+
declare function EditIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
62
|
+
declare function NavApplicationsLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
63
|
+
declare function OverviewLayoutIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
64
|
+
declare function MoreHorizontalIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
65
|
+
declare function PinIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
66
|
+
declare function PinFilledIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
67
|
+
declare function RefreshIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
68
|
+
declare function SearchIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
69
|
+
declare function DownloadIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
70
|
+
declare function DarkModeIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
71
|
+
declare function LightModeIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
72
|
+
declare function DeleteIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
73
|
+
declare function UploadIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
74
|
+
declare function VideoFileIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
75
|
+
declare function AgentSessionsIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
76
|
+
declare function CreateChatIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
77
|
+
declare function FolderFailedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
78
|
+
declare function GuideIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
79
|
+
declare function ImageGenerateIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
80
|
+
declare function IssueIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
81
|
+
declare function KeyboardIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
82
|
+
declare function LinkIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
83
|
+
declare function LocateFolderIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
84
|
+
declare function NavAgentsIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
85
|
+
declare function NavLaunchIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
86
|
+
declare function NavApplicationsFilledIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
87
|
+
declare function OpenSessionsIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
88
|
+
declare function PanelIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
89
|
+
declare function ProductIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
90
|
+
declare function ProductDocIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
91
|
+
declare function WebIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
92
|
+
declare function CapabilityIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare function TaskIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
94
|
+
declare function ThinkingIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
95
|
+
declare function WebScrapeIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
96
|
+
declare function ChatIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
97
|
+
declare function RoomsHintIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
98
|
+
declare function ToolsIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
99
|
+
declare function UnavailableChatIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
declare function UploadFolderIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
101
|
+
declare function UninstallIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
102
|
+
declare function FailedFilledIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
103
|
+
declare function FailedLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
104
|
+
declare function SuccessFilledIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
105
|
+
declare function SuccessLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
106
|
+
declare function WarningFilledIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
107
|
+
declare function WarningLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
108
|
+
declare function AskLinedIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
109
|
+
declare function GoogleBrandIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
110
|
+
declare function GitHubBrandIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
111
|
+
|
|
112
|
+
export { AddIcon, AgentSessionsIcon, AppWindowIcon, ArrowLeftIcon, ArrowRightIcon, AskLinedIcon, CapabilityIcon, ChatIcon, CheckIcon, ChevronDownIcon, ChevronUpIcon, CloseIcon, CopyIcon, CreateChatIcon, DarkModeIcon, DashboardIcon, DeleteIcon, DirectoryIcon, DownloadIcon, EditIcon, EyeIcon, FailedFilledIcon, FailedLinedIcon, FileCodeIcon, FileCreateIcon, FileIcon, FileLinedIcon, FileTextIcon, FolderFailedIcon, FolderFilledIcon, FolderIcon, GitHubBrandIcon, GoogleBrandIcon, GridBottomLinedIcon, GridHorizontalLinedIcon, GridLeftLinedIcon, GridRightLinedIcon, GridTopLinedIcon, GridVerticalLinedIcon, GuideIcon, HealthIcon, type IconProps, ImageFileIcon, ImageGenerateIcon, IssueIcon, KeyboardIcon, LaunchIcon, LayoutMenuIcon, LayoutPresetIcon, type LayoutPresetIconProps, LightModeIcon, LinkIcon, LoadingIcon, type LoadingIconProps, LocateFolderIcon, MaximizeIcon, MinimizeIcon, MoreHorizontalIcon, NavAgentsIcon, NavApplicationsFilledIcon, NavApplicationsLinedIcon, NavLaunchIcon, NewWorkspaceIcon, NewWorkspaceLinedIcon, NextopMark, NoWorkspaceLinedIcon, OpenSessionsIcon, OverviewLayoutIcon, PanelIcon, PauseIcon, PinFilledIcon, PinIcon, PlatformIcon, PlayIcon, ProductDocIcon, ProductIcon, RefreshIcon, RestoreIcon, RoomsHintIcon, SearchIcon, SettingsIcon, SuccessFilledIcon, SuccessLinedIcon, TaskIcon, ThinkingIcon, ToolsIcon, UnavailableChatIcon, UninstallIcon, UploadFolderIcon, UploadIcon, VideoFileIcon, WarningFilledIcon, WarningLinedIcon, WebIcon, WebScrapeIcon };
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import {
|
|
2
|
+
LayoutPresetIcon,
|
|
3
|
+
NextopMark
|
|
4
|
+
} from "../chunk-XHA7R2WC.js";
|
|
5
|
+
import {
|
|
6
|
+
AddIcon,
|
|
7
|
+
AgentSessionsIcon,
|
|
8
|
+
AppWindowIcon,
|
|
9
|
+
ArrowLeftIcon,
|
|
10
|
+
ArrowRightIcon,
|
|
11
|
+
AskLinedIcon,
|
|
12
|
+
CapabilityIcon,
|
|
13
|
+
ChatIcon,
|
|
14
|
+
CheckIcon,
|
|
15
|
+
ChevronDownIcon,
|
|
16
|
+
ChevronUpIcon,
|
|
17
|
+
CloseIcon,
|
|
18
|
+
CopyIcon,
|
|
19
|
+
CreateChatIcon,
|
|
20
|
+
DarkModeIcon,
|
|
21
|
+
DashboardIcon,
|
|
22
|
+
DeleteIcon,
|
|
23
|
+
DirectoryIcon,
|
|
24
|
+
DownloadIcon,
|
|
25
|
+
EditIcon,
|
|
26
|
+
EyeIcon,
|
|
27
|
+
FailedFilledIcon,
|
|
28
|
+
FailedLinedIcon,
|
|
29
|
+
FileCodeIcon,
|
|
30
|
+
FileCreateIcon,
|
|
31
|
+
FileIcon,
|
|
32
|
+
FileLinedIcon,
|
|
33
|
+
FileTextIcon,
|
|
34
|
+
FolderFailedIcon,
|
|
35
|
+
FolderFilledIcon,
|
|
36
|
+
FolderIcon,
|
|
37
|
+
GitHubBrandIcon,
|
|
38
|
+
GoogleBrandIcon,
|
|
39
|
+
GridBottomLinedIcon,
|
|
40
|
+
GridHorizontalLinedIcon,
|
|
41
|
+
GridLeftLinedIcon,
|
|
42
|
+
GridRightLinedIcon,
|
|
43
|
+
GridTopLinedIcon,
|
|
44
|
+
GridVerticalLinedIcon,
|
|
45
|
+
GuideIcon,
|
|
46
|
+
HealthIcon,
|
|
47
|
+
ImageFileIcon,
|
|
48
|
+
ImageGenerateIcon,
|
|
49
|
+
IssueIcon,
|
|
50
|
+
KeyboardIcon,
|
|
51
|
+
LaunchIcon,
|
|
52
|
+
LayoutMenuIcon,
|
|
53
|
+
LightModeIcon,
|
|
54
|
+
LinkIcon,
|
|
55
|
+
LoadingIcon,
|
|
56
|
+
LocateFolderIcon,
|
|
57
|
+
MaximizeIcon,
|
|
58
|
+
MinimizeIcon,
|
|
59
|
+
MoreHorizontalIcon,
|
|
60
|
+
NavAgentsIcon,
|
|
61
|
+
NavApplicationsFilledIcon,
|
|
62
|
+
NavApplicationsLinedIcon,
|
|
63
|
+
NavLaunchIcon,
|
|
64
|
+
NewWorkspaceIcon,
|
|
65
|
+
NewWorkspaceLinedIcon,
|
|
66
|
+
NoWorkspaceLinedIcon,
|
|
67
|
+
OpenSessionsIcon,
|
|
68
|
+
OverviewLayoutIcon,
|
|
69
|
+
PanelIcon,
|
|
70
|
+
PauseIcon,
|
|
71
|
+
PinFilledIcon,
|
|
72
|
+
PinIcon,
|
|
73
|
+
PlatformIcon,
|
|
74
|
+
PlayIcon,
|
|
75
|
+
ProductDocIcon,
|
|
76
|
+
ProductIcon,
|
|
77
|
+
RefreshIcon,
|
|
78
|
+
RestoreIcon,
|
|
79
|
+
RoomsHintIcon,
|
|
80
|
+
SearchIcon,
|
|
81
|
+
SettingsIcon,
|
|
82
|
+
SuccessFilledIcon,
|
|
83
|
+
SuccessLinedIcon,
|
|
84
|
+
TaskIcon,
|
|
85
|
+
ThinkingIcon,
|
|
86
|
+
ToolsIcon,
|
|
87
|
+
UnavailableChatIcon,
|
|
88
|
+
UninstallIcon,
|
|
89
|
+
UploadFolderIcon,
|
|
90
|
+
UploadIcon,
|
|
91
|
+
VideoFileIcon,
|
|
92
|
+
WarningFilledIcon,
|
|
93
|
+
WarningLinedIcon,
|
|
94
|
+
WebIcon,
|
|
95
|
+
WebScrapeIcon
|
|
96
|
+
} from "../chunk-UTUVPSKL.js";
|
|
97
|
+
export {
|
|
98
|
+
AddIcon,
|
|
99
|
+
AgentSessionsIcon,
|
|
100
|
+
AppWindowIcon,
|
|
101
|
+
ArrowLeftIcon,
|
|
102
|
+
ArrowRightIcon,
|
|
103
|
+
AskLinedIcon,
|
|
104
|
+
CapabilityIcon,
|
|
105
|
+
ChatIcon,
|
|
106
|
+
CheckIcon,
|
|
107
|
+
ChevronDownIcon,
|
|
108
|
+
ChevronUpIcon,
|
|
109
|
+
CloseIcon,
|
|
110
|
+
CopyIcon,
|
|
111
|
+
CreateChatIcon,
|
|
112
|
+
DarkModeIcon,
|
|
113
|
+
DashboardIcon,
|
|
114
|
+
DeleteIcon,
|
|
115
|
+
DirectoryIcon,
|
|
116
|
+
DownloadIcon,
|
|
117
|
+
EditIcon,
|
|
118
|
+
EyeIcon,
|
|
119
|
+
FailedFilledIcon,
|
|
120
|
+
FailedLinedIcon,
|
|
121
|
+
FileCodeIcon,
|
|
122
|
+
FileCreateIcon,
|
|
123
|
+
FileIcon,
|
|
124
|
+
FileLinedIcon,
|
|
125
|
+
FileTextIcon,
|
|
126
|
+
FolderFailedIcon,
|
|
127
|
+
FolderFilledIcon,
|
|
128
|
+
FolderIcon,
|
|
129
|
+
GitHubBrandIcon,
|
|
130
|
+
GoogleBrandIcon,
|
|
131
|
+
GridBottomLinedIcon,
|
|
132
|
+
GridHorizontalLinedIcon,
|
|
133
|
+
GridLeftLinedIcon,
|
|
134
|
+
GridRightLinedIcon,
|
|
135
|
+
GridTopLinedIcon,
|
|
136
|
+
GridVerticalLinedIcon,
|
|
137
|
+
GuideIcon,
|
|
138
|
+
HealthIcon,
|
|
139
|
+
ImageFileIcon,
|
|
140
|
+
ImageGenerateIcon,
|
|
141
|
+
IssueIcon,
|
|
142
|
+
KeyboardIcon,
|
|
143
|
+
LaunchIcon,
|
|
144
|
+
LayoutMenuIcon,
|
|
145
|
+
LayoutPresetIcon,
|
|
146
|
+
LightModeIcon,
|
|
147
|
+
LinkIcon,
|
|
148
|
+
LoadingIcon,
|
|
149
|
+
LocateFolderIcon,
|
|
150
|
+
MaximizeIcon,
|
|
151
|
+
MinimizeIcon,
|
|
152
|
+
MoreHorizontalIcon,
|
|
153
|
+
NavAgentsIcon,
|
|
154
|
+
NavApplicationsFilledIcon,
|
|
155
|
+
NavApplicationsLinedIcon,
|
|
156
|
+
NavLaunchIcon,
|
|
157
|
+
NewWorkspaceIcon,
|
|
158
|
+
NewWorkspaceLinedIcon,
|
|
159
|
+
NextopMark,
|
|
160
|
+
NoWorkspaceLinedIcon,
|
|
161
|
+
OpenSessionsIcon,
|
|
162
|
+
OverviewLayoutIcon,
|
|
163
|
+
PanelIcon,
|
|
164
|
+
PauseIcon,
|
|
165
|
+
PinFilledIcon,
|
|
166
|
+
PinIcon,
|
|
167
|
+
PlatformIcon,
|
|
168
|
+
PlayIcon,
|
|
169
|
+
ProductDocIcon,
|
|
170
|
+
ProductIcon,
|
|
171
|
+
RefreshIcon,
|
|
172
|
+
RestoreIcon,
|
|
173
|
+
RoomsHintIcon,
|
|
174
|
+
SearchIcon,
|
|
175
|
+
SettingsIcon,
|
|
176
|
+
SuccessFilledIcon,
|
|
177
|
+
SuccessLinedIcon,
|
|
178
|
+
TaskIcon,
|
|
179
|
+
ThinkingIcon,
|
|
180
|
+
ToolsIcon,
|
|
181
|
+
UnavailableChatIcon,
|
|
182
|
+
UninstallIcon,
|
|
183
|
+
UploadFolderIcon,
|
|
184
|
+
UploadIcon,
|
|
185
|
+
VideoFileIcon,
|
|
186
|
+
WarningFilledIcon,
|
|
187
|
+
WarningLinedIcon,
|
|
188
|
+
WebIcon,
|
|
189
|
+
WebScrapeIcon
|
|
190
|
+
};
|
|
191
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export { Badge, BareIconButton, BareIconButtonProps, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, ConfirmationDialog, ConfirmationDialogTone, DatePicker, DatePickerLabels, DatePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, MentionPill, MentionPillFileKind, MentionPillKind, MentionPillProps, MenuPoint, MenuPointAlignment, MenuSize, MenuSurface, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SectionTabItem, SectionTabs, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectSplitColumn, SelectSplitColumnItems, SelectSplitColumnLabel, SelectSplitDivider, SelectSplitLayout, SelectTrigger, SelectValue, Separator, ShortcutBadge, Spinner, SpinnerProps, StatusDot, Switch, Textarea, ToastClose, ToastDescription, ToastProvider, ToastRoot, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, UnderlineTabItem, UnderlineTabs, ViewportMenuPlacement, ViewportMenuSurface, ViewportMenuSurfaceProps, badgeVariants, buttonVariants, menuItemClassName, menuItemIndicatorClassName, menuItemWithIndicatorClassName, menuSurfaceClassName, statusDotVariants, toastVariants } from './components/index.js';
|
|
2
|
+
export { AddIcon, AgentSessionsIcon, AppWindowIcon, ArrowLeftIcon, ArrowRightIcon, AskLinedIcon, CapabilityIcon, ChatIcon, CheckIcon, ChevronDownIcon, ChevronUpIcon, CloseIcon, CopyIcon, CreateChatIcon, DarkModeIcon, DashboardIcon, DeleteIcon, DirectoryIcon, DownloadIcon, EditIcon, EyeIcon, FailedFilledIcon, FailedLinedIcon, FileCodeIcon, FileCreateIcon, FileIcon, FileLinedIcon, FileTextIcon, FolderFailedIcon, FolderFilledIcon, FolderIcon, GitHubBrandIcon, GoogleBrandIcon, GridBottomLinedIcon, GridHorizontalLinedIcon, GridLeftLinedIcon, GridRightLinedIcon, GridTopLinedIcon, GridVerticalLinedIcon, GuideIcon, HealthIcon, IconProps, ImageFileIcon, ImageGenerateIcon, IssueIcon, KeyboardIcon, LaunchIcon, LayoutMenuIcon, LayoutPresetIcon, LayoutPresetIconProps, LightModeIcon, LinkIcon, LoadingIcon, LoadingIconProps, LocateFolderIcon, MaximizeIcon, MinimizeIcon, MoreHorizontalIcon, NavAgentsIcon, NavApplicationsFilledIcon, NavApplicationsLinedIcon, NavLaunchIcon, NewWorkspaceIcon, NewWorkspaceLinedIcon, NextopMark, NoWorkspaceLinedIcon, OpenSessionsIcon, OverviewLayoutIcon, PanelIcon, PauseIcon, PinFilledIcon, PinIcon, PlatformIcon, PlayIcon, ProductDocIcon, ProductIcon, RefreshIcon, RestoreIcon, RoomsHintIcon, SearchIcon, SettingsIcon, SuccessFilledIcon, SuccessLinedIcon, TaskIcon, ThinkingIcon, ToolsIcon, UnavailableChatIcon, UninstallIcon, UploadFolderIcon, UploadIcon, VideoFileIcon, WarningFilledIcon, WarningLinedIcon, WebIcon, WebScrapeIcon } from './icons/index.js';
|
|
3
|
+
export { NextopDateLocale, formatNextopDateTime, formatNextopShortDateTime, getCurrentNextopDateLocale } from './date-format.js';
|
|
4
|
+
export { cn } from './utils.js';
|
|
5
|
+
export { ExternalToast, ToasterProps, toast } from 'sonner';
|
|
6
|
+
import 'react/jsx-runtime';
|
|
7
|
+
import 'class-variance-authority/types';
|
|
8
|
+
import 'react';
|
|
9
|
+
import 'class-variance-authority';
|
|
10
|
+
import 'radix-ui';
|
|
11
|
+
import 'vaul';
|
|
12
|
+
import 'react-resizable-panels';
|
|
13
|
+
import 'clsx';
|