@a2simcode/ui 0.0.70 → 0.0.71
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/components/barcode/index.d.ts +3 -3
- package/dist/components/barcode/src/barcode.vue.d.ts +1 -1
- package/dist/components/date/index.d.ts +98 -0
- package/dist/components/date/src/date.vue.d.ts +78 -0
- package/dist/components/index.d.ts +3 -1
- package/dist/components/slider/index.d.ts +3 -3
- package/dist/components/slider/src/slider.vue.d.ts +1 -1
- package/dist/components/tabs/index.d.ts +3 -3
- package/dist/components/tabs/src/tabs.vue.d.ts +1 -1
- package/dist/simcode-ui.es.js +4800 -4609
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/dist/ui.css +1 -1
- package/docs/components/date.md +76 -0
- package/docs/components/meta/date.ts +275 -0
- package/docs/examples/date/basic.vue +73 -0
- package/docs/examples/date/default-value.vue +59 -0
- package/docs/examples/date/format.vue +75 -0
- package/docs/examples/date/range.vue +66 -0
- package/docs/examples/date/types.vue +79 -0
- package/docs/examples/page/log.vue +437 -205
- package/docs/examples/table/editable.vue +1 -0
- package/docs/examples/table-panel/filter.vue +12 -2
- package/docs/examples/table-panel/sub-table-lazy.vue +18 -0
- package/package.json +1 -1
|
@@ -145,6 +145,7 @@ declare const JBarcode: {
|
|
|
145
145
|
height: number;
|
|
146
146
|
width: number;
|
|
147
147
|
rows: number;
|
|
148
|
+
format: string;
|
|
148
149
|
columns: number;
|
|
149
150
|
scaleX: number;
|
|
150
151
|
scaleY: number;
|
|
@@ -172,7 +173,6 @@ declare const JBarcode: {
|
|
|
172
173
|
guardwidth: number;
|
|
173
174
|
eclevel: string | number;
|
|
174
175
|
version: string | number;
|
|
175
|
-
format: string;
|
|
176
176
|
errorlevel: number;
|
|
177
177
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
178
178
|
P: {};
|
|
@@ -327,6 +327,7 @@ declare const JBarcode: {
|
|
|
327
327
|
height: number;
|
|
328
328
|
width: number;
|
|
329
329
|
rows: number;
|
|
330
|
+
format: string;
|
|
330
331
|
columns: number;
|
|
331
332
|
scaleX: number;
|
|
332
333
|
scaleY: number;
|
|
@@ -354,7 +355,6 @@ declare const JBarcode: {
|
|
|
354
355
|
guardwidth: number;
|
|
355
356
|
eclevel: string | number;
|
|
356
357
|
version: string | number;
|
|
357
|
-
format: string;
|
|
358
358
|
errorlevel: number;
|
|
359
359
|
}>;
|
|
360
360
|
__isFragment?: never;
|
|
@@ -506,6 +506,7 @@ declare const JBarcode: {
|
|
|
506
506
|
height: number;
|
|
507
507
|
width: number;
|
|
508
508
|
rows: number;
|
|
509
|
+
format: string;
|
|
509
510
|
columns: number;
|
|
510
511
|
scaleX: number;
|
|
511
512
|
scaleY: number;
|
|
@@ -533,7 +534,6 @@ declare const JBarcode: {
|
|
|
533
534
|
guardwidth: number;
|
|
534
535
|
eclevel: string | number;
|
|
535
536
|
version: string | number;
|
|
536
|
-
format: string;
|
|
537
537
|
errorlevel: number;
|
|
538
538
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
539
539
|
install: (app: import('vue').App) => void;
|
|
@@ -389,6 +389,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
389
389
|
height: number;
|
|
390
390
|
width: number;
|
|
391
391
|
rows: number;
|
|
392
|
+
format: string;
|
|
392
393
|
columns: number;
|
|
393
394
|
scaleX: number;
|
|
394
395
|
scaleY: number;
|
|
@@ -416,7 +417,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
416
417
|
guardwidth: number;
|
|
417
418
|
eclevel: string | number;
|
|
418
419
|
version: string | number;
|
|
419
|
-
format: string;
|
|
420
420
|
errorlevel: number;
|
|
421
421
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
422
422
|
export default _default;
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
declare const JDate: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('.').DateProps> & Readonly<{
|
|
3
|
+
onFocus?: ((e: FocusEvent) => any) | undefined;
|
|
4
|
+
onBlur?: ((e: FocusEvent) => any) | undefined;
|
|
5
|
+
"onUpdate:modelValue"?: ((val: string | number | Date | (string | number | Date)[]) => any) | undefined;
|
|
6
|
+
onChange?: ((val: string | number | Date | (string | number | Date)[]) => any) | undefined;
|
|
7
|
+
"onCalendar-change"?: ((val: [Date, Date | null]) => any) | undefined;
|
|
8
|
+
"onPanel-change"?: ((date: Date, mode: string, view: string) => any) | undefined;
|
|
9
|
+
"onVisible-change"?: ((visibility: boolean) => any) | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
ref: import('vue').Ref<any, any>;
|
|
12
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
focus: (e: FocusEvent) => any;
|
|
14
|
+
blur: (e: FocusEvent) => any;
|
|
15
|
+
"update:modelValue": (val: string | number | Date | (string | number | Date)[]) => any;
|
|
16
|
+
change: (val: string | number | Date | (string | number | Date)[]) => any;
|
|
17
|
+
"calendar-change": (val: [Date, Date | null]) => any;
|
|
18
|
+
"panel-change": (date: Date, mode: string, view: string) => any;
|
|
19
|
+
"visible-change": (visibility: boolean) => any;
|
|
20
|
+
}, import('vue').PublicProps, {
|
|
21
|
+
size: "large" | "default" | "small";
|
|
22
|
+
disabled: boolean;
|
|
23
|
+
placeholder: string;
|
|
24
|
+
clearable: boolean;
|
|
25
|
+
readonly: boolean;
|
|
26
|
+
selectType: "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange";
|
|
27
|
+
editable: boolean;
|
|
28
|
+
startPlaceholder: string;
|
|
29
|
+
endPlaceholder: string;
|
|
30
|
+
teleported: boolean;
|
|
31
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
32
|
+
dateRef: unknown;
|
|
33
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
34
|
+
P: {};
|
|
35
|
+
B: {};
|
|
36
|
+
D: {};
|
|
37
|
+
C: {};
|
|
38
|
+
M: {};
|
|
39
|
+
Defaults: {};
|
|
40
|
+
}, Readonly<import('.').DateProps> & Readonly<{
|
|
41
|
+
onFocus?: ((e: FocusEvent) => any) | undefined;
|
|
42
|
+
onBlur?: ((e: FocusEvent) => any) | undefined;
|
|
43
|
+
"onUpdate:modelValue"?: ((val: string | number | Date | (string | number | Date)[]) => any) | undefined;
|
|
44
|
+
onChange?: ((val: string | number | Date | (string | number | Date)[]) => any) | undefined;
|
|
45
|
+
"onCalendar-change"?: ((val: [Date, Date | null]) => any) | undefined;
|
|
46
|
+
"onPanel-change"?: ((date: Date, mode: string, view: string) => any) | undefined;
|
|
47
|
+
"onVisible-change"?: ((visibility: boolean) => any) | undefined;
|
|
48
|
+
}>, {
|
|
49
|
+
ref: import('vue').Ref<any, any>;
|
|
50
|
+
}, {}, {}, {}, {
|
|
51
|
+
size: "large" | "default" | "small";
|
|
52
|
+
disabled: boolean;
|
|
53
|
+
placeholder: string;
|
|
54
|
+
clearable: boolean;
|
|
55
|
+
readonly: boolean;
|
|
56
|
+
selectType: "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange";
|
|
57
|
+
editable: boolean;
|
|
58
|
+
startPlaceholder: string;
|
|
59
|
+
endPlaceholder: string;
|
|
60
|
+
teleported: boolean;
|
|
61
|
+
}>;
|
|
62
|
+
__isFragment?: never;
|
|
63
|
+
__isTeleport?: never;
|
|
64
|
+
__isSuspense?: never;
|
|
65
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('.').DateProps> & Readonly<{
|
|
66
|
+
onFocus?: ((e: FocusEvent) => any) | undefined;
|
|
67
|
+
onBlur?: ((e: FocusEvent) => any) | undefined;
|
|
68
|
+
"onUpdate:modelValue"?: ((val: string | number | Date | (string | number | Date)[]) => any) | undefined;
|
|
69
|
+
onChange?: ((val: string | number | Date | (string | number | Date)[]) => any) | undefined;
|
|
70
|
+
"onCalendar-change"?: ((val: [Date, Date | null]) => any) | undefined;
|
|
71
|
+
"onPanel-change"?: ((date: Date, mode: string, view: string) => any) | undefined;
|
|
72
|
+
"onVisible-change"?: ((visibility: boolean) => any) | undefined;
|
|
73
|
+
}>, {
|
|
74
|
+
ref: import('vue').Ref<any, any>;
|
|
75
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
76
|
+
focus: (e: FocusEvent) => any;
|
|
77
|
+
blur: (e: FocusEvent) => any;
|
|
78
|
+
"update:modelValue": (val: string | number | Date | (string | number | Date)[]) => any;
|
|
79
|
+
change: (val: string | number | Date | (string | number | Date)[]) => any;
|
|
80
|
+
"calendar-change": (val: [Date, Date | null]) => any;
|
|
81
|
+
"panel-change": (date: Date, mode: string, view: string) => any;
|
|
82
|
+
"visible-change": (visibility: boolean) => any;
|
|
83
|
+
}, string, {
|
|
84
|
+
size: "large" | "default" | "small";
|
|
85
|
+
disabled: boolean;
|
|
86
|
+
placeholder: string;
|
|
87
|
+
clearable: boolean;
|
|
88
|
+
readonly: boolean;
|
|
89
|
+
selectType: "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange";
|
|
90
|
+
editable: boolean;
|
|
91
|
+
startPlaceholder: string;
|
|
92
|
+
endPlaceholder: string;
|
|
93
|
+
teleported: boolean;
|
|
94
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
95
|
+
install: (app: import('vue').App) => void;
|
|
96
|
+
};
|
|
97
|
+
export default JDate;
|
|
98
|
+
export * from './src/date.vue';
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { Component } from 'vue';
|
|
2
|
+
export interface DateProps {
|
|
3
|
+
/** 绑定值 */
|
|
4
|
+
modelValue?: string | number | Date | Array<string | number | Date>;
|
|
5
|
+
/** 显示类型 */
|
|
6
|
+
selectType?: 'year' | 'month' | 'date' | 'dates' | 'week' | 'datetime' | 'datetimerange' | 'daterange' | 'monthrange';
|
|
7
|
+
/** 是否只读 */
|
|
8
|
+
readonly?: boolean;
|
|
9
|
+
/** 是否禁用 */
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
/** 文本框可输入 */
|
|
12
|
+
editable?: boolean;
|
|
13
|
+
/** 是否显示清除按钮 */
|
|
14
|
+
clearable?: boolean;
|
|
15
|
+
/** 输入框尺寸 */
|
|
16
|
+
size?: 'large' | 'default' | 'small';
|
|
17
|
+
/** 非范围选择时的占位内容 */
|
|
18
|
+
placeholder?: string;
|
|
19
|
+
/** 范围选择时开始日期的占位内容 */
|
|
20
|
+
startPlaceholder?: string;
|
|
21
|
+
/** 范围选择时结束日期的占位内容 */
|
|
22
|
+
endPlaceholder?: string;
|
|
23
|
+
/** 显示在输入框中的格式 */
|
|
24
|
+
format?: string;
|
|
25
|
+
/** 选择范围时的分隔符 */
|
|
26
|
+
rangeSeparator?: string;
|
|
27
|
+
/** 可选,选择器打开时默认显示的时间 */
|
|
28
|
+
defaultValue?: Date | Array<Date>;
|
|
29
|
+
/** 范围选择时选中日期所使用的当日内具体时刻 */
|
|
30
|
+
defaultTime?: Date | Array<Date>;
|
|
31
|
+
/** 设置快捷选项,需要传入数组对象 */
|
|
32
|
+
shortcuts?: Array<{
|
|
33
|
+
text: string;
|
|
34
|
+
value: Date | Function;
|
|
35
|
+
}>;
|
|
36
|
+
/** 一个用来判断该日期是否被禁用的函数,接受一个 Date 对象作为参数。 应该返回一个 Boolean 值 */
|
|
37
|
+
disabledDate?: (date: Date) => boolean;
|
|
38
|
+
/** 是否将 date-picker 的下拉列表插入至 body 元素 */
|
|
39
|
+
teleported?: boolean;
|
|
40
|
+
/** 自定义头部图标 */
|
|
41
|
+
prefixIcon?: string | Component;
|
|
42
|
+
/** 自定义清空图标 */
|
|
43
|
+
clearIcon?: string | Component;
|
|
44
|
+
}
|
|
45
|
+
declare const _default: import('vue').DefineComponent<DateProps, {
|
|
46
|
+
/** 获取 el-date-picker 实例 */
|
|
47
|
+
ref: import('vue').Ref<any, any>;
|
|
48
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
49
|
+
focus: (e: FocusEvent) => any;
|
|
50
|
+
blur: (e: FocusEvent) => any;
|
|
51
|
+
"update:modelValue": (val: string | number | Date | (string | number | Date)[]) => any;
|
|
52
|
+
change: (val: string | number | Date | (string | number | Date)[]) => any;
|
|
53
|
+
"calendar-change": (val: [Date, Date | null]) => any;
|
|
54
|
+
"panel-change": (date: Date, mode: string, view: string) => any;
|
|
55
|
+
"visible-change": (visibility: boolean) => any;
|
|
56
|
+
}, string, import('vue').PublicProps, Readonly<DateProps> & Readonly<{
|
|
57
|
+
onFocus?: ((e: FocusEvent) => any) | undefined;
|
|
58
|
+
onBlur?: ((e: FocusEvent) => any) | undefined;
|
|
59
|
+
"onUpdate:modelValue"?: ((val: string | number | Date | (string | number | Date)[]) => any) | undefined;
|
|
60
|
+
onChange?: ((val: string | number | Date | (string | number | Date)[]) => any) | undefined;
|
|
61
|
+
"onCalendar-change"?: ((val: [Date, Date | null]) => any) | undefined;
|
|
62
|
+
"onPanel-change"?: ((date: Date, mode: string, view: string) => any) | undefined;
|
|
63
|
+
"onVisible-change"?: ((visibility: boolean) => any) | undefined;
|
|
64
|
+
}>, {
|
|
65
|
+
size: "large" | "default" | "small";
|
|
66
|
+
disabled: boolean;
|
|
67
|
+
placeholder: string;
|
|
68
|
+
clearable: boolean;
|
|
69
|
+
readonly: boolean;
|
|
70
|
+
selectType: "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange";
|
|
71
|
+
editable: boolean;
|
|
72
|
+
startPlaceholder: string;
|
|
73
|
+
endPlaceholder: string;
|
|
74
|
+
teleported: boolean;
|
|
75
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
76
|
+
dateRef: unknown;
|
|
77
|
+
}, any>;
|
|
78
|
+
export default _default;
|
|
@@ -2,6 +2,7 @@ import { App } from 'vue';
|
|
|
2
2
|
import { default as JButton } from './button';
|
|
3
3
|
import { default as JButtons } from './buttons';
|
|
4
4
|
import { default as JInput } from './input';
|
|
5
|
+
import { default as JDate } from './date';
|
|
5
6
|
import { default as JIcon } from './icon';
|
|
6
7
|
import { default as JRadio } from './radio';
|
|
7
8
|
import { default as JSelect } from './select';
|
|
@@ -53,8 +54,9 @@ import { default as JCollapse } from './collapse';
|
|
|
53
54
|
import { default as JEditor } from './editor';
|
|
54
55
|
import { default as JWorkflowViewer, JWorkflow } from './workflow-viewer';
|
|
55
56
|
import { default as JInputCards } from './input-cards';
|
|
56
|
-
export { JButton, JButtons, JInput, JIcon, JRadio, JSelect, JCascaderSelect, JCheckbox, JNumber, JAutoComplete, JLayout, JTable, JDialog, JDialogFull, JDrawer, JLayer, JDynamicLayer, JInputTag, JRate, JSlider, JUpload, JEcharts, JBarcode, JCodeMirror, JCount, JCountUp, JDataPanel, JDivider, JHpanel, JGuid, JInputButton, JInputCode, JInputColor, JTitle, JButtonSelect, JTree, JTreeSelect, JComp, JForm, JFormItem, JPage, JSliderCaptcha, JMenu, JTablePanel, JInputRows, JInputLayer, JLayerForm, JSwitch, JTabs, JCollapse, JEditor, JWorkflowViewer, JWorkflow, JPanel, JInputCards, };
|
|
57
|
+
export { JButton, JButtons, JInput, JDate, JIcon, JRadio, JSelect, JCascaderSelect, JCheckbox, JNumber, JAutoComplete, JLayout, JTable, JDialog, JDialogFull, JDrawer, JLayer, JDynamicLayer, JInputTag, JRate, JSlider, JUpload, JEcharts, JBarcode, JCodeMirror, JCount, JCountUp, JDataPanel, JDivider, JHpanel, JGuid, JInputButton, JInputCode, JInputColor, JTitle, JButtonSelect, JTree, JTreeSelect, JComp, JForm, JFormItem, JPage, JSliderCaptcha, JMenu, JTablePanel, JInputRows, JInputLayer, JLayerForm, JSwitch, JTabs, JCollapse, JEditor, JWorkflowViewer, JWorkflow, JPanel, JInputCards, };
|
|
57
58
|
export * from '../core';
|
|
59
|
+
export type { DateProps } from './date/src/date.vue';
|
|
58
60
|
export type { InputProps } from './input/src/input.vue';
|
|
59
61
|
export type { SelectOption, SelectProps } from './select/src/select.vue';
|
|
60
62
|
export type { SwitchProps } from './switch/src/switch.vue';
|
|
@@ -18,12 +18,12 @@ export declare const JSlider: {
|
|
|
18
18
|
min: number;
|
|
19
19
|
step: number;
|
|
20
20
|
validateEvent: boolean;
|
|
21
|
+
range: boolean;
|
|
21
22
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end";
|
|
22
23
|
showInput: boolean;
|
|
23
24
|
showInputControls: boolean;
|
|
24
25
|
showStops: boolean;
|
|
25
26
|
showTooltip: boolean;
|
|
26
|
-
range: boolean;
|
|
27
27
|
persistent: boolean;
|
|
28
28
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
29
29
|
P: {};
|
|
@@ -46,12 +46,12 @@ export declare const JSlider: {
|
|
|
46
46
|
min: number;
|
|
47
47
|
step: number;
|
|
48
48
|
validateEvent: boolean;
|
|
49
|
+
range: boolean;
|
|
49
50
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end";
|
|
50
51
|
showInput: boolean;
|
|
51
52
|
showInputControls: boolean;
|
|
52
53
|
showStops: boolean;
|
|
53
54
|
showTooltip: boolean;
|
|
54
|
-
range: boolean;
|
|
55
55
|
persistent: boolean;
|
|
56
56
|
}>;
|
|
57
57
|
__isFragment?: never;
|
|
@@ -76,12 +76,12 @@ export declare const JSlider: {
|
|
|
76
76
|
min: number;
|
|
77
77
|
step: number;
|
|
78
78
|
validateEvent: boolean;
|
|
79
|
+
range: boolean;
|
|
79
80
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end";
|
|
80
81
|
showInput: boolean;
|
|
81
82
|
showInputControls: boolean;
|
|
82
83
|
showStops: boolean;
|
|
83
84
|
showTooltip: boolean;
|
|
84
|
-
range: boolean;
|
|
85
85
|
persistent: boolean;
|
|
86
86
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
87
87
|
install: (app: import('vue').App) => void;
|
|
@@ -65,12 +65,12 @@ declare const _default: import('vue').DefineComponent<SliderProps, {}, {}, {}, {
|
|
|
65
65
|
min: number;
|
|
66
66
|
step: number;
|
|
67
67
|
validateEvent: boolean;
|
|
68
|
+
range: boolean;
|
|
68
69
|
placement: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end";
|
|
69
70
|
showInput: boolean;
|
|
70
71
|
showInputControls: boolean;
|
|
71
72
|
showStops: boolean;
|
|
72
73
|
showTooltip: boolean;
|
|
73
|
-
range: boolean;
|
|
74
74
|
persistent: boolean;
|
|
75
75
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
76
76
|
export default _default;
|
|
@@ -47,10 +47,10 @@ declare const JTabs: {
|
|
|
47
47
|
edit: (targetName: string | number, action: "add" | "remove") => any;
|
|
48
48
|
}, import('vue').PublicProps, {
|
|
49
49
|
type: "" | "card" | "border-card";
|
|
50
|
+
editable: boolean;
|
|
50
51
|
closable: boolean;
|
|
51
52
|
stretch: boolean;
|
|
52
53
|
addable: boolean;
|
|
53
|
-
editable: boolean;
|
|
54
54
|
tabPosition: "top" | "right" | "bottom" | "left";
|
|
55
55
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
56
56
|
P: {};
|
|
@@ -84,10 +84,10 @@ declare const JTabs: {
|
|
|
84
84
|
onEdit?: ((targetName: string | number, action: "add" | "remove") => any) | undefined;
|
|
85
85
|
}>, {}, {}, {}, {}, {
|
|
86
86
|
type: "" | "card" | "border-card";
|
|
87
|
+
editable: boolean;
|
|
87
88
|
closable: boolean;
|
|
88
89
|
stretch: boolean;
|
|
89
90
|
addable: boolean;
|
|
90
|
-
editable: boolean;
|
|
91
91
|
tabPosition: "top" | "right" | "bottom" | "left";
|
|
92
92
|
}>;
|
|
93
93
|
__isFragment?: never;
|
|
@@ -141,10 +141,10 @@ declare const JTabs: {
|
|
|
141
141
|
edit: (targetName: string | number, action: "add" | "remove") => any;
|
|
142
142
|
}, string, {
|
|
143
143
|
type: "" | "card" | "border-card";
|
|
144
|
+
editable: boolean;
|
|
144
145
|
closable: boolean;
|
|
145
146
|
stretch: boolean;
|
|
146
147
|
addable: boolean;
|
|
147
|
-
editable: boolean;
|
|
148
148
|
tabPosition: "top" | "right" | "bottom" | "left";
|
|
149
149
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
150
150
|
$slots: {
|
|
@@ -95,10 +95,10 @@ declare const __VLS_component: import('vue').DefineComponent<TabsProps, {}, {},
|
|
|
95
95
|
onEdit?: ((targetName: string | number, action: "add" | "remove") => any) | undefined;
|
|
96
96
|
}>, {
|
|
97
97
|
type: "" | "card" | "border-card";
|
|
98
|
+
editable: boolean;
|
|
98
99
|
closable: boolean;
|
|
99
100
|
stretch: boolean;
|
|
100
101
|
addable: boolean;
|
|
101
|
-
editable: boolean;
|
|
102
102
|
tabPosition: "top" | "right" | "bottom" | "left";
|
|
103
103
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
104
104
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|