galaxy-design 0.2.10 → 0.2.12
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/registries/registry-angular.json +719 -149
- package/package.json +1 -1
|
@@ -5,11 +5,22 @@
|
|
|
5
5
|
"selector": "gButton",
|
|
6
6
|
"type": "form",
|
|
7
7
|
"description": "Versatile button with 6 status variants and 5 sizes",
|
|
8
|
-
"files": [
|
|
9
|
-
|
|
8
|
+
"files": [
|
|
9
|
+
"button.component.ts",
|
|
10
|
+
"index.ts",
|
|
11
|
+
"variants.ts"
|
|
12
|
+
],
|
|
13
|
+
"dependencies": [
|
|
14
|
+
"@radix-ng/primitives",
|
|
15
|
+
"class-variance-authority"
|
|
16
|
+
],
|
|
10
17
|
"devDependencies": [],
|
|
11
|
-
"peerDependencies": [
|
|
12
|
-
|
|
18
|
+
"peerDependencies": [
|
|
19
|
+
"lucide-angular"
|
|
20
|
+
],
|
|
21
|
+
"exports": [
|
|
22
|
+
"ButtonDirective"
|
|
23
|
+
],
|
|
13
24
|
"category": "form"
|
|
14
25
|
},
|
|
15
26
|
"input": {
|
|
@@ -17,11 +28,18 @@
|
|
|
17
28
|
"selector": "g-input",
|
|
18
29
|
"type": "form",
|
|
19
30
|
"description": "Text input with label, hints, and error messages",
|
|
20
|
-
"files": [
|
|
31
|
+
"files": [
|
|
32
|
+
"index.ts",
|
|
33
|
+
"input.component.ts"
|
|
34
|
+
],
|
|
21
35
|
"dependencies": [],
|
|
22
36
|
"devDependencies": [],
|
|
23
|
-
"peerDependencies": [
|
|
24
|
-
|
|
37
|
+
"peerDependencies": [
|
|
38
|
+
"lucide-angular"
|
|
39
|
+
],
|
|
40
|
+
"exports": [
|
|
41
|
+
"InputComponent"
|
|
42
|
+
],
|
|
25
43
|
"category": "form"
|
|
26
44
|
},
|
|
27
45
|
"label": {
|
|
@@ -29,11 +47,18 @@
|
|
|
29
47
|
"selector": "ui-label",
|
|
30
48
|
"type": "form",
|
|
31
49
|
"description": "Accessible form label component",
|
|
32
|
-
"files": [
|
|
33
|
-
|
|
50
|
+
"files": [
|
|
51
|
+
"index.ts",
|
|
52
|
+
"label.component.ts"
|
|
53
|
+
],
|
|
54
|
+
"dependencies": [
|
|
55
|
+
"@radix-ng/primitives"
|
|
56
|
+
],
|
|
34
57
|
"devDependencies": [],
|
|
35
58
|
"peerDependencies": [],
|
|
36
|
-
"exports": [
|
|
59
|
+
"exports": [
|
|
60
|
+
"LabelComponent"
|
|
61
|
+
],
|
|
37
62
|
"category": "form"
|
|
38
63
|
},
|
|
39
64
|
"checkbox": {
|
|
@@ -41,11 +66,20 @@
|
|
|
41
66
|
"selector": "g-checkbox",
|
|
42
67
|
"type": "form",
|
|
43
68
|
"description": "Checkbox with indeterminate state support",
|
|
44
|
-
"files": [
|
|
45
|
-
|
|
69
|
+
"files": [
|
|
70
|
+
"checkbox.component.ts",
|
|
71
|
+
"index.ts"
|
|
72
|
+
],
|
|
73
|
+
"dependencies": [
|
|
74
|
+
"@radix-ng/primitives"
|
|
75
|
+
],
|
|
46
76
|
"devDependencies": [],
|
|
47
|
-
"peerDependencies": [
|
|
48
|
-
|
|
77
|
+
"peerDependencies": [
|
|
78
|
+
"lucide-angular"
|
|
79
|
+
],
|
|
80
|
+
"exports": [
|
|
81
|
+
"CheckboxComponent"
|
|
82
|
+
],
|
|
49
83
|
"category": "form"
|
|
50
84
|
},
|
|
51
85
|
"select": {
|
|
@@ -53,11 +87,21 @@
|
|
|
53
87
|
"selector": "g-select",
|
|
54
88
|
"type": "form",
|
|
55
89
|
"description": "Custom dropdown with search functionality",
|
|
56
|
-
"files": [
|
|
57
|
-
|
|
90
|
+
"files": [
|
|
91
|
+
"index.ts",
|
|
92
|
+
"select.component.ts"
|
|
93
|
+
],
|
|
94
|
+
"dependencies": [
|
|
95
|
+
"@radix-ng/primitives"
|
|
96
|
+
],
|
|
58
97
|
"devDependencies": [],
|
|
59
|
-
"peerDependencies": [
|
|
60
|
-
|
|
98
|
+
"peerDependencies": [
|
|
99
|
+
"lucide-angular"
|
|
100
|
+
],
|
|
101
|
+
"exports": [
|
|
102
|
+
"SelectComponent",
|
|
103
|
+
"SelectItemComponent"
|
|
104
|
+
],
|
|
61
105
|
"category": "form"
|
|
62
106
|
},
|
|
63
107
|
"radio-group": {
|
|
@@ -65,150 +109,266 @@
|
|
|
65
109
|
"selector": "g-radio-group",
|
|
66
110
|
"type": "form",
|
|
67
111
|
"description": "Radio button group with single selection",
|
|
68
|
-
"files": [
|
|
69
|
-
|
|
112
|
+
"files": [
|
|
113
|
+
"index.ts",
|
|
114
|
+
"radio-group.component.ts"
|
|
115
|
+
],
|
|
116
|
+
"dependencies": [
|
|
117
|
+
"@radix-ng/primitives"
|
|
118
|
+
],
|
|
70
119
|
"peerDependencies": [],
|
|
71
|
-
"exports": [
|
|
120
|
+
"exports": [
|
|
121
|
+
"RadioGroupComponent"
|
|
122
|
+
]
|
|
72
123
|
},
|
|
73
124
|
"switch": {
|
|
74
125
|
"name": "Switch",
|
|
75
126
|
"selector": "g-switch",
|
|
76
127
|
"type": "form",
|
|
77
128
|
"description": "Toggle switch with smooth animation",
|
|
78
|
-
"files": [
|
|
79
|
-
|
|
129
|
+
"files": [
|
|
130
|
+
"index.ts",
|
|
131
|
+
"switch.component.ts"
|
|
132
|
+
],
|
|
133
|
+
"dependencies": [
|
|
134
|
+
"@radix-ng/primitives"
|
|
135
|
+
],
|
|
80
136
|
"peerDependencies": [],
|
|
81
|
-
"exports": [
|
|
137
|
+
"exports": [
|
|
138
|
+
"SwitchComponent"
|
|
139
|
+
]
|
|
82
140
|
},
|
|
83
141
|
"slider": {
|
|
84
142
|
"name": "Slider",
|
|
85
143
|
"selector": "g-slider",
|
|
86
144
|
"type": "form",
|
|
87
145
|
"description": "Range slider with min/max and step support",
|
|
88
|
-
"files": [
|
|
89
|
-
|
|
146
|
+
"files": [
|
|
147
|
+
"index.ts",
|
|
148
|
+
"slider.component.ts"
|
|
149
|
+
],
|
|
150
|
+
"dependencies": [
|
|
151
|
+
"@radix-ng/primitives"
|
|
152
|
+
],
|
|
90
153
|
"peerDependencies": [],
|
|
91
|
-
"exports": [
|
|
154
|
+
"exports": [
|
|
155
|
+
"SliderComponent"
|
|
156
|
+
]
|
|
92
157
|
},
|
|
93
158
|
"textarea": {
|
|
94
159
|
"name": "Textarea",
|
|
95
160
|
"selector": "g-textarea",
|
|
96
161
|
"type": "form",
|
|
97
162
|
"description": "Multi-line text input component",
|
|
98
|
-
"files": [
|
|
163
|
+
"files": [
|
|
164
|
+
"index.ts",
|
|
165
|
+
"textarea.component.ts"
|
|
166
|
+
],
|
|
99
167
|
"dependencies": [],
|
|
100
168
|
"peerDependencies": [],
|
|
101
|
-
"exports": [
|
|
169
|
+
"exports": [
|
|
170
|
+
"TextareaComponent"
|
|
171
|
+
]
|
|
102
172
|
},
|
|
103
173
|
"accordion": {
|
|
104
174
|
"name": "Accordion",
|
|
105
175
|
"selector": "g-accordion",
|
|
106
176
|
"type": "layout",
|
|
107
177
|
"description": "Collapsible sections with expand/collapse",
|
|
108
|
-
"files": [
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
178
|
+
"files": [
|
|
179
|
+
"accordion.component.ts",
|
|
180
|
+
"index.ts"
|
|
181
|
+
],
|
|
182
|
+
"dependencies": [
|
|
183
|
+
"@radix-ng/primitives"
|
|
184
|
+
],
|
|
185
|
+
"peerDependencies": [
|
|
186
|
+
"lucide-angular"
|
|
187
|
+
],
|
|
188
|
+
"exports": [
|
|
189
|
+
"AccordionComponent",
|
|
190
|
+
"AccordionItemComponent"
|
|
191
|
+
]
|
|
112
192
|
},
|
|
113
193
|
"collapsible": {
|
|
114
194
|
"name": "Collapsible",
|
|
115
195
|
"selector": "g-collapsible",
|
|
116
196
|
"type": "layout",
|
|
117
197
|
"description": "Collapsible content panel",
|
|
118
|
-
"files": [
|
|
119
|
-
|
|
198
|
+
"files": [
|
|
199
|
+
"collapsible.component.ts",
|
|
200
|
+
"index.ts"
|
|
201
|
+
],
|
|
202
|
+
"dependencies": [
|
|
203
|
+
"@radix-ng/primitives"
|
|
204
|
+
],
|
|
120
205
|
"peerDependencies": [],
|
|
121
|
-
"exports": [
|
|
206
|
+
"exports": [
|
|
207
|
+
"CollapsibleComponent"
|
|
208
|
+
]
|
|
122
209
|
},
|
|
123
210
|
"separator": {
|
|
124
211
|
"name": "Separator",
|
|
125
212
|
"selector": "g-separator",
|
|
126
213
|
"type": "layout",
|
|
127
214
|
"description": "Horizontal or vertical separator",
|
|
128
|
-
"files": [
|
|
129
|
-
|
|
215
|
+
"files": [
|
|
216
|
+
"index.ts",
|
|
217
|
+
"separator.component.ts"
|
|
218
|
+
],
|
|
219
|
+
"dependencies": [
|
|
220
|
+
"@radix-ng/primitives"
|
|
221
|
+
],
|
|
130
222
|
"peerDependencies": [],
|
|
131
|
-
"exports": [
|
|
223
|
+
"exports": [
|
|
224
|
+
"SeparatorComponent"
|
|
225
|
+
]
|
|
132
226
|
},
|
|
133
227
|
"tabs": {
|
|
134
228
|
"name": "Tabs",
|
|
135
229
|
"selector": "g-tabs",
|
|
136
230
|
"type": "navigation",
|
|
137
231
|
"description": "Tabbed content organization",
|
|
138
|
-
"files": [
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
232
|
+
"files": [
|
|
233
|
+
"index.ts",
|
|
234
|
+
"tabs.component.ts"
|
|
235
|
+
],
|
|
236
|
+
"dependencies": [
|
|
237
|
+
"@radix-ng/primitives"
|
|
238
|
+
],
|
|
239
|
+
"peerDependencies": [
|
|
240
|
+
"lucide-angular"
|
|
241
|
+
],
|
|
242
|
+
"exports": [
|
|
243
|
+
"TabsComponent",
|
|
244
|
+
"TabComponent",
|
|
245
|
+
"TabPanelComponent"
|
|
246
|
+
]
|
|
142
247
|
},
|
|
143
248
|
"dropdown-menu": {
|
|
144
249
|
"name": "Dropdown Menu",
|
|
145
250
|
"selector": "g-dropdown-menu",
|
|
146
251
|
"type": "navigation",
|
|
147
252
|
"description": "Action menus and context menus",
|
|
148
|
-
"files": [
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
253
|
+
"files": [
|
|
254
|
+
"dropdown-menu.component.ts",
|
|
255
|
+
"index.ts"
|
|
256
|
+
],
|
|
257
|
+
"dependencies": [
|
|
258
|
+
"@radix-ng/primitives"
|
|
259
|
+
],
|
|
260
|
+
"peerDependencies": [
|
|
261
|
+
"lucide-angular"
|
|
262
|
+
],
|
|
263
|
+
"exports": [
|
|
264
|
+
"DropdownMenuComponent",
|
|
265
|
+
"DropdownMenuItemComponent"
|
|
266
|
+
]
|
|
152
267
|
},
|
|
153
268
|
"menubar": {
|
|
154
269
|
"name": "Menubar",
|
|
155
270
|
"selector": "g-menubar",
|
|
156
271
|
"type": "navigation",
|
|
157
272
|
"description": "Horizontal menubar with dropdown menus",
|
|
158
|
-
"files": [
|
|
159
|
-
|
|
273
|
+
"files": [
|
|
274
|
+
"index.ts",
|
|
275
|
+
"menubar.component.ts"
|
|
276
|
+
],
|
|
277
|
+
"dependencies": [
|
|
278
|
+
"@radix-ng/primitives"
|
|
279
|
+
],
|
|
160
280
|
"peerDependencies": [],
|
|
161
|
-
"exports": [
|
|
281
|
+
"exports": [
|
|
282
|
+
"MenubarComponent"
|
|
283
|
+
]
|
|
162
284
|
},
|
|
163
285
|
"navigation-menu": {
|
|
164
286
|
"name": "Navigation Menu",
|
|
165
287
|
"selector": "g-navigation-menu",
|
|
166
288
|
"type": "navigation",
|
|
167
289
|
"description": "Navigation menu with nested items",
|
|
168
|
-
"files": [
|
|
169
|
-
|
|
290
|
+
"files": [
|
|
291
|
+
"index.ts",
|
|
292
|
+
"navigation-menu.component.ts"
|
|
293
|
+
],
|
|
294
|
+
"dependencies": [
|
|
295
|
+
"@radix-ng/primitives"
|
|
296
|
+
],
|
|
170
297
|
"peerDependencies": [],
|
|
171
|
-
"exports": [
|
|
298
|
+
"exports": [
|
|
299
|
+
"NavigationMenuComponent"
|
|
300
|
+
]
|
|
172
301
|
},
|
|
173
302
|
"context-menu": {
|
|
174
303
|
"name": "Context Menu",
|
|
175
304
|
"selector": "g-context-menu",
|
|
176
305
|
"type": "navigation",
|
|
177
306
|
"description": "Right-click context menu",
|
|
178
|
-
"files": [
|
|
179
|
-
|
|
307
|
+
"files": [
|
|
308
|
+
"context-menu.component.ts",
|
|
309
|
+
"index.ts"
|
|
310
|
+
],
|
|
311
|
+
"dependencies": [
|
|
312
|
+
"@radix-ng/primitives"
|
|
313
|
+
],
|
|
180
314
|
"peerDependencies": [],
|
|
181
|
-
"exports": [
|
|
315
|
+
"exports": [
|
|
316
|
+
"ContextMenuComponent"
|
|
317
|
+
]
|
|
182
318
|
},
|
|
183
319
|
"popover": {
|
|
184
320
|
"name": "Popover",
|
|
185
321
|
"selector": "g-popover",
|
|
186
322
|
"type": "modal-overlay",
|
|
187
323
|
"description": "Popover component for contextual information",
|
|
188
|
-
"files": [
|
|
189
|
-
|
|
324
|
+
"files": [
|
|
325
|
+
"index.ts",
|
|
326
|
+
"popover.component.ts"
|
|
327
|
+
],
|
|
328
|
+
"dependencies": [
|
|
329
|
+
"@radix-ng/primitives"
|
|
330
|
+
],
|
|
190
331
|
"peerDependencies": [],
|
|
191
|
-
"exports": [
|
|
332
|
+
"exports": [
|
|
333
|
+
"PopoverComponent"
|
|
334
|
+
]
|
|
192
335
|
},
|
|
193
336
|
"tooltip": {
|
|
194
337
|
"name": "Tooltip",
|
|
195
338
|
"selector": "g-tooltip",
|
|
196
339
|
"type": "modal-overlay",
|
|
197
340
|
"description": "Tooltip component for hover information (shadcn style)",
|
|
198
|
-
"files": [
|
|
199
|
-
|
|
341
|
+
"files": [
|
|
342
|
+
"index.ts",
|
|
343
|
+
"tooltip.component.ts"
|
|
344
|
+
],
|
|
345
|
+
"dependencies": [
|
|
346
|
+
"@radix-ng/primitives"
|
|
347
|
+
],
|
|
200
348
|
"peerDependencies": [],
|
|
201
|
-
"exports": [
|
|
349
|
+
"exports": [
|
|
350
|
+
"TooltipComponent"
|
|
351
|
+
]
|
|
202
352
|
},
|
|
203
353
|
"line-chart": {
|
|
204
354
|
"name": "LineChart",
|
|
205
355
|
"selector": "ui-line-chart",
|
|
206
356
|
"type": "chart",
|
|
207
357
|
"description": "Display data as a responsive line chart with smooth curves and customizable styling",
|
|
208
|
-
"files": [
|
|
209
|
-
|
|
358
|
+
"files": [
|
|
359
|
+
"line-chart.component.ts",
|
|
360
|
+
"types.ts",
|
|
361
|
+
"utils.ts",
|
|
362
|
+
"index.ts"
|
|
363
|
+
],
|
|
364
|
+
"dependencies": [
|
|
365
|
+
"ngx-echarts",
|
|
366
|
+
"echarts"
|
|
367
|
+
],
|
|
210
368
|
"peerDependencies": [],
|
|
211
|
-
"exports": [
|
|
369
|
+
"exports": [
|
|
370
|
+
"LineChartComponent"
|
|
371
|
+
],
|
|
212
372
|
"category": "charts"
|
|
213
373
|
},
|
|
214
374
|
"bar-chart": {
|
|
@@ -216,10 +376,20 @@
|
|
|
216
376
|
"selector": "ui-bar-chart",
|
|
217
377
|
"type": "chart",
|
|
218
378
|
"description": "Display data as vertical or horizontal bars with support for stacked and grouped layouts",
|
|
219
|
-
"files": [
|
|
220
|
-
|
|
379
|
+
"files": [
|
|
380
|
+
"bar-chart.component.ts",
|
|
381
|
+
"types.ts",
|
|
382
|
+
"utils.ts",
|
|
383
|
+
"index.ts"
|
|
384
|
+
],
|
|
385
|
+
"dependencies": [
|
|
386
|
+
"ngx-echarts",
|
|
387
|
+
"echarts"
|
|
388
|
+
],
|
|
221
389
|
"peerDependencies": [],
|
|
222
|
-
"exports": [
|
|
390
|
+
"exports": [
|
|
391
|
+
"BarChartComponent"
|
|
392
|
+
],
|
|
223
393
|
"category": "charts"
|
|
224
394
|
},
|
|
225
395
|
"pie-chart": {
|
|
@@ -227,20 +397,38 @@
|
|
|
227
397
|
"selector": "ui-pie-chart",
|
|
228
398
|
"type": "chart",
|
|
229
399
|
"description": "Display proportional data as a pie or donut chart with customizable labels and legend",
|
|
230
|
-
"files": [
|
|
231
|
-
|
|
400
|
+
"files": [
|
|
401
|
+
"pie-chart.component.ts",
|
|
402
|
+
"types.ts",
|
|
403
|
+
"utils.ts",
|
|
404
|
+
"index.ts"
|
|
405
|
+
],
|
|
406
|
+
"dependencies": [
|
|
407
|
+
"ngx-echarts",
|
|
408
|
+
"echarts"
|
|
409
|
+
],
|
|
232
410
|
"peerDependencies": [],
|
|
233
|
-
"exports": [
|
|
411
|
+
"exports": [
|
|
412
|
+
"PieChartComponent"
|
|
413
|
+
],
|
|
234
414
|
"category": "charts"
|
|
235
415
|
},
|
|
236
416
|
"donut-chart": {
|
|
237
417
|
"name": "DonutChart",
|
|
238
418
|
"type": "chart",
|
|
239
419
|
"description": "Display proportional data as a donut chart with a hollow center",
|
|
240
|
-
"dependencies": [
|
|
420
|
+
"dependencies": [
|
|
421
|
+
"vue-echarts",
|
|
422
|
+
"echarts"
|
|
423
|
+
],
|
|
241
424
|
"devDependencies": [],
|
|
242
425
|
"registryDependencies": [],
|
|
243
|
-
"files": [
|
|
426
|
+
"files": [
|
|
427
|
+
"donut-chart.component.ts",
|
|
428
|
+
"types.ts",
|
|
429
|
+
"utils.ts",
|
|
430
|
+
"index.ts"
|
|
431
|
+
],
|
|
244
432
|
"category": "charts"
|
|
245
433
|
},
|
|
246
434
|
"area-chart": {
|
|
@@ -248,10 +436,20 @@
|
|
|
248
436
|
"selector": "ui-area-chart",
|
|
249
437
|
"type": "chart",
|
|
250
438
|
"description": "Visualize cumulative totals over time with filled areas and gradient support",
|
|
251
|
-
"files": [
|
|
252
|
-
|
|
439
|
+
"files": [
|
|
440
|
+
"area-chart.component.ts",
|
|
441
|
+
"types.ts",
|
|
442
|
+
"utils.ts",
|
|
443
|
+
"index.ts"
|
|
444
|
+
],
|
|
445
|
+
"dependencies": [
|
|
446
|
+
"ngx-echarts",
|
|
447
|
+
"echarts"
|
|
448
|
+
],
|
|
253
449
|
"peerDependencies": [],
|
|
254
|
-
"exports": [
|
|
450
|
+
"exports": [
|
|
451
|
+
"AreaChartComponent"
|
|
452
|
+
],
|
|
255
453
|
"category": "charts"
|
|
256
454
|
},
|
|
257
455
|
"radar-chart": {
|
|
@@ -259,10 +457,20 @@
|
|
|
259
457
|
"selector": "ui-radar-chart",
|
|
260
458
|
"type": "chart",
|
|
261
459
|
"description": "Display multi-dimensional data comparison on a radial grid",
|
|
262
|
-
"files": [
|
|
263
|
-
|
|
460
|
+
"files": [
|
|
461
|
+
"radar-chart.component.ts",
|
|
462
|
+
"types.ts",
|
|
463
|
+
"utils.ts",
|
|
464
|
+
"index.ts"
|
|
465
|
+
],
|
|
466
|
+
"dependencies": [
|
|
467
|
+
"ngx-echarts",
|
|
468
|
+
"echarts"
|
|
469
|
+
],
|
|
264
470
|
"peerDependencies": [],
|
|
265
|
-
"exports": [
|
|
471
|
+
"exports": [
|
|
472
|
+
"RadarChartComponent"
|
|
473
|
+
],
|
|
266
474
|
"category": "charts"
|
|
267
475
|
},
|
|
268
476
|
"scatter-chart": {
|
|
@@ -270,10 +478,20 @@
|
|
|
270
478
|
"selector": "ui-scatter-chart",
|
|
271
479
|
"type": "chart",
|
|
272
480
|
"description": "Display distribution and correlation analysis with scatter plots",
|
|
273
|
-
"files": [
|
|
274
|
-
|
|
481
|
+
"files": [
|
|
482
|
+
"scatter-chart.component.ts",
|
|
483
|
+
"types.ts",
|
|
484
|
+
"utils.ts",
|
|
485
|
+
"index.ts"
|
|
486
|
+
],
|
|
487
|
+
"dependencies": [
|
|
488
|
+
"ngx-echarts",
|
|
489
|
+
"echarts"
|
|
490
|
+
],
|
|
275
491
|
"peerDependencies": [],
|
|
276
|
-
"exports": [
|
|
492
|
+
"exports": [
|
|
493
|
+
"ScatterChartComponent"
|
|
494
|
+
],
|
|
277
495
|
"category": "charts"
|
|
278
496
|
},
|
|
279
497
|
"mixed-chart": {
|
|
@@ -281,10 +499,20 @@
|
|
|
281
499
|
"selector": "ui-mixed-chart",
|
|
282
500
|
"type": "chart",
|
|
283
501
|
"description": "Combine multiple chart types (line, bar, area) in a single visualization",
|
|
284
|
-
"files": [
|
|
285
|
-
|
|
502
|
+
"files": [
|
|
503
|
+
"mixed-chart.component.ts",
|
|
504
|
+
"types.ts",
|
|
505
|
+
"utils.ts",
|
|
506
|
+
"index.ts"
|
|
507
|
+
],
|
|
508
|
+
"dependencies": [
|
|
509
|
+
"ngx-echarts",
|
|
510
|
+
"echarts"
|
|
511
|
+
],
|
|
286
512
|
"peerDependencies": [],
|
|
287
|
-
"exports": [
|
|
513
|
+
"exports": [
|
|
514
|
+
"MixedChartComponent"
|
|
515
|
+
],
|
|
288
516
|
"category": "charts"
|
|
289
517
|
},
|
|
290
518
|
"dialog": {
|
|
@@ -292,29 +520,50 @@
|
|
|
292
520
|
"selector": "g-dialog",
|
|
293
521
|
"type": "modal-overlay",
|
|
294
522
|
"description": "Modal dialog component",
|
|
295
|
-
"files": [
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
523
|
+
"files": [
|
|
524
|
+
"dialog.component.ts",
|
|
525
|
+
"index.ts"
|
|
526
|
+
],
|
|
527
|
+
"dependencies": [
|
|
528
|
+
"@radix-ng/primitives"
|
|
529
|
+
],
|
|
530
|
+
"peerDependencies": [
|
|
531
|
+
"lucide-angular"
|
|
532
|
+
],
|
|
533
|
+
"exports": [
|
|
534
|
+
"DialogComponent"
|
|
535
|
+
]
|
|
299
536
|
},
|
|
300
537
|
"alert-dialog": {
|
|
301
538
|
"name": "Alert Dialog",
|
|
302
539
|
"selector": "g-alert-dialog",
|
|
303
540
|
"type": "modal-overlay",
|
|
304
541
|
"description": "Alert dialog for confirmations",
|
|
305
|
-
"files": [
|
|
306
|
-
|
|
542
|
+
"files": [
|
|
543
|
+
"alert-dialog.component.ts",
|
|
544
|
+
"index.ts"
|
|
545
|
+
],
|
|
546
|
+
"dependencies": [
|
|
547
|
+
"@radix-ng/primitives"
|
|
548
|
+
],
|
|
307
549
|
"peerDependencies": [],
|
|
308
|
-
"exports": [
|
|
550
|
+
"exports": [
|
|
551
|
+
"AlertDialogComponent"
|
|
552
|
+
]
|
|
309
553
|
},
|
|
310
554
|
"progress": {
|
|
311
555
|
"name": "Progress",
|
|
312
556
|
"type": "feedback",
|
|
313
557
|
"description": "Displays an indicator showing the completion progress of a task",
|
|
314
|
-
"dependencies": [
|
|
558
|
+
"dependencies": [
|
|
559
|
+
"@radix-ng/primitives"
|
|
560
|
+
],
|
|
315
561
|
"devDependencies": [],
|
|
316
562
|
"registryDependencies": [],
|
|
317
|
-
"files": [
|
|
563
|
+
"files": [
|
|
564
|
+
"progress.component.ts",
|
|
565
|
+
"index.ts"
|
|
566
|
+
],
|
|
318
567
|
"category": "feedback"
|
|
319
568
|
},
|
|
320
569
|
"hover-card": {
|
|
@@ -322,80 +571,140 @@
|
|
|
322
571
|
"selector": "g-hover-card",
|
|
323
572
|
"type": "modal-overlay",
|
|
324
573
|
"description": "Hover card with rich content preview",
|
|
325
|
-
"files": [
|
|
326
|
-
|
|
574
|
+
"files": [
|
|
575
|
+
"hover-card.component.ts",
|
|
576
|
+
"index.ts"
|
|
577
|
+
],
|
|
578
|
+
"dependencies": [
|
|
579
|
+
"@radix-ng/primitives"
|
|
580
|
+
],
|
|
327
581
|
"peerDependencies": [],
|
|
328
|
-
"exports": [
|
|
582
|
+
"exports": [
|
|
583
|
+
"HoverCardComponent"
|
|
584
|
+
]
|
|
329
585
|
},
|
|
330
586
|
"avatar": {
|
|
331
587
|
"name": "Avatar",
|
|
332
588
|
"selector": "g-avatar",
|
|
333
589
|
"type": "other",
|
|
334
590
|
"description": "Avatar component for user profile pictures",
|
|
335
|
-
"files": [
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
591
|
+
"files": [
|
|
592
|
+
"avatar.component.ts",
|
|
593
|
+
"index.ts"
|
|
594
|
+
],
|
|
595
|
+
"dependencies": [
|
|
596
|
+
"@radix-ng/primitives"
|
|
597
|
+
],
|
|
598
|
+
"peerDependencies": [
|
|
599
|
+
"lucide-angular"
|
|
600
|
+
],
|
|
601
|
+
"exports": [
|
|
602
|
+
"AvatarComponent",
|
|
603
|
+
"AvatarGroupComponent"
|
|
604
|
+
]
|
|
339
605
|
},
|
|
340
606
|
"scroll-area": {
|
|
341
607
|
"name": "Scroll Area",
|
|
342
608
|
"selector": "ui-scroll-area",
|
|
343
609
|
"type": "layout",
|
|
344
610
|
"description": "Augments native scroll functionality for custom, cross-browser styling",
|
|
345
|
-
"files": [
|
|
346
|
-
|
|
611
|
+
"files": [
|
|
612
|
+
"scroll-area.component.ts",
|
|
613
|
+
"index.ts"
|
|
614
|
+
],
|
|
615
|
+
"dependencies": [
|
|
616
|
+
"@radix-ng/primitives"
|
|
617
|
+
],
|
|
347
618
|
"peerDependencies": [],
|
|
348
|
-
"exports": [
|
|
619
|
+
"exports": [
|
|
620
|
+
"ScrollAreaComponent"
|
|
621
|
+
]
|
|
349
622
|
},
|
|
350
623
|
"aspect-ratio": {
|
|
351
624
|
"name": "Aspect Ratio",
|
|
352
625
|
"selector": "ui-aspect-ratio",
|
|
353
626
|
"type": "layout",
|
|
354
627
|
"description": "Displays content within a desired aspect ratio",
|
|
355
|
-
"files": [
|
|
356
|
-
|
|
628
|
+
"files": [
|
|
629
|
+
"aspect-ratio.component.ts",
|
|
630
|
+
"index.ts"
|
|
631
|
+
],
|
|
632
|
+
"dependencies": [
|
|
633
|
+
"@radix-ng/primitives"
|
|
634
|
+
],
|
|
357
635
|
"peerDependencies": [],
|
|
358
|
-
"exports": [
|
|
636
|
+
"exports": [
|
|
637
|
+
"AspectRatioComponent"
|
|
638
|
+
]
|
|
359
639
|
},
|
|
360
640
|
"toggle": {
|
|
361
641
|
"name": "Toggle",
|
|
362
642
|
"selector": "ui-toggle",
|
|
363
643
|
"type": "interactive",
|
|
364
644
|
"description": "A two-state button that can be either on or off",
|
|
365
|
-
"files": [
|
|
366
|
-
|
|
645
|
+
"files": [
|
|
646
|
+
"toggle.component.ts",
|
|
647
|
+
"index.ts"
|
|
648
|
+
],
|
|
649
|
+
"dependencies": [
|
|
650
|
+
"@radix-ng/primitives"
|
|
651
|
+
],
|
|
367
652
|
"peerDependencies": [],
|
|
368
|
-
"exports": [
|
|
653
|
+
"exports": [
|
|
654
|
+
"ToggleComponent"
|
|
655
|
+
]
|
|
369
656
|
},
|
|
370
657
|
"toggle-group": {
|
|
371
658
|
"name": "Toggle Group",
|
|
372
659
|
"selector": "ui-toggle-group",
|
|
373
660
|
"type": "interactive",
|
|
374
661
|
"description": "A set of two-state buttons that can be toggled on or off",
|
|
375
|
-
"files": [
|
|
376
|
-
|
|
662
|
+
"files": [
|
|
663
|
+
"toggle-group.component.ts",
|
|
664
|
+
"index.ts"
|
|
665
|
+
],
|
|
666
|
+
"dependencies": [
|
|
667
|
+
"@radix-ng/primitives"
|
|
668
|
+
],
|
|
377
669
|
"peerDependencies": [],
|
|
378
|
-
"exports": [
|
|
670
|
+
"exports": [
|
|
671
|
+
"ToggleGroupComponent",
|
|
672
|
+
"ToggleGroupItemComponent"
|
|
673
|
+
]
|
|
379
674
|
},
|
|
380
675
|
"resizable": {
|
|
381
676
|
"name": "Resizable",
|
|
382
677
|
"selector": "ui-resizable",
|
|
383
678
|
"type": "layout",
|
|
384
679
|
"description": "Accessible resizable panel groups and layouts with keyboard support",
|
|
385
|
-
"files": [
|
|
386
|
-
|
|
680
|
+
"files": [
|
|
681
|
+
"resizable.component.ts",
|
|
682
|
+
"index.ts"
|
|
683
|
+
],
|
|
684
|
+
"dependencies": [
|
|
685
|
+
"@radix-ng/primitives"
|
|
686
|
+
],
|
|
387
687
|
"peerDependencies": [],
|
|
388
|
-
"exports": [
|
|
688
|
+
"exports": [
|
|
689
|
+
"ResizablePanelGroupComponent",
|
|
690
|
+
"ResizablePanelComponent",
|
|
691
|
+
"ResizableHandleComponent"
|
|
692
|
+
]
|
|
389
693
|
},
|
|
390
694
|
"empty": {
|
|
391
695
|
"name": "Empty",
|
|
392
696
|
"selector": "ui-empty",
|
|
393
697
|
"type": "feedback",
|
|
394
698
|
"description": "Displays an empty state placeholder",
|
|
395
|
-
"files": [
|
|
699
|
+
"files": [
|
|
700
|
+
"empty.component.ts",
|
|
701
|
+
"index.ts"
|
|
702
|
+
],
|
|
396
703
|
"dependencies": [],
|
|
397
704
|
"peerDependencies": [],
|
|
398
|
-
"exports": [
|
|
705
|
+
"exports": [
|
|
706
|
+
"EmptyComponent"
|
|
707
|
+
],
|
|
399
708
|
"category": "feedback"
|
|
400
709
|
},
|
|
401
710
|
"skeleton": {
|
|
@@ -403,10 +712,15 @@
|
|
|
403
712
|
"selector": "ui-skeleton",
|
|
404
713
|
"type": "feedback",
|
|
405
714
|
"description": "Use to show a placeholder while content is loading",
|
|
406
|
-
"files": [
|
|
715
|
+
"files": [
|
|
716
|
+
"skeleton.component.ts",
|
|
717
|
+
"index.ts"
|
|
718
|
+
],
|
|
407
719
|
"dependencies": [],
|
|
408
720
|
"peerDependencies": [],
|
|
409
|
-
"exports": [
|
|
721
|
+
"exports": [
|
|
722
|
+
"SkeletonComponent"
|
|
723
|
+
],
|
|
410
724
|
"category": "feedback"
|
|
411
725
|
},
|
|
412
726
|
"kbd": {
|
|
@@ -414,10 +728,15 @@
|
|
|
414
728
|
"selector": "ui-kbd",
|
|
415
729
|
"type": "data-display",
|
|
416
730
|
"description": "Displays keyboard key combinations",
|
|
417
|
-
"files": [
|
|
731
|
+
"files": [
|
|
732
|
+
"kbd.component.ts",
|
|
733
|
+
"index.ts"
|
|
734
|
+
],
|
|
418
735
|
"dependencies": [],
|
|
419
736
|
"peerDependencies": [],
|
|
420
|
-
"exports": [
|
|
737
|
+
"exports": [
|
|
738
|
+
"KbdComponent"
|
|
739
|
+
],
|
|
421
740
|
"category": "data-display"
|
|
422
741
|
},
|
|
423
742
|
"typography": {
|
|
@@ -425,10 +744,15 @@
|
|
|
425
744
|
"selector": "ui-typography",
|
|
426
745
|
"type": "data-display",
|
|
427
746
|
"description": "Text formatting and typography components",
|
|
428
|
-
"files": [
|
|
747
|
+
"files": [
|
|
748
|
+
"typography.component.ts",
|
|
749
|
+
"index.ts"
|
|
750
|
+
],
|
|
429
751
|
"dependencies": [],
|
|
430
752
|
"peerDependencies": [],
|
|
431
|
-
"exports": [
|
|
753
|
+
"exports": [
|
|
754
|
+
"TypographyComponent"
|
|
755
|
+
],
|
|
432
756
|
"category": "data-display"
|
|
433
757
|
},
|
|
434
758
|
"pagination": {
|
|
@@ -436,10 +760,15 @@
|
|
|
436
760
|
"selector": "ui-pagination",
|
|
437
761
|
"type": "navigation",
|
|
438
762
|
"description": "Page navigation with previous, next, and page numbers",
|
|
439
|
-
"files": [
|
|
763
|
+
"files": [
|
|
764
|
+
"pagination.component.ts",
|
|
765
|
+
"index.ts"
|
|
766
|
+
],
|
|
440
767
|
"dependencies": [],
|
|
441
768
|
"peerDependencies": [],
|
|
442
|
-
"exports": [
|
|
769
|
+
"exports": [
|
|
770
|
+
"PaginationComponent"
|
|
771
|
+
],
|
|
443
772
|
"category": "navigation"
|
|
444
773
|
},
|
|
445
774
|
"table": {
|
|
@@ -447,10 +776,22 @@
|
|
|
447
776
|
"selector": "ui-table",
|
|
448
777
|
"type": "data-display",
|
|
449
778
|
"description": "A responsive table component for displaying data",
|
|
450
|
-
"files": [
|
|
779
|
+
"files": [
|
|
780
|
+
"table.component.ts",
|
|
781
|
+
"index.ts"
|
|
782
|
+
],
|
|
451
783
|
"dependencies": [],
|
|
452
784
|
"peerDependencies": [],
|
|
453
|
-
"exports": [
|
|
785
|
+
"exports": [
|
|
786
|
+
"TableComponent",
|
|
787
|
+
"TableHeaderDirective",
|
|
788
|
+
"TableBodyDirective",
|
|
789
|
+
"TableFooterDirective",
|
|
790
|
+
"TableRowDirective",
|
|
791
|
+
"TableHeadDirective",
|
|
792
|
+
"TableCellDirective",
|
|
793
|
+
"TableCaptionDirective"
|
|
794
|
+
],
|
|
454
795
|
"category": "data-display"
|
|
455
796
|
},
|
|
456
797
|
"calendar": {
|
|
@@ -458,10 +799,15 @@
|
|
|
458
799
|
"selector": "ui-calendar",
|
|
459
800
|
"type": "form",
|
|
460
801
|
"description": "A date picker calendar component",
|
|
461
|
-
"files": [
|
|
802
|
+
"files": [
|
|
803
|
+
"calendar.component.ts",
|
|
804
|
+
"index.ts"
|
|
805
|
+
],
|
|
462
806
|
"dependencies": [],
|
|
463
807
|
"peerDependencies": [],
|
|
464
|
-
"exports": [
|
|
808
|
+
"exports": [
|
|
809
|
+
"CalendarComponent"
|
|
810
|
+
],
|
|
465
811
|
"category": "form"
|
|
466
812
|
},
|
|
467
813
|
"calendar-range": {
|
|
@@ -469,10 +815,15 @@
|
|
|
469
815
|
"selector": "ui-calendar-range",
|
|
470
816
|
"type": "form",
|
|
471
817
|
"description": "A date range picker calendar component",
|
|
472
|
-
"files": [
|
|
818
|
+
"files": [
|
|
819
|
+
"calendar-range.component.ts",
|
|
820
|
+
"index.ts"
|
|
821
|
+
],
|
|
473
822
|
"dependencies": [],
|
|
474
823
|
"peerDependencies": [],
|
|
475
|
-
"exports": [
|
|
824
|
+
"exports": [
|
|
825
|
+
"CalendarRangeComponent"
|
|
826
|
+
],
|
|
476
827
|
"category": "form"
|
|
477
828
|
},
|
|
478
829
|
"command": {
|
|
@@ -480,10 +831,15 @@
|
|
|
480
831
|
"selector": "ui-command",
|
|
481
832
|
"type": "navigation",
|
|
482
833
|
"description": "Command palette for keyboard-first navigation and search",
|
|
483
|
-
"files": [
|
|
834
|
+
"files": [
|
|
835
|
+
"command.component.ts",
|
|
836
|
+
"index.ts"
|
|
837
|
+
],
|
|
484
838
|
"dependencies": [],
|
|
485
839
|
"peerDependencies": [],
|
|
486
|
-
"exports": [
|
|
840
|
+
"exports": [
|
|
841
|
+
"CommandComponent"
|
|
842
|
+
],
|
|
487
843
|
"category": "navigation"
|
|
488
844
|
},
|
|
489
845
|
"sheet": {
|
|
@@ -491,10 +847,15 @@
|
|
|
491
847
|
"selector": "ui-sheet",
|
|
492
848
|
"type": "layout",
|
|
493
849
|
"description": "Slide-over panel that slides in from the edge of the screen",
|
|
494
|
-
"files": [
|
|
850
|
+
"files": [
|
|
851
|
+
"sheet.component.ts",
|
|
852
|
+
"index.ts"
|
|
853
|
+
],
|
|
495
854
|
"dependencies": [],
|
|
496
855
|
"peerDependencies": [],
|
|
497
|
-
"exports": [
|
|
856
|
+
"exports": [
|
|
857
|
+
"SheetComponent"
|
|
858
|
+
],
|
|
498
859
|
"category": "layout"
|
|
499
860
|
},
|
|
500
861
|
"toolbar": {
|
|
@@ -502,10 +863,15 @@
|
|
|
502
863
|
"selector": "ui-toolbar",
|
|
503
864
|
"type": "layout",
|
|
504
865
|
"description": "A container for grouping a set of controls",
|
|
505
|
-
"files": [
|
|
866
|
+
"files": [
|
|
867
|
+
"toolbar.component.ts",
|
|
868
|
+
"index.ts"
|
|
869
|
+
],
|
|
506
870
|
"dependencies": [],
|
|
507
871
|
"peerDependencies": [],
|
|
508
|
-
"exports": [
|
|
872
|
+
"exports": [
|
|
873
|
+
"ToolbarComponent"
|
|
874
|
+
],
|
|
509
875
|
"category": "layout"
|
|
510
876
|
},
|
|
511
877
|
"tags-input": {
|
|
@@ -513,45 +879,249 @@
|
|
|
513
879
|
"selector": "ui-tags-input",
|
|
514
880
|
"type": "form",
|
|
515
881
|
"description": "Input field for entering multiple tags or values",
|
|
516
|
-
"files": [
|
|
882
|
+
"files": [
|
|
883
|
+
"tags-input.component.ts",
|
|
884
|
+
"index.ts"
|
|
885
|
+
],
|
|
517
886
|
"dependencies": [],
|
|
518
887
|
"peerDependencies": [],
|
|
519
|
-
"exports": [
|
|
888
|
+
"exports": [
|
|
889
|
+
"TagsInputComponent"
|
|
890
|
+
],
|
|
520
891
|
"category": "form"
|
|
892
|
+
},
|
|
893
|
+
"card": {
|
|
894
|
+
"name": "Card",
|
|
895
|
+
"selector": "ui-card",
|
|
896
|
+
"type": "layout",
|
|
897
|
+
"description": "Displays a card with optional header, content, and footer",
|
|
898
|
+
"files": [
|
|
899
|
+
"card.component.ts",
|
|
900
|
+
"index.ts"
|
|
901
|
+
],
|
|
902
|
+
"dependencies": [],
|
|
903
|
+
"peerDependencies": [],
|
|
904
|
+
"exports": [
|
|
905
|
+
"CardComponent",
|
|
906
|
+
"CardHeaderComponent",
|
|
907
|
+
"CardTitleComponent",
|
|
908
|
+
"CardDescriptionComponent",
|
|
909
|
+
"CardContentComponent",
|
|
910
|
+
"CardFooterComponent"
|
|
911
|
+
],
|
|
912
|
+
"category": "layout"
|
|
913
|
+
},
|
|
914
|
+
"badge": {
|
|
915
|
+
"name": "Badge",
|
|
916
|
+
"selector": "ui-badge",
|
|
917
|
+
"type": "feedback",
|
|
918
|
+
"description": "Displays a badge or a component that looks like a badge",
|
|
919
|
+
"files": [
|
|
920
|
+
"badge.component.ts",
|
|
921
|
+
"variants.ts",
|
|
922
|
+
"index.ts"
|
|
923
|
+
],
|
|
924
|
+
"dependencies": [
|
|
925
|
+
"class-variance-authority"
|
|
926
|
+
],
|
|
927
|
+
"peerDependencies": [],
|
|
928
|
+
"exports": [
|
|
929
|
+
"BadgeComponent"
|
|
930
|
+
],
|
|
931
|
+
"category": "feedback"
|
|
932
|
+
},
|
|
933
|
+
"alert": {
|
|
934
|
+
"name": "Alert",
|
|
935
|
+
"selector": "ui-alert",
|
|
936
|
+
"type": "feedback",
|
|
937
|
+
"description": "Displays a callout for user attention",
|
|
938
|
+
"files": [
|
|
939
|
+
"alert.component.ts",
|
|
940
|
+
"variants.ts",
|
|
941
|
+
"index.ts"
|
|
942
|
+
],
|
|
943
|
+
"dependencies": [
|
|
944
|
+
"class-variance-authority"
|
|
945
|
+
],
|
|
946
|
+
"peerDependencies": [],
|
|
947
|
+
"exports": [
|
|
948
|
+
"AlertComponent",
|
|
949
|
+
"AlertTitleComponent",
|
|
950
|
+
"AlertDescriptionComponent"
|
|
951
|
+
],
|
|
952
|
+
"category": "feedback"
|
|
953
|
+
},
|
|
954
|
+
"breadcrumb": {
|
|
955
|
+
"name": "Breadcrumb",
|
|
956
|
+
"selector": "ui-breadcrumb",
|
|
957
|
+
"type": "navigation",
|
|
958
|
+
"description": "Displays the path to the current resource using a hierarchy of links",
|
|
959
|
+
"files": [
|
|
960
|
+
"breadcrumb.component.ts",
|
|
961
|
+
"index.ts"
|
|
962
|
+
],
|
|
963
|
+
"dependencies": [],
|
|
964
|
+
"peerDependencies": [],
|
|
965
|
+
"exports": [
|
|
966
|
+
"BreadcrumbComponent",
|
|
967
|
+
"BreadcrumbListComponent",
|
|
968
|
+
"BreadcrumbItemComponent",
|
|
969
|
+
"BreadcrumbLinkComponent",
|
|
970
|
+
"BreadcrumbPageComponent",
|
|
971
|
+
"BreadcrumbSeparatorComponent",
|
|
972
|
+
"BreadcrumbEllipsisComponent"
|
|
973
|
+
],
|
|
974
|
+
"category": "navigation"
|
|
975
|
+
},
|
|
976
|
+
"toast": {
|
|
977
|
+
"name": "Toast",
|
|
978
|
+
"selector": "ui-toast",
|
|
979
|
+
"type": "feedback",
|
|
980
|
+
"description": "A succinct message that is displayed temporarily",
|
|
981
|
+
"files": [
|
|
982
|
+
"toast.component.ts",
|
|
983
|
+
"index.ts"
|
|
984
|
+
],
|
|
985
|
+
"dependencies": [
|
|
986
|
+
"ngx-sonner"
|
|
987
|
+
],
|
|
988
|
+
"peerDependencies": [],
|
|
989
|
+
"exports": [
|
|
990
|
+
"ToastComponent"
|
|
991
|
+
],
|
|
992
|
+
"category": "feedback"
|
|
993
|
+
},
|
|
994
|
+
"form": {
|
|
995
|
+
"name": "Form",
|
|
996
|
+
"selector": "ui-form",
|
|
997
|
+
"type": "input",
|
|
998
|
+
"description": "Building forms with proper validation and accessibility",
|
|
999
|
+
"files": [
|
|
1000
|
+
"form.component.ts",
|
|
1001
|
+
"index.ts"
|
|
1002
|
+
],
|
|
1003
|
+
"dependencies": [],
|
|
1004
|
+
"peerDependencies": [],
|
|
1005
|
+
"exports": [
|
|
1006
|
+
"FormDirective",
|
|
1007
|
+
"FormItemComponent",
|
|
1008
|
+
"FormLabelComponent",
|
|
1009
|
+
"FormDescriptionComponent",
|
|
1010
|
+
"FormMessageComponent"
|
|
1011
|
+
],
|
|
1012
|
+
"category": "forms"
|
|
1013
|
+
},
|
|
1014
|
+
"gauge-chart": {
|
|
1015
|
+
"name": "GaugeChart",
|
|
1016
|
+
"selector": "ui-gauge-chart",
|
|
1017
|
+
"type": "chart",
|
|
1018
|
+
"description": "Display data as a gauge chart with customizable ranges and styling",
|
|
1019
|
+
"files": [
|
|
1020
|
+
"gauge-chart.component.ts",
|
|
1021
|
+
"types.ts",
|
|
1022
|
+
"utils.ts",
|
|
1023
|
+
"index.ts"
|
|
1024
|
+
],
|
|
1025
|
+
"dependencies": [
|
|
1026
|
+
"ngx-echarts",
|
|
1027
|
+
"echarts"
|
|
1028
|
+
],
|
|
1029
|
+
"peerDependencies": [],
|
|
1030
|
+
"exports": [
|
|
1031
|
+
"GaugeChartComponent"
|
|
1032
|
+
],
|
|
1033
|
+
"category": "charts"
|
|
521
1034
|
}
|
|
522
1035
|
},
|
|
523
1036
|
"groups": {
|
|
524
1037
|
"form": {
|
|
525
1038
|
"name": "Form Components",
|
|
526
|
-
"components": [
|
|
1039
|
+
"components": [
|
|
1040
|
+
"button",
|
|
1041
|
+
"input",
|
|
1042
|
+
"label",
|
|
1043
|
+
"checkbox",
|
|
1044
|
+
"select",
|
|
1045
|
+
"radio-group",
|
|
1046
|
+
"switch",
|
|
1047
|
+
"slider",
|
|
1048
|
+
"textarea",
|
|
1049
|
+
"calendar",
|
|
1050
|
+
"calendar-range",
|
|
1051
|
+
"tags-input"
|
|
1052
|
+
]
|
|
527
1053
|
},
|
|
528
1054
|
"layout": {
|
|
529
1055
|
"name": "Layout Components",
|
|
530
|
-
"components": [
|
|
1056
|
+
"components": [
|
|
1057
|
+
"accordion",
|
|
1058
|
+
"collapsible",
|
|
1059
|
+
"separator",
|
|
1060
|
+
"scroll-area",
|
|
1061
|
+
"aspect-ratio",
|
|
1062
|
+
"resizable",
|
|
1063
|
+
"sheet",
|
|
1064
|
+
"toolbar"
|
|
1065
|
+
]
|
|
531
1066
|
},
|
|
532
1067
|
"interactive": {
|
|
533
1068
|
"name": "Interactive Components",
|
|
534
|
-
"components": [
|
|
1069
|
+
"components": [
|
|
1070
|
+
"toggle",
|
|
1071
|
+
"toggle-group"
|
|
1072
|
+
]
|
|
535
1073
|
},
|
|
536
1074
|
"navigation": {
|
|
537
1075
|
"name": "Navigation Components",
|
|
538
|
-
"components": [
|
|
1076
|
+
"components": [
|
|
1077
|
+
"tabs",
|
|
1078
|
+
"dropdown-menu",
|
|
1079
|
+
"menubar",
|
|
1080
|
+
"navigation-menu",
|
|
1081
|
+
"context-menu",
|
|
1082
|
+
"pagination",
|
|
1083
|
+
"command"
|
|
1084
|
+
]
|
|
539
1085
|
},
|
|
540
1086
|
"modal-overlay": {
|
|
541
1087
|
"name": "Modal & Overlay Components",
|
|
542
|
-
"components": [
|
|
1088
|
+
"components": [
|
|
1089
|
+
"popover",
|
|
1090
|
+
"tooltip",
|
|
1091
|
+
"dialog",
|
|
1092
|
+
"alert-dialog",
|
|
1093
|
+
"hover-card"
|
|
1094
|
+
]
|
|
543
1095
|
},
|
|
544
1096
|
"feedback": {
|
|
545
1097
|
"name": "Feedback Components",
|
|
546
|
-
"components": [
|
|
1098
|
+
"components": [
|
|
1099
|
+
"progress",
|
|
1100
|
+
"empty",
|
|
1101
|
+
"skeleton"
|
|
1102
|
+
]
|
|
547
1103
|
},
|
|
548
1104
|
"data-display": {
|
|
549
1105
|
"name": "Data Display Components",
|
|
550
|
-
"components": [
|
|
1106
|
+
"components": [
|
|
1107
|
+
"kbd",
|
|
1108
|
+
"typography",
|
|
1109
|
+
"table",
|
|
1110
|
+
"avatar"
|
|
1111
|
+
]
|
|
551
1112
|
},
|
|
552
1113
|
"charts": {
|
|
553
1114
|
"name": "Chart Components",
|
|
554
|
-
"components": [
|
|
1115
|
+
"components": [
|
|
1116
|
+
"line-chart",
|
|
1117
|
+
"bar-chart",
|
|
1118
|
+
"pie-chart",
|
|
1119
|
+
"donut-chart",
|
|
1120
|
+
"area-chart",
|
|
1121
|
+
"radar-chart",
|
|
1122
|
+
"scatter-chart",
|
|
1123
|
+
"mixed-chart"
|
|
1124
|
+
]
|
|
555
1125
|
}
|
|
556
1126
|
}
|
|
557
|
-
}
|
|
1127
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "galaxy-design",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"description": "CLI tool for adding Galaxy UI components to your Vue, React, Angular, Next.js, Nuxt.js, React Native, or Flutter project",
|
|
5
5
|
"author": "Bùi Trọng Hiếu (kevinbui) <kevinbui210191@gmail.com>",
|
|
6
6
|
"license": "MIT",
|