codexly-ui 0.12.34 → 0.12.36
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 +152 -10
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +45 -7
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -1765,6 +1765,14 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
|
|
|
1765
1765
|
readonly statusMessage: _angular_core.InputSignal<string>;
|
|
1766
1766
|
readonly hint: _angular_core.InputSignal<string>;
|
|
1767
1767
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1768
|
+
/** Overrides the toolbar's Image button: when provided, clicking it calls this instead of
|
|
1769
|
+
* opening the generic "insert by URL" modal (ClxEditorImageModalComponent) — lets a host app
|
|
1770
|
+
* plug in its own picker (e.g. an ERP's product/variant image browser) without this library
|
|
1771
|
+
* needing to know about that app's catalog backend. Resolve to undefined/null to cancel. */
|
|
1772
|
+
readonly imagePicker: _angular_core.InputSignal<(() => Promise<{
|
|
1773
|
+
url: string;
|
|
1774
|
+
alt?: string;
|
|
1775
|
+
} | undefined | null>) | undefined>;
|
|
1768
1776
|
private _bodyEl;
|
|
1769
1777
|
private _sourceEl;
|
|
1770
1778
|
private readonly _cdr;
|
|
@@ -1814,6 +1822,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
|
|
|
1814
1822
|
protected _exec(cmd: string, arg?: string): void;
|
|
1815
1823
|
protected _execVal(cmd: string, event: Event): void;
|
|
1816
1824
|
private _openLinkModal;
|
|
1825
|
+
private _openImageModal;
|
|
1817
1826
|
protected _saveRange(): void;
|
|
1818
1827
|
private _restoreRange;
|
|
1819
1828
|
protected _onPaste(event: ClipboardEvent): void;
|
|
@@ -1830,7 +1839,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
|
|
|
1830
1839
|
registerOnTouched(fn: () => void): void;
|
|
1831
1840
|
setDisabledState(disabled: boolean): void;
|
|
1832
1841
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxEditorComponent, never>;
|
|
1833
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxEditorComponent, "clx-editor", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "statusMessage": { "alias": "statusMessage"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1842
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxEditorComponent, "clx-editor", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "statusMessage": { "alias": "statusMessage"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "imagePicker": { "alias": "imagePicker"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1834
1843
|
}
|
|
1835
1844
|
|
|
1836
1845
|
declare class ClxEditorLinkModalComponent {
|
|
@@ -1848,6 +1857,24 @@ declare class ClxEditorLinkModalComponent {
|
|
|
1848
1857
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxEditorLinkModalComponent, "clx-editor-link-modal", never, {}, {}, never, never, true, never>;
|
|
1849
1858
|
}
|
|
1850
1859
|
|
|
1860
|
+
/** Generic "insert image by URL" fallback for clx-editor's image button — used only when the host
|
|
1861
|
+
* app doesn't provide its own imagePicker() (see ClxEditorComponent), since this library has no
|
|
1862
|
+
* way to reach an app-specific catalog/media backend itself. */
|
|
1863
|
+
declare class ClxEditorImageModalComponent {
|
|
1864
|
+
private readonly _modalRef;
|
|
1865
|
+
private readonly _themeSvc;
|
|
1866
|
+
protected readonly _primaryColor: _angular_core.Signal<codexly_ui.ClxColorInput>;
|
|
1867
|
+
protected readonly _form: FormGroup<{
|
|
1868
|
+
url: FormControl<string>;
|
|
1869
|
+
alt: FormControl<string>;
|
|
1870
|
+
}>;
|
|
1871
|
+
protected readonly _urlInvalid: _angular_core.WritableSignal<boolean>;
|
|
1872
|
+
protected _confirm(): void;
|
|
1873
|
+
protected _cancel(): void;
|
|
1874
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxEditorImageModalComponent, never>;
|
|
1875
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxEditorImageModalComponent, "clx-editor-image-modal", never, {}, {}, never, never, true, never>;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1851
1878
|
declare class ClxStepComponent {
|
|
1852
1879
|
readonly label: _angular_core.InputSignal<string>;
|
|
1853
1880
|
readonly description: _angular_core.InputSignal<string>;
|
|
@@ -2093,9 +2120,13 @@ interface ClxNotificationTheme {
|
|
|
2093
2120
|
severityColors?: ClxNotificationSeverityColors;
|
|
2094
2121
|
/** Unread-row accent (left rail + title dot) — falls back to primaryColor when unset. */
|
|
2095
2122
|
unreadColor?: ClxColorInput;
|
|
2096
|
-
/** clx-tabs (Todas/Sin leer/...) + "Marcar todo leído" link accent —
|
|
2097
|
-
*
|
|
2123
|
+
/** clx-tabs (Todas/Sin leer/...) active tab text/icon color + "Marcar todo leído" link accent —
|
|
2124
|
+
* falls back to the theme's tabs.activeTextColor (then primaryColor) when unset. Independent
|
|
2125
|
+
* from the bell button's own color. */
|
|
2098
2126
|
tabsColor?: ClxColorInput;
|
|
2127
|
+
/** clx-tabs underline color, independent of tabsColor — falls back to the theme's
|
|
2128
|
+
* tabs.underlineColor (then primaryColor) when unset. */
|
|
2129
|
+
tabsUnderlineColor?: ClxColorInput;
|
|
2099
2130
|
/** Row density. Falls back to 'md'. */
|
|
2100
2131
|
size?: ClxNotificationSize;
|
|
2101
2132
|
/** Whether the panel wrapper shows its outer border at all — falls back to true. Same field
|
|
@@ -2555,9 +2586,14 @@ declare class ClxNotificationComponent {
|
|
|
2555
2586
|
/** Unread-count badge color — falls back to the theme's notification.unreadColor (then
|
|
2556
2587
|
* primaryColor) when unset. */
|
|
2557
2588
|
readonly badgeColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2558
|
-
/** clx-tabs (Todas/Sin leer/...) + "Marcar todo leído" link accent —
|
|
2559
|
-
* notification.tabsColor (
|
|
2589
|
+
/** clx-tabs (Todas/Sin leer/...) active tab text/icon color + "Marcar todo leído" link accent —
|
|
2590
|
+
* falls back to the theme's notification.tabsColor (which itself falls back to the general
|
|
2591
|
+
* "Pestañas" theme's tabs.activeTextColor, then primaryColor) when unset. */
|
|
2560
2592
|
readonly tabsColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2593
|
+
/** clx-tabs underline color, independent of tabsColor — falls back to the theme's
|
|
2594
|
+
* notification.tabsUnderlineColor (which itself falls back to tabs.underlineColor, then
|
|
2595
|
+
* primaryColor) when unset. */
|
|
2596
|
+
readonly tabsUnderlineColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2561
2597
|
/** Whether the floating panel shows its outer border — falls back to the theme's
|
|
2562
2598
|
* notification.border (then true) when unset. */
|
|
2563
2599
|
readonly border: _angular_core.InputSignal<boolean | undefined>;
|
|
@@ -2572,6 +2608,7 @@ declare class ClxNotificationComponent {
|
|
|
2572
2608
|
protected readonly _buttonColor: _angular_core.Signal<ClxColorInput>;
|
|
2573
2609
|
protected readonly _badgeColor: _angular_core.Signal<ClxColorInput>;
|
|
2574
2610
|
protected readonly _tabsColor: _angular_core.Signal<ClxColorInput>;
|
|
2611
|
+
protected readonly _tabsUnderlineColor: _angular_core.Signal<ClxColorInput>;
|
|
2575
2612
|
protected readonly _border: _angular_core.Signal<boolean>;
|
|
2576
2613
|
protected readonly _borderColor: _angular_core.Signal<ClxColorInput>;
|
|
2577
2614
|
private readonly _sso;
|
|
@@ -2600,7 +2637,7 @@ declare class ClxNotificationComponent {
|
|
|
2600
2637
|
private _dayLabel;
|
|
2601
2638
|
protected _timeOf(iso: string): string;
|
|
2602
2639
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNotificationComponent, never>;
|
|
2603
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNotificationComponent, "clx-notification", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "categoryTab": { "alias": "categoryTab"; "required": false; "isSignal": true; }; "buttonColor": { "alias": "buttonColor"; "required": false; "isSignal": true; }; "buttonVariant": { "alias": "buttonVariant"; "required": false; "isSignal": true; }; "buttonSize": { "alias": "buttonSize"; "required": false; "isSignal": true; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; "isSignal": true; }; "badgeColor": { "alias": "badgeColor"; "required": false; "isSignal": true; }; "tabsColor": { "alias": "tabsColor"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "required": false; "isSignal": true; }; "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
|
|
2640
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNotificationComponent, "clx-notification", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "categoryTab": { "alias": "categoryTab"; "required": false; "isSignal": true; }; "buttonColor": { "alias": "buttonColor"; "required": false; "isSignal": true; }; "buttonVariant": { "alias": "buttonVariant"; "required": false; "isSignal": true; }; "buttonSize": { "alias": "buttonSize"; "required": false; "isSignal": true; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; "isSignal": true; }; "badgeColor": { "alias": "badgeColor"; "required": false; "isSignal": true; }; "tabsColor": { "alias": "tabsColor"; "required": false; "isSignal": true; }; "tabsUnderlineColor": { "alias": "tabsUnderlineColor"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "required": false; "isSignal": true; }; "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
|
|
2604
2641
|
}
|
|
2605
2642
|
|
|
2606
2643
|
declare class ClxAlertComponent implements OnInit, OnDestroy {
|
|
@@ -4064,6 +4101,7 @@ interface ClxResolvedNotificationStyle {
|
|
|
4064
4101
|
severityColors: Required<ClxNotificationSeverityColors>;
|
|
4065
4102
|
unreadColor: ClxColorInput;
|
|
4066
4103
|
tabsColor: ClxColorInput;
|
|
4104
|
+
tabsUnderlineColor: ClxColorInput;
|
|
4067
4105
|
size: ClxNotificationSize;
|
|
4068
4106
|
border: boolean;
|
|
4069
4107
|
borderColor: ClxColorInput;
|
|
@@ -4267,5 +4305,5 @@ declare class ClxToastService {
|
|
|
4267
4305
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxToastService>;
|
|
4268
4306
|
}
|
|
4269
4307
|
|
|
4270
|
-
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 };
|
|
4308
|
+
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, ClxEditorImageModalComponent, 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 };
|
|
4271
4309
|
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 };
|