@bspk/ui-ngx 1.0.1 → 1.0.4

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.
@@ -860,6 +860,616 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
860
860
  type: Output
861
861
  }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: true }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], color: [{ type: i0.Input, args: [{ isSignal: true, alias: "color", required: false }] }], initials: [{ type: i0.Input, args: [{ isSignal: true, alias: "initials", required: false }] }], showIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "showIcon", required: false }] }], image: [{ type: i0.Input, args: [{ isSignal: true, alias: "image", required: false }] }], hideTooltip: [{ type: i0.Input, args: [{ isSignal: true, alias: "hideTooltip", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }] } });
862
862
 
863
+ /**
864
+ * A directive to position an element relative to a reference element using floating UI logic.
865
+ *
866
+ * @name UIFloatingDirective
867
+ * @phase Utility
868
+ */
869
+ class UIFloatingDirective {
870
+ render = inject(Renderer2);
871
+ host = inject(ElementRef);
872
+ floating = new FloatingUtility(this.render);
873
+ props = input.required(...(ngDevMode ? [{ debugName: "props", alias: 'ui-floating' }] : [{ alias: 'ui-floating' }]));
874
+ ngAfterViewInit() {
875
+ const nextProps = {
876
+ ...this.props(),
877
+ floating: this.host.nativeElement,
878
+ };
879
+ this.floating.compute(nextProps);
880
+ }
881
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIFloatingDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
882
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.15", type: UIFloatingDirective, isStandalone: true, selector: "[ui-floating]", inputs: { props: { classPropertyName: "props", publicName: "ui-floating", isSignal: true, isRequired: true, transformFunction: null } }, host: { styleAttribute: "position: absolute;" }, ngImport: i0 });
883
+ }
884
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIFloatingDirective, decorators: [{
885
+ type: Directive,
886
+ args: [{
887
+ selector: '[ui-floating]',
888
+ host: {
889
+ style: 'position: absolute;',
890
+ },
891
+ }]
892
+ }], propDecorators: { props: [{ type: i0.Input, args: [{ isSignal: true, alias: "ui-floating", required: true }] }] } });
893
+
894
+ /**
895
+ * A hybrid interactive component that is used frequently to organize content and offers a wide range of control and
896
+ * navigation in most experiences.
897
+ *
898
+ * With its flexible and simple structure, the list item element is core and can meet the needs of many uses cases.
899
+ *
900
+ * The ListItem has three main elements: leading element, label, and trailing element.
901
+ *
902
+ * Leading elements should be one of the following Icon, Img, Avatar.
903
+ *
904
+ * Trailing elements should be one of the following Icon, Checkbox, Button, Radio, Switch, Tag, Txt.
905
+ *
906
+ * @name ListItem
907
+ * @phase Dev
908
+ */
909
+ class UIListItem {
910
+ onClick = new EventEmitter();
911
+ active = input(...(ngDevMode ? [undefined, { debugName: "active" }] : []));
912
+ owner = input(...(ngDevMode ? [undefined, { debugName: "owner" }] : []));
913
+ ariaLabel = input(...(ngDevMode ? [undefined, { debugName: "ariaLabel" }] : []));
914
+ ariaSelected = input(...(ngDevMode ? [undefined, { debugName: "ariaSelected" }] : []));
915
+ ariaDisabled = input(...(ngDevMode ? [undefined, { debugName: "ariaDisabled" }] : []));
916
+ ariaReadonly = input(...(ngDevMode ? [undefined, { debugName: "ariaReadonly" }] : []));
917
+ htmlFor = input(...(ngDevMode ? [undefined, { debugName: "htmlFor" }] : []));
918
+ disabled = input(...(ngDevMode ? [undefined, { debugName: "disabled" }] : []));
919
+ readOnly = input(...(ngDevMode ? [undefined, { debugName: "readOnly" }] : []));
920
+ as = input('div', ...(ngDevMode ? [{ debugName: "as" }] : []));
921
+ href = input(...(ngDevMode ? [undefined, { debugName: "href" }] : []));
922
+ label = input.required(...(ngDevMode ? [{ debugName: "label" }] : []));
923
+ subText = input(...(ngDevMode ? [undefined, { debugName: "subText" }] : []));
924
+ width = input(...(ngDevMode ? [undefined, { debugName: "width" }] : []));
925
+ tabIndex = input(...(ngDevMode ? [undefined, { debugName: "tabIndex" }] : []));
926
+ id = input(...(ngDevMode ? [undefined, { debugName: "id" }] : []));
927
+ listItemId = computed(() => (this.id() ? `list-item-${this.id()}` : undefined), ...(ngDevMode ? [{ debugName: "listItemId" }] : []));
928
+ actionable = computed(() => {
929
+ return (!!(this.href() || this.as() === 'button' || this.onClick.observed || this.onClick.observed) &&
930
+ !this.isReadonly &&
931
+ !this.isDisabled);
932
+ }, ...(ngDevMode ? [{ debugName: "actionable" }] : []));
933
+ get tabindex() {
934
+ // allow explicit tabIndex to override actionable state
935
+ return this.tabIndex() !== undefined ? this.tabIndex() : this.actionable() ? 0 : -1;
936
+ }
937
+ get isReadonly() {
938
+ return !!(this.readOnly() || this.ariaReadonly());
939
+ }
940
+ get isDisabled() {
941
+ return !!(this.disabled() || this.ariaDisabled());
942
+ }
943
+ get As() {
944
+ const as = this.as();
945
+ if (as)
946
+ return as;
947
+ if (this.href())
948
+ return 'a';
949
+ return 'div';
950
+ }
951
+ get role() {
952
+ if (!this.actionable())
953
+ return undefined;
954
+ if (this.as() === 'button')
955
+ return undefined;
956
+ return 'button';
957
+ }
958
+ handleClick(event) {
959
+ if (this.isReadonly || this.isDisabled)
960
+ return;
961
+ this.onClick.emit(event);
962
+ }
963
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIListItem, deps: [], target: i0.ɵɵFactoryTarget.Component });
964
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.15", type: UIListItem, isStandalone: true, selector: "ui-list-item", inputs: { active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, owner: { classPropertyName: "owner", publicName: "owner", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: "ariaLabel", publicName: "ariaLabel", isSignal: true, isRequired: false, transformFunction: null }, ariaSelected: { classPropertyName: "ariaSelected", publicName: "ariaSelected", isSignal: true, isRequired: false, transformFunction: null }, ariaDisabled: { classPropertyName: "ariaDisabled", publicName: "ariaDisabled", isSignal: true, isRequired: false, transformFunction: null }, ariaReadonly: { classPropertyName: "ariaReadonly", publicName: "ariaReadonly", isSignal: true, isRequired: false, transformFunction: null }, htmlFor: { classPropertyName: "htmlFor", publicName: "htmlFor", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, readOnly: { classPropertyName: "readOnly", publicName: "readOnly", isSignal: true, isRequired: false, transformFunction: null }, as: { classPropertyName: "as", publicName: "as", isSignal: true, isRequired: false, transformFunction: null }, href: { classPropertyName: "href", publicName: "href", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: true, transformFunction: null }, subText: { classPropertyName: "subText", publicName: "subText", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, tabIndex: { classPropertyName: "tabIndex", publicName: "tabIndex", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onClick: "onClick" }, host: { properties: { "attr.id": "listItemId()" }, styleAttribute: "display: contents;" }, ngImport: i0, template: `
965
+ <ng-template #inner>
966
+ <ng-content select="[data-leading]"></ng-content>
967
+ <span data-item-label>
968
+ <span data-text [ui-tooltip]="{ truncated: true }">
969
+ {{ label() }}
970
+ </span>
971
+ @if (subText()) {
972
+ <span data-sub-text>{{ subText() }}</span>
973
+ }
974
+ </span>
975
+ <ng-content select="[data-trailing]"></ng-content>
976
+ </ng-template>
977
+ @if (As === 'a') {
978
+ <a
979
+ [attr.aria-label]="ariaLabel() || undefined"
980
+ [attr.aria-selected]="ariaSelected()"
981
+ [attr.role]="role"
982
+ [attr.tabindex]="tabindex"
983
+ [attr.href]="href()"
984
+ [attr.data-action]="actionable() || undefined"
985
+ [attr.data-active]="active() || undefined"
986
+ data-bspk="list-item"
987
+ [attr.data-bspk-owner]="owner() || undefined"
988
+ [attr.data-disabled]="isDisabled || undefined"
989
+ [attr.data-readonly]="isReadonly || undefined"
990
+ [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
991
+ [attr.id]="id()"
992
+ (click)="handleClick($event)"
993
+ (keydown.enter)="handleClick($event)">
994
+ <ng-container *ngTemplateOutlet="inner"></ng-container>
995
+ </a>
996
+ } @else if (As === 'button') {
997
+ <button
998
+ type="button"
999
+ [attr.aria-label]="ariaLabel() || undefined"
1000
+ [attr.aria-selected]="ariaSelected()"
1001
+ [attr.role]="role"
1002
+ [attr.tabindex]="tabindex"
1003
+ [attr.data-action]="actionable() || undefined"
1004
+ [attr.data-active]="active() || undefined"
1005
+ data-bspk="list-item"
1006
+ [attr.data-bspk-owner]="owner() || undefined"
1007
+ [attr.data-disabled]="isDisabled || undefined"
1008
+ [attr.data-readonly]="isReadonly || undefined"
1009
+ [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
1010
+ [attr.id]="id()"
1011
+ (click)="handleClick($event)">
1012
+ <ng-container *ngTemplateOutlet="inner"></ng-container>
1013
+ </button>
1014
+ } @else if (As === 'label') {
1015
+ <label
1016
+ [attr.aria-label]="ariaLabel() || undefined"
1017
+ [attr.aria-selected]="ariaSelected()"
1018
+ [attr.role]="role"
1019
+ [attr.tabindex]="tabindex"
1020
+ [attr.data-action]="actionable() || undefined"
1021
+ [attr.data-active]="active() || undefined"
1022
+ data-bspk="list-item"
1023
+ [attr.data-bspk-owner]="owner() || undefined"
1024
+ [attr.data-disabled]="isDisabled || undefined"
1025
+ [attr.data-readonly]="isReadonly || undefined"
1026
+ [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
1027
+ [attr.id]="id()"
1028
+ [attr.for]="htmlFor()"
1029
+ (click)="handleClick($event)"
1030
+ (keydown.enter)="handleClick($event)">
1031
+ <ng-container *ngTemplateOutlet="inner"></ng-container>
1032
+ </label>
1033
+ } @else {
1034
+ <div
1035
+ [attr.aria-label]="ariaLabel() || undefined"
1036
+ [attr.aria-selected]="ariaSelected()"
1037
+ [attr.role]="role"
1038
+ [attr.tabindex]="tabindex"
1039
+ [attr.data-action]="actionable() || undefined"
1040
+ [attr.data-active]="active() || undefined"
1041
+ data-bspk="list-item"
1042
+ [attr.data-bspk-owner]="owner() || undefined"
1043
+ [attr.data-disabled]="isDisabled || undefined"
1044
+ [attr.data-readonly]="isReadonly || undefined"
1045
+ [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
1046
+ [attr.id]="id()"
1047
+ (click)="handleClick($event)"
1048
+ (keydown.enter)="handleClick($event)">
1049
+ <ng-container *ngTemplateOutlet="inner"></ng-container>
1050
+ </div>
1051
+ }
1052
+ `, isInline: true, styles: ["[data-bspk=list-item]{display:flex;-webkit-user-select:none;user-select:none;color:var(--foreground-neutral-on-surface);background-color:var(--surface-neutral-t1-base);height:100%;overflow:hidden;min-height:var(--list-item-height);flex-direction:row;gap:var(--spacing-sizing-03);padding:var(--spacing-sizing-02);justify-items:stretch;border:unset;margin:unset;text-decoration:unset;width:100%}[data-bspk=list-item][data-width=hug]{width:auto;max-width:100%}[data-pseudo=focus] [data-bspk=list-item],[data-bspk=list-item]:focus-visible,[data-bspk=list-item]:has(*:focus-visible){outline:solid 2px var(--stroke-neutral-focus);isolation:isolate}[data-pseudo=focus] [data-bspk=list-item] [data-inner],[data-bspk=list-item]:focus-visible [data-inner],[data-bspk=list-item]:has(*:focus-visible) [data-inner]{border-color:transparent}[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action][data-active],[data-pseudo=hover] [data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action],[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action]:hover,[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label)[data-active],[data-pseudo=hover] [data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label),[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label):hover{background-color:var(--interactions-neutral-hover-opacity)}[data-pseudo=active] [data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action],[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action]:active,[data-pseudo=active] [data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label),[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label):active{background-color:var(--interactions-neutral-press-opacity)}[data-bspk=list-item] [data-leading],[data-bspk=list-item] [data-item-label],[data-bspk=list-item] [data-trailing]{min-height:100%;display:flex;flex-direction:column;justify-content:space-around;flex:1 1 0;min-width:0}[data-bspk=list-item] [data-leading] svg,[data-bspk=list-item] [data-item-label] svg,[data-bspk=list-item] [data-trailing] svg{width:24px;max-width:unset}[data-bspk=list-item] [data-leading],[data-bspk=list-item] [data-trailing]{width:fit-content;flex:0 0 auto}[data-bspk=list-item] [data-leading]:empty,[data-bspk=list-item] [data-trailing]:empty{display:none}[data-bspk=list-item] [data-item-label]{text-align:left}[data-bspk=list-item] [data-item-label] [data-text]{width:100%;font:var(--labels-base);color:var(--foreground-neutral-on-surface)}[data-bspk=list-item] [data-item-label] [data-sub-text]{width:100%;font:var(--body-small);color:var(--foreground-neutral-on-surface-variant-01)}[data-bspk=list-item] [data-trailing]:has(input){pointer-events:none}[data-bspk=list-item] img{height:36px;width:36px;max-width:unset}[data-bspk=list-item]:is(label) [data-inner]{border-bottom:0;gap:var(--spacing-sizing-02)}[data-bspk=list-item][aria-selected=true]{background-color:var(--surface-brand-primary-highlight)}[data-bspk=list-item][data-disabled] [data-text],[data-bspk=list-item][data-disabled] [data-sub-text],[data-bspk=list-item][data-readonly] [data-text],[data-bspk=list-item][data-readonly] [data-sub-text]{color:var(--foreground-neutral-disabled-on-surface);cursor:not-allowed}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: UITooltipDirective, selector: "[ui-tooltip]", inputs: ["ui-tooltip"], outputs: ["ui-tooltipChange"] }], encapsulation: i0.ViewEncapsulation.None });
1053
+ }
1054
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIListItem, decorators: [{
1055
+ type: Component,
1056
+ args: [{ selector: 'ui-list-item', standalone: true, imports: [NgTemplateOutlet, UITooltipDirective], encapsulation: ViewEncapsulation.None, template: `
1057
+ <ng-template #inner>
1058
+ <ng-content select="[data-leading]"></ng-content>
1059
+ <span data-item-label>
1060
+ <span data-text [ui-tooltip]="{ truncated: true }">
1061
+ {{ label() }}
1062
+ </span>
1063
+ @if (subText()) {
1064
+ <span data-sub-text>{{ subText() }}</span>
1065
+ }
1066
+ </span>
1067
+ <ng-content select="[data-trailing]"></ng-content>
1068
+ </ng-template>
1069
+ @if (As === 'a') {
1070
+ <a
1071
+ [attr.aria-label]="ariaLabel() || undefined"
1072
+ [attr.aria-selected]="ariaSelected()"
1073
+ [attr.role]="role"
1074
+ [attr.tabindex]="tabindex"
1075
+ [attr.href]="href()"
1076
+ [attr.data-action]="actionable() || undefined"
1077
+ [attr.data-active]="active() || undefined"
1078
+ data-bspk="list-item"
1079
+ [attr.data-bspk-owner]="owner() || undefined"
1080
+ [attr.data-disabled]="isDisabled || undefined"
1081
+ [attr.data-readonly]="isReadonly || undefined"
1082
+ [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
1083
+ [attr.id]="id()"
1084
+ (click)="handleClick($event)"
1085
+ (keydown.enter)="handleClick($event)">
1086
+ <ng-container *ngTemplateOutlet="inner"></ng-container>
1087
+ </a>
1088
+ } @else if (As === 'button') {
1089
+ <button
1090
+ type="button"
1091
+ [attr.aria-label]="ariaLabel() || undefined"
1092
+ [attr.aria-selected]="ariaSelected()"
1093
+ [attr.role]="role"
1094
+ [attr.tabindex]="tabindex"
1095
+ [attr.data-action]="actionable() || undefined"
1096
+ [attr.data-active]="active() || undefined"
1097
+ data-bspk="list-item"
1098
+ [attr.data-bspk-owner]="owner() || undefined"
1099
+ [attr.data-disabled]="isDisabled || undefined"
1100
+ [attr.data-readonly]="isReadonly || undefined"
1101
+ [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
1102
+ [attr.id]="id()"
1103
+ (click)="handleClick($event)">
1104
+ <ng-container *ngTemplateOutlet="inner"></ng-container>
1105
+ </button>
1106
+ } @else if (As === 'label') {
1107
+ <label
1108
+ [attr.aria-label]="ariaLabel() || undefined"
1109
+ [attr.aria-selected]="ariaSelected()"
1110
+ [attr.role]="role"
1111
+ [attr.tabindex]="tabindex"
1112
+ [attr.data-action]="actionable() || undefined"
1113
+ [attr.data-active]="active() || undefined"
1114
+ data-bspk="list-item"
1115
+ [attr.data-bspk-owner]="owner() || undefined"
1116
+ [attr.data-disabled]="isDisabled || undefined"
1117
+ [attr.data-readonly]="isReadonly || undefined"
1118
+ [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
1119
+ [attr.id]="id()"
1120
+ [attr.for]="htmlFor()"
1121
+ (click)="handleClick($event)"
1122
+ (keydown.enter)="handleClick($event)">
1123
+ <ng-container *ngTemplateOutlet="inner"></ng-container>
1124
+ </label>
1125
+ } @else {
1126
+ <div
1127
+ [attr.aria-label]="ariaLabel() || undefined"
1128
+ [attr.aria-selected]="ariaSelected()"
1129
+ [attr.role]="role"
1130
+ [attr.tabindex]="tabindex"
1131
+ [attr.data-action]="actionable() || undefined"
1132
+ [attr.data-active]="active() || undefined"
1133
+ data-bspk="list-item"
1134
+ [attr.data-bspk-owner]="owner() || undefined"
1135
+ [attr.data-disabled]="isDisabled || undefined"
1136
+ [attr.data-readonly]="isReadonly || undefined"
1137
+ [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
1138
+ [attr.id]="id()"
1139
+ (click)="handleClick($event)"
1140
+ (keydown.enter)="handleClick($event)">
1141
+ <ng-container *ngTemplateOutlet="inner"></ng-container>
1142
+ </div>
1143
+ }
1144
+ `, host: {
1145
+ style: 'display: contents;',
1146
+ '[attr.id]': 'listItemId()',
1147
+ }, styles: ["[data-bspk=list-item]{display:flex;-webkit-user-select:none;user-select:none;color:var(--foreground-neutral-on-surface);background-color:var(--surface-neutral-t1-base);height:100%;overflow:hidden;min-height:var(--list-item-height);flex-direction:row;gap:var(--spacing-sizing-03);padding:var(--spacing-sizing-02);justify-items:stretch;border:unset;margin:unset;text-decoration:unset;width:100%}[data-bspk=list-item][data-width=hug]{width:auto;max-width:100%}[data-pseudo=focus] [data-bspk=list-item],[data-bspk=list-item]:focus-visible,[data-bspk=list-item]:has(*:focus-visible){outline:solid 2px var(--stroke-neutral-focus);isolation:isolate}[data-pseudo=focus] [data-bspk=list-item] [data-inner],[data-bspk=list-item]:focus-visible [data-inner],[data-bspk=list-item]:has(*:focus-visible) [data-inner]{border-color:transparent}[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action][data-active],[data-pseudo=hover] [data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action],[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action]:hover,[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label)[data-active],[data-pseudo=hover] [data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label),[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label):hover{background-color:var(--interactions-neutral-hover-opacity)}[data-pseudo=active] [data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action],[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action]:active,[data-pseudo=active] [data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label),[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label):active{background-color:var(--interactions-neutral-press-opacity)}[data-bspk=list-item] [data-leading],[data-bspk=list-item] [data-item-label],[data-bspk=list-item] [data-trailing]{min-height:100%;display:flex;flex-direction:column;justify-content:space-around;flex:1 1 0;min-width:0}[data-bspk=list-item] [data-leading] svg,[data-bspk=list-item] [data-item-label] svg,[data-bspk=list-item] [data-trailing] svg{width:24px;max-width:unset}[data-bspk=list-item] [data-leading],[data-bspk=list-item] [data-trailing]{width:fit-content;flex:0 0 auto}[data-bspk=list-item] [data-leading]:empty,[data-bspk=list-item] [data-trailing]:empty{display:none}[data-bspk=list-item] [data-item-label]{text-align:left}[data-bspk=list-item] [data-item-label] [data-text]{width:100%;font:var(--labels-base);color:var(--foreground-neutral-on-surface)}[data-bspk=list-item] [data-item-label] [data-sub-text]{width:100%;font:var(--body-small);color:var(--foreground-neutral-on-surface-variant-01)}[data-bspk=list-item] [data-trailing]:has(input){pointer-events:none}[data-bspk=list-item] img{height:36px;width:36px;max-width:unset}[data-bspk=list-item]:is(label) [data-inner]{border-bottom:0;gap:var(--spacing-sizing-02)}[data-bspk=list-item][aria-selected=true]{background-color:var(--surface-brand-primary-highlight)}[data-bspk=list-item][data-disabled] [data-text],[data-bspk=list-item][data-disabled] [data-sub-text],[data-bspk=list-item][data-readonly] [data-text],[data-bspk=list-item][data-readonly] [data-sub-text]{color:var(--foreground-neutral-disabled-on-surface);cursor:not-allowed}\n"] }]
1148
+ }], propDecorators: { onClick: [{
1149
+ type: Output
1150
+ }], active: [{ type: i0.Input, args: [{ isSignal: true, alias: "active", required: false }] }], owner: [{ type: i0.Input, args: [{ isSignal: true, alias: "owner", required: false }] }], ariaLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaLabel", required: false }] }], ariaSelected: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaSelected", required: false }] }], ariaDisabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaDisabled", required: false }] }], ariaReadonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaReadonly", required: false }] }], htmlFor: [{ type: i0.Input, args: [{ isSignal: true, alias: "htmlFor", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], readOnly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readOnly", required: false }] }], as: [{ type: i0.Input, args: [{ isSignal: true, alias: "as", required: false }] }], href: [{ type: i0.Input, args: [{ isSignal: true, alias: "href", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: true }] }], subText: [{ type: i0.Input, args: [{ isSignal: true, alias: "subText", required: false }] }], width: [{ type: i0.Input, args: [{ isSignal: true, alias: "width", required: false }] }], tabIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "tabIndex", required: false }] }], id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
1151
+
1152
+ /**
1153
+ * A container housing a simple list of options presented to the customer to select one option at a time.
1154
+ *
1155
+ * @example
1156
+ * <ui-menu>
1157
+ * <ui-list-item label="List Item"></ui-list-item>
1158
+ * <ui-list-item label="List Item"></ui-list-item>
1159
+ * <ui-list-item label="List Item"></ui-list-item>
1160
+ * </ui-menu>
1161
+ *
1162
+ * @name Menu
1163
+ * @phase Dev
1164
+ */
1165
+ class UIMenu {
1166
+ ariaLabel = input(undefined, ...(ngDevMode ? [{ debugName: "ariaLabel" }] : []));
1167
+ width = input(undefined, ...(ngDevMode ? [{ debugName: "width" }] : []));
1168
+ owner = input(undefined, ...(ngDevMode ? [{ debugName: "owner" }] : []));
1169
+ id = input(undefined, ...(ngDevMode ? [{ debugName: "id" }] : []));
1170
+ ariaRole = input(undefined, ...(ngDevMode ? [{ debugName: "ariaRole" }] : []));
1171
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIMenu, deps: [], target: i0.ɵɵFactoryTarget.Component });
1172
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.3.15", type: UIMenu, isStandalone: true, selector: "ui-menu", inputs: { ariaLabel: { classPropertyName: "ariaLabel", publicName: "ariaLabel", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, owner: { classPropertyName: "owner", publicName: "owner", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, ariaRole: { classPropertyName: "ariaRole", publicName: "ariaRole", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-bspk-utility": "menu", "tabindex": "-1" }, properties: { "attr.aria-label": "ariaLabel() || null", "attr.data-bspk-owner": "owner() || null", "attr.id": "id() || null", "attr.role": "ariaRole() || null", "style.width": "width() || null" } }, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, styles: ["[data-bspk-utility=menu]{--overflow-y: hidden;width:332px;box-sizing:border-box;border:1px solid var(--stroke-neutral-low);background-color:var(--surface-neutral-t1-base);box-shadow:var(--drop-shadow-float);border-radius:var(--radius-lg);display:flex;flex-direction:column;overflow:hidden auto;height:fit-content;z-index:var(--z-index-dropdown)}\n"], encapsulation: i0.ViewEncapsulation.None });
1173
+ }
1174
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIMenu, decorators: [{
1175
+ type: Component,
1176
+ args: [{ selector: 'ui-menu', standalone: true, template: `<ng-content></ng-content>`, encapsulation: ViewEncapsulation.None, host: {
1177
+ '[attr.aria-label]': 'ariaLabel() || null',
1178
+ '[attr.data-bspk-owner]': 'owner() || null',
1179
+ 'data-bspk-utility': 'menu',
1180
+ '[attr.id]': 'id() || null',
1181
+ '[attr.role]': 'ariaRole() || null',
1182
+ '[style.width]': 'width() || null',
1183
+ tabindex: '-1',
1184
+ }, styles: ["[data-bspk-utility=menu]{--overflow-y: hidden;width:332px;box-sizing:border-box;border:1px solid var(--stroke-neutral-low);background-color:var(--surface-neutral-t1-base);box-shadow:var(--drop-shadow-float);border-radius:var(--radius-lg);display:flex;flex-direction:column;overflow:hidden auto;height:fit-content;z-index:var(--z-index-dropdown)}\n"] }]
1185
+ }], propDecorators: { ariaLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaLabel", required: false }] }], width: [{ type: i0.Input, args: [{ isSignal: true, alias: "width", required: false }] }], owner: [{ type: i0.Input, args: [{ isSignal: true, alias: "owner", required: false }] }], id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }], ariaRole: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaRole", required: false }] }] } });
1186
+
1187
+ class UIAvatarGroupOverflow {
1188
+ overflowBtn = viewChild('overflowBtn', ...(ngDevMode ? [{ debugName: "overflowBtn" }] : []));
1189
+ size = input('medium', ...(ngDevMode ? [{ debugName: "size" }] : []));
1190
+ items = input.required(...(ngDevMode ? [{ debugName: "items" }] : []));
1191
+ open = model(false, ...(ngDevMode ? [{ debugName: "open" }] : []));
1192
+ menuId = input.required(...(ngDevMode ? [{ debugName: "menuId" }] : []));
1193
+ activeElementId = model(null, ...(ngDevMode ? [{ debugName: "activeElementId" }] : []));
1194
+ menuReference = input.required(...(ngDevMode ? [{ debugName: "menuReference" }] : []));
1195
+ get maxMenuHeight() {
1196
+ return this.items.length > 5 ? 'calc(var(--spacing-sizing-12) * 5)' : '';
1197
+ }
1198
+ closeMenu() {
1199
+ this.open.set(false);
1200
+ }
1201
+ toggleMenu() {
1202
+ this.open.set(!this.open());
1203
+ const items = this.items();
1204
+ if (this.open() && items.length) {
1205
+ this.activeElementId.set(items[0].id);
1206
+ }
1207
+ else {
1208
+ this.activeElementId.set(null);
1209
+ }
1210
+ }
1211
+ avatarTemplate(item) {
1212
+ return {
1213
+ ...item,
1214
+ hideTooltip: true,
1215
+ size: 'small',
1216
+ };
1217
+ }
1218
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIAvatarGroupOverflow, deps: [], target: i0.ɵɵFactoryTarget.Component });
1219
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.15", type: UIAvatarGroupOverflow, isStandalone: true, selector: "ui-avatar-group-overflow", inputs: { size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: true, transformFunction: null }, open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, menuId: { classPropertyName: "menuId", publicName: "menuId", isSignal: true, isRequired: true, transformFunction: null }, activeElementId: { classPropertyName: "activeElementId", publicName: "activeElementId", isSignal: true, isRequired: false, transformFunction: null }, menuReference: { classPropertyName: "menuReference", publicName: "menuReference", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { open: "openChange", activeElementId: "activeElementIdChange" }, host: { styleAttribute: "display: contents;" }, viewQueries: [{ propertyName: "overflowBtn", first: true, predicate: ["overflowBtn"], descendants: true, isSignal: true }], ngImport: i0, template: `
1220
+ @if (open()) {
1221
+ <ng-container>
1222
+ <ui-menu
1223
+ [ui-floating]="{ reference: menuReference() }"
1224
+ [id]="menuId()"
1225
+ [style.width]="'fit-content'"
1226
+ [style.paddingRight]="'var(--spacing-sizing-04)'"
1227
+ [style.--list-item-height]="'var(--spacing-sizing-12)'"
1228
+ [style.maxHeight]="maxMenuHeight"
1229
+ role="menu">
1230
+ @for (item of items(); track item.id) {
1231
+ <ui-list-item [active]="activeElementId() === item.id" [label]="item.name">
1232
+ <span data-leading>
1233
+ <ui-avatar
1234
+ [hideTooltip]="true"
1235
+ [size]="'small'"
1236
+ [id]="item.id"
1237
+ [name]="item.name"
1238
+ [image]="item.image"
1239
+ [initials]="item.initials">
1240
+ </ui-avatar>
1241
+ </span>
1242
+ </ui-list-item>
1243
+ }
1244
+ </ui-menu>
1245
+ </ng-container>
1246
+ }
1247
+ <ng-template #avatar let-item>
1248
+ <ui-avatar
1249
+ [hideTooltip]="true"
1250
+ [size]="'small'"
1251
+ [id]="item.id"
1252
+ [name]="item.name"
1253
+ [image]="item.image"
1254
+ [initials]="item.initials"></ui-avatar>
1255
+ </ng-template>
1256
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: UIAvatar, selector: "ui-avatar", inputs: ["name", "size", "color", "initials", "showIcon", "image", "hideTooltip", "disabled"], outputs: ["onClick"] }, { kind: "component", type: UIListItem, selector: "ui-list-item", inputs: ["active", "owner", "ariaLabel", "ariaSelected", "ariaDisabled", "ariaReadonly", "htmlFor", "disabled", "readOnly", "as", "href", "label", "subText", "width", "tabIndex", "id"], outputs: ["onClick"] }, { kind: "component", type: UIMenu, selector: "ui-menu", inputs: ["ariaLabel", "width", "owner", "id", "ariaRole"] }, { kind: "directive", type: UIFloatingDirective, selector: "[ui-floating]", inputs: ["ui-floating"] }], encapsulation: i0.ViewEncapsulation.None });
1257
+ }
1258
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIAvatarGroupOverflow, decorators: [{
1259
+ type: Component,
1260
+ args: [{
1261
+ selector: 'ui-avatar-group-overflow',
1262
+ standalone: true,
1263
+ imports: [CommonModule, UIAvatar, UIListItem, UIMenu, UIFloatingDirective],
1264
+ template: `
1265
+ @if (open()) {
1266
+ <ng-container>
1267
+ <ui-menu
1268
+ [ui-floating]="{ reference: menuReference() }"
1269
+ [id]="menuId()"
1270
+ [style.width]="'fit-content'"
1271
+ [style.paddingRight]="'var(--spacing-sizing-04)'"
1272
+ [style.--list-item-height]="'var(--spacing-sizing-12)'"
1273
+ [style.maxHeight]="maxMenuHeight"
1274
+ role="menu">
1275
+ @for (item of items(); track item.id) {
1276
+ <ui-list-item [active]="activeElementId() === item.id" [label]="item.name">
1277
+ <span data-leading>
1278
+ <ui-avatar
1279
+ [hideTooltip]="true"
1280
+ [size]="'small'"
1281
+ [id]="item.id"
1282
+ [name]="item.name"
1283
+ [image]="item.image"
1284
+ [initials]="item.initials">
1285
+ </ui-avatar>
1286
+ </span>
1287
+ </ui-list-item>
1288
+ }
1289
+ </ui-menu>
1290
+ </ng-container>
1291
+ }
1292
+ <ng-template #avatar let-item>
1293
+ <ui-avatar
1294
+ [hideTooltip]="true"
1295
+ [size]="'small'"
1296
+ [id]="item.id"
1297
+ [name]="item.name"
1298
+ [image]="item.image"
1299
+ [initials]="item.initials"></ui-avatar>
1300
+ </ng-template>
1301
+ `,
1302
+ encapsulation: ViewEncapsulation.None,
1303
+ host: {
1304
+ style: `display: contents;`,
1305
+ },
1306
+ }]
1307
+ }], propDecorators: { overflowBtn: [{ type: i0.ViewChild, args: ['overflowBtn', { isSignal: true }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: true }] }], open: [{ type: i0.Input, args: [{ isSignal: true, alias: "open", required: false }] }, { type: i0.Output, args: ["openChange"] }], menuId: [{ type: i0.Input, args: [{ isSignal: true, alias: "menuId", required: true }] }], activeElementId: [{ type: i0.Input, args: [{ isSignal: true, alias: "activeElementId", required: false }] }, { type: i0.Output, args: ["activeElementIdChange"] }], menuReference: [{ type: i0.Input, args: [{ isSignal: true, alias: "menuReference", required: true }] }] } });
1308
+
1309
+ class UIAvatarGroup {
1310
+ items = input([], ...(ngDevMode ? [{ debugName: "items" }] : []));
1311
+ size = input('small', ...(ngDevMode ? [{ debugName: "size" }] : []));
1312
+ max = input(5, ...(ngDevMode ? [{ debugName: "max" }] : []));
1313
+ variant = input('stacked', ...(ngDevMode ? [{ debugName: "variant" }] : []));
1314
+ style = input(null, ...(ngDevMode ? [{ debugName: "style" }] : []));
1315
+ open = signal(false, ...(ngDevMode ? [{ debugName: "open" }] : []));
1316
+ activeElementId = signal(null, ...(ngDevMode ? [{ debugName: "activeElementId" }] : []));
1317
+ menuId = input(uniqueId('avatar-group-menu'), ...(ngDevMode ? [{ debugName: "menuId" }] : []));
1318
+ get visibleItems() {
1319
+ // Use .value() for signals created by input()
1320
+ const items = this.items();
1321
+ const max = this.max();
1322
+ return items.slice(0, max).map((item, idx) => ({
1323
+ ...item,
1324
+ id: `${item.name?.replace(/\s+/g, '-').toLowerCase()}-${idx}`,
1325
+ }));
1326
+ }
1327
+ get overflowItems() {
1328
+ const items = this.items();
1329
+ const max = this.max();
1330
+ return items.slice(max).map((item, idx) => ({
1331
+ ...item,
1332
+ id: `${item.name?.replace(/\s+/g, '-').toLowerCase()}-overflow-${idx}`,
1333
+ }));
1334
+ }
1335
+ get overflowButtonLabel() {
1336
+ const count = this.overflowItems.length;
1337
+ return `Show ${count} more avatar${count > 1 ? 's' : ''}`;
1338
+ }
1339
+ handleKeydown(event) {
1340
+ if (!this.open)
1341
+ return;
1342
+ const items = this.items();
1343
+ const idx = items.findIndex((i) => i.id === this.activeElementId());
1344
+ if (event.key === 'ArrowDown') {
1345
+ const nextIdx = (idx + 1) % items.length;
1346
+ this.activeElementId.set(items[nextIdx].id);
1347
+ event.preventDefault();
1348
+ }
1349
+ else if (event.key === 'ArrowUp') {
1350
+ const prevIdx = (idx - 1 + items.length) % items.length;
1351
+ this.activeElementId.set(items[prevIdx].id);
1352
+ event.preventDefault();
1353
+ }
1354
+ else if (event.key === 'Escape') {
1355
+ this.open.set(false);
1356
+ event.preventDefault();
1357
+ }
1358
+ }
1359
+ toggleMenu() {
1360
+ this.open.set(!this.open());
1361
+ const items = this.items();
1362
+ if (this.open() && items.length) {
1363
+ this.activeElementId.set(items[0].id);
1364
+ }
1365
+ else {
1366
+ this.activeElementId.set(null);
1367
+ }
1368
+ }
1369
+ closeMenu() {
1370
+ this.open.set(false);
1371
+ }
1372
+ onAvatarClick() {
1373
+ // Placeholder for avatar click handling
1374
+ }
1375
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIAvatarGroup, deps: [], target: i0.ɵɵFactoryTarget.Component });
1376
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.15", type: UIAvatarGroup, isStandalone: true, selector: "ui-avatar-group", inputs: { items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, max: { classPropertyName: "max", publicName: "max", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, style: { classPropertyName: "style", publicName: "style", isSignal: true, isRequired: false, transformFunction: null }, menuId: { classPropertyName: "menuId", publicName: "menuId", isSignal: true, isRequired: false, transformFunction: null } }, host: { styleAttribute: "display: contents;" }, ngImport: i0, template: `
1377
+ <div
1378
+ data-bspk="avatar-group"
1379
+ [attr.data-max]="max()"
1380
+ [attr.data-size]="size()"
1381
+ [attr.data-variant]="variant()"
1382
+ [ngStyle]="style">
1383
+ <div data-wrap>
1384
+ @for (item of visibleItems; track item.id) {
1385
+ <ui-avatar
1386
+ [name]="item.name"
1387
+ [image]="item.image"
1388
+ [initials]="item.initials"
1389
+ [id]="item.id"
1390
+ [size]="size()"
1391
+ (click)="onAvatarClick()"></ui-avatar>
1392
+ }
1393
+ @if (overflowItems.length > 0) {
1394
+ <button
1395
+ #overflowBtn
1396
+ [attr.aria-activedescendant]="activeElementId() || null"
1397
+ [attr.aria-controls]="open() ? menuId : null"
1398
+ [attr.aria-expanded]="open()"
1399
+ aria-haspopup="menu"
1400
+ [attr.aria-label]="overflowButtonLabel"
1401
+ data-bspk="avatar"
1402
+ data-bspk-owner="avatar-overflow"
1403
+ [attr.data-size]="size()"
1404
+ (blur)="closeMenu()"
1405
+ (click)="toggleMenu()"
1406
+ (keydown)="handleKeydown($event)"
1407
+ role="combobox">
1408
+ <span data-overflow-count>+{{ overflowItems.length }}</span>
1409
+ </button>
1410
+ <ui-avatar-group-overflow
1411
+ [open]="open()"
1412
+ [activeElementId]="activeElementId()"
1413
+ [menuId]="menuId()!"
1414
+ [items]="overflowItems"
1415
+ [size]="size()"
1416
+ [menuReference]="overflowBtn" />
1417
+ }
1418
+ </div>
1419
+ </div>
1420
+ `, isInline: true, styles: ["[data-bspk=avatar-group]{width:fit-content;max-width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center}[data-bspk=avatar-group] [data-wrap]{min-width:fit-content;display:flex;flex-direction:row;align-items:center;justify-content:center}[data-bspk=avatar-group] [data-bspk=avatar]{z-index:1}[data-bspk=avatar-group] [data-bspk=avatar]:hover{z-index:2}[data-bspk=avatar-group] [data-bspk=avatar][data-bspk-owner=avatar-overflow]{--avatar-border: solid 1px var(--stroke-neutral-low);background-color:var(--surface-neutral-t1-base)}[data-bspk=avatar-group][data-variant=spread]{--avatar-border: none}[data-bspk=avatar-group][data-variant=spread] [data-bspk=avatar]+[data-bspk=avatar]{margin-left:var(--spacing-sizing-02)}[data-bspk=avatar-group][data-variant=stacked]{--avatar-border: solid 1px var(--stroke-neutral-low)}[data-bspk=avatar-group][data-variant=stacked] [data-bspk=avatar]+[data-bspk=avatar]{margin-left:calc(var(--spacing-sizing-02) * -1)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: UIAvatar, selector: "ui-avatar", inputs: ["name", "size", "color", "initials", "showIcon", "image", "hideTooltip", "disabled"], outputs: ["onClick"] }, { kind: "component", type: UIAvatarGroupOverflow, selector: "ui-avatar-group-overflow", inputs: ["size", "items", "open", "menuId", "activeElementId", "menuReference"], outputs: ["openChange", "activeElementIdChange"] }], encapsulation: i0.ViewEncapsulation.None });
1421
+ }
1422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIAvatarGroup, decorators: [{
1423
+ type: Component,
1424
+ args: [{ selector: 'ui-avatar-group', standalone: true, imports: [CommonModule, UIAvatar, UIAvatarGroupOverflow], template: `
1425
+ <div
1426
+ data-bspk="avatar-group"
1427
+ [attr.data-max]="max()"
1428
+ [attr.data-size]="size()"
1429
+ [attr.data-variant]="variant()"
1430
+ [ngStyle]="style">
1431
+ <div data-wrap>
1432
+ @for (item of visibleItems; track item.id) {
1433
+ <ui-avatar
1434
+ [name]="item.name"
1435
+ [image]="item.image"
1436
+ [initials]="item.initials"
1437
+ [id]="item.id"
1438
+ [size]="size()"
1439
+ (click)="onAvatarClick()"></ui-avatar>
1440
+ }
1441
+ @if (overflowItems.length > 0) {
1442
+ <button
1443
+ #overflowBtn
1444
+ [attr.aria-activedescendant]="activeElementId() || null"
1445
+ [attr.aria-controls]="open() ? menuId : null"
1446
+ [attr.aria-expanded]="open()"
1447
+ aria-haspopup="menu"
1448
+ [attr.aria-label]="overflowButtonLabel"
1449
+ data-bspk="avatar"
1450
+ data-bspk-owner="avatar-overflow"
1451
+ [attr.data-size]="size()"
1452
+ (blur)="closeMenu()"
1453
+ (click)="toggleMenu()"
1454
+ (keydown)="handleKeydown($event)"
1455
+ role="combobox">
1456
+ <span data-overflow-count>+{{ overflowItems.length }}</span>
1457
+ </button>
1458
+ <ui-avatar-group-overflow
1459
+ [open]="open()"
1460
+ [activeElementId]="activeElementId()"
1461
+ [menuId]="menuId()!"
1462
+ [items]="overflowItems"
1463
+ [size]="size()"
1464
+ [menuReference]="overflowBtn" />
1465
+ }
1466
+ </div>
1467
+ </div>
1468
+ `, encapsulation: ViewEncapsulation.None, host: {
1469
+ style: `display: contents;`,
1470
+ }, styles: ["[data-bspk=avatar-group]{width:fit-content;max-width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center}[data-bspk=avatar-group] [data-wrap]{min-width:fit-content;display:flex;flex-direction:row;align-items:center;justify-content:center}[data-bspk=avatar-group] [data-bspk=avatar]{z-index:1}[data-bspk=avatar-group] [data-bspk=avatar]:hover{z-index:2}[data-bspk=avatar-group] [data-bspk=avatar][data-bspk-owner=avatar-overflow]{--avatar-border: solid 1px var(--stroke-neutral-low);background-color:var(--surface-neutral-t1-base)}[data-bspk=avatar-group][data-variant=spread]{--avatar-border: none}[data-bspk=avatar-group][data-variant=spread] [data-bspk=avatar]+[data-bspk=avatar]{margin-left:var(--spacing-sizing-02)}[data-bspk=avatar-group][data-variant=stacked]{--avatar-border: solid 1px var(--stroke-neutral-low)}[data-bspk=avatar-group][data-variant=stacked] [data-bspk=avatar]+[data-bspk=avatar]{margin-left:calc(var(--spacing-sizing-02) * -1)}\n"] }]
1471
+ }], propDecorators: { items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], max: [{ type: i0.Input, args: [{ isSignal: true, alias: "max", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], style: [{ type: i0.Input, args: [{ isSignal: true, alias: "style", required: false }] }], menuId: [{ type: i0.Input, args: [{ isSignal: true, alias: "menuId", required: false }] }] } });
1472
+
863
1473
  /**
864
1474
  * Visual indicator for new items within a parent page represented with a numerical count of new items.
865
1475
  *
@@ -62845,37 +63455,6 @@ function scrollLimitStyle(scrollLimitProp, itemCount) {
62845
63455
  };
62846
63456
  }
62847
63457
 
62848
- /**
62849
- * A directive to position an element relative to a reference element using floating UI logic.
62850
- *
62851
- * @name UIFloatingDirective
62852
- * @phase Utility
62853
- */
62854
- class UIFloatingDirective {
62855
- render = inject(Renderer2);
62856
- host = inject(ElementRef);
62857
- floating = new FloatingUtility(this.render);
62858
- props = input.required(...(ngDevMode ? [{ debugName: "props", alias: 'ui-floating' }] : [{ alias: 'ui-floating' }]));
62859
- ngAfterViewInit() {
62860
- const nextProps = {
62861
- ...this.props(),
62862
- floating: this.host.nativeElement,
62863
- };
62864
- this.floating.compute(nextProps);
62865
- }
62866
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIFloatingDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
62867
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.15", type: UIFloatingDirective, isStandalone: true, selector: "[ui-floating]", inputs: { props: { classPropertyName: "props", publicName: "ui-floating", isSignal: true, isRequired: true, transformFunction: null } }, host: { styleAttribute: "position: absolute;" }, ngImport: i0 });
62868
- }
62869
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIFloatingDirective, decorators: [{
62870
- type: Directive,
62871
- args: [{
62872
- selector: '[ui-floating]',
62873
- host: {
62874
- style: 'position: absolute;',
62875
- },
62876
- }]
62877
- }], propDecorators: { props: [{ type: i0.Input, args: [{ isSignal: true, alias: "ui-floating", required: true }] }] } });
62878
-
62879
63458
  const ARROW_KEYS = ['ArrowLeft', 'ArrowRight', 'ArrowUp', 'ArrowDown'];
62880
63459
  const DEFAULT_INCREMENTS = {
62881
63460
  ArrowLeft: -1,
@@ -63020,299 +63599,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
63020
63599
  }]
63021
63600
  }], propDecorators: { props: [{ type: i0.Input, args: [{ isSignal: true, alias: "ui-key-navigation", required: false }] }] } });
63022
63601
 
63023
- /**
63024
- * A hybrid interactive component that is used frequently to organize content and offers a wide range of control and
63025
- * navigation in most experiences.
63026
- *
63027
- * With its flexible and simple structure, the list item element is core and can meet the needs of many uses cases.
63028
- *
63029
- * The ListItem has three main elements: leading element, label, and trailing element.
63030
- *
63031
- * Leading elements should be one of the following Icon, Img, Avatar.
63032
- *
63033
- * Trailing elements should be one of the following Icon, Checkbox, Button, Radio, Switch, Tag, Txt.
63034
- *
63035
- * @name ListItem
63036
- * @phase Dev
63037
- */
63038
- class UIListItem {
63039
- onClick = new EventEmitter();
63040
- active = input(...(ngDevMode ? [undefined, { debugName: "active" }] : []));
63041
- owner = input(...(ngDevMode ? [undefined, { debugName: "owner" }] : []));
63042
- ariaLabel = input(...(ngDevMode ? [undefined, { debugName: "ariaLabel" }] : []));
63043
- ariaSelected = input(...(ngDevMode ? [undefined, { debugName: "ariaSelected" }] : []));
63044
- ariaDisabled = input(...(ngDevMode ? [undefined, { debugName: "ariaDisabled" }] : []));
63045
- ariaReadonly = input(...(ngDevMode ? [undefined, { debugName: "ariaReadonly" }] : []));
63046
- htmlFor = input(...(ngDevMode ? [undefined, { debugName: "htmlFor" }] : []));
63047
- disabled = input(...(ngDevMode ? [undefined, { debugName: "disabled" }] : []));
63048
- readOnly = input(...(ngDevMode ? [undefined, { debugName: "readOnly" }] : []));
63049
- as = input('div', ...(ngDevMode ? [{ debugName: "as" }] : []));
63050
- href = input(...(ngDevMode ? [undefined, { debugName: "href" }] : []));
63051
- label = input.required(...(ngDevMode ? [{ debugName: "label" }] : []));
63052
- subText = input(...(ngDevMode ? [undefined, { debugName: "subText" }] : []));
63053
- width = input(...(ngDevMode ? [undefined, { debugName: "width" }] : []));
63054
- tabIndex = input(...(ngDevMode ? [undefined, { debugName: "tabIndex" }] : []));
63055
- id = input(...(ngDevMode ? [undefined, { debugName: "id" }] : []));
63056
- listItemId = computed(() => (this.id() ? `list-item-${this.id()}` : undefined), ...(ngDevMode ? [{ debugName: "listItemId" }] : []));
63057
- actionable = computed(() => {
63058
- return (!!(this.href() || this.as() === 'button' || this.onClick.observed || this.onClick.observed) &&
63059
- !this.isReadonly &&
63060
- !this.isDisabled);
63061
- }, ...(ngDevMode ? [{ debugName: "actionable" }] : []));
63062
- get tabindex() {
63063
- // allow explicit tabIndex to override actionable state
63064
- return this.tabIndex() !== undefined ? this.tabIndex() : this.actionable() ? 0 : -1;
63065
- }
63066
- get isReadonly() {
63067
- return !!(this.readOnly() || this.ariaReadonly());
63068
- }
63069
- get isDisabled() {
63070
- return !!(this.disabled() || this.ariaDisabled());
63071
- }
63072
- get As() {
63073
- const as = this.as();
63074
- if (as)
63075
- return as;
63076
- if (this.href())
63077
- return 'a';
63078
- return 'div';
63079
- }
63080
- get role() {
63081
- if (!this.actionable())
63082
- return undefined;
63083
- if (this.as() === 'button')
63084
- return undefined;
63085
- return 'button';
63086
- }
63087
- handleClick(event) {
63088
- if (this.isReadonly || this.isDisabled)
63089
- return;
63090
- this.onClick.emit(event);
63091
- }
63092
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIListItem, deps: [], target: i0.ɵɵFactoryTarget.Component });
63093
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.15", type: UIListItem, isStandalone: true, selector: "ui-list-item", inputs: { active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, owner: { classPropertyName: "owner", publicName: "owner", isSignal: true, isRequired: false, transformFunction: null }, ariaLabel: { classPropertyName: "ariaLabel", publicName: "ariaLabel", isSignal: true, isRequired: false, transformFunction: null }, ariaSelected: { classPropertyName: "ariaSelected", publicName: "ariaSelected", isSignal: true, isRequired: false, transformFunction: null }, ariaDisabled: { classPropertyName: "ariaDisabled", publicName: "ariaDisabled", isSignal: true, isRequired: false, transformFunction: null }, ariaReadonly: { classPropertyName: "ariaReadonly", publicName: "ariaReadonly", isSignal: true, isRequired: false, transformFunction: null }, htmlFor: { classPropertyName: "htmlFor", publicName: "htmlFor", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, readOnly: { classPropertyName: "readOnly", publicName: "readOnly", isSignal: true, isRequired: false, transformFunction: null }, as: { classPropertyName: "as", publicName: "as", isSignal: true, isRequired: false, transformFunction: null }, href: { classPropertyName: "href", publicName: "href", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: true, transformFunction: null }, subText: { classPropertyName: "subText", publicName: "subText", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, tabIndex: { classPropertyName: "tabIndex", publicName: "tabIndex", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onClick: "onClick" }, host: { properties: { "attr.id": "listItemId()" }, styleAttribute: "display: contents;" }, ngImport: i0, template: `
63094
- <ng-template #inner>
63095
- <ng-content select="[data-leading]"></ng-content>
63096
- <span data-item-label>
63097
- <span data-text [ui-tooltip]="{ truncated: true }">
63098
- {{ label() }}
63099
- </span>
63100
- @if (subText()) {
63101
- <span data-sub-text>{{ subText() }}</span>
63102
- }
63103
- </span>
63104
- <ng-content select="[data-trailing]"></ng-content>
63105
- </ng-template>
63106
- @if (As === 'a') {
63107
- <a
63108
- [attr.aria-label]="ariaLabel() || undefined"
63109
- [attr.aria-selected]="ariaSelected()"
63110
- [attr.role]="role"
63111
- [attr.tabindex]="tabindex"
63112
- [attr.href]="href()"
63113
- [attr.data-action]="actionable() || undefined"
63114
- [attr.data-active]="active() || undefined"
63115
- data-bspk="list-item"
63116
- [attr.data-bspk-owner]="owner() || undefined"
63117
- [attr.data-disabled]="isDisabled || undefined"
63118
- [attr.data-readonly]="isReadonly || undefined"
63119
- [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
63120
- [attr.id]="id()"
63121
- (click)="handleClick($event)"
63122
- (keydown.enter)="handleClick($event)">
63123
- <ng-container *ngTemplateOutlet="inner"></ng-container>
63124
- </a>
63125
- } @else if (As === 'button') {
63126
- <button
63127
- type="button"
63128
- [attr.aria-label]="ariaLabel() || undefined"
63129
- [attr.aria-selected]="ariaSelected()"
63130
- [attr.role]="role"
63131
- [attr.tabindex]="tabindex"
63132
- [attr.data-action]="actionable() || undefined"
63133
- [attr.data-active]="active() || undefined"
63134
- data-bspk="list-item"
63135
- [attr.data-bspk-owner]="owner() || undefined"
63136
- [attr.data-disabled]="isDisabled || undefined"
63137
- [attr.data-readonly]="isReadonly || undefined"
63138
- [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
63139
- [attr.id]="id()"
63140
- (click)="handleClick($event)">
63141
- <ng-container *ngTemplateOutlet="inner"></ng-container>
63142
- </button>
63143
- } @else if (As === 'label') {
63144
- <label
63145
- [attr.aria-label]="ariaLabel() || undefined"
63146
- [attr.aria-selected]="ariaSelected()"
63147
- [attr.role]="role"
63148
- [attr.tabindex]="tabindex"
63149
- [attr.data-action]="actionable() || undefined"
63150
- [attr.data-active]="active() || undefined"
63151
- data-bspk="list-item"
63152
- [attr.data-bspk-owner]="owner() || undefined"
63153
- [attr.data-disabled]="isDisabled || undefined"
63154
- [attr.data-readonly]="isReadonly || undefined"
63155
- [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
63156
- [attr.id]="id()"
63157
- [attr.for]="htmlFor()"
63158
- (click)="handleClick($event)"
63159
- (keydown.enter)="handleClick($event)">
63160
- <ng-container *ngTemplateOutlet="inner"></ng-container>
63161
- </label>
63162
- } @else {
63163
- <div
63164
- [attr.aria-label]="ariaLabel() || undefined"
63165
- [attr.aria-selected]="ariaSelected()"
63166
- [attr.role]="role"
63167
- [attr.tabindex]="tabindex"
63168
- [attr.data-action]="actionable() || undefined"
63169
- [attr.data-active]="active() || undefined"
63170
- data-bspk="list-item"
63171
- [attr.data-bspk-owner]="owner() || undefined"
63172
- [attr.data-disabled]="isDisabled || undefined"
63173
- [attr.data-readonly]="isReadonly || undefined"
63174
- [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
63175
- [attr.id]="id()"
63176
- (click)="handleClick($event)"
63177
- (keydown.enter)="handleClick($event)">
63178
- <ng-container *ngTemplateOutlet="inner"></ng-container>
63179
- </div>
63180
- }
63181
- `, isInline: true, styles: ["[data-bspk=list-item]{display:flex;-webkit-user-select:none;user-select:none;color:var(--foreground-neutral-on-surface);background-color:var(--surface-neutral-t1-base);height:100%;overflow:hidden;min-height:var(--list-item-height);flex-direction:row;gap:var(--spacing-sizing-03);padding:var(--spacing-sizing-02);justify-items:stretch;border:unset;margin:unset;text-decoration:unset;width:100%}[data-bspk=list-item][data-width=hug]{width:auto;max-width:100%}[data-pseudo=focus] [data-bspk=list-item],[data-bspk=list-item]:focus-visible,[data-bspk=list-item]:has(*:focus-visible){outline:solid 2px var(--stroke-neutral-focus);isolation:isolate}[data-pseudo=focus] [data-bspk=list-item] [data-inner],[data-bspk=list-item]:focus-visible [data-inner],[data-bspk=list-item]:has(*:focus-visible) [data-inner]{border-color:transparent}[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action][data-active],[data-pseudo=hover] [data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action],[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action]:hover,[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label)[data-active],[data-pseudo=hover] [data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label),[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label):hover{background-color:var(--interactions-neutral-hover-opacity)}[data-pseudo=active] [data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action],[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action]:active,[data-pseudo=active] [data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label),[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label):active{background-color:var(--interactions-neutral-press-opacity)}[data-bspk=list-item] [data-leading],[data-bspk=list-item] [data-item-label],[data-bspk=list-item] [data-trailing]{min-height:100%;display:flex;flex-direction:column;justify-content:space-around;flex:1 1 0;min-width:0}[data-bspk=list-item] [data-leading] svg,[data-bspk=list-item] [data-item-label] svg,[data-bspk=list-item] [data-trailing] svg{width:24px;max-width:unset}[data-bspk=list-item] [data-leading],[data-bspk=list-item] [data-trailing]{width:fit-content;flex:0 0 auto}[data-bspk=list-item] [data-leading]:empty,[data-bspk=list-item] [data-trailing]:empty{display:none}[data-bspk=list-item] [data-item-label]{text-align:left}[data-bspk=list-item] [data-item-label] [data-text]{width:100%;font:var(--labels-base);color:var(--foreground-neutral-on-surface)}[data-bspk=list-item] [data-item-label] [data-sub-text]{width:100%;font:var(--body-small);color:var(--foreground-neutral-on-surface-variant-01)}[data-bspk=list-item] [data-trailing]:has(input){pointer-events:none}[data-bspk=list-item] img{height:36px;width:36px;max-width:unset}[data-bspk=list-item]:is(label) [data-inner]{border-bottom:0;gap:var(--spacing-sizing-02)}[data-bspk=list-item][aria-selected=true]{background-color:var(--surface-brand-primary-highlight)}[data-bspk=list-item][data-disabled] [data-text],[data-bspk=list-item][data-disabled] [data-sub-text],[data-bspk=list-item][data-readonly] [data-text],[data-bspk=list-item][data-readonly] [data-sub-text]{color:var(--foreground-neutral-disabled-on-surface);cursor:not-allowed}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: UITooltipDirective, selector: "[ui-tooltip]", inputs: ["ui-tooltip"], outputs: ["ui-tooltipChange"] }], encapsulation: i0.ViewEncapsulation.None });
63182
- }
63183
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIListItem, decorators: [{
63184
- type: Component,
63185
- args: [{ selector: 'ui-list-item', standalone: true, imports: [NgTemplateOutlet, UITooltipDirective], encapsulation: ViewEncapsulation.None, template: `
63186
- <ng-template #inner>
63187
- <ng-content select="[data-leading]"></ng-content>
63188
- <span data-item-label>
63189
- <span data-text [ui-tooltip]="{ truncated: true }">
63190
- {{ label() }}
63191
- </span>
63192
- @if (subText()) {
63193
- <span data-sub-text>{{ subText() }}</span>
63194
- }
63195
- </span>
63196
- <ng-content select="[data-trailing]"></ng-content>
63197
- </ng-template>
63198
- @if (As === 'a') {
63199
- <a
63200
- [attr.aria-label]="ariaLabel() || undefined"
63201
- [attr.aria-selected]="ariaSelected()"
63202
- [attr.role]="role"
63203
- [attr.tabindex]="tabindex"
63204
- [attr.href]="href()"
63205
- [attr.data-action]="actionable() || undefined"
63206
- [attr.data-active]="active() || undefined"
63207
- data-bspk="list-item"
63208
- [attr.data-bspk-owner]="owner() || undefined"
63209
- [attr.data-disabled]="isDisabled || undefined"
63210
- [attr.data-readonly]="isReadonly || undefined"
63211
- [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
63212
- [attr.id]="id()"
63213
- (click)="handleClick($event)"
63214
- (keydown.enter)="handleClick($event)">
63215
- <ng-container *ngTemplateOutlet="inner"></ng-container>
63216
- </a>
63217
- } @else if (As === 'button') {
63218
- <button
63219
- type="button"
63220
- [attr.aria-label]="ariaLabel() || undefined"
63221
- [attr.aria-selected]="ariaSelected()"
63222
- [attr.role]="role"
63223
- [attr.tabindex]="tabindex"
63224
- [attr.data-action]="actionable() || undefined"
63225
- [attr.data-active]="active() || undefined"
63226
- data-bspk="list-item"
63227
- [attr.data-bspk-owner]="owner() || undefined"
63228
- [attr.data-disabled]="isDisabled || undefined"
63229
- [attr.data-readonly]="isReadonly || undefined"
63230
- [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
63231
- [attr.id]="id()"
63232
- (click)="handleClick($event)">
63233
- <ng-container *ngTemplateOutlet="inner"></ng-container>
63234
- </button>
63235
- } @else if (As === 'label') {
63236
- <label
63237
- [attr.aria-label]="ariaLabel() || undefined"
63238
- [attr.aria-selected]="ariaSelected()"
63239
- [attr.role]="role"
63240
- [attr.tabindex]="tabindex"
63241
- [attr.data-action]="actionable() || undefined"
63242
- [attr.data-active]="active() || undefined"
63243
- data-bspk="list-item"
63244
- [attr.data-bspk-owner]="owner() || undefined"
63245
- [attr.data-disabled]="isDisabled || undefined"
63246
- [attr.data-readonly]="isReadonly || undefined"
63247
- [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
63248
- [attr.id]="id()"
63249
- [attr.for]="htmlFor()"
63250
- (click)="handleClick($event)"
63251
- (keydown.enter)="handleClick($event)">
63252
- <ng-container *ngTemplateOutlet="inner"></ng-container>
63253
- </label>
63254
- } @else {
63255
- <div
63256
- [attr.aria-label]="ariaLabel() || undefined"
63257
- [attr.aria-selected]="ariaSelected()"
63258
- [attr.role]="role"
63259
- [attr.tabindex]="tabindex"
63260
- [attr.data-action]="actionable() || undefined"
63261
- [attr.data-active]="active() || undefined"
63262
- data-bspk="list-item"
63263
- [attr.data-bspk-owner]="owner() || undefined"
63264
- [attr.data-disabled]="isDisabled || undefined"
63265
- [attr.data-readonly]="isReadonly || undefined"
63266
- [attr.data-width]="width() === 'hug' ? 'hug' : undefined"
63267
- [attr.id]="id()"
63268
- (click)="handleClick($event)"
63269
- (keydown.enter)="handleClick($event)">
63270
- <ng-container *ngTemplateOutlet="inner"></ng-container>
63271
- </div>
63272
- }
63273
- `, host: {
63274
- style: 'display: contents;',
63275
- '[attr.id]': 'listItemId()',
63276
- }, styles: ["[data-bspk=list-item]{display:flex;-webkit-user-select:none;user-select:none;color:var(--foreground-neutral-on-surface);background-color:var(--surface-neutral-t1-base);height:100%;overflow:hidden;min-height:var(--list-item-height);flex-direction:row;gap:var(--spacing-sizing-03);padding:var(--spacing-sizing-02);justify-items:stretch;border:unset;margin:unset;text-decoration:unset;width:100%}[data-bspk=list-item][data-width=hug]{width:auto;max-width:100%}[data-pseudo=focus] [data-bspk=list-item],[data-bspk=list-item]:focus-visible,[data-bspk=list-item]:has(*:focus-visible){outline:solid 2px var(--stroke-neutral-focus);isolation:isolate}[data-pseudo=focus] [data-bspk=list-item] [data-inner],[data-bspk=list-item]:focus-visible [data-inner],[data-bspk=list-item]:has(*:focus-visible) [data-inner]{border-color:transparent}[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action][data-active],[data-pseudo=hover] [data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action],[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action]:hover,[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label)[data-active],[data-pseudo=hover] [data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label),[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label):hover{background-color:var(--interactions-neutral-hover-opacity)}[data-pseudo=active] [data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action],[data-bspk=list-item]:not([data-disabled],[data-readonly])[data-action]:active,[data-pseudo=active] [data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label),[data-bspk=list-item]:not([data-disabled],[data-readonly]):is(label):active{background-color:var(--interactions-neutral-press-opacity)}[data-bspk=list-item] [data-leading],[data-bspk=list-item] [data-item-label],[data-bspk=list-item] [data-trailing]{min-height:100%;display:flex;flex-direction:column;justify-content:space-around;flex:1 1 0;min-width:0}[data-bspk=list-item] [data-leading] svg,[data-bspk=list-item] [data-item-label] svg,[data-bspk=list-item] [data-trailing] svg{width:24px;max-width:unset}[data-bspk=list-item] [data-leading],[data-bspk=list-item] [data-trailing]{width:fit-content;flex:0 0 auto}[data-bspk=list-item] [data-leading]:empty,[data-bspk=list-item] [data-trailing]:empty{display:none}[data-bspk=list-item] [data-item-label]{text-align:left}[data-bspk=list-item] [data-item-label] [data-text]{width:100%;font:var(--labels-base);color:var(--foreground-neutral-on-surface)}[data-bspk=list-item] [data-item-label] [data-sub-text]{width:100%;font:var(--body-small);color:var(--foreground-neutral-on-surface-variant-01)}[data-bspk=list-item] [data-trailing]:has(input){pointer-events:none}[data-bspk=list-item] img{height:36px;width:36px;max-width:unset}[data-bspk=list-item]:is(label) [data-inner]{border-bottom:0;gap:var(--spacing-sizing-02)}[data-bspk=list-item][aria-selected=true]{background-color:var(--surface-brand-primary-highlight)}[data-bspk=list-item][data-disabled] [data-text],[data-bspk=list-item][data-disabled] [data-sub-text],[data-bspk=list-item][data-readonly] [data-text],[data-bspk=list-item][data-readonly] [data-sub-text]{color:var(--foreground-neutral-disabled-on-surface);cursor:not-allowed}\n"] }]
63277
- }], propDecorators: { onClick: [{
63278
- type: Output
63279
- }], active: [{ type: i0.Input, args: [{ isSignal: true, alias: "active", required: false }] }], owner: [{ type: i0.Input, args: [{ isSignal: true, alias: "owner", required: false }] }], ariaLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaLabel", required: false }] }], ariaSelected: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaSelected", required: false }] }], ariaDisabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaDisabled", required: false }] }], ariaReadonly: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaReadonly", required: false }] }], htmlFor: [{ type: i0.Input, args: [{ isSignal: true, alias: "htmlFor", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], readOnly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readOnly", required: false }] }], as: [{ type: i0.Input, args: [{ isSignal: true, alias: "as", required: false }] }], href: [{ type: i0.Input, args: [{ isSignal: true, alias: "href", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: true }] }], subText: [{ type: i0.Input, args: [{ isSignal: true, alias: "subText", required: false }] }], width: [{ type: i0.Input, args: [{ isSignal: true, alias: "width", required: false }] }], tabIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "tabIndex", required: false }] }], id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
63280
-
63281
- /**
63282
- * A container housing a simple list of options presented to the customer to select one option at a time.
63283
- *
63284
- * @example
63285
- * <ui-menu>
63286
- * <ui-list-item label="List Item"></ui-list-item>
63287
- * <ui-list-item label="List Item"></ui-list-item>
63288
- * <ui-list-item label="List Item"></ui-list-item>
63289
- * </ui-menu>
63290
- *
63291
- * @name Menu
63292
- * @phase Dev
63293
- */
63294
- class UIMenu {
63295
- ariaLabel = input(undefined, ...(ngDevMode ? [{ debugName: "ariaLabel" }] : []));
63296
- width = input(undefined, ...(ngDevMode ? [{ debugName: "width" }] : []));
63297
- owner = input(undefined, ...(ngDevMode ? [{ debugName: "owner" }] : []));
63298
- id = input(undefined, ...(ngDevMode ? [{ debugName: "id" }] : []));
63299
- ariaRole = input(undefined, ...(ngDevMode ? [{ debugName: "ariaRole" }] : []));
63300
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIMenu, deps: [], target: i0.ɵɵFactoryTarget.Component });
63301
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.3.15", type: UIMenu, isStandalone: true, selector: "ui-menu", inputs: { ariaLabel: { classPropertyName: "ariaLabel", publicName: "ariaLabel", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, owner: { classPropertyName: "owner", publicName: "owner", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, ariaRole: { classPropertyName: "ariaRole", publicName: "ariaRole", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-bspk-utility": "menu", "tabindex": "-1" }, properties: { "attr.aria-label": "ariaLabel() || null", "attr.data-bspk-owner": "owner() || null", "attr.id": "id() || null", "attr.role": "ariaRole() || null", "style.width": "width() || null" } }, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, styles: ["[data-bspk-utility=menu]{--overflow-y: hidden;width:332px;box-sizing:border-box;border:1px solid var(--stroke-neutral-low);background-color:var(--surface-neutral-t1-base);box-shadow:var(--drop-shadow-float);border-radius:var(--radius-lg);display:flex;flex-direction:column;overflow:hidden auto;height:fit-content;z-index:var(--z-index-dropdown)}\n"], encapsulation: i0.ViewEncapsulation.None });
63302
- }
63303
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: UIMenu, decorators: [{
63304
- type: Component,
63305
- args: [{ selector: 'ui-menu', standalone: true, template: `<ng-content></ng-content>`, encapsulation: ViewEncapsulation.None, host: {
63306
- '[attr.aria-label]': 'ariaLabel() || null',
63307
- '[attr.data-bspk-owner]': 'owner() || null',
63308
- 'data-bspk-utility': 'menu',
63309
- '[attr.id]': 'id() || null',
63310
- '[attr.role]': 'ariaRole() || null',
63311
- '[style.width]': 'width() || null',
63312
- tabindex: '-1',
63313
- }, styles: ["[data-bspk-utility=menu]{--overflow-y: hidden;width:332px;box-sizing:border-box;border:1px solid var(--stroke-neutral-low);background-color:var(--surface-neutral-t1-base);box-shadow:var(--drop-shadow-float);border-radius:var(--radius-lg);display:flex;flex-direction:column;overflow:hidden auto;height:fit-content;z-index:var(--z-index-dropdown)}\n"] }]
63314
- }], propDecorators: { ariaLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaLabel", required: false }] }], width: [{ type: i0.Input, args: [{ isSignal: true, alias: "width", required: false }] }], owner: [{ type: i0.Input, args: [{ isSignal: true, alias: "owner", required: false }] }], id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }], ariaRole: [{ type: i0.Input, args: [{ isSignal: true, alias: "ariaRole", required: false }] }] } });
63315
-
63316
63602
  /**
63317
63603
  * Utility to detect clicks outside specified elements and execute a callback.
63318
63604
  *
@@ -67117,5 +67403,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
67117
67403
  * Generated bundle index. Do not edit.
67118
67404
  */
67119
67405
 
67120
- export { Icon360, IconAZAscend, IconAZDescend, IconAccessibilityNew, IconAccessible, IconAccountCircle, IconAccountCircleFill, IconAccountTree, IconAccountTreeFill, IconAdd, IconAddAPhoto, IconAddAPhotoFill, IconAddAlert, IconAddAlertFill, IconAddBusiness, IconAddBusinessFill, IconAddChart, IconAddChartFill, IconAddCircle, IconAddCircleFill, IconAddComment, IconAddCommentFill, IconAddReaction, IconAddReactionFill, IconAddShoppingCart, IconAirplanemodeInactive, IconAirportShuttle, IconAirportShuttleFill, IconAlignCenter, IconAlignEnd, IconAlignFlexCenter, IconAlignFlexEnd, IconAlignFlexStart, IconAlignHorizontalCenter, IconAlignHorizontalLeft, IconAlignHorizontalRight, IconAlignItemsStretch, IconAlignJustifyCenter, IconAlignJustifyFlexEnd, IconAlignJustifyFlexStart, IconAlignJustifySpaceAround, IconAlignJustifySpaceBetween, IconAlignJustifySpaceEven, IconAlignJustifyStretch, IconAlignSpaceAround, IconAlignSpaceBetween, IconAlignSpaceEven, IconAlignStart, IconAlignStretch, IconAlignVerticalBottom, IconAlignVerticalCenter, IconAlignVerticalTop, IconAlternateEmail, IconAmex, IconAnalytics, IconAnalyticsFill, IconApartment, IconAppStore, IconAppleBlack, IconAppleWhite, IconApplepay, IconApps, IconArOnYou, IconArOnYouFill, IconArStickers, IconArStickersFill, IconArchive, IconArchiveFill, IconAreaChart, IconAreaChartFill, IconArrowBack, IconArrowDownward, IconArrowDropDown, IconArrowDropUp, IconArrowForward, IconArrowInsert, IconArrowLeft, IconArrowOutward, IconArrowRight, IconArrowUpward, IconAssignment, IconAssignmentAdd, IconAssignmentAddFill, IconAssignmentFill, IconAttachFile, IconAttachFileAdd, IconAttachFileFill, IconAttachMoney, IconAutomation, IconAutomationFill, IconBadge, IconBadgeFill, IconBakeryDining, IconBakeryDiningFill, IconBarChart, IconBarcode, IconBarcodeScanner, IconBarn, IconBarnFill, IconBasement, IconBasementFill, IconBathroom, IconBathroomFill, IconBed, IconBedFill, IconBlock, IconBluetooth, IconBolt, IconBoltFill, IconBookmark, IconBookmarkAdd, IconBookmarkAddFill, IconBookmarkAdded, IconBookmarkAddedFill, IconBookmarkFill, IconBookmarkRemove, IconBookmarkRemoveFill, IconBookmarks, IconBookmarksFill, IconBorderColor, IconBorderColorFill, IconBorderStyle, IconBox, IconBoxAdd, IconBoxAddFill, IconBoxFill, IconBrail, IconBubbleChart, IconBubbleChartFill, IconBuilding, IconBuildingFill, IconBusinessCenter, IconBusinessCenterFill, IconCalendarViewDay, IconCalendarViewDayFill, IconCalendarViewWeek, IconCalendarViewWeekFill, IconCall, IconCallEnd, IconCallEndFill, IconCallFill, IconCampaign, IconCampaignFill, IconCancel, IconCancelFill, IconCasino, IconCasinoFill, IconCategory, IconCategoryFill, IconChartData, IconChartDataFill, IconChat, IconChatBubble, IconChatBubbleFill, IconChatFill, IconCheck, IconCheckCircle, IconCheckCircleFill, IconCheckFill, IconChecklist, IconChevronLeft, IconChevronRight, IconCircle, IconCircleFill, IconClose, IconCloseFill, IconClosedCaption, IconClosedCaptionDisabled, IconClosedCaptionDisabledFill, IconClosedCaptionFill, IconCloud, IconCloudDone, IconCloudDoneFill, IconCloudDownload, IconCloudDownloadFill, IconCloudFill, IconCloudOff, IconCloudOffFill, IconCloudUpload, IconCloudUploadFill, IconCode, IconCognition, IconCognitionFill, IconColorBlind, IconColors, IconCommute, IconCommuteFill, IconComputer, IconComputerFill, IconConstruction, IconContactMail, IconContactMailFill, IconContactPage, IconContactPageFill, IconContactPhone, IconContactPhoneFill, IconContactSupport, IconContactSupportFill, IconContacts, IconContactsFill, IconContentCopy, IconContentCopyFill, IconContentPasteOff, IconContentPasteSearch, IconContrast, IconContrastCircle, IconContrastFill, IconContrastSquare, IconCopyright, IconCopyrightFill, IconCrawlspace, IconCrawlspaceFill, IconCreditCard, IconCreditCardFill, IconDangerous, IconDangerousFill, IconDarkMode, IconDarkModeFill, IconDashboard, IconDashboard2, IconDashboard2Fill, IconDashboardCustomize, IconDashboardCustomizeFill, IconDashboardFill, IconDatabase, IconDatabaseFill, IconDelete, IconDeleteFill, IconDeleteForever, IconDeleteForeverFill, IconDeployedCode, IconDeployedCodeAccount, IconDeployedCodeAccountFill, IconDeployedCodeAlert, IconDeployedCodeAlertFill, IconDeployedCodeFill, IconDeployedCodeHistory, IconDeployedCodeHistoryFill, IconDeployedCodeUpdate, IconDeployedCodeUpdateFill, IconDescription, IconDescriptionFill, IconDesktopWindows, IconDesktopWindowsFill, IconDeviceThermostat, IconDevices, IconDevicesFill, IconDialpad, IconDiamond, IconDiamondFill, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBoatFill, IconDirectionsBus, IconDirectionsBusFill, IconDirectionsCar, IconDirectionsCarFill, IconDirectionsFill, IconDirectionsSubway, IconDirectionsSubwayFill, IconDirectionsWalk, IconDiscover, IconDiversity1, IconDiversity1Fill, IconDoNotDisturbOn, IconDoNotDisturbOnFill, IconDocumentScanner, IconDocumentScannerFill, IconDonutLarge, IconDonutSmall, IconDonutSmallFill, IconDoorOpen, IconDoorOpenFill, IconDraft, IconDraftFill, IconDrafts, IconDraftsFill, IconDragHandle, IconDragIndicator, IconDraw, IconDrawFill, IconEdit, IconEditFill, IconEditNote, IconEditNoteFill, IconEditRoad, IconEditRoadFill, IconEditSquare, IconEditSquareFill, IconEgg, IconEggFill, IconEmojiLanguage, IconEmojiLanguageFill, IconEmoticon, IconEncrypted, IconEncryptedFill, IconError, IconErrorFill, IconEvent, IconEventFill, IconEventNote, IconEventNoteFill, IconExercise, IconExerciseFill, IconExperiment, IconExperimentFill, IconExplore, IconExploreFill, IconExtension, IconExtensionFill, IconExtensionOff, IconExtensionOffFill, IconFaceId, IconFaceRetouchingOff, IconFaceRetouchingOffFill, IconFacebook, IconFacebookWhite, IconFamilyHome, IconFamilyHomeFill, IconFastfood, IconFastfoodFill, IconFavorite, IconFavoriteFill, IconFileDownload, IconFileUpload, IconFilterList, IconFinance, IconFingerprint, IconFingerprintOff, IconFireplace, IconFireplaceFill, IconFitScreen, IconFitScreenFill, IconFitnessCenter, IconFlag, IconFlagAfghanistan, IconFlagAlandIsland, IconFlagAlbania, IconFlagAlgeria, IconFlagAmericanSamoa, IconFlagAndorra, IconFlagAngola, IconFlagAnguilla, IconFlagAntiguaAndBarbuda, IconFlagArgentina, IconFlagArmenia, IconFlagAruba, IconFlagAustralia, IconFlagAustria, IconFlagAzerbaijan, IconFlagBahamas, IconFlagBahrain, IconFlagBangladesh, IconFlagBarbados, IconFlagBelarus, IconFlagBelgium, IconFlagBelize, IconFlagBenin, IconFlagBermuda, IconFlagBhutan, IconFlagBolivia, IconFlagBonaire, IconFlagBosniaAndHerzegovina, IconFlagBotswana, IconFlagBrazil, IconFlagBrunei, IconFlagBulgaria, IconFlagBurkinaFaso, IconFlagBurundi, IconFlagCambodia, IconFlagCameroon, IconFlagCanada, IconFlagCaymanIslands, IconFlagCentralAfricanRepublic, IconFlagChad, IconFlagChile, IconFlagChina, IconFlagChristmasIsland, IconFlagCocosIslands, IconFlagColombia, IconFlagComoros, IconFlagCookIsland, IconFlagCostaRica, IconFlagCroatia, IconFlagCuba, IconFlagCuracao, IconFlagCyprus, IconFlagCzechRepublic, IconFlagDemocraticRepublicOfTheCongo, IconFlagDenmark, IconFlagDjibouti, IconFlagDominica, IconFlagDominicanRepublic, IconFlagEcuador, IconFlagEgypt, IconFlagElSalvador, IconFlagEquatorialGuinea, IconFlagEritrea, IconFlagEstonia, IconFlagEswatini, IconFlagEthiopia, IconFlagFalklandIslands, IconFlagFaroeIslands, IconFlagFederatedStatesOfMicronesia, IconFlagFiji, IconFlagFill, IconFlagFinland, IconFlagFrance, IconFlagFrenchGuiana, IconFlagFrenchPolynesia, IconFlagGabon, IconFlagGambia, IconFlagGeorgia, IconFlagGermany, IconFlagGhana, IconFlagGibraltar, IconFlagGreece, IconFlagGreeland, IconFlagGrenada, IconFlagGrenadines, IconFlagGuam, IconFlagGuatemala, IconFlagGuernsey, IconFlagGuinea, IconFlagGuineaBissau, IconFlagGuyana, IconFlagHaiti, IconFlagHonduras, IconFlagHongKong, IconFlagHungary, IconFlagIceland, IconFlagIndia, IconFlagIndianOceanTerritory, IconFlagIndonesia, IconFlagIran, IconFlagIraq, IconFlagIreland, IconFlagIsleOfMan, IconFlagIsrael, IconFlagItaly, IconFlagJamaica, IconFlagJapan, IconFlagJersey, IconFlagJordan, IconFlagKazakhstan, IconFlagKenya, IconFlagKiribati, IconFlagKuwait, IconFlagKyrgyzstan, IconFlagLaos, IconFlagLatvia, IconFlagLebanon, IconFlagLesotho, IconFlagLiberia, IconFlagLibya, IconFlagLiechtenstein, IconFlagLithuania, IconFlagLuxembourg, IconFlagMacau, IconFlagMadagascar, IconFlagMalasia, IconFlagMalawi, IconFlagMaldives, IconFlagMali, IconFlagMalta, IconFlagMarshallIslands, IconFlagMartinique, IconFlagMauritania, IconFlagMauritius, IconFlagMexico, IconFlagMoldova, IconFlagMonaco, IconFlagMongolia, IconFlagMontenegro, IconFlagMontserrat, IconFlagMorroco, IconFlagMozambique, IconFlagMyanmar, IconFlagNamibia, IconFlagNauru, IconFlagNepal, IconFlagNetherlands, IconFlagNewZealand, IconFlagNicaragua, IconFlagNiger, IconFlagNigeria, IconFlagNiue, IconFlagNorfolkIsland, IconFlagNorthKorea, IconFlagNorthMacedonia, IconFlagNorthernMarianaIslands, IconFlagNorway, IconFlagOman, IconFlagPakistan, IconFlagPalau, IconFlagPalestine, IconFlagPanama, IconFlagPapuaNewGuinea, IconFlagParaguay, IconFlagPeru, IconFlagPhilippines, IconFlagPitcairnIslands, IconFlagPoland, IconFlagPortugal, IconFlagPuertoRico, IconFlagQatar, IconFlagRepublicOfTheCongo, IconFlagRomania, IconFlagRussia, IconFlagRwanda, IconFlagSaintBarthelemy, IconFlagSamoa, IconFlagSanMarino, IconFlagSaoTomeAndPrincipe, IconFlagSaudiArabia, IconFlagSenegal, IconFlagSerbia, IconFlagSeychelles, IconFlagSierraLeone, IconFlagSingapore, IconFlagSintMaarten, IconFlagSlovakia, IconFlagSlovenia, IconFlagSolomonIslands, IconFlagSomalia, IconFlagSouthAfrica, IconFlagSouthKorea, IconFlagSouthSudan, IconFlagSpain, IconFlagSriLanka, IconFlagStKittsNevis, IconFlagStLucia, IconFlagSudan, IconFlagSuriname, IconFlagSweden, IconFlagSwitzerland, IconFlagSyria, IconFlagTaiwan, IconFlagTajikistan, IconFlagTanzania, IconFlagThailand, IconFlagTimorLeste, IconFlagTogo, IconFlagTokelau, IconFlagTonga, IconFlagTrinidadAndTobago, IconFlagTunisia, IconFlagTurkey, IconFlagTurkmenistan, IconFlagTurksAndCaicos, IconFlagTuvalu, IconFlagUganda, IconFlagUkraine, IconFlagUnitedArabEmirates, IconFlagUnitedKingdom, IconFlagUnitedKingdomOfGreatBritainAndNorthernIreland, IconFlagUnitedStates, IconFlagUruguay, IconFlagUzbekistan, IconFlagVanuatu, IconFlagVenezuela, IconFlagVietnam, IconFlagVirginIslands, IconFlagVirginIslandsBritish, IconFlagWestSahara, IconFlagYemen, IconFlagZambia, IconFlagZimbabwe, IconFlashAuto, IconFlashAutoFill, IconFlight, IconFlowchart, IconFlowchartFill, IconFolder, IconFolderFill, IconFolderOpen, IconFolderOpenFill, IconFolderShared, IconFolderSharedFill, IconFontDownload, IconFontDownloadFill, IconForSaleSign, IconForYou, IconForYouFill, IconForest, IconForestFill, IconForkRight, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatColorFill, IconFormatLetterSpacingWide, IconFormatLetterSpacingWider, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatShapes, IconFormatShapesFill, IconFormatSize, IconForum, IconForumFill, IconForward, IconForwardToInbox, IconForwardToInboxFill, IconFullStackedBarChart, IconFullscreen, IconFullscreenExit, IconFullscreenFill, IconGTranslate, IconGalleryThumbnail, IconGalleryThumbnailFill, IconGarage, IconGarageFill, IconGlobe, IconGoogle, IconGooglePlay, IconGooglepay, IconGridView, IconGridViewFill, IconGroup, IconGroupFill, IconGroupedBarChart, IconHail, IconHandDraw, IconHandDrawFill, IconHandshake, IconHandshakeFill, IconHandyman, IconHandymanFill, IconHeadMountedDevice, IconHeadMountedDeviceFill, IconHeadsetMic, IconHeadsetMicFill, IconHearing, IconHeat, IconHeatPump, IconHeatPumpFill, IconHelp, IconHelpFill, IconHexagon, IconHexagonFill, IconHistory, IconHome, IconHomeAdd, IconHomeAddFill, IconHomeCheck, IconHomeCheckFill, IconHomeFill, IconHomeLock, IconHomeLockFill, IconHomeMonitize, IconHomeMonitizeFill, IconHomeMove, IconHomeMoveFill, IconHomeRemove, IconHomeRemoveFill, IconHomeStorage, IconHomeStorageFill, IconHomeTimer, IconHomeTimerFill, IconHomeWork, IconHomeWorkFill, IconHorizontalDistribute, IconHub, IconHubFill, IconHvac, IconHvacFill, IconIcecream, IconIcecreamFill, IconIdCard, IconIdCardFill, IconImage, IconImageFill, IconInProgress, IconInbox, IconInboxFill, IconIncompleteCircle, IconInfo, IconInfoFill, IconInkEraser, IconInkEraserFill, IconInput, IconInstagramBlack, IconInstagramWhite, IconInventory, IconInventory2, IconInventory2Fill, IconInventoryFill, IconIosShare, IconKebabDining, IconKebabDiningFill, IconKey, IconKeyFill, IconKeyOff, IconKeyOffFill, IconKeyVertical, IconKeyVerticalFill, IconKeyboard, IconKeyboardArrowDown, IconKeyboardArrowUp, IconKeyboardDoubleArrowLeft, IconKeyboardDoubleArrowRight, IconKeyboardFill, IconLabel, IconLabelFill, IconLabelImportant, IconLabelImportantFill, IconLan, IconLanFill, IconLandscape, IconLandscapeFill, IconLanguage, IconLaundry, IconLaundryFill, IconLayers, IconLayersFill, IconLeaderboard, IconLeaderboardFill, IconLeftPanelClose, IconLeftPanelCloseFill, IconLeftPanelOpen, IconLeftPanelOpenFill, IconLicense, IconLicenseFill, IconLight, IconLightFill, IconLightMode, IconLightModeFill, IconLightbulb, IconLightbulbFill, IconLink, IconLinkFill, IconLinkOff, IconLinkedin, IconLinkedinWhite, IconList, IconListChange, IconListFill, IconLocalCafe, IconLocalCafeFill, IconLocalParking, IconLocalShipping, IconLocalShippingFill, IconLocalTaxi, IconLocalTaxiFill, IconLocationDisabled, IconLocationOff, IconLocationOffFill, IconLocationOn, IconLocationOnFill, IconLocationSearching, IconLock, IconLockFill, IconLockOpen, IconLockOpenFill, IconLogin, IconLogout, IconLowVisibility, IconMail, IconMailFill, IconMailLock, IconMailLockFill, IconMan, IconManFill, IconManageAccounts, IconManageAccountsFill, IconMap, IconMapFill, IconMarkAsUnread, IconMarkAsUnreadFill, IconMarkEmailRead, IconMarkEmailReadFill, IconMarkEmailUnread, IconMarkEmailUnreadFill, IconMastercard, IconMenu, IconMenuBook, IconMenuBookFill, IconMenuFill, IconMerge, IconMic, IconMicFill, IconMicOff, IconMicOffFill, IconModeCool, IconModeCoolOff, IconModeFan, IconModeFanFill, IconModeFanOff, IconModeFanOffFill, IconModeHeat, IconModeHeatFill, IconMoneyOff, IconMonitor, IconMonitorFill, IconMood, IconMoodBad, IconMoodBadFill, IconMoodFill, IconMoreHoriz, IconMoreVert, IconMoveLocation, IconMoveLocationFill, IconMoveToInbox, IconMoveToInboxFill, IconMultilineChart, IconMusicNote, IconMyLocation, IconMyLocationFill, IconNavigation, IconNavigationFill, IconNearMe, IconNearMeFill, IconNoSound, IconNoSoundFill, IconNorth, IconNorthWest, IconNoteAdd, IconNoteAddFill, IconNotifications, IconNotificationsFill, IconNotificationsOff, IconNotificationsOffFill, IconNutrition, IconNutritionFill, IconOktaBlack, IconOktaWhite, IconOmniChatbox, IconOmniChatboxFill, IconOpenInFull, IconOpenInNew, IconOpportunities, IconOrders, IconOrdersFill, IconOtherHouses, IconOtherHousesFill, IconOutbox, IconOutboxFill, IconOutgoingMail, IconOutgoingMailFill, IconOutlook, IconOvenGen, IconOvenGenFill, IconPackage, IconPackage2, IconPackage2Fill, IconPackageFill, IconPaid, IconPaidFill, IconPalette, IconPaletteFill, IconPanZoom, IconPartnerExchange, IconPartnerExchangeFill, IconPause, IconPauseCircle, IconPauseCircleFill, IconPauseFill, IconPayments, IconPaymentsFill, IconPaypal, IconPendingActions, IconPentagon, IconPentagonFill, IconPercent, IconPerson, IconPersonAdd, IconPersonAddDisabled, IconPersonAddDisabledFill, IconPersonAddFill, IconPersonBook, IconPersonBookFill, IconPersonCancel, IconPersonCancelFill, IconPersonCheck, IconPersonCheckFill, IconPersonFill, IconPersonRemove, IconPersonRemoveFill, IconPersonSearch, IconPersonSearchFill, IconPets, IconPhotoCamera, IconPhotoCameraFill, IconPieChart, IconPieChartFill, IconPin, IconPinFill, IconPinterest, IconPinterestBlack, IconPlayArrow, IconPlayArrowFill, IconPlayCircle, IconPlayCircleFill, IconPlayPause, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistAddFill, IconPlaylistRemove, IconPolicy, IconPolicyFill, IconPreview, IconPreviewFill, IconPrint, IconPrintFill, IconPublic, IconQrCode, IconQrCodeScanner, IconQuestionMark, IconRampLeft, IconRampRight, IconRealEstateAgent, IconRealEstateAgentFill, IconReceipt, IconReceiptFill, IconReceiptLong, IconReceiptLongFill, IconRecordVoiceOver, IconRecordVoiceOverFill, IconRecycling, IconRefresh, IconRemove, IconRemoveShoppingCart, IconRentSign, IconReplay, IconReply, IconReplyAll, IconReplyFill, IconReport, IconReportFill, IconResize, IconResizeHandle, IconRestaurant, IconRightPanelClose, IconRightPanelCloseFill, IconRightPanelOpen, IconRightPanelOpenFill, IconRoofing, IconRoofingFill, IconRoomPreferences, IconRoomPreferencesFill, IconRoundaboutLeft, IconRoundaboutRight, IconRoute, IconRouteFill, IconSave, IconSaveFill, IconSaveSearch, IconSaveSearchFill, IconScatterPlot, IconScatterPlotFill, IconSchedule, IconScheduleFill, IconScheduleSend, IconScheduleSendFill, IconSchema, IconSchemaFill, IconSchool, IconSchoolFill, IconScience, IconScienceFill, IconScore, IconScoreFill, IconSearch, IconSegment, IconSell, IconSellFill, IconSeller, IconSellerFill, IconSend, IconSendFill, IconSentimentDissatisfied, IconSentimentDissatisfiedFill, IconSentimentExtremelyDissatisfied, IconSentimentExtremelyDissatisfiedFill, IconSentimentNeutral, IconSentimentNeutralFill, IconSentimentSatisfied, IconSentimentSatisfiedFill, IconSentimentVeryDissatisfied, IconSentimentVeryDissatisfiedFill, IconSentimentVerySatisfied, IconSentimentVerySatisfiedFill, IconSettings, IconSettingsAccessibility, IconSettingsFill, IconShare, IconShareFill, IconShippingContainer, IconShippingContainerFill, IconShoppingBag, IconShoppingBagFill, IconShoppingCart, IconShoppingCartCheckout, IconShoppingCartFill, IconShoppingCartOff, IconShoppingCartOffFill, IconSick, IconSickFill, IconSignLanguage, IconSignLanguageFill, IconSignalCellularAlt, IconSkipNext, IconSkipNextFill, IconSkipPrevious, IconSkipPreviousFill, IconSlabSerif, IconSlabSerifFill, IconSmartphone, IconSmartphoneFill, IconSms, IconSmsFill, IconSort, IconSortByAlpha, IconSortByReverseAlpha, IconSortFill, IconSouth, IconSouthEast, IconSouthFill, IconSouthWest, IconSquare, IconSquareFill, IconSquareFoot, IconStackedBarChart, IconStackedEmail, IconStackedEmailFill, IconStacks, IconStacksFill, IconStar, IconStarFill, IconStop, IconStopCircle, IconStopCircleFill, IconStopFill, IconStorefront, IconStorefrontFill, IconStraight, IconStraightFill, IconStraighten, IconStraightenFill, IconStressManagement, IconStressManagementFill, IconSubject, IconSubway, IconSubwayFill, IconSwapVert, IconSwapVerticalCircle, IconSwapVerticalCircleFill, IconSymbolAfghanistan, IconSymbolAlandIsland, IconSymbolAlbania, IconSymbolAlgeria, IconSymbolAmericanSamoa, IconSymbolAndorra, IconSymbolAngola, IconSymbolAnguilla, IconSymbolAntiguaAndBarbuda, IconSymbolArgentina, IconSymbolArmenia, IconSymbolAruba, IconSymbolAustralia, IconSymbolAustria, IconSymbolAzerbaijan, IconSymbolBahamas, IconSymbolBahrain, IconSymbolBangladesh, IconSymbolBarbados, IconSymbolBelarus, IconSymbolBelgium, IconSymbolBelize, IconSymbolBenin, IconSymbolBermuda, IconSymbolBhutan, IconSymbolBolivia, IconSymbolBonaire, IconSymbolBosniaAndHerzegovina, IconSymbolBotswana, IconSymbolBrazil, IconSymbolBrunei, IconSymbolBulgaria, IconSymbolBurkinaFaso, IconSymbolBurundi, IconSymbolCambodia, IconSymbolCameroon, IconSymbolCanada, IconSymbolCaymanIslands, IconSymbolCentralAfricanRepublic, IconSymbolChad, IconSymbolChile, IconSymbolChina, IconSymbolChristmasIsland, IconSymbolCocosIslands, IconSymbolColombia, IconSymbolComoros, IconSymbolCookIsland, IconSymbolCostaRica, IconSymbolCroatia, IconSymbolCuba, IconSymbolCuracao, IconSymbolCyprus, IconSymbolCzechRepublic, IconSymbolDemocraticRepublicOfTheCongo, IconSymbolDenmark, IconSymbolDjibouti, IconSymbolDominica, IconSymbolDominicanRepublic, IconSymbolEcuador, IconSymbolEgypt, IconSymbolElSalvador, IconSymbolEquatorialGuinea, IconSymbolEritrea, IconSymbolEstonia, IconSymbolEswatini, IconSymbolEthiopia, IconSymbolFalklandIslands, IconSymbolFaroeIslands, IconSymbolFederatedStatesOfMicronesia, IconSymbolFiji, IconSymbolFinland, IconSymbolFrance, IconSymbolFrenchGuiana, IconSymbolFrenchPolynesia, IconSymbolGabon, IconSymbolGambia, IconSymbolGeorgia, IconSymbolGermany, IconSymbolGhana, IconSymbolGibraltar, IconSymbolGreece, IconSymbolGreeland, IconSymbolGrenada, IconSymbolGrenadines, IconSymbolGuam, IconSymbolGuatemala, IconSymbolGuernsey, IconSymbolGuinea, IconSymbolGuineaBissau, IconSymbolGuyana, IconSymbolHaiti, IconSymbolHonduras, IconSymbolHongKong, IconSymbolHungary, IconSymbolIceland, IconSymbolIndia, IconSymbolIndianOceanTerritory, IconSymbolIndonesia, IconSymbolIran, IconSymbolIraq, IconSymbolIreland, IconSymbolIsleOfMan, IconSymbolIsrael, IconSymbolItaly, IconSymbolJamaica, IconSymbolJapan, IconSymbolJersey, IconSymbolJordan, IconSymbolKazakhstan, IconSymbolKenya, IconSymbolKiribati, IconSymbolKuwait, IconSymbolKyrgyzstan, IconSymbolLaos, IconSymbolLatvia, IconSymbolLebanon, IconSymbolLesotho, IconSymbolLiberia, IconSymbolLibya, IconSymbolLiechtenstein, IconSymbolLithuania, IconSymbolLuxembourg, IconSymbolMacau, IconSymbolMadagascar, IconSymbolMalasia, IconSymbolMalawi, IconSymbolMaldives, IconSymbolMali, IconSymbolMalta, IconSymbolMarshallIslands, IconSymbolMartinique, IconSymbolMauritania, IconSymbolMauritius, IconSymbolMexico, IconSymbolMoldova, IconSymbolMonaco, IconSymbolMongolia, IconSymbolMontenegro, IconSymbolMontserrat, IconSymbolMorroco, IconSymbolMozambique, IconSymbolMyanmar, IconSymbolNamibia, IconSymbolNauru, IconSymbolNepal, IconSymbolNetherlands, IconSymbolNewZealand, IconSymbolNicaragua, IconSymbolNiger, IconSymbolNigeria, IconSymbolNiue, IconSymbolNorfolkIsland, IconSymbolNorthKorea, IconSymbolNorthMacedonia, IconSymbolNorthernMarianaIslands, IconSymbolNorway, IconSymbolOman, IconSymbolPakistan, IconSymbolPalau, IconSymbolPalestine, IconSymbolPanama, IconSymbolPapuaNewGuinea, IconSymbolParaguay, IconSymbolPeru, IconSymbolPhilippines, IconSymbolPitcairnIslands, IconSymbolPoland, IconSymbolPortugal, IconSymbolPuertoRico, IconSymbolQatar, IconSymbolRepublicOfTheCongo, IconSymbolRomania, IconSymbolRussia, IconSymbolRwanda, IconSymbolSaintBarthelemy, IconSymbolSamoa, IconSymbolSanMarino, IconSymbolSaoTomeAndPrincipe, IconSymbolSaudiArabia, IconSymbolSenegal, IconSymbolSerbia, IconSymbolSeychelles, IconSymbolSierraLeone, IconSymbolSingapore, IconSymbolSintMaarten, IconSymbolSlovakia, IconSymbolSlovenia, IconSymbolSolomonIslands, IconSymbolSomalia, IconSymbolSouthAfrica, IconSymbolSouthKorea, IconSymbolSouthSudan, IconSymbolSpain, IconSymbolSriLanka, IconSymbolStKittsNevis, IconSymbolStLucia, IconSymbolSudan, IconSymbolSuriname, IconSymbolSweden, IconSymbolSwitzerland, IconSymbolSyria, IconSymbolTaiwan, IconSymbolTajikistan, IconSymbolTanzania, IconSymbolThailand, IconSymbolTimorLeste, IconSymbolTogo, IconSymbolTokelau, IconSymbolTonga, IconSymbolTrinidadAndTobago, IconSymbolTunisia, IconSymbolTurkey, IconSymbolTurkmenistan, IconSymbolTurksAndCaicos, IconSymbolTuvalu, IconSymbolUganda, IconSymbolUkraine, IconSymbolUnitedArabEmirates, IconSymbolUnitedKingdom, IconSymbolUnitedKingdomOfGreatBritainAndNorthernIreland, IconSymbolUnitedStates, IconSymbolUruguay, IconSymbolUzbekistan, IconSymbolVanuatu, IconSymbolVenezuela, IconSymbolVietnam, IconSymbolVirginIslands, IconSymbolVirginIslandsBritish, IconSymbolWestSahara, IconSymbolYemen, IconSymbolZambia, IconSymbolZimbabwe, IconSync, IconTableChart, IconTableChartFill, IconTableChartView, IconTableChartViewFill, IconTablet, IconTabletFill, IconTag, IconTaxiAlert, IconTaxiAlertFill, IconThermometer, IconThermometerAdd, IconThermometerFill, IconThermometerGain, IconThermometerGainFill, IconThermometerLoss, IconThermometerLossFill, IconThermostat, IconThermostatAuto, IconThermostatFill, IconThumbDown, IconThumbDownFill, IconThumbUp, IconThumbUpFill, IconTimeline, IconTimer, IconTimerFill, IconTitle, IconToken, IconTokenFill, IconTrain, IconTrainFill, IconTranslate, IconTravel, IconTravelExplore, IconTravelFill, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTriangle, IconTriangleFill, IconTrip, IconTripFill, IconTrophy, IconTrophyFill, IconTune, IconTurnLeft, IconTurnRight, IconTurnSharpLeft, IconTurnSlightLeft, IconTurnSlightRight, IconTv, IconTvFill, IconUTurnLeft, IconUTurnRight, IconUnarchive, IconUnarchiveFill, IconUndo, IconUnsubscribe, IconUnsubscribeFill, IconUpcoming, IconUpcomingFill, IconVerifiedUser, IconVerifiedUserFill, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalDistribute, IconVideoLibrary, IconVideoLibraryFill, IconVideocam, IconVideocamFill, IconViewCarousel, IconViewCarouselFill, IconViewColumn, IconViewColumn2, IconViewColumn2Fill, IconViewColumnFill, IconViewDay, IconViewDayFill, IconViewInAr, IconViewInArFill, IconViewList, IconViewListFill, IconViewModule, IconViewModuleFill, IconVilla, IconVillaFill, IconVisa, IconVisibility, IconVisibilityFill, IconVisibilityOff, IconVisibilityOffFill, IconVoicemail, IconVolumeDown, IconVolumeDownFill, IconVolumeMute, IconVolumeMuteFill, IconVolumeOff, IconVolumeOffFill, IconVolumeUp, IconVolumeUpFill, IconWallet, IconWarehouse, IconWarehouseFill, IconWarning, IconWarningFill, IconWc, IconWest, IconWifi, IconWifiCalling, IconWifiCallingFill, IconWifiFill, IconWifiHome, IconWifiHomeFill, IconWoman, IconWork, IconWorkFill, IconX, IconXWhite, IconYoutube, IconYoutubeBlack, IconYoutubeWhite, IconZoomIn, IconZoomInMap, IconZoomOut, IconZoomOutMap, KeyNavigationUtility, ThemeService, UIAccordion, UIAvatar, UIBadge, UIBannerAlert, UIBreadcrumb, UIButton, UICard, UICheckbox, UICheckboxGroup, UICheckboxOption, UIChip, UIChipGroup, UIDialog, UIDivider, UIField, UIFlexDirective, UIFloatingDirective, UIFocusTrapDirective, UIIcon, UIInlineAlert, UIInput, UIInputField, UIKeyNavigationDirective, UILinkDirective, UIListItem, UIMatchParentHeightDirective, UIMenu, UIModal, UIOutsideClickDirective, UIPagination, UIPortalDirective, UIRadio, UIRadioGroup, UIRadioOption, UIScrim, UISegmentedControl, UISelect, UISwitch, UISwitchOption, UITabGroup, UITabList, UITabListUtility, UITable, UITag, UITextarea, UITextareaField, UITooltip, UITooltipDirective, UITxtDirective, describedById, errorMessageId, labelledById };
67406
+ export { Icon360, IconAZAscend, IconAZDescend, IconAccessibilityNew, IconAccessible, IconAccountCircle, IconAccountCircleFill, IconAccountTree, IconAccountTreeFill, IconAdd, IconAddAPhoto, IconAddAPhotoFill, IconAddAlert, IconAddAlertFill, IconAddBusiness, IconAddBusinessFill, IconAddChart, IconAddChartFill, IconAddCircle, IconAddCircleFill, IconAddComment, IconAddCommentFill, IconAddReaction, IconAddReactionFill, IconAddShoppingCart, IconAirplanemodeInactive, IconAirportShuttle, IconAirportShuttleFill, IconAlignCenter, IconAlignEnd, IconAlignFlexCenter, IconAlignFlexEnd, IconAlignFlexStart, IconAlignHorizontalCenter, IconAlignHorizontalLeft, IconAlignHorizontalRight, IconAlignItemsStretch, IconAlignJustifyCenter, IconAlignJustifyFlexEnd, IconAlignJustifyFlexStart, IconAlignJustifySpaceAround, IconAlignJustifySpaceBetween, IconAlignJustifySpaceEven, IconAlignJustifyStretch, IconAlignSpaceAround, IconAlignSpaceBetween, IconAlignSpaceEven, IconAlignStart, IconAlignStretch, IconAlignVerticalBottom, IconAlignVerticalCenter, IconAlignVerticalTop, IconAlternateEmail, IconAmex, IconAnalytics, IconAnalyticsFill, IconApartment, IconAppStore, IconAppleBlack, IconAppleWhite, IconApplepay, IconApps, IconArOnYou, IconArOnYouFill, IconArStickers, IconArStickersFill, IconArchive, IconArchiveFill, IconAreaChart, IconAreaChartFill, IconArrowBack, IconArrowDownward, IconArrowDropDown, IconArrowDropUp, IconArrowForward, IconArrowInsert, IconArrowLeft, IconArrowOutward, IconArrowRight, IconArrowUpward, IconAssignment, IconAssignmentAdd, IconAssignmentAddFill, IconAssignmentFill, IconAttachFile, IconAttachFileAdd, IconAttachFileFill, IconAttachMoney, IconAutomation, IconAutomationFill, IconBadge, IconBadgeFill, IconBakeryDining, IconBakeryDiningFill, IconBarChart, IconBarcode, IconBarcodeScanner, IconBarn, IconBarnFill, IconBasement, IconBasementFill, IconBathroom, IconBathroomFill, IconBed, IconBedFill, IconBlock, IconBluetooth, IconBolt, IconBoltFill, IconBookmark, IconBookmarkAdd, IconBookmarkAddFill, IconBookmarkAdded, IconBookmarkAddedFill, IconBookmarkFill, IconBookmarkRemove, IconBookmarkRemoveFill, IconBookmarks, IconBookmarksFill, IconBorderColor, IconBorderColorFill, IconBorderStyle, IconBox, IconBoxAdd, IconBoxAddFill, IconBoxFill, IconBrail, IconBubbleChart, IconBubbleChartFill, IconBuilding, IconBuildingFill, IconBusinessCenter, IconBusinessCenterFill, IconCalendarViewDay, IconCalendarViewDayFill, IconCalendarViewWeek, IconCalendarViewWeekFill, IconCall, IconCallEnd, IconCallEndFill, IconCallFill, IconCampaign, IconCampaignFill, IconCancel, IconCancelFill, IconCasino, IconCasinoFill, IconCategory, IconCategoryFill, IconChartData, IconChartDataFill, IconChat, IconChatBubble, IconChatBubbleFill, IconChatFill, IconCheck, IconCheckCircle, IconCheckCircleFill, IconCheckFill, IconChecklist, IconChevronLeft, IconChevronRight, IconCircle, IconCircleFill, IconClose, IconCloseFill, IconClosedCaption, IconClosedCaptionDisabled, IconClosedCaptionDisabledFill, IconClosedCaptionFill, IconCloud, IconCloudDone, IconCloudDoneFill, IconCloudDownload, IconCloudDownloadFill, IconCloudFill, IconCloudOff, IconCloudOffFill, IconCloudUpload, IconCloudUploadFill, IconCode, IconCognition, IconCognitionFill, IconColorBlind, IconColors, IconCommute, IconCommuteFill, IconComputer, IconComputerFill, IconConstruction, IconContactMail, IconContactMailFill, IconContactPage, IconContactPageFill, IconContactPhone, IconContactPhoneFill, IconContactSupport, IconContactSupportFill, IconContacts, IconContactsFill, IconContentCopy, IconContentCopyFill, IconContentPasteOff, IconContentPasteSearch, IconContrast, IconContrastCircle, IconContrastFill, IconContrastSquare, IconCopyright, IconCopyrightFill, IconCrawlspace, IconCrawlspaceFill, IconCreditCard, IconCreditCardFill, IconDangerous, IconDangerousFill, IconDarkMode, IconDarkModeFill, IconDashboard, IconDashboard2, IconDashboard2Fill, IconDashboardCustomize, IconDashboardCustomizeFill, IconDashboardFill, IconDatabase, IconDatabaseFill, IconDelete, IconDeleteFill, IconDeleteForever, IconDeleteForeverFill, IconDeployedCode, IconDeployedCodeAccount, IconDeployedCodeAccountFill, IconDeployedCodeAlert, IconDeployedCodeAlertFill, IconDeployedCodeFill, IconDeployedCodeHistory, IconDeployedCodeHistoryFill, IconDeployedCodeUpdate, IconDeployedCodeUpdateFill, IconDescription, IconDescriptionFill, IconDesktopWindows, IconDesktopWindowsFill, IconDeviceThermostat, IconDevices, IconDevicesFill, IconDialpad, IconDiamond, IconDiamondFill, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBoatFill, IconDirectionsBus, IconDirectionsBusFill, IconDirectionsCar, IconDirectionsCarFill, IconDirectionsFill, IconDirectionsSubway, IconDirectionsSubwayFill, IconDirectionsWalk, IconDiscover, IconDiversity1, IconDiversity1Fill, IconDoNotDisturbOn, IconDoNotDisturbOnFill, IconDocumentScanner, IconDocumentScannerFill, IconDonutLarge, IconDonutSmall, IconDonutSmallFill, IconDoorOpen, IconDoorOpenFill, IconDraft, IconDraftFill, IconDrafts, IconDraftsFill, IconDragHandle, IconDragIndicator, IconDraw, IconDrawFill, IconEdit, IconEditFill, IconEditNote, IconEditNoteFill, IconEditRoad, IconEditRoadFill, IconEditSquare, IconEditSquareFill, IconEgg, IconEggFill, IconEmojiLanguage, IconEmojiLanguageFill, IconEmoticon, IconEncrypted, IconEncryptedFill, IconError, IconErrorFill, IconEvent, IconEventFill, IconEventNote, IconEventNoteFill, IconExercise, IconExerciseFill, IconExperiment, IconExperimentFill, IconExplore, IconExploreFill, IconExtension, IconExtensionFill, IconExtensionOff, IconExtensionOffFill, IconFaceId, IconFaceRetouchingOff, IconFaceRetouchingOffFill, IconFacebook, IconFacebookWhite, IconFamilyHome, IconFamilyHomeFill, IconFastfood, IconFastfoodFill, IconFavorite, IconFavoriteFill, IconFileDownload, IconFileUpload, IconFilterList, IconFinance, IconFingerprint, IconFingerprintOff, IconFireplace, IconFireplaceFill, IconFitScreen, IconFitScreenFill, IconFitnessCenter, IconFlag, IconFlagAfghanistan, IconFlagAlandIsland, IconFlagAlbania, IconFlagAlgeria, IconFlagAmericanSamoa, IconFlagAndorra, IconFlagAngola, IconFlagAnguilla, IconFlagAntiguaAndBarbuda, IconFlagArgentina, IconFlagArmenia, IconFlagAruba, IconFlagAustralia, IconFlagAustria, IconFlagAzerbaijan, IconFlagBahamas, IconFlagBahrain, IconFlagBangladesh, IconFlagBarbados, IconFlagBelarus, IconFlagBelgium, IconFlagBelize, IconFlagBenin, IconFlagBermuda, IconFlagBhutan, IconFlagBolivia, IconFlagBonaire, IconFlagBosniaAndHerzegovina, IconFlagBotswana, IconFlagBrazil, IconFlagBrunei, IconFlagBulgaria, IconFlagBurkinaFaso, IconFlagBurundi, IconFlagCambodia, IconFlagCameroon, IconFlagCanada, IconFlagCaymanIslands, IconFlagCentralAfricanRepublic, IconFlagChad, IconFlagChile, IconFlagChina, IconFlagChristmasIsland, IconFlagCocosIslands, IconFlagColombia, IconFlagComoros, IconFlagCookIsland, IconFlagCostaRica, IconFlagCroatia, IconFlagCuba, IconFlagCuracao, IconFlagCyprus, IconFlagCzechRepublic, IconFlagDemocraticRepublicOfTheCongo, IconFlagDenmark, IconFlagDjibouti, IconFlagDominica, IconFlagDominicanRepublic, IconFlagEcuador, IconFlagEgypt, IconFlagElSalvador, IconFlagEquatorialGuinea, IconFlagEritrea, IconFlagEstonia, IconFlagEswatini, IconFlagEthiopia, IconFlagFalklandIslands, IconFlagFaroeIslands, IconFlagFederatedStatesOfMicronesia, IconFlagFiji, IconFlagFill, IconFlagFinland, IconFlagFrance, IconFlagFrenchGuiana, IconFlagFrenchPolynesia, IconFlagGabon, IconFlagGambia, IconFlagGeorgia, IconFlagGermany, IconFlagGhana, IconFlagGibraltar, IconFlagGreece, IconFlagGreeland, IconFlagGrenada, IconFlagGrenadines, IconFlagGuam, IconFlagGuatemala, IconFlagGuernsey, IconFlagGuinea, IconFlagGuineaBissau, IconFlagGuyana, IconFlagHaiti, IconFlagHonduras, IconFlagHongKong, IconFlagHungary, IconFlagIceland, IconFlagIndia, IconFlagIndianOceanTerritory, IconFlagIndonesia, IconFlagIran, IconFlagIraq, IconFlagIreland, IconFlagIsleOfMan, IconFlagIsrael, IconFlagItaly, IconFlagJamaica, IconFlagJapan, IconFlagJersey, IconFlagJordan, IconFlagKazakhstan, IconFlagKenya, IconFlagKiribati, IconFlagKuwait, IconFlagKyrgyzstan, IconFlagLaos, IconFlagLatvia, IconFlagLebanon, IconFlagLesotho, IconFlagLiberia, IconFlagLibya, IconFlagLiechtenstein, IconFlagLithuania, IconFlagLuxembourg, IconFlagMacau, IconFlagMadagascar, IconFlagMalasia, IconFlagMalawi, IconFlagMaldives, IconFlagMali, IconFlagMalta, IconFlagMarshallIslands, IconFlagMartinique, IconFlagMauritania, IconFlagMauritius, IconFlagMexico, IconFlagMoldova, IconFlagMonaco, IconFlagMongolia, IconFlagMontenegro, IconFlagMontserrat, IconFlagMorroco, IconFlagMozambique, IconFlagMyanmar, IconFlagNamibia, IconFlagNauru, IconFlagNepal, IconFlagNetherlands, IconFlagNewZealand, IconFlagNicaragua, IconFlagNiger, IconFlagNigeria, IconFlagNiue, IconFlagNorfolkIsland, IconFlagNorthKorea, IconFlagNorthMacedonia, IconFlagNorthernMarianaIslands, IconFlagNorway, IconFlagOman, IconFlagPakistan, IconFlagPalau, IconFlagPalestine, IconFlagPanama, IconFlagPapuaNewGuinea, IconFlagParaguay, IconFlagPeru, IconFlagPhilippines, IconFlagPitcairnIslands, IconFlagPoland, IconFlagPortugal, IconFlagPuertoRico, IconFlagQatar, IconFlagRepublicOfTheCongo, IconFlagRomania, IconFlagRussia, IconFlagRwanda, IconFlagSaintBarthelemy, IconFlagSamoa, IconFlagSanMarino, IconFlagSaoTomeAndPrincipe, IconFlagSaudiArabia, IconFlagSenegal, IconFlagSerbia, IconFlagSeychelles, IconFlagSierraLeone, IconFlagSingapore, IconFlagSintMaarten, IconFlagSlovakia, IconFlagSlovenia, IconFlagSolomonIslands, IconFlagSomalia, IconFlagSouthAfrica, IconFlagSouthKorea, IconFlagSouthSudan, IconFlagSpain, IconFlagSriLanka, IconFlagStKittsNevis, IconFlagStLucia, IconFlagSudan, IconFlagSuriname, IconFlagSweden, IconFlagSwitzerland, IconFlagSyria, IconFlagTaiwan, IconFlagTajikistan, IconFlagTanzania, IconFlagThailand, IconFlagTimorLeste, IconFlagTogo, IconFlagTokelau, IconFlagTonga, IconFlagTrinidadAndTobago, IconFlagTunisia, IconFlagTurkey, IconFlagTurkmenistan, IconFlagTurksAndCaicos, IconFlagTuvalu, IconFlagUganda, IconFlagUkraine, IconFlagUnitedArabEmirates, IconFlagUnitedKingdom, IconFlagUnitedKingdomOfGreatBritainAndNorthernIreland, IconFlagUnitedStates, IconFlagUruguay, IconFlagUzbekistan, IconFlagVanuatu, IconFlagVenezuela, IconFlagVietnam, IconFlagVirginIslands, IconFlagVirginIslandsBritish, IconFlagWestSahara, IconFlagYemen, IconFlagZambia, IconFlagZimbabwe, IconFlashAuto, IconFlashAutoFill, IconFlight, IconFlowchart, IconFlowchartFill, IconFolder, IconFolderFill, IconFolderOpen, IconFolderOpenFill, IconFolderShared, IconFolderSharedFill, IconFontDownload, IconFontDownloadFill, IconForSaleSign, IconForYou, IconForYouFill, IconForest, IconForestFill, IconForkRight, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatColorFill, IconFormatLetterSpacingWide, IconFormatLetterSpacingWider, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatShapes, IconFormatShapesFill, IconFormatSize, IconForum, IconForumFill, IconForward, IconForwardToInbox, IconForwardToInboxFill, IconFullStackedBarChart, IconFullscreen, IconFullscreenExit, IconFullscreenFill, IconGTranslate, IconGalleryThumbnail, IconGalleryThumbnailFill, IconGarage, IconGarageFill, IconGlobe, IconGoogle, IconGooglePlay, IconGooglepay, IconGridView, IconGridViewFill, IconGroup, IconGroupFill, IconGroupedBarChart, IconHail, IconHandDraw, IconHandDrawFill, IconHandshake, IconHandshakeFill, IconHandyman, IconHandymanFill, IconHeadMountedDevice, IconHeadMountedDeviceFill, IconHeadsetMic, IconHeadsetMicFill, IconHearing, IconHeat, IconHeatPump, IconHeatPumpFill, IconHelp, IconHelpFill, IconHexagon, IconHexagonFill, IconHistory, IconHome, IconHomeAdd, IconHomeAddFill, IconHomeCheck, IconHomeCheckFill, IconHomeFill, IconHomeLock, IconHomeLockFill, IconHomeMonitize, IconHomeMonitizeFill, IconHomeMove, IconHomeMoveFill, IconHomeRemove, IconHomeRemoveFill, IconHomeStorage, IconHomeStorageFill, IconHomeTimer, IconHomeTimerFill, IconHomeWork, IconHomeWorkFill, IconHorizontalDistribute, IconHub, IconHubFill, IconHvac, IconHvacFill, IconIcecream, IconIcecreamFill, IconIdCard, IconIdCardFill, IconImage, IconImageFill, IconInProgress, IconInbox, IconInboxFill, IconIncompleteCircle, IconInfo, IconInfoFill, IconInkEraser, IconInkEraserFill, IconInput, IconInstagramBlack, IconInstagramWhite, IconInventory, IconInventory2, IconInventory2Fill, IconInventoryFill, IconIosShare, IconKebabDining, IconKebabDiningFill, IconKey, IconKeyFill, IconKeyOff, IconKeyOffFill, IconKeyVertical, IconKeyVerticalFill, IconKeyboard, IconKeyboardArrowDown, IconKeyboardArrowUp, IconKeyboardDoubleArrowLeft, IconKeyboardDoubleArrowRight, IconKeyboardFill, IconLabel, IconLabelFill, IconLabelImportant, IconLabelImportantFill, IconLan, IconLanFill, IconLandscape, IconLandscapeFill, IconLanguage, IconLaundry, IconLaundryFill, IconLayers, IconLayersFill, IconLeaderboard, IconLeaderboardFill, IconLeftPanelClose, IconLeftPanelCloseFill, IconLeftPanelOpen, IconLeftPanelOpenFill, IconLicense, IconLicenseFill, IconLight, IconLightFill, IconLightMode, IconLightModeFill, IconLightbulb, IconLightbulbFill, IconLink, IconLinkFill, IconLinkOff, IconLinkedin, IconLinkedinWhite, IconList, IconListChange, IconListFill, IconLocalCafe, IconLocalCafeFill, IconLocalParking, IconLocalShipping, IconLocalShippingFill, IconLocalTaxi, IconLocalTaxiFill, IconLocationDisabled, IconLocationOff, IconLocationOffFill, IconLocationOn, IconLocationOnFill, IconLocationSearching, IconLock, IconLockFill, IconLockOpen, IconLockOpenFill, IconLogin, IconLogout, IconLowVisibility, IconMail, IconMailFill, IconMailLock, IconMailLockFill, IconMan, IconManFill, IconManageAccounts, IconManageAccountsFill, IconMap, IconMapFill, IconMarkAsUnread, IconMarkAsUnreadFill, IconMarkEmailRead, IconMarkEmailReadFill, IconMarkEmailUnread, IconMarkEmailUnreadFill, IconMastercard, IconMenu, IconMenuBook, IconMenuBookFill, IconMenuFill, IconMerge, IconMic, IconMicFill, IconMicOff, IconMicOffFill, IconModeCool, IconModeCoolOff, IconModeFan, IconModeFanFill, IconModeFanOff, IconModeFanOffFill, IconModeHeat, IconModeHeatFill, IconMoneyOff, IconMonitor, IconMonitorFill, IconMood, IconMoodBad, IconMoodBadFill, IconMoodFill, IconMoreHoriz, IconMoreVert, IconMoveLocation, IconMoveLocationFill, IconMoveToInbox, IconMoveToInboxFill, IconMultilineChart, IconMusicNote, IconMyLocation, IconMyLocationFill, IconNavigation, IconNavigationFill, IconNearMe, IconNearMeFill, IconNoSound, IconNoSoundFill, IconNorth, IconNorthWest, IconNoteAdd, IconNoteAddFill, IconNotifications, IconNotificationsFill, IconNotificationsOff, IconNotificationsOffFill, IconNutrition, IconNutritionFill, IconOktaBlack, IconOktaWhite, IconOmniChatbox, IconOmniChatboxFill, IconOpenInFull, IconOpenInNew, IconOpportunities, IconOrders, IconOrdersFill, IconOtherHouses, IconOtherHousesFill, IconOutbox, IconOutboxFill, IconOutgoingMail, IconOutgoingMailFill, IconOutlook, IconOvenGen, IconOvenGenFill, IconPackage, IconPackage2, IconPackage2Fill, IconPackageFill, IconPaid, IconPaidFill, IconPalette, IconPaletteFill, IconPanZoom, IconPartnerExchange, IconPartnerExchangeFill, IconPause, IconPauseCircle, IconPauseCircleFill, IconPauseFill, IconPayments, IconPaymentsFill, IconPaypal, IconPendingActions, IconPentagon, IconPentagonFill, IconPercent, IconPerson, IconPersonAdd, IconPersonAddDisabled, IconPersonAddDisabledFill, IconPersonAddFill, IconPersonBook, IconPersonBookFill, IconPersonCancel, IconPersonCancelFill, IconPersonCheck, IconPersonCheckFill, IconPersonFill, IconPersonRemove, IconPersonRemoveFill, IconPersonSearch, IconPersonSearchFill, IconPets, IconPhotoCamera, IconPhotoCameraFill, IconPieChart, IconPieChartFill, IconPin, IconPinFill, IconPinterest, IconPinterestBlack, IconPlayArrow, IconPlayArrowFill, IconPlayCircle, IconPlayCircleFill, IconPlayPause, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistAddFill, IconPlaylistRemove, IconPolicy, IconPolicyFill, IconPreview, IconPreviewFill, IconPrint, IconPrintFill, IconPublic, IconQrCode, IconQrCodeScanner, IconQuestionMark, IconRampLeft, IconRampRight, IconRealEstateAgent, IconRealEstateAgentFill, IconReceipt, IconReceiptFill, IconReceiptLong, IconReceiptLongFill, IconRecordVoiceOver, IconRecordVoiceOverFill, IconRecycling, IconRefresh, IconRemove, IconRemoveShoppingCart, IconRentSign, IconReplay, IconReply, IconReplyAll, IconReplyFill, IconReport, IconReportFill, IconResize, IconResizeHandle, IconRestaurant, IconRightPanelClose, IconRightPanelCloseFill, IconRightPanelOpen, IconRightPanelOpenFill, IconRoofing, IconRoofingFill, IconRoomPreferences, IconRoomPreferencesFill, IconRoundaboutLeft, IconRoundaboutRight, IconRoute, IconRouteFill, IconSave, IconSaveFill, IconSaveSearch, IconSaveSearchFill, IconScatterPlot, IconScatterPlotFill, IconSchedule, IconScheduleFill, IconScheduleSend, IconScheduleSendFill, IconSchema, IconSchemaFill, IconSchool, IconSchoolFill, IconScience, IconScienceFill, IconScore, IconScoreFill, IconSearch, IconSegment, IconSell, IconSellFill, IconSeller, IconSellerFill, IconSend, IconSendFill, IconSentimentDissatisfied, IconSentimentDissatisfiedFill, IconSentimentExtremelyDissatisfied, IconSentimentExtremelyDissatisfiedFill, IconSentimentNeutral, IconSentimentNeutralFill, IconSentimentSatisfied, IconSentimentSatisfiedFill, IconSentimentVeryDissatisfied, IconSentimentVeryDissatisfiedFill, IconSentimentVerySatisfied, IconSentimentVerySatisfiedFill, IconSettings, IconSettingsAccessibility, IconSettingsFill, IconShare, IconShareFill, IconShippingContainer, IconShippingContainerFill, IconShoppingBag, IconShoppingBagFill, IconShoppingCart, IconShoppingCartCheckout, IconShoppingCartFill, IconShoppingCartOff, IconShoppingCartOffFill, IconSick, IconSickFill, IconSignLanguage, IconSignLanguageFill, IconSignalCellularAlt, IconSkipNext, IconSkipNextFill, IconSkipPrevious, IconSkipPreviousFill, IconSlabSerif, IconSlabSerifFill, IconSmartphone, IconSmartphoneFill, IconSms, IconSmsFill, IconSort, IconSortByAlpha, IconSortByReverseAlpha, IconSortFill, IconSouth, IconSouthEast, IconSouthFill, IconSouthWest, IconSquare, IconSquareFill, IconSquareFoot, IconStackedBarChart, IconStackedEmail, IconStackedEmailFill, IconStacks, IconStacksFill, IconStar, IconStarFill, IconStop, IconStopCircle, IconStopCircleFill, IconStopFill, IconStorefront, IconStorefrontFill, IconStraight, IconStraightFill, IconStraighten, IconStraightenFill, IconStressManagement, IconStressManagementFill, IconSubject, IconSubway, IconSubwayFill, IconSwapVert, IconSwapVerticalCircle, IconSwapVerticalCircleFill, IconSymbolAfghanistan, IconSymbolAlandIsland, IconSymbolAlbania, IconSymbolAlgeria, IconSymbolAmericanSamoa, IconSymbolAndorra, IconSymbolAngola, IconSymbolAnguilla, IconSymbolAntiguaAndBarbuda, IconSymbolArgentina, IconSymbolArmenia, IconSymbolAruba, IconSymbolAustralia, IconSymbolAustria, IconSymbolAzerbaijan, IconSymbolBahamas, IconSymbolBahrain, IconSymbolBangladesh, IconSymbolBarbados, IconSymbolBelarus, IconSymbolBelgium, IconSymbolBelize, IconSymbolBenin, IconSymbolBermuda, IconSymbolBhutan, IconSymbolBolivia, IconSymbolBonaire, IconSymbolBosniaAndHerzegovina, IconSymbolBotswana, IconSymbolBrazil, IconSymbolBrunei, IconSymbolBulgaria, IconSymbolBurkinaFaso, IconSymbolBurundi, IconSymbolCambodia, IconSymbolCameroon, IconSymbolCanada, IconSymbolCaymanIslands, IconSymbolCentralAfricanRepublic, IconSymbolChad, IconSymbolChile, IconSymbolChina, IconSymbolChristmasIsland, IconSymbolCocosIslands, IconSymbolColombia, IconSymbolComoros, IconSymbolCookIsland, IconSymbolCostaRica, IconSymbolCroatia, IconSymbolCuba, IconSymbolCuracao, IconSymbolCyprus, IconSymbolCzechRepublic, IconSymbolDemocraticRepublicOfTheCongo, IconSymbolDenmark, IconSymbolDjibouti, IconSymbolDominica, IconSymbolDominicanRepublic, IconSymbolEcuador, IconSymbolEgypt, IconSymbolElSalvador, IconSymbolEquatorialGuinea, IconSymbolEritrea, IconSymbolEstonia, IconSymbolEswatini, IconSymbolEthiopia, IconSymbolFalklandIslands, IconSymbolFaroeIslands, IconSymbolFederatedStatesOfMicronesia, IconSymbolFiji, IconSymbolFinland, IconSymbolFrance, IconSymbolFrenchGuiana, IconSymbolFrenchPolynesia, IconSymbolGabon, IconSymbolGambia, IconSymbolGeorgia, IconSymbolGermany, IconSymbolGhana, IconSymbolGibraltar, IconSymbolGreece, IconSymbolGreeland, IconSymbolGrenada, IconSymbolGrenadines, IconSymbolGuam, IconSymbolGuatemala, IconSymbolGuernsey, IconSymbolGuinea, IconSymbolGuineaBissau, IconSymbolGuyana, IconSymbolHaiti, IconSymbolHonduras, IconSymbolHongKong, IconSymbolHungary, IconSymbolIceland, IconSymbolIndia, IconSymbolIndianOceanTerritory, IconSymbolIndonesia, IconSymbolIran, IconSymbolIraq, IconSymbolIreland, IconSymbolIsleOfMan, IconSymbolIsrael, IconSymbolItaly, IconSymbolJamaica, IconSymbolJapan, IconSymbolJersey, IconSymbolJordan, IconSymbolKazakhstan, IconSymbolKenya, IconSymbolKiribati, IconSymbolKuwait, IconSymbolKyrgyzstan, IconSymbolLaos, IconSymbolLatvia, IconSymbolLebanon, IconSymbolLesotho, IconSymbolLiberia, IconSymbolLibya, IconSymbolLiechtenstein, IconSymbolLithuania, IconSymbolLuxembourg, IconSymbolMacau, IconSymbolMadagascar, IconSymbolMalasia, IconSymbolMalawi, IconSymbolMaldives, IconSymbolMali, IconSymbolMalta, IconSymbolMarshallIslands, IconSymbolMartinique, IconSymbolMauritania, IconSymbolMauritius, IconSymbolMexico, IconSymbolMoldova, IconSymbolMonaco, IconSymbolMongolia, IconSymbolMontenegro, IconSymbolMontserrat, IconSymbolMorroco, IconSymbolMozambique, IconSymbolMyanmar, IconSymbolNamibia, IconSymbolNauru, IconSymbolNepal, IconSymbolNetherlands, IconSymbolNewZealand, IconSymbolNicaragua, IconSymbolNiger, IconSymbolNigeria, IconSymbolNiue, IconSymbolNorfolkIsland, IconSymbolNorthKorea, IconSymbolNorthMacedonia, IconSymbolNorthernMarianaIslands, IconSymbolNorway, IconSymbolOman, IconSymbolPakistan, IconSymbolPalau, IconSymbolPalestine, IconSymbolPanama, IconSymbolPapuaNewGuinea, IconSymbolParaguay, IconSymbolPeru, IconSymbolPhilippines, IconSymbolPitcairnIslands, IconSymbolPoland, IconSymbolPortugal, IconSymbolPuertoRico, IconSymbolQatar, IconSymbolRepublicOfTheCongo, IconSymbolRomania, IconSymbolRussia, IconSymbolRwanda, IconSymbolSaintBarthelemy, IconSymbolSamoa, IconSymbolSanMarino, IconSymbolSaoTomeAndPrincipe, IconSymbolSaudiArabia, IconSymbolSenegal, IconSymbolSerbia, IconSymbolSeychelles, IconSymbolSierraLeone, IconSymbolSingapore, IconSymbolSintMaarten, IconSymbolSlovakia, IconSymbolSlovenia, IconSymbolSolomonIslands, IconSymbolSomalia, IconSymbolSouthAfrica, IconSymbolSouthKorea, IconSymbolSouthSudan, IconSymbolSpain, IconSymbolSriLanka, IconSymbolStKittsNevis, IconSymbolStLucia, IconSymbolSudan, IconSymbolSuriname, IconSymbolSweden, IconSymbolSwitzerland, IconSymbolSyria, IconSymbolTaiwan, IconSymbolTajikistan, IconSymbolTanzania, IconSymbolThailand, IconSymbolTimorLeste, IconSymbolTogo, IconSymbolTokelau, IconSymbolTonga, IconSymbolTrinidadAndTobago, IconSymbolTunisia, IconSymbolTurkey, IconSymbolTurkmenistan, IconSymbolTurksAndCaicos, IconSymbolTuvalu, IconSymbolUganda, IconSymbolUkraine, IconSymbolUnitedArabEmirates, IconSymbolUnitedKingdom, IconSymbolUnitedKingdomOfGreatBritainAndNorthernIreland, IconSymbolUnitedStates, IconSymbolUruguay, IconSymbolUzbekistan, IconSymbolVanuatu, IconSymbolVenezuela, IconSymbolVietnam, IconSymbolVirginIslands, IconSymbolVirginIslandsBritish, IconSymbolWestSahara, IconSymbolYemen, IconSymbolZambia, IconSymbolZimbabwe, IconSync, IconTableChart, IconTableChartFill, IconTableChartView, IconTableChartViewFill, IconTablet, IconTabletFill, IconTag, IconTaxiAlert, IconTaxiAlertFill, IconThermometer, IconThermometerAdd, IconThermometerFill, IconThermometerGain, IconThermometerGainFill, IconThermometerLoss, IconThermometerLossFill, IconThermostat, IconThermostatAuto, IconThermostatFill, IconThumbDown, IconThumbDownFill, IconThumbUp, IconThumbUpFill, IconTimeline, IconTimer, IconTimerFill, IconTitle, IconToken, IconTokenFill, IconTrain, IconTrainFill, IconTranslate, IconTravel, IconTravelExplore, IconTravelFill, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTriangle, IconTriangleFill, IconTrip, IconTripFill, IconTrophy, IconTrophyFill, IconTune, IconTurnLeft, IconTurnRight, IconTurnSharpLeft, IconTurnSlightLeft, IconTurnSlightRight, IconTv, IconTvFill, IconUTurnLeft, IconUTurnRight, IconUnarchive, IconUnarchiveFill, IconUndo, IconUnsubscribe, IconUnsubscribeFill, IconUpcoming, IconUpcomingFill, IconVerifiedUser, IconVerifiedUserFill, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalDistribute, IconVideoLibrary, IconVideoLibraryFill, IconVideocam, IconVideocamFill, IconViewCarousel, IconViewCarouselFill, IconViewColumn, IconViewColumn2, IconViewColumn2Fill, IconViewColumnFill, IconViewDay, IconViewDayFill, IconViewInAr, IconViewInArFill, IconViewList, IconViewListFill, IconViewModule, IconViewModuleFill, IconVilla, IconVillaFill, IconVisa, IconVisibility, IconVisibilityFill, IconVisibilityOff, IconVisibilityOffFill, IconVoicemail, IconVolumeDown, IconVolumeDownFill, IconVolumeMute, IconVolumeMuteFill, IconVolumeOff, IconVolumeOffFill, IconVolumeUp, IconVolumeUpFill, IconWallet, IconWarehouse, IconWarehouseFill, IconWarning, IconWarningFill, IconWc, IconWest, IconWifi, IconWifiCalling, IconWifiCallingFill, IconWifiFill, IconWifiHome, IconWifiHomeFill, IconWoman, IconWork, IconWorkFill, IconX, IconXWhite, IconYoutube, IconYoutubeBlack, IconYoutubeWhite, IconZoomIn, IconZoomInMap, IconZoomOut, IconZoomOutMap, KeyNavigationUtility, ThemeService, UIAccordion, UIAvatar, UIAvatarGroup, UIBadge, UIBannerAlert, UIBreadcrumb, UIButton, UICard, UICheckbox, UICheckboxGroup, UICheckboxOption, UIChip, UIChipGroup, UIDialog, UIDivider, UIField, UIFlexDirective, UIFloatingDirective, UIFocusTrapDirective, UIIcon, UIInlineAlert, UIInput, UIInputField, UIKeyNavigationDirective, UILinkDirective, UIListItem, UIMatchParentHeightDirective, UIMenu, UIModal, UIOutsideClickDirective, UIPagination, UIPortalDirective, UIRadio, UIRadioGroup, UIRadioOption, UIScrim, UISegmentedControl, UISelect, UISwitch, UISwitchOption, UITabGroup, UITabList, UITabListUtility, UITable, UITag, UITextarea, UITextareaField, UITooltip, UITooltipDirective, UITxtDirective, describedById, errorMessageId, labelledById };
67121
67407
  //# sourceMappingURL=bspk-ui-ngx.mjs.map