@nextop-os/ui-system 0.0.14 → 0.0.16

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.
@@ -6,6 +6,13 @@ interface IconProps extends React.ComponentPropsWithoutRef<"svg"> {
6
6
  title?: string;
7
7
  }
8
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
+
9
16
  declare function NextopMark({ className, size, title, ...props }: IconProps): react_jsx_runtime.JSX.Element;
10
17
 
11
18
  declare const LaunchIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
@@ -27,6 +34,7 @@ declare const QuickLayoutLeftIcon: ({ size, title, ...props }: IconProps) => rea
27
34
  declare const QuickLayoutRightIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
28
35
  declare const QuickLayoutTopIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
29
36
  declare const QuickLayoutBottomIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
37
+ declare const AppWindowIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
30
38
  declare const ArrowLeftIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
31
39
  declare const ArrowRightIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
32
40
  declare const CheckIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
@@ -43,10 +51,14 @@ declare const FileSearchIcon: ({ size, title, ...props }: IconProps) => react_js
43
51
  declare const FileSpreadsheetIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
44
52
  declare const FileTextIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
45
53
  declare const ImageFileIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
54
+ declare const EditIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
55
+ declare const LayoutGridIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
46
56
  declare const RefreshIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
47
57
  declare const SearchIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
48
58
  declare const DeleteIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
49
59
  declare const UploadIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
50
60
  declare const VideoFileIcon: ({ size, title, ...props }: IconProps) => react_jsx_runtime.JSX.Element;
61
+ declare function GoogleBrandIcon({ size, title, ...props }: IconProps): react_jsx_runtime.JSX.Element;
62
+ declare function GitHubBrandIcon({ size, title, ...props }: IconProps): react_jsx_runtime.JSX.Element;
51
63
 
