@xysfe/actui2 0.0.9 → 0.0.10
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/lib/Marketing/kcb/index.esm.js +3 -2
- package/lib/Marketing/kcb/index.js +1 -1
- package/lib/Marketing/kcb/style.css +1 -1
- package/lib/Style/style.css +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.js +1 -1
- package/lib/mixins/noscroll/index.esm.js +21 -12
- package/lib/mixins/noscroll/index.js +1 -1
- package/package.json +1 -1
- package/types/common/goldlayer.vue.d.ts +34 -0
- package/types/components/CertifyLayer/src/index.vue.d.ts +34 -0
- package/types/components/ClaimsContact/src/index.vue.d.ts +34 -0
- package/types/components/Contact/src/index.vue.d.ts +34 -0
- package/types/components/ContactBook/src/index.vue.d.ts +34 -0
- package/types/components/CouponLayer/src/index.vue.d.ts +34 -0
- package/types/components/CrmReserveInfoLayer/src/index.vue.d.ts +34 -0
- package/types/components/Dialog/src/index.vue.d.ts +34 -0
- package/types/components/DiseaseSelect/src/search.vue.d.ts +4 -0
- package/types/components/DiseaseSelect/src/selectLayer.vue.d.ts +34 -0
- package/types/components/DiseaseSelectLayer/src/index.vue.d.ts +34 -0
- package/types/components/FormLayer/src/index.vue.d.ts +34 -0
- package/types/components/GivenLayer/src/index.vue.d.ts +34 -0
- package/types/components/GoldCancelDialog/src/index.vue.d.ts +4 -0
- package/types/components/GoldCoupon/src/code.vue.d.ts +34 -0
- package/types/components/GoldCoupon/src/list.vue.d.ts +34 -0
- package/types/components/GoldDialog/src/index.vue.d.ts +34 -0
- package/types/components/GoldIntransitDialog/src/index.vue.d.ts +34 -0
- package/types/components/GoldPhoto/src/index.vue.d.ts +34 -0
- package/types/components/GoldQrcode/src/index.vue.d.ts +34 -0
- package/types/components/GoldSelect/src/components/select.vue.d.ts +34 -0
- package/types/components/ImageLayer/src/index.vue.d.ts +34 -0
- package/types/components/ImagePreview/src/index.vue.d.ts +34 -0
- package/types/components/IndexBar/src/index.vue.d.ts +34 -0
- package/types/components/JigsawLayer/src/index.vue.d.ts +34 -0
- package/types/components/LoginLayer/src/index.vue.d.ts +34 -0
- package/types/components/Marketing/src/components/scrollPanel.vue.d.ts +2 -2
- package/types/components/Marketing/src/kcb.vue.d.ts +9 -0
- package/types/components/MobileAuthLayer/src/index.vue.d.ts +34 -0
- package/types/components/MobileLayer/src/crm.vue.d.ts +34 -0
- package/types/components/MobileLayer/src/default.vue.d.ts +34 -0
- package/types/components/MultiSelect/src/index.vue.d.ts +34 -0
- package/types/components/PageLoading/src/index.vue.d.ts +34 -0
- package/types/components/Picker/src/index.vue.d.ts +34 -0
- package/types/components/PickerLongText/src/index.vue.d.ts +34 -0
- package/types/components/PosterLayer/src/index.vue.d.ts +34 -0
- package/types/components/PrizeLayer/src/index.vue.d.ts +34 -0
- package/types/components/ProductLayer/src/saleAreaLayer.vue.d.ts +34 -0
- package/types/components/QrcodeLayer/src/index.vue.d.ts +34 -0
- package/types/components/RowCascadePicker/src/index.bak.vue.d.ts +34 -0
- package/types/components/Rule/src/index.vue.d.ts +34 -0
- package/types/mixins/noscroll.d.ts +4 -0
|
@@ -31,9 +31,43 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
isSelected: boolean;
|
|
32
32
|
isChecking: boolean;
|
|
33
33
|
}, {}, {}, {
|
|
34
|
+
model: {
|
|
35
|
+
prop: string;
|
|
36
|
+
event: string;
|
|
37
|
+
};
|
|
38
|
+
props: {
|
|
39
|
+
visible: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
data: () => {
|
|
45
|
+
preOverflowValue: string;
|
|
46
|
+
isVisible: boolean;
|
|
47
|
+
};
|
|
34
48
|
watch: {
|
|
35
49
|
isVisible(newVal: any): void;
|
|
36
50
|
};
|
|
51
|
+
mounted(): void;
|
|
52
|
+
methods: {
|
|
53
|
+
show(): {
|
|
54
|
+
show(): any;
|
|
55
|
+
hide(): any;
|
|
56
|
+
};
|
|
57
|
+
hide(): {
|
|
58
|
+
show(): any;
|
|
59
|
+
hide(): any;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
beforeDestroy(): void;
|
|
63
|
+
} | {
|
|
64
|
+
watch: {
|
|
65
|
+
isVisible(newVal: any): void;
|
|
66
|
+
};
|
|
67
|
+
methods: {
|
|
68
|
+
lockBodyScroll(): void;
|
|
69
|
+
unlockBodyScroll(): void;
|
|
70
|
+
};
|
|
37
71
|
beforeDestroy(): void;
|
|
38
72
|
} | import("vue").DefineComponent<{}, any, {
|
|
39
73
|
FixedToHtmlScrollY: string;
|
|
@@ -19,6 +19,36 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19
19
|
}, {
|
|
20
20
|
drTypeTxt(): "创信闪录" | "保司双录";
|
|
21
21
|
}, {}, {
|
|
22
|
+
model: {
|
|
23
|
+
prop: string;
|
|
24
|
+
event: string;
|
|
25
|
+
};
|
|
26
|
+
props: {
|
|
27
|
+
visible: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
data: () => {
|
|
33
|
+
preOverflowValue: string;
|
|
34
|
+
isVisible: boolean;
|
|
35
|
+
};
|
|
36
|
+
watch: {
|
|
37
|
+
isVisible(newVal: any): void;
|
|
38
|
+
};
|
|
39
|
+
mounted(): void;
|
|
40
|
+
methods: {
|
|
41
|
+
show(): {
|
|
42
|
+
show(): any;
|
|
43
|
+
hide(): any;
|
|
44
|
+
};
|
|
45
|
+
hide(): {
|
|
46
|
+
show(): any;
|
|
47
|
+
hide(): any;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
beforeDestroy(): void;
|
|
51
|
+
} | {
|
|
22
52
|
props: {
|
|
23
53
|
zIndex: {
|
|
24
54
|
type: NumberConstructor;
|
|
@@ -33,6 +63,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
63
|
watch: {
|
|
34
64
|
isVisible(newVal: any): void;
|
|
35
65
|
};
|
|
66
|
+
methods: {
|
|
67
|
+
lockBodyScroll(): void;
|
|
68
|
+
unlockBodyScroll(): void;
|
|
69
|
+
};
|
|
36
70
|
beforeDestroy(): void;
|
|
37
71
|
}, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
38
72
|
productId: {
|
|
@@ -33,9 +33,43 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
33
|
getTitleHtml(): any;
|
|
34
34
|
getFooterHtml(): any;
|
|
35
35
|
}, {}, {
|
|
36
|
+
model: {
|
|
37
|
+
prop: string;
|
|
38
|
+
event: string;
|
|
39
|
+
};
|
|
40
|
+
props: {
|
|
41
|
+
visible: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
data: () => {
|
|
47
|
+
preOverflowValue: string;
|
|
48
|
+
isVisible: boolean;
|
|
49
|
+
};
|
|
36
50
|
watch: {
|
|
37
51
|
isVisible(newVal: any): void;
|
|
38
52
|
};
|
|
53
|
+
mounted(): void;
|
|
54
|
+
methods: {
|
|
55
|
+
show(): {
|
|
56
|
+
show(): any;
|
|
57
|
+
hide(): any;
|
|
58
|
+
};
|
|
59
|
+
hide(): {
|
|
60
|
+
show(): any;
|
|
61
|
+
hide(): any;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
beforeDestroy(): void;
|
|
65
|
+
} | {
|
|
66
|
+
watch: {
|
|
67
|
+
isVisible(newVal: any): void;
|
|
68
|
+
};
|
|
69
|
+
methods: {
|
|
70
|
+
lockBodyScroll(): void;
|
|
71
|
+
unlockBodyScroll(): void;
|
|
72
|
+
};
|
|
39
73
|
beforeDestroy(): void;
|
|
40
74
|
}, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
41
75
|
title: {
|
|
@@ -51,6 +51,36 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
renderTitle(): string;
|
|
52
52
|
placeholder(): "";
|
|
53
53
|
}, {}, {
|
|
54
|
+
model: {
|
|
55
|
+
prop: string;
|
|
56
|
+
event: string;
|
|
57
|
+
};
|
|
58
|
+
props: {
|
|
59
|
+
visible: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
data: () => {
|
|
65
|
+
preOverflowValue: string;
|
|
66
|
+
isVisible: boolean;
|
|
67
|
+
};
|
|
68
|
+
watch: {
|
|
69
|
+
isVisible(newVal: any): void;
|
|
70
|
+
};
|
|
71
|
+
mounted(): void;
|
|
72
|
+
methods: {
|
|
73
|
+
show(): {
|
|
74
|
+
show(): any;
|
|
75
|
+
hide(): any;
|
|
76
|
+
};
|
|
77
|
+
hide(): {
|
|
78
|
+
show(): any;
|
|
79
|
+
hide(): any;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
beforeDestroy(): void;
|
|
83
|
+
} | {
|
|
54
84
|
props: {
|
|
55
85
|
zIndex: {
|
|
56
86
|
type: NumberConstructor;
|
|
@@ -65,6 +95,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
65
95
|
watch: {
|
|
66
96
|
isVisible(newVal: any): void;
|
|
67
97
|
};
|
|
98
|
+
methods: {
|
|
99
|
+
lockBodyScroll(): void;
|
|
100
|
+
unlockBodyScroll(): void;
|
|
101
|
+
};
|
|
68
102
|
beforeDestroy(): void;
|
|
69
103
|
} | {
|
|
70
104
|
props: {
|
|
@@ -52,9 +52,43 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
52
52
|
}, {
|
|
53
53
|
isRuleArray(): boolean;
|
|
54
54
|
}, {}, {
|
|
55
|
+
model: {
|
|
56
|
+
prop: string;
|
|
57
|
+
event: string;
|
|
58
|
+
};
|
|
59
|
+
props: {
|
|
60
|
+
visible: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
data: () => {
|
|
66
|
+
preOverflowValue: string;
|
|
67
|
+
isVisible: boolean;
|
|
68
|
+
};
|
|
55
69
|
watch: {
|
|
56
70
|
isVisible(newVal: any): void;
|
|
57
71
|
};
|
|
72
|
+
mounted(): void;
|
|
73
|
+
methods: {
|
|
74
|
+
show(): {
|
|
75
|
+
show(): any;
|
|
76
|
+
hide(): any;
|
|
77
|
+
};
|
|
78
|
+
hide(): {
|
|
79
|
+
show(): any;
|
|
80
|
+
hide(): any;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
beforeDestroy(): void;
|
|
84
|
+
} | {
|
|
85
|
+
watch: {
|
|
86
|
+
isVisible(newVal: any): void;
|
|
87
|
+
};
|
|
88
|
+
methods: {
|
|
89
|
+
lockBodyScroll(): void;
|
|
90
|
+
unlockBodyScroll(): void;
|
|
91
|
+
};
|
|
58
92
|
beforeDestroy(): void;
|
|
59
93
|
}, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
60
94
|
layerType: {
|