@bcc-code/component-library-vue 0.0.0-dev.ed57818 → 0.0.0-dev.edf8c5a

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.
@@ -10181,175 +10181,7 @@ const QS = { class: "flex items-center gap-2" }, _S = ["for"], lN = /* @__PURE__
10181
10181
  ]));
10182
10182
  }
10183
10183
  });
10184
- var ai = {
10185
- name: "TimesCircleIcon",
10186
- extends: oe
10187
- };
10188
- function ex(t, e, n, r, i, o) {
10189
- return he(RI, t.pti());
10190
- }
10191
- ai.render = ex;
10192
- var tx = `
10193
- .p-chip {
10194
- display: inline-flex;
10195
- align-items: center;
10196
- background: dt('chip.background');
10197
- color: dt('chip.color');
10198
- border-radius: dt('chip.border.radius');
10199
- padding-block: dt('chip.padding.y');
10200
- padding-inline: dt('chip.padding.x');
10201
- gap: dt('chip.gap');
10202
- }
10203
-
10204
- .p-chip-icon {
10205
- color: dt('chip.icon.color');
10206
- font-size: dt('chip.icon.size');
10207
- width: dt('chip.icon.size');
10208
- height: dt('chip.icon.size');
10209
- }
10210
-
10211
- .p-chip-image {
10212
- border-radius: 50%;
10213
- width: dt('chip.image.width');
10214
- height: dt('chip.image.height');
10215
- margin-inline-start: calc(-1 * dt('chip.padding.y'));
10216
- }
10217
-
10218
- .p-chip:has(.p-chip-remove-icon) {
10219
- padding-inline-end: dt('chip.padding.y');
10220
- }
10221
-
10222
- .p-chip:has(.p-chip-image) {
10223
- padding-block-start: calc(dt('chip.padding.y') / 2);
10224
- padding-block-end: calc(dt('chip.padding.y') / 2);
10225
- }
10226
-
10227
- .p-chip-remove-icon {
10228
- cursor: pointer;
10229
- font-size: dt('chip.remove.icon.size');
10230
- width: dt('chip.remove.icon.size');
10231
- height: dt('chip.remove.icon.size');
10232
- color: dt('chip.remove.icon.color');
10233
- border-radius: 50%;
10234
- transition:
10235
- outline-color dt('chip.transition.duration'),
10236
- box-shadow dt('chip.transition.duration');
10237
- outline-color: transparent;
10238
- }
10239
-
10240
- .p-chip-remove-icon:focus-visible {
10241
- box-shadow: dt('chip.remove.icon.focus.ring.shadow');
10242
- outline: dt('chip.remove.icon.focus.ring.width') dt('chip.remove.icon.focus.ring.style') dt('chip.remove.icon.focus.ring.color');
10243
- outline-offset: dt('chip.remove.icon.focus.ring.offset');
10244
- }
10245
- `, nx = {
10246
- root: "p-chip p-component",
10247
- image: "p-chip-image",
10248
- icon: "p-chip-icon",
10249
- label: "p-chip-label",
10250
- removeIcon: "p-chip-remove-icon"
10251
- }, ox = E.extend({
10252
- name: "chip",
10253
- style: tx,
10254
- classes: nx
10255
- }), rx = {
10256
- name: "BaseChip",
10257
- extends: A,
10258
- props: {
10259
- label: {
10260
- type: [String, Number],
10261
- default: null
10262
- },
10263
- icon: {
10264
- type: String,
10265
- default: null
10266
- },
10267
- image: {
10268
- type: String,
10269
- default: null
10270
- },
10271
- removable: {
10272
- type: Boolean,
10273
- default: !1
10274
- },
10275
- removeIcon: {
10276
- type: String,
10277
- default: void 0
10278
- }
10279
- },
10280
- style: ox,
10281
- provide: function() {
10282
- return {
10283
- $pcChip: this,
10284
- $parentInstance: this
10285
- };
10286
- }
10287
- }, Tr = {
10288
- name: "Chip",
10289
- extends: rx,
10290
- inheritAttrs: !1,
10291
- emits: ["remove"],
10292
- data: function() {
10293
- return {
10294
- visible: !0
10295
- };
10296
- },
10297
- methods: {
10298
- onKeydown: function(e) {
10299
- (e.key === "Enter" || e.key === "Backspace") && this.close(e);
10300
- },
10301
- close: function(e) {
10302
- this.visible = !1, this.$emit("remove", e);
10303
- }
10304
- },
10305
- computed: {
10306
- dataP: function() {
10307
- return X({
10308
- removable: this.removable
10309
- });
10310
- }
10311
- },
10312
- components: {
10313
- TimesCircleIcon: ai
10314
- }
10315
- }, ix = ["aria-label", "data-p"], ax = ["src"];
10316
- function lx(t, e, n, r, i, o) {
10317
- return i.visible ? (d(), f("div", c({
10318
- key: 0,
10319
- class: t.cx("root"),
10320
- "aria-label": t.label
10321
- }, t.ptmi("root"), {
10322
- "data-p": o.dataP
10323
- }), [b(t.$slots, "default", {}, function() {
10324
- return [t.image ? (d(), f("img", c({
10325
- key: 0,
10326
- src: t.image
10327
- }, t.ptm("image"), {
10328
- class: t.cx("image")
10329
- }), null, 16, ax)) : t.$slots.icon ? (d(), y(C(t.$slots.icon), c({
10330
- key: 1,
10331
- class: t.cx("icon")
10332
- }, t.ptm("icon")), null, 16, ["class"])) : t.icon ? (d(), f("span", c({
10333
- key: 2,
10334
- class: [t.cx("icon"), t.icon]
10335
- }, t.ptm("icon")), null, 16)) : v("", !0), t.label !== null ? (d(), f("div", c({
10336
- key: 3,
10337
- class: t.cx("label")
10338
- }, t.ptm("label")), D(t.label), 17)) : v("", !0)];
10339
- }), t.removable ? b(t.$slots, "removeicon", {
10340
- key: 0,
10341
- removeCallback: o.close,
10342
- keydownCallback: o.onKeydown
10343
- }, function() {
10344
- return [(d(), y(C(t.removeIcon ? "span" : "TimesCircleIcon"), c({
10345
- class: [t.cx("removeIcon"), t.removeIcon],
10346
- onClick: o.close,
10347
- onKeydown: o.onKeydown
10348
- }, t.ptm("removeIcon")), null, 16, ["class", "onClick", "onKeydown"]))];
10349
- }) : v("", !0)], 16, ix)) : v("", !0);
10350
- }
10351
- Tr.render = lx;
10352
- var sx = `
10184
+ var ex = `
10353
10185
  .p-iconfield {
10354
10186
  position: relative;
10355
10187
  display: block;
@@ -10394,16 +10226,16 @@ var sx = `
10394
10226
  height: dt('form.field.lg.font.size');
10395
10227
  margin-top: calc(-1 * (dt('form.field.lg.font.size') / 2));
10396
10228
  }
10397
- `, dx = {
10229
+ `, tx = {
10398
10230
  root: "p-iconfield"
10399
- }, ux = E.extend({
10231
+ }, nx = E.extend({
10400
10232
  name: "iconfield",
10401
- style: sx,
10402
- classes: dx
10403
- }), cx = {
10233
+ style: ex,
10234
+ classes: tx
10235
+ }), ox = {
10404
10236
  name: "BaseIconField",
10405
10237
  extends: A,
10406
- style: ux,
10238
+ style: nx,
10407
10239
  provide: function() {
10408
10240
  return {
10409
10241
  $pcIconField: this,
@@ -10412,24 +10244,24 @@ var sx = `
10412
10244
  }
10413
10245
  }, Ln = {
10414
10246
  name: "IconField",
10415
- extends: cx,
10247
+ extends: ox,
10416
10248
  inheritAttrs: !1
10417
10249
  };
10418
- function px(t, e, n, r, i, o) {
10250
+ function rx(t, e, n, r, i, o) {
10419
10251
  return d(), f("div", c({
10420
10252
  class: t.cx("root")
10421
10253
  }, t.ptmi("root")), [b(t.$slots, "default")], 16);
10422
10254
  }
10423
- Ln.render = px;
10424
- var fx = {
10255
+ Ln.render = rx;
10256
+ var ix = {
10425
10257
  root: "p-inputicon"
10426
- }, hx = E.extend({
10258
+ }, ax = E.extend({
10427
10259
  name: "inputicon",
10428
- classes: fx
10429
- }), mx = {
10260
+ classes: ix
10261
+ }), lx = {
10430
10262
  name: "BaseInputIcon",
10431
10263
  extends: A,
10432
- style: hx,
10264
+ style: ax,
10433
10265
  props: {
10434
10266
  class: null
10435
10267
  },
@@ -10441,7 +10273,7 @@ var fx = {
10441
10273
  }
10442
10274
  }, qt = {
10443
10275
  name: "InputIcon",
10444
- extends: mx,
10276
+ extends: lx,
10445
10277
  inheritAttrs: !1,
10446
10278
  computed: {
10447
10279
  containerClass: function() {
@@ -10449,39 +10281,39 @@ var fx = {
10449
10281
  }
10450
10282
  }
10451
10283
  };
10452
- function bx(t, e, n, r, i, o) {
10284
+ function sx(t, e, n, r, i, o) {
10453
10285
  return d(), f("span", c({
10454
10286
  class: o.containerClass
10455
10287
  }, t.ptmi("root"), {
10456
10288
  "aria-hidden": "true"
10457
10289
  }), [b(t.$slots, "default")], 16);
10458
10290
  }
10459
- qt.render = bx;
10291
+ qt.render = sx;
10460
10292
  var Bn = {
10461
10293
  name: "AngleDownIcon",
10462
10294
  extends: oe
10463
10295
  };
10464
- function gx(t, e, n, r, i, o) {
10296
+ function dx(t, e, n, r, i, o) {
10465
10297
  return he(Pu, t.pti());
10466
10298
  }
10467
- Bn.render = gx;
10299
+ Bn.render = dx;
10468
10300
  var pi = {
10469
10301
  name: "AngleUpIcon",
10470
10302
  extends: oe
10471
10303
  };
10472
- function vx(t, e, n, r, i, o) {
10304
+ function ux(t, e, n, r, i, o) {
10473
10305
  return he(XI, t.pti());
10474
10306
  }
10475
- pi.render = vx;
10307
+ pi.render = ux;
10476
10308
  var Ue = {
10477
10309
  name: "TimesIcon",
10478
10310
  extends: oe
10479
10311
  };
10480
- function yx(t, e, n, r, i, o) {
10312
+ function cx(t, e, n, r, i, o) {
10481
10313
  return he(xu, t.pti());
10482
10314
  }
10483
- Ue.render = yx;
10484
- var kx = `
10315
+ Ue.render = cx;
10316
+ var px = `
10485
10317
  .p-inputtext {
10486
10318
  font-family: inherit;
10487
10319
  font-feature-settings: inherit;
@@ -10559,7 +10391,7 @@ var kx = `
10559
10391
  .p-inputtext-fluid {
10560
10392
  width: 100%;
10561
10393
  }
10562
- `, wx = {
10394
+ `, fx = {
10563
10395
  root: function(e) {
10564
10396
  var n = e.instance, r = e.props;
10565
10397
  return ["p-inputtext p-component", {
@@ -10571,14 +10403,14 @@ var kx = `
10571
10403
  "p-inputtext-fluid": n.$fluid
10572
10404
  }];
10573
10405
  }
10574
- }, Ix = E.extend({
10406
+ }, hx = E.extend({
10575
10407
  name: "inputtext",
10576
- style: kx,
10577
- classes: wx
10578
- }), Cx = {
10408
+ style: px,
10409
+ classes: fx
10410
+ }), mx = {
10579
10411
  name: "BaseInputText",
10580
10412
  extends: rt,
10581
- style: Ix,
10413
+ style: hx,
10582
10414
  provide: function() {
10583
10415
  return {
10584
10416
  $pcInputText: this,
@@ -10594,14 +10426,14 @@ function lo(t) {
10594
10426
  return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
10595
10427
  }, lo(t);
10596
10428
  }
10597
- function Sx(t, e, n) {
10598
- return (e = xx(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
10429
+ function bx(t, e, n) {
10430
+ return (e = gx(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
10599
10431
  }
10600
- function xx(t) {
10601
- var e = Px(t, "string");
10432
+ function gx(t) {
10433
+ var e = vx(t, "string");
10602
10434
  return lo(e) == "symbol" ? e : e + "";
10603
10435
  }
10604
- function Px(t, e) {
10436
+ function vx(t, e) {
10605
10437
  if (lo(t) != "object" || !t) return t;
10606
10438
  var n = t[Symbol.toPrimitive];
10607
10439
  if (n !== void 0) {
@@ -10613,7 +10445,7 @@ function Px(t, e) {
10613
10445
  }
10614
10446
  var mt = {
10615
10447
  name: "InputText",
10616
- extends: Cx,
10448
+ extends: mx,
10617
10449
  inheritAttrs: !1,
10618
10450
  methods: {
10619
10451
  onInput: function(e) {
@@ -10630,15 +10462,15 @@ var mt = {
10630
10462
  }), this.formField);
10631
10463
  },
10632
10464
  dataP: function() {
10633
- return X(Sx({
10465
+ return X(bx({
10634
10466
  invalid: this.$invalid,
10635
10467
  fluid: this.$fluid,
10636
10468
  filled: this.$variant === "filled"
10637
10469
  }, this.size, this.size));
10638
10470
  }
10639
10471
  }
10640
- }, Ox = ["value", "name", "disabled", "aria-invalid", "data-p"];
10641
- function Tx(t, e, n, r, i, o) {
10472
+ }, yx = ["value", "name", "disabled", "aria-invalid", "data-p"];
10473
+ function kx(t, e, n, r, i, o) {
10642
10474
  return d(), f("input", c({
10643
10475
  type: "text",
10644
10476
  class: t.cx("root"),
@@ -10650,10 +10482,10 @@ function Tx(t, e, n, r, i, o) {
10650
10482
  onInput: e[0] || (e[0] = function() {
10651
10483
  return o.onInput && o.onInput.apply(o, arguments);
10652
10484
  })
10653
- }, o.attrs), null, 16, Ox);
10485
+ }, o.attrs), null, 16, yx);
10654
10486
  }
10655
- mt.render = Tx;
10656
- var Lx = `
10487
+ mt.render = kx;
10488
+ var wx = `
10657
10489
  .p-inputnumber {
10658
10490
  display: inline-flex;
10659
10491
  position: relative;
@@ -10845,7 +10677,7 @@ var Lx = `
10845
10677
  .p-inputnumber-horizontal .p-inputnumber-clear-icon {
10846
10678
  inset-inline-end: calc(dt('inputnumber.button.width') + dt('form.field.padding.x'));
10847
10679
  }
10848
- `, Bx = {
10680
+ `, Ix = {
10849
10681
  root: function(e) {
10850
10682
  var n = e.instance, r = e.props;
10851
10683
  return ["p-inputnumber p-component p-inputwrapper", {
@@ -10873,11 +10705,11 @@ var Lx = `
10873
10705
  "p-disabled": r.showButtons && r.min !== null && n.minBoundry()
10874
10706
  }];
10875
10707
  }
10876
- }, $x = E.extend({
10708
+ }, Cx = E.extend({
10877
10709
  name: "inputnumber",
10878
- style: Lx,
10879
- classes: Bx
10880
- }), Mx = {
10710
+ style: wx,
10711
+ classes: Ix
10712
+ }), Sx = {
10881
10713
  name: "BaseInputNumber",
10882
10714
  extends: rt,
10883
10715
  props: {
@@ -11021,7 +10853,7 @@ var Lx = `
11021
10853
  default: !1
11022
10854
  }
11023
10855
  },
11024
- style: $x,
10856
+ style: Cx,
11025
10857
  provide: function() {
11026
10858
  return {
11027
10859
  $pcInputNumber: this,
@@ -11059,13 +10891,13 @@ function os(t) {
11059
10891
  return t;
11060
10892
  }
11061
10893
  function _i(t, e, n) {
11062
- return (e = Dx(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
10894
+ return (e = xx(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
11063
10895
  }
11064
- function Dx(t) {
11065
- var e = Ex(t, "string");
10896
+ function xx(t) {
10897
+ var e = Px(t, "string");
11066
10898
  return so(e) == "symbol" ? e : e + "";
11067
10899
  }
11068
- function Ex(t, e) {
10900
+ function Px(t, e) {
11069
10901
  if (so(t) != "object" || !t) return t;
11070
10902
  var n = t[Symbol.toPrimitive];
11071
10903
  if (n !== void 0) {
@@ -11075,24 +10907,24 @@ function Ex(t, e) {
11075
10907
  }
11076
10908
  return (e === "string" ? String : Number)(t);
11077
10909
  }
11078
- function Ax(t) {
11079
- return Kx(t) || Fx(t) || zx(t) || Rx();
10910
+ function Ox(t) {
10911
+ return $x(t) || Bx(t) || Lx(t) || Tx();
11080
10912
  }
11081
- function Rx() {
10913
+ function Tx() {
11082
10914
  throw new TypeError(`Invalid attempt to spread non-iterable instance.
11083
10915
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
11084
10916
  }
11085
- function zx(t, e) {
10917
+ function Lx(t, e) {
11086
10918
  if (t) {
11087
10919
  if (typeof t == "string") return ea(t, e);
11088
10920
  var n = {}.toString.call(t).slice(8, -1);
11089
10921
  return n === "Object" && t.constructor && (n = t.constructor.name), n === "Map" || n === "Set" ? Array.from(t) : n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? ea(t, e) : void 0;
11090
10922
  }
11091
10923
  }
11092
- function Fx(t) {
10924
+ function Bx(t) {
11093
10925
  if (typeof Symbol < "u" && t[Symbol.iterator] != null || t["@@iterator"] != null) return Array.from(t);
11094
10926
  }
11095
- function Kx(t) {
10927
+ function $x(t) {
11096
10928
  if (Array.isArray(t)) return ea(t);
11097
10929
  }
11098
10930
  function ea(t, e) {
@@ -11102,7 +10934,7 @@ function ea(t, e) {
11102
10934
  }
11103
10935
  var Za = {
11104
10936
  name: "InputNumber",
11105
- extends: Mx,
10937
+ extends: Sx,
11106
10938
  inheritAttrs: !1,
11107
10939
  emits: ["input", "focus", "blur"],
11108
10940
  inject: {
@@ -11192,7 +11024,7 @@ var Za = {
11192
11024
  },
11193
11025
  constructParser: function() {
11194
11026
  this.numberFormat = new Intl.NumberFormat(this.locale, this.getOptions());
11195
- var e = Ax(new Intl.NumberFormat(this.locale, {
11027
+ var e = Ox(new Intl.NumberFormat(this.locale, {
11196
11028
  useGrouping: !1
11197
11029
  }).format(9876543210)).reverse(), n = new Map(e.map(function(r, i) {
11198
11030
  return [r, i];
@@ -11712,8 +11544,8 @@ var Za = {
11712
11544
  AngleDownIcon: Bn,
11713
11545
  TimesIcon: Ue
11714
11546
  }
11715
- }, Vx = ["data-p"], jx = ["data-p"], Nx = ["disabled", "data-p"], Hx = ["disabled", "data-p"], Ux = ["disabled", "data-p"], qx = ["disabled", "data-p"];
11716
- function Gx(t, e, n, r, i, o) {
11547
+ }, Mx = ["data-p"], Dx = ["data-p"], Ex = ["disabled", "data-p"], Ax = ["disabled", "data-p"], Rx = ["disabled", "data-p"], zx = ["disabled", "data-p"];
11548
+ function Fx(t, e, n, r, i, o) {
11717
11549
  var a = S("InputText"), s = S("TimesIcon");
11718
11550
  return d(), f("span", c({
11719
11551
  class: t.cx("root")
@@ -11783,7 +11615,7 @@ function Gx(t, e, n, r, i, o) {
11783
11615
  }, t.ptm("incrementIcon"), {
11784
11616
  "data-pc-section": "incrementicon"
11785
11617
  }), null, 16, ["class"]))];
11786
- })], 16, Nx)];
11618
+ })], 16, Ex)];
11787
11619
  }), b(t.$slots, "decrementbutton", {
11788
11620
  listeners: o.downButtonListeners
11789
11621
  }, function() {
@@ -11802,8 +11634,8 @@ function Gx(t, e, n, r, i, o) {
11802
11634
  }, t.ptm("decrementIcon"), {
11803
11635
  "data-pc-section": "decrementicon"
11804
11636
  }), null, 16, ["class"]))];
11805
- })], 16, Hx)];
11806
- })], 16, jx)) : v("", !0), b(t.$slots, "incrementbutton", {
11637
+ })], 16, Ax)];
11638
+ })], 16, Dx)) : v("", !0), b(t.$slots, "incrementbutton", {
11807
11639
  listeners: o.upButtonListeners
11808
11640
  }, function() {
11809
11641
  return [t.showButtons && t.buttonLayout !== "stacked" ? (d(), f("button", c({
@@ -11822,7 +11654,7 @@ function Gx(t, e, n, r, i, o) {
11822
11654
  }, t.ptm("incrementIcon"), {
11823
11655
  "data-pc-section": "incrementicon"
11824
11656
  }), null, 16, ["class"]))];
11825
- })], 16, Ux)) : v("", !0)];
11657
+ })], 16, Rx)) : v("", !0)];
11826
11658
  }), b(t.$slots, "decrementbutton", {
11827
11659
  listeners: o.downButtonListeners
11828
11660
  }, function() {
@@ -11842,10 +11674,10 @@ function Gx(t, e, n, r, i, o) {
11842
11674
  }, t.ptm("decrementIcon"), {
11843
11675
  "data-pc-section": "decrementicon"
11844
11676
  }), null, 16, ["class"]))];
11845
- })], 16, qx)) : v("", !0)];
11846
- })], 16, Vx);
11677
+ })], 16, zx)) : v("", !0)];
11678
+ })], 16, Mx);
11847
11679
  }
11848
- Za.render = Gx;
11680
+ Za.render = Fx;
11849
11681
  const sN = /* @__PURE__ */ Ve({
11850
11682
  inheritAttrs: !1,
11851
11683
  __name: "BccInput",
@@ -11890,7 +11722,7 @@ const sN = /* @__PURE__ */ Ve({
11890
11722
  }));
11891
11723
  }
