bm-admin-ui 1.0.70-alpha → 1.0.72-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.
Files changed (37) hide show
  1. package/es/components/button/index.d.ts +1 -1
  2. package/es/components/button/src/button.vue.d.ts +1 -1
  3. package/es/components/editor/index.d.ts +1 -1
  4. package/es/components/editor/src/editor.vue.d.ts +1 -1
  5. package/es/components/form-create/index.js +31 -30
  6. package/es/components/form-designer/index.js +26 -7
  7. package/es/components/search-filter/index.d.ts +1 -1
  8. package/es/components/search-filter/src/search-filter.vue.d.ts +1 -1
  9. package/es/components/select-all/index.d.ts +1 -1
  10. package/es/components/select-all/src/selectAll.vue.d.ts +1 -1
  11. package/es/components/staffs-selector/index.d.ts +1 -1
  12. package/es/components/staffs-selector/src/staffs-selector.vue.d.ts +1 -1
  13. package/lib/components/button/index.d.ts +1 -1
  14. package/lib/components/button/src/button.vue.d.ts +1 -1
  15. package/lib/components/editor/index.d.ts +1 -1
  16. package/lib/components/editor/src/editor.vue.d.ts +1 -1
  17. package/lib/components/form-create/index.js +31 -30
  18. package/lib/components/form-designer/index.js +25 -6
  19. package/lib/components/search-filter/index.d.ts +1 -1
  20. package/lib/components/search-filter/src/search-filter.vue.d.ts +1 -1
  21. package/lib/components/select-all/index.d.ts +1 -1
  22. package/lib/components/select-all/src/selectAll.vue.d.ts +1 -1
  23. package/lib/components/staffs-selector/index.d.ts +1 -1
  24. package/lib/components/staffs-selector/src/staffs-selector.vue.d.ts +1 -1
  25. package/package.json +1 -1
  26. package/theme-chalk/form-designer.css +1 -1
  27. package/theme-chalk/index.css +1 -1
  28. package/types/components/button/index.d.ts +1 -1
  29. package/types/components/button/src/button.vue.d.ts +1 -1
  30. package/types/components/editor/index.d.ts +1 -1
  31. package/types/components/editor/src/editor.vue.d.ts +1 -1
  32. package/types/components/search-filter/index.d.ts +1 -1
  33. package/types/components/search-filter/src/search-filter.vue.d.ts +1 -1
  34. package/types/components/select-all/index.d.ts +1 -1
  35. package/types/components/select-all/src/selectAll.vue.d.ts +1 -1
  36. package/types/components/staffs-selector/index.d.ts +1 -1
  37. package/types/components/staffs-selector/src/staffs-selector.vue.d.ts +1 -1
@@ -78,7 +78,7 @@ declare const BmButton: import("bm-admin-ui/es/utils/with-install").SFCWithInsta
78
78
  onMousedown: {
79
79
  type: import("vue").PropType<(event: MouseEvent) => void>;
80
80
  };
81
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "loading" | "htmlType" | "ghost" | "block" | "danger">;
81
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "htmlType" | "loading" | "disabled" | "ghost" | "block" | "danger">;
82
82
  $attrs: {
83
83
  [x: string]: unknown;
84
84
  };
