bm-admin-ui 1.0.24-alpha → 1.0.26-alpha
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/es/components/float-table/index.d.ts +2 -2
- package/es/components/float-table/src/float-table.vue.d.ts +2 -2
- package/es/components/search-filter/index.d.ts +15 -14
- package/es/components/search-filter/index.js +24 -16
- package/es/components/search-filter/src/search-filter.d.ts +8 -4
- package/es/components/search-filter/src/search-filter.vue.d.ts +15 -14
- package/es/components/search-filter/src/search-reset-btn.vue.d.ts +17 -0
- package/es/components/staffs-selector/src/multipleCmp.vue.d.ts +2 -2
- package/es/components/timeline/index.d.ts +11 -0
- package/es/components/timeline/index.js +9 -6
- package/es/components/timeline/src/props.d.ts +3 -0
- package/es/components/timeline/src/timeline-item.vue.d.ts +1 -0
- package/es/components/timeline/src/timeline.vue.d.ts +10 -0
- package/index.esm.js +33 -22
- package/index.js +32 -21
- package/lib/components/float-table/index.d.ts +2 -2
- package/lib/components/float-table/src/float-table.vue.d.ts +2 -2
- package/lib/components/search-filter/index.d.ts +15 -14
- package/lib/components/search-filter/index.js +23 -15
- package/lib/components/search-filter/src/search-filter.d.ts +8 -4
- package/lib/components/search-filter/src/search-filter.vue.d.ts +15 -14
- package/lib/components/search-filter/src/search-reset-btn.vue.d.ts +17 -0
- package/lib/components/staffs-selector/src/multipleCmp.vue.d.ts +2 -2
- package/lib/components/timeline/index.d.ts +11 -0
- package/lib/components/timeline/index.js +9 -6
- package/lib/components/timeline/src/props.d.ts +3 -0
- package/lib/components/timeline/src/timeline-item.vue.d.ts +1 -0
- package/lib/components/timeline/src/timeline.vue.d.ts +10 -0
- package/package.json +1 -1
- package/theme-chalk/feedback.css +1 -1
- package/theme-chalk/float-table.css +1 -1
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/search-filter.css +1 -1
- package/theme-chalk/timeline.css +1 -1
- package/theme-chalk/upload.css +1 -1
- package/types/components/float-table/index.d.ts +2 -2
- package/types/components/float-table/src/float-table.vue.d.ts +2 -2
- package/types/components/search-filter/index.d.ts +15 -14
- package/types/components/search-filter/src/search-filter.d.ts +8 -4
- package/types/components/search-filter/src/search-filter.vue.d.ts +15 -14
- package/types/components/search-filter/src/search-reset-btn.vue.d.ts +17 -0
- package/types/components/staffs-selector/src/multipleCmp.vue.d.ts +2 -2
- package/types/components/timeline/index.d.ts +11 -0
- package/types/components/timeline/src/props.d.ts +3 -0
- package/types/components/timeline/src/timeline-item.vue.d.ts +1 -0
- package/types/components/timeline/src/timeline.vue.d.ts +10 -0
|
@@ -3,6 +3,9 @@ declare const BmTimeline: import("bm-admin-ui/es/utils/with-install").SFCWithIns
|
|
|
3
3
|
mode: import("vue-types").VueTypeDef<string> & {
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
+
size: import("vue-types").VueTypeDef<string> & {
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
6
9
|
labelWidth: import("vue-types").VueTypeValidableDef<string> & {
|
|
7
10
|
default: string;
|
|
8
11
|
} & {
|
|
@@ -13,6 +16,9 @@ declare const BmTimeline: import("bm-admin-ui/es/utils/with-install").SFCWithIns
|
|
|
13
16
|
mode: import("vue-types").VueTypeDef<string> & {
|
|
14
17
|
default: string;
|
|
15
18
|
};
|
|
19
|
+
size: import("vue-types").VueTypeDef<string> & {
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
16
22
|
labelWidth: import("vue-types").VueTypeValidableDef<string> & {
|
|
17
23
|
default: string;
|
|
18
24
|
} & {
|
|
@@ -31,12 +37,16 @@ declare const BmTimeline: import("bm-admin-ui/es/utils/with-install").SFCWithIns
|
|
|
31
37
|
mode: import("vue-types").VueTypeDef<string> & {
|
|
32
38
|
default: string;
|
|
33
39
|
};
|
|
40
|
+
size: import("vue-types").VueTypeDef<string> & {
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
34
43
|
labelWidth: import("vue-types").VueTypeValidableDef<string> & {
|
|
35
44
|
default: string;
|
|
36
45
|
} & {
|
|
37
46
|
default: string;
|
|
38
47
|
};
|
|
39
48
|
}>>, {
|
|
49
|
+
size: string;
|
|
40
50
|
mode: string;
|
|
41
51
|
labelWidth: string;
|
|
42
52
|
}>>;
|
|
@@ -81,6 +91,7 @@ declare const BmTimelineItem: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
81
91
|
}>;
|
|
82
92
|
itemClassName: import("vue").ComputedRef<{
|
|
83
93
|
'bm-timeline-item': boolean;
|
|
94
|
+
'bm-timeline-item-has-label': any;
|
|
84
95
|
}>;
|
|
85
96
|
dotClassName: import("vue").ComputedRef<{
|
|
86
97
|
[x: string]: any;
|
|
@@ -3,6 +3,9 @@ export declare const timelineProps: () => {
|
|
|
3
3
|
mode: import("vue-types").VueTypeDef<string> & {
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
+
size: import("vue-types").VueTypeDef<string> & {
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
6
9
|
labelWidth: import("vue-types").VueTypeValidableDef<string> & {
|
|
7
10
|
default: string;
|
|
8
11
|
} & {
|
|
@@ -2,6 +2,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2
2
|
mode: import("vue-types").VueTypeDef<string> & {
|
|
3
3
|
default: string;
|
|
4
4
|
};
|
|
5
|
+
size: import("vue-types").VueTypeDef<string> & {
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
5
8
|
labelWidth: import("vue-types").VueTypeValidableDef<string> & {
|
|
6
9
|
default: string;
|
|
7
10
|
} & {
|
|
@@ -12,6 +15,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12
15
|
mode: import("vue-types").VueTypeDef<string> & {
|
|
13
16
|
default: string;
|
|
14
17
|
};
|
|
18
|
+
size: import("vue-types").VueTypeDef<string> & {
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
15
21
|
labelWidth: import("vue-types").VueTypeValidableDef<string> & {
|
|
16
22
|
default: string;
|
|
17
23
|
} & {
|
|
@@ -30,12 +36,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
36
|
mode: import("vue-types").VueTypeDef<string> & {
|
|
31
37
|
default: string;
|
|
32
38
|
};
|
|
39
|
+
size: import("vue-types").VueTypeDef<string> & {
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
33
42
|
labelWidth: import("vue-types").VueTypeValidableDef<string> & {
|
|
34
43
|
default: string;
|
|
35
44
|
} & {
|
|
36
45
|
default: string;
|
|
37
46
|
};
|
|
38
47
|
}>>, {
|
|
48
|
+
size: string;
|
|
39
49
|
mode: string;
|
|
40
50
|
labelWidth: string;
|
|
41
51
|
}>;
|