@tekkare/auriga 0.1.4 → 0.1.5

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 (42) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/argAdvancedSearchBar.vue +2 -1
  3. package/dist/runtime/components/argChart.vue +663 -0
  4. package/dist/runtime/components/argChart.vue.d.ts +110 -0
  5. package/dist/runtime/components/argCheckbox.vue +153 -0
  6. package/dist/runtime/components/argCheckbox.vue.d.ts +58 -0
  7. package/dist/runtime/components/argComplexSelect.vue +115 -20
  8. package/dist/runtime/components/argComplexSelect.vue.d.ts +55 -0
  9. package/dist/runtime/components/argDropdownSelect.vue +23 -24
  10. package/dist/runtime/components/argDropdownSelect.vue.d.ts +18 -1
  11. package/dist/runtime/components/argFlag.vue +277 -0
  12. package/dist/runtime/components/argFlag.vue.d.ts +258 -0
  13. package/dist/runtime/components/argFooter.vue +41 -0
  14. package/dist/runtime/components/argFooter.vue.d.ts +2 -0
  15. package/dist/runtime/components/argHeader.vue +96 -0
  16. package/dist/runtime/components/argHeader.vue.d.ts +44 -0
  17. package/dist/runtime/components/argHeaderTabs.vue +6 -3
  18. package/dist/runtime/components/argInfoBar.vue +0 -0
  19. package/dist/runtime/components/argLineBreak.vue +21 -0
  20. package/dist/runtime/components/argLineBreak.vue.d.ts +2 -0
  21. package/dist/runtime/components/argMainLayout.vue +56 -0
  22. package/dist/runtime/components/argMainLayout.vue.d.ts +2 -0
  23. package/dist/runtime/components/argMenuItem.vue +73 -0
  24. package/dist/runtime/components/argMenuItem.vue.d.ts +36 -0
  25. package/dist/runtime/components/argMenuLink.vue +39 -0
  26. package/dist/runtime/components/argMenuLink.vue.d.ts +32 -0
  27. package/dist/runtime/components/argNavBar.vue +319 -0
  28. package/dist/runtime/components/argNavBar.vue.d.ts +35 -0
  29. package/dist/runtime/components/argNote.vue +87 -0
  30. package/dist/runtime/components/argNote.vue.d.ts +42 -0
  31. package/dist/runtime/components/argSidebar.vue +114 -0
  32. package/dist/runtime/components/argSidebar.vue.d.ts +33 -0
  33. package/dist/runtime/components/argSimpleLabel.vue +57 -14
  34. package/dist/runtime/components/argSimpleLabel.vue.d.ts +18 -0
  35. package/dist/runtime/components/argStyle.vue +11 -1
  36. package/dist/runtime/components/argSubMenu.vue +67 -0
  37. package/dist/runtime/components/argSubMenu.vue.d.ts +30 -0
  38. package/dist/runtime/components/argSwitch.vue +153 -0
  39. package/dist/runtime/components/argSwitch.vue.d.ts +37 -0
  40. package/dist/runtime/components/argTable.vue.d.ts +3 -3
  41. package/dist/runtime/components/argTooltip.vue +1 -1
  42. package/package.json +6 -3
