@fkui/vue-labs 6.50.0 → 6.52.0

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.
@@ -1988,7 +1988,7 @@ var require_es_typed_array_with = /* @__PURE__ */ __commonJSMin((() => {
1988
1988
  var $RangeError = RangeError;
1989
1989
  var PROPER_ORDER = function() {
1990
1990
  try {
1991
- new Int8Array(1)["with"](2, { valueOf: function() {
1991
+ (/* @__PURE__ */ new Int8Array(1))["with"](2, { valueOf: function() {
1992
1992
  throw 8;
1993
1993
  } });
1994
1994
  } catch (error) {
@@ -1997,7 +1997,7 @@ var require_es_typed_array_with = /* @__PURE__ */ __commonJSMin((() => {
1997
1997
  }();
1998
1998
  var THROW_ON_NEGATIVE_FRACTIONAL_INDEX = PROPER_ORDER && function() {
1999
1999
  try {
2000
- new Int8Array(1)["with"](-.5, 1);
2000
+ (/* @__PURE__ */ new Int8Array(1))["with"](-.5, 1);
2001
2001
  } catch (error) {
2002
2002
  return true;
2003
2003
  }
@@ -2843,6 +2843,7 @@ var XFileDragdrop_default = /* @__PURE__ */ (0, vue.defineComponent)({
2843
2843
  (0, vue.createVNode)((0, vue.unref)(_fkui_vue.FButton), {
2844
2844
  "data-test": "file-item__file-remove",
2845
2845
  "icon-left": "trashcan",
2846
+ size: "medium",
2846
2847
  variant: "tertiary",
2847
2848
  "aria-label": `Ta bort ${fileName.value}`,
2848
2849
  onClick: taBortFil
@@ -3320,7 +3321,7 @@ var require_es_set_difference_v2 = /* @__PURE__ */ __commonJSMin((() => {
3320
3321
  } };
3321
3322
  }
3322
3323
  };
3323
- var baseSet = new Set([
3324
+ var baseSet = /* @__PURE__ */ new Set([
3324
3325
  1,
3325
3326
  2,
3326
3327
  3,
@@ -3368,11 +3369,11 @@ var require_es_set_intersection_v2 = /* @__PURE__ */ __commonJSMin((() => {
3368
3369
  forced: !require_set_method_accept_set_like()("intersection", function(result) {
3369
3370
  return result.size === 2 && result.has(1) && result.has(2);
3370
3371
  }) || fails(function() {
3371
- return String(Array.from(new Set([
3372
+ return String(Array.from((/* @__PURE__ */ new Set([
3372
3373
  1,
3373
3374
  2,
3374
3375
  3
3375
- ]).intersection(new Set([3, 2])))) !== "3,2";
3376
+ ])).intersection(/* @__PURE__ */ new Set([3, 2])))) !== "3,2";
3376
3377
  })
3377
3378
  }, { intersection });
3378
3379
  }));