@symbo.ls/uikit 2.11.204 → 2.11.205

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
@@ -6085,6 +6085,8 @@ var Iframe = {
6085
6085
  src: ({ props: props4 }) => props4.src,
6086
6086
  loading: ({ props: props4 }) => props4.loading,
6087
6087
  allowfullscreen: ({ props: props4 }) => props4.allowfullscreen,
6088
+ frameborder: ({ props: props4 }) => props4.frameborder,
6089
+ allow: ({ props: props4 }) => props4.allow,
6088
6090
  referrerpolicy: ({ props: props4 }) => props4.referrerpolicy
6089
6091
  }
6090
6092
  };
@@ -9355,7 +9357,7 @@ var AvatarBundle = {
9355
9357
  ...[{}, {}, {}, {}]
9356
9358
  };
9357
9359
 
9358
- // Avatar/index.js
9360
+ // Avatar/AvatarChooser.js
9359
9361
  var AvatarChooser = {
9360
9362
  extend: Button,
9361
9363
  tag: "label",
@@ -9394,6 +9396,8 @@ var AvatarChooser = {
9394
9396
  },
9395
9397
  childExtend: { tag: "option" },
9396
9398
  $setPropsCollection: ({ parent, state }) => {
9399
+ if (!parent.props.options)
9400
+ return [];
9397
9401
  return parent.props.options.map((v) => {
9398
9402
  if (v.text === state.key)
9399
9403
  return { ...v, selected: true };