@@ -0,0 +1,110 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ options: {
3
+ type: ObjectConstructor;
4
+ required: false;
5
+ default(): {};
6
+ };
7
+ series: {
8
+ type: ArrayConstructor;
9
+ required: true;
10
+ };
11
+ type: {
12
+ type: StringConstructor;
13
+ required: true;
14
+ };
15
+ height: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ width: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ categories: {
24
+ type: ArrayConstructor;
25
+ required: true;
26
+ };
27
+ colors: {
28
+ type: ArrayConstructor;
29
+ required: false;
30
+ default: () => string[];
31
+ };
32
+ withPercentages: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ compactValues: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ french: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ hideLegend: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ }, {
49
+ percentage: (partialValue: any, totalValue: any) => number;
50
+ chartKey: import("vue").Ref<number>;
51
+ chartType: import("vue").ComputedRef<string>;
52
+ chartOptions: import("vue").ComputedRef<Record<string, any>>;
53
+ }, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
54
+ options: {
55
+ type: ObjectConstructor;
56
+ required: false;
57
+ default(): {};
58
+ };
59
+ series: {
60
+ type: ArrayConstructor;
61
+ required: true;
62
+ };
63
+ type: {
64
+ type: StringConstructor;
65
+ required: true;
66
+ };
67
+ height: {
68
+ type: StringConstructor;
69
+ default: string;
70
+ };
71
+ width: {
72
+ type: StringConstructor;
73
+ default: string;
74
+ };
75
+ categories: {
76
+ type: ArrayConstructor;
77
+ required: true;
78
+ };
79
+ colors: {
80
+ type: ArrayConstructor;
81
+ required: false;
82
+ default: () => string[];
83
+ };
84
+ withPercentages: {
85
+ type: BooleanConstructor;
86
+ default: boolean;
87
+ };
88
+ compactValues: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
92
+ french: {
93
+ type: BooleanConstructor;
94
+ default: boolean;
95
+ };
96
+ hideLegend: {
97
+ type: BooleanConstructor;
98
+ default: boolean;
99
+ };
100
+ }>>, {
101
+ options: Record<string, any>;
102
+ width: string;
103
+ height: string;
104
+ colors: unknown[];
105
+ withPercentages: boolean;
106
+ compactValues: boolean;
107
+ french: boolean;
108
+ hideLegend: boolean;
109
+ }, {}>;
110
+ export default _default;
@@ -0,0 +1,153 @@
1
+ <template>
2
+ <div
3
+ class="filter_box"
4
+ @focus="selectOption = true"
5
+ @focusout="selectOption = false"
6
+ tabindex="0"
7
+ :class="selectOption ? 'open' : ''"
8
+ >
9
+ <div @click="selectFilter()">
10
+ <arg-icon
11
+ :name="iconFilter"
12
+ :class="[
13
+ 'flex',
14
+ returnValue ? 'filter_icon_check' : 'filter_icon_select',
15
+ disable ? 'disable' : 'filter_icon_select',
16
+ ]"
17
+ size="24"
18
+ :color="iconColor"
19
+ />
20
+ </div>
21
+ <p>{{ filterTitle }}</p>
22
+ <arg-tooltip
23
+ v-if="infoIcon"
24
+ :tooltip-text="tooltipText"
25
+ class="filter_tooltip flex"
26
+ >
27
+ <arg-icon name="Info" color="var(--cool-grey)" size="16" />
28
+ </arg-tooltip>
29
+ </div>
30
+ </template>
31
+
32
+ <script>
33
+ import argIcon from "./argIcon.vue";
34
+ import {
35
+ ref,
36
+ computed,
37
+ watch,
38
+ defineComponent
39
+ } from "vue";
40
+ export default defineComponent({
41
+ name: "argCheckbox",
42
+ components: { argIcon },
43
+ props: {
44
+ filterTitle: {
45
+ type: String,
46
+ required: true
47
+ },
48
+ tooltipText: {
49
+ type: String,
50
+ default: ""
51
+ },
52
+ infoIcon: {
53
+ type: Boolean,
54
+ default: false
55
+ },
56
+ defaultSelect: {
57
+ type: Boolean,
58
+ default: false
59
+ },
60
+ disable: {
61
+ type: Boolean,
62
+ default: false
63
+ }
64
+ },
65
+ emits: ["handleClick", "update:Click"],
66
+ setup(props, { emit }) {
67
+ const returnValue = ref(false);
68
+ const selectOption = ref(false);
69
+ returnValue.value = props.defaultSelect;
70
+ watch(
71
+ () => props.defaultSelect,
72
+ (new_default_select) => {
73
+ returnValue.value = new_default_select;
74
+ }
75
+ );
76
+ const iconFilter = computed(() => {
77
+ if (props.disable) {
78
+ return "MinusSquareDisable";
79
+ } else {
80
+ if (returnValue.value === true) {
81
+ return "CheckSquareFill";
82
+ } else
83
+ return "Square";
84
+ }
85
+ });
86
+ const iconColor = computed(() => {
87
+ if (props.disable) {
88
+ return "var(--independence)";
89
+ } else {
90
+ if (returnValue.value === true) {
91
+ return "var(--accent)";
92
+ } else
93
+ return "var(--wild-blue-yonder)";
94
+ }
95
+ });
96
+ function selectFilter() {
97
+ if (!props.disable) {
98
+ returnValue.value = !returnValue.value;
99
+ emit("handleClick", returnValue);
100
+ emit("update:Click", returnValue);
101
+ }
102
+ }
103
+ return {
104
+ iconFilter,
105
+ iconColor,
106
+ selectFilter,
107
+ selectOption,
108
+ returnValue
109
+ };
110
+ }
111
+ });
112
+ </script>
113
+ <style scoped>
114
+ .filter_box {
115
+ background: var(--pure-white);
116
+ display: flex;
117
+ flex-direction: row;
118
+ align-items: center;
119
+ padding: 0px 12px;
120
+ gap: 8px;
121
+ border: 1px solid var(--dividers);
122
+ border-radius: 8px;
123
+ font-weight: 700;
124
+ font-size: 14px;
125
+ line-height: 16px;
126
+ height: 40px;
127
+ width: 228px;
128
+ }
129
+ .filter_tooltip {
130
+ margin-left: auto !important;
131
+ }
132
+ .filter_icon_select,
133
+ .filter_icon_check {
134
+ cursor: pointer;
135
+ }
136
+ .filter_icon_select:hover {
137
+ color: var(--primary) !important;
138
+ }
139
+ .filter_icon_check:hover {
140
+ color: var(--primary-hover2) !important;
141
+ }
142
+ .disable {
143
+ cursor: initial;
144
+ }
145
+
146
+ .disable:hover {
147
+ color: var(--independence) !important;
148
+ }
149
+
150
+ .flex {
151
+ display: flex;
152
+ }
153
+ </style>
@@ -0,0 +1,58 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ filterTitle: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ tooltipText: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ infoIcon: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ defaultSelect: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ disable: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ }, {
23
+ iconFilter: import("vue").ComputedRef<"MinusSquareDisable" | "CheckSquareFill" | "Square">;
24
+ iconColor: import("vue").ComputedRef<"var(--wild-blue-yonder)" | "var(--independence)" | "var(--accent)">;
25
+ selectFilter: () => void;
26
+ selectOption: import("vue").Ref<boolean>;
27
+ returnValue: import("vue").Ref<boolean>;
28
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleClick" | "update:Click")[], "handleClick" | "update:Click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
29
+ filterTitle: {
30
+ type: StringConstructor;
31
+ required: true;
32
+ };
33
+ tooltipText: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ infoIcon: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ defaultSelect: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ disable: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ }>> & {
50
+ onHandleClick?: ((...args: any[]) => any) | undefined;
51
+ "onUpdate:Click"?: ((...args: any[]) => any) | undefined;
52
+ }, {
53
+ disable: boolean;
54
+ tooltipText: string;
55
+ infoIcon: boolean;
56
+ defaultSelect: boolean;
57
+ }, {}>;
58
+ export default _default;
@@ -1,14 +1,28 @@
1
1
  <template>
