@softheon/armature 21.3.1 → 21.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softheon/armature",
3
- "version": "21.3.1",
3
+ "version": "21.6.0",
4
4
  "dependencies": {
5
5
  "tslib": "^2.8.1"
6
6
  },
@@ -920,6 +920,8 @@ interface HeaderSettings {
920
920
  displayLogoText?: boolean;
921
921
  /** the header logo text */
922
922
  headerLogoText?: string;
923
+ /** the header logo subtext */
924
+ subHeaderLogoText?: string;
923
925
  /** whether or not to show the built in drop down menu, default false */
924
926
  displayDropDownMenu?: boolean;
925
927
  /** the drop down menu screen reader text */
@@ -2069,13 +2071,52 @@ declare class ValidationKeys {
2069
2071
  }
2070
2072
 
2071
2073
  /**
2074
+ * Select option interface
2075
+ * @property value: T, the value of the option (can be any type - string, number, object, etc.)
2076
+ * @property label: string, the label for the option
2077
+ * @optional isDisabled?: boolean, is the option disabled
2078
+ * @optional trackBy?: (value: T) => any, optional function to generate a unique identifier for comparing values (required for object values)
2079
+ * @example
2080
+ * // String values (default)
2081
+ * { value: 'option1', label: 'Option 1' }
2082
+ *
2083
+ * // Object values with trackBy
2084
+ * {
2085
+ * value: { id: 1, name: 'Test' },
2086
+ * label: 'Test',
2087
+ * trackBy: (v) => v.id
2088
+ * }
2089
+ */
2090
+ interface SelectOption<T = string> {
2091
+ value: T;
2092
+ label: string;
2093
+ isDisabled?: boolean;
2094
+ trackBy?: (value: T) => any;
2095
+ }
2096
+ /**
2097
+ * Generic select component that can work with any value type.
2072
2098
  * @description
2073
2099
  * - This component can be used as a single select or multi-select.
2074
2100
  * - Can be used with a reactive formControlName.
2075
2101
  * - Can be used with [(ngModel)] binding.
2076
2102
  * - Can be used without a form using the (selectionChange) output event.
2103
+ * - Supports any value type (string, number, object) via the SelectOption<T> interface.
2104
+ * @example
2105
+ * // String values
2106
+ * <sof-select
2107
+ * [id]="'country-select'"
2108
+ * [options]="countries"
2109
+ * label="Select Country">
2110
+ * </sof-select>
2111
+ *
2112
+ * // Object values with trackBy
2113
+ * <sof-select
2114
+ * [id]="'user-select'"
2115
+ * [options]="users"
2116
+ * label="Select User">
2117
+ * </sof-select>
2077
2118
  */
2078
- declare class SofSelectComponent implements ControlValueAccessor, Validator, OnInit, AfterViewInit, OnDestroy {
2119
+ declare class SofSelectComponent<T = string> implements ControlValueAccessor, Validator, OnInit, AfterViewInit, OnDestroy {
2079
2120
  private _ngControl;
2080
2121
  private _host;
2081
2122
  private _cdr;
@@ -2095,11 +2136,11 @@ declare class SofSelectComponent implements ControlValueAccessor, Validator, OnI
2095
2136
  */
2096
2137
  id: string;
2097
2138
  /** Select options */
2098
- set options(value: Array<SelectOption>);
2139
+ set options(value: Array<SelectOption<T>>);
2099
2140
  /** Select options local signal */
2100
2141
  private _options;
2101
2142
  /** Readonly select options signal */
2102
- readOptions: Signal<Array<SelectOption>>;
2143
+ readOptions: Signal<Array<SelectOption<T>>>;
2103
2144
  /** The select's label / placeholder */
2104
2145
  label: string;
2105
2146
  /** Optional helper text */
@@ -2114,6 +2155,12 @@ declare class SofSelectComponent implements ControlValueAccessor, Validator, OnI
2114
2155
  * @default false
2115
2156
  */
2116
2157
  showSelectAll?: boolean;
2158
+ /**
2159
+ * Maximum number of selections allowed (multiple select only)
2160
+ * @description If set, unselected options will be disabled once the limit is reached.
2161
+ * @default undefined (no limit)
2162
+ */
2163
+ maxSelections?: number;
2117
2164
  /**
2118
2165
  * Is disabled ?
2119
2166
  * @default false
@@ -2166,19 +2213,19 @@ declare class SofSelectComponent implements ControlValueAccessor, Validator, OnI
2166
2213
  */
2167
2214
  errorMessages?: Record<string, string>;
2168
2215
  /** Selection change output if no form control */
2169
- selectionChange: EventEmitter<string | string[]>;
2216
+ selectionChange: EventEmitter<T | T[]>;
2170
2217
  /** Selection list element ref */
2171
2218
  listboxRef: ElementRef<HTMLUListElement>;
2172
2219
  /** Validation errors */
2173
2220
  private _errors;
2174
2221
  /** Current validation error */
2175
- errorMessage: Signal<string>;
2222
+ errorMessage: Signal<string | null>;
2176
2223
  /** Is expanded ? */
2177
2224
  expanded: WritableSignal<boolean>;
2178
2225
  /** Active selection index */
2179
2226
  activeIndex: number;
2180
2227
  /** Selected item / item's values */
2181
- selected: WritableSignal<Array<string> | string | null>;
2228
+ selected: WritableSignal<Array<T> | T | null>;
2182
2229
  /** Keyboard typeahead buffer */
2183
2230
  private _typeaheadBuffer;
2184
2231
  /** Typeahead timeout */
@@ -2188,10 +2235,10 @@ declare class SofSelectComponent implements ControlValueAccessor, Validator, OnI
2188
2235
  /** onTouched form control method */
2189
2236
  private _onTouched;
2190
2237
  /** Is the form control have required validator ? */
2191
- isRequired: WritableSignal<boolean>;
2238
+ isRequired: WritableSignal<boolean | undefined>;
2192
2239
  /** Destroy ref to unsubscribe */
2193
2240
  private _destroyRef;
2194
- /** Options input as Map */
2241
+ /** Options input as Map using trackBy to generate keys for object comparison */
2195
2242
  private readonly _valueToLabelMap;
2196
2243
  /**
2197
2244
  * The selected item label
@@ -2216,8 +2263,22 @@ declare class SofSelectComponent implements ControlValueAccessor, Validator, OnI
2216
2263
  private _resizeObserver;
2217
2264
  /** Are all items selected ? (multiple select) */
2218
2265
  isAllSelected: Signal<boolean>;
2219
- /** Is the option selected ? */
2220
- isSelected: (optionValue: string) => Signal<boolean>;
2266
+ /**
2267
+ * Is the option selected ?
2268
+ * @param optionValue The value of the option to check
2269
+ */
2270
+ isSelected: (optionValue: T) => Signal<boolean>;
2271
+ /**
2272
+ * Check if an option should be disabled based on maxSelections limit
2273
+ * @param option The select option to check
2274
+ * @returns Computed signal that returns true if option should be disabled
2275
+ */
2276
+ isOptionDisabled: (option: SelectOption<T>) => Signal<boolean>;
2277
+ /**
2278
+ * Check if max selections limit is reached
2279
+ * @returns True if the limit is reached and no more selections can be made
2280
+ */
2281
+ isMaxSelectionsReached: Signal<boolean>;
2221
2282
  /** The form control name */
2222
2283
  controlName: string;
2223
2284
  /** The derived form control */
@@ -2241,7 +2302,7 @@ declare class SofSelectComponent implements ControlValueAccessor, Validator, OnI
2241
2302
  * Option click event
2242
2303
  * @param option the option or all
2243
2304
  */
2244
- onOptionClick(option: SelectOption | 'ALL'): void;
2305
+ onOptionClick(option: SelectOption<T> | 'ALL'): void;
2245
2306
  /** Update the form or emit the selection change */
2246
2307
  private _propagateValue;
2247
2308
  /** Updates the visible chips */
@@ -2270,11 +2331,48 @@ declare class SofSelectComponent implements ControlValueAccessor, Validator, OnI
2270
2331
  private _handleTypeahead;
2271
2332
  /** Scrolls to the active option index */
2272
2333
  private _scrollIntoView;
2334
+ /**
2335
+ * Check if selected has items (for template use)
2336
+ * @returns true if there are selected items
2337
+ */
2338
+ hasSelectedItems(): boolean;
2339
+ /**
2340
+ * Get trackBy key for an option
2341
+ * @param option The select option
2342
+ * @returns The trackBy key for the option's value
2343
+ */
2344
+ private _getTrackByValue;
2345
+ /**
2346
+ * Get trackBy key for a raw value
2347
+ * @param value The value to get trackBy key for
2348
+ * @returns The trackBy key for the value
2349
+ */
2350
+ private _getTrackByValueForValue;
2351
+ /**
2352
+ * Check if two values are equal
2353
+ * @param a First value
2354
+ * @param b Second value
2355
+ * @returns True if values are equal
2356
+ */
2357
+ private _isValuesEqual;
2358
+ /**
2359
+ * Check if a value is selected in an array
2360
+ * @param value The value to check
2361
+ * @param selectedArray The array of selected values
2362
+ * @returns True if the value is in the selected array
2363
+ */
2364
+ private _isValueSelected;
2365
+ /**
2366
+ * Format a value for display (fallback when no label found)
2367
+ * @param value The value to format
2368
+ * @returns String representation of the value
2369
+ */
2370
+ private _formatValue;
2273
2371
  /**
2274
2372
  * Triggered when the form control value is set outside the component
2275
2373
  * @param value
2276
2374
  */
2277
- writeValue(value: string | Array<string> | null | undefined): void;
2375
+ writeValue(value: T | Array<T> | null | undefined): void;
2278
2376
  /**
2279
2377
  * Triggered when the form control is changed
2280
2378
  * @param fn The callback function.
@@ -2289,19 +2387,8 @@ declare class SofSelectComponent implements ControlValueAccessor, Validator, OnI
2289
2387
  setDisabledState(isDisabled: boolean): void;
2290
2388
  /** Runs the form control validator */
2291
2389
  validate(): ValidationErrors | null;
2292
- static ɵfac: i0.ɵɵFactoryDeclaration<SofSelectComponent, [{ optional: true; host: true; self: true; }, null, null, null, null]>;
2293
- static ɵcmp: i0.ɵɵComponentDeclaration<SofSelectComponent, "sof-select", never, { "id": { "alias": "id"; "required": true; }; "options": { "alias": "options"; "required": true; }; "label": { "alias": "label"; "required": true; }; "helpText": { "alias": "helpText"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "width": { "alias": "width"; "required": false; }; "useWhiteBackground": { "alias": "useWhiteBackground"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
2294
- }
2295
- /**
2296
- * Select option interface
2297
- * @property value: string, the value of the option
2298
- * @property label: string, the label for the option
2299
- * @optional isDisabled?: boolean, is the option disabled
2300
- */
2301
- interface SelectOption {
2302
- value: string;
2303
- label: string;
2304
- isDisabled?: boolean;
2390
+ static ɵfac: i0.ɵɵFactoryDeclaration<SofSelectComponent<any>, [{ optional: true; host: true; self: true; }, null, null, null, null]>;
2391
+ static ɵcmp: i0.ɵɵComponentDeclaration<SofSelectComponent<any>, "sof-select", never, { "id": { "alias": "id"; "required": true; }; "options": { "alias": "options"; "required": true; }; "label": { "alias": "label"; "required": true; }; "helpText": { "alias": "helpText"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; }; "maxSelections": { "alias": "maxSelections"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "width": { "alias": "width"; "required": false; }; "useWhiteBackground": { "alias": "useWhiteBackground"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
2305
2392
  }
2306
2393
 
2307
2394
  /**
@@ -3256,6 +3343,8 @@ declare class ArmatureHeaderComponent implements OnInit {
3256
3343
  displayLogoText: boolean;
3257
3344
  /** the header logo text */
3258
3345
  headerLogoText: string;
3346
+ /** the header subtext for logo */
3347
+ subHeaderLogoText?: string;
3259
3348
  /** whether or not to show the built in drop down menu, default false */
3260
3349
  displayDropDownMenu: boolean;
3261
3350
  /** the drop down menu screen reader text */
@@ -6423,6 +6512,41 @@ interface Chip {
6423
6512
  canRemove?: boolean;
6424
6513
  }
6425
6514
 
6515
+ /** Shape options for skeleton items */
6516
+ type SkeletonShape = 'line' | 'circle';
6517
+ /** Animation type options */
6518
+ type SkeletonAnimation = 'shimmer' | 'pulse' | false;
6519
+ /** sof-skeleton-loader component */
6520
+ declare class SofSkeletonLoaderComponent {
6521
+ /** Number of skeleton items to render. Default: 1 */
6522
+ readonly count: i0.InputSignal<number>;
6523
+ /** Shape of skeleton items: 'line' for text placeholders, 'circle' for avatars. Default: 'line' */
6524
+ readonly shape: i0.InputSignal<SkeletonShape>;
6525
+ /** Animation type: 'shimmer' for gradient effect, 'pulse' for opacity fade, or false for no animation. Default: 'shimmer' */
6526
+ readonly animation: i0.InputSignal<SkeletonAnimation>;
6527
+ /** Width for line shape. Accepts CSS units (px, %, etc). Default: '100%' */
6528
+ readonly width: i0.InputSignal<string | number>;
6529
+ /** Height for line shape. Should match the line-height of content being replaced. Default: '20px' */
6530
+ readonly height: i0.InputSignal<string | number>;
6531
+ /** Size for circle shape (applies to both width and height). Default: '40px' */
6532
+ readonly circleSize: i0.InputSignal<string | number>;
6533
+ /** Border radius for line shape. Default: '8px' */
6534
+ readonly borderRadius: i0.InputSignal<string>;
6535
+ /** Gap between skeleton items. Accepts CSS units. Default: '8px' */
6536
+ readonly gap: i0.InputSignal<string>;
6537
+ /** Accessible text for screen readers. Announces the loading state. Default: 'Loading' */
6538
+ readonly loadingText: i0.InputSignal<string>;
6539
+ /** ARIA label for the component. Used by screen readers to identify the loading region. Default: 'loading' */
6540
+ readonly ariaLabel: i0.InputSignal<string>;
6541
+ /** Computed array of item indices based on count input */
6542
+ readonly items: i0.Signal<number[]>;
6543
+ protected getItemWidth(): string;
6544
+ protected getItemHeight(): string;
6545
+ protected getContainerStyle(): Record<string, string>;
6546
+ static ɵfac: i0.ɵɵFactoryDeclaration<SofSkeletonLoaderComponent, never>;
6547
+ static ɵcmp: i0.ɵɵComponentDeclaration<SofSkeletonLoaderComponent, "sof-skeleton-loader", never, { "count": { "alias": "count"; "required": false; "isSignal": true; }; "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "circleSize": { "alias": "circleSize"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "loadingText": { "alias": "loadingText"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6548
+ }
6549
+
6426
6550
  /** Blank Pipe for strings when its blank */
6427
6551
  declare class SofBlankPipe implements PipeTransform {
6428
6552
  private blankLanguage;
@@ -7288,5 +7412,5 @@ declare class EntityInjectWrapperComponent implements OnInit {
7288
7412
  static ɵcmp: i0.ɵɵComponentDeclaration<EntityInjectWrapperComponent, "lib-entity-inject-wrapper", never, { "defaultSize": { "alias": "defaultSize"; "required": false; }; }, { "expandClicked": "expandClicked"; "closeClicked": "closeClicked"; }, never, ["*"], true, never>;
7289
7413
  }
7290
7414
 
7291
- export { ALERT_BANNER_CONFIG, AbstractSamlEntryService, AbstractSamlService, AbstractStartupService, AccessTokenClaims, AlertBannerComponent, AlertBannerModule, AlertBannerService, AlertService, AlphaNumericDirective, AppTemplateComponent, ApplicationUserModel, ArRoleNavService, ArmError, ArmatureFooterComponent, ArmatureFooterModule, ArmatureHeaderComponent, ArmatureHeaderModule, ArmatureModule, ArmatureNavigationComponent, ArmatureResizePanelsModule, Attribute, AuthorizationService, B2bNavComponent, BannerService, BannerType, BaseComponentModule, BaseConfigService, CacheExpirationType, ComponentSavePrintComponent, ComponentSavePrintService, Configuration, ConfirmAddressData, CoverageDetail, CssOverride, CssOverrideDirective, CustomAuthConfigService, DISABLE_ACCESS_FOR_NO_PAGES_ROLE, DISTRIBUTED_CACHE_BASE_PATH, DataStoreConfig, DateInputFilterDirective, DecodedAccessToken, DefaultConfigService, DialogResult, DistributedCacheModule, ENTITY_SESSION_STORAGE_PREFIX, ENTITY_SS_CONFIG_PREFIX, EntityBaseComponent, EntityHelperService, EntityInjectWrapperComponent, FAQ, FAQConfig, FEDERATED_MODULE_ID, FaqComponent, FaqModule, FeedbackToolComponent, FeedbackToolModule, FooterConfig, FormsModule, HYBRID_SAML_OAUTH_CONFIG, HeaderAuthSettings, HybridSamlOAuthConfig, HybridSamlOauthService, InputTrimDirective, LINE_OF_COVERAGE, LettersCharactersDirective, LettersOnlyDirective, MarketSelectionConfig, MarketSelectionService, MfeModule, MobileHeaderMenuComponent, ModalData, NavigationModule, NumbersOnlyDirective, Oauth2RoleService, OauthModule, PhoneFormatPipe, PolicyPerson, RBAC_CONFIG, RbacActionDirective, RbacConfig, RbacModule, RedirectSamlComponent, RedirectSamlRequest, RedirectSessionConfigs, ResizePanelsComponent, RoleAccess, RoleNavService, RoutePath, RumConfig, RumModule, RumService, SESSION_CONFIG, SOF_BLANK_LANGUAGE_OVERRIDE, SOF_DATE_PIPE_FORMATS, STATUS, SamlModule, SamlService, SelectedMarketContext, ServerCacheService, SessionConfig, SessionService, SharedErrorService, SiteMapComponent, SiteMapDirection, SnackbarService, SofAddressComponent, SofAlertComponent, SofArComponentSavePrintModule, SofBadgeComponent, SofBannerComponent, SofBlankPipe, SofBottomSheetComponent, SofBreadcrumbsHierarchyComponent, SofBreadcrumbsHistoryComponent, SofButtonToggleGroupComponent, SofCalloutComponent, SofChipComponent, SofCompareAddressPipe, SofConfirmAddressComponent, SofConfirmAddressCountyChangeComponent, SofContextComponent, SofDatePipe, SofDropdownButtonComponent, SofErrorCommonComponent, SofHandleComponent, SofHeaderComponent, SofImageCheckboxComponent, SofInputStepperComponent, SofModalComponent, SofNavPanelComponent, SofPipeModule, SofProgressBarComponent, SofRadioCardComponent, SofSegmentedControlComponent, SofSelectComponent, SofSimpleAlertComponent, SofSnackbarComponent, SofSsnPipe, SofStarRatingComponent, SofSubNavigationComponent, SofTabsComponent, SofToastComponent, SofUtilityButtonComponent, SoftheonErrorHandlerService, SsoGatewayEntryService, SsoGatewayModel, States, TextOverflowEllipsisTooltipDirective, ThemeModule, ThemeService, ToastService, TypedSession, USER_ENTITY_SERVICE_CONFIG, UserEntityService, UserEntityServiceConfig, ValidationKeys, WINDOW, httpVerb, initializerFactory, keyPathPrefix, languageStorageKey, newGuid, pascalToCamel, preSignInRouteStorageKey, removeMenuRole, routeToPreLoginRoute, sessionBasePathFactory, userInitialsPipe };
7292
- export type { AccountManagementAssertionModel, AccountManagementResponseModel, Address, AlertBannerColors, AlertBannerConfig, AlertBannerContext, AssertedUserModel, BadgeTooltipData, BannerActionButtonConfig, BaseConfig, BottomSheetData, BrandingModel, Breadcrumb, ButtonBadgeConfig, ButtonData, ButtonToggleData, ButtonToggleTooltipData, CalloutActionButtonConfig, Chip, ConfigurationParameters, ConfirmAddressCountyChangeData, ContactInfo, ContextMenuItem, County, CreateCacheEntryRequestModel, CustomWorkFlowActionEvent, EntityConfigBase, EntityDto, ErrorModel, ErrorReference, Extension, Finance, Folder, FolderLink, HandleInput, HeaderConfig, HeaderExternalLinks, HeaderLanguageSettings, HeaderSettings, HeaderThemeSettings, HeaderUserMenuData, HttpVerb, ISamlRequest, ISamlResponse, ISsoResponseModel, IdentityProfile, MarketSelection, MobileHeaderNavSettings, NavBadgeUpdate, NavNode, NavNodeAvailableBadge, NavNodeBadgeConfig, NavPanelLogo, NavPanelNode, NavPanelSettings, NavigationAdvancedSettings, NavigationConfig, NavigationSettings, NavigationThemeSettings, OAuthModel, OidcAuthSettings, Person, Policy, PreferencesRow, Profile, ResizeEvent, RetrieveCacheEntryResponseModel, SegmentedControlData, SelectOption, SessionGetResponseModel, SessionPostRequestModel, SessionPostResponseModel, SessionPutRequestModel, SessionPutResponseModel, SessionResponseModel, SettingsProfile, SiteMapConfig, SiteMapLink, SiteMapNode, Snackbar, SofDatePipeFormat, Styles, SubNavNodes, SubNavigationData, SubdomainConfig, TabNavLink, ThemePaletteColorsModel, ThemePaletteModel, ToastModel, TrackingModel, UpdateCacheEntryRequestModel, UserFeedback, ValidationRecordsRow };
7415
+ export { ALERT_BANNER_CONFIG, AbstractSamlEntryService, AbstractSamlService, AbstractStartupService, AccessTokenClaims, AlertBannerComponent, AlertBannerModule, AlertBannerService, AlertService, AlphaNumericDirective, AppTemplateComponent, ApplicationUserModel, ArRoleNavService, ArmError, ArmatureFooterComponent, ArmatureFooterModule, ArmatureHeaderComponent, ArmatureHeaderModule, ArmatureModule, ArmatureNavigationComponent, ArmatureResizePanelsModule, Attribute, AuthorizationService, B2bNavComponent, BannerService, BannerType, BaseComponentModule, BaseConfigService, CacheExpirationType, ComponentSavePrintComponent, ComponentSavePrintService, Configuration, ConfirmAddressData, CoverageDetail, CssOverride, CssOverrideDirective, CustomAuthConfigService, DISABLE_ACCESS_FOR_NO_PAGES_ROLE, DISTRIBUTED_CACHE_BASE_PATH, DataStoreConfig, DateInputFilterDirective, DecodedAccessToken, DefaultConfigService, DialogResult, DistributedCacheModule, ENTITY_SESSION_STORAGE_PREFIX, ENTITY_SS_CONFIG_PREFIX, EntityBaseComponent, EntityHelperService, EntityInjectWrapperComponent, FAQ, FAQConfig, FEDERATED_MODULE_ID, FaqComponent, FaqModule, FeedbackToolComponent, FeedbackToolModule, FooterConfig, FormsModule, HYBRID_SAML_OAUTH_CONFIG, HeaderAuthSettings, HybridSamlOAuthConfig, HybridSamlOauthService, InputTrimDirective, LINE_OF_COVERAGE, LettersCharactersDirective, LettersOnlyDirective, MarketSelectionConfig, MarketSelectionService, MfeModule, MobileHeaderMenuComponent, ModalData, NavigationModule, NumbersOnlyDirective, Oauth2RoleService, OauthModule, PhoneFormatPipe, PolicyPerson, RBAC_CONFIG, RbacActionDirective, RbacConfig, RbacModule, RedirectSamlComponent, RedirectSamlRequest, RedirectSessionConfigs, ResizePanelsComponent, RoleAccess, RoleNavService, RoutePath, RumConfig, RumModule, RumService, SESSION_CONFIG, SOF_BLANK_LANGUAGE_OVERRIDE, SOF_DATE_PIPE_FORMATS, STATUS, SamlModule, SamlService, SelectedMarketContext, ServerCacheService, SessionConfig, SessionService, SharedErrorService, SiteMapComponent, SiteMapDirection, SnackbarService, SofAddressComponent, SofAlertComponent, SofArComponentSavePrintModule, SofBadgeComponent, SofBannerComponent, SofBlankPipe, SofBottomSheetComponent, SofBreadcrumbsHierarchyComponent, SofBreadcrumbsHistoryComponent, SofButtonToggleGroupComponent, SofCalloutComponent, SofChipComponent, SofCompareAddressPipe, SofConfirmAddressComponent, SofConfirmAddressCountyChangeComponent, SofContextComponent, SofDatePipe, SofDropdownButtonComponent, SofErrorCommonComponent, SofHandleComponent, SofHeaderComponent, SofImageCheckboxComponent, SofInputStepperComponent, SofModalComponent, SofNavPanelComponent, SofPipeModule, SofProgressBarComponent, SofRadioCardComponent, SofSegmentedControlComponent, SofSelectComponent, SofSimpleAlertComponent, SofSkeletonLoaderComponent, SofSnackbarComponent, SofSsnPipe, SofStarRatingComponent, SofSubNavigationComponent, SofTabsComponent, SofToastComponent, SofUtilityButtonComponent, SoftheonErrorHandlerService, SsoGatewayEntryService, SsoGatewayModel, States, TextOverflowEllipsisTooltipDirective, ThemeModule, ThemeService, ToastService, TypedSession, USER_ENTITY_SERVICE_CONFIG, UserEntityService, UserEntityServiceConfig, ValidationKeys, WINDOW, httpVerb, initializerFactory, keyPathPrefix, languageStorageKey, newGuid, pascalToCamel, preSignInRouteStorageKey, removeMenuRole, routeToPreLoginRoute, sessionBasePathFactory, userInitialsPipe };
7416
+ export type { AccountManagementAssertionModel, AccountManagementResponseModel, Address, AlertBannerColors, AlertBannerConfig, AlertBannerContext, AssertedUserModel, BadgeTooltipData, BannerActionButtonConfig, BaseConfig, BottomSheetData, BrandingModel, Breadcrumb, ButtonBadgeConfig, ButtonData, ButtonToggleData, ButtonToggleTooltipData, CalloutActionButtonConfig, Chip, ConfigurationParameters, ConfirmAddressCountyChangeData, ContactInfo, ContextMenuItem, County, CreateCacheEntryRequestModel, CustomWorkFlowActionEvent, EntityConfigBase, EntityDto, ErrorModel, ErrorReference, Extension, Finance, Folder, FolderLink, HandleInput, HeaderConfig, HeaderExternalLinks, HeaderLanguageSettings, HeaderSettings, HeaderThemeSettings, HeaderUserMenuData, HttpVerb, ISamlRequest, ISamlResponse, ISsoResponseModel, IdentityProfile, MarketSelection, MobileHeaderNavSettings, NavBadgeUpdate, NavNode, NavNodeAvailableBadge, NavNodeBadgeConfig, NavPanelLogo, NavPanelNode, NavPanelSettings, NavigationAdvancedSettings, NavigationConfig, NavigationSettings, NavigationThemeSettings, OAuthModel, OidcAuthSettings, Person, Policy, PreferencesRow, Profile, ResizeEvent, RetrieveCacheEntryResponseModel, SegmentedControlData, SelectOption, SessionGetResponseModel, SessionPostRequestModel, SessionPostResponseModel, SessionPutRequestModel, SessionPutResponseModel, SessionResponseModel, SettingsProfile, SiteMapConfig, SiteMapLink, SiteMapNode, SkeletonAnimation, SkeletonShape, Snackbar, SofDatePipeFormat, Styles, SubNavNodes, SubNavigationData, SubdomainConfig, TabNavLink, ThemePaletteColorsModel, ThemePaletteModel, ToastModel, TrackingModel, UpdateCacheEntryRequestModel, UserFeedback, ValidationRecordsRow };