@oinone/kunlun-vue-ui-antd 6.3.9 → 6.4.1

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 (71) hide show
  1. package/dist/oinone-kunlun-vue-ui-antd.css +1 -1
  2. package/dist/oinone-kunlun-vue-ui-antd.esm.js +2 -2
  3. package/dist/oinone-kunlun-vue-ui-antd.scss +1 -1
  4. package/dist/types/src/component/index.d.ts +1 -0
  5. package/dist/types/src/component/oio-button/oio-button.vue.d.ts +6 -0
  6. package/dist/types/src/component/oio-drawer/oio-drawer.vue.d.ts +43 -11
  7. package/dist/types/src/component/oio-gallery/oio-gallery.vue.d.ts +2 -0
  8. package/dist/types/src/component/oio-group/index.d.ts +1 -0
  9. package/dist/types/src/component/oio-group/oio-group.vue.d.ts +6 -0
  10. package/dist/types/src/component/oio-group/typing.d.ts +10 -0
  11. package/dist/types/src/component/oio-inner-popup/oio-inner-popup.vue.d.ts +0 -3
  12. package/dist/types/src/component/oio-input/oio-input-number.vue.d.ts +2 -1
  13. package/dist/types/src/component/oio-input/oio-input-password.vue.d.ts +6 -0
  14. package/dist/types/src/component/oio-input/oio-input-search.vue.d.ts +6 -0
  15. package/dist/types/src/component/oio-input/oio-input.vue.d.ts +7 -3
  16. package/dist/types/src/component/oio-list/index.d.ts +1 -0
  17. package/dist/types/src/component/oio-list/oio-list.vue.d.ts +80 -0
  18. package/dist/types/src/component/oio-modal/oio-modal.vue.d.ts +47 -10
  19. package/dist/types/src/component/oio-notification/index.d.ts +12 -1
  20. package/dist/types/src/component/oio-select/oio-select.vue.d.ts +14 -2
  21. package/dist/types/src/component/oio-tabs/oio-tabs.vue.d.ts +10 -3
  22. package/dist/types/src/component/oio-tooltip/oio-tooltip-help.vue.d.ts +0 -2
  23. package/dist/types/src/component/oio-tree/oio-tree.vue.d.ts +1 -1
  24. package/dist/types/src/index.d.ts +1 -0
  25. package/package.json +3 -3
  26. package/src/component/index.ts +1 -0
  27. package/src/component/oio-button/oio-button.vue +2 -2
  28. package/src/component/oio-button/style/a-button.scss +102 -13
  29. package/src/component/oio-checkbox/style/index.scss +21 -1
  30. package/src/component/oio-collapse/style/index.scss +2 -1
  31. package/src/component/oio-date-time-picker/style/index.scss +42 -41
  32. package/src/component/oio-date-time-range-picker/style/index.scss +5 -5
  33. package/src/component/oio-drawer/oio-drawer.vue +77 -18
  34. package/src/component/oio-drawer/style/index.scss +129 -10
  35. package/src/component/oio-drawer/style/parameters.scss +4 -0
  36. package/src/component/oio-form/style/index.scss +3 -2
  37. package/src/component/oio-gallery/oio-gallery.vue +2 -4
  38. package/src/component/oio-group/index.ts +1 -0
  39. package/src/component/oio-group/oio-group.vue +7 -1
  40. package/src/component/oio-group/style/index.scss +17 -4
  41. package/src/component/oio-group/typing.ts +10 -0
  42. package/src/component/oio-inner-popup/oio-inner-popup.vue +23 -12
  43. package/src/component/oio-inner-popup/style/index.scss +13 -25
  44. package/src/component/oio-input/oio-input-group.vue +1 -1
  45. package/src/component/oio-input/oio-input-number.vue +4 -1
  46. package/src/component/oio-input/oio-input-search.vue +6 -1
  47. package/src/component/oio-input/oio-input.vue +7 -12
  48. package/src/component/oio-list/index.ts +1 -0
  49. package/src/component/oio-list/oio-list-item.vue +17 -0
  50. package/src/component/oio-list/oio-list.vue +206 -0
  51. package/src/component/oio-list/style/index.scss +51 -0
  52. package/src/component/oio-list/style/parameters.scss +5 -0
  53. package/src/component/oio-modal/oio-modal.vue +89 -34
  54. package/src/component/oio-modal/style/index.scss +128 -72
  55. package/src/component/oio-modal/style/parameters.scss +4 -0
  56. package/src/component/oio-notification/index.ts +17 -2
  57. package/src/component/oio-pagination/style/index.scss +12 -11
  58. package/src/component/oio-radio/style/index.scss +38 -1
  59. package/src/component/oio-select/oio-select.vue +23 -10
  60. package/src/component/oio-select/style/a-select.scss +1 -1
  61. package/src/component/oio-select/style/index.scss +28 -11
  62. package/src/component/oio-spin/style/index.scss +1 -6
  63. package/src/component/oio-tabs/oio-tab.vue +1 -1
  64. package/src/component/oio-tabs/oio-tabs.vue +22 -2
  65. package/src/component/oio-tabs/style/index.scss +64 -0
  66. package/src/component/oio-tabs/use-tab-bar.ts +9 -10
  67. package/src/component/oio-tooltip/oio-tooltip-help.vue +1 -2
  68. package/src/component/oio-tree/oio-tree.vue +1 -2
  69. package/src/component/oio-tree/style/index.scss +4 -0
  70. package/src/index.ts +1 -0
  71. package/src/style/index.scss +1 -0