2
2
  <div>
3
3
  <!-- Simple select -->
4
- <arg-simple-label
5
- :disabled="disabled"
6
- id="simple-select-complex"
7
- @click.stop="changeDisplay()"
8
- :class="isDisplay ? 'open' : ''"
9
- >
10
- <slot></slot>
11
- </arg-simple-label>
4
+ <div class="oip_select_display">
5
+ <p class="oip_filter_label">{{ complex_label }}</p>
6
+ <arg-simple-label
7
+ :disabled="disabled"
8
+ :show_amount="show_amount"
9
+ :amount_value="del_table.length"
10
+ id="simple-select-complex"
11
+ @click="changeDisplay()"
12
+ :class="isDisplay ? 'open' : ''"
13
+ >
14
+ <span
15
+ :class="[
16
+ show_amount === true ? 'oip_crop big' : 'oip_crop small',
17
+ del_table.map((elem) => elem).length > 0 ? '' : 'oip_empty_select',
18
+ ]"
19
+ >
20
+ {{
21
+ del_table.map((elem) => elem).length > 0 ? getAllSelect : empty_msg
22
+ }}
23
+ </span>
24
+ </arg-simple-label>
25
+ </div>
12
26
  <!-- Complex select -->
13
27
  <div
14
28
  :style="isDisplay === false ? 'display : none' : ''"
