@symbo.ls/uikit 2.11.280 → 2.11.283

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/dist/index.cjs.js CHANGED
@@ -6685,6 +6685,7 @@ var beforeClassAssign = (element, s) => {
6685
6685
  props4.update({
6686
6686
  themeModifier: globalTheme
6687
6687
  }, {
6688
+ preventUpdateListener: true,
6688
6689
  preventRecursive: true,
6689
6690
  isForced: true,
6690
6691
  preventDefineUpdate: true
@@ -6851,17 +6852,17 @@ var Collection = {
6851
6852
  if ((0, import_utils4.isNot)(param)("array", "object"))
6852
6853
  return;
6853
6854
  const { __ref: ref } = el;
6854
- if (ref.__stateCollectionCache) {
6855
- const d = (0, import_utils4.deepDiff)(param, ref.__stateCollectionCache);
6855
+ if (ref.__collectionCache) {
6856
+ const d = (0, import_utils4.deepDiff)(param, ref.__collectionCache);
6856
6857
  if (Object.keys(d).length) {
6857
- ref.__stateCollectionCache = (0, import_utils4.deepClone)(param);
6858
+ ref.__collectionCache = (0, import_utils4.deepClone)(param);
6858
6859
  delete ref.__noCollectionDifference;
6859
6860
  } else {
6860
6861
  ref.__noCollectionDifference = true;
6861
6862
  return;
6862
6863
  }
6863
6864
  } else {
6864
- ref.__stateCollectionCache = (0, import_utils4.deepClone)(param);
6865
+ ref.__collectionCache = (0, import_utils4.deepClone)(param);
6865
6866
  }
6866
6867
  const obj = {
6867
6868
  tag: "fragment",
@@ -9741,7 +9742,9 @@ var RouterLink = {
9741
9742
  on: {
9742
9743
  click: (event, el) => {
9743
9744
  const { props: props4, context: ctx } = el;
9744
- const { href, scrollToTop } = props4;
9745
+ const { href, scrollToTop, stopPropagation } = props4;
9746
+ if (stopPropagation)
9747
+ event.stopPropagation();
9745
9748
  if (!href)
9746
9749
  return;
9747
9750
  const { utils, snippets, routerOptions } = ctx;
@@ -12025,11 +12028,13 @@ var UploadIcon = {
12025
12028
  padding: "B B2"
12026
12029
  },
12027
12030
  Input: {
12028
- type: "file",
12029
- position: "absolute",
12030
- inset: "0 0 0 0",
12031
- opacity: "0",
12032
- visibility: "hidden"
12031
+ props: {
12032
+ type: "file",
12033
+ position: "absolute",
12034
+ inset: "0 0 0 0",
12035
+ opacity: "0",
12036
+ visibility: "hidden"
12037
+ }
12033
12038
  },
12034
12039
  Icon: {
12035
12040
  props: {