codexly-ui 0.10.100 → 0.10.102
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 +32 -12
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +28 -17
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -119,9 +119,9 @@ declare class ClxSocialIconComponent {
|
|
|
119
119
|
readonly platform: _angular_core.InputSignal<ClxSocialPlatform>;
|
|
120
120
|
readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
121
121
|
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
122
|
-
readonly size: _angular_core.InputSignal<"
|
|
122
|
+
readonly size: _angular_core.InputSignal<"md" | "lg" | "xxs" | "xs" | "sm" | undefined>;
|
|
123
123
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
124
|
-
protected readonly _size: _angular_core.Signal<"
|
|
124
|
+
protected readonly _size: _angular_core.Signal<"md" | "lg" | "xxs" | "xs" | "sm">;
|
|
125
125
|
protected readonly _markup: _angular_core.Signal<SafeHtml>;
|
|
126
126
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
127
127
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxSocialIconComponent, never>;
|
|
@@ -138,10 +138,10 @@ declare class ClxButtonComponent {
|
|
|
138
138
|
* unusual background shade (bright yellow) where the variant's own resolved text color (white)
|
|
139
139
|
* reads poorly and a themed text tone is needed instead. */
|
|
140
140
|
readonly textColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
141
|
-
readonly size: _angular_core.InputSignal<"
|
|
141
|
+
readonly size: _angular_core.InputSignal<"md" | "lg" | "xxs" | "xs" | "sm" | undefined>;
|
|
142
142
|
readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
|
|
143
143
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
144
|
-
protected readonly _size: _angular_core.Signal<"
|
|
144
|
+
protected readonly _size: _angular_core.Signal<"md" | "lg" | "xxs" | "xs" | "sm">;
|
|
145
145
|
protected readonly _shape: _angular_core.Signal<ClxShape>;
|
|
146
146
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
147
147
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -191,11 +191,11 @@ declare class ClxBadgeComponent {
|
|
|
191
191
|
private readonly _themeSvc;
|
|
192
192
|
readonly variant: _angular_core.InputSignal<ClxBadgeVariant>;
|
|
193
193
|
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
194
|
-
readonly size: _angular_core.InputSignal<"
|
|
194
|
+
readonly size: _angular_core.InputSignal<"md" | "xs" | "sm" | undefined>;
|
|
195
195
|
readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
|
|
196
196
|
readonly positioned: _angular_core.InputSignal<boolean>;
|
|
197
197
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
198
|
-
protected readonly _size: _angular_core.Signal<"
|
|
198
|
+
protected readonly _size: _angular_core.Signal<"md" | "xs" | "sm">;
|
|
199
199
|
protected readonly _shape: _angular_core.Signal<ClxShape>;
|
|
200
200
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
201
201
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxBadgeComponent, never>;
|
|
@@ -267,7 +267,7 @@ declare class ClxCardComponent {
|
|
|
267
267
|
* product-cart-style layout) regardless of variant/color. */
|
|
268
268
|
readonly border: _angular_core.InputSignal<boolean>;
|
|
269
269
|
/** Per-instance border-radius override — falls back to the theme's global borderRadius when unset. */
|
|
270
|
-
readonly radius: _angular_core.InputSignal<"
|
|
270
|
+
readonly radius: _angular_core.InputSignal<"md" | "lg" | "sm" | "xl" | "none" | "full" | undefined>;
|
|
271
271
|
/** Auto-generated header icon (Material Symbols name) — shown in a rounded primary-subtle
|
|
272
272
|
* square next to headerTitle. Ignored when a manual [clxCardHeader] block is projected. */
|
|
273
273
|
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
@@ -1026,8 +1026,8 @@ declare class ClxCheckboxComponent implements ControlValueAccessor {
|
|
|
1026
1026
|
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
1027
1027
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
1028
1028
|
readonly variant: _angular_core.InputSignal<ClxCheckboxVariant>;
|
|
1029
|
-
readonly size: _angular_core.InputSignal<"
|
|
1030
|
-
protected readonly _size: _angular_core.Signal<"
|
|
1029
|
+
readonly size: _angular_core.InputSignal<"md" | "lg" | "sm" | undefined>;
|
|
1030
|
+
protected readonly _size: _angular_core.Signal<"md" | "lg" | "sm">;
|
|
1031
1031
|
readonly label: _angular_core.InputSignal<string>;
|
|
1032
1032
|
/** Initial value when used without FormControl */
|
|
1033
1033
|
readonly value: _angular_core.InputSignal<boolean>;
|
|
@@ -1076,7 +1076,7 @@ declare class ClxRadioComponent {
|
|
|
1076
1076
|
/** Per-radio overrides — falls back to the group's value if null */
|
|
1077
1077
|
readonly color: _angular_core.InputSignal<ClxColorInput | null>;
|
|
1078
1078
|
readonly variant: _angular_core.InputSignal<ClxRadioVariant | null>;
|
|
1079
|
-
readonly size: _angular_core.InputSignal<"
|
|
1079
|
+
readonly size: _angular_core.InputSignal<"md" | "lg" | "sm" | null>;
|
|
1080
1080
|
private readonly _group;
|
|
1081
1081
|
private readonly _themeSvc;
|
|
1082
1082
|
protected readonly _checked: _angular_core.Signal<boolean>;
|
|
@@ -1112,7 +1112,7 @@ declare class ClxRadioGroupComponent implements ControlValueAccessor {
|
|
|
1112
1112
|
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
1113
1113
|
readonly resolvedColor: _angular_core.Signal<ClxColorInput>;
|
|
1114
1114
|
readonly variant: _angular_core.InputSignal<ClxRadioVariant>;
|
|
1115
|
-
readonly size: _angular_core.InputSignal<"
|
|
1115
|
+
readonly size: _angular_core.InputSignal<"md" | "lg" | "sm">;
|
|
1116
1116
|
readonly direction: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
1117
1117
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1118
1118
|
/** Current selected value — readable by child clx-radio via injection */
|
|
@@ -1929,6 +1929,7 @@ declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
|
1929
1929
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxAppLayoutComponent, "clx-app-layout", never, { "activeColor": { "alias": "activeColor"; "required": false; "isSignal": true; }; }, { "collapsedChange": "collapsedChange"; "expandedChange": "expandedChange"; }, never, ["clx-brand", "[clx-sidebar]", "[clx-header]", "*"], true, never>;
|
|
1930
1930
|
}
|
|
1931
1931
|
|
|
1932
|
+
type ClxBrandSize = 'md' | 'lg';
|
|
1932
1933
|
declare class ClxBrandComponent {
|
|
1933
1934
|
private readonly _sanitizer;
|
|
1934
1935
|
readonly logo: _angular_core.InputSignal<string>;
|
|
@@ -1941,9 +1942,19 @@ declare class ClxBrandComponent {
|
|
|
1941
1942
|
readonly nameHtml: _angular_core.InputSignal<string | null | undefined>;
|
|
1942
1943
|
readonly description: _angular_core.InputSignal<string>;
|
|
1943
1944
|
readonly collapsed: _angular_core.InputSignal<boolean>;
|
|
1945
|
+
/** 'md' (default) preserves the original compact, left-aligned look. 'lg' centers the whole
|
|
1946
|
+
* block and enlarges the logo/name for a more prominent brand splash. */
|
|
1947
|
+
readonly size: _angular_core.InputSignal<ClxBrandSize>;
|
|
1948
|
+
protected readonly _sizeClasses: _angular_core.Signal<{
|
|
1949
|
+
wrapper: string;
|
|
1950
|
+
wrapperCollapsed: string;
|
|
1951
|
+
logo: string;
|
|
1952
|
+
name: string;
|
|
1953
|
+
description: string;
|
|
1954
|
+
}>;
|
|
1944
1955
|
protected readonly _safeNameHtml: _angular_core.Signal<SafeHtml>;
|
|
1945
1956
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxBrandComponent, never>;
|
|
1946
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxBrandComponent, "clx-brand", never, { "logo": { "alias": "logo"; "required": true; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "nameHtml": { "alias": "nameHtml"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1957
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxBrandComponent, "clx-brand", never, { "logo": { "alias": "logo"; "required": true; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "nameHtml": { "alias": "nameHtml"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1947
1958
|
}
|
|
1948
1959
|
|
|
1949
1960
|
type ClxFontFamily = 'Roboto' | 'Inter' | 'Poppins' | 'Plus Jakarta Sans' | 'Nunito' | 'DM Sans' | 'Geist' | 'Lato' | 'Montserrat' | 'Open Sans' | 'Work Sans' | 'Manrope' | 'Sora' | 'Outfit' | 'Rubik' | 'Source Sans 3' | 'Space Grotesk' | 'Merriweather' | 'Playfair Display' | 'Lora' | 'PT Serif' | 'Caveat' | 'Dancing Script' | 'Cinzel' | 'Berkshire Swash' | 'JetBrains Mono' | 'Orbitron' | 'UnifrakturMaguntia' | 'Pirata One' | 'Press Start 2P' | 'Bungee';
|
|
@@ -2051,7 +2062,7 @@ declare class ClxMenuComponent implements AfterViewInit {
|
|
|
2051
2062
|
readonly style: _angular_core.InputSignal<ClxNavZoneStyle | undefined>;
|
|
2052
2063
|
protected readonly _resolved: _angular_core.Signal<{
|
|
2053
2064
|
color: codexly_ui.ClxColorInput;
|
|
2054
|
-
size: "
|
|
2065
|
+
size: "md" | "xs" | "sm";
|
|
2055
2066
|
weight: codexly_ui.ClxFontWeight;
|
|
2056
2067
|
}>;
|
|
2057
2068
|
protected readonly _color: _angular_core.Signal<codexly_ui.ClxColorInput>;
|
|
@@ -2776,7 +2787,7 @@ declare class ClxFabComponent {
|
|
|
2776
2787
|
readonly icon: _angular_core.InputSignal<string>;
|
|
2777
2788
|
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2778
2789
|
readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
2779
|
-
readonly size: _angular_core.InputSignal<"
|
|
2790
|
+
readonly size: _angular_core.InputSignal<"md" | "lg" | "sm">;
|
|
2780
2791
|
readonly shadow: _angular_core.InputSignal<ClxCardShadow>;
|
|
2781
2792
|
readonly triggerLabel: _angular_core.InputSignal<string>;
|
|
2782
2793
|
/** Fixed offset from the bottom-right corner of the viewport. */
|
|
@@ -3045,7 +3056,7 @@ declare class ClxProductComponent {
|
|
|
3045
3056
|
protected readonly _disabled: _angular_core.Signal<boolean>;
|
|
3046
3057
|
protected readonly _hasMultipleOptions: _angular_core.Signal<boolean>;
|
|
3047
3058
|
protected readonly _price: _angular_core.Signal<number>;
|
|
3048
|
-
protected readonly _buttonSize: _angular_core.Signal<"
|
|
3059
|
+
protected readonly _buttonSize: _angular_core.Signal<"md" | "sm">;
|
|
3049
3060
|
protected readonly _skeletonW: _angular_core.Signal<"sm:w-32" | "sm:w-44">;
|
|
3050
3061
|
protected readonly _skeletonH: _angular_core.Signal<"160px" | "200px">;
|
|
3051
3062
|
protected readonly _cardClass: _angular_core.Signal<string>;
|
|
@@ -3463,7 +3474,7 @@ declare class ClxSearchComponent implements ControlValueAccessor {
|
|
|
3463
3474
|
padDefaultL: string;
|
|
3464
3475
|
padDefaultR: string;
|
|
3465
3476
|
}>;
|
|
3466
|
-
protected readonly _buttonSize: _angular_core.Signal<"
|
|
3477
|
+
protected readonly _buttonSize: _angular_core.Signal<"md" | "lg" | "xs" | "sm">;
|
|
3467
3478
|
protected readonly _wrapperClass: _angular_core.Signal<string>;
|
|
3468
3479
|
protected readonly _inputClass: _angular_core.Signal<string>;
|
|
3469
3480
|
writeValue(val: string): void;
|
|
@@ -3755,4 +3766,4 @@ declare class ClxToastService {
|
|
|
3755
3766
|
}
|
|
3756
3767
|
|
|
3757
3768
|
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, 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, 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 };
|
|
3758
|
-
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, 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, ClxNumberSize, ClxNumberVariant, ClxOtpSize, ClxPageChangeEvent, ClxPageHeaderTextSize, ClxPageHeaderZoneStyle, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductQuickViewData, ClxProductQuickViewResult, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedCardTitleZoneStyle, ClxResolvedListItemLabelZoneStyle, ClxResolvedNavZoneStyle, ClxResolvedPageHeaderZoneStyle, ClxResolvedTimelineTitleZoneStyle, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSocialPlatform, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableSort, ClxTableSortEvent, 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 };
|
|
3769
|
+
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, ClxNumberSize, ClxNumberVariant, ClxOtpSize, ClxPageChangeEvent, ClxPageHeaderTextSize, ClxPageHeaderZoneStyle, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductQuickViewData, ClxProductQuickViewResult, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedCardTitleZoneStyle, ClxResolvedListItemLabelZoneStyle, ClxResolvedNavZoneStyle, ClxResolvedPageHeaderZoneStyle, ClxResolvedTimelineTitleZoneStyle, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSocialPlatform, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableSort, ClxTableSortEvent, 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 };
|