@gilav21/shadcn-angular 0.0.21 → 0.0.22
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/registry/index.js +3 -0
- package/package.json +1 -1
- package/src/registry/index.ts +3 -0
package/dist/registry/index.js
CHANGED
|
@@ -126,6 +126,7 @@ export const registry = {
|
|
|
126
126
|
'data-table/data-table.component.ts',
|
|
127
127
|
'data-table/data-table-column-header.component.ts',
|
|
128
128
|
'data-table/data-table-pagination.component.ts',
|
|
129
|
+
'data-table/data-table-multiselect-filter.component.ts',
|
|
129
130
|
'data-table/data-table.types.ts',
|
|
130
131
|
'data-table/data-table.utils.ts',
|
|
131
132
|
'data-table/index.ts',
|
|
@@ -143,6 +144,8 @@ export const registry = {
|
|
|
143
144
|
'popover',
|
|
144
145
|
'component-outlet',
|
|
145
146
|
'icon',
|
|
147
|
+
'command',
|
|
148
|
+
'badge',
|
|
146
149
|
],
|
|
147
150
|
libFiles: ['xlsx.ts'],
|
|
148
151
|
optionalDependencies: [
|
package/package.json
CHANGED
package/src/registry/index.ts
CHANGED
|
@@ -149,6 +149,7 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
149
149
|
'data-table/data-table.component.ts',
|
|
150
150
|
'data-table/data-table-column-header.component.ts',
|
|
151
151
|
'data-table/data-table-pagination.component.ts',
|
|
152
|
+
'data-table/data-table-multiselect-filter.component.ts',
|
|
152
153
|
'data-table/data-table.types.ts',
|
|
153
154
|
'data-table/data-table.utils.ts',
|
|
154
155
|
'data-table/index.ts',
|
|
@@ -166,6 +167,8 @@ export const registry: Record<string, ComponentDefinition> = {
|
|
|
166
167
|
'popover',
|
|
167
168
|
'component-outlet',
|
|
168
169
|
'icon',
|
|
170
|
+
'command',
|
|
171
|
+
'badge',
|
|
169
172
|
],
|
|
170
173
|
libFiles: ['xlsx.ts'],
|
|
171
174
|
optionalDependencies: [
|