@softheon/armature 21.7.0 → 21.8.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
|
@@ -6514,8 +6514,13 @@ interface Chip {
|
|
|
6514
6514
|
|
|
6515
6515
|
/** Shape options for skeleton items */
|
|
6516
6516
|
type SkeletonShape = 'line' | 'circle';
|
|
6517
|
+
/** Chart skeleton type options */
|
|
6518
|
+
type SkeletonChartType = 'donut' | 'bar';
|
|
6519
|
+
/** Direction options for bar chart skeleton */
|
|
6520
|
+
type SkeletonBarChartDirection = 'vertical' | 'horizontal';
|
|
6517
6521
|
/** Animation type options */
|
|
6518
6522
|
type SkeletonAnimation = 'shimmer' | 'pulse' | false;
|
|
6523
|
+
|
|
6519
6524
|
/** sof-skeleton-loader component */
|
|
6520
6525
|
declare class SofSkeletonLoaderComponent {
|
|
6521
6526
|
/** Number of skeleton items to render. Default: 1 */
|
|
@@ -6526,7 +6531,7 @@ declare class SofSkeletonLoaderComponent {
|
|
|
6526
6531
|
readonly animation: i0.InputSignal<SkeletonAnimation>;
|
|
6527
6532
|
/** Width for line shape. Accepts CSS units (px, %, etc). Default: '100%' */
|
|
6528
6533
|
readonly width: i0.InputSignal<string | number>;
|
|
6529
|
-
/** Height for line shape. Should match the line-height of content being replaced. Default: '20px' */
|
|
6534
|
+
/** Height for line shape. Accepts CSS units (px, %, etc). Should match the line-height of content being replaced. Default: '20px' */
|
|
6530
6535
|
readonly height: i0.InputSignal<string | number>;
|
|
6531
6536
|
/** Size for circle shape (applies to both width and height). Default: '40px' */
|
|
6532
6537
|
readonly circleSize: i0.InputSignal<string | number>;
|
|
@@ -6540,13 +6545,49 @@ declare class SofSkeletonLoaderComponent {
|
|
|
6540
6545
|
readonly ariaLabel: i0.InputSignal<string>;
|
|
6541
6546
|
/** Computed array of item indices based on count input */
|
|
6542
6547
|
readonly items: i0.Signal<number[]>;
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
|
|
6548
|
+
/** Width for each skeleton item based on shape (uses circleSize for circle, width for line) */
|
|
6549
|
+
readonly itemWidth: i0.Signal<string>;
|
|
6550
|
+
/** Height for each skeleton item based on shape (uses circleSize for circle, height for line) */
|
|
6551
|
+
readonly itemHeight: i0.Signal<string>;
|
|
6552
|
+
/** CSS styles for the container, currently just the gap between items */
|
|
6553
|
+
readonly containerStyle: i0.Signal<Record<string, string>>;
|
|
6546
6554
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofSkeletonLoaderComponent, never>;
|
|
6547
6555
|
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
6556
|
}
|
|
6549
6557
|
|
|
6558
|
+
/** sof-chart-skeleton-loader component */
|
|
6559
|
+
declare class SofChartSkeletonLoaderComponent {
|
|
6560
|
+
/** Type of chart skeleton: 'donut' for circular chart, 'bar' for horizontal bar chart. Default: 'donut' */
|
|
6561
|
+
readonly type: i0.InputSignal<SkeletonChartType>;
|
|
6562
|
+
/** Animation type: 'shimmer' for gradient effect, 'pulse' for opacity fade, or false for no animation. Default: 'shimmer' */
|
|
6563
|
+
readonly animation: i0.InputSignal<SkeletonAnimation>;
|
|
6564
|
+
/** TODO: vertical bar chart */
|
|
6565
|
+
direction: SkeletonBarChartDirection;
|
|
6566
|
+
/** TODO: Direction for bar chart: 'horizontal' for horizontal bars, 'vertical' for vertical bars. Default: 'horizontal' */
|
|
6567
|
+
/** Height of the host element. Accepts CSS units (px, %, etc). Default: '250px' */
|
|
6568
|
+
readonly height: i0.InputSignal<string | number>;
|
|
6569
|
+
/** Width of the host element. Accepts CSS units (px, %, etc). Default: '100%' */
|
|
6570
|
+
readonly width: i0.InputSignal<string | number>;
|
|
6571
|
+
/** Number of bars to render for bar chart, or segments for donut chart. Default: 3 */
|
|
6572
|
+
readonly segments: i0.InputSignal<number>;
|
|
6573
|
+
/** Accessible text for screen readers. Announces the loading state. Default: 'Loading chart' */
|
|
6574
|
+
readonly loadingText: i0.InputSignal<string>;
|
|
6575
|
+
/** ARIA label for the component. Used by screen readers to identify the loading region. Default: 'loading' */
|
|
6576
|
+
readonly ariaLabel: i0.InputSignal<string>;
|
|
6577
|
+
/** Computed array of segment indices based on segments input */
|
|
6578
|
+
readonly segmentItems: i0.Signal<number[]>;
|
|
6579
|
+
/** Dashed line positions for bar chart background */
|
|
6580
|
+
readonly dashedLineItems: number[];
|
|
6581
|
+
/** Whether this is a bar chart type */
|
|
6582
|
+
readonly isBar: i0.Signal<boolean>;
|
|
6583
|
+
/** TODO: Dashed line positions for vertical bar chart background */
|
|
6584
|
+
/** TODO: Whether this is a vertical bar chart */
|
|
6585
|
+
/** The .chart-skeleton-container dimensions */
|
|
6586
|
+
readonly containerDimensions: i0.Signal<Record<string, string>>;
|
|
6587
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofChartSkeletonLoaderComponent, never>;
|
|
6588
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofChartSkeletonLoaderComponent, "sof-chart-skeleton-loader", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "segments": { "alias": "segments"; "required": false; "isSignal": true; }; "loadingText": { "alias": "loadingText"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6589
|
+
}
|
|
6590
|
+
|
|
6550
6591
|
/** Blank Pipe for strings when its blank */
|
|
6551
6592
|
declare class SofBlankPipe implements PipeTransform {
|
|
6552
6593
|
private blankLanguage;
|
|
@@ -7412,5 +7453,5 @@ declare class EntityInjectWrapperComponent implements OnInit {
|
|
|
7412
7453
|
static ɵcmp: i0.ɵɵComponentDeclaration<EntityInjectWrapperComponent, "lib-entity-inject-wrapper", never, { "defaultSize": { "alias": "defaultSize"; "required": false; }; }, { "expandClicked": "expandClicked"; "closeClicked": "closeClicked"; }, never, ["*"], true, never>;
|
|
7413
7454
|
}
|
|
7414
7455
|
|
|
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 };
|
|
7456
|
+
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, SofChartSkeletonLoaderComponent, 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 };
|
|
7457
|
+
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, SkeletonBarChartDirection, SkeletonChartType, SkeletonShape, Snackbar, SofDatePipeFormat, Styles, SubNavNodes, SubNavigationData, SubdomainConfig, TabNavLink, ThemePaletteColorsModel, ThemePaletteModel, ToastModel, TrackingModel, UpdateCacheEntryRequestModel, UserFeedback, ValidationRecordsRow };
|