11892
11724
  });
11893
- var Wx = `
11725
+ var Kx = `
11894
11726
  .p-message {
11895
11727
  display: grid;
11896
11728
  grid-template-rows: 1fr;
@@ -12205,7 +12037,7 @@ var Wx = `
12205
12037
  grid-template-rows: 0fr;
12206
12038
  }
12207
12039
  }
12208
- `, Yx = {
12040
+ `, Vx = {
12209
12041
  root: function(e) {
12210
12042
  var n = e.props;
12211
12043
  return ["p-message p-component p-message-" + n.severity, {
@@ -12221,11 +12053,11 @@ var Wx = `
12221
12053
  text: "p-message-text",
12222
12054
  closeButton: "p-message-close-button",
12223
12055
  closeIcon: "p-message-close-icon"
12224
- }, Zx = E.extend({
12056
+ }, jx = E.extend({
12225
12057
  name: "message",
12226
- style: Wx,
12227
- classes: Yx
12228
- }), Xx = {
12058
+ style: Kx,
12059
+ classes: Vx
12060
+ }), Nx = {
12229
12061
  name: "BaseMessage",
12230
12062
  extends: A,
12231
12063
  props: {
@@ -12262,7 +12094,7 @@ var Wx = `
12262
12094
  default: null
12263
12095
  }
12264
12096
  },
12265
- style: Zx,
12097
+ style: jx,
12266
12098
  provide: function() {
12267
12099
  return {
12268
12100
  $pcMessage: this,
@@ -12279,13 +12111,13 @@ function uo(t) {
12279
12111
  }, uo(t);
12280
12112
  }
12281
12113
  function rs(t, e, n) {
12282
- return (e = Jx(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
12114
+ return (e = Hx(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
12283
12115
  }
12284
- function Jx(t) {
12285
- var e = Qx(t, "string");
12116
+ function Hx(t) {
12117
+ var e = Ux(t, "string");
12286
12118
  return uo(e) == "symbol" ? e : e + "";
12287
12119
  }
12288
- function Qx(t, e) {
12120
+ function Ux(t, e) {
12289
12121
  if (uo(t) != "object" || !t) return t;
12290
12122
  var n = t[Symbol.toPrimitive];
12291
12123
  if (n !== void 0) {
@@ -12297,7 +12129,7 @@ function Qx(t, e) {
12297
12129
  }
12298
12130
  var Xa = {
12299
12131
  name: "Message",
12300
- extends: Xx,
12132
+ extends: Nx,
12301
12133
  inheritAttrs: !1,
12302
12134
  emits: ["close", "life-end"],
12303
12135
  timeout: null,
@@ -12357,21 +12189,21 @@ function as(t) {
12357
12189
  for (var e = 1; e < arguments.length; e++) {
12358
12190
  var n = arguments[e] != null ? arguments[e] : {};
12359
12191
  e % 2 ? is(Object(n), !0).forEach(function(r) {
12360
- _x(t, r, n[r]);
12192
+ qx(t, r, n[r]);
12361
12193
  }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(t, Object.getOwnPropertyDescriptors(n)) : is(Object(n)).forEach(function(r) {
12362
12194
  Object.defineProperty(t, r, Object.getOwnPropertyDescriptor(n, r));
12363
12195
  });
12364
12196
  }
12365
12197
  return t;
12366
12198
  }
12367
- function _x(t, e, n) {
12368
- return (e = e2(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
12199
+ function qx(t, e, n) {
12200
+ return (e = Gx(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
12369
12201
  }
12370
- function e2(t) {
12371
- var e = t2(t, "string");
12202
+ function Gx(t) {
12203
+ var e = Wx(t, "string");
12372
12204
  return co(e) == "symbol" ? e : e + "";
12373
12205
  }
12374
- function t2(t, e) {
12206
+ function Wx(t, e) {
12375
12207
  if (co(t) != "object" || !t) return t;
12376
12208
  var n = t[Symbol.toPrimitive];
12377
12209
  if (n !== void 0) {
@@ -12381,8 +12213,8 @@ function t2(t, e) {
12381
12213
  }
12382
12214
  return (e === "string" ? String : Number)(t);
12383
12215
  }
12384
- var n2 = ["data-p"], o2 = ["data-p"], r2 = ["data-p"], i2 = ["aria-label", "data-p"], a2 = ["data-p"];
12385
- function l2(t, e, n, r, i, o) {
12216
+ var Yx = ["data-p"], Zx = ["data-p"], Xx = ["data-p"], Jx = ["aria-label", "data-p"], Qx = ["data-p"];
12217
+ function _x(t, e, n, r, i, o) {
12386
12218
  var a = S("TimesIcon"), s = se("ripple");
12387
12219
  return d(), y(ke, c({
12388
12220
  name: "p-message",
@@ -12416,7 +12248,7 @@ function l2(t, e, n, r, i, o) {
12416
12248
  key: 0,
12417
12249
  class: t.cx("text"),
12418
12250
  "data-p": o.dataP
12419
- }, t.ptm("text")), [b(t.$slots, "default")], 16, r2)) : v("", !0), t.closable ? Z((d(), f("button", c({
12251
+ }, t.ptm("text")), [b(t.$slots, "default")], 16, Xx)) : v("", !0), t.closable ? Z((d(), f("button", c({
12420
12252
  key: 1,
12421
12253
  class: t.cx("closeButton"),
12422
12254
  "aria-label": o.closeAriaLabel,
@@ -12430,17 +12262,17 @@ function l2(t, e, n, r, i, o) {
12430
12262
  key: 0,
12431
12263
  class: [t.cx("closeIcon"), t.closeIcon],
12432
12264
  "data-p": o.dataP
12433
- }, t.ptm("closeIcon")), null, 16, a2)) : (d(), y(a, c({
12265
+ }, t.ptm("closeIcon")), null, 16, Qx)) : (d(), y(a, c({
12434
12266
  key: 1,
12435
12267
  class: [t.cx("closeIcon"), t.closeIcon],
12436
12268
  "data-p": o.dataP
12437
12269
  }, t.ptm("closeIcon")), null, 16, ["class", "data-p"]))];
12438
- })], 16, i2)), [[s]]) : v("", !0)], 16, o2))], 16)], 16, n2)) : v("", !0)];
12270
+ })], 16, Jx)), [[s]]) : v("", !0)], 16, Zx))], 16)], 16, Yx)) : v("", !0)];
12439
12271
  }),
12440
12272
  _: 3
12441
12273
  }, 16);
12442
12274
  }
12443
- Xa.render = l2;
12275
+ Xa.render = _x;
12444
12276
  const dN = /* @__PURE__ */ Ve({
12445
12277
  __name: "BccMessage",
12446
12278
  props: {
@@ -12493,7 +12325,7 @@ const dN = /* @__PURE__ */ Ve({
12493
12325
  ]), 1040));
12494
12326
  }
12495
12327
  });
12496
- var s2 = {
12328
+ var e2 = {
12497
12329
  root: function(e) {
12498
12330
  var n = e.instance, r = e.props;
12499
12331
  return ["p-tab", {
@@ -12501,10 +12333,10 @@ var s2 = {
12501
12333
  "p-disabled": r.disabled
12502
12334
  }];
12503
12335
  }
12504
- }, d2 = E.extend({
12336
+ }, t2 = E.extend({
12505
12337
  name: "tab",
12506
- classes: s2
12507
- }), u2 = {
12338
+ classes: e2
12339
+ }), n2 = {
12508
12340
  name: "BaseTab",
12509
12341
  extends: A,
12510
12342
  props: {
@@ -12525,7 +12357,7 @@ var s2 = {
12525
12357
  default: !1
12526
12358
  }
12527
12359
  },
12528
- style: d2,
12360
+ style: t2,
12529
12361
  provide: function() {
12530
12362
  return {
12531
12363
  $pcTab: this,
@@ -12534,7 +12366,7 @@ var s2 = {
12534
12366
  }
12535
12367
  }, Du = {
12536
12368
  name: "Tab",
12537
- extends: u2,
12369
+ extends: n2,
12538
12370
  inheritAttrs: !1,
12539
12371
  inject: ["$pcTabs", "$pcTabList"],
12540
12372
  methods: {
@@ -12676,7 +12508,7 @@ var s2 = {
12676
12508
  ripple: ae
12677
12509
  }
12678
12510
  };
12679
- function c2(t, e, n, r, i, o) {
12511
+ function o2(t, e, n, r, i, o) {
12680
12512
  var a = se("ripple");
12681
12513
  return t.asChild ? b(t.$slots, "default", {
12682
12514
  key: 1,
@@ -12697,38 +12529,38 @@ function c2(t, e, n, r, i, o) {
12697
12529
  _: 3
12698
12530
  }, 16, ["class", "data-p", "onClick"])), [[a]]);
12699
12531
  }
12700
- Du.render = c2;
12532
+ Du.render = o2;
12701
12533
  var mn = {
12702
12534
  name: "ChevronLeftIcon",
12703
12535
  extends: oe
12704
12536
  };
12705
- function p2(t, e, n, r, i, o) {
12537
+ function r2(t, e, n, r, i, o) {
12706
12538
  return he(FI, t.pti());
12707
12539
  }
12708
- mn.render = p2;
12540
+ mn.render = r2;
12709
12541
  var tt = {
12710
12542
  name: "ChevronRightIcon",
12711
12543
  extends: oe
12712
12544
  };
12713
- function f2(t, e, n, r, i, o) {
12545
+ function i2(t, e, n, r, i, o) {
12714
12546
  return he(KI, t.pti());
12715
12547
  }
12716
- tt.render = f2;
12717
- var h2 = {
12548
+ tt.render = i2;
12549
+ var a2 = {
12718
12550
  root: "p-tablist",
12719
12551
  content: "p-tablist-content p-tablist-viewport",
12720
12552
  tabList: "p-tablist-tab-list",
12721
12553
  activeBar: "p-tablist-active-bar",
12722
12554
  prevButton: "p-tablist-prev-button p-tablist-nav-button",
12723
12555
  nextButton: "p-tablist-next-button p-tablist-nav-button"
12724
- }, m2 = E.extend({
12556
+ }, l2 = E.extend({
12725
12557
  name: "tablist",
12726
- classes: h2
12727
- }), b2 = {
12558
+ classes: a2
12559
+ }), s2 = {
12728
12560
  name: "BaseTabList",
12729
12561
  extends: A,
12730
12562
  props: {},
12731
- style: m2,
12563
+ style: l2,
12732
12564
  provide: function() {
12733
12565
  return {
12734
12566
  $pcTabList: this,
@@ -12737,7 +12569,7 @@ var h2 = {
12737
12569
  }
12738
12570
  }, Eu = {
12739
12571
  name: "TabList",
12740
- extends: b2,
12572
+ extends: s2,
12741
12573
  inheritAttrs: !1,
12742
12574
  inject: ["$pcTabs"],
12743
12575
  data: function() {
@@ -12837,8 +12669,8 @@ var h2 = {
12837
12669
  directives: {
12838
12670
  ripple: ae
12839
12671
  }
12840
- }, g2 = ["data-p"], v2 = ["aria-label", "tabindex"], y2 = ["data-p"], k2 = ["aria-orientation"], w2 = ["aria-label", "tabindex"];
12841
- function I2(t, e, n, r, i, o) {
12672
+ }, d2 = ["data-p"], u2 = ["aria-label", "tabindex"], c2 = ["data-p"], p2 = ["aria-orientation"], f2 = ["aria-label", "tabindex"];
12673
+ function h2(t, e, n, r, i, o) {
12842
12674
  var a = se("ripple");
12843
12675
  return d(), f("div", c({
12844
12676
  ref: "list",
@@ -12858,7 +12690,7 @@ function I2(t, e, n, r, i, o) {
12858
12690
  "data-pc-group-section": "navigator"
12859
12691
  }), [(d(), y(C(o.templates.previcon || "ChevronLeftIcon"), c({
12860
12692
  "aria-hidden": "true"
12861
- }, t.ptm("prevIcon")), null, 16))], 16, v2)), [[a]]) : v("", !0), k("div", c({
12693
+ }, t.ptm("prevIcon")), null, 16))], 16, u2)), [[a]]) : v("", !0), k("div", c({
12862
12694
  ref: "content",
12863
12695
  class: t.cx("content"),
12864
12696
  onScroll: e[1] || (e[1] = function() {
@@ -12875,7 +12707,7 @@ function I2(t, e, n, r, i, o) {
12875
12707
  class: t.cx("activeBar"),
12876
12708
  role: "presentation",
12877
12709
  "aria-hidden": "true"
12878
- }, t.ptm("activeBar")), null, 16)], 16, k2)], 16, y2), o.showNavigators && i.isNextButtonEnabled ? Z((d(), f("button", c({
12710
+ }, t.ptm("activeBar")), null, 16)], 16, p2)], 16, c2), o.showNavigators && i.isNextButtonEnabled ? Z((d(), f("button", c({
12879
12711
  key: 1,
12880
12712
  ref: "nextButton",
12881
12713
  type: "button",
@@ -12889,20 +12721,20 @@ function I2(t, e, n, r, i, o) {
12889
12721
  "data-pc-group-section": "navigator"
12890
12722
  }), [(d(), y(C(o.templates.nexticon || "ChevronRightIcon"), c({
12891
12723
  "aria-hidden": "true"
12892
- }, t.ptm("nextIcon")), null, 16))], 16, w2)), [[a]]) : v("", !0)], 16, g2);
12724
+ }, t.ptm("nextIcon")), null, 16))], 16, f2)), [[a]]) : v("", !0)], 16, d2);
12893
12725
  }
12894
- Eu.render = I2;
12895
- var C2 = {
12726
+ Eu.render = h2;
12727
+ var m2 = {
12896
12728
  root: function(e) {
12897
12729
  var n = e.instance;
12898
12730
  return ["p-tabpanel", {
12899
12731
  "p-tabpanel-active": n.active
12900
12732
  }];
12901
12733
  }
12902
- }, S2 = E.extend({
12734
+ }, b2 = E.extend({
12903
12735
  name: "tabpanel",
12904
- classes: C2
12905
- }), x2 = {
12736
+ classes: m2
12737
+ }), g2 = {
12906
12738
  name: "BaseTabPanel",
12907
12739
  extends: A,
12908
12740
  props: {
@@ -12930,7 +12762,7 @@ var C2 = {
12930
12762
  contentProps: null,
12931
12763
  disabled: Boolean
12932
12764
  },
12933
- style: S2,
12765
+ style: b2,
12934
12766
  provide: function() {
12935
12767
  return {
12936
12768
  $pcTabPanel: this,
@@ -12939,7 +12771,7 @@ var C2 = {
12939
12771
  }
12940
12772
  }, Au = {
12941
12773
  name: "TabPanel",
12942
- extends: x2,
12774
+ extends: g2,
12943
12775
  inheritAttrs: !1,
12944
12776
  inject: ["$pcTabs"],
12945
12777
  computed: {
@@ -12978,7 +12810,7 @@ var C2 = {
12978
12810
  }
12979
12811
  }
12980
12812
  };
12981
- function P2(t, e, n, r, i, o) {
12813
+ function v2(t, e, n, r, i, o) {
12982
12814
  var a, s;
12983
12815
  return o.$pcTabs ? (d(), f(L, {
12984
12816
  key: 1
@@ -13001,17 +12833,17 @@ function P2(t, e, n, r, i, o) {
13001
12833
  key: 0
13002
12834
  });
13003
12835
  }
13004
- Au.render = P2;
13005
- var O2 = {
12836
+ Au.render = v2;
12837
+ var y2 = {
13006
12838
  root: "p-tabpanels"
13007
- }, T2 = E.extend({
12839
+ }, k2 = E.extend({
13008
12840
  name: "tabpanels",
13009
- classes: O2
13010
- }), L2 = {
12841
+ classes: y2
12842
+ }), w2 = {
13011
12843
  name: "BaseTabPanels",
13012
12844
  extends: A,
13013
12845
  props: {},
13014
- style: T2,
12846
+ style: k2,
13015
12847
  provide: function() {
13016
12848
  return {
13017
12849
  $pcTabPanels: this,
@@ -13020,17 +12852,17 @@ var O2 = {
13020
12852
  }
13021
12853
  }, Ru = {
13022
12854
  name: "TabPanels",
13023
- extends: L2,
12855
+ extends: w2,
13024
12856
  inheritAttrs: !1
13025
12857
  };
13026
- function B2(t, e, n, r, i, o) {
12858
+ function I2(t, e, n, r, i, o) {
13027
12859
  return d(), f("div", c({
13028
12860
  class: t.cx("root"),
13029
12861
  role: "presentation"
13030
12862
  }, t.ptmi("root")), [b(t.$slots, "default")], 16);
13031
12863
  }
13032
- Ru.render = B2;
13033
- var $2 = `
12864
+ Ru.render = I2;
12865
+ var C2 = `
13034
12866
  .p-tabs {
13035
12867
  display: flex;
13036
12868
  flex-direction: column;
@@ -13178,18 +13010,18 @@ var $2 = `
13178
13010
  background: dt('tabs.active.bar.background');
13179
13011
  transition: 250ms cubic-bezier(0.35, 0, 0.25, 1);
13180
13012
  }
13181
- `, M2 = {
13013
+ `, S2 = {
13182
13014
  root: function(e) {
13183
13015
  var n = e.props;
13184
13016
  return ["p-tabs p-component", {
13185
13017
  "p-tabs-scrollable": n.scrollable
13186
13018
  }];
13187
13019
  }
13188
- }, D2 = E.extend({
13020
+ }, x2 = E.extend({
13189
13021
  name: "tabs",
13190
- style: $2,
13191
- classes: M2
13192
- }), E2 = {
13022
+ style: C2,
13023
+ classes: S2
13024
+ }), P2 = {
13193
13025
  name: "BaseTabs",
13194
13026
  extends: A,
13195
13027
  props: {
@@ -13218,7 +13050,7 @@ var $2 = `
13218
13050
  default: !1
13219
13051
  }
13220
13052
  },
13221
- style: D2,
13053
+ style: x2,
13222
13054
  provide: function() {
13223
13055
  return {
13224
13056
  $pcTabs: this,
@@ -13227,7 +13059,7 @@ var $2 = `
13227
13059
  }
13228
13060
  }, zu = {
13229
13061
  name: "Tabs",
13230
- extends: E2,
13062
+ extends: P2,
13231
13063
  inheritAttrs: !1,
13232
13064
  emits: ["update:value"],
13233
13065
  data: function() {
@@ -13249,12 +13081,12 @@ var $2 = `
13249
13081
  }
13250
13082
  }
13251
13083
  };
13252
- function A2(t, e, n, r, i, o) {
13084
+ function O2(t, e, n, r, i, o) {
13253
13085
  return d(), f("div", c({
13254
13086
  class: t.cx("root")
13255
13087
  }, t.ptmi("root")), [b(t.$slots, "default")], 16);
13256
13088
  }
13257
- zu.render = A2;
13089
+ zu.render = O2;
13258
13090
  const uN = /* @__PURE__ */ Ve({
13259
13091
  __name: "BccTabs",
13260
13092
  props: /* @__PURE__ */ Hn({
@@ -13346,18 +13178,18 @@ var Qt = {
13346
13178
  name: "ChevronUpIcon",
13347
13179
  extends: oe
13348
13180
  };
13349
- function R2(t, e, n, r, i, o) {
13181
+ function T2(t, e, n, r, i, o) {
13350
13182
  return he(UI, t.pti());
13351
13183
  }
13352
- Qt.render = R2;
13353
- var z2 = {
13184
+ Qt.render = T2;
13185
+ var L2 = {
13354
13186
  root: "p-accordioncontent",
13355
13187
  contentWrapper: "p-accordioncontent-wrapper",
13356
13188
  content: "p-accordioncontent-content"
13357
- }, F2 = E.extend({
13189
+ }, B2 = E.extend({
13358
13190
  name: "accordioncontent",
13359
- classes: z2
13360
- }), K2 = {
13191
+ classes: L2
13192
+ }), $2 = {
13361
13193
  name: "BaseAccordionContent",
13362
13194
  extends: A,
13363
13195
  props: {
@@ -13370,7 +13202,7 @@ var z2 = {
13370
13202
  default: !1
13371
13203
  }
13372
13204
  },
13373
- style: F2,
13205
+ style: B2,
13374
13206
  provide: function() {
13375
13207
  return {
13376
13208
  $pcAccordionContent: this,
@@ -13379,7 +13211,7 @@ var z2 = {
13379
13211
  }
13380
13212
  }, Fu = {
13381
13213
  name: "AccordionContent",
13382
- extends: K2,
13214
+ extends: $2,
13383
13215
  inheritAttrs: !1,
13384
13216
  inject: ["$pcAccordion", "$pcAccordionPanel"],
13385
13217
  computed: {
@@ -13410,7 +13242,7 @@ var z2 = {
13410
13242
  }
13411
13243
  }
13412
13244
  };
13413
- function V2(t, e, n, r, i, o) {
13245
+ function M2(t, e, n, r, i, o) {
13414
13246
  return t.asChild ? b(t.$slots, "default", {
13415
13247
  key: 1,
13416
13248
  class: x(t.cx("root")),
@@ -13438,22 +13270,22 @@ function V2(t, e, n, r, i, o) {
13438
13270
  _: 3
13439
13271
  }, 16));
13440
13272
  }
13441
- Fu.render = V2;
13273
+ Fu.render = M2;
13442
13274
  var qe = {
13443
13275
  name: "ChevronDownIcon",
13444
13276
  extends: oe
13445
13277
  };
13446
- function j2(t, e, n, r, i, o) {
13278
+ function D2(t, e, n, r, i, o) {
13447
13279
  return he(qI, t.pti());
13448
13280
  }
13449
- qe.render = j2;
13450
- var N2 = {
13281
+ qe.render = D2;
13282
+ var E2 = {
13451
13283
  root: "p-accordionheader",
13452
13284
  toggleicon: "p-accordionheader-toggle-icon"
13453
- }, H2 = E.extend({
13285
+ }, A2 = E.extend({
13454
13286
  name: "accordionheader",
13455
- classes: N2
13456
- }), U2 = {
13287
+ classes: E2
13288
+ }), R2 = {
13457
13289
  name: "BaseAccordionHeader",
13458
13290
  extends: A,
13459
13291
  props: {
@@ -13466,7 +13298,7 @@ var N2 = {
13466
13298
  default: !1
13467
13299
  }
13468
13300
  },
13469
- style: H2,
13301
+ style: A2,
13470
13302
  provide: function() {
13471
13303
  return {
13472
13304
  $pcAccordionHeader: this,
@@ -13475,7 +13307,7 @@ var N2 = {
13475
13307
  }
13476
13308
  }, Ku = {
13477
13309
  name: "AccordionHeader",
13478
- extends: U2,
13310
+ extends: R2,
13479
13311
  inheritAttrs: !1,
13480
13312
  inject: ["$pcAccordion", "$pcAccordionPanel"],
13481
13313
  methods: {
@@ -13602,7 +13434,7 @@ var N2 = {
13602
13434
  ripple: ae
13603
13435
  }
13604
13436
  };
13605
- function q2(t, e, n, r, i, o) {
13437
+ function z2(t, e, n, r, i, o) {
13606
13438
  var a = se("ripple");
13607
13439
  return t.asChild ? b(t.$slots, "default", {
13608
13440
  key: 1,
@@ -13637,8 +13469,8 @@ function q2(t, e, n, r, i, o) {
13637
13469
  _: 3
13638
13470
  }, 16, ["data-p", "class", "onClick"])), [[a]]);
13639
13471
  }
13640
- Ku.render = q2;
13641
- var G2 = {
13472
+ Ku.render = z2;
13473
+ var F2 = {
13642
13474
  root: function(e) {
13643
13475
  var n = e.instance, r = e.props;
13644
13476
  return ["p-accordionpanel", {
@@ -13646,10 +13478,10 @@ var G2 = {
13646
13478
  "p-disabled": r.disabled
13647
13479
  }];
13648
13480
  }
13649
- }, W2 = E.extend({
13481
+ }, K2 = E.extend({
13650
13482
  name: "accordionpanel",
13651
- classes: G2
13652
- }), Y2 = {
13483
+ classes: F2
13484
+ }), V2 = {
13653
13485
  name: "BaseAccordionPanel",
13654
13486
  extends: A,
13655
13487
  props: {
@@ -13670,7 +13502,7 @@ var G2 = {
13670
13502
  default: !1
13671
13503
  }
13672
13504
  },
13673
- style: W2,
13505
+ style: K2,
13674
13506
  provide: function() {
13675
13507
  return {
13676
13508
  $pcAccordionPanel: this,
@@ -13679,7 +13511,7 @@ var G2 = {
13679
13511
  }
13680
13512
  }, Vu = {
13681
13513
  name: "AccordionPanel",
13682
- extends: Y2,
13514
+ extends: V2,
13683
13515
  inheritAttrs: !1,
13684
13516
  inject: ["$pcAccordion"],
13685
13517
  computed: {
@@ -13705,7 +13537,7 @@ var G2 = {
13705
13537
  }
13706
13538
  }
13707
13539
  };
13708
- function Z2(t, e, n, r, i, o) {
13540
+ function j2(t, e, n, r, i, o) {
13709
13541
  return t.asChild ? b(t.$slots, "default", {
13710
13542
  key: 1,
13711
13543
  class: x(t.cx("root")),
@@ -13721,8 +13553,8 @@ function Z2(t, e, n, r, i, o) {
13721
13553
  _: 3
13722
13554
  }, 16, ["class"]));
13723
13555
  }
13724
- Vu.render = Z2;
13725
- var X2 = `
13556
+ Vu.render = j2;
13557
+ var N2 = `
13726
13558
  .p-accordionpanel {
13727
13559
  display: flex;
13728
13560
  flex-direction: column;
@@ -13823,13 +13655,13 @@ var X2 = `
13823
13655
  color: dt('accordion.content.color');
13824
13656
  padding: dt('accordion.content.padding');
13825
13657
  }
13826
- `, J2 = {
13658
+ `, H2 = {
13827
13659
  root: "p-accordion p-component"
13828
- }, Q2 = E.extend({
13660
+ }, U2 = E.extend({
13829
13661
  name: "accordion",
13830
- style: X2,
13831
- classes: J2
13832
- }), _2 = {
13662
+ style: N2,
13663
+ classes: H2
13664
+ }), q2 = {
13833
13665
  name: "BaseAccordion",
13834
13666
  extends: A,
13835
13667
  props: {
@@ -13867,16 +13699,16 @@ var X2 = `
13867
13699
  default: null
13868
13700
  }
13869
13701
  },
13870
- style: Q2,
13702
+ style: U2,
13871
13703
  provide: function() {
13872
13704
  return {
13873
13705
  $pcAccordion: this,
13874
13706
  $parentInstance: this
13875
13707
  };
13876
13708
  }
13877
- }, eP = {
13709
+ }, G2 = {
13878
13710
  name: "Accordion",
13879
- extends: _2,
13711
+ extends: q2,
13880
13712
  inheritAttrs: !1,
13881
13713
  emits: ["update:value", "update:activeIndex", "tab-open", "tab-close", "tab-click"],
13882
13714
  data: function() {
@@ -13984,7 +13816,7 @@ var X2 = `
13984
13816
  ChevronRightIcon: tt
13985
13817
  }
13986
13818
  };
13987
- function tP(t, e, n, r, i, o) {
13819
+ function W2(t, e, n, r, i, o) {
13988
13820
  var a = S("AccordionHeader"), s = S("AccordionContent"), l = S("AccordionPanel");
13989
13821
  return d(), f("div", c({
13990
13822
  class: t.cx("root")
@@ -14048,10 +13880,10 @@ function tP(t, e, n, r, i, o) {
14048
13880
  key: 1
14049
13881
  })], 16);
14050
13882
  }
14051
- eP.render = tP;
14052
- var nP = E.extend({
13883
+ G2.render = W2;
13884
+ var Y2 = E.extend({
14053
13885
  name: "accordiontab"
14054
- }), oP = {
13886
+ }), Z2 = {
14055
13887
  name: "BaseAccordionTab",
14056
13888
  extends: A,
14057
13889
  props: {
@@ -14065,29 +13897,29 @@ var nP = E.extend({
14065
13897
  contentProps: null,
14066
13898
  disabled: Boolean
14067
13899
  },
14068
- style: nP,
13900
+ style: Y2,
14069
13901
  provide: function() {
14070
13902
  return {
14071
13903
  $pcAccordionTab: this,
14072
13904
  $parentInstance: this
14073
13905
  };
14074
13906
  }
14075
- }, rP = {
13907
+ }, X2 = {
14076
13908
  name: "AccordionTab",
14077
- extends: oP,
13909
+ extends: Z2,
14078
13910
  inheritAttrs: !1,
14079
13911
  mounted: function() {
14080
13912
  console.warn("Deprecated since v4. Use the new structure of Accordion instead.");
14081
13913
  }
14082
13914
  };
14083
- function iP(t, e, n, r, i, o) {
13915
+ function J2(t, e, n, r, i, o) {
14084
13916
  return b(t.$slots, "default");
14085
13917
  }
14086
- rP.render = iP;
14087
- var aP = E.extend({
13918
+ X2.render = J2;
13919
+ var Q2 = E.extend({
14088
13920
  name: "animateonscroll-directive"
14089
- }), lP = ne.extend({
14090
- style: aP
13921
+ }), _2 = ne.extend({
13922
+ style: Q2
14091
13923
  });
14092
13924
  function po(t) {
14093
13925
  "@babel/helpers - typeof";
@@ -14111,21 +13943,21 @@ function ss(t) {
14111
13943
  for (var e = 1; e < arguments.length; e++) {
14112
13944
  var n = arguments[e] != null ? arguments[e] : {};
14113
13945
  e % 2 ? ls(Object(n), !0).forEach(function(r) {
14114
- sP(t, r, n[r]);
13946
+ eP(t, r, n[r]);
14115
13947
  }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(t, Object.getOwnPropertyDescriptors(n)) : ls(Object(n)).forEach(function(r) {
14116
13948
  Object.defineProperty(t, r, Object.getOwnPropertyDescriptor(n, r));
14117
13949
  });
14118
13950
  }
14119
13951
  return t;
14120
13952
  }
14121
- function sP(t, e, n) {
14122
- return (e = dP(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
13953
+ function eP(t, e, n) {
13954
+ return (e = tP(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
14123
13955
  }
14124
- function dP(t) {
14125
- var e = uP(t, "string");
13956
+ function tP(t) {
13957
+ var e = nP(t, "string");
14126
13958
  return po(e) == "symbol" ? e : e + "";
14127
13959
  }
14128
- function uP(t, e) {
13960
+ function nP(t, e) {
14129
13961
  if (po(t) != "object" || !t) return t;
14130
13962
  var n = t[Symbol.toPrimitive];
14131
13963
  if (n !== void 0) {
@@ -14136,13 +13968,13 @@ function uP(t, e) {
14136
13968
  return (e === "string" ? String : Number)(t);
14137
13969
  }
14138
13970
  function ds(t, e) {
14139
- return hP(t) || fP(t, e) || pP(t, e) || cP();
13971
+ return aP(t) || iP(t, e) || rP(t, e) || oP();
14140
13972
  }
14141
- function cP() {
13973
+ function oP() {
14142
13974
  throw new TypeError(`Invalid attempt to destructure non-iterable instance.
14143
13975
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
14144
13976
  }
14145
- function pP(t, e) {
13977
+ function rP(t, e) {
14146
13978
  if (t) {
14147
13979
  if (typeof t == "string") return us(t, e);
14148
13980
  var n = {}.toString.call(t).slice(8, -1);
@@ -14154,7 +13986,7 @@ function us(t, e) {
14154
13986
  for (var n = 0, r = Array(e); n < e; n++) r[n] = t[n];
14155
13987
  return r;
14156
13988
  }
14157
- function fP(t, e) {
13989
+ function iP(t, e) {
14158
13990
  var n = t == null ? null : typeof Symbol < "u" && t[Symbol.iterator] || t["@@iterator"];
14159
13991
  if (n != null) {
14160
13992
  var r, i, o, a, s = [], l = !0, u = !1;
@@ -14172,10 +14004,10 @@ function fP(t, e) {
14172
14004
  return s;
14173
14005
  }
14174
14006
  }
14175
- function hP(t) {
14007
+ function aP(t) {
14176
14008
  if (Array.isArray(t)) return t;
14177
14009
  }
14178
- var cN = lP.extend("animateonscroll", {
14010
+ var cN = _2.extend("animateonscroll", {
14179
14011
  created: function() {
14180
14012
  this.$value = this.$value || {}, this.$el.style.opacity = this.$value.enterClass ? "0" : "";
14181
14013
  },
@@ -14229,7 +14061,175 @@ var cN = lP.extend("animateonscroll", {
14229
14061
  (e = this.observer) === null || e === void 0 || e.unobserve(this.$el), (n = this.resetObserver) === null || n === void 0 || n.unobserve(this.$el), this.isObserverActive = !1;
14230
14062
  }
14231
14063
  }
14232
- }), Ee = un(), Ke = {
14064
+ }), ai = {
14065
+ name: "TimesCircleIcon",
14066
+ extends: oe
14067
+ };
14068
+ function lP(t, e, n, r, i, o) {
14069
+ return he(RI, t.pti());
14070
+ }
14071
+ ai.render = lP;
14072
+ var sP = `
14073
+ .p-chip {
14074
+ display: inline-flex;
14075
+ align-items: center;
14076
+ background: dt('chip.background');
14077
+ color: dt('chip.color');
14078
+ border-radius: dt('chip.border.radius');
14079
+ padding-block: dt('chip.padding.y');
14080
+ padding-inline: dt('chip.padding.x');
14081
+ gap: dt('chip.gap');
14082
+ }
14083
+
14084
+ .p-chip-icon {
14085
+ color: dt('chip.icon.color');
14086
+ font-size: dt('chip.icon.size');
14087
+ width: dt('chip.icon.size');
14088
+ height: dt('chip.icon.size');
14089
+ }
14090
+
14091
+ .p-chip-image {
14092
+ border-radius: 50%;
14093
+ width: dt('chip.image.width');
14094
+ height: dt('chip.image.height');
14095
+ margin-inline-start: calc(-1 * dt('chip.padding.y'));
14096
+ }
14097
+
14098
+ .p-chip:has(.p-chip-remove-icon) {
14099
+ padding-inline-end: dt('chip.padding.y');
14100
+ }
14101
+
14102
+ .p-chip:has(.p-chip-image) {
14103
+ padding-block-start: calc(dt('chip.padding.y') / 2);
14104
+ padding-block-end: calc(dt('chip.padding.y') / 2);
14105
+ }
14106
+
14107
+ .p-chip-remove-icon {
14108
+ cursor: pointer;
14109
+ font-size: dt('chip.remove.icon.size');
14110
+ width: dt('chip.remove.icon.size');
14111
+ height: dt('chip.remove.icon.size');
14112
+ color: dt('chip.remove.icon.color');
14113
+ border-radius: 50%;
14114
+ transition:
14115
+ outline-color dt('chip.transition.duration'),
14116
+ box-shadow dt('chip.transition.duration');
14117
+ outline-color: transparent;
14118
+ }
14119
+
14120
+ .p-chip-remove-icon:focus-visible {
14121
+ box-shadow: dt('chip.remove.icon.focus.ring.shadow');
14122
+ outline: dt('chip.remove.icon.focus.ring.width') dt('chip.remove.icon.focus.ring.style') dt('chip.remove.icon.focus.ring.color');
14123
+ outline-offset: dt('chip.remove.icon.focus.ring.offset');
14124
+ }
14125
+ `, dP = {
14126
+ root: "p-chip p-component",
14127
+ image: "p-chip-image",
14128
+ icon: "p-chip-icon",
14129
+ label: "p-chip-label",
14130
+ removeIcon: "p-chip-remove-icon"
14131
+ }, uP = E.extend({
14132
+ name: "chip",
14133
+ style: sP,
14134
+ classes: dP
14135
+ }), cP = {
14136
+ name: "BaseChip",
14137
+ extends: A,
14138
+ props: {
14139
+ label: {
14140
+ type: [String, Number],
14141
+ default: null
14142
+ },
14143
+ icon: {
14144
+ type: String,
14145
+ default: null
14146
+ },
14147
+ image: {
14148
+ type: String,
14149
+ default: null
14150
+ },
14151
+ removable: {
14152
+ type: Boolean,
14153
+ default: !1
14154
+ },
14155
+ removeIcon: {
14156
+ type: String,
14157
+ default: void 0
14158
+ }
14159
+ },
14160
+ style: uP,
14161
+ provide: function() {
14162
+ return {
14163
+ $pcChip: this,
14164
+ $parentInstance: this
14165
+ };
14166
+ }
14167
+ }, Tr = {
14168
+ name: "Chip",
14169
+ extends: cP,
14170
+ inheritAttrs: !1,
14171
+ emits: ["remove"],
14172
+ data: function() {
14173
+ return {
14174
+ visible: !0
14175
+ };
14176
+ },
14177
+ methods: {
14178
+ onKeydown: function(e) {
14179
+ (e.key === "Enter" || e.key === "Backspace") && this.close(e);
14180
+ },
14181
+ close: function(e) {
14182
+ this.visible = !1, this.$emit("remove", e);
14183
+ }
14184
+ },
14185
+ computed: {
14186
+ dataP: function() {
14187
+ return X({
14188
+ removable: this.removable
14189
+ });
14190
+ }
14191
+ },
14192
+ components: {
14193
+ TimesCircleIcon: ai
14194
+ }
14195
+ }, pP = ["aria-label", "data-p"], fP = ["src"];
14196
+ function hP(t, e, n, r, i, o) {
14197
+ return i.visible ? (d(), f("div", c({
14198
+ key: 0,
14199
+ class: t.cx("root"),
14200
+ "aria-label": t.label
14201
+ }, t.ptmi("root"), {
14202
+ "data-p": o.dataP
14203
+ }), [b(t.$slots, "default", {}, function() {
14204
+ return [t.image ? (d(), f("img", c({
14205
+ key: 0,
14206
+ src: t.image
14207
+ }, t.ptm("image"), {
14208
+ class: t.cx("image")
14209
+ }), null, 16, fP)) : t.$slots.icon ? (d(), y(C(t.$slots.icon), c({
14210
+ key: 1,
14211
+ class: t.cx("icon")
14212
+ }, t.ptm("icon")), null, 16, ["class"])) : t.icon ? (d(), f("span", c({
14213
+ key: 2,
14214
+ class: [t.cx("icon"), t.icon]
14215
+ }, t.ptm("icon")), null, 16)) : v("", !0), t.label !== null ? (d(), f("div", c({
14216
+ key: 3,
14217
+ class: t.cx("label")
14218
+ }, t.ptm("label")), D(t.label), 17)) : v("", !0)];
14219
+ }), t.removable ? b(t.$slots, "removeicon", {
14220
+ key: 0,
14221
+ removeCallback: o.close,
14222
+ keydownCallback: o.onKeydown
14223
+ }, function() {
14224
+ return [(d(), y(C(t.removeIcon ? "span" : "TimesCircleIcon"), c({
14225
+ class: [t.cx("removeIcon"), t.removeIcon],
14226
+ onClick: o.close,
14227
+ onKeydown: o.onKeydown
14228
+ }, t.ptm("removeIcon")), null, 16, ["class", "onClick", "onKeydown"]))];
14229
+ }) : v("", !0)], 16, pP)) : v("", !0);
14230
+ }
14231
+ Tr.render = hP;
14232
+ var Ee = un(), Ke = {
14233
14233
  name: "Portal",
14234
14234
  props: {
14235
14235
  appendTo: {
@@ -69175,11 +69175,11 @@ const Hj = { class: "flex items-center gap-2" }, Uj = ["for"], yN = /* @__PURE__
69175
69175
  });
69176
69176
  export {
69177
69177
  Wa as BCC_CONTEXTS,
69178
- eP as BccAccordion,
69178
+ G2 as BccAccordion,
69179
69179
  Fu as BccAccordionContent,
69180
69180
  Ku as BccAccordionHeader,
69181
69181
  Vu as BccAccordionPanel,
69182
- rP as BccAccordionTab,
69182
+ X2 as BccAccordionTab,
69183
69183
  cN as BccAnimateOnScroll,
69184
69184
  EP as BccAutoComplete,
69185
69185
  iN as BccAvatar,