@@ -44,6 +58,7 @@
44
58
  </div>
45
59
  </div>
46
60
  </div>
61
+ <p v-if="reachMax" class="warning_text">{{ reach_max_msg }}</p>
47
62
  <div class="oip_select_complex_all_selection">
48
63
  <div class="oip_select_complex_add_selection">
49
64
  <div class="oip_select_complex_all_title">
@@ -55,6 +70,12 @@
55
70
  >
56
71
  Select all
57
72
  </div>
73
+ <div
74
+ v-if="max_amount !== null"
75
+ class="oip_select_complex_all_tittle_right"
76
+ >
77
+ Maximum selection: {{ max_amount }} items
78
+ </div>
58
79
  </div>
59
80
  <div class="oip_search_container">
60
81
  <arg-icon size="20" name="MagnifyingGlass"></arg-icon>
@@ -75,7 +96,7 @@
75
96
  ></arg-icon>
76
97
  </div>
77
98
  <!-- List -->
78
- <div class="oip_select_complex_selection_container">
99
+ <div v-if="!loading" class="oip_select_complex_selection_container">
79
100
  <div
80
101
  class="oip_select_complex_selection_loop add"
81
102
  v-for="(element, index) of filterNameAdd"
@@ -86,13 +107,29 @@
86
107
  >
87
108
  <arg-icon
88
109
  size="16"
89
- :name="hoverAdd === index ? 'PlusCircleFill' : 'PlusCircle'"
110
+ :class="
111
+ max_amount !== null && del_table.length >= max_amount
112
+ ? 'disable'
113
+ : ''
114
+ "
115
+ :name="
116
+ hoverAdd === index ||
117
+ (max_amount !== null &&
118
+ del_table.length >= max_amount &&
119
+ !del_table.includes(element) &&
120
+ !del_table.includes(index))
121
+ ? 'PlusCircleFill'
122
+ : 'PlusCircle'
123
+ "
90
124
  ></arg-icon>
91
125
  <div class="oip_select_complex_selection_loop_name">
92
126
  {{ element }}
93
127
  </div>
94
128
  </div>
95
129
  </div>
130
+ <div v-else class="oip_select_complex_selection_container">
131
+ <arg-data-loader />
132
+ </div>
96
133
  </div>
97
134
  <div class="oip_select_complex_del_selection">
98
135
  <div class="oip_select_complex_all_title">
@@ -176,7 +213,16 @@ export default defineComponent({
176
213
  default: () => []
177
214
  },
178
215
  show_select_all: { type: Boolean, default: false },
179
- max_result: { type: Number, default: 500 }
216
+ max_result: { type: Number, default: 500 },
217
+ show_amount: { type: Boolean, default: true },
218
+ max_amount: { type: Number, default: null },
219
+ reach_max_msg: {
220
+ type: String,
221
+ default: "You've reached the maximum amount of items you can select"
222
+ },
223
+ loading: { type: Boolean, default: false },
224
+ empty_msg: { type: String, default: "No selection" },
225
+ complex_label: { type: String, required: true }
180
226
  },
181
227
  emits: ["changeElement", "changeAddInputValue", "update:Selection"],