52
- export { AlertIcon, ArrowLeftIcon, ArrowRightIcon, CheckIcon, ChevronDownIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, CopyIcon, DashboardIcon, DeleteIcon, DirectoryIcon, EyeIcon, FileCodeIcon, FileCreateIcon, FileIcon, FileSearchIcon, FileSpreadsheetIcon, FileTextIcon, FolderIcon, HealthIcon, type IconProps, ImageFileIcon, LaunchIcon, LayoutMenuIcon, LoadingIcon, MaximizeIcon, MinimizeIcon, NewWorkspaceIcon, NextopMark, PlatformIcon, QuickLayoutBottomIcon, QuickLayoutLeftIcon, QuickLayoutRightIcon, QuickLayoutTopIcon, RefreshIcon, RestoreIcon, SearchIcon, SettingsIcon, SparkIcon, UploadIcon, VideoFileIcon };
64
+ export { AlertIcon, AppWindowIcon, ArrowLeftIcon, ArrowRightIcon, CheckIcon, ChevronDownIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, CopyIcon, DashboardIcon, DeleteIcon, DirectoryIcon, EditIcon, EyeIcon, FileCodeIcon, FileCreateIcon, FileIcon, FileSearchIcon, FileSpreadsheetIcon, FileTextIcon, FolderIcon, GitHubBrandIcon, GoogleBrandIcon, HealthIcon, type IconProps, ImageFileIcon, LaunchIcon, LayoutGridIcon, LayoutMenuIcon, LayoutPresetIcon, type LayoutPresetIconProps, LoadingIcon, MaximizeIcon, MinimizeIcon, NewWorkspaceIcon, NextopMark, PlatformIcon, QuickLayoutBottomIcon, QuickLayoutLeftIcon, QuickLayoutRightIcon, QuickLayoutTopIcon, RefreshIcon, RestoreIcon, SearchIcon, SettingsIcon, SparkIcon, UploadIcon, VideoFileIcon };
@@ -1,8 +1,10 @@
1
1
  import {
2
+ LayoutPresetIcon,
2
3
  NextopMark
3
- } from "../chunk-IK2XRJQG.js";
4
+ } from "../chunk-XHA7R2WC.js";
4
5
  import {
5
6
  AlertIcon,
7
+ AppWindowIcon,
6
8
  ArrowLeftIcon,
7
9
  ArrowRightIcon,
8
10
  CheckIcon,
@@ -14,6 +16,7 @@ import {
14
16
  DashboardIcon,
15
17
  DeleteIcon,
16
18
  DirectoryIcon,
19
+ EditIcon,
17
20
  EyeIcon,
18
21
  FileCodeIcon,
19
22
  FileCreateIcon,
@@ -22,9 +25,12 @@ import {
22
25
  FileSpreadsheetIcon,
23
26
  FileTextIcon,
24
27
  FolderIcon,
28
+ GitHubBrandIcon,
29
+ GoogleBrandIcon,
25
30
  HealthIcon,
26
31
  ImageFileIcon,
27
32
  LaunchIcon,
33
+ LayoutGridIcon,
28
34
  LayoutMenuIcon,
29
35
  LoadingIcon,
30
36
  MaximizeIcon,
@@ -42,9 +48,10 @@ import {
42
48
  SparkIcon,
43
49
  UploadIcon,
44
50
  VideoFileIcon
45
- } from "../chunk-OBW6ALOJ.js";
51
+ } from "../chunk-TT7B6HKG.js";
46
52
  export {
47
53
  AlertIcon,
54
+ AppWindowIcon,
48
55
  ArrowLeftIcon,
49
56
  ArrowRightIcon,
50
57
  CheckIcon,
@@ -56,6 +63,7 @@ export {
56
63
  DashboardIcon,
57
64
  DeleteIcon,
58
65
  DirectoryIcon,
66
+ EditIcon,
59
67
  EyeIcon,
60
68
  FileCodeIcon,
61
69
  FileCreateIcon,
@@ -64,10 +72,14 @@ export {
64
72
  FileSpreadsheetIcon,
65
73
  FileTextIcon,
66
74
  FolderIcon,
75
+ GitHubBrandIcon,
76
+ GoogleBrandIcon,
67
77
  HealthIcon,
68
78
  ImageFileIcon,
69
79
  LaunchIcon,
80
+ LayoutGridIcon,
70
81
  LayoutMenuIcon,
82
+ LayoutPresetIcon,
71
83
  LoadingIcon,
72
84
  MaximizeIcon,
73
85
  MinimizeIcon,
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { Badge, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ConfirmationDialog, ConfirmationDialogTone, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, ToastClose, ToastDescription, ToastProvider, ToastRoot, ToastTitle, ToastViewport, badgeVariants, buttonVariants, toastVariants } from './components/index.js';
2
- export { AlertIcon, ArrowLeftIcon, ArrowRightIcon, CheckIcon, ChevronDownIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, CopyIcon, DashboardIcon, DeleteIcon, DirectoryIcon, EyeIcon, FileCodeIcon, FileCreateIcon, FileIcon, FileSearchIcon, FileSpreadsheetIcon, FileTextIcon, FolderIcon, HealthIcon, IconProps, ImageFileIcon, LaunchIcon, LayoutMenuIcon, LoadingIcon, MaximizeIcon, MinimizeIcon, NewWorkspaceIcon, NextopMark, PlatformIcon, QuickLayoutBottomIcon, QuickLayoutLeftIcon, QuickLayoutRightIcon, QuickLayoutTopIcon, RefreshIcon, RestoreIcon, SearchIcon, SettingsIcon, SparkIcon, UploadIcon, VideoFileIcon } from './icons/index.js';
2
+ export { AlertIcon, AppWindowIcon, ArrowLeftIcon, ArrowRightIcon, CheckIcon, ChevronDownIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, CopyIcon, DashboardIcon, DeleteIcon, DirectoryIcon, EditIcon, EyeIcon, FileCodeIcon, FileCreateIcon, FileIcon, FileSearchIcon, FileSpreadsheetIcon, FileTextIcon, FolderIcon, GitHubBrandIcon, GoogleBrandIcon, HealthIcon, IconProps, ImageFileIcon, LaunchIcon, LayoutGridIcon, LayoutMenuIcon, LayoutPresetIcon, LayoutPresetIconProps, LoadingIcon, MaximizeIcon, MinimizeIcon, NewWorkspaceIcon, NextopMark, PlatformIcon, QuickLayoutBottomIcon, QuickLayoutLeftIcon, QuickLayoutRightIcon, QuickLayoutTopIcon, RefreshIcon, RestoreIcon, SearchIcon, SettingsIcon, SparkIcon, UploadIcon, VideoFileIcon } from './icons/index.js';
3
3
  export { cn } from './utils.js';
4
4
  import 'react/jsx-runtime';
5
5
  import 'class-variance-authority/types';
package/dist/index.js CHANGED
@@ -60,12 +60,14 @@ import {
60
60
  badgeVariants,
61
61
  buttonVariants,
62
62
  toastVariants
63
- } from "./chunk-4E6GOXOX.js";
63
+ } from "./chunk-5COFORA5.js";
64
64
  import {
65
+ LayoutPresetIcon,
65
66
  NextopMark
66
- } from "./chunk-IK2XRJQG.js";
67
+ } from "./chunk-XHA7R2WC.js";
67
68
  import {
68
69
  AlertIcon,
70
+ AppWindowIcon,
69
71
  ArrowLeftIcon,
70
72
  ArrowRightIcon,
71
73
  CheckIcon,
@@ -77,6 +79,7 @@ import {
77
79
  DashboardIcon,
78
80
  DeleteIcon,
79
81
  DirectoryIcon,
82
+ EditIcon,
80
83
  EyeIcon,
81
84
  FileCodeIcon,
82
85
  FileCreateIcon,
@@ -85,9 +88,12 @@ import {
85
88
  FileSpreadsheetIcon,
86
89
  FileTextIcon,
87
90
  FolderIcon,
91
+ GitHubBrandIcon,
92
+ GoogleBrandIcon,
88
93
  HealthIcon,
89
94
  ImageFileIcon,
90
95
  LaunchIcon,
96
+ LayoutGridIcon,
91
97
  LayoutMenuIcon,
92
98
  LoadingIcon,
93
99
  MaximizeIcon,
@@ -105,12 +111,13 @@ import {
105
111
  SparkIcon,
106
112
  UploadIcon,
107
113
  VideoFileIcon
108
- } from "./chunk-OBW6ALOJ.js";
114
+ } from "./chunk-TT7B6HKG.js";
109
115
  import {
110
116
  cn
111
117
  } from "./chunk-DGPY4WP3.js";
112
118
  export {
113
119
  AlertIcon,
120
+ AppWindowIcon,
114
121
  ArrowLeftIcon,
115
122
  ArrowRightIcon,
116
123
  Badge,
@@ -157,6 +164,7 @@ export {
157
164
  DropdownMenuSubContent,
158
165
  DropdownMenuSubTrigger,
159
166
  DropdownMenuTrigger,
167
+ EditIcon,
160
168
  EyeIcon,
161
169
  FileCodeIcon,
162
170
  FileCreateIcon,
@@ -165,11 +173,15 @@ export {
165
173
  FileSpreadsheetIcon,
166
174
  FileTextIcon,
167
175
  FolderIcon,
176
+ GitHubBrandIcon,
177
+ GoogleBrandIcon,
168
178
  HealthIcon,
169
179
  ImageFileIcon,
170
180
  Input,
171
181
  LaunchIcon,
182
+ LayoutGridIcon,
172
183
  LayoutMenuIcon,
184
+ LayoutPresetIcon,
173
185
  LoadingIcon,
174
186
  MaximizeIcon,
175
187
  MinimizeIcon,