@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 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.6');
9
+ .version('0.0.8');
10
10
  program
11
11
  .command('init')
12
12
  .description('Initialize shadcn-angular in your project')
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gilav21/shadcn-angular",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "CLI for adding shadcn-angular components to your project",
5
5
  "bin": {
6
6
  "shadcn-angular": "./dist/index.js"
package/src/index.ts CHANGED
@@ -8,7 +8,7 @@ const program = new Command();
8
8
  program
9
9
  .name('shadcn-angular')
10
10
  .description('CLI for adding shadcn-angular components to your Angular project')
11
- .version('0.0.6');
11
+ .version('0.0.8');
12
12
 
13
13
  program
14
14
  .command('init')
@@ -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
  };