@gilav21/shadcn-angular 0.0.12 → 0.0.13
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 +36 -1
- package/package.json +1 -1
- package/src/registry/index.ts +36 -1
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',
|
|
@@ -135,6 +135,29 @@ export const registry = {
|
|
|
135
135
|
name: 'dialog',
|
|
136
136
|
files: ['dialog.component.ts'],
|
|
137
137
|
},
|
|
138
|
+
dock: {
|
|
139
|
+
name: 'dock',
|
|
140
|
+
files: [
|
|
141
|
+
'dock.component.ts',
|
|
142
|
+
'dock-item.component.ts',
|
|
143
|
+
'dock-icon.component.ts',
|
|
144
|
+
'dock-label.component.ts',
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
'tree-select': {
|
|
148
|
+
name: 'tree-select',
|
|
149
|
+
files: ['tree-select.component.ts'],
|
|
150
|
+
dependencies: ['popover', 'tree'],
|
|
151
|
+
},
|
|
152
|
+
'virtual-scroll': {
|
|
153
|
+
name: 'virtual-scroll',
|
|
154
|
+
files: ['virtual-scroll.component.ts'],
|
|
155
|
+
},
|
|
156
|
+
'input-mask': {
|
|
157
|
+
name: 'input-mask',
|
|
158
|
+
files: ['input-mask.directive.ts'],
|
|
159
|
+
dependencies: ['input'],
|
|
160
|
+
},
|
|
138
161
|
drawer: {
|
|
139
162
|
name: 'drawer',
|
|
140
163
|
files: ['drawer.component.ts'],
|
|
@@ -398,4 +421,16 @@ export const registry = {
|
|
|
398
421
|
'charts/chart.utils.ts',
|
|
399
422
|
],
|
|
400
423
|
},
|
|
424
|
+
'bento-grid': {
|
|
425
|
+
name: 'bento-grid',
|
|
426
|
+
dependencies: ['context-menu'],
|
|
427
|
+
files: [
|
|
428
|
+
'bento-grid.component.ts',
|
|
429
|
+
],
|
|
430
|
+
},
|
|
431
|
+
'split-button': {
|
|
432
|
+
name: 'split-button',
|
|
433
|
+
files: ['split-button.component.ts'],
|
|
434
|
+
dependencies: ['button', 'dropdown-menu'],
|
|
435
|
+
},
|
|
401
436
|
};
|
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',
|
|
@@ -145,6 +145,29 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
145
145
|
name: 'dialog',
|
|
146
146
|
files: ['dialog.component.ts'],
|
|
147
147
|
},
|
|
148
|
+
dock: {
|
|
149
|
+
name: 'dock',
|
|
150
|
+
files: [
|
|
151
|
+
'dock.component.ts',
|
|
152
|
+
'dock-item.component.ts',
|
|
153
|
+
'dock-icon.component.ts',
|
|
154
|
+
'dock-label.component.ts',
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
'tree-select': {
|
|
158
|
+
name: 'tree-select',
|
|
159
|
+
files: ['tree-select.component.ts'],
|
|
160
|
+
dependencies: ['popover', 'tree'],
|
|
161
|
+
},
|
|
162
|
+
'virtual-scroll': {
|
|
163
|
+
name: 'virtual-scroll',
|
|
164
|
+
files: ['virtual-scroll.component.ts'],
|
|
165
|
+
},
|
|
166
|
+
'input-mask': {
|
|
167
|
+
name: 'input-mask',
|
|
168
|
+
files: ['input-mask.directive.ts'],
|
|
169
|
+
dependencies: ['input'],
|
|
170
|
+
},
|
|
148
171
|
drawer: {
|
|
149
172
|
name: 'drawer',
|
|
150
173
|
files: ['drawer.component.ts'],
|
|
@@ -409,4 +432,16 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
409
432
|
'charts/chart.utils.ts',
|
|
410
433
|
],
|
|
411
434
|
},
|
|
435
|
+
'bento-grid': {
|
|
436
|
+
name: 'bento-grid',
|
|
437
|
+
dependencies: ['context-menu'],
|
|
438
|
+
files: [
|
|
439
|
+
'bento-grid.component.ts',
|
|
440
|
+
],
|
|
441
|
+
},
|
|
442
|
+
'split-button': {
|
|
443
|
+
name: 'split-button',
|
|
444
|
+
files: ['split-button.component.ts'],
|
|
445
|
+
dependencies: ['button', 'dropdown-menu'],
|
|
446
|
+
},
|
|
412
447
|
};
|