@gilav21/shadcn-angular 0.0.13 → 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.
@@ -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/cell-host.directive.ts',
122
+ 'data-table/index.ts',
123
123
  ],
124
124
  dependencies: [
125
125
  'table',
@@ -129,6 +129,7 @@ export const registry = {
129
129
  'select',
130
130
  'pagination',
131
131
  'popover',
132
+ 'component-outlet',
132
133
  ],
133
134
  },
134
135
  dialog: {
@@ -423,11 +424,32 @@ export const registry = {
423
424
  },
424
425
  'bento-grid': {
425
426
  name: 'bento-grid',
426
- dependencies: ['context-menu'],
427
+ dependencies: ['context-menu', 'component-outlet'],
427
428
  files: [
428
429
  'bento-grid.component.ts',
429
430
  ],
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
+ },
431
453
  'split-button': {
432
454
  name: 'split-button',
433
455
  files: ['split-button.component.ts'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gilav21/shadcn-angular",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "CLI for adding shadcn-angular components to your project",
5
5
  "bin": {
6
6
  "shadcn-angular": "./dist/index.js"
@@ -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/cell-host.directive.ts',
132
+ 'data-table/index.ts',
133
133
  ],
134
134
  dependencies: [
135
135
  'table',
@@ -139,6 +139,7 @@ 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: {
@@ -434,11 +435,32 @@ export const registry: Record<string, ComponentDefinition> = {
434
435
  },
435
436
  'bento-grid': {
436
437
  name: 'bento-grid',
437
- dependencies: ['context-menu'],
438
+ dependencies: ['context-menu', 'component-outlet'],
438
439
  files: [
439
440
  'bento-grid.component.ts',
440
441
  ],
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
+ },
442
464
  'split-button': {
443
465
  name: 'split-button',
444
466
  files: ['split-button.component.ts'],