zartui 3.1.37 → 3.1.39

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
@@ -1295,7 +1295,7 @@ const actionSheetProps = extend({}, popupSharedProps, {
1295
1295
  closeOnClickAction: Boolean,
1296
1296
  safeAreaInsetBottom: truthProp
1297
1297
  });
1298
- const popupInheritKeys$1 = [...popupSharedPropKeys, "round", "closeOnPopstate", "safeAreaInsetBottom"];
1298
+ const popupInheritKeys$2 = [...popupSharedPropKeys, "round", "closeOnPopstate", "safeAreaInsetBottom"];
1299
1299
  var stdin_default$1P = vue.defineComponent({
1300
1300
  name: name$1l,
1301
1301
  props: actionSheetProps,
@@ -1403,7 +1403,7 @@ var stdin_default$1P = vue.defineComponent({
1403
1403
  "class": bem$1h(),
1404
1404
  "position": "bottom",
1405
1405
  "onUpdate:show": updateShow
1406
- }, pick(props, popupInheritKeys$1)), {
1406
+ }, pick(props, popupInheritKeys$2)), {
1407
1407
  default: () => {
1408
1408
  var _a;
1409
1409
  return [renderHeader(), renderDescription(), vue.createVNode("div", {
@@ -6999,6 +6999,12 @@ const sharedProps = extend({}, pickerSharedProps$1, {
6999
6999
  }
7000
7000
  });
7001
7001
  const pickerInheritKeys = Object.keys(pickerSharedProps$1);
7002
+ const popupInheritKeys$1 = [
7003
+ ...popupSharedPropKeys,
7004
+ "round",
7005
+ "closeOnPopstate",
7006
+ "safeAreaInsetBottom"
7007
+ ];
7002
7008
  function times(n, iteratee) {
7003
7009
  if (n < 0) {
7004
7010
  return [];
@@ -7927,13 +7933,13 @@ var stdin_default$18 = vue.defineComponent({
7927
7933
  }), pick(slots, pickerToolbarSlots$1))];
7928
7934
  }
7929
7935
  };
7930
- return () => vue.createVNode(stdin_default$1T, {
7936
+ return () => vue.createVNode(stdin_default$1T, vue.mergeProps(pick(props, popupInheritKeys$1), {
7931
7937
  "round": true,
7932
7938
  "position": "bottom",
7933
7939
  "onOpen": onOpen,
7934
7940
  "show": currentShow.value,
7935
7941
  "onUpdate:show": ($event) => currentShow.value = $event
7936
- }, {
7942
+ }), {
7937
7943
  default: () => [renderTitle(), renderPicker(), renderToolbar()]
7938
7944
  });
7939
7945
  }
@@ -14480,6 +14486,9 @@ var stdin_default$B = vue.defineComponent({
14480
14486
  actionVisible.value = false;
14481
14487
  action.func && action.func();
14482
14488
  };
14489
+ useExpose({
14490
+ mediaPick
14491
+ });
14483
14492
  return () => {
14484
14493
  const title = props.showTitle && vue.createVNode("div", {
14485
14494
  "class": bem$t("title")
@@ -20621,7 +20630,7 @@ const Lazyload = {
20621
20630
  });
20622
20631
  }
20623
20632
  };
20624
- const version = "3.1.37";
20633
+ const version = "3.1.39";
20625
20634
  function install(app) {
20626
20635
  const components = [
20627
20636
  ActionSheet,
package/lib/zartui.es.js CHANGED
@@ -1293,7 +1293,7 @@ const actionSheetProps = extend({}, popupSharedProps, {
1293
1293
  closeOnClickAction: Boolean,
1294
1294
  safeAreaInsetBottom: truthProp
1295
1295
  });
1296
- const popupInheritKeys$1 = [...popupSharedPropKeys, "round", "closeOnPopstate", "safeAreaInsetBottom"];
1296
+ const popupInheritKeys$2 = [...popupSharedPropKeys, "round", "closeOnPopstate", "safeAreaInsetBottom"];
1297
1297
  var stdin_default$1P = defineComponent({
1298
1298
  name: name$1l,
1299
1299
  props: actionSheetProps,
@@ -1401,7 +1401,7 @@ var stdin_default$1P = defineComponent({
1401
1401
  "class": bem$1h(),
1402
1402
  "position": "bottom",
1403
1403
  "onUpdate:show": updateShow
1404
- }, pick(props, popupInheritKeys$1)), {
1404
+ }, pick(props, popupInheritKeys$2)), {
1405
1405
  default: () => {
1406
1406
  var _a;
1407
1407
  return [renderHeader(), renderDescription(), createVNode("div", {
@@ -6997,6 +6997,12 @@ const sharedProps = extend({}, pickerSharedProps$1, {
6997
6997
  }
6998
6998
  });
6999
6999
  const pickerInheritKeys = Object.keys(pickerSharedProps$1);
7000
+ const popupInheritKeys$1 = [
7001
+ ...popupSharedPropKeys,
7002
+ "round",
7003
+ "closeOnPopstate",
7004
+ "safeAreaInsetBottom"
7005
+ ];
7000
7006
  function times(n, iteratee) {
7001
7007
  if (n < 0) {
7002
7008
  return [];
@@ -7925,13 +7931,13 @@ var stdin_default$18 = defineComponent({
7925
7931
  }), pick(slots, pickerToolbarSlots$1))];
7926
7932
  }
7927
7933
  };
7928
- return () => createVNode(stdin_default$1T, {
7934
+ return () => createVNode(stdin_default$1T, mergeProps(pick(props, popupInheritKeys$1), {
7929
7935
  "round": true,
7930
7936
  "position": "bottom",
7931
7937
  "onOpen": onOpen,
7932
7938
  "show": currentShow.value,
7933
7939
  "onUpdate:show": ($event) => currentShow.value = $event
7934
- }, {
7940
+ }), {
7935
7941
  default: () => [renderTitle(), renderPicker(), renderToolbar()]
7936
7942
  });
7937
7943
  }
@@ -14478,6 +14484,9 @@ var stdin_default$B = defineComponent({
14478
14484
  actionVisible.value = false;
14479
14485
  action.func && action.func();
14480
14486
  };
14487
+ useExpose({
14488
+ mediaPick
14489
+ });
14481
14490
  return () => {
14482
14491
  const title = props.showTitle && createVNode("div", {
14483
14492
  "class": bem$t("title")
@@ -20619,7 +20628,7 @@ const Lazyload = {
20619
20628
  });
20620
20629
  }
20621
20630
  };
20622
- const version = "3.1.37";
20631
+ const version = "3.1.39";
20623
20632
  function install(app) {
20624
20633
  const components = [
20625
20634
  ActionSheet,
package/lib/zartui.js CHANGED
@@ -1565,7 +1565,7 @@
1565
1565
  closeOnClickAction: Boolean,
1566
1566
  safeAreaInsetBottom: truthProp
1567
1567
  });
1568
- const popupInheritKeys$1 = [...popupSharedPropKeys, "round", "closeOnPopstate", "safeAreaInsetBottom"];
1568
+ const popupInheritKeys$2 = [...popupSharedPropKeys, "round", "closeOnPopstate", "safeAreaInsetBottom"];
1569
1569
  var stdin_default$1P = vue.defineComponent({
1570
1570
  name: name$1l,
1571
1571
  props: actionSheetProps,
@@ -1673,7 +1673,7 @@
1673
1673
  "class": bem$1h(),
1674
1674
  "position": "bottom",
1675
1675
  "onUpdate:show": updateShow
1676
- }, pick(props, popupInheritKeys$1)), {
1676
+ }, pick(props, popupInheritKeys$2)), {
1677
1677
  default: () => {
1678
1678
  var _a;
1679
1679
  return [renderHeader(), renderDescription(), vue.createVNode("div", {
@@ -7243,6 +7243,12 @@
7243
7243
  }
7244
7244
  });
7245
7245
  const pickerInheritKeys = Object.keys(pickerSharedProps$1);
7246
+ const popupInheritKeys$1 = [
7247
+ ...popupSharedPropKeys,
7248
+ "round",
7249
+ "closeOnPopstate",
7250
+ "safeAreaInsetBottom"
7251
+ ];
7246
7252
  function times(n, iteratee) {
7247
7253
  if (n < 0) {
7248
7254
  return [];
@@ -8171,13 +8177,13 @@
8171
8177
  }), pick(slots, pickerToolbarSlots$1))];
8172
8178
  }
8173
8179
  };
8174
- return () => vue.createVNode(stdin_default$1T, {
8180
+ return () => vue.createVNode(stdin_default$1T, vue.mergeProps(pick(props, popupInheritKeys$1), {
8175
8181
  "round": true,
8176
8182
  "position": "bottom",
8177
8183
  "onOpen": onOpen,
8178
8184
  "show": currentShow.value,
8179
8185
  "onUpdate:show": ($event) => currentShow.value = $event
8180
- }, {
8186
+ }), {
8181
8187
  default: () => [renderTitle(), renderPicker(), renderToolbar()]
8182
8188
  });
8183
8189
  }
@@ -16256,6 +16262,9 @@
16256
16262
  actionVisible.value = false;
16257
16263
  action.func && action.func();
16258
16264
  };
16265
+ useExpose({
16266
+ mediaPick
16267
+ });
16259
16268
  return () => {
16260
16269
  const title = props.showTitle && vue.createVNode("div", {
16261
16270
  "class": bem$t("title")
@@ -24681,7 +24690,7 @@
24681
24690
  });
24682
24691
  }
24683
24692
  };
24684
- const version = "3.1.37";
24693
+ const version = "3.1.39";
24685
24694
  function install(app) {
24686
24695
  const components = [
24687
24696
  ActionSheet,