dld-vue-ui 1.1.1 → 1.2.2
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/README.md +1 -0
- package/dist/components/CommonViews.vue.d.ts +18 -0
- package/dist/components/FrameUi.vue.d.ts +24 -0
- package/dist/components/Navigation.vue.d.ts +7 -0
- package/dist/dld-vue-ui.js +1368 -211
- package/dist/dld-vue-ui.umd.cjs +1 -1
- package/dist/main.d.ts +0 -0
- package/dist/packages/Dialog/index.d.ts +51 -0
- package/dist/packages/Dialog/index.vue.d.ts +57 -0
- package/dist/packages/Layout/index.vue.d.ts +19 -0
- package/dist/packages/SplitPanes/index.d.ts +3 -0
- package/dist/packages/SplitPanes/index.vue.d.ts +29 -0
- package/dist/packages/SplitPanes/pane.vue.d.ts +25 -0
- package/dist/packages/TableForm/index.d.ts +148 -0
- package/dist/packages/TableForm/index.vue.d.ts +161 -0
- package/dist/packages/UpLoadFile/index.vue.d.ts +24 -0
- package/dist/packages/UpLoadFiles/index.vue.d.ts +20 -0
- package/dist/packages/index.d.ts +14 -0
- package/dist/router/index.d.ts +2 -0
- package/dist/router/router.d.ts +3 -0
- package/dist/style.css +1 -1
- package/dist/utils/LinkCode.d.ts +14 -0
- package/dist/views/SplitPanes/index.vue.d.ts +2 -0
- package/dist/views/UploadFile/index.vue.d.ts +2 -0
- package/dist/views/index.vue.d.ts +2 -0
- package/package.json +17 -5
- package/dist/vite.svg +0 -1
package/README.md
CHANGED
|
@@ -365,6 +365,7 @@ export interface FormType {
|
|
|
365
365
|
|属性名|说明|类型|默认值|
|
|
366
366
|
|-----|----|-----|----|
|
|
367
367
|
|`label`|标签名|`string`||
|
|
368
|
+
|`default`|表单项的值|`string`|`string`\| `number`\| `null`\| `boolean`\| `Date`\| `Object`\| `Array<string \| number \| null \| boolean \| Date \| Object \| Array<any>>`|
|
|
368
369
|
|`type`|表单项类型text=文本框、select=单选/多选框、number=数字框、date=日期框、time=时间框、datetime=日期时间框、daterange=日期范围选择框、timerange=时间范围选择框,datetimerange=日期时间范围选择框、switch=开关按钮|`'text'\| 'select'\| 'number'\| 'date'\| 'datetime'\| 'time'\| 'daterange'\| 'timerange'\| 'datetimerange'\| 'switch'`|`text`|
|
|
369
370
|
|`width`|标签宽度|`string`|`90%`|
|
|
370
371
|
|`disabled`|是否禁用|`boolean`|`false`|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
main?(_: {}): any;
|
|
5
|
+
aside?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: HTMLDivElement;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Guid } from 'guid-typescript';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
id: Guid;
|
|
4
|
+
title: string;
|
|
5
|
+
code: string;
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
explain?(_: {}): any;
|
|
11
|
+
ui?(_: {}): any;
|
|
12
|
+
};
|
|
13
|
+
refs: {};
|
|
14
|
+
rootEl: HTMLDivElement;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Guid } from 'guid-typescript';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
id: Guid;
|
|
4
|
+
title: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLAnchorElement>;
|
|
7
|
+
export default _default;
|