voiptime-components 1.12.57 → 1.13.0
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.cjs.js +27 -27
- package/dist/index.css +1 -1
- package/dist/index.d.ts +21 -0
- package/dist/index.es.js +3063 -2915
- package/dist/index.umd.js +27 -27
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -398,6 +398,11 @@ declare const __VLS_component_9: DefineComponent<{}, {}, {}, {}, {}, ComponentOp
|
|
|
398
398
|
|
|
399
399
|
declare type __VLS_Props = VTableProps;
|
|
400
400
|
|
|
401
|
+
declare type __VLS_Props_2 = {
|
|
402
|
+
items: SidebarItemRaw[];
|
|
403
|
+
collapsed: boolean;
|
|
404
|
+
};
|
|
405
|
+
|
|
401
406
|
declare type __VLS_PublicProps = {
|
|
402
407
|
'columns'?: VTableColumnProps[] | undefined;
|
|
403
408
|
} & __VLS_Props;
|
|
@@ -1201,6 +1206,14 @@ export declare interface SheetParseResult {
|
|
|
1201
1206
|
data?: any[];
|
|
1202
1207
|
}
|
|
1203
1208
|
|
|
1209
|
+
declare interface SidebarItemRaw {
|
|
1210
|
+
name: string;
|
|
1211
|
+
i18n: string;
|
|
1212
|
+
icon?: string;
|
|
1213
|
+
route?: string;
|
|
1214
|
+
children?: SidebarItemRaw[];
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1204
1217
|
export declare interface SortChangeEventData {
|
|
1205
1218
|
column: VTableColumnProps;
|
|
1206
1219
|
direction: SortDirection | null;
|
|
@@ -1823,6 +1836,14 @@ export declare interface VRadioboxProps {
|
|
|
1823
1836
|
|
|
1824
1837
|
export declare const VSelect: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
1825
1838
|
|
|
1839
|
+
export declare const VSidebar: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1840
|
+
navigate: (to: string) => any;
|
|
1841
|
+
"update:collapsed": (value: boolean) => any;
|
|
1842
|
+
}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{
|
|
1843
|
+
onNavigate?: ((to: string) => any) | undefined;
|
|
1844
|
+
"onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
|
|
1845
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
1846
|
+
|
|
1826
1847
|
export declare const VTabItem: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1827
1848
|
|
|
1828
1849
|
export declare interface VTabItemProps {
|