@gilav21/shadcn-angular 0.0.7 → 0.0.8
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 +30 -0
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/registry/index.ts +30 -0
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ const program = new Command();
|
|
|
6
6
|
program
|
|
7
7
|
.name('shadcn-angular')
|
|
8
8
|
.description('CLI for adding shadcn-angular components to your Angular project')
|
|
9
|
-
.version('0.0.
|
|
9
|
+
.version('0.0.8');
|
|
10
10
|
program
|
|
11
11
|
.command('init')
|
|
12
12
|
.description('Initialize shadcn-angular in your project')
|
package/dist/registry/index.js
CHANGED
|
@@ -220,4 +220,34 @@ export const registry = {
|
|
|
220
220
|
files: ['speed-dial.component.ts'],
|
|
221
221
|
dependencies: ['button']
|
|
222
222
|
},
|
|
223
|
+
'chip-list': {
|
|
224
|
+
name: 'chip-list',
|
|
225
|
+
files: ['chip-list.component.ts'],
|
|
226
|
+
dependencies: ['badge', 'button'],
|
|
227
|
+
},
|
|
228
|
+
'emoji-picker': {
|
|
229
|
+
name: 'emoji-picker',
|
|
230
|
+
files: ['emoji-picker.component.ts', 'emoji-data.ts'],
|
|
231
|
+
dependencies: ['button', 'input', 'scroll-area', 'popover'],
|
|
232
|
+
},
|
|
233
|
+
'rich-text-editor': {
|
|
234
|
+
name: 'rich-text-editor',
|
|
235
|
+
files: [
|
|
236
|
+
'rich-text-editor.component.ts',
|
|
237
|
+
'rich-text-toolbar.component.ts',
|
|
238
|
+
'rich-text-sanitizer.service.ts',
|
|
239
|
+
'rich-text-markdown.service.ts',
|
|
240
|
+
'rich-text-mention.component.ts',
|
|
241
|
+
'rich-text-image-resizer.component.ts',
|
|
242
|
+
],
|
|
243
|
+
dependencies: [
|
|
244
|
+
'button',
|
|
245
|
+
'separator',
|
|
246
|
+
'popover',
|
|
247
|
+
'emoji-picker',
|
|
248
|
+
'select',
|
|
249
|
+
'input',
|
|
250
|
+
'scroll-area',
|
|
251
|
+
],
|
|
252
|
+
},
|
|
223
253
|
};
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
package/src/registry/index.ts
CHANGED
|
@@ -229,4 +229,34 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
229
229
|
files: ['speed-dial.component.ts'],
|
|
230
230
|
dependencies: ['button']
|
|
231
231
|
},
|
|
232
|
+
'chip-list': {
|
|
233
|
+
name: 'chip-list',
|
|
234
|
+
files: ['chip-list.component.ts'],
|
|
235
|
+
dependencies: ['badge', 'button'],
|
|
236
|
+
},
|
|
237
|
+
'emoji-picker': {
|
|
238
|
+
name: 'emoji-picker',
|
|
239
|
+
files: ['emoji-picker.component.ts', 'emoji-data.ts'],
|
|
240
|
+
dependencies: ['button', 'input', 'scroll-area', 'popover'],
|
|
241
|
+
},
|
|
242
|
+
'rich-text-editor': {
|
|
243
|
+
name: 'rich-text-editor',
|
|
244
|
+
files: [
|
|
245
|
+
'rich-text-editor.component.ts',
|
|
246
|
+
'rich-text-toolbar.component.ts',
|
|
247
|
+
'rich-text-sanitizer.service.ts',
|
|
248
|
+
'rich-text-markdown.service.ts',
|
|
249
|
+
'rich-text-mention.component.ts',
|
|
250
|
+
'rich-text-image-resizer.component.ts',
|
|
251
|
+
],
|
|
252
|
+
dependencies: [
|
|
253
|
+
'button',
|
|
254
|
+
'separator',
|
|
255
|
+
'popover',
|
|
256
|
+
'emoji-picker',
|
|
257
|
+
'select',
|
|
258
|
+
'input',
|
|
259
|
+
'scroll-area',
|
|
260
|
+
],
|
|
261
|
+
},
|
|
232
262
|
};
|