@@ -16,6 +16,7 @@ export * from './oio-gallery';
16
16
  export * from './oio-group';
17
17
  export * from './oio-inner-popup';
18
18
  export * from './oio-input';
19
+ export * from './oio-list';
19
20
  export * from './oio-modal';
20
21
  export * from './oio-notification';
21
22
  export * from './oio-pagination';
@@ -52,6 +52,9 @@ declare const _default: import("vue").DefineComponent<{
52
52
  type: import("vue").PropType<IconPlacement | "before" | "after">;
53
53
  default: IconPlacement;
54
54
  };
55
+ iconColor: {
56
+ type: StringConstructor;
57
+ };
55
58
  selected: {
56
59
  type: BooleanConstructor;
57
60
  default: undefined;
@@ -116,6 +119,9 @@ declare const _default: import("vue").DefineComponent<{
116
119
  type: import("vue").PropType<IconPlacement | "before" | "after">;
117
120
  default: IconPlacement;
118
121
  };
122
+ iconColor: {
123
+ type: StringConstructor;
124
+ };
119
125
  selected: {
120
126
  type: BooleanConstructor;
121
127
  default: undefined;
@@ -34,6 +34,9 @@ declare const _default: import("vue").DefineComponent<{
34
34
  type: BooleanConstructor;
35
35
  default: undefined;
36
36
  };
37
+ 'onUpdate:visible': {
38
+ type: import("vue").PropType<(val: boolean) => void>;
39
+ };
37
40
  closable: {
38
41
  type: BooleanConstructor;
39
42
  default: undefined;
@@ -42,6 +45,12 @@ declare const _default: import("vue").DefineComponent<{
42
45
  type: BooleanConstructor;
43
46
  default: undefined;
44
47
  };
48
+ displayAs: {
49
+ type: import("vue").PropType<"drawer" | "modal">;
50
+ };
51
+ 'onUpdate:displayAs': {
52
+ type: import("vue").PropType<(val: "drawer" | "modal") => void>;
53
+ };
45
54
  getTriggerContainer: {
46
55
  type: import("vue").PropType<(triggerNode: Node | HTMLElement) => Node | HTMLElement>;
47
56
  };
@@ -53,7 +62,6 @@ declare const _default: import("vue").DefineComponent<{
53
62
  };
54
63
  title: {
55
64
  type: StringConstructor;
56
- default: string;
57
65
  };
58
66
  help: {
59
67
  type: StringConstructor;
@@ -63,11 +71,9 @@ declare const _default: import("vue").DefineComponent<{
63
71
  };
64
72
  width: {
65
73
  type: import("vue").PropType<string | number>;
66
- default: import("@oinone/kunlun-vue-ui-common").DrawerWidth;
67
74
  };
68
75
  height: {
69
76
  type: import("vue").PropType<string | number>;
70
- default: import("@oinone/kunlun-vue-ui-common").DrawerHeight;
71
77
  };
72
78
  headerInvisible: {
73
79
  type: BooleanConstructor;
@@ -77,6 +83,14 @@ declare const _default: import("vue").DefineComponent<{
77
83
  type: BooleanConstructor;
78
84
  default: undefined;
79
85
  };
86
+ enabledFullScreen: {
87
+ type: BooleanConstructor;
88
+ default: boolean;
89
+ };
90
+ showPopupToggle: {
91
+ type: BooleanConstructor;
92
+ default: boolean;
93
+ };
80
94
  mask: {
81
95
  type: BooleanConstructor;
82
96
  default: undefined;
@@ -99,12 +113,16 @@ declare const _default: import("vue").DefineComponent<{
99
113
  placement: import("vue").ComputedRef<any>;
100
114
  width: import("vue").ComputedRef<any>;
101
115
  widthClassSuffix: import("vue").ComputedRef<string | undefined>;
102
- height: import("vue").ComputedRef<any>;
116
+ height: import("vue").ComputedRef<string | undefined>;
103
117
  heightClassSuffix: import("vue").ComputedRef<string | undefined>;
118
+ modalDrawerClassName: import("vue").ComputedRef<string[]>;
119
+ isFullScreen: import("vue").Ref<boolean>;
120
+ onFullSwitch: () => void;
121
+ onDisplayAsSwitch: () => void;
104
122
  data: import("vue").Ref<object>;
105
123
  enter: (event: PointerEvent) => void;
106
124
  cancel: (event: PointerEvent) => void;
107
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
125
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:visible" | "update:displayAs")[], "update:visible" | "update:displayAs", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
108
126
  data: {
109
127
  type: ObjectConstructor;
110
128
  default: {};
@@ -140,6 +158,9 @@ declare const _default: import("vue").DefineComponent<{
140
158
  type: BooleanConstructor;
141
159
  default: undefined;
142
160
  };
161
+ 'onUpdate:visible': {
162
+ type: import("vue").PropType<(val: boolean) => void>;
163
+ };
143
164
  closable: {
144
165
  type: BooleanConstructor;
145
166
  default: undefined;
@@ -148,6 +169,12 @@ declare const _default: import("vue").DefineComponent<{
148
169
  type: BooleanConstructor;
149
170
  default: undefined;
150
171
  };
172
+ displayAs: {
173
+ type: import("vue").PropType<"drawer" | "modal">;
174
+ };
175
+ 'onUpdate:displayAs': {
176
+ type: import("vue").PropType<(val: "drawer" | "modal") => void>;
177
+ };
151
178
  getTriggerContainer: {
152
179
  type: import("vue").PropType<(triggerNode: Node | HTMLElement) => Node | HTMLElement>;
153
180
  };
@@ -159,7 +186,6 @@ declare const _default: import("vue").DefineComponent<{
159
186
  };
160
187
  title: {
161
188
  type: StringConstructor;
162
- default: string;
163
189
  };
164
190
  help: {
165
191
  type: StringConstructor;
@@ -169,11 +195,9 @@ declare const _default: import("vue").DefineComponent<{
169
195
  };
170
196
  width: {
171
197
  type: import("vue").PropType<string | number>;
172
- default: import("@oinone/kunlun-vue-ui-common").DrawerWidth;
173
198
  };
174
199
  height: {
175
200
  type: import("vue").PropType<string | number>;
176
- default: import("@oinone/kunlun-vue-ui-common").DrawerHeight;
177
201
  };
178
202
  headerInvisible: {
179
203
  type: BooleanConstructor;
@@ -183,6 +207,14 @@ declare const _default: import("vue").DefineComponent<{
183
207
  type: BooleanConstructor;
184
208
  default: undefined;
185
209
  };
210
+ enabledFullScreen: {
211
+ type: BooleanConstructor;
212
+ default: boolean;
213
+ };
214
+ showPopupToggle: {
215
+ type: BooleanConstructor;
216
+ default: boolean;
217
+ };
186
218
  mask: {
187
219
  type: BooleanConstructor;
188
220
  default: undefined;
@@ -203,15 +235,13 @@ declare const _default: import("vue").DefineComponent<{
203
235
  };
204
236
  }>> & {
205
237
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
238
+ "onUpdate:displayAs"?: ((...args: any[]) => any) | undefined;
206
239
  }, {
207
240
  closable: boolean;
208
241
  destroyOnClose: boolean;
209
242
  maskClosable: boolean;
210
243
  mask: boolean;
211
- title: string;
212
244
  visible: boolean;
213
- width: string | number;
214
- height: string | number;
215
245
  zIndex: number;
216
246
  keyboard: boolean;
217
247
  data: Record<string, any>;
@@ -223,5 +253,7 @@ declare const _default: import("vue").DefineComponent<{
223
253
  cancelText: string;
224
254
  headerInvisible: boolean;
225
255
  footerInvisible: boolean;
256
+ enabledFullScreen: boolean;
257
+ showPopupToggle: boolean;
226
258
  }>;
227
259
  export default _default;
@@ -44,7 +44,9 @@ declare const _default: import("vue").DefineComponent<{
44
44
  type: import("vue").PropType<string | string[]>;
45
45
  };
46
46
  }, {
47
+ cols: import("vue").ComputedRef<number>;
47
48
  gutter: import("vue").ComputedRef<import("@oinone/kunlun-vue-ui-common").CommonGutterType>;
49
+ flexBasic: import("vue").ComputedRef<number>;
48
50
  flex: import("vue").ComputedRef<string>;
49
51
  rowStyle: import("vue").ComputedRef<CSSStyle>;
50
52
  colStyle: import("vue").ComputedRef<CSSStyle>;
@@ -1,2 +1,3 @@
1
+ export * from './typing';
1
2
  export { default as OioGroup } from './oio-group.vue';
2
3
  export { default as OioGroupHelp } from './oio-group-help.vue';
@@ -30,6 +30,9 @@ declare const _default: import("vue").DefineComponent<{
30
30
  type: (StringConstructor | BooleanConstructor)[];
31
31
  default: undefined;
32
32
  };
33
+ bizStyle: {
34
+ type: StringConstructor;
35
+ };
33
36
  description: {
34
37
  type: StringConstructor;
35
38
  };
@@ -81,6 +84,9 @@ declare const _default: import("vue").DefineComponent<{
81
84
  type: (StringConstructor | BooleanConstructor)[];
82
85
  default: undefined;
83
86
  };
87
+ bizStyle: {
88
+ type: StringConstructor;
89
+ };
84
90
  description: {
85
91
  type: StringConstructor;
86
92
  };
@@ -0,0 +1,10 @@
1
+ export declare enum GroupStyle {
2
+ /**
3
+ * 标题带竖线
4
+ */
5
+ style1 = "style1",
6
+ /**
7
+ * 简约
8
+ */
9
+ style2 = "style2"
10
+ }
@@ -63,7 +63,6 @@ declare const _default: import("vue").DefineComponent<{
63
63
  };
64
64
  title: {
65
65
  type: StringConstructor;
66
- default: string;
67
66
  };
68
67
  help: {
69
68
  type: StringConstructor;
@@ -152,7 +151,6 @@ declare const _default: import("vue").DefineComponent<{
152
151
  };
153
152
  title: {
154
153
  type: StringConstructor;
155
- default: string;
156
154
  };
157
155
  help: {
158
156
  type: StringConstructor;
@@ -187,7 +185,6 @@ declare const _default: import("vue").DefineComponent<{
187
185
  destroyOnClose: boolean;
188
186
  enterText: string;
189
187
  cancelText: string;
190
- title: string;
191
188
  placement: string;
192
189
  size: string | number;
193
190
  zIndex: number;
@@ -80,7 +80,7 @@ declare const _default: import("vue").DefineComponent<{
80
80
  fetchParserValue: (val: string | undefined) => string;
81
81
  focus: (event: Event) => void;
82
82
  blur: (event: Event) => void;
83
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "focus" | "blur")[], "update:value" | "focus" | "blur", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
83
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "change" | "focus" | "blur")[], "update:value" | "change" | "focus" | "blur", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
84
84
  value: {
85
85
  type: (NumberConstructor | StringConstructor)[];
86
86
  };
@@ -152,6 +152,7 @@ declare const _default: import("vue").DefineComponent<{
152
152
  };
153
153
  }>> & {
154
154
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
155
+ onChange?: ((...args: any[]) => any) | undefined;
155
156
  onFocus?: ((...args: any[]) => any) | undefined;
156
157
  onBlur?: ((...args: any[]) => any) | undefined;
157
158
  }, {
@@ -25,6 +25,9 @@ declare const _default: import("vue").DefineComponent<{
25
25
  value: {
26
26
  type: StringConstructor;
27
27
  };
28
+ 'onUpdate:value': {
29
+ type: import("vue").PropType<(value: string) => void>;
30
+ };
28
31
  defaultValue: {
29
32
  type: StringConstructor;
30
33
  };
@@ -75,6 +78,9 @@ declare const _default: import("vue").DefineComponent<{
75
78
  value: {
76
79
  type: StringConstructor;
77
80
  };
81
+ 'onUpdate:value': {
82
+ type: import("vue").PropType<(value: string) => void>;
83
+ };
78
84
  defaultValue: {
79
85
  type: StringConstructor;
80
86
  };
@@ -21,6 +21,9 @@ declare const _default: import("vue").DefineComponent<{
21
21
  value: {
22
22
  type: StringConstructor;
23
23
  };
24
+ 'onUpdate:value': {
25
+ type: import("vue").PropType<(value: string) => void>;
26
+ };
24
27
  defaultValue: {
25
28
  type: StringConstructor;
26
29
  };
@@ -70,6 +73,9 @@ declare const _default: import("vue").DefineComponent<{
70
73
  value: {
71
74
  type: StringConstructor;
72
75
  };
76
+ 'onUpdate:value': {
77
+ type: import("vue").PropType<(value: string) => void>;
78
+ };
73
79
  defaultValue: {
74
80
  type: StringConstructor;
75
81
  };
@@ -21,6 +21,9 @@ declare const _default: import("vue").DefineComponent<{
21
21
  value: {
22
22
  type: StringConstructor;
23
23
  };
24
+ 'onUpdate:value': {
25
+ type: import("vue").PropType<(value: string) => void>;
26
+ };
24
27
  defaultValue: {
25
28
  type: StringConstructor;
26
29
  };
@@ -47,8 +50,7 @@ declare const _default: import("vue").DefineComponent<{
47
50
  value: import("vue").WritableComputedRef<string | undefined>;
48
51
  autocomplete: import("vue").ComputedRef<string | undefined>;
49
52
  onUpdateValue: (val: string | undefined) => void;
50
- onPressEnter: (event: KeyboardEvent) => void;
51
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "press-enter")[], "update:value" | "press-enter", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
53
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
52
54
  showCount: {
53
55
  type: BooleanConstructor;
54
56
  default: boolean;
@@ -71,6 +73,9 @@ declare const _default: import("vue").DefineComponent<{
71
73
  value: {
72
74
  type: StringConstructor;
73
75
  };
76
+ 'onUpdate:value': {
77
+ type: import("vue").PropType<(value: string) => void>;
78
+ };
74
79
  defaultValue: {
75
80
  type: StringConstructor;
76
81
  };
@@ -94,7 +99,6 @@ declare const _default: import("vue").DefineComponent<{
94
99
  };
95
100
  }>> & {
96
101
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
97
- "onPress-enter"?: ((...args: any[]) => any) | undefined;
98
102
  }, {
99
103
  autocomplete: string | boolean;
100
104
  type: import("@oinone/kunlun-vue-ui-common").InputType | "text" | "password";
@@ -0,0 +1 @@
1
+ export { default as OioList } from './oio-list.vue';
@@ -0,0 +1,80 @@
1
+ import { OioListItem } from '@oinone/kunlun-shared';
2
+ import { SelectMode } from '@oinone/kunlun-vue-ui-common';
3
+ import { PropType } from 'vue';
4
+ declare const _default: import("vue").DefineComponent<{
5
+ list: {
6
+ type: PropType<OioListItem<unknown>[]>;
7
+ required: true;
8
+ };
9
+ showIcon: {
10
+ type: BooleanConstructor;
11
+ };
12
+ mode: {
13
+ type: PropType<SelectMode | "single" | "multiple">;
14
+ };
15
+ showCheckedAll: {
16
+ type: BooleanConstructor;
17
+ };
18
+ checkedAll: {
19
+ type: BooleanConstructor;
20
+ };
21
+ halfCheckedAll: {
22
+ type: BooleanConstructor;
23
+ };
24
+ checkedKeys: {
25
+ type: PropType<string[]>;
26
+ };
27
+ selectable: {
28
+ type: BooleanConstructor;
29
+ };
30
+ selectedKeys: {
31
+ type: PropType<string[]>;
32
+ };
33
+ }, {
34
+ selectedKeys: import("vue").WritableComputedRef<string[]>;
35
+ onChecked: (item: OioListItem, checked: boolean) => void;
36
+ onCheckedAll: (checked: boolean) => void;
37
+ onSelected: (e: MouseEvent, item: OioListItem) => void;
38
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:checkedAll" | "update:halfCheckedAll" | "update:selectedKeys" | "checked" | "selected")[], "checked" | "update:checkedAll" | "update:halfCheckedAll" | "update:selectedKeys" | "selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
39
+ list: {
40
+ type: PropType<OioListItem<unknown>[]>;
41
+ required: true;
42
+ };
43
+ showIcon: {
44
+ type: BooleanConstructor;
45
+ };
46
+ mode: {
47
+ type: PropType<SelectMode | "single" | "multiple">;
48
+ };
49
+ showCheckedAll: {
50
+ type: BooleanConstructor;
51
+ };
52
+ checkedAll: {
53
+ type: BooleanConstructor;
54
+ };
55
+ halfCheckedAll: {
56
+ type: BooleanConstructor;
57
+ };
58
+ checkedKeys: {
59
+ type: PropType<string[]>;
60
+ };
61
+ selectable: {
62
+ type: BooleanConstructor;
63
+ };
64
+ selectedKeys: {
65
+ type: PropType<string[]>;
66
+ };
67
+ }>> & {
68
+ "onUpdate:checkedAll"?: ((...args: any[]) => any) | undefined;
69
+ "onUpdate:halfCheckedAll"?: ((...args: any[]) => any) | undefined;
70
+ "onUpdate:selectedKeys"?: ((...args: any[]) => any) | undefined;
71
+ onChecked?: ((...args: any[]) => any) | undefined;
72
+ onSelected?: ((...args: any[]) => any) | undefined;
73
+ }, {
74
+ showIcon: boolean;
75
+ showCheckedAll: boolean;
76
+ checkedAll: boolean;
77
+ halfCheckedAll: boolean;
78
+ selectable: boolean;
79
+ }>;
80
+ export default _default;
@@ -35,6 +35,9 @@ declare const _default: import("vue").DefineComponent<{
35
35
  type: BooleanConstructor;
36
36
  default: undefined;
37
37
  };
38
+ 'onUpdate:visible': {
39
+ type: import("vue").PropType<(val: boolean) => void>;
40
+ };
38
41
  closable: {
39
42
  type: BooleanConstructor;
40
43
  default: undefined;
@@ -43,6 +46,12 @@ declare const _default: import("vue").DefineComponent<{
43
46
  type: BooleanConstructor;
44
47
  default: undefined;
45
48
  };
49
+ displayAs: {
50
+ type: import("vue").PropType<"drawer" | "modal">;
51
+ };
52
+ 'onUpdate:displayAs': {
53
+ type: import("vue").PropType<(val: "drawer" | "modal") => void>;
54
+ };
46
55
  destroyOnClose: {
47
56
  type: BooleanConstructor;
48
57
  default: undefined;
@@ -58,14 +67,12 @@ declare const _default: import("vue").DefineComponent<{
58
67
  };
59
68
  title: {
60
69
  type: StringConstructor;
61
- default: string;
62
70
  };
63
71
  help: {
64
72
  type: StringConstructor;
65
73
  };
66
74
  width: {
67
75
  type: import("vue").PropType<import("@oinone/kunlun-vue-ui-common").ModalWidthType>;
68
- default: import("@oinone/kunlun-vue-ui-common").ModalWidth;
69
76
  };
70
77
  height: {
71
78
  type: import("vue").PropType<import("@oinone/kunlun-vue-ui-common").ModalWidthType>;
@@ -78,6 +85,14 @@ declare const _default: import("vue").DefineComponent<{
78
85
  type: BooleanConstructor;
79
86
  default: undefined;
80
87
  };
88
+ enabledFullScreen: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
92
+ showPopupToggle: {
93
+ type: BooleanConstructor;
94
+ default: boolean;
95
+ };
81
96
  mask: {
82
97
  type: BooleanConstructor;
83
98
  default: undefined;
@@ -98,15 +113,19 @@ declare const _default: import("vue").DefineComponent<{
98
113
  };
99
114
  }, {
100
115
  id: import("vue").ComputedRef<string>;
101
- width: import("vue").ComputedRef<any>;
116
+ title: import("vue").ComputedRef<any>;
117
+ width: import("vue").ComputedRef<string | import("@oinone/kunlun-vue-ui-common").ModalWidth.small | import("@oinone/kunlun-vue-ui-common").ModalWidth.medium | import("@oinone/kunlun-vue-ui-common").ModalWidth.large | null | undefined>;
102
118
  widthClassSuffix: import("vue").ComputedRef<string | undefined>;
119
+ height: import("vue").ComputedRef<string | null | undefined>;
103
120
  heightClassSuffix: import("vue").ComputedRef<string | undefined>;
104
- customHeightClassSuffix: import("vue").ComputedRef<"custom" | null>;
105
- heightPx: import("vue").ComputedRef<string | undefined>;
121
+ isFullScreen: import("vue").Ref<boolean>;
122
+ drawerModalClassName: import("vue").ComputedRef<string[]>;
123
+ onFullSwitch: () => void;
124
+ onDisplayAsSwitch: () => void;
106
125
  data: import("vue").Ref<object>;
107
126
  enter: (event: PointerEvent) => void;
108
127
  cancel: (event: PointerEvent) => void;
109
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
128
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:visible" | "update:displayAs" | "enter" | "cancel")[], "update:visible" | "update:displayAs" | "enter" | "cancel", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
110
129
  data: {
111
130
  type: ObjectConstructor;
112
131
  default: {};
@@ -143,6 +162,9 @@ declare const _default: import("vue").DefineComponent<{
143
162
  type: BooleanConstructor;
144
163
  default: undefined;
145
164
  };
165
+ 'onUpdate:visible': {
166
+ type: import("vue").PropType<(val: boolean) => void>;
167
+ };
146
168
  closable: {
147
169
  type: BooleanConstructor;
148
170
  default: undefined;
@@ -151,6 +173,12 @@ declare const _default: import("vue").DefineComponent<{
151
173
  type: BooleanConstructor;
152
174
  default: undefined;
153
175
  };
176
+ displayAs: {
177
+ type: import("vue").PropType<"drawer" | "modal">;
178
+ };
179
+ 'onUpdate:displayAs': {
180
+ type: import("vue").PropType<(val: "drawer" | "modal") => void>;
181
+ };
154
182
  destroyOnClose: {
155
183
  type: BooleanConstructor;
156
184
  default: undefined;
@@ -166,14 +194,12 @@ declare const _default: import("vue").DefineComponent<{
166
194
  };
167
195
  title: {
168
196
  type: StringConstructor;
169
- default: string;
170
197
  };
171
198
  help: {
172
199
  type: StringConstructor;
173
200
  };
174
201
  width: {
175
202
  type: import("vue").PropType<import("@oinone/kunlun-vue-ui-common").ModalWidthType>;
176
- default: import("@oinone/kunlun-vue-ui-common").ModalWidth;
177
203
  };
178
204
  height: {
179
205
  type: import("vue").PropType<import("@oinone/kunlun-vue-ui-common").ModalWidthType>;
@@ -186,6 +212,14 @@ declare const _default: import("vue").DefineComponent<{
186
212
  type: BooleanConstructor;
187
213
  default: undefined;
188
214
  };
215
+ enabledFullScreen: {
216
+ type: BooleanConstructor;
217
+ default: boolean;
218
+ };
219
+ showPopupToggle: {
220
+ type: BooleanConstructor;
221
+ default: boolean;
222
+ };
189
223
  mask: {
190
224
  type: BooleanConstructor;
191
225
  default: undefined;
@@ -205,13 +239,14 @@ declare const _default: import("vue").DefineComponent<{
205
239
  type: ObjectConstructor;
206
240
  };
207
241
  }>> & {
242
+ onCancel?: ((...args: any[]) => any) | undefined;
208
243
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
244
+ "onUpdate:displayAs"?: ((...args: any[]) => any) | undefined;
245
+ onEnter?: ((...args: any[]) => any) | undefined;
209
246
  }, {
210
247
  visible: boolean;
211
248
  confirmLoading: boolean;
212
- title: string;
213
249
  closable: boolean;
214
- width: import("@oinone/kunlun-vue-ui-common").ModalWidthType;
215
250
  cancelText: string;
216
251
  maskClosable: boolean;
217
252
  destroyOnClose: boolean;
@@ -226,5 +261,7 @@ declare const _default: import("vue").DefineComponent<{
226
261
  enterText: string;
227
262
  headerInvisible: boolean;
228
263
  footerInvisible: boolean;
264
+ enabledFullScreen: boolean;
265
+ showPopupToggle: boolean;
229
266
  }>;
230
267
  export default _default;
@@ -18,7 +18,11 @@ export declare enum NotificationType {
18
18
  /**
19
19
  * 错误
20
20
  */
21
- error = "error"
21
+ error = "error",
22
+ /**
23
+ * 二次确认
24
+ */
25
+ confirm = "confirm"
22
26
  }
23
27
  /**
24
28
  * 消息提示
@@ -96,6 +100,13 @@ declare class Notification {
96
100
  * @param options 可选项
97
101
  */
98
102
  error(title: string, message?: string, options?: OioNotificationOptions): void;
103
+ /**
104
+ * 打开【二次确认】类型的消息通知框 {@link NotificationType.confirm}
105
+ * @param title 消息标题
106
+ * @param content 消息内容
107
+ * @param options 可选项
108
+ */
109
+ confirm(title: string, content: string, options?: OioNotificationOptions): void;
99
110
  }
100
111
  /**
101
112
  * 消息提示
@@ -1,4 +1,4 @@
1
- import { SelectProperties, SelectItem } from '@oinone/kunlun-vue-ui-common';
1
+ import { SelectItem, SelectProperties } from '@oinone/kunlun-vue-ui-common';
2
2
  declare const _default: import("vue").DefineComponent<{
3
3
  showSearch: {
4
4
  type: BooleanConstructor;
@@ -26,6 +26,10 @@ declare const _default: import("vue").DefineComponent<{
26
26
  dropdownClassName: {
27
27
  type: import("vue").PropType<string | string[]>;
28
28
  };
29
+ dropdownVisible: {
30
+ type: BooleanConstructor;
31
+ default: undefined;
32
+ };
29
33
  getTriggerContainer: {
30
34
  type: import("vue").PropType<(triggerNode: Node | HTMLElement) => Node | HTMLElement>;
31
35
  };
@@ -69,7 +73,9 @@ declare const _default: import("vue").DefineComponent<{
69
73
  internalProperties: import("vue").ComputedRef<SelectProperties>;
70
74
  internalOptions: import("vue").ComputedRef<SelectItem<unknown>[]>;
71
75
  internalValue: import("vue").ComputedRef<SelectItem<unknown> | undefined>;
72
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
76
+ onUpdateValue: (val: boolean) => void;
77
+ onUpdateDropdownVisible: (val: boolean) => void;
78
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "update:dropdown-visible")[], "update:value" | "update:dropdown-visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
73
79
  showSearch: {
74
80
  type: BooleanConstructor;
75
81
  default: boolean;
@@ -96,6 +102,10 @@ declare const _default: import("vue").DefineComponent<{
96
102
  dropdownClassName: {
97
103
  type: import("vue").PropType<string | string[]>;
98
104
  };
105
+ dropdownVisible: {
106
+ type: BooleanConstructor;
107
+ default: undefined;
108
+ };
99
109
  getTriggerContainer: {
100
110
  type: import("vue").PropType<(triggerNode: Node | HTMLElement) => Node | HTMLElement>;
101
111
  };
@@ -137,6 +147,7 @@ declare const _default: import("vue").DefineComponent<{
137
147
  };
138
148
  }>> & {
139
149
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
150
+ "onUpdate:dropdown-visible"?: ((...args: any[]) => any) | undefined;
140
151
  }, {
141
152
  value: string | SelectItem<unknown>;
142
153
  mode: "multiple" | import("@oinone/kunlun-vue-ui-common").SelectMode | "single";
@@ -147,6 +158,7 @@ declare const _default: import("vue").DefineComponent<{
147
158
  allowClear: boolean;
148
159
  filterOption: boolean | ((inputValue: any, option: any) => boolean);
149
160
  readonly: boolean;
161
+ dropdownVisible: boolean;
150
162
  lazyLoad: boolean;
151
163
  mappingOptions: boolean;
152
164
  }>;