@gilav21/shadcn-angular 0.0.18 → 0.0.19
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/registry/index.js +9 -4
- package/package.json +1 -1
- package/src/registry/index.ts +9 -4
package/dist/registry/index.js
CHANGED
|
@@ -201,7 +201,7 @@ export const registry = {
|
|
|
201
201
|
},
|
|
202
202
|
input: {
|
|
203
203
|
name: 'input',
|
|
204
|
-
files: ['input.component.ts'],
|
|
204
|
+
files: ['input.component.ts', 'input-group.token.ts'],
|
|
205
205
|
},
|
|
206
206
|
'input-group': {
|
|
207
207
|
name: 'input-group',
|
|
@@ -311,7 +311,7 @@ export const registry = {
|
|
|
311
311
|
},
|
|
312
312
|
textarea: {
|
|
313
313
|
name: 'textarea',
|
|
314
|
-
files: ['textarea.component.ts'],
|
|
314
|
+
files: ['textarea.component.ts', 'input-group.token.ts'],
|
|
315
315
|
},
|
|
316
316
|
timeline: {
|
|
317
317
|
name: 'timeline',
|
|
@@ -554,7 +554,12 @@ export const registry = {
|
|
|
554
554
|
// Kanban
|
|
555
555
|
kanban: {
|
|
556
556
|
name: 'kanban',
|
|
557
|
-
files: ['kanban.component.ts'],
|
|
558
|
-
dependencies: [
|
|
557
|
+
files: ['kanban.component.ts', 'kanban-locales.ts'],
|
|
558
|
+
dependencies: [
|
|
559
|
+
'badge', 'avatar', 'scroll-area', 'separator',
|
|
560
|
+
'button', 'input', 'textarea', 'label',
|
|
561
|
+
'chip-list', 'autocomplete',
|
|
562
|
+
'dialog', 'alert-dialog', 'context-menu',
|
|
563
|
+
],
|
|
559
564
|
},
|
|
560
565
|
};
|
package/package.json
CHANGED
package/src/registry/index.ts
CHANGED
|
@@ -218,7 +218,7 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
218
218
|
},
|
|
219
219
|
input: {
|
|
220
220
|
name: 'input',
|
|
221
|
-
files: ['input.component.ts'],
|
|
221
|
+
files: ['input.component.ts', 'input-group.token.ts'],
|
|
222
222
|
},
|
|
223
223
|
'input-group': {
|
|
224
224
|
name: 'input-group',
|
|
@@ -328,7 +328,7 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
328
328
|
},
|
|
329
329
|
textarea: {
|
|
330
330
|
name: 'textarea',
|
|
331
|
-
files: ['textarea.component.ts'],
|
|
331
|
+
files: ['textarea.component.ts', 'input-group.token.ts'],
|
|
332
332
|
},
|
|
333
333
|
timeline: {
|
|
334
334
|
name: 'timeline',
|
|
@@ -571,7 +571,12 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
571
571
|
// Kanban
|
|
572
572
|
kanban: {
|
|
573
573
|
name: 'kanban',
|
|
574
|
-
files: ['kanban.component.ts'],
|
|
575
|
-
dependencies: [
|
|
574
|
+
files: ['kanban.component.ts', 'kanban-locales.ts'],
|
|
575
|
+
dependencies: [
|
|
576
|
+
'badge', 'avatar', 'scroll-area', 'separator',
|
|
577
|
+
'button', 'input', 'textarea', 'label',
|
|
578
|
+
'chip-list', 'autocomplete',
|
|
579
|
+
'dialog', 'alert-dialog', 'context-menu',
|
|
580
|
+
],
|
|
576
581
|
},
|
|
577
582
|
};
|