@gilav21/shadcn-angular 0.0.12 → 0.0.14
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 +59 -2
- package/package.json +1 -1
- package/src/registry/index.ts +59 -2
package/dist/registry/index.js
CHANGED
|
@@ -82,7 +82,7 @@ export const registry = {
|
|
|
82
82
|
},
|
|
83
83
|
'context-menu': {
|
|
84
84
|
name: 'context-menu',
|
|
85
|
-
files: ['context-menu.component.ts'],
|
|
85
|
+
files: ['context-menu.component.ts', 'context-menu-integrations.ts'],
|
|
86
86
|
},
|
|
87
87
|
'date-picker': {
|
|
88
88
|
name: 'date-picker',
|
|
@@ -119,7 +119,7 @@ export const registry = {
|
|
|
119
119
|
'data-table/data-table-column-header.component.ts',
|
|
120
120
|
'data-table/data-table-pagination.component.ts',
|
|
121
121
|
'data-table/data-table.types.ts',
|
|
122
|
-
'data-table/
|
|
122
|
+
'data-table/index.ts',
|
|
123
123
|
],
|
|
124
124
|
dependencies: [
|
|
125
125
|
'table',
|
|
@@ -129,12 +129,36 @@ export const registry = {
|
|
|
129
129
|
'select',
|
|
130
130
|
'pagination',
|
|
131
131
|
'popover',
|
|
132
|
+
'component-outlet',
|
|
132
133
|
],
|
|
133
134
|
},
|
|
134
135
|
dialog: {
|
|
135
136
|
name: 'dialog',
|
|
136
137
|
files: ['dialog.component.ts'],
|
|
137
138
|
},
|
|
139
|
+
dock: {
|
|
140
|
+
name: 'dock',
|
|
141
|
+
files: [
|
|
142
|
+
'dock.component.ts',
|
|
143
|
+
'dock-item.component.ts',
|
|
144
|
+
'dock-icon.component.ts',
|
|
145
|
+
'dock-label.component.ts',
|
|
146
|
+
],
|
|
147
|
+
},
|
|
148
|
+
'tree-select': {
|
|
149
|
+
name: 'tree-select',
|
|
150
|
+
files: ['tree-select.component.ts'],
|
|
151
|
+
dependencies: ['popover', 'tree'],
|
|
152
|
+
},
|
|
153
|
+
'virtual-scroll': {
|
|
154
|
+
name: 'virtual-scroll',
|
|
155
|
+
files: ['virtual-scroll.component.ts'],
|
|
156
|
+
},
|
|
157
|
+
'input-mask': {
|
|
158
|
+
name: 'input-mask',
|
|
159
|
+
files: ['input-mask.directive.ts'],
|
|
160
|
+
dependencies: ['input'],
|
|
161
|
+
},
|
|
138
162
|
drawer: {
|
|
139
163
|
name: 'drawer',
|
|
140
164
|
files: ['drawer.component.ts'],
|
|
@@ -398,4 +422,37 @@ export const registry = {
|
|
|
398
422
|
'charts/chart.utils.ts',
|
|
399
423
|
],
|
|
400
424
|
},
|
|
425
|
+
'bento-grid': {
|
|
426
|
+
name: 'bento-grid',
|
|
427
|
+
dependencies: ['context-menu', 'component-outlet'],
|
|
428
|
+
files: [
|
|
429
|
+
'bento-grid.component.ts',
|
|
430
|
+
],
|
|
431
|
+
},
|
|
432
|
+
'page-builder': {
|
|
433
|
+
name: 'page-builder',
|
|
434
|
+
dependencies: [
|
|
435
|
+
'bento-grid',
|
|
436
|
+
'button',
|
|
437
|
+
'input',
|
|
438
|
+
'label',
|
|
439
|
+
'select',
|
|
440
|
+
'switch',
|
|
441
|
+
'slider'
|
|
442
|
+
],
|
|
443
|
+
files: [
|
|
444
|
+
'page-builder/page-builder.component.ts',
|
|
445
|
+
'page-builder/page-builder.types.ts',
|
|
446
|
+
'page-builder/property-editor.component.ts'
|
|
447
|
+
],
|
|
448
|
+
},
|
|
449
|
+
'component-outlet': {
|
|
450
|
+
name: 'component-outlet',
|
|
451
|
+
files: ['component-outlet.directive.ts'],
|
|
452
|
+
},
|
|
453
|
+
'split-button': {
|
|
454
|
+
name: 'split-button',
|
|
455
|
+
files: ['split-button.component.ts'],
|
|
456
|
+
dependencies: ['button', 'dropdown-menu'],
|
|
457
|
+
},
|
|
401
458
|
};
|
package/package.json
CHANGED
package/src/registry/index.ts
CHANGED
|
@@ -92,7 +92,7 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
92
92
|
},
|
|
93
93
|
'context-menu': {
|
|
94
94
|
name: 'context-menu',
|
|
95
|
-
files: ['context-menu.component.ts'],
|
|
95
|
+
files: ['context-menu.component.ts', 'context-menu-integrations.ts'],
|
|
96
96
|
},
|
|
97
97
|
'date-picker': {
|
|
98
98
|
name: 'date-picker',
|
|
@@ -129,7 +129,7 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
129
129
|
'data-table/data-table-column-header.component.ts',
|
|
130
130
|
'data-table/data-table-pagination.component.ts',
|
|
131
131
|
'data-table/data-table.types.ts',
|
|
132
|
-
'data-table/
|
|
132
|
+
'data-table/index.ts',
|
|
133
133
|
],
|
|
134
134
|
dependencies: [
|
|
135
135
|
'table',
|
|
@@ -139,12 +139,36 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
139
139
|
'select',
|
|
140
140
|
'pagination',
|
|
141
141
|
'popover',
|
|
142
|
+
'component-outlet',
|
|
142
143
|
],
|
|
143
144
|
},
|
|
144
145
|
dialog: {
|
|
145
146
|
name: 'dialog',
|
|
146
147
|
files: ['dialog.component.ts'],
|
|
147
148
|
},
|
|
149
|
+
dock: {
|
|
150
|
+
name: 'dock',
|
|
151
|
+
files: [
|
|
152
|
+
'dock.component.ts',
|
|
153
|
+
'dock-item.component.ts',
|
|
154
|
+
'dock-icon.component.ts',
|
|
155
|
+
'dock-label.component.ts',
|
|
156
|
+
],
|
|
157
|
+
},
|
|
158
|
+
'tree-select': {
|
|
159
|
+
name: 'tree-select',
|
|
160
|
+
files: ['tree-select.component.ts'],
|
|
161
|
+
dependencies: ['popover', 'tree'],
|
|
162
|
+
},
|
|
163
|
+
'virtual-scroll': {
|
|
164
|
+
name: 'virtual-scroll',
|
|
165
|
+
files: ['virtual-scroll.component.ts'],
|
|
166
|
+
},
|
|
167
|
+
'input-mask': {
|
|
168
|
+
name: 'input-mask',
|
|
169
|
+
files: ['input-mask.directive.ts'],
|
|
170
|
+
dependencies: ['input'],
|
|
171
|
+
},
|
|
148
172
|
drawer: {
|
|
149
173
|
name: 'drawer',
|
|
150
174
|
files: ['drawer.component.ts'],
|
|
@@ -409,4 +433,37 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
409
433
|
'charts/chart.utils.ts',
|
|
410
434
|
],
|
|
411
435
|
},
|
|
436
|
+
'bento-grid': {
|
|
437
|
+
name: 'bento-grid',
|
|
438
|
+
dependencies: ['context-menu', 'component-outlet'],
|
|
439
|
+
files: [
|
|
440
|
+
'bento-grid.component.ts',
|
|
441
|
+
],
|
|
442
|
+
},
|
|
443
|
+
'page-builder': {
|
|
444
|
+
name: 'page-builder',
|
|
445
|
+
dependencies: [
|
|
446
|
+
'bento-grid',
|
|
447
|
+
'button',
|
|
448
|
+
'input',
|
|
449
|
+
'label',
|
|
450
|
+
'select',
|
|
451
|
+
'switch',
|
|
452
|
+
'slider'
|
|
453
|
+
],
|
|
454
|
+
files: [
|
|
455
|
+
'page-builder/page-builder.component.ts',
|
|
456
|
+
'page-builder/page-builder.types.ts',
|
|
457
|
+
'page-builder/property-editor.component.ts'
|
|
458
|
+
],
|
|
459
|
+
},
|
|
460
|
+
'component-outlet': {
|
|
461
|
+
name: 'component-outlet',
|
|
462
|
+
files: ['component-outlet.directive.ts'],
|
|
463
|
+
},
|
|
464
|
+
'split-button': {
|
|
465
|
+
name: 'split-button',
|
|
466
|
+
files: ['split-button.component.ts'],
|
|
467
|
+
dependencies: ['button', 'dropdown-menu'],
|
|
468
|
+
},
|
|
412
469
|
};
|