@gilav21/shadcn-angular 0.0.23 → 0.0.24
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 +16 -0
- package/package.json +1 -1
- package/src/registry/index.ts +16 -0
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.24');
|
|
11
11
|
program
|
|
12
12
|
.command('init')
|
|
13
13
|
.description('Initialize shadcn-angular in your project')
|
package/dist/registry/index.js
CHANGED
|
@@ -205,6 +205,22 @@ export const registry = {
|
|
|
205
205
|
files: ['file-upload.component.ts'],
|
|
206
206
|
dependencies: ['button', 'progress'],
|
|
207
207
|
},
|
|
208
|
+
'file-viewer': {
|
|
209
|
+
name: 'file-viewer',
|
|
210
|
+
files: ['file-viewer.component.ts'],
|
|
211
|
+
dependencies: ['spinner'],
|
|
212
|
+
libFiles: [
|
|
213
|
+
'file-type-detector.ts',
|
|
214
|
+
'inflate.ts',
|
|
215
|
+
'zip-reader.ts',
|
|
216
|
+
'pptx-parser.ts',
|
|
217
|
+
'xlsx-reader.ts',
|
|
218
|
+
'docx-parser.ts',
|
|
219
|
+
'doc-enhanced-parser.ts',
|
|
220
|
+
'ppt-parser.ts',
|
|
221
|
+
'svg-sanitizer.ts',
|
|
222
|
+
],
|
|
223
|
+
},
|
|
208
224
|
'hover-card': {
|
|
209
225
|
name: 'hover-card',
|
|
210
226
|
files: ['hover-card.component.ts'],
|
package/package.json
CHANGED
package/src/registry/index.ts
CHANGED
|
@@ -229,6 +229,22 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
229
229
|
files: ['file-upload.component.ts'],
|
|
230
230
|
dependencies: ['button', 'progress'],
|
|
231
231
|
},
|
|
232
|
+
'file-viewer': {
|
|
233
|
+
name: 'file-viewer',
|
|
234
|
+
files: ['file-viewer.component.ts'],
|
|
235
|
+
dependencies: ['spinner'],
|
|
236
|
+
libFiles: [
|
|
237
|
+
'file-type-detector.ts',
|
|
238
|
+
'inflate.ts',
|
|
239
|
+
'zip-reader.ts',
|
|
240
|
+
'pptx-parser.ts',
|
|
241
|
+
'xlsx-reader.ts',
|
|
242
|
+
'docx-parser.ts',
|
|
243
|
+
'doc-enhanced-parser.ts',
|
|
244
|
+
'ppt-parser.ts',
|
|
245
|
+
'svg-sanitizer.ts',
|
|
246
|
+
],
|
|
247
|
+
},
|
|
232
248
|
'hover-card': {
|
|
233
249
|
name: 'hover-card',
|
|
234
250
|
files: ['hover-card.component.ts'],
|