@xenide-io/the-old-ui-theme 0.3.0 → 0.3.2
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-5HSOBJ4F.mjs +5968 -0
- package/dist/{index-D1RTT2Ap.d.mts → index-BgG8Homu.d.mts} +419 -2
- package/dist/{index-D1RTT2Ap.d.ts → index-BgG8Homu.d.ts} +419 -2
- package/dist/index.d.mts +198 -95
- package/dist/index.d.ts +198 -95
- package/dist/index.js +2995 -1136
- package/dist/index.mjs +629 -735
- package/dist/ui.d.mts +1 -1
- package/dist/ui.d.ts +1 -1
- package/dist/ui.js +1986 -156
- package/dist/ui.mjs +76 -3
- package/package.json +4 -14
- package/src/app/globals.css +976 -2
- package/src/components/charts/index.ts +9 -8
- package/src/components/charts/quill/BarChart.tsx +85 -0
- package/src/components/charts/quill/FunnelChart.tsx +49 -0
- package/src/components/charts/quill/InsightShell.tsx +27 -0
- package/src/components/charts/quill/MetricCard.tsx +44 -0
- package/src/components/charts/quill/PieChart.tsx +81 -0
- package/src/components/charts/quill/Sparkline.tsx +57 -0
- package/src/components/charts/quill/TimeSeriesLineChart.tsx +62 -0
- package/src/components/charts/quill/index.ts +9 -0
- package/src/components/icons/icons.tsx +2 -0
- package/src/components/icons/index.ts +3 -0
- package/src/components/icons/lemon-brand-icons.tsx +16 -0
- package/src/components/icons/lemon-category-icons.tsx +72 -0
- package/src/components/icons/lemon-icons.tsx +57 -0
- package/src/components/sections/IconShowcase.tsx +110 -7
- package/src/components/sections/NewComponentsShowcase.tsx +1052 -0
- package/src/components/sections/ProductLayoutsShowcase.tsx +57 -117
- package/src/components/sections/QuillChartShowcase.tsx +92 -0
- package/src/components/sections/QuillDashboardShowcase.tsx +149 -0
- package/src/components/sections/SidebarShowcase.tsx +152 -0
- package/src/components/sections/TableShowcase.tsx +2 -0
- package/src/components/sections/TooltipShowcase.tsx +19 -25
- package/src/components/ui/AlertDialog.tsx +62 -0
- package/src/components/ui/AppLayout.tsx +27 -0
- package/src/components/ui/Autocomplete.tsx +106 -0
- package/src/components/ui/Banner.tsx +63 -0
- package/src/components/ui/ButtonGroup.tsx +16 -0
- package/src/components/ui/Chip.tsx +46 -0
- package/src/components/ui/Collapsible.tsx +46 -0
- package/src/components/ui/Combobox.tsx +119 -0
- package/src/components/ui/ContextMenu.tsx +81 -0
- package/src/components/ui/DataTable.tsx +133 -0
- package/src/components/ui/DatePicker.tsx +96 -0
- package/src/components/ui/Dialog.tsx +75 -0
- package/src/components/ui/Divider.tsx +39 -0
- package/src/components/ui/Dot.tsx +32 -0
- package/src/components/ui/InputGroup.tsx +16 -0
- package/src/components/ui/Lettermark.tsx +47 -0
- package/src/components/ui/Link.tsx +32 -0
- package/src/components/ui/LoadingBar.tsx +25 -0
- package/src/components/ui/Menubar.tsx +66 -0
- package/src/components/ui/Metric.tsx +34 -0
- package/src/components/ui/NumberField.tsx +76 -0
- package/src/components/ui/Popover.tsx +73 -0
- package/src/components/ui/ProgressCircle.tsx +63 -0
- package/src/components/ui/Resizable.tsx +71 -0
- package/src/components/ui/Row.tsx +51 -0
- package/src/components/ui/ScrollArea.tsx +54 -0
- package/src/components/ui/Sidebar.tsx +77 -0
- package/src/components/ui/Snack.tsx +48 -0
- package/src/components/ui/Spinner.tsx +30 -0
- package/src/components/ui/Splotch.tsx +33 -0
- package/src/components/ui/Table.tsx +2 -0
- package/src/components/ui/Tag.tsx +65 -0
- package/src/components/ui/Toggle.tsx +62 -0
- package/src/components/ui/Tooltip.test.tsx +58 -0
- package/src/components/ui/Tooltip.tsx +211 -0
- package/src/components/ui/Widget.tsx +31 -0
- package/src/components/ui/index.ts +275 -21
- package/dist/chunk-FDMD3IIN.mjs +0 -3831
- package/src/components/charts/ph-insight-charts.tsx +0 -162
- package/src/components/dashboard/DashboardFiltersBar.tsx +0 -19
- package/src/components/dashboard/DashboardGrid.tsx +0 -23
- package/src/components/dashboard/DashboardInsightPlaceholder.tsx +0 -37
- package/src/components/dashboard/DashboardKpiCard.tsx +0 -25
- package/src/components/dashboard/DashboardToolbar.tsx +0 -23
- package/src/components/dashboard/DashboardWell.tsx +0 -10
- package/src/components/dashboard/InsightMiniCard.tsx +0 -26
- package/src/components/dashboard/InsightShell.tsx +0 -37
- package/src/components/dashboard/InsightShellHeader.tsx +0 -22
- package/src/components/dashboard/MiniTrendBars.tsx +0 -51
- package/src/components/dashboard/index.ts +0 -31
- package/src/components/dashboard/types.ts +0 -9
- package/src/components/sections/ChartShowcase.tsx +0 -190
- package/src/components/sections/DashboardShowcase.tsx +0 -191
- package/src/components/sections/StatShowcase.tsx +0 -129
package/dist/ui.mjs
CHANGED
|
@@ -1,25 +1,40 @@
|
|
|
1
|
+
"use client";
|
|
1
2
|
import {
|
|
2
3
|
Accordion,
|
|
3
4
|
Alert,
|
|
5
|
+
AlertDialog,
|
|
6
|
+
AppLayout,
|
|
4
7
|
AuthCard,
|
|
5
8
|
AuthDivider,
|
|
6
9
|
AuthLayout,
|
|
10
|
+
Autocomplete,
|
|
7
11
|
Avatar,
|
|
8
12
|
AvatarGroup,
|
|
9
13
|
Badge,
|
|
14
|
+
Banner,
|
|
10
15
|
Breadcrumbs,
|
|
11
16
|
Button,
|
|
12
17
|
ButtonChrome,
|
|
18
|
+
ButtonGroup,
|
|
13
19
|
Calendar,
|
|
14
20
|
Caption,
|
|
15
21
|
Card,
|
|
16
22
|
ChatBubble,
|
|
17
23
|
Checkbox,
|
|
24
|
+
Chip,
|
|
18
25
|
CodeBlock,
|
|
26
|
+
Collapsible,
|
|
19
27
|
CollapsibleSection,
|
|
28
|
+
Combobox,
|
|
20
29
|
CommandPalette,
|
|
21
30
|
ComponentDocs,
|
|
31
|
+
ContextMenu,
|
|
32
|
+
DataTable,
|
|
33
|
+
DatePicker,
|
|
34
|
+
Dialog,
|
|
22
35
|
Display,
|
|
36
|
+
Divider,
|
|
37
|
+
Dot,
|
|
23
38
|
Drawer,
|
|
24
39
|
DropdownButton,
|
|
25
40
|
DropdownItem,
|
|
@@ -43,21 +58,33 @@ import {
|
|
|
43
58
|
IconByName,
|
|
44
59
|
Indicator,
|
|
45
60
|
Input,
|
|
61
|
+
InputGroup,
|
|
46
62
|
Kbd,
|
|
47
63
|
Label,
|
|
48
64
|
Lead,
|
|
65
|
+
Lettermark,
|
|
66
|
+
Link,
|
|
49
67
|
Loader,
|
|
68
|
+
LoadingBar,
|
|
50
69
|
LoadingState,
|
|
70
|
+
Menubar,
|
|
71
|
+
Metric,
|
|
51
72
|
Modal,
|
|
52
73
|
Mono,
|
|
74
|
+
NumberField,
|
|
53
75
|
Overline,
|
|
54
76
|
P,
|
|
55
77
|
Pagination,
|
|
56
78
|
Panel,
|
|
79
|
+
Popover,
|
|
57
80
|
Progress,
|
|
81
|
+
ProgressCircle,
|
|
58
82
|
Radio,
|
|
59
83
|
Range,
|
|
60
84
|
Rating,
|
|
85
|
+
Resizable,
|
|
86
|
+
Row,
|
|
87
|
+
ScrollArea,
|
|
61
88
|
SearchGroup,
|
|
62
89
|
SearchInput,
|
|
63
90
|
SegmentedControl,
|
|
@@ -65,13 +92,18 @@ import {
|
|
|
65
92
|
SettingsLayout,
|
|
66
93
|
SettingsNav,
|
|
67
94
|
ShowcaseWrapper,
|
|
95
|
+
Sidebar,
|
|
68
96
|
Skeleton,
|
|
69
97
|
Small,
|
|
98
|
+
Snack,
|
|
70
99
|
SortMenu,
|
|
100
|
+
Spinner,
|
|
101
|
+
Splotch,
|
|
71
102
|
Stat,
|
|
72
103
|
Stepper,
|
|
73
104
|
Table,
|
|
74
105
|
Tabs,
|
|
106
|
+
Tag,
|
|
75
107
|
Terminal,
|
|
76
108
|
Textarea,
|
|
77
109
|
ThemeDomSync,
|
|
@@ -80,31 +112,50 @@ import {
|
|
|
80
112
|
Timeline,
|
|
81
113
|
Toast,
|
|
82
114
|
ToastStack,
|
|
83
|
-
Toggle
|
|
84
|
-
|
|
115
|
+
Toggle,
|
|
116
|
+
ToggleButton,
|
|
117
|
+
ToggleGroup,
|
|
118
|
+
Tooltip,
|
|
119
|
+
TooltipProvider,
|
|
120
|
+
Widget
|
|
121
|
+
} from "./chunk-5HSOBJ4F.mjs";
|
|
85
122
|
import "./chunk-FWCSY2DS.mjs";
|
|
86
123
|
export {
|
|
87
124
|
Accordion,
|
|
88
125
|
Alert,
|
|
126
|
+
AlertDialog,
|
|
127
|
+
AppLayout,
|
|
89
128
|
AuthCard,
|
|
90
129
|
AuthDivider,
|
|
91
130
|
AuthLayout,
|
|
131
|
+
Autocomplete,
|
|
92
132
|
Avatar,
|
|
93
133
|
AvatarGroup,
|
|
94
134
|
Badge,
|
|
135
|
+
Banner,
|
|
95
136
|
Breadcrumbs,
|
|
96
137
|
Button,
|
|
97
138
|
ButtonChrome,
|
|
139
|
+
ButtonGroup,
|
|
98
140
|
Calendar,
|
|
99
141
|
Caption,
|
|
100
142
|
Card,
|
|
101
143
|
ChatBubble,
|
|
102
144
|
Checkbox,
|
|
145
|
+
Chip,
|
|
103
146
|
CodeBlock,
|
|
147
|
+
Collapsible,
|
|
104
148
|
CollapsibleSection,
|
|
149
|
+
Combobox,
|
|
105
150
|
CommandPalette,
|
|
106
151
|
ComponentDocs,
|
|
152
|
+
ContextMenu,
|
|
153
|
+
DataTable,
|
|
154
|
+
DatePicker,
|
|
155
|
+
Dialog,
|
|
107
156
|
Display,
|
|
157
|
+
Divider,
|
|
158
|
+
Dot,
|
|
108
159
|
Drawer,
|
|
109
160
|
DropdownButton,
|
|
110
161
|
DropdownItem,
|
|
@@ -128,21 +179,33 @@ export {
|
|
|
128
179
|
IconByName,
|
|
129
180
|
Indicator,
|
|
130
181
|
Input,
|
|
182
|
+
InputGroup,
|
|
131
183
|
Kbd,
|
|
132
184
|
Label,
|
|
133
185
|
Lead,
|
|
186
|
+
Lettermark,
|
|
187
|
+
Link,
|
|
134
188
|
Loader,
|
|
189
|
+
LoadingBar,
|
|
135
190
|
LoadingState,
|
|
191
|
+
Menubar,
|
|
192
|
+
Metric,
|
|
136
193
|
Modal,
|
|
137
194
|
Mono,
|
|
195
|
+
NumberField,
|
|
138
196
|
Overline,
|
|
139
197
|
P,
|
|
140
198
|
Pagination,
|
|
141
199
|
Panel,
|
|
200
|
+
Popover,
|
|
142
201
|
Progress,
|
|
202
|
+
ProgressCircle,
|
|
143
203
|
Radio,
|
|
144
204
|
Range,
|
|
145
205
|
Rating,
|
|
206
|
+
Resizable,
|
|
207
|
+
Row,
|
|
208
|
+
ScrollArea,
|
|
146
209
|
SearchGroup,
|
|
147
210
|
SearchInput,
|
|
148
211
|
SegmentedControl,
|
|
@@ -150,13 +213,18 @@ export {
|
|
|
150
213
|
SettingsLayout,
|
|
151
214
|
SettingsNav,
|
|
152
215
|
ShowcaseWrapper,
|
|
216
|
+
Sidebar,
|
|
153
217
|
Skeleton,
|
|
154
218
|
Small,
|
|
219
|
+
Snack,
|
|
155
220
|
SortMenu,
|
|
221
|
+
Spinner,
|
|
222
|
+
Splotch,
|
|
156
223
|
Stat,
|
|
157
224
|
Stepper,
|
|
158
225
|
Table,
|
|
159
226
|
Tabs,
|
|
227
|
+
Tag,
|
|
160
228
|
Terminal,
|
|
161
229
|
Textarea,
|
|
162
230
|
ThemeDomSync,
|
|
@@ -165,5 +233,10 @@ export {
|
|
|
165
233
|
Timeline,
|
|
166
234
|
Toast,
|
|
167
235
|
ToastStack,
|
|
168
|
-
Toggle
|
|
236
|
+
Toggle,
|
|
237
|
+
ToggleButton,
|
|
238
|
+
ToggleGroup,
|
|
239
|
+
Tooltip,
|
|
240
|
+
TooltipProvider,
|
|
241
|
+
Widget
|
|
169
242
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xenide-io/the-old-ui-theme",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Props-driven React components and theme tokens inspired by classic interface design — optimized for Next.js apps and internal tools.",
|
|
5
5
|
"author": "Xenide",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,8 +22,7 @@
|
|
|
22
22
|
"node": ">=18.0.0"
|
|
23
23
|
},
|
|
24
24
|
"sideEffects": [
|
|
25
|
-
"*.css"
|
|
26
|
-
"src/lib/chart/register-chartjs.ts"
|
|
25
|
+
"*.css"
|
|
27
26
|
],
|
|
28
27
|
"main": "./dist/index.js",
|
|
29
28
|
"module": "./dist/index.mjs",
|
|
@@ -77,17 +76,9 @@
|
|
|
77
76
|
"react-dom": "^18.0.0",
|
|
78
77
|
"next": ">=16.2.7",
|
|
79
78
|
"tailwindcss": "^3.4.0",
|
|
80
|
-
"chart.js": "^4.5.1",
|
|
81
|
-
"react-chartjs-2": "^5.3.1",
|
|
82
79
|
"d3-scale": "^4.0.2"
|
|
83
80
|
},
|
|
84
81
|
"peerDependenciesMeta": {
|
|
85
|
-
"chart.js": {
|
|
86
|
-
"optional": true
|
|
87
|
-
},
|
|
88
|
-
"react-chartjs-2": {
|
|
89
|
-
"optional": true
|
|
90
|
-
},
|
|
91
82
|
"d3-scale": {
|
|
92
83
|
"optional": true
|
|
93
84
|
}
|
|
@@ -103,13 +94,11 @@
|
|
|
103
94
|
"@types/react": "^18.3.3",
|
|
104
95
|
"@types/react-dom": "^18.3.0",
|
|
105
96
|
"autoprefixer": "^10.4.19",
|
|
106
|
-
"chart.js": "^4.5.1",
|
|
107
97
|
"d3-scale": "^4.0.2",
|
|
108
98
|
"jsdom": "26",
|
|
109
99
|
"next": "^16.2.7",
|
|
110
100
|
"postcss": "^8.4.39",
|
|
111
101
|
"react": "^18.0.0",
|
|
112
|
-
"react-chartjs-2": "^5.3.1",
|
|
113
102
|
"react-dom": "^18.0.0",
|
|
114
103
|
"tailwindcss": "^3.4.4",
|
|
115
104
|
"tsup": "^8.5.1",
|
|
@@ -121,6 +110,7 @@
|
|
|
121
110
|
},
|
|
122
111
|
"dependencies": {
|
|
123
112
|
"@radix-ui/react-dialog": "^1.1.20",
|
|
124
|
-
"@radix-ui/react-dropdown-menu": "^2.1.21"
|
|
113
|
+
"@radix-ui/react-dropdown-menu": "^2.1.21",
|
|
114
|
+
"lucide-react": "^1.27.0"
|
|
125
115
|
}
|
|
126
116
|
}
|