@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.
Files changed (51) hide show
  1. package/lib/Marketing/kcb/index.esm.js +3 -2
  2. package/lib/Marketing/kcb/index.js +1 -1
  3. package/lib/Marketing/kcb/style.css +1 -1
  4. package/lib/Style/style.css +1 -1
  5. package/lib/index.esm.js +1 -1
  6. package/lib/index.js +1 -1
  7. package/lib/mixins/noscroll/index.esm.js +21 -12
  8. package/lib/mixins/noscroll/index.js +1 -1
  9. package/package.json +1 -1
  10. package/types/common/goldlayer.vue.d.ts +34 -0
  11. package/types/components/CertifyLayer/src/index.vue.d.ts +34 -0
  12. package/types/components/ClaimsContact/src/index.vue.d.ts +34 -0
  13. package/types/components/Contact/src/index.vue.d.ts +34 -0
  14. package/types/components/ContactBook/src/index.vue.d.ts +34 -0
  15. package/types/components/CouponLayer/src/index.vue.d.ts +34 -0
  16. package/types/components/CrmReserveInfoLayer/src/index.vue.d.ts +34 -0
  17. package/types/components/Dialog/src/index.vue.d.ts +34 -0
  18. package/types/components/DiseaseSelect/src/search.vue.d.ts +4 -0
  19. package/types/components/DiseaseSelect/src/selectLayer.vue.d.ts +34 -0
  20. package/types/components/DiseaseSelectLayer/src/index.vue.d.ts +34 -0
  21. package/types/components/FormLayer/src/index.vue.d.ts +34 -0
  22. package/types/components/GivenLayer/src/index.vue.d.ts +34 -0
  23. package/types/components/GoldCancelDialog/src/index.vue.d.ts +4 -0
  24. package/types/components/GoldCoupon/src/code.vue.d.ts +34 -0
  25. package/types/components/GoldCoupon/src/list.vue.d.ts +34 -0
  26. package/types/components/GoldDialog/src/index.vue.d.ts +34 -0
  27. package/types/components/GoldIntransitDialog/src/index.vue.d.ts +34 -0
  28. package/types/components/GoldPhoto/src/index.vue.d.ts +34 -0
  29. package/types/components/GoldQrcode/src/index.vue.d.ts +34 -0
  30. package/types/components/GoldSelect/src/components/select.vue.d.ts +34 -0
  31. package/types/components/ImageLayer/src/index.vue.d.ts +34 -0
  32. package/types/components/ImagePreview/src/index.vue.d.ts +34 -0
  33. package/types/components/IndexBar/src/index.vue.d.ts +34 -0
  34. package/types/components/JigsawLayer/src/index.vue.d.ts +34 -0
  35. package/types/components/LoginLayer/src/index.vue.d.ts +34 -0
  36. package/types/components/Marketing/src/components/scrollPanel.vue.d.ts +2 -2
  37. package/types/components/Marketing/src/kcb.vue.d.ts +9 -0
  38. package/types/components/MobileAuthLayer/src/index.vue.d.ts +34 -0
  39. package/types/components/MobileLayer/src/crm.vue.d.ts +34 -0
  40. package/types/components/MobileLayer/src/default.vue.d.ts +34 -0
  41. package/types/components/MultiSelect/src/index.vue.d.ts +34 -0
  42. package/types/components/PageLoading/src/index.vue.d.ts +34 -0
  43. package/types/components/Picker/src/index.vue.d.ts +34 -0
  44. package/types/components/PickerLongText/src/index.vue.d.ts +34 -0
  45. package/types/components/PosterLayer/src/index.vue.d.ts +34 -0
  46. package/types/components/PrizeLayer/src/index.vue.d.ts +34 -0
  47. package/types/components/ProductLayer/src/saleAreaLayer.vue.d.ts +34 -0
  48. package/types/components/QrcodeLayer/src/index.vue.d.ts +34 -0
  49. package/types/components/RowCascadePicker/src/index.bak.vue.d.ts +34 -0
  50. package/types/components/Rule/src/index.vue.d.ts +34 -0
  51. package/types/mixins/noscroll.d.ts +4 -0
