@xenide-io/the-old-ui-theme 0.4.0 → 0.4.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/{chunk-KORWJCIO.mjs → chunk-54ZR4VL5.mjs} +691 -1686
- package/dist/chunk-G53YLHVE.mjs +1023 -0
- package/dist/index.mjs +78 -76
- package/dist/suite.js +495 -259
- package/dist/suite.mjs +94 -118
- package/dist/ui.mjs +13 -11
- package/package.json +1 -1
- package/src/suite/components/suite-layout.tsx +3 -5
- package/src/suite/components/suite-sidebar.tsx +11 -4
- package/src/suite/components/suite-user-menu.tsx +56 -75
- package/src/suite/components/today-page-frame.tsx +1 -1
- package/src/suite/lib/apps.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -14,9 +14,7 @@ import {
|
|
|
14
14
|
Banner,
|
|
15
15
|
Breadcrumbs,
|
|
16
16
|
Button,
|
|
17
|
-
ButtonChrome,
|
|
18
17
|
ButtonGroup,
|
|
19
|
-
CANONICAL_ICONS,
|
|
20
18
|
Calendar,
|
|
21
19
|
Caption,
|
|
22
20
|
Card,
|
|
@@ -38,11 +36,6 @@ import {
|
|
|
38
36
|
Divider,
|
|
39
37
|
Dot,
|
|
40
38
|
Drawer,
|
|
41
|
-
DropdownButton,
|
|
42
|
-
DropdownItem,
|
|
43
|
-
DropdownMenu,
|
|
44
|
-
DropdownRadioGroup,
|
|
45
|
-
DropdownRadioItem,
|
|
46
39
|
EmptyState,
|
|
47
40
|
FileUpload,
|
|
48
41
|
FilterBar,
|
|
@@ -56,6 +49,82 @@ import {
|
|
|
56
49
|
H4,
|
|
57
50
|
H5,
|
|
58
51
|
HoverCard,
|
|
52
|
+
Indicator,
|
|
53
|
+
Input,
|
|
54
|
+
InputGroup,
|
|
55
|
+
Kbd,
|
|
56
|
+
Label,
|
|
57
|
+
Lead,
|
|
58
|
+
Lettermark,
|
|
59
|
+
Link,
|
|
60
|
+
Loader,
|
|
61
|
+
LoadingBar,
|
|
62
|
+
LoadingState,
|
|
63
|
+
Menubar,
|
|
64
|
+
Metric,
|
|
65
|
+
Modal,
|
|
66
|
+
Mono,
|
|
67
|
+
NumberField,
|
|
68
|
+
Overline,
|
|
69
|
+
P,
|
|
70
|
+
Pagination,
|
|
71
|
+
Panel,
|
|
72
|
+
Popover,
|
|
73
|
+
Progress,
|
|
74
|
+
ProgressCircle,
|
|
75
|
+
Radio,
|
|
76
|
+
Range,
|
|
77
|
+
Rating,
|
|
78
|
+
Resizable,
|
|
79
|
+
Row,
|
|
80
|
+
ScrollArea,
|
|
81
|
+
SearchGroup,
|
|
82
|
+
SearchInput,
|
|
83
|
+
SegmentedControl,
|
|
84
|
+
Select,
|
|
85
|
+
SettingsLayout,
|
|
86
|
+
SettingsNav,
|
|
87
|
+
ShowcaseWrapper,
|
|
88
|
+
Sidebar,
|
|
89
|
+
Skeleton,
|
|
90
|
+
Small,
|
|
91
|
+
Snack,
|
|
92
|
+
SortMenu,
|
|
93
|
+
Spinner,
|
|
94
|
+
Splotch,
|
|
95
|
+
Stat,
|
|
96
|
+
Stepper,
|
|
97
|
+
THEMES,
|
|
98
|
+
THEME_GROUPS,
|
|
99
|
+
THEME_INIT_SCRIPT,
|
|
100
|
+
Table,
|
|
101
|
+
Tabs,
|
|
102
|
+
Tag,
|
|
103
|
+
Terminal,
|
|
104
|
+
Textarea,
|
|
105
|
+
ThemeDomSync,
|
|
106
|
+
ThemeManager,
|
|
107
|
+
ThemeSwitcher,
|
|
108
|
+
Timeline,
|
|
109
|
+
Toast,
|
|
110
|
+
ToastStack,
|
|
111
|
+
Toggle,
|
|
112
|
+
ToggleButton,
|
|
113
|
+
ToggleGroup,
|
|
114
|
+
Widget,
|
|
115
|
+
getTheme,
|
|
116
|
+
isThemeId,
|
|
117
|
+
persistTheme,
|
|
118
|
+
readStoredTheme
|
|
119
|
+
} from "./chunk-54ZR4VL5.mjs";
|
|
120
|
+
import {
|
|
121
|
+
ButtonChrome,
|
|
122
|
+
CANONICAL_ICONS,
|
|
123
|
+
DropdownButton,
|
|
124
|
+
DropdownItem,
|
|
125
|
+
DropdownMenu,
|
|
126
|
+
DropdownRadioGroup,
|
|
127
|
+
DropdownRadioItem,
|
|
59
128
|
IconActivity,
|
|
60
129
|
IconAreaChart,
|
|
61
130
|
IconArrowDown,
|
|
@@ -134,82 +203,15 @@ import {
|
|
|
134
203
|
IconUpload,
|
|
135
204
|
IconVolume,
|
|
136
205
|
IconVolumeOff,
|
|
137
|
-
Indicator,
|
|
138
|
-
Input,
|
|
139
|
-
InputGroup,
|
|
140
|
-
Kbd,
|
|
141
|
-
Label,
|
|
142
|
-
Lead,
|
|
143
|
-
Lettermark,
|
|
144
|
-
Link,
|
|
145
|
-
Loader,
|
|
146
|
-
LoadingBar,
|
|
147
|
-
LoadingState,
|
|
148
|
-
Menubar,
|
|
149
|
-
Metric,
|
|
150
|
-
Modal,
|
|
151
|
-
Mono,
|
|
152
|
-
NumberField,
|
|
153
206
|
OLD_UI_ICONS,
|
|
154
|
-
Overline,
|
|
155
|
-
P,
|
|
156
207
|
PH_ICONS,
|
|
157
208
|
PH_ICON_ALIASES,
|
|
158
|
-
Pagination,
|
|
159
|
-
Panel,
|
|
160
|
-
Popover,
|
|
161
|
-
Progress,
|
|
162
|
-
ProgressCircle,
|
|
163
|
-
Radio,
|
|
164
|
-
Range,
|
|
165
|
-
Rating,
|
|
166
|
-
Resizable,
|
|
167
|
-
Row,
|
|
168
|
-
ScrollArea,
|
|
169
|
-
SearchGroup,
|
|
170
|
-
SearchInput,
|
|
171
|
-
SegmentedControl,
|
|
172
|
-
Select,
|
|
173
|
-
SettingsLayout,
|
|
174
|
-
SettingsNav,
|
|
175
|
-
ShowcaseWrapper,
|
|
176
|
-
Sidebar,
|
|
177
|
-
Skeleton,
|
|
178
|
-
Small,
|
|
179
|
-
Snack,
|
|
180
|
-
SortMenu,
|
|
181
|
-
Spinner,
|
|
182
|
-
Splotch,
|
|
183
|
-
Stat,
|
|
184
|
-
Stepper,
|
|
185
|
-
THEMES,
|
|
186
|
-
THEME_GROUPS,
|
|
187
|
-
THEME_INIT_SCRIPT,
|
|
188
|
-
Table,
|
|
189
|
-
Tabs,
|
|
190
|
-
Tag,
|
|
191
|
-
Terminal,
|
|
192
|
-
Textarea,
|
|
193
|
-
ThemeDomSync,
|
|
194
|
-
ThemeManager,
|
|
195
|
-
ThemeSwitcher,
|
|
196
|
-
Timeline,
|
|
197
|
-
Toast,
|
|
198
|
-
ToastStack,
|
|
199
|
-
Toggle,
|
|
200
|
-
ToggleButton,
|
|
201
|
-
ToggleGroup,
|
|
202
209
|
Tooltip,
|
|
203
210
|
TooltipProvider,
|
|
204
|
-
Widget,
|
|
205
211
|
cn,
|
|
206
212
|
createIconBase,
|
|
207
|
-
createIconBasePath
|
|
208
|
-
|
|
209
|
-
isThemeId,
|
|
210
|
-
persistTheme,
|
|
211
|
-
readStoredTheme
|
|
212
|
-
} from "./chunk-KORWJCIO.mjs";
|
|
213
|
+
createIconBasePath
|
|
214
|
+
} from "./chunk-G53YLHVE.mjs";
|
|
213
215
|
import {
|
|
214
216
|
__spreadProps,
|
|
215
217
|
__spreadValues
|