@symbo.ls/uikit 2.11.261 → 2.11.262

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
@@ -5830,7 +5830,7 @@ var Block = {
5830
5830
  display: ({ props: props4 }) => !(0, import_utils.isUndefined)(props4.display) && {
5831
5831
  display: props4.display
5832
5832
  },
5833
- hide: ({ props: props4 }) => !(0, import_utils.isUndefined)(props4.hide) && {
5833
+ hide: ({ props: props4 }) => props4.hide && {
5834
5834
  display: "none !important"
5835
5835
  },
5836
5836
  width: ({ props: props4, deps }) => deps.transformSizeRatio("width", props4),
@@ -5923,7 +5923,7 @@ var Block = {
5923
5923
  gap: (0, import_scratch.transfromGap)(props4.gap)
5924
5924
  },
5925
5925
  gridArea: ({ props: props4, deps }) => props4.gridArea && { gridArea: props4.gridArea },
5926
- flex: ({ props: props4 }) => !(0, import_utils.isUndefined)(props4.flex) && {
5926
+ flex: ({ props: props4 }) => props4.flex && {
5927
5927
  flex: props4.flex
5928
5928
  },
5929
5929
  flexDirection: ({ props: props4 }) => !(0, import_utils.isUndefined)(props4.flexDirection) && {
@@ -5944,7 +5944,7 @@ var Block = {
5944
5944
  alignSelf: ({ props: props4 }) => !(0, import_utils.isUndefined)(props4.alignSelf) && {
5945
5945
  alignSelf: props4.alignSelf
5946
5946
  },
5947
- order: ({ props: props4 }) => !(0, import_utils.isUndefined)(props4.order) && {
5947
+ order: ({ props: props4 }) => props4.order && {
5948
5948
  order: props4.order
5949
5949
  },
5950
5950
  flexWrap: ({ props: props4 }) => !(0, import_utils.isUndefined)(props4.flexWrap) && {