@@ -27,6 +27,36 @@ declare const _default: import("vue").DefineComponent<{
27
27
  bgClass(): "cpsbg" | "bg";
28
28
  width(): number;
29
29
  }, {}, {
30
+ model: {
31
+ prop: string;
32
+ event: string;
33
+ };
34
+ props: {
35
+ visible: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
39
+ };
40
+ data: () => {
41
+ preOverflowValue: string;
42
+ isVisible: boolean;
43
+ };
44
+ watch: {
45
+ isVisible(newVal: any): void;
46
+ };
47
+ mounted(): void;
48
+ methods: {
49
+ show(): {
50
+ show(): any;
51
+ hide(): any;
52
+ };
53
+ hide(): {
54
+ show(): any;
55
+ hide(): any;
56
+ };
57
+ };
58
+ beforeDestroy(): void;
59
+ } | {
30
60
  props: {
31
61
  zIndex: {
32
62
  type: NumberConstructor;
@@ -41,6 +71,10 @@ declare const _default: import("vue").DefineComponent<{
41
71
  watch: {
42
72
  isVisible(newVal: any): void;
43
73
  };
74
+ methods: {
75
+ lockBodyScroll(): void;
76
+ unlockBodyScroll(): void;
77
+ };
44
78
  beforeDestroy(): void;
45
79
  }, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
46
80
  brandColor: {
@@ -48,9 +48,43 @@ declare const _default: import("vue").DefineComponent<{
48
48
  bgColor: never;
49
49
  };
50
50
  }, {}, {
51
+ model: {
52
+ prop: string;
53
+ event: string;
54
+ };
55
+ props: {
56
+ visible: {
57
+ type: BooleanConstructor;
58
+ default: boolean;
59
+ };
60
+ };
61
+ data: () => {
62
+ preOverflowValue: string;
63
+ isVisible: boolean;
64
+ };
51
65
  watch: {
52
66
  isVisible(newVal: any): void;
53
67
  };
68
+ mounted(): void;
69
+ methods: {
70
+ show(): {
71
+ show(): any;
72
+ hide(): any;
73
+ };
74
+ hide(): {
75
+ show(): any;
76
+ hide(): any;
77
+ };
78
+ };
79
+ beforeDestroy(): void;
80
+ } | {
81
+ watch: {
82
+ isVisible(newVal: any): void;
83
+ };
84
+ methods: {
85
+ lockBodyScroll(): void;
86
+ unlockBodyScroll(): void;
87
+ };
54
88
  beforeDestroy(): void;
55
89
  }, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
56
90
  title: {
@@ -37,6 +37,36 @@ declare const _default: import("vue").DefineComponent<{
37
37
  realImages(): any;
38
38
  realStart(): number;
39
39
  }, {}, {
40
+ model: {
41
+ prop: string;
42
+ event: string;
43
+ };
44
+ props: {
45
+ visible: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ };
50
+ data: () => {
51
+ preOverflowValue: string;
52
+ isVisible: boolean;
53
+ };
54
+ watch: {
55
+ isVisible(newVal: any): void;
56
+ };
57
+ mounted(): void;
58
+ methods: {
59
+ show(): {
60
+ show(): any;
61
+ hide(): any;
62
+ };
63
+ hide(): {
64
+ show(): any;
65
+ hide(): any;
66
+ };
67
+ };
68
+ beforeDestroy(): void;
69
+ } | {
40
70
  props: {
41
71
  zIndex: {
42
72
  type: NumberConstructor;
@@ -51,6 +81,10 @@ declare const _default: import("vue").DefineComponent<{
51
81
  watch: {
52
82
  isVisible(newVal: any): void;
53
83
  };
84
+ methods: {
85
+ lockBodyScroll(): void;
86
+ unlockBodyScroll(): void;
87
+ };
54
88
  beforeDestroy(): void;
55
89
  } | {
56
90
  data(): {
@@ -50,6 +50,36 @@ declare const _default: import("vue").DefineComponent<{
50
50
  shortcutList(): any;
51
51
  fixedTitle(): any;
52
52
  }, {}, {
53
+ model: {
54
+ prop: string;
55
+ event: string;
56
+ };
57
+ props: {
58
+ visible: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
62
+ };
63
+ data: () => {
64
+ preOverflowValue: string;
65
+ isVisible: boolean;
66
+ };
67
+ watch: {
68
+ isVisible(newVal: any): void;
69
+ };
70
+ mounted(): void;
71
+ methods: {
72
+ show(): {
73
+ show(): any;
74
+ hide(): any;
75
+ };
76
+ hide(): {
77
+ show(): any;
78
+ hide(): any;
79
+ };
80
+ };
81
+ beforeDestroy(): void;
82
+ } | {
53
83
  props: {
54
84
  zIndex: {
55
85
  type: NumberConstructor;
@@ -64,6 +94,10 @@ declare const _default: import("vue").DefineComponent<{
64
94
  watch: {
65
95
  isVisible(newVal: any): void;
66
96
  };
97
+ methods: {
98
+ lockBodyScroll(): void;
99
+ unlockBodyScroll(): void;
100
+ };
67
101
  beforeDestroy(): void;
68
102
  }, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
69
103
  data: {
@@ -32,6 +32,36 @@ declare const _default: import("vue").DefineComponent<{
32
32
  }, {
33
33
  isMobile(): boolean;
34
34
  }, {}, {
35
+ model: {
36
+ prop: string;
37
+ event: string;
38
+ };
39
+ props: {
40
+ visible: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ };
45
+ data: () => {
46
+ preOverflowValue: string;
47
+ isVisible: boolean;
48
+ };
49
+ watch: {
50
+ isVisible(newVal: any): void;
51
+ };
52
+ mounted(): void;
53
+ methods: {
54
+ show(): {
55
+ show(): any;
56
+ hide(): any;
57
+ };
58
+ hide(): {
59
+ show(): any;
60
+ hide(): any;
61
+ };
62
+ };
63
+ beforeDestroy(): void;
64
+ } | {
35
65
  props: {
36
66
  zIndex: {
37
67
  type: NumberConstructor;
@@ -46,6 +76,10 @@ declare const _default: import("vue").DefineComponent<{
46
76
  watch: {
47
77
  isVisible(newVal: any): void;
48
78
  };
79
+ methods: {
80
+ lockBodyScroll(): void;
81
+ unlockBodyScroll(): void;
82
+ };
49
83
  beforeDestroy(): void;
50
84
  }, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
51
85
  title: {
@@ -84,6 +84,36 @@ declare const _default: import("vue").DefineComponent<{
84
84
  }[];
85
85
  }[];
86
86
  }, {}, {
87
+ model: {
88
+ prop: string;
89
+ event: string;
90
+ };
91
+ props: {
92
+ visible: {
93
+ type: BooleanConstructor;
94
+ default: boolean;
95
+ };
96
+ };
97
+ data: () => {
98
+ preOverflowValue: string;
99
+ isVisible: boolean;
100
+ };
101
+ watch: {
102
+ isVisible(newVal: any): void;
103
+ };
104
+ mounted(): void;
105
+ methods: {
106
+ show(): {
107
+ show(): any;
108
+ hide(): any;
109
+ };
110
+ hide(): {
111
+ show(): any;
112
+ hide(): any;
113
+ };
114
+ };
115
+ beforeDestroy(): void;
116
+ } | {
87
117
  props: {
88
118
  zIndex: {
89
119
  type: NumberConstructor;
@@ -98,6 +128,10 @@ declare const _default: import("vue").DefineComponent<{
98
128
  watch: {
99
129
  isVisible(newVal: any): void;
100
130
  };
131
+ methods: {
132
+ lockBodyScroll(): void;
133
+ unlockBodyScroll(): void;
134
+ };
101
135
  beforeDestroy(): void;
102
136
  }, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
103
137
  bottom: {
@@ -2,19 +2,19 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {
2
2
  toggleFullScreen: () => void;
3
3
  $emit: (event: "scroll" | "update:fullScreen" | "fullscreen-change", ...args: any[]) => void;
4
4
  zIndex: string | number;
5
+ lockBodyScroll: boolean;
5
6
  height: string | number;
6
7
  background: string;
7
8
  fullScreen: boolean;
8
- lockBodyScroll: boolean;
9
9
  padding: string | number;
10
10
  landscape: boolean;
11
11
  maxHeight?: string | number;
12
12
  $props: {
13
13
  readonly zIndex?: string | number;
14
+ readonly lockBodyScroll?: boolean;
14
15
  readonly height?: string | number;
15
16
  readonly background?: string;
16
17
  readonly fullScreen?: boolean;
17
- readonly lockBodyScroll?: boolean;
18
18
  readonly padding?: string | number;
19
19
  readonly landscape?: boolean;
20
20
  readonly maxHeight?: string | number;
@@ -325,6 +325,15 @@ declare const _default: import("vue").DefineComponent<{
325
325
  default: boolean;
326
326
  };
327
327
  };
328
+ } | {
329
+ watch: {
330
+ isVisible(newVal: any): void;
331
+ };
332
+ methods: {
333
+ lockBodyScroll(): void;
334
+ unlockBodyScroll(): void;
335
+ };
336
+ beforeDestroy(): void;
328
337
  } | {
329
338
  data(): {
330
339
  xysfe_actui_font_size: number;
@@ -67,6 +67,36 @@ declare const _default: import("vue").DefineComponent<{
67
67
  themeColor(): "#8c7fee" | "#f05a4b";
68
68
  layerIcon(): string;
69
69
  }, {}, {
70
+ model: {
71
+ prop: string;
72
+ event: string;
73
+ };
74
+ props: {
75
+ visible: {
76
+ type: BooleanConstructor;
77
+ default: boolean;
78
+ };
79
+ };
80
+ data: () => {
81
+ preOverflowValue: string;
82
+ isVisible: boolean;
83
+ };
84
+ watch: {
85
+ isVisible(newVal: any): void;
86
+ };
87
+ mounted(): void;
88
+ methods: {
89
+ show(): {
90
+ show(): any;
91
+ hide(): any;
92
+ };
93
+ hide(): {
94
+ show(): any;
95
+ hide(): any;
96
+ };
97
+ };
98
+ beforeDestroy(): void;
99
+ } | {
70
100
  props: {
71
101
  zIndex: {
72
102
  type: NumberConstructor;
@@ -81,6 +111,10 @@ declare const _default: import("vue").DefineComponent<{
81
111
  watch: {
82
112
  isVisible(newVal: any): void;
83
113
  };
114
+ methods: {
115
+ lockBodyScroll(): void;
116
+ unlockBodyScroll(): void;
117
+ };
84
118
  beforeDestroy(): void;
85
119
  }, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
86
120
  bottom: {
@@ -1,9 +1,43 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, any, {
2
2
  needVerifyImg: boolean;
3
3
  }, {}, {}, {
4
+ model: {
5
+ prop: string;
6
+ event: string;
7
+ };
8
+ props: {
9
+ visible: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ };
13
+ };
14
+ data: () => {
15
+ preOverflowValue: string;
16
+ isVisible: boolean;
17
+ };
4
18
  watch: {
5
19
  isVisible(newVal: any): void;
6
20
  };
21
+ mounted(): void;
22
+ methods: {
23
+ show(): {
24
+ show(): any;
25
+ hide(): any;
26
+ };
27
+ hide(): {
28
+ show(): any;
29
+ hide(): any;
30
+ };
31
+ };
32
+ beforeDestroy(): void;
33
+ } | {
34
+ watch: {
35
+ isVisible(newVal: any): void;
36
+ };
37
+ methods: {
38
+ lockBodyScroll(): void;
39
+ unlockBodyScroll(): void;
40
+ };
7
41
  beforeDestroy(): void;
8
42
  } | import("vue").DefineComponent<{}, any, {
9
43
  FixedToHtmlScrollY: string;
@@ -4,9 +4,43 @@ declare const _default: import("vue").DefineComponent<{
4
4
  default: boolean;
5
5
  };
6
6
  }, {}, {}, {}, {}, {
7
+ model: {
8
+ prop: string;
9
+ event: string;
10
+ };
11
+ props: {
12
+ visible: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ };
17
+ data: () => {
18
+ preOverflowValue: string;
19
+ isVisible: boolean;
20
+ };
7
21
  watch: {
8
22
  isVisible(newVal: any): void;
9
23
  };
24
+ mounted(): void;
25
+ methods: {
26
+ show(): {
27
+ show(): any;
28
+ hide(): any;
29
+ };
30
+ hide(): {
31
+ show(): any;
32
+ hide(): any;
33
+ };
34
+ };
35
+ beforeDestroy(): void;
36
+ } | {
37
+ watch: {
38
+ isVisible(newVal: any): void;
39
+ };
40
+ methods: {
41
+ lockBodyScroll(): void;
42
+ unlockBodyScroll(): void;
43
+ };
10
44
  beforeDestroy(): void;
11
45
  } | import("vue").DefineComponent<{}, any, {
12
46
  FixedToHtmlScrollY: string;
@@ -24,6 +24,36 @@ declare const _default: import("vue").DefineComponent<{
24
24
  textKey(): any;
25
25
  selectCount(): any;
26
26
  }, {}, {
27
+ model: {
28
+ prop: string;
29
+ event: string;
30
+ };
31
+ props: {
32
+ visible: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ };
37
+ data: () => {
38
+ preOverflowValue: string;
39
+ isVisible: boolean;
40
+ };
41
+ watch: {
42
+ isVisible(newVal: any): void;
43
+ };
44
+ mounted(): void;
45
+ methods: {
46
+ show(): {
47
+ show(): any;
48
+ hide(): any;
49
+ };
50
+ hide(): {
51
+ show(): any;
52
+ hide(): any;
53
+ };
54
+ };
55
+ beforeDestroy(): void;
56
+ } | {
27
57
  props: {
28
58
  zIndex: {
29
59
  type: NumberConstructor;
@@ -38,6 +68,10 @@ declare const _default: import("vue").DefineComponent<{
38
68
  watch: {
39
69
  isVisible(newVal: any): void;
40
70
  };
71
+ methods: {
72
+ lockBodyScroll(): void;
73
+ unlockBodyScroll(): void;
74
+ };
41
75
  beforeDestroy(): void;
42
76
  } | {
43
77
  props: {
@@ -26,9 +26,43 @@ declare const _default: import("vue").DefineComponent<{
26
26
  maskOpacity$: string;
27
27
  zIndex$: string;
28
28
  }, {}, {}, {
29
+ model: {
30
+ prop: string;
31
+ event: string;
32
+ };
33
+ props: {
34
+ visible: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ };
39
+ data: () => {
40
+ preOverflowValue: string;
41
+ isVisible: boolean;
42
+ };
29
43
  watch: {
30
44
  isVisible(newVal: any): void;
31
45
  };
46
+ mounted(): void;
47
+ methods: {
48
+ show(): {
49
+ show(): any;
50
+ hide(): any;
51
+ };
52
+ hide(): {
53
+ show(): any;
54
+ hide(): any;
55
+ };
56
+ };
57
+ beforeDestroy(): void;
58
+ } | {
59
+ watch: {
60
+ isVisible(newVal: any): void;
61
+ };
62
+ methods: {
63
+ lockBodyScroll(): void;
64
+ unlockBodyScroll(): void;
65
+ };
32
66
  beforeDestroy(): void;
33
67
  }, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
34
68
  type: {
@@ -6,6 +6,36 @@ declare const _default: import("vue").DefineComponent<{
6
6
  }, {}, {
7
7
  finalData: any;
8
8
  }, {}, {}, {
9
+ model: {
10
+ prop: string;
11
+ event: string;
12
+ };
13
+ props: {
14
+ visible: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ };
19
+ data: () => {
20
+ preOverflowValue: string;
21
+ isVisible: boolean;
22
+ };
23
+ watch: {
24
+ isVisible(newVal: any): void;
25
+ };
26
+ mounted(): void;
27
+ methods: {
28
+ show(): {
29
+ show(): any;
30
+ hide(): any;
31
+ };
32
+ hide(): {
33
+ show(): any;
34
+ hide(): any;
35
+ };
36
+ };
37
+ beforeDestroy(): void;
38
+ } | {
9
39
  props: {
10
40
  zIndex: {
11
41
  type: NumberConstructor;
@@ -20,6 +50,10 @@ declare const _default: import("vue").DefineComponent<{
20
50
  watch: {
21
51
  isVisible(newVal: any): void;
22
52
  };
53
+ methods: {
54
+ lockBodyScroll(): void;
55
+ unlockBodyScroll(): void;
56
+ };
23
57
  beforeDestroy(): void;
24
58
  } | {
25
59
  props: {
@@ -9,6 +9,36 @@ declare const _default: import("vue").DefineComponent<{
9
9
  selectedIndexes: any[];
10
10
  initialIndexes: any[];
11
11
  }, {}, {}, {
12
+ model: {
13
+ prop: string;
14
+ event: string;
15
+ };
16
+ props: {
17
+ visible: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ };
22
+ data: () => {
23
+ preOverflowValue: string;
24
+ isVisible: boolean;
25
+ };
26
+ watch: {
27
+ isVisible(newVal: any): void;
28
+ };
29
+ mounted(): void;
30
+ methods: {
31
+ show(): {
32
+ show(): any;
33
+ hide(): any;
34
+ };
35
+ hide(): {
36
+ show(): any;
37
+ hide(): any;
38
+ };
39
+ };
40
+ beforeDestroy(): void;
41
+ } | {
12
42
  props: {
13
43
  zIndex: {
14
44
  type: NumberConstructor;
@@ -23,6 +53,10 @@ declare const _default: import("vue").DefineComponent<{
23
53
  watch: {
24
54
  isVisible(newVal: any): void;
25
55
  };
56
+ methods: {
57
+ lockBodyScroll(): void;
58
+ unlockBodyScroll(): void;
59
+ };
26
60
  beforeDestroy(): void;
27
61
  } | {
28
62
  props: {
@@ -7,9 +7,43 @@ declare const _default: import("vue").DefineComponent<{}, any, {
7
7
  shareIconId(): string;
8
8
  _showDesc(): boolean;
9
9
  }, {}, {
10
+ model: {
11
+ prop: string;
12
+ event: string;
13
+ };
14
+ props: {
15
+ visible: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ };
20
+ data: () => {
21
+ preOverflowValue: string;
22
+ isVisible: boolean;
23
+ };
10
24
  watch: {
11
25
  isVisible(newVal: any): void;
12
26
  };
27
+ mounted(): void;
28
+ methods: {
29
+ show(): {
30
+ show(): any;
31
+ hide(): any;
32
+ };
33
+ hide(): {
34
+ show(): any;
35
+ hide(): any;
36
+ };
37
+ };
38
+ beforeDestroy(): void;
39
+ } | {
40
+ watch: {
41
+ isVisible(newVal: any): void;
42
+ };
43
+ methods: {
44
+ lockBodyScroll(): void;
45
+ unlockBodyScroll(): void;
46
+ };
13
47
  beforeDestroy(): void;
14
48
  } | {
15
49
  data(): {