@gilav21/shadcn-angular 0.0.24 → 0.0.25
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/index.js +1 -1
- package/dist/registry/index.js +14 -1
- package/package.json +1 -1
- package/src/registry/index.ts +14 -1
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ const program = new Command();
|
|
|
7
7
|
program
|
|
8
8
|
.name('shadcn-angular')
|
|
9
9
|
.description('CLI for adding shadcn-angular components to your Angular project')
|
|
10
|
-
.version('0.0.
|
|
10
|
+
.version('0.0.10');
|
|
11
11
|
program
|
|
12
12
|
.command('init')
|
|
13
13
|
.description('Initialize shadcn-angular in your project')
|
package/dist/registry/index.js
CHANGED
|
@@ -80,6 +80,7 @@ export const registry = {
|
|
|
80
80
|
name: 'command',
|
|
81
81
|
files: ['command.component.ts'],
|
|
82
82
|
dependencies: ['dialog'],
|
|
83
|
+
libFiles: ['shortcut-binding.service.ts'],
|
|
83
84
|
shortcutDefinitions: [
|
|
84
85
|
{
|
|
85
86
|
exportName: 'COMMAND_DIALOG_SHORTCUT_DEFINITIONS',
|
|
@@ -213,6 +214,8 @@ export const registry = {
|
|
|
213
214
|
'file-type-detector.ts',
|
|
214
215
|
'inflate.ts',
|
|
215
216
|
'zip-reader.ts',
|
|
217
|
+
'image-validator.ts',
|
|
218
|
+
'ole2-reader.ts',
|
|
216
219
|
'pptx-parser.ts',
|
|
217
220
|
'xlsx-reader.ts',
|
|
218
221
|
'docx-parser.ts',
|
|
@@ -406,7 +409,16 @@ export const registry = {
|
|
|
406
409
|
'dialog',
|
|
407
410
|
'scroll-area',
|
|
408
411
|
],
|
|
409
|
-
libFiles: [
|
|
412
|
+
libFiles: [
|
|
413
|
+
'pdf-parser.ts',
|
|
414
|
+
'image-validator.ts',
|
|
415
|
+
'svg-sanitizer.ts',
|
|
416
|
+
'shortcut-binding.service.ts',
|
|
417
|
+
'docx-parser.ts',
|
|
418
|
+
'docx-to-editor-html.ts',
|
|
419
|
+
'zip-reader.ts',
|
|
420
|
+
'inflate.ts',
|
|
421
|
+
],
|
|
410
422
|
shortcutDefinitions: [
|
|
411
423
|
{
|
|
412
424
|
exportName: 'RICH_TEXT_SHORTCUT_DEFINITIONS',
|
|
@@ -584,6 +596,7 @@ export const registry = {
|
|
|
584
596
|
kanban: {
|
|
585
597
|
name: 'kanban',
|
|
586
598
|
files: ['kanban.component.ts', 'kanban-locales.ts'],
|
|
599
|
+
libFiles: ['shortcut-binding.service.ts'],
|
|
587
600
|
dependencies: [
|
|
588
601
|
'badge', 'avatar', 'scroll-area', 'separator',
|
|
589
602
|
'button', 'input', 'textarea', 'label',
|
package/package.json
CHANGED
package/src/registry/index.ts
CHANGED
|
@@ -103,6 +103,7 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
103
103
|
name: 'command',
|
|
104
104
|
files: ['command.component.ts'],
|
|
105
105
|
dependencies: ['dialog'],
|
|
106
|
+
libFiles: ['shortcut-binding.service.ts'],
|
|
106
107
|
shortcutDefinitions: [
|
|
107
108
|
{
|
|
108
109
|
exportName: 'COMMAND_DIALOG_SHORTCUT_DEFINITIONS',
|
|
@@ -237,6 +238,8 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
237
238
|
'file-type-detector.ts',
|
|
238
239
|
'inflate.ts',
|
|
239
240
|
'zip-reader.ts',
|
|
241
|
+
'image-validator.ts',
|
|
242
|
+
'ole2-reader.ts',
|
|
240
243
|
'pptx-parser.ts',
|
|
241
244
|
'xlsx-reader.ts',
|
|
242
245
|
'docx-parser.ts',
|
|
@@ -430,7 +433,16 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
430
433
|
'dialog',
|
|
431
434
|
'scroll-area',
|
|
432
435
|
],
|
|
433
|
-
libFiles: [
|
|
436
|
+
libFiles: [
|
|
437
|
+
'pdf-parser.ts',
|
|
438
|
+
'image-validator.ts',
|
|
439
|
+
'svg-sanitizer.ts',
|
|
440
|
+
'shortcut-binding.service.ts',
|
|
441
|
+
'docx-parser.ts',
|
|
442
|
+
'docx-to-editor-html.ts',
|
|
443
|
+
'zip-reader.ts',
|
|
444
|
+
'inflate.ts',
|
|
445
|
+
],
|
|
434
446
|
shortcutDefinitions: [
|
|
435
447
|
{
|
|
436
448
|
exportName: 'RICH_TEXT_SHORTCUT_DEFINITIONS',
|
|
@@ -608,6 +620,7 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
608
620
|
kanban: {
|
|
609
621
|
name: 'kanban',
|
|
610
622
|
files: ['kanban.component.ts', 'kanban-locales.ts'],
|
|
623
|
+
libFiles: ['shortcut-binding.service.ts'],
|
|
611
624
|
dependencies: [
|
|
612
625
|
'badge', 'avatar', 'scroll-area', 'separator',
|
|
613
626
|
'button', 'input', 'textarea', 'label',
|