@nexxtmove/ui 0.1.45 → 0.1.47
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.d.ts +3 -0
- package/dist/index.js +1551 -1382
- package/dist/nuxt.js +25 -24
- package/package.json +9 -9
- package/src/components/Combobox/Combobox.vue +182 -0
- package/src/components/DropdownButton/DropdownButton.vue +24 -5
- package/src/components/Table/Table.vue +126 -129
- package/src/components.json +1 -0
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { GlobalComponents } from 'vue';
|
|
|
8
8
|
import { GlobalDirectives } from 'vue';
|
|
9
9
|
import { IconName } from '@awesome.me/kit-37b149f3ef/icons';
|
|
10
10
|
import { Locale } from 'date-fns';
|
|
11
|
+
import { default as NexxtCombobox } from './components/Combobox/Combobox.vue';
|
|
11
12
|
import { PublicProps } from 'vue';
|
|
12
13
|
import { ShallowUnwrapRef } from 'vue';
|
|
13
14
|
import { VNode } from 'vue';
|
|
@@ -374,6 +375,8 @@ declare interface NexxtChipProps {
|
|
|
374
375
|
variant?: 'default' | 'warning' | 'success' | 'danger' | 'ghost';
|
|
375
376
|
}
|
|
376
377
|
|
|
378
|
+
export { NexxtCombobox }
|
|
379
|
+
|
|
377
380
|
export declare const NexxtCustomerJourneyTile: DefineComponent<NexxtCustomerJourneyTileProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtCustomerJourneyTileProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
378
381
|
|
|
379
382
|
declare interface NexxtCustomerJourneyTileProps {
|