codexly-ui 0.12.28 → 0.12.30
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/fesm2022/codexly-ui.mjs +56 -22
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +42 -4
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -1875,8 +1875,23 @@ interface ClxTabItem {
|
|
|
1875
1875
|
|
|
1876
1876
|
declare class ClxWizardComponent implements AfterContentInit {
|
|
1877
1877
|
private readonly _themeSvc;
|
|
1878
|
-
|
|
1879
|
-
|
|
1878
|
+
/** Legacy single-color override — still the shared fallback for activeTextColor/underlineColor/
|
|
1879
|
+
* stepColor when none of those is set, same convention as clx-tabs' own clxColor. */
|
|
1880
|
+
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
1881
|
+
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
1882
|
+
/** Horizontal only — active step label/icon color in the clx-tabs indicator. Falls back to
|
|
1883
|
+
* `color`, then the theme's wizard.activeTextColor (then formControls.wizard/primaryColor). */
|
|
1884
|
+
readonly activeTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
1885
|
+
/** Horizontal only — active step's bottom underline color, independent of activeTextColor.
|
|
1886
|
+
* Falls back to `color`, then the theme's wizard.underlineColor. */
|
|
1887
|
+
readonly underlineColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
1888
|
+
/** Vertical only — completed/active step circle + connector fill color. Falls back to `color`,
|
|
1889
|
+
* then the theme's wizard.stepColor. */
|
|
1890
|
+
readonly stepColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
1891
|
+
private readonly _style;
|
|
1892
|
+
protected readonly _activeTextColor: _angular_core.Signal<ClxColorInput>;
|
|
1893
|
+
protected readonly _underlineColor: _angular_core.Signal<ClxColorInput>;
|
|
1894
|
+
protected readonly _stepColor: _angular_core.Signal<ClxColorInput>;
|
|
1880
1895
|
readonly orientation: _angular_core.InputSignal<ClxWizardOrientation>;
|
|
1881
1896
|
readonly linear: _angular_core.InputSignal<boolean>;
|
|
1882
1897
|
readonly prevLabel: _angular_core.InputSignal<string>;
|
|
@@ -1907,7 +1922,7 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
1907
1922
|
protected readonly _rootClass: _angular_core.Signal<string>;
|
|
1908
1923
|
protected _circleClass(i: number): string;
|
|
1909
1924
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxWizardComponent, never>;
|
|
1910
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxWizardComponent, "clx-wizard", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "prevLabel": { "alias": "prevLabel"; "required": false; "isSignal": true; }; "nextLabel": { "alias": "nextLabel"; "required": false; "isSignal": true; }; "finishLabel": { "alias": "finishLabel"; "required": false; "isSignal": true; }; }, { "stepChange": "stepChange"; "finish": "finish"; }, ["_stepQuery"], ["*", "[clx-wizard-footer-start]"], true, never>;
|
|
1925
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxWizardComponent, "clx-wizard", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "activeTextColor": { "alias": "activeTextColor"; "required": false; "isSignal": true; }; "underlineColor": { "alias": "underlineColor"; "required": false; "isSignal": true; }; "stepColor": { "alias": "stepColor"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "prevLabel": { "alias": "prevLabel"; "required": false; "isSignal": true; }; "nextLabel": { "alias": "nextLabel"; "required": false; "isSignal": true; }; "finishLabel": { "alias": "finishLabel"; "required": false; "isSignal": true; }; }, { "stepChange": "stepChange"; "finish": "finish"; }, ["_stepQuery"], ["*", "[clx-wizard-footer-start]"], true, never>;
|
|
1911
1926
|
}
|
|
1912
1927
|
|
|
1913
1928
|
declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
@@ -2039,6 +2054,17 @@ interface ClxTabsTheme {
|
|
|
2039
2054
|
* primaryColor when unset. */
|
|
2040
2055
|
underlineColor?: ClxColorInput;
|
|
2041
2056
|
}
|
|
2057
|
+
interface ClxWizardTheme {
|
|
2058
|
+
/** Horizontal only — active step label/icon color in the clx-tabs indicator. Falls back to
|
|
2059
|
+
* formControls.wizard (then primaryColor) when unset. */
|
|
2060
|
+
activeTextColor?: ClxColorInput;
|
|
2061
|
+
/** Horizontal only — active step's bottom underline color, independent of activeTextColor.
|
|
2062
|
+
* Falls back to formControls.wizard (then primaryColor) when unset. */
|
|
2063
|
+
underlineColor?: ClxColorInput;
|
|
2064
|
+
/** Vertical only — completed/active step circle + connector fill color. Falls back to
|
|
2065
|
+
* formControls.wizard (then primaryColor) when unset. */
|
|
2066
|
+
stepColor?: ClxColorInput;
|
|
2067
|
+
}
|
|
2042
2068
|
interface ClxPaginationTheme {
|
|
2043
2069
|
/** Page-number buttons + the "items per page" select accent color — falls back to
|
|
2044
2070
|
* primaryColor when unset. */
|
|
@@ -2131,6 +2157,8 @@ interface ClxThemeConfig {
|
|
|
2131
2157
|
table?: ClxTableTheme;
|
|
2132
2158
|
/** ClxTabsComponent global style override — see ClxTabsTheme for per-field fallbacks */
|
|
2133
2159
|
tabs?: ClxTabsTheme;
|
|
2160
|
+
/** ClxWizardComponent global style override — see ClxWizardTheme for per-field fallbacks */
|
|
2161
|
+
wizard?: ClxWizardTheme;
|
|
2134
2162
|
/** ClxPaginationComponent global style override — see ClxPaginationTheme for per-field fallbacks */
|
|
2135
2163
|
pagination?: ClxPaginationTheme;
|
|
2136
2164
|
/** ClxNotificationComponent global style override — see ClxNotificationTheme for per-field fallbacks */
|
|
@@ -4029,6 +4057,11 @@ interface ClxResolvedTabsStyle {
|
|
|
4029
4057
|
activeTextColor: ClxColorInput;
|
|
4030
4058
|
underlineColor: ClxColorInput;
|
|
4031
4059
|
}
|
|
4060
|
+
interface ClxResolvedWizardStyle {
|
|
4061
|
+
activeTextColor: ClxColorInput;
|
|
4062
|
+
underlineColor: ClxColorInput;
|
|
4063
|
+
stepColor: ClxColorInput;
|
|
4064
|
+
}
|
|
4032
4065
|
interface ClxResolvedNotificationStyle {
|
|
4033
4066
|
severityColors: Required<ClxNotificationSeverityColors>;
|
|
4034
4067
|
unreadColor: ClxColorInput;
|
|
@@ -4087,6 +4120,11 @@ declare class ClxThemeService {
|
|
|
4087
4120
|
* primaryColor independently when unset. Per-instance inputs on clx-tabs still take
|
|
4088
4121
|
* precedence over this theme-wide default. */
|
|
4089
4122
|
readonly tabsStyle: _angular_core.Signal<ClxResolvedTabsStyle>;
|
|
4123
|
+
/** Resolved style for ClxWizardComponent — activeTextColor/underlineColor (horizontal) and
|
|
4124
|
+
* stepColor (vertical) each fall back to formControls.wizard (then primaryColor) independently
|
|
4125
|
+
* when unset. Per-instance inputs on clx-wizard still take precedence over this theme-wide
|
|
4126
|
+
* default. */
|
|
4127
|
+
readonly wizardStyle: _angular_core.Signal<ClxResolvedWizardStyle>;
|
|
4090
4128
|
/** Resolved style for ClxNotificationComponent — severity colors fall back to built-in
|
|
4091
4129
|
* green/amber/sky/red, unreadColor to primaryColor, borderColor to listBorderColor then
|
|
4092
4130
|
* primaryColor, radius to the app-wide borderRadius. Per-instance inputs on clx-notification
|
|
@@ -4232,4 +4270,4 @@ declare class ClxToastService {
|
|
|
4232
4270
|
}
|
|
4233
4271
|
|
|
4234
4272
|
export { CLX_ADDON_BORDER, CLX_ADDON_TEXT, CLX_ALERT_OPTIONS, CLX_ALERT_RESOLVE, CLX_BG_ADDON, CLX_BG_DISABLED, CLX_BG_ICON_WRAP, CLX_BG_SECTION, CLX_BG_SURFACE, CLX_BORDER_DEFAULT, CLX_BORDER_DISABLED, CLX_BORDER_MEDIUM, CLX_COLOR_HEX, CLX_COLOR_HEX_100, CLX_COLOR_MAP, CLX_FONT_CATALOG, CLX_MODAL_ANIM_CONFIG, CLX_MODAL_DATA, CLX_MODAL_REF, CLX_OPTION_DISABLED, CLX_PLACEHOLDER, CLX_RADIO_GROUP, CLX_RADIUS_MAP, CLX_TEXT_BODY, CLX_TEXT_DISABLED, CLX_TEXT_HEADING, CLX_TEXT_HINT, CLX_TEXT_IDLE, CLX_TEXT_INPUT, CLX_TEXT_LABEL, CLX_TEXT_OPTION, CLX_TEXT_SUBTITLE, CLX_TEXT_TITLE, CLX_THEME_CONFIG, CLX_THEME_DEFAULTS, CLX_TOAST_DEFAULTS, ClxAlertComponent, ClxAlertService, ClxAnimateDirective, ClxAnimateGroupDirective, ClxAnimateService, ClxAppLayoutComponent, ClxAvatarComponent, ClxBadgeComponent, ClxBrandComponent, ClxButtonComponent, ClxButtonGroupComponent, ClxCardBodyDirective, ClxCardComponent, ClxCardFooterDirective, ClxCardHeaderActionsDirective, ClxCardHeaderDirective, ClxCarouselComponent, ClxCarouselDirective, ClxCartComponent, ClxCartSummaryDrawer, ClxCellDirective, ClxCheckboxComponent, ClxCollapseComponent, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFabComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxMenuItemTrailingDirective, ClxModalComponent, ClxModalService, ClxNativeOverlayService, ClxNavGroupComponent, ClxNotificationComponent, ClxNumberComponent, ClxOtpComponent, ClxPageEmptyComponent, ClxPageHeaderComponent, ClxPageHeaderTitleDirective, ClxPageNotFoundComponent, ClxPageServerErrorComponent, ClxPageUnauthorizedComponent, ClxPaginationComponent, ClxProductComponent, ClxProductDetailComponent, ClxProductQuickViewComponent, ClxProfileComponent, ClxProgressBarComponent, ClxRadioComponent, ClxRadioGroupComponent, ClxRatingComponent, ClxSearchComponent, ClxSelectComponent, ClxSkeletonComponent, ClxSliderComponent, ClxSocialIconComponent, ClxSpinnerComponent, ClxStatCardComponent, ClxStepComponent, ClxStepperComponent, ClxSwitchComponent, ClxTabDirective, ClxTableActionsComponent, ClxTableComponent, ClxTabsComponent, ClxTagComponent, ClxTextareaComponent, ClxThemeService, ClxTimelineComponent, ClxTimelineItemComponent, ClxTimepickerComponent, ClxToastComponent, ClxToastContainerComponent, ClxToastService, ClxTooltipComponent, ClxTooltipDirective, ClxTreeComponent, ClxUploadComponent, ClxWishlistComponent, ClxWizardComponent, TIMEPICKER_SIZE_MAP, parseColorInput, provideCodexlyTheme, resolveColor, resolveContainerRadius, resolveRadius };
|
|
4235
|
-
export type { ClxAlertButtonOptions, ClxAlertOptions, ClxAlertResult, ClxAlertType, ClxAnimateAttentionSeeker, ClxAnimateBackEntrance, ClxAnimateBackExit, ClxAnimateBouncingEntrance, ClxAnimateBouncingExit, ClxAnimateConfig, ClxAnimateDefaults, ClxAnimateEvent, ClxAnimateFadingEntrance, ClxAnimateFadingExit, ClxAnimateFlipper, ClxAnimateLightspeed, ClxAnimateName, ClxAnimateRotatingEntrance, ClxAnimateRotatingExit, ClxAnimateSlidingEntrance, ClxAnimateSlidingExit, ClxAnimateSpecial, ClxAnimateTrigger, ClxAnimateZoomingEntrance, ClxAnimateZoomingExit, ClxAvatarContentType, ClxBadgeVariant, ClxBrandSize, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardShadow, ClxCardTitleZoneStyle, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxCheckboxVariant, ClxCollapseDivider, ClxCollapseSize, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerPosition, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxExistingFile, ClxFabItem, ClxFabPosition, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxFontFamily, ClxFontOption, ClxFontWeight, ClxFormControlsTheme, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListItemLabelZoneStyle, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNavZoneStyle, ClxNotificationItem, ClxNotificationSeverity, ClxNotificationSeverityColors, ClxNotificationSize, ClxNotificationTheme, ClxNumberSize, ClxNumberVariant, ClxOtpSize, ClxPageChangeEvent, ClxPageHeaderTextSize, ClxPageHeaderZoneStyle, ClxPageSizeChangeEvent, ClxPaginationSize, ClxPaginationTheme, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductQuickViewData, ClxProductQuickViewResult, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedCardTitleZoneStyle, ClxResolvedListItemLabelZoneStyle, ClxResolvedNavZoneStyle, ClxResolvedNotificationStyle, ClxResolvedPageHeaderZoneStyle, ClxResolvedPaginationStyle, ClxResolvedTableStyle, ClxResolvedTabsStyle, ClxResolvedTimelineTitleZoneStyle, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSocialPlatform, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableShadow, ClxTableSort, ClxTableSortEvent, ClxTableTheme, ClxTabsTheme, ClxTagShape, ClxTagSize, ClxTagVariant, ClxTextareaResize, ClxTextareaSize, ClxTextareaStatus, ClxThemeConfig, ClxThemeMode, ClxTimelineLineStyle, ClxTimelineMode, ClxTimelineSize, ClxTimelineTitleZoneStyle, ClxTimepickerSize, ClxTimepickerStatus, ClxToastAction, ClxToastEntry, ClxToastOptions, ClxToastPosition, ClxToastType, ClxTooltipPosition, ClxTooltipSize, ClxTreeExpandEvent, ClxTreeNode, ClxTreeSelectEvent, ClxTreeSize, ClxTreeVariant, ClxTrendDirection, ClxUploadError, ClxUploadItemAction, ClxUploadItemActionResolver, ClxUploadPreviewItem, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, NativeOverlayRef, SparkPoint };
|
|
4273
|
+
export type { ClxAlertButtonOptions, ClxAlertOptions, ClxAlertResult, ClxAlertType, ClxAnimateAttentionSeeker, ClxAnimateBackEntrance, ClxAnimateBackExit, ClxAnimateBouncingEntrance, ClxAnimateBouncingExit, ClxAnimateConfig, ClxAnimateDefaults, ClxAnimateEvent, ClxAnimateFadingEntrance, ClxAnimateFadingExit, ClxAnimateFlipper, ClxAnimateLightspeed, ClxAnimateName, ClxAnimateRotatingEntrance, ClxAnimateRotatingExit, ClxAnimateSlidingEntrance, ClxAnimateSlidingExit, ClxAnimateSpecial, ClxAnimateTrigger, ClxAnimateZoomingEntrance, ClxAnimateZoomingExit, ClxAvatarContentType, ClxBadgeVariant, ClxBrandSize, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardShadow, ClxCardTitleZoneStyle, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxCheckboxVariant, ClxCollapseDivider, ClxCollapseSize, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerPosition, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxExistingFile, ClxFabItem, ClxFabPosition, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxFontFamily, ClxFontOption, ClxFontWeight, ClxFormControlsTheme, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListItemLabelZoneStyle, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNavZoneStyle, ClxNotificationItem, ClxNotificationSeverity, ClxNotificationSeverityColors, ClxNotificationSize, ClxNotificationTheme, ClxNumberSize, ClxNumberVariant, ClxOtpSize, ClxPageChangeEvent, ClxPageHeaderTextSize, ClxPageHeaderZoneStyle, ClxPageSizeChangeEvent, ClxPaginationSize, ClxPaginationTheme, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductQuickViewData, ClxProductQuickViewResult, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedCardTitleZoneStyle, ClxResolvedListItemLabelZoneStyle, ClxResolvedNavZoneStyle, ClxResolvedNotificationStyle, ClxResolvedPageHeaderZoneStyle, ClxResolvedPaginationStyle, ClxResolvedTableStyle, ClxResolvedTabsStyle, ClxResolvedTimelineTitleZoneStyle, ClxResolvedWizardStyle, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSocialPlatform, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableShadow, ClxTableSort, ClxTableSortEvent, ClxTableTheme, ClxTabsTheme, ClxTagShape, ClxTagSize, ClxTagVariant, ClxTextareaResize, ClxTextareaSize, ClxTextareaStatus, ClxThemeConfig, ClxThemeMode, ClxTimelineLineStyle, ClxTimelineMode, ClxTimelineSize, ClxTimelineTitleZoneStyle, ClxTimepickerSize, ClxTimepickerStatus, ClxToastAction, ClxToastEntry, ClxToastOptions, ClxToastPosition, ClxToastType, ClxTooltipPosition, ClxTooltipSize, ClxTreeExpandEvent, ClxTreeNode, ClxTreeSelectEvent, ClxTreeSize, ClxTreeVariant, ClxTrendDirection, ClxUploadError, ClxUploadItemAction, ClxUploadItemActionResolver, ClxUploadPreviewItem, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, ClxWizardTheme, NativeOverlayRef, SparkPoint };
|