@@ -80,7 +80,7 @@ declare const _default: import("vue").DefineComponent<{
80
80
  onMousedown: {
81
81
  type: import("vue").PropType<(event: MouseEvent) => void>;
82
82
  };
83
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "loading" | "htmlType" | "ghost" | "block" | "danger">;
83
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "htmlType" | "loading" | "disabled" | "ghost" | "block" | "danger">;
84
84
  $attrs: {
85
85
  [x: string]: unknown;
86
86
  };
@@ -294,8 +294,8 @@ declare const BmEditor: import("bm-admin-ui/es/utils/with-install").SFCWithInsta
294
294
  onReady?: ((...args: any[]) => any) | undefined;
295
295
  onGetCount?: ((...args: any[]) => any) | undefined;
296
296
  }, {
297
- value: string;
298
297
  disabled: boolean;
298
+ value: string;
299
299
  options: {
300
300
  [key: string]: any;
301
301
  };
@@ -294,8 +294,8 @@ declare const _default: import("vue").DefineComponent<{
294
294
  onReady?: ((...args: any[]) => any) | undefined;
295
295
  onGetCount?: ((...args: any[]) => any) | undefined;
296
296
  }, {
297
- value: string;
298
297
  disabled: boolean;
298
+ value: string;
299
299
  options: {
300
300
  [key: string]: any;
301
301
  };
@@ -291,8 +291,8 @@ function handleRadioRule(rule) {
291
291
  rule.component = RadioWidget;
292
292
  rule.inject = true;
293
293
  rule.on = {
294
- change({ self }, value) {
295
- self.value = value;
294
+ change({ self, api }, value) {
295
+ api.form[self.field] = value;
296
296
  },
297
297
  };
298
298
  }
@@ -690,7 +690,7 @@ var picture = {
690
690
  on: {
691
691
  update(inject, list) {
692
692
  const rule = inject.self;
693
- rule.value = list;
693
+ inject.api.form[rule.field] = list;
694
694
  nextTick(() => {
695
695
  inject.api.validateField(rule.field);
696
696
  });
@@ -738,7 +738,7 @@ var picture = {
738
738
  on: {
739
739
  update(inject, list) {
740
740
  const rule = inject.self;
741
- rule.value = list;
741
+ inject.api.form[rule.field] = list;
742
742
  nextTick(() => {
743
743
  inject.api.validateField(rule.field);
744
744
  });
@@ -786,7 +786,7 @@ var file = {
786
786
  on: {
787
787
  update(inject, list) {
788
788
  const rule = inject.self;
789
- rule.value = list;
789
+ inject.api.form[rule.field] = list;
790
790
  nextTick(() => {
791
791
  inject.api.validateField(rule.field);
792
792
  });
@@ -827,7 +827,7 @@ var file = {
827
827
  on: {
828
828
  update(inject, list) {
829
829
  const rule = inject.self;
830
- rule.value = list;
830
+ inject.api.form[rule.field] = list;
831
831
  nextTick(() => {
832
832
  inject.api.validateField(rule.field);
833
833
  });
@@ -944,8 +944,8 @@ var people = {
944
944
  on: {
945
945
  change(inject, list) {
946
946
  const rule = inject.self;
947
- rule.value = list;
948
947
  rule.props.defaultSelected = list;
948
+ inject.api.form[rule.field] = list;
949
949
  inject.api.validateField(rule.field, () => {
950
950
  if (list.length) {
951
951
  inject.api.clearValidateState(rule.field);
@@ -984,8 +984,8 @@ var people = {
984
984
  on: {
985
985
  change(inject, list) {
986
986
  const rule = inject.self;
987
- rule.value = list;
988
987
  rule.props.defaultSelected = list;
988
+ inject.api.form[rule.field] = list;
989
989
  inject.api.validateField(rule.field, () => {
990
990
  if (list.length) {
991
991
  inject.api.clearValidateState(rule.field);
@@ -19385,11 +19385,6 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
19385
19385
  })
19386
19386
  );
19387
19387
  if (childRules.length) {
19388
- if (props.disabled?.includes?.("editTable")) {
19389
- childRules.forEach((rule) => {
19390
- rule.disabled = true;
19391
- });
19392
- }
19393
19388
  return {
19394
19389
  title: {
19395
19390
  title: "\u660E\u7EC6\u5217\u8868"
@@ -19451,6 +19446,14 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
19451
19446
  function handleError(e) {
19452
19447
  message.error(e?.message);
19453
19448
  }
19449
+ function handleColumnDisabled(tableRule) {
19450
+ if (props.disabled?.includes?.("editTable")) {
19451
+ tableRule?.config?.childRules?.forEach((rule) => {
19452
+ rule.disabled = true;
19453
+ });
19454
+ }
19455
+ return tableRule;
19456
+ }
19454
19457
  props.value && initValue(props.value);
19455
19458
  props.extraConfig.materialTemp.getDict().then((data) => {
19456
19459
  measrueDicts.value = data;
@@ -19716,7 +19719,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
19716
19719
  }, 1024),
19717
19720
  pane.tableRule ? (openBlock(), createBlock(TableWidget, {
19718
19721
  key: 0,
19719
- rule: pane.tableRule,
19722
+ rule: handleColumnDisabled(pane.tableRule),
19720
19723
  disabled: __props.disabled?.includes?.("editTable"),
19721
19724
  "extra-config": __props.extraConfig,
19722
19725
  "form-data": unref(formData),
@@ -19771,7 +19774,7 @@ var materialTemp = {
19771
19774
  inject: true,
19772
19775
  on: {
19773
19776
  change(inject, value) {
19774
- inject.self.value = value;
19777
+ inject.api.form[inject.self.field] = value;
19775
19778
  },
19776
19779
  },
19777
19780
  validate: [
@@ -19997,8 +20000,8 @@ var product = {
19997
20000
  inject: true,
19998
20001
  on: {
19999
20002
  change(inject, value) {
20000
- inject.self.value = value;
20001
20003
  inject.self.props.defalutValue = value;
20004
+ inject.api.form[inject.self.field] = value;
20002
20005
  nextTick(() => {
20003
20006
  inject.api.validateField(inject.self.field);
20004
20007
  });
@@ -20024,8 +20027,8 @@ var product = {
20024
20027
  inject: true,
20025
20028
  on: {
20026
20029
  change(inject, value) {
20027
- inject.self.value = value;
20028
20030
  inject.self.props.defalutValue = value;
20031
+ inject.api.form[inject.self.field] = value;
20029
20032
  nextTick(() => {
20030
20033
  inject.api.validateField(inject.self.field);
20031
20034
  });
@@ -20159,7 +20162,7 @@ var shop = {
20159
20162
  on: {
20160
20163
  change(inject, value) {
20161
20164
  const rule = inject.self;
20162
- rule.value = value;
20165
+ inject.api.form[inject.self.field] = value;
20163
20166
  nextTick(() => {
20164
20167
  setTimeout(() => {
20165
20168
  inject.api.validateField(rule.field);
@@ -20189,7 +20192,7 @@ var shop = {
20189
20192
  on: {
20190
20193
  change(inject, value) {
20191
20194
  const rule = inject.self;
20192
- rule.value = value;
20195
+ inject.api.form[inject.self.field] = value;
20193
20196
  nextTick(() => {
20194
20197
  setTimeout(() => {
20195
20198
  inject.api.validateField(rule.field);
@@ -20325,9 +20328,9 @@ var materialType = {
20325
20328
  on: {
20326
20329
  change(inject, list) {
20327
20330
  const rule = inject.self;
20328
- rule.value = list;
20329
20331
  rule.props.value = list;
20330
- inject.api.emit('value-change', inject.api.bind());
20332
+ inject.api.form[rule.field] = list;
20333
+ inject.api.emit('update:modelValue', inject.api.form);
20331
20334
  nextTick(() => {
20332
20335
  setTimeout(() => {
20333
20336
  inject.api.validateField(rule.field);
@@ -20365,7 +20368,7 @@ var materialType = {
20365
20368
  const rule = inject.self;
20366
20369
  rule.value = list;
20367
20370
  rule.props.value = list;
20368
- inject.api.emit('value-change', inject.api.bind());
20371
+ inject.api.emit('update:modelValue', inject.api.form);
20369
20372
  nextTick(() => {
20370
20373
  setTimeout(() => {
20371
20374
  inject.api.validateField(rule.field);
@@ -20471,8 +20474,8 @@ var department = {
20471
20474
  on: {
20472
20475
  change(inject, list) {
20473
20476
  const rule = inject.self;
20474
- rule.value = list;
20475
20477
  rule.props.defaultSelected = list;
20478
+ inject.api.form[rule.field] = list;
20476
20479
  inject.api.validateField(rule.field, () => {
20477
20480
  if (list.length) {
20478
20481
  inject.api.clearValidateState(rule.field);
@@ -20514,8 +20517,8 @@ var department = {
20514
20517
  on: {
20515
20518
  change(inject, list) {
20516
20519
  const rule = inject.self;
20517
- rule.value = list;
20518
20520
  rule.props.defaultSelected = list;
20521
+ inject.api.form[rule.field] = list;
20519
20522
  inject.api.validateField(rule.field, () => {
20520
20523
  if (list.length) {
20521
20524
  inject.api.clearValidateState(rule.field);
@@ -20589,8 +20592,7 @@ var table = {
20589
20592
  on: {
20590
20593
  change(inject, value) {
20591
20594
  const rule = inject.self;
20592
- rule.value = value;
20593
- inject.api.emit('value-change', inject.api.bind());
20595
+ inject.api.form[rule.field] = value;
20594
20596
  },
20595
20597
  },
20596
20598
  validate: [
@@ -20615,8 +20617,8 @@ var table = {
20615
20617
  inject: true,
20616
20618
  on: {
20617
20619
  change(inject, value) {
20618
- inject.self.value = value;
20619
- inject.api.emit('value-change', inject.api.bind());
20620
+ const rule = inject.self;
20621
+ inject.api.form[rule.field] = value;
20620
20622
  },
20621
20623
  },
20622
20624
  validate: [
@@ -20961,8 +20963,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
20961
20963
  "model-value": __props.value,
20962
20964
  option: unref(option),
20963
20965
  rule: rule.value,
20964
- "onUpdate:modelValue": handleValue,
20965
- onValueChange: handleValue
20966
+ "onUpdate:modelValue": handleValue
20966
20967
  }, null, 8, ["api", "model-value", "option", "rule"])
20967
20968
  ], 64);
20968
20969
  };
@@ -1,5 +1,5 @@
1
1
  import { withInstall } from 'bm-admin-ui/es/utils/with-install';
2
- import { defineComponent, openBlock, createElementBlock, normalizeStyle, toDisplayString, computed, resolveComponent, normalizeClass, unref, createBlock, createCommentVNode, withCtx, createVNode, createTextVNode, withModifiers, ref, watch, createElementVNode, nextTick, Fragment, isRef, renderList, renderSlot, createStaticVNode, reactive, onBeforeUnmount, resolveDynamicComponent } from 'vue';
2
+ import { defineComponent, openBlock, createElementBlock, normalizeStyle, toDisplayString, computed, resolveComponent, normalizeClass, unref, createBlock, createCommentVNode, withCtx, createVNode, createTextVNode, withModifiers, ref, watch, createElementVNode, nextTick, Fragment, isRef, renderList, renderSlot, createStaticVNode, reactive, resolveDynamicComponent } from 'vue';
3
3
  import uniqueId from 'bm-admin-ui/es/utils/uniqueId';
4
4
  import Draggable from 'vuedraggable';
5
5
  import { Tooltip, FormItemRest, Input, Button, RadioGroup, Radio, DatePicker, Checkbox, Tabs, TabPane, Row, Col, Dropdown, Menu, CheckboxGroup, MenuItem, Divider, Switch, Select, Layout, LayoutSider, LayoutContent, message } from 'ant-design-vue';
@@ -3229,6 +3229,9 @@ var shop = {
3229
3229
  name: name$1,
3230
3230
  label: label$1,
3231
3231
  rule() {
3232
+ console.log('---------------');
3233
+ console.log(`第${i + 1}次添加店铺控件`);
3234
+ console.log('---------------');
3232
3235
  return {
3233
3236
  type: 'Select',
3234
3237
  field: uniqueId(),
@@ -3316,8 +3319,8 @@ var shop = {
3316
3319
  };
3317
3320
  },
3318
3321
  };
3319
- function resetIndex() {
3320
- i = 0;
3322
+ function setShopIndex(index) {
3323
+ i = index;
3321
3324
  }
3322
3325
 
3323
3326
  const label = '素材类型';
@@ -4125,7 +4128,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
4125
4128
  function edit(formRules) {
4126
4129
  widgetFormRules.splice(0);
4127
4130
  formRules.forEach((item) => {
4128
- widgetFormRules.push(recursiveMakeRule(item));
4131
+ widgetFormRules.push(recursiveMakeRule(cloneDeep(item)));
4129
4132
  });
4130
4133
  }
4131
4134
  function recursiveMakeRule(item) {
@@ -4290,12 +4293,31 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
4290
4293
  function productLinkShop(rule) {
4291
4294
  return rule.config.config.name === "product" && rule.config.dataFiltering;
4292
4295
  }
4296
+ function getShopIndex(formRules, initIndex) {
4297
+ function shopIndex(rule, initIndex2) {
4298
+ if (rule.name === "shop") {
4299
+ initIndex2 = Math.max(initIndex2, rule.title.title.replace("\u5E97\u94FA", ""));
4300
+ }
4301
+ if (rule.config?.childRules?.length) {
4302
+ rule.config.childRules.forEach((cRule) => {
4303
+ initIndex2 = shopIndex(cRule, initIndex2);
4304
+ });
4305
+ }
4306
+ return initIndex2;
4307
+ }
4308
+ formRules.forEach((rule) => {
4309
+ initIndex = shopIndex(rule, initIndex);
4310
+ });
4311
+ return initIndex;
4312
+ }
4293
4313
  watch(
4294
4314
  () => props.formRules,
4295
4315
  (formRules) => {
4296
4316
  if (formRules?.length) {
4317
+ setShopIndex(0);
4297
4318
  edit(formRules);
4298
4319
  setShopLinkProductCount();
4320
+ setShopIndex(getShopIndex(formRules, 0));
4299
4321
  }
4300
4322
  },
4301
4323
  {
@@ -4311,9 +4333,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
4311
4333
  deep: true
4312
4334
  }
4313
4335
  );
4314
- onBeforeUnmount(() => {
4315
- resetIndex();
4316
- });
4317
4336
  expose({
4318
4337
  getFormRule,
4319
4338
  getRule,
@@ -217,9 +217,9 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
217
217
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
218
218
  onExpand?: ((...args: any[]) => any) | undefined;
219
219
  }, {
220
+ loading: boolean;
220
221
  labelCol: Record<string, any>;
221
222
  value: Record<string, any>;
222
- loading: boolean;
223
223
  showExpandBtn: boolean;
224
224
  showSearchIcon: boolean;
225
225
  expandPlacement: "left" | "right";
@@ -217,9 +217,9 @@ declare const _default: import("vue").DefineComponent<{
217
217
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
218
218
  onExpand?: ((...args: any[]) => any) | undefined;
219
219
  }, {
220
+ loading: boolean;
220
221
  labelCol: Record<string, any>;
221
222
  value: Record<string, any>;
222
- loading: boolean;
223
223
  showExpandBtn: boolean;
224
224
  showSearchIcon: boolean;
225
225
  expandPlacement: "left" | "right";
@@ -210,7 +210,7 @@ declare const BmSelectAll: import("bm-admin-ui/es/utils/with-install").SFCWithIn
210
210
  type: BooleanConstructor;
211
211
  default: any;
212
212
  };
213
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "bordered" | "choiceTransitionName" | "open" | "disabled" | "virtual" | "dropdownMatchSelectWidth" | "autofocus" | "loading" | "showSearch" | "defaultOpen" | "allowClear" | "showArrow" | "autoClearSearchValue" | "filterOption" | "defaultActiveFirstOption" | "labelInValue">;
213
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "disabled" | "bordered" | "choiceTransitionName" | "open" | "virtual" | "dropdownMatchSelectWidth" | "autofocus" | "showSearch" | "defaultOpen" | "allowClear" | "showArrow" | "autoClearSearchValue" | "filterOption" | "defaultActiveFirstOption" | "labelInValue">;
214
214
  $attrs: {
215
215
  [x: string]: unknown;
216
216
  };
@@ -210,7 +210,7 @@ declare const _default: import("vue").DefineComponent<{
210
210
  type: BooleanConstructor;
211
211
  default: any;
212
212
  };
213
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "bordered" | "choiceTransitionName" | "open" | "disabled" | "virtual" | "dropdownMatchSelectWidth" | "autofocus" | "loading" | "showSearch" | "defaultOpen" | "allowClear" | "showArrow" | "autoClearSearchValue" | "filterOption" | "defaultActiveFirstOption" | "labelInValue">;
213
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "disabled" | "bordered" | "choiceTransitionName" | "open" | "virtual" | "dropdownMatchSelectWidth" | "autofocus" | "showSearch" | "defaultOpen" | "allowClear" | "showArrow" | "autoClearSearchValue" | "filterOption" | "defaultActiveFirstOption" | "labelInValue">;
214
214
  $attrs: {
215
215
  [x: string]: unknown;
216
216
  };
@@ -1127,9 +1127,9 @@ declare const BmStaffsSelector: import("bm-admin-ui/es/utils/with-install").SFCW
1127
1127
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
1128
1128
  "onUpdate:select"?: ((...args: any[]) => any) | undefined;
1129
1129
  }, {
1130
+ title: string;
1130
1131
  mode: string;
1131
1132
  showCount: boolean;
1132
- title: string;
1133
1133
  visible: boolean;
1134
1134
  unitStr: string;
1135
1135
  limit: number;
@@ -1127,9 +1127,9 @@ declare const _default: import("vue").DefineComponent<{
1127
1127
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
1128
1128
  "onUpdate:select"?: ((...args: any[]) => any) | undefined;
1129
1129
  }, {
1130
+ title: string;
1130
1131
  mode: string;
1131
1132
  showCount: boolean;
1132
- title: string;
1133
1133
  visible: boolean;
1134
1134
  unitStr: string;
1135
1135
  limit: number;
@@ -78,7 +78,7 @@ declare const BmButton: import("bm-admin-ui/es/utils/with-install").SFCWithInsta
78
78
  onMousedown: {
79
79
  type: import("vue").PropType<(event: MouseEvent) => void>;
80
80
  };
81
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "loading" | "htmlType" | "ghost" | "block" | "danger">;
81
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "htmlType" | "loading" | "disabled" | "ghost" | "block" | "danger">;
82
82
  $attrs: {
83
83
  [x: string]: unknown;
84
84
  };
@@ -80,7 +80,7 @@ declare const _default: import("vue").DefineComponent<{
80
80
  onMousedown: {
81
81
  type: import("vue").PropType<(event: MouseEvent) => void>;
82
82
  };
83
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "loading" | "htmlType" | "ghost" | "block" | "danger">;
83
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "htmlType" | "loading" | "disabled" | "ghost" | "block" | "danger">;
84
84
  $attrs: {
85
85
  [x: string]: unknown;
86
86
  };
@@ -294,8 +294,8 @@ declare const BmEditor: import("bm-admin-ui/es/utils/with-install").SFCWithInsta
294
294
  onReady?: ((...args: any[]) => any) | undefined;
295
295
  onGetCount?: ((...args: any[]) => any) | undefined;
296
296
  }, {
297
- value: string;
298
297
  disabled: boolean;
298
+ value: string;
299
299
  options: {
300
300
  [key: string]: any;
301
301
  };
@@ -294,8 +294,8 @@ declare const _default: import("vue").DefineComponent<{
294
294
  onReady?: ((...args: any[]) => any) | undefined;
295
295
  onGetCount?: ((...args: any[]) => any) | undefined;
296
296
  }, {
297
- value: string;
298
297
  disabled: boolean;
298
+ value: string;
299
299
  options: {
300
300
  [key: string]: any;
301
301
  };