@autoafleveren/ui 0.16.0 → 0.16.1
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/types/components/AppToggleCard/AppToggleCard.vue.d.ts +34 -0
- package/dist/types/components/index.d.ts +1 -0
- package/dist/ui.cjs +36 -36
- package/dist/ui.js +3691 -3651
- package/package.json +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare let __VLS_typeProps: {
|
|
2
|
+
title: string;
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
};
|
|
5
|
+
type __VLS_PublicProps = {
|
|
6
|
+
modelValue?: boolean;
|
|
7
|
+
} & typeof __VLS_typeProps;
|
|
8
|
+
declare function __VLS_template(): {
|
|
9
|
+
title?(_: {
|
|
10
|
+
"data-test-title-slot": boolean;
|
|
11
|
+
}): any;
|
|
12
|
+
default?(_: {}): any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
"update:modelValue": (modelValue: boolean) => void;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
|
|
17
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
18
|
+
}, {}, {}>;
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
|
+
type __VLS_TypePropsToOption<T> = {
|
|
28
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
+
} : {
|
|
31
|
+
type: import('vue').PropType<T[K]>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -26,6 +26,7 @@ export { default as AppDataTable } from './AppDataTable/AppDataTable.vue';
|
|
|
26
26
|
export { default as AppActionBar } from './AppActionBar/AppActionBar.vue';
|
|
27
27
|
export { default as AppPagination } from './AppPagination/AppPagination.vue';
|
|
28
28
|
export { default as AppToggle } from './AppToggle/AppToggle.vue';
|
|
29
|
+
export { default as AppToggleCard } from './AppToggleCard/AppToggleCard.vue';
|
|
29
30
|
export { default as AppMenu } from './AppMenu/AppMenu.vue';
|
|
30
31
|
export { default as AppSection } from './AppSection/AppSection.vue';
|
|
31
32
|
export { default as AppContextMenu } from './AppContextMenu/AppContextMenu.vue';
|