@uxuissk/design-system-core 3.4.6 → 3.4.7

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.
@@ -23412,14 +23412,14 @@ u1([
23412
23412
  l({ type: String })
23413
23413
  ], Li.prototype, "widgetHeight");
23414
23414
  customElements.get("ssk-widget-example") || customElements.define("ssk-widget-example", Li);
23415
- var w6 = Object.defineProperty, Ve = (o, e, t, i) => {
23415
+ var w6 = Object.defineProperty, He = (o, e, t, i) => {
23416
23416
  for (var r = void 0, s = o.length - 1, n; s >= 0; s--)
23417
23417
  (n = o[s]) && (r = n(e, t, r) || r);
23418
23418
  return r && w6(e, t, r), r;
23419
23419
  };
23420
23420
  const Os = class Os extends B {
23421
23421
  constructor() {
23422
- super(...arguments), this.size = "md", this.gap = "md", this.fontFamilyGroup = "sans", this.fontWeight = "normal", this.widgetWidth = "4", this.widgetHeight = "2", this._defaultWidth = "3", this._defaultHeight = "2", this.label = "Label", this.subText = "subText", this.badgeText = "3.25%", this.badgeColor = "success", this.badgeIcon = "solid-arrow-up-right", this.iconLeftColor = "gray", this.iconLeft = "outline-ellipsis-horizontal-circle", this.imgUrl = "https://fastly.picsum.photos/id/216/200/300.jpg?hmac=c3OXbiUxWPMgwnaFpX8ZAfBL5TZzWjnof6mb4OwuSPs", this.buttonColor = "primary", this.buttonVariant = "outline", this.buttonIcon = "solid-arrow-right-circle", this.iconRightColor = "gray", this.iconRight = "outline-ellipsis-horizontal-circle", this.showSubtext = !0, this.showImage = !1, this.showIconLeft = !1, this.showButtonIcon = !1, this.showBadge = !1, this.showIconRight = !1, this.isLabelClamped = !1, this.isSubtextClamped = !1, this.boundCheckLabelEllipsis = this.checkLabelEllipsis.bind(this);
23422
+ super(...arguments), this.size = "md", this.gap = "md", this.fontFamilyGroup = "sans", this.fontWeight = "normal", this.widgetWidth = "4", this.widgetHeight = "2", this._defaultWidth = "3", this._defaultHeight = "2", this.label = "", this.subText = "", this.badgeText = "", this.badgeColor = "success", this.badgeIcon = "", this.iconLeftColor = "gray", this.iconLeft = "", this.imgUrl = "", this.imgAlt = "", this.buttonColor = "primary", this.buttonVariant = "outline", this.buttonIcon = "", this.iconRightColor = "gray", this.iconRight = "", this.showSubtext = !0, this.showImage = !1, this.showIconLeft = !1, this.showButtonIcon = !1, this.showBadge = !1, this.showIconRight = !1, this.isLabelClamped = !1, this.isSubtextClamped = !1, this.boundCheckLabelEllipsis = this.checkLabelEllipsis.bind(this);
23423
23423
  }
23424
23424
  connectedCallback() {
23425
23425
  super.connectedCallback(), window.addEventListener("resize", this.boundCheckLabelEllipsis);
@@ -23558,21 +23558,23 @@ const Os = class Os extends B {
23558
23558
  >
23559
23559
  <div class="matric-style">
23560
23560
  <div class="matric-left">
23561
- ${this.showImage ? m`
23562
- <div>
23563
- <ssk-image src="${this.imgUrl}" alt="demo image" width="56px" height="56px"></ssk-image>
23564
- </div>
23565
- ` : this.showIconLeft ? m`
23561
+ <slot name="left">
23562
+ ${this.showImage && this.imgUrl ? m`
23566
23563
  <div>
23567
- <ssk-misc-icon
23568
- iconname="${this.iconLeft}"
23569
- size="sm"
23570
- themecolor="${this.iconLeftColor}"
23571
- variant="light"
23572
- ></ssk-misc-icon>
23564
+ <ssk-image src="${this.imgUrl}" alt="${this.imgAlt}" width="56px" height="56px"></ssk-image>
23573
23565
  </div>
23574
- ` : C}
23575
-
23566
+ ` : this.showIconLeft && this.iconLeft ? m`
23567
+ <div>
23568
+ <ssk-misc-icon
23569
+ iconname="${this.iconLeft}"
23570
+ size="sm"
23571
+ themecolor="${this.iconLeftColor}"
23572
+ variant="light"
23573
+ ></ssk-misc-icon>
23574
+ </div>
23575
+ ` : C}
23576
+ </slot>
23577
+
23576
23578
  <div class="text-content">
23577
23579
  <div>
23578
23580
  ${this.renderLabel()}
@@ -23585,43 +23587,45 @@ const Os = class Os extends B {
23585
23587
  </div>
23586
23588
  </div>
23587
23589
  <div class="matric-right">
23588
- ${this.showBadge ? m`
23589
- <div>
23590
- <ssk-badge
23591
- variant="subtle"
23592
- size="sm"
23593
- themecolor="${this.badgeColor}">
23594
- <ssk-icon
23595
- name="${this.badgeIcon}"
23596
- themeColor="${this.badgeColor}"
23597
- size="sm"
23598
- ></ssk-icon>
23599
- <label>${this.renderBadgeText()}</label>
23600
- </ssk-badge>
23601
- </div>
23602
- ` : this.showButtonIcon ? m`
23603
- <div>
23604
- <ssk-button
23605
- variant="${this.buttonVariant}"
23606
- themecolor="${this.buttonColor}"
23607
- size="sm"
23608
- @click=${this.handleButtonClick}>
23609
- <ssk-icon slot="prefix"
23610
- name="${this.buttonIcon}"
23611
- size="sm">
23612
- </ssk-icon>
23613
- </ssk-button>
23614
- </div>
23615
- ` : this.showIconRight ? m`
23616
- <div>
23617
- <ssk-misc-icon
23618
- iconname="${this.iconRight}"
23619
- size="sm"
23620
- themecolor="${this.iconRightColor}"
23621
- variant="light"
23622
- ></ssk-misc-icon>
23623
- </div>
23624
- ` : C}
23590
+ <slot name="right">
23591
+ ${this.showBadge && this.badgeText ? m`
23592
+ <div>
23593
+ <ssk-badge
23594
+ variant="subtle"
23595
+ size="sm"
23596
+ themecolor="${this.badgeColor}">
23597
+ ${this.badgeIcon ? m`<ssk-icon
23598
+ name="${this.badgeIcon}"
23599
+ themeColor="${this.badgeColor}"
23600
+ size="sm"
23601
+ ></ssk-icon>` : C}
23602
+ <label>${this.renderBadgeText()}</label>
23603
+ </ssk-badge>
23604
+ </div>
23605
+ ` : this.showButtonIcon && this.buttonIcon ? m`
23606
+ <div>
23607
+ <ssk-button
23608
+ variant="${this.buttonVariant}"
23609
+ themecolor="${this.buttonColor}"
23610
+ size="sm"
23611
+ @click=${this.handleButtonClick}>
23612
+ <ssk-icon slot="prefix"
23613
+ name="${this.buttonIcon}"
23614
+ size="sm">
23615
+ </ssk-icon>
23616
+ </ssk-button>
23617
+ </div>
23618
+ ` : this.showIconRight && this.iconRight ? m`
23619
+ <div>
23620
+ <ssk-misc-icon
23621
+ iconname="${this.iconRight}"
23622
+ size="sm"
23623
+ themecolor="${this.iconRightColor}"
23624
+ variant="light"
23625
+ ></ssk-misc-icon>
23626
+ </div>
23627
+ ` : C}
23628
+ </slot>
23625
23629
  </div>
23626
23630
  </div>
23627
23631
  </div>
@@ -23682,114 +23686,117 @@ Os.registeredName = "ssk-widget-matric", Os.styles = F`
23682
23686
  min-width: 0;
23683
23687
  }
23684
23688
  `;
23685
- let Ce = Os;
23686
- Ve([
23689
+ let xe = Os;
23690
+ He([
23687
23691
  R({ context: U, subscribe: !0 }),
23688
23692
  l({ attribute: !1 })
23689
- ], Ce.prototype, "theme");
23690
- Ve([
23693
+ ], xe.prototype, "theme");
23694
+ He([
23695
+ l({ type: String })
23696
+ ], xe.prototype, "size");
23697
+ He([
23691
23698
  l({ type: String })
23692
- ], Ce.prototype, "size");
23693
- Ve([
23699
+ ], xe.prototype, "color");
23700
+ He([
23694
23701
  l({ type: String })
23695
- ], Ce.prototype, "color");
23696
- Ve([
23702
+ ], xe.prototype, "margin");
23703
+ He([
23697
23704
  l({ type: String })
23698
- ], Ce.prototype, "margin");
23699
- Ve([
23705
+ ], xe.prototype, "padding");
23706
+ He([
23700
23707
  l({ type: String })
23701
- ], Ce.prototype, "padding");
23702
- Ve([
23708
+ ], xe.prototype, "gap");
23709
+ He([
23703
23710
  l({ type: String })
23704
- ], Ce.prototype, "gap");
23705
- Ve([
23711
+ ], xe.prototype, "testId");
23712
+ He([
23706
23713
  l({ type: String })
23707
- ], Ce.prototype, "testId");
23708
- Ve([
23714
+ ], xe.prototype, "fontFamilyGroup");
23715
+ He([
23709
23716
  l({ type: String })
23710
- ], Ce.prototype, "fontFamilyGroup");
23711
- Ve([
23717
+ ], xe.prototype, "fontWeight");
23718
+ He([
23712
23719
  l({ type: String })
23713
- ], Ce.prototype, "fontWeight");
23714
- Ve([
23720
+ ], xe.prototype, "fontSize");
23721
+ He([
23715
23722
  l({ type: String })
23716
- ], Ce.prototype, "fontSize");
23717
- Ve([
23723
+ ], xe.prototype, "widgetWidth");
23724
+ He([
23718
23725
  l({ type: String })
23719
- ], Ce.prototype, "widgetWidth");
23720
- Ve([
23726
+ ], xe.prototype, "widgetHeight");
23727
+ He([
23721
23728
  l({ type: String })
23722
- ], Ce.prototype, "widgetHeight");
23723
- Ve([
23729
+ ], xe.prototype, "label");
23730
+ He([
23724
23731
  l({ type: String })
23725
- ], Ce.prototype, "label");
23726
- Ve([
23732
+ ], xe.prototype, "subText");
23733
+ He([
23727
23734
  l({ type: String })
23728
- ], Ce.prototype, "subText");
23729
- Ve([
23735
+ ], xe.prototype, "badgeText");
23736
+ He([
23730
23737
  l({ type: String })
23731
- ], Ce.prototype, "badgeText");
23732
- Ve([
23738
+ ], xe.prototype, "badgeColor");
23739
+ He([
23733
23740
  l({ type: String })
23734
- ], Ce.prototype, "badgeColor");
23735
- Ve([
23741
+ ], xe.prototype, "badgeIcon");
23742
+ He([
23736
23743
  l({ type: String })
23737
- ], Ce.prototype, "badgeIcon");
23738
- Ve([
23744
+ ], xe.prototype, "iconLeftColor");
23745
+ He([
23739
23746
  l({ type: String })
23740
- ], Ce.prototype, "iconLeftColor");
23741
- Ve([
23747
+ ], xe.prototype, "iconLeft");
23748
+ He([
23742
23749
  l({ type: String })
23743
- ], Ce.prototype, "iconLeft");
23744
- Ve([
23750
+ ], xe.prototype, "imgUrl");
23751
+ He([
23745
23752
  l({ type: String })
23746
- ], Ce.prototype, "imgUrl");
23747
- Ve([
23753
+ ], xe.prototype, "imgAlt");
23754
+ He([
23748
23755
  l({ type: String })
23749
- ], Ce.prototype, "buttonColor");
23750
- Ve([
23756
+ ], xe.prototype, "buttonColor");
23757
+ He([
23751
23758
  l({ type: String })
23752
- ], Ce.prototype, "buttonVariant");
23753
- Ve([
23759
+ ], xe.prototype, "buttonVariant");
23760
+ He([
23754
23761
  l({ type: String })
23755
- ], Ce.prototype, "buttonIcon");
23756
- Ve([
23762
+ ], xe.prototype, "buttonIcon");
23763
+ He([
23757
23764
  l({ type: String })
23758
- ], Ce.prototype, "iconRightColor");
23759
- Ve([
23765
+ ], xe.prototype, "iconRightColor");
23766
+ He([
23760
23767
  l({ type: String })
23761
- ], Ce.prototype, "iconRight");
23762
- Ve([
23768
+ ], xe.prototype, "iconRight");
23769
+ He([
23763
23770
  l({ type: Boolean })
23764
- ], Ce.prototype, "showSubtext");
23765
- Ve([
23771
+ ], xe.prototype, "showSubtext");
23772
+ He([
23766
23773
  l({ type: Boolean })
23767
- ], Ce.prototype, "showImage");
23768
- Ve([
23774
+ ], xe.prototype, "showImage");
23775
+ He([
23769
23776
  l({ type: Boolean })
23770
- ], Ce.prototype, "showIconLeft");
23771
- Ve([
23777
+ ], xe.prototype, "showIconLeft");
23778
+ He([
23772
23779
  l({ type: Boolean })
23773
- ], Ce.prototype, "showButtonIcon");
23774
- Ve([
23780
+ ], xe.prototype, "showButtonIcon");
23781
+ He([
23775
23782
  l({ type: Boolean })
23776
- ], Ce.prototype, "showBadge");
23777
- Ve([
23783
+ ], xe.prototype, "showBadge");
23784
+ He([
23778
23785
  l({ type: Boolean })
23779
- ], Ce.prototype, "showIconRight");
23780
- Ve([
23786
+ ], xe.prototype, "showIconRight");
23787
+ He([
23781
23788
  Y()
23782
- ], Ce.prototype, "isLabelClamped");
23783
- Ve([
23789
+ ], xe.prototype, "isLabelClamped");
23790
+ He([
23784
23791
  Ar(".label-wrapper")
23785
- ], Ce.prototype, "labelWrapperEl");
23786
- Ve([
23792
+ ], xe.prototype, "labelWrapperEl");
23793
+ He([
23787
23794
  Y()
23788
- ], Ce.prototype, "isSubtextClamped");
23789
- Ve([
23795
+ ], xe.prototype, "isSubtextClamped");
23796
+ He([
23790
23797
  Ar(".subtext-wrapper")
23791
- ], Ce.prototype, "subtextWrapperEl");
23792
- customElements.get("ssk-widget-matric") || customElements.define("ssk-widget-matric", Ce);
23798
+ ], xe.prototype, "subtextWrapperEl");
23799
+ customElements.get("ssk-widget-matric") || customElements.define("ssk-widget-matric", xe);
23793
23800
  var y6 = Object.defineProperty, Be = (o, e, t, i) => {
23794
23801
  for (var r = void 0, s = o.length - 1, n; s >= 0; s--)
23795
23802
  (n = o[s]) && (r = n(e, t, r) || r);
@@ -24006,105 +24013,105 @@ js.registeredName = "ssk-widget-user-detail", js.styles = F`
24006
24013
  .bottom-left { min-width: 0; flex: 1;}
24007
24014
  .bottom-right { flex-shrink: 0; }
24008
24015
  `;
24009
- let He = js;
24016
+ let Ve = js;
24010
24017
  Be([
24011
24018
  R({ context: U, subscribe: !0 }),
24012
24019
  l({ attribute: !1 })
24013
- ], He.prototype, "theme");
24020
+ ], Ve.prototype, "theme");
24014
24021
  Be([
24015
24022
  l({ type: String })
24016
- ], He.prototype, "size");
24023
+ ], Ve.prototype, "size");
24017
24024
  Be([
24018
24025
  l({ type: String })
24019
- ], He.prototype, "color");
24026
+ ], Ve.prototype, "color");
24020
24027
  Be([
24021
24028
  l({ type: String })
24022
- ], He.prototype, "margin");
24029
+ ], Ve.prototype, "margin");
24023
24030
  Be([
24024
24031
  l({ type: String })
24025
- ], He.prototype, "padding");
24032
+ ], Ve.prototype, "padding");
24026
24033
  Be([
24027
24034
  l({ type: String })
24028
- ], He.prototype, "gap");
24035
+ ], Ve.prototype, "gap");
24029
24036
  Be([
24030
24037
  l({ type: String })
24031
- ], He.prototype, "testId");
24038
+ ], Ve.prototype, "testId");
24032
24039
  Be([
24033
24040
  l({ type: String })
24034
- ], He.prototype, "fontFamilyGroup");
24041
+ ], Ve.prototype, "fontFamilyGroup");
24035
24042
  Be([
24036
24043
  l({ type: String })
24037
- ], He.prototype, "fontWeight");
24044
+ ], Ve.prototype, "fontWeight");
24038
24045
  Be([
24039
24046
  l({ type: String })
24040
- ], He.prototype, "fontSize");
24047
+ ], Ve.prototype, "fontSize");
24041
24048
  Be([
24042
24049
  l({ type: String })
24043
- ], He.prototype, "widgetWidth");
24050
+ ], Ve.prototype, "widgetWidth");
24044
24051
  Be([
24045
24052
  l({ type: String })
24046
- ], He.prototype, "widgetHeight");
24053
+ ], Ve.prototype, "widgetHeight");
24047
24054
  Be([
24048
24055
  l({ type: String })
24049
- ], He.prototype, "label");
24056
+ ], Ve.prototype, "label");
24050
24057
  Be([
24051
24058
  l({ type: String })
24052
- ], He.prototype, "subText");
24059
+ ], Ve.prototype, "subText");
24053
24060
  Be([
24054
24061
  l({ type: String })
24055
- ], He.prototype, "buttonColor");
24062
+ ], Ve.prototype, "buttonColor");
24056
24063
  Be([
24057
24064
  l({ type: String })
24058
- ], He.prototype, "buttonVariant");
24065
+ ], Ve.prototype, "buttonVariant");
24059
24066
  Be([
24060
24067
  l({ type: String })
24061
- ], He.prototype, "buttonIcon");
24068
+ ], Ve.prototype, "buttonIcon");
24062
24069
  Be([
24063
24070
  l({ type: String })
24064
- ], He.prototype, "buttonText");
24071
+ ], Ve.prototype, "buttonText");
24065
24072
  Be([
24066
24073
  l({ type: String })
24067
- ], He.prototype, "imgUrl");
24074
+ ], Ve.prototype, "imgUrl");
24068
24075
  Be([
24069
24076
  l({ type: String })
24070
- ], He.prototype, "imageShape");
24077
+ ], Ve.prototype, "imageShape");
24071
24078
  Be([
24072
24079
  l({ type: Boolean })
24073
- ], He.prototype, "showSubtext");
24080
+ ], Ve.prototype, "showSubtext");
24074
24081
  Be([
24075
24082
  l({ type: Boolean })
24076
- ], He.prototype, "showImage");
24083
+ ], Ve.prototype, "showImage");
24077
24084
  Be([
24078
24085
  l({ type: Boolean })
24079
- ], He.prototype, "showButtonIcon");
24086
+ ], Ve.prototype, "showButtonIcon");
24080
24087
  Be([
24081
24088
  l({ type: Boolean })
24082
- ], He.prototype, "showButtonTooltip");
24089
+ ], Ve.prototype, "showButtonTooltip");
24083
24090
  Be([
24084
24091
  l({ type: String })
24085
- ], He.prototype, "buttonTooltipText");
24092
+ ], Ve.prototype, "buttonTooltipText");
24086
24093
  Be([
24087
24094
  l({ type: Boolean })
24088
- ], He.prototype, "disabledButton");
24095
+ ], Ve.prototype, "disabledButton");
24089
24096
  Be([
24090
24097
  l({ type: Array })
24091
- ], He.prototype, "rowItems");
24098
+ ], Ve.prototype, "rowItems");
24092
24099
  Be([
24093
24100
  Y()
24094
- ], He.prototype, "clampedStates");
24101
+ ], Ve.prototype, "clampedStates");
24095
24102
  Be([
24096
24103
  Y()
24097
- ], He.prototype, "isLabelClamped");
24104
+ ], Ve.prototype, "isLabelClamped");
24098
24105
  Be([
24099
24106
  Y()
24100
- ], He.prototype, "isSubtextClamped");
24107
+ ], Ve.prototype, "isSubtextClamped");
24101
24108
  Be([
24102
24109
  Ar(".label-wrapper")
24103
- ], He.prototype, "labelWrapperEl");
24110
+ ], Ve.prototype, "labelWrapperEl");
24104
24111
  Be([
24105
24112
  Ar(".subtext-wrapper")
24106
- ], He.prototype, "subtextWrapperEl");
24107
- customElements.get("ssk-widget-user-detail") || customElements.define("ssk-widget-user-detail", He);
24113
+ ], Ve.prototype, "subtextWrapperEl");
24114
+ customElements.get("ssk-widget-user-detail") || customElements.define("ssk-widget-user-detail", Ve);
24108
24115
  var b6 = Object.defineProperty, x6 = Object.getOwnPropertyDescriptor, Ye = (o, e, t, i) => {
24109
24116
  for (var r = i > 1 ? void 0 : i ? x6(e, t) : e, s = o.length - 1, n; s >= 0; s--)
24110
24117
  (n = o[s]) && (r = (i ? n(e, t, r) : n(r)) || r);
@@ -24471,7 +24478,7 @@ Ye([
24471
24478
  Ar(".subtext-wrapper")
24472
24479
  ], Pe.prototype, "subtextWrapperEl", 2);
24473
24480
  customElements.get("ssk-widget-title") || customElements.define("ssk-widget-title", Pe);
24474
- var C6 = Object.defineProperty, xe = (o, e, t, i) => {
24481
+ var C6 = Object.defineProperty, Ce = (o, e, t, i) => {
24475
24482
  for (var r = void 0, s = o.length - 1, n; s >= 0; s--)
24476
24483
  (n = o[s]) && (r = n(e, t, r) || r);
24477
24484
  return r && C6(e, t, r), r;
@@ -24823,122 +24830,122 @@ Gs.registeredName = "ssk-widget-table", Gs.styles = F`
24823
24830
  }
24824
24831
  `;
24825
24832
  let me = Gs;
24826
- xe([
24833
+ Ce([
24827
24834
  R({ context: U, subscribe: !0 }),
24828
24835
  l({ attribute: !1 })
24829
24836
  ], me.prototype, "theme");
24830
- xe([
24837
+ Ce([
24831
24838
  l({ type: String })
24832
24839
  ], me.prototype, "size");
24833
- xe([
24840
+ Ce([
24834
24841
  l({ type: String })
24835
24842
  ], me.prototype, "color");
24836
- xe([
24843
+ Ce([
24837
24844
  l({ type: String })
24838
24845
  ], me.prototype, "margin");
24839
- xe([
24846
+ Ce([
24840
24847
  l({ type: String })
24841
24848
  ], me.prototype, "padding");
24842
- xe([
24849
+ Ce([
24843
24850
  l({ type: String })
24844
24851
  ], me.prototype, "gap");
24845
- xe([
24852
+ Ce([
24846
24853
  l({ type: String })
24847
24854
  ], me.prototype, "testId");
24848
- xe([
24855
+ Ce([
24849
24856
  l({ type: String })
24850
24857
  ], me.prototype, "fontFamilyGroup");
24851
- xe([
24858
+ Ce([
24852
24859
  l({ type: String })
24853
24860
  ], me.prototype, "fontWeight");
24854
- xe([
24861
+ Ce([
24855
24862
  l({ type: String })
24856
24863
  ], me.prototype, "fontSize");
24857
- xe([
24864
+ Ce([
24858
24865
  l({ type: String })
24859
24866
  ], me.prototype, "widgetWidth");
24860
- xe([
24867
+ Ce([
24861
24868
  l({ type: String })
24862
24869
  ], me.prototype, "widgetHeight");
24863
- xe([
24870
+ Ce([
24864
24871
  l({ type: String })
24865
24872
  ], me.prototype, "label");
24866
- xe([
24873
+ Ce([
24867
24874
  l({ type: String })
24868
24875
  ], me.prototype, "description");
24869
- xe([
24876
+ Ce([
24870
24877
  l({ type: String })
24871
24878
  ], me.prototype, "badgeText");
24872
- xe([
24879
+ Ce([
24873
24880
  l({ type: String })
24874
24881
  ], me.prototype, "badgeColor");
24875
- xe([
24882
+ Ce([
24876
24883
  l({ type: String })
24877
24884
  ], me.prototype, "badgeIcon");
24878
- xe([
24885
+ Ce([
24879
24886
  l({ type: Boolean })
24880
24887
  ], me.prototype, "showBadge");
24881
- xe([
24888
+ Ce([
24882
24889
  l({ type: Boolean })
24883
24890
  ], me.prototype, "showDescription");
24884
- xe([
24891
+ Ce([
24885
24892
  l({ type: String })
24886
24893
  ], me.prototype, "buttonColor");
24887
- xe([
24894
+ Ce([
24888
24895
  l({ type: String })
24889
24896
  ], me.prototype, "buttonVariant");
24890
- xe([
24897
+ Ce([
24891
24898
  l({ type: String })
24892
24899
  ], me.prototype, "buttonIcon");
24893
- xe([
24900
+ Ce([
24894
24901
  l({ type: String })
24895
24902
  ], me.prototype, "buttonText");
24896
- xe([
24903
+ Ce([
24897
24904
  l({ type: Boolean })
24898
24905
  ], me.prototype, "disabledButton");
24899
- xe([
24906
+ Ce([
24900
24907
  l({ type: Boolean })
24901
24908
  ], me.prototype, "showButtonIcon");
24902
- xe([
24909
+ Ce([
24903
24910
  l({ type: Array })
24904
24911
  ], me.prototype, "tableColumns");
24905
- xe([
24912
+ Ce([
24906
24913
  l({ type: Array })
24907
24914
  ], me.prototype, "tableData");
24908
- xe([
24915
+ Ce([
24909
24916
  l({ type: Number })
24910
24917
  ], me.prototype, "totalItems");
24911
- xe([
24918
+ Ce([
24912
24919
  l({ type: Number })
24913
24920
  ], me.prototype, "currentPage");
24914
- xe([
24921
+ Ce([
24915
24922
  l({ type: Number })
24916
24923
  ], me.prototype, "rowsPerPage");
24917
- xe([
24924
+ Ce([
24918
24925
  l({ type: String })
24919
24926
  ], me.prototype, "emptyImage");
24920
- xe([
24927
+ Ce([
24921
24928
  l({ type: Number })
24922
24929
  ], me.prototype, "maxVisiblePageButtons");
24923
- xe([
24930
+ Ce([
24924
24931
  Y()
24925
24932
  ], me.prototype, "internalTableData");
24926
- xe([
24933
+ Ce([
24927
24934
  Y()
24928
24935
  ], me.prototype, "activeSortColumn");
24929
- xe([
24936
+ Ce([
24930
24937
  Y()
24931
24938
  ], me.prototype, "activeSortDirection");
24932
- xe([
24939
+ Ce([
24933
24940
  Y()
24934
24941
  ], me.prototype, "isLabelClamped");
24935
- xe([
24942
+ Ce([
24936
24943
  Y()
24937
24944
  ], me.prototype, "isSubtextClamped");
24938
- xe([
24945
+ Ce([
24939
24946
  Ar(".title-wrapper")
24940
24947
  ], me.prototype, "labelWrapperEl");
24941
- xe([
24948
+ Ce([
24942
24949
  Ar(".subtext-wrapper")
24943
24950
  ], me.prototype, "subtextWrapperEl");
24944
24951
  customElements.get("ssk-widget-table") || customElements.define("ssk-widget-table", me);
@@ -43113,10 +43120,10 @@ export {
43113
43120
  T1 as WaveIcon,
43114
43121
  Li as WidgetExample,
43115
43122
  dr as WidgetGrid,
43116
- Ce as WidgetMatric,
43123
+ xe as WidgetMatric,
43117
43124
  me as WidgetTable,
43118
43125
  Pe as WidgetTitle,
43119
- He as WidgetUserDetail,
43126
+ Ve as WidgetUserDetail,
43120
43127
  Av as applyTheme,
43121
43128
  ba as brandContext,
43122
43129
  p as cssVar,