@choosemycompany/ui 0.17.1 → 0.17.3
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/assets/index.css +1 -1
- package/dist/index.d.ts +28 -0
- package/dist/index.js +403 -357
- package/dist/index.umd.js +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { ColumnDefinition as ColumnDefinition_3 } from '../../Molecules/CmcTable
|
|
|
7
7
|
import { ComponentOptionsMixin } from 'vue';
|
|
8
8
|
import { ComponentProvideOptions } from 'vue';
|
|
9
9
|
import { DefineComponent } from 'vue';
|
|
10
|
+
import { ExtractPropTypes } from 'vue';
|
|
10
11
|
import { PublicProps } from 'vue';
|
|
11
12
|
import { Row } from './CmcTable.d.ts';
|
|
12
13
|
import { Row as Row_2 } from '../../Molecules/CmcTable/CmcTable';
|
|
@@ -317,6 +318,33 @@ export declare const CmcAlert: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
|
|
|
317
318
|
onClick?: (() => any) | undefined;
|
|
318
319
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
319
320
|
|
|
321
|
+
export declare const CmcAriane: DefineComponent<ExtractPropTypes<{
|
|
322
|
+
items: {
|
|
323
|
+
type: () => {
|
|
324
|
+
label: string;
|
|
325
|
+
active?: boolean;
|
|
326
|
+
}[];
|
|
327
|
+
default: () => never[];
|
|
328
|
+
};
|
|
329
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
330
|
+
navigate: (...args: any[]) => void;
|
|
331
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
332
|
+
items: {
|
|
333
|
+
type: () => {
|
|
334
|
+
label: string;
|
|
335
|
+
active?: boolean;
|
|
336
|
+
}[];
|
|
337
|
+
default: () => never[];
|
|
338
|
+
};
|
|
339
|
+
}>> & Readonly<{
|
|
340
|
+
onNavigate?: ((...args: any[]) => any) | undefined;
|
|
341
|
+
}>, {
|
|
342
|
+
items: {
|
|
343
|
+
label: string;
|
|
344
|
+
active?: boolean;
|
|
345
|
+
}[];
|
|
346
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLElement>;
|
|
347
|
+
|
|
320
348
|
export declare const CmcAutocomplete: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
321
349
|
"update:modelValue": (...args: any[]) => void;
|
|
322
350
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|