182
228
  setup(props, { emit }) {
@@ -190,6 +236,7 @@ export default defineComponent({
190
236
  const uid = ref(0);
191
237
  const hoverAdd = ref(null);
192
238
  const hoverRemove = ref(null);
239
+ const reachMax = ref(false);
193
240
  del_table.value = Object.assign([], [...new Set(props.already_selected)]);
194
241
  add_table.value = Object.assign(
195
242
  [],
@@ -254,6 +301,18 @@ export default defineComponent({
254
301
  }
255
302
  }
256
303
  );
304
+ const getAllSelect = computed(() => {
305
+ const fullSelect = del_table.value.map((elem) => elem);
306
+ let filterFill = ``;
307
+ for (let i = 0; i < fullSelect.length; i++) {
308
+ if (i === 0) {
309
+ filterFill = fullSelect[i];
310
+ } else {
311
+ filterFill = `${filterFill}, ${fullSelect[i]}`;
312
+ }
313
+ }
314
+ return filterFill;
315
+ });
257
316
  const filterNameAdd = computed(() => {
258
317
  if (searchNameAdd.value !== null) {
259
318
  return add_table.value.filter(
@@ -303,19 +362,25 @@ export default defineComponent({
303
362
  }
304
363
  function add_element(element) {
305
364
  smart_selection_selected.value = void 0;
306
- del_table.value.push(element);
307
- add_table.value.splice(add_table.value.indexOf(element), 1);
308
- if (!props.need_apply) {
309
- apply_function();
310
- }
365
+ if (props.max_amount === null || props.max_amount !== null && del_table.value.length < props.max_amount) {
366
+ del_table.value.push(element);
367
+ add_table.value.splice(add_table.value.indexOf(element), 1);
368
+ if (!props.need_apply) {
369
+ apply_function();
370
+ }
371
+ } else
372
+ reachMax.value = true;
311
373
  }
312
374
  function del_element(element) {
313
375
  smart_selection_selected.value = void 0;
314
376
  add_table.value.push(element);
315
- del_table.value.splice(del_table.value.indexOf(element, 1));
377
+ del_table.value.splice(del_table.value.indexOf(element), 1);
316
378
  if (!props.need_apply) {
317
379
  apply_function();
318
380
  }
381
+ if (reachMax.value === true && del_table.value.length < props.max_amount) {
382
+ reachMax.value = false;
383
+ }
319
384
  }
320
385
  function add_all_element() {
321
386
  smart_selection_selected.value = void 0;
@@ -424,7 +489,9 @@ export default defineComponent({
424
489
  apply_function,
425
490
  smart_selection_select_item,
426
491
  cancel_function,
427
- change_save_table
492
+ change_save_table,
493
+ getAllSelect,
494
+ reachMax
428
495
  };
429
496
  }
430
497
  });
@@ -443,6 +510,13 @@ export default defineComponent({
443
510
  border-right: 1px solid var(--dividers);
444
511
  }
445
512
 
513
+ .oip_select_complex_all_tittle_right {
514
+ font-weight: 500;
515
+ font-size: 12px;
516
+ line-height: 22px;
517
+ vertical-align: bottom;
518
+ }
519
+
446
520
  .oip_select_complex_all_tittle_right.add {
447
521
  font-weight: 500;
448
522
  font-size: 12px;
@@ -451,6 +525,9 @@ export default defineComponent({
451
525
  color: var(--primary);
452
526
  cursor: pointer;
453
527
  }
528
+ .oip_select_complex_selection_loop.add svg.disable {
529
+ color: var(--cool-grey) !important;
530
+ }
454
531
 
455
532
  .oip_select_complex_all_tittle_right.del {
456
533
  font-weight: 500;
@@ -544,14 +621,32 @@ export default defineComponent({
544
621
  .oip_tag.is_disable {
545
622
  cursor: pointer !important;
546
623
  }
624
+ </style>
547
625
 
626
+ <style scoped>
548
627
  .oip_select_complex_selection_loop > svg.add {
549
628
  width: 19px;
550
629
  height: 19px;
551
630
  margin: -2px;
552
631
  }
553
632
 
554
- h1 {
555
- margin: 0px !important;
633
+ .warning_text {
634
+ color: var(--system-alert);
635
+ margin-bottom: 12px;
636
+ font-weight: 500;
637
+ font-size: 14px;
638
+ line-height: 22px;
639
+ padding: 0px 16px;
640
+ }
641
+ .oip_crop {
642
+ overflow: hidden;
643
+ white-space: nowrap;
644
+ text-overflow: ellipsis;
645
+ }
646
+ .oip_crop.big {
647
+ width: 85% !important;
648
+ }
649
+ .oip_crop.small {
650
+ width: 98% !important;
556
651
  }
557
652
  </style>
@@ -65,6 +65,30 @@ declare const _default: import("vue").DefineComponent<{
65
65
  type: NumberConstructor;
66
66
  default: number;
67
67
  };
68
+ show_amount: {
69
+ type: BooleanConstructor;
70
+ default: boolean;
71
+ };
72
+ max_amount: {
73
+ type: NumberConstructor;
74
+ default: null;
75
+ };
76
+ reach_max_msg: {
77
+ type: StringConstructor;
78
+ default: string;
79
+ };
80
+ loading: {
81
+ type: BooleanConstructor;
82
+ default: boolean;
83
+ };
84
+ empty_msg: {
85
+ type: StringConstructor;
86
+ default: string;
87
+ };
88
+ complex_label: {
89
+ type: StringConstructor;
90
+ required: true;
91
+ };
68
92
  }, {
69
93
  add_table: import("vue").Ref<string[]>;
70
94
  del_table: import("vue").Ref<string[]>;
@@ -93,6 +117,8 @@ declare const _default: import("vue").DefineComponent<{
93
117
  smart_selection_select_item: (selected: any) => void;
94
118
  cancel_function: () => void;
95
119
  change_save_table: () => void;
120
+ getAllSelect: import("vue").ComputedRef<string>;
121
+ reachMax: import("vue").Ref<boolean>;
96
122
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("changeElement" | "changeAddInputValue" | "update:Selection")[], "changeElement" | "changeAddInputValue" | "update:Selection", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
97
123
  element_table: {
98
124
  type: {
@@ -160,11 +186,36 @@ declare const _default: import("vue").DefineComponent<{
160
186
  type: NumberConstructor;
161
187
  default: number;
162
188
  };
189
+ show_amount: {
190
+ type: BooleanConstructor;
191
+ default: boolean;
192
+ };
193
+ max_amount: {
194
+ type: NumberConstructor;
195
+ default: null;
196
+ };
197
+ reach_max_msg: {
198
+ type: StringConstructor;
199
+ default: string;
200
+ };
201
+ loading: {
202
+ type: BooleanConstructor;
203
+ default: boolean;
204
+ };
205
+ empty_msg: {
206
+ type: StringConstructor;
207
+ default: string;
208
+ };
209
+ complex_label: {
210
+ type: StringConstructor;
211
+ required: true;
212
+ };
163
213
  }>> & {
164
214
  onChangeElement?: ((...args: any[]) => any) | undefined;
165
215
  onChangeAddInputValue?: ((...args: any[]) => any) | undefined;
166
216
  "onUpdate:Selection"?: ((...args: any[]) => any) | undefined;
167
217
  }, {
218
+ loading: boolean;
168
219
  search_placeholder: string;
169
220
  need_apply: boolean;
170
221
  return_value: boolean;
@@ -172,5 +223,9 @@ declare const _default: import("vue").DefineComponent<{
172
223
  already_selected: string[];
173
224
  show_select_all: boolean;
174
225
  max_result: number;
226
+ show_amount: boolean;
227
+ max_amount: number;
228
+ reach_max_msg: string;
229
+ empty_msg: string;
175
230
  }, {}>;
176
231
  export default _default;