zartui 3.1.63 → 3.1.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/zartui.cjs.js CHANGED
@@ -17127,7 +17127,6 @@ var stdin_default$A = vue.defineComponent({
17127
17127
  "class": bem$s("toolbar-checkbox"),
17128
17128
  "shape": "square",
17129
17129
  "modelValue": isAllSelected.value,
17130
- "onUpdate:modelValue": ($event) => isAllSelected.value = $event,
17131
17130
  "indeterminate": isIndeterminate.value,
17132
17131
  "onClick": handleSelectAll
17133
17132
  }, {
@@ -17141,7 +17140,7 @@ var stdin_default$A = vue.defineComponent({
17141
17140
  confirmIndexes.value = !isAllSelected.value ? currentOptions2.value.map((_, index2) => index2) : [];
17142
17141
  };
17143
17142
  const onSelectOther = () => {
17144
- const temp = Array();
17143
+ const temp = new Array();
17145
17144
  currentOptions2.value.forEach((_, index2) => {
17146
17145
  if (!confirmIndexes.value.includes(index2)) {
17147
17146
  temp.push(index2);
@@ -17149,7 +17148,7 @@ var stdin_default$A = vue.defineComponent({
17149
17148
  });
17150
17149
  confirmIndexes.value = temp;
17151
17150
  };
17152
- const genOptionItems = vue.computed(() => {
17151
+ const genOptionItems = () => {
17153
17152
  let formatOptions = [];
17154
17153
  if (currentOptions2.value && currentOptions2.value[0] && typeof currentOptions2.value[0] !== "object") {
17155
17154
  formatOptions = currentOptions2.value.map((v) => ({
@@ -17173,10 +17172,10 @@ var stdin_default$A = vue.defineComponent({
17173
17172
  }, {
17174
17173
  option: slots.option
17175
17174
  });
17176
- });
17175
+ };
17177
17176
  const genOptions2 = () => vue.createVNode("div", {
17178
17177
  "class": bem$s("options")
17179
- }, [genOptionItems.value]);
17178
+ }, [genOptionItems()]);
17180
17179
  const renderMultiplePicker = () => vue.createVNode("div", {
17181
17180
  "class": bem$s()
17182
17181
  }, [genTitle(), props.loading ? vue.createVNode(stdin_default$1T, {
@@ -23269,7 +23268,7 @@ const Lazyload = {
23269
23268
  });
23270
23269
  }
23271
23270
  };
23272
- const version = "3.1.63";
23271
+ const version = "3.1.64";
23273
23272
  function install(app) {
23274
23273
  const components = [
23275
23274
  ActionSheet,
package/lib/zartui.es.js CHANGED
@@ -17125,7 +17125,6 @@ var stdin_default$A = defineComponent({
17125
17125
  "class": bem$s("toolbar-checkbox"),
17126
17126
  "shape": "square",
17127
17127
  "modelValue": isAllSelected.value,
17128
- "onUpdate:modelValue": ($event) => isAllSelected.value = $event,
17129
17128
  "indeterminate": isIndeterminate.value,
17130
17129
  "onClick": handleSelectAll
17131
17130
  }, {
@@ -17139,7 +17138,7 @@ var stdin_default$A = defineComponent({
17139
17138
  confirmIndexes.value = !isAllSelected.value ? currentOptions2.value.map((_, index2) => index2) : [];
17140
17139
  };
17141
17140
  const onSelectOther = () => {
17142
- const temp = Array();
17141
+ const temp = new Array();
17143
17142
  currentOptions2.value.forEach((_, index2) => {
17144
17143
  if (!confirmIndexes.value.includes(index2)) {
17145
17144
  temp.push(index2);
@@ -17147,7 +17146,7 @@ var stdin_default$A = defineComponent({
17147
17146
  });
17148
17147
  confirmIndexes.value = temp;
17149
17148
  };
17150
- const genOptionItems = computed(() => {
17149
+ const genOptionItems = () => {
17151
17150
  let formatOptions = [];
17152
17151
  if (currentOptions2.value && currentOptions2.value[0] && typeof currentOptions2.value[0] !== "object") {
17153
17152
  formatOptions = currentOptions2.value.map((v) => ({
@@ -17171,10 +17170,10 @@ var stdin_default$A = defineComponent({
17171
17170
  }, {
17172
17171
  option: slots.option
17173
17172
  });
17174
- });
17173
+ };
17175
17174
  const genOptions2 = () => createVNode("div", {
17176
17175
  "class": bem$s("options")
17177
- }, [genOptionItems.value]);
17176
+ }, [genOptionItems()]);
17178
17177
  const renderMultiplePicker = () => createVNode("div", {
17179
17178
  "class": bem$s()
17180
17179
  }, [genTitle(), props.loading ? createVNode(stdin_default$1T, {
@@ -23267,7 +23266,7 @@ const Lazyload = {
23267
23266
  });
23268
23267
  }
23269
23268
  };
23270
- const version = "3.1.63";
23269
+ const version = "3.1.64";
23271
23270
  function install(app) {
23272
23271
  const components = [
23273
23272
  ActionSheet,
package/lib/zartui.js CHANGED
@@ -18903,7 +18903,6 @@
18903
18903
  "class": bem$s("toolbar-checkbox"),
18904
18904
  "shape": "square",
18905
18905
  "modelValue": isAllSelected.value,
18906
- "onUpdate:modelValue": ($event) => isAllSelected.value = $event,
18907
18906
  "indeterminate": isIndeterminate.value,
18908
18907
  "onClick": handleSelectAll
18909
18908
  }, {
@@ -18917,7 +18916,7 @@
18917
18916
  confirmIndexes.value = !isAllSelected.value ? currentOptions2.value.map((_, index2) => index2) : [];
18918
18917
  };
18919
18918
  const onSelectOther = () => {
18920
- const temp = Array();
18919
+ const temp = new Array();
18921
18920
  currentOptions2.value.forEach((_, index2) => {
18922
18921
  if (!confirmIndexes.value.includes(index2)) {
18923
18922
  temp.push(index2);
@@ -18925,7 +18924,7 @@
18925
18924
  });
18926
18925
  confirmIndexes.value = temp;
18927
18926
  };
18928
- const genOptionItems = vue.computed(() => {
18927
+ const genOptionItems = () => {
18929
18928
  let formatOptions = [];
18930
18929
  if (currentOptions2.value && currentOptions2.value[0] && typeof currentOptions2.value[0] !== "object") {
18931
18930
  formatOptions = currentOptions2.value.map((v) => ({
@@ -18949,10 +18948,10 @@
18949
18948
  }, {
18950
18949
  option: slots.option
18951
18950
  });
18952
- });
18951
+ };
18953
18952
  const genOptions2 = () => vue.createVNode("div", {
18954
18953
  "class": bem$s("options")
18955
- }, [genOptionItems.value]);
18954
+ }, [genOptionItems()]);
18956
18955
  const renderMultiplePicker = () => vue.createVNode("div", {
18957
18956
  "class": bem$s()
18958
18957
  }, [genTitle(), props.loading ? vue.createVNode(stdin_default$1T, {
@@ -27329,7 +27328,7 @@
27329
27328
  });
27330
27329
  }
27331
27330
  };
27332
- const version = "3.1.63";
27331
+ const version = "3.1.64";
27333
27332
  function install(app) {
27334
27333
  const components = [
27335
27334
  ActionSheet,