codexly-ui 0.10.89 → 0.10.90
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 +226 -2
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +68 -10
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { Signal, InjectionToken, OnDestroy, ElementRef,
|
|
2
|
+
import { Signal, AfterViewInit, InjectionToken, OnDestroy, ElementRef, AfterContentInit, OnInit, Provider, QueryList, TemplateRef, OnChanges, SimpleChanges, Type, Injector, ComponentRef } from '@angular/core';
|
|
3
3
|
import { SafeHtml } from '@angular/platform-browser';
|
|
4
4
|
import * as codexly_ui from 'codexly-ui';
|
|
5
5
|
import { ControlValueAccessor, FormControl, FormGroup } from '@angular/forms';
|
|
@@ -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<"xs" | "sm" | "md" | "lg" | "xxs" | undefined>;
|
|
123
123
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
124
|
-
protected readonly _size: _angular_core.Signal<"
|
|
124
|
+
protected readonly _size: _angular_core.Signal<"xs" | "sm" | "md" | "lg" | "xxs">;
|
|
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<"xs" | "sm" | "md" | "lg" | "xxs" | 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<"xs" | "sm" | "md" | "lg" | "xxs">;
|
|
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>;
|
|
@@ -436,7 +436,7 @@ declare class ClxProgressBarComponent {
|
|
|
436
436
|
readonly variant: _angular_core.InputSignal<ClxProgressBarVariant>;
|
|
437
437
|
readonly label: _angular_core.InputSignal<string>;
|
|
438
438
|
readonly showValue: _angular_core.InputSignal<boolean>;
|
|
439
|
-
readonly valueFormat: _angular_core.InputSignal<"
|
|
439
|
+
readonly valueFormat: _angular_core.InputSignal<"value" | "percent" | "fraction">;
|
|
440
440
|
protected readonly _pct: _angular_core.Signal<number>;
|
|
441
441
|
protected readonly _pbSize: _angular_core.Signal<ClxProgressBarSize>;
|
|
442
442
|
protected readonly _trackH: _angular_core.Signal<string>;
|
|
@@ -677,6 +677,64 @@ declare class ClxInputComponent implements ControlValueAccessor {
|
|
|
677
677
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxInputComponent, "clx-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "prefixIcon": { "alias": "prefixIcon"; "required": false; "isSignal": true; }; "suffixIcon": { "alias": "suffixIcon"; "required": false; "isSignal": true; }; "prefixText": { "alias": "prefixText"; "required": false; "isSignal": true; }; "suffixText": { "alias": "suffixText"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "statusMessage": { "alias": "statusMessage"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
678
678
|
}
|
|
679
679
|
|
|
680
|
+
type ClxOtpSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
681
|
+
|
|
682
|
+
declare class ClxOtpComponent implements ControlValueAccessor, AfterViewInit {
|
|
683
|
+
private readonly _themeSvc;
|
|
684
|
+
readonly length: _angular_core.InputSignal<number>;
|
|
685
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
686
|
+
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
687
|
+
readonly size: _angular_core.InputSignal<ClxOtpSize | undefined>;
|
|
688
|
+
readonly hint: _angular_core.InputSignal<string>;
|
|
689
|
+
readonly status: _angular_core.InputSignal<ClxInputStatus>;
|
|
690
|
+
readonly errorMessage: _angular_core.InputSignal<string>;
|
|
691
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
692
|
+
/** Autofocus the first box on init */
|
|
693
|
+
readonly autoFocus: _angular_core.InputSignal<boolean>;
|
|
694
|
+
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
695
|
+
protected readonly _size: _angular_core.Signal<ClxOtpSize>;
|
|
696
|
+
protected readonly _sizeConfig: _angular_core.Signal<{
|
|
697
|
+
box: string;
|
|
698
|
+
text: string;
|
|
699
|
+
gap: string;
|
|
700
|
+
}>;
|
|
701
|
+
protected readonly _statusCfg: _angular_core.Signal<{
|
|
702
|
+
border: string;
|
|
703
|
+
ring: string;
|
|
704
|
+
msgCls: string;
|
|
705
|
+
iconName: string;
|
|
706
|
+
iconColor: string;
|
|
707
|
+
}>;
|
|
708
|
+
protected readonly _indices: _angular_core.Signal<number[]>;
|
|
709
|
+
private static _seq;
|
|
710
|
+
protected readonly _labelId: string;
|
|
711
|
+
readonly _digits: _angular_core.WritableSignal<string[]>;
|
|
712
|
+
private readonly _wasTouched;
|
|
713
|
+
private readonly _cvaDisabled;
|
|
714
|
+
private _boxes;
|
|
715
|
+
private _onChange;
|
|
716
|
+
private _onTouched;
|
|
717
|
+
ngAfterViewInit(): void;
|
|
718
|
+
protected readonly _isInvalid: _angular_core.Signal<boolean>;
|
|
719
|
+
protected readonly _labelClass: _angular_core.Signal<string>;
|
|
720
|
+
protected readonly _hintClass: _angular_core.Signal<string>;
|
|
721
|
+
protected readonly _groupClass: _angular_core.Signal<string>;
|
|
722
|
+
protected readonly _boxClass: _angular_core.Signal<string>;
|
|
723
|
+
protected _onInput(index: number, event: Event): void;
|
|
724
|
+
protected _onKeydown(index: number, event: KeyboardEvent): void;
|
|
725
|
+
protected _onPaste(event: ClipboardEvent): void;
|
|
726
|
+
protected _onFocus(index: number): void;
|
|
727
|
+
protected _handleBlur(): void;
|
|
728
|
+
private _focusBox;
|
|
729
|
+
private _emit;
|
|
730
|
+
writeValue(val: string | null): void;
|
|
731
|
+
registerOnChange(fn: (v: string) => void): void;
|
|
732
|
+
registerOnTouched(fn: () => void): void;
|
|
733
|
+
setDisabledState(disabled: boolean): void;
|
|
734
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxOtpComponent, never>;
|
|
735
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxOtpComponent, "clx-otp", never, { "length": { "alias": "length"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "autoFocus": { "alias": "autoFocus"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
736
|
+
}
|
|
737
|
+
|
|
680
738
|
type ClxTextareaStatus = 'default' | 'error' | 'success';
|
|
681
739
|
type ClxTextareaSize = 'sm' | 'md' | 'lg';
|
|
682
740
|
type ClxTextareaResize = 'none' | 'vertical' | 'horizontal' | 'both';
|
|
@@ -1643,7 +1701,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
|
|
|
1643
1701
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
1644
1702
|
readonly size: _angular_core.InputSignal<ClxEditorSize | undefined>;
|
|
1645
1703
|
protected readonly _editorSize: _angular_core.Signal<ClxEditorSize>;
|
|
1646
|
-
readonly status: _angular_core.InputSignal<"
|
|
1704
|
+
readonly status: _angular_core.InputSignal<"default" | "error" | "success">;
|
|
1647
1705
|
readonly statusMessage: _angular_core.InputSignal<string>;
|
|
1648
1706
|
readonly hint: _angular_core.InputSignal<string>;
|
|
1649
1707
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -2654,7 +2712,7 @@ declare class ClxFabComponent {
|
|
|
2654
2712
|
protected readonly _position: _angular_core.Signal<ClxFabPosition>;
|
|
2655
2713
|
protected readonly _triggerClass: _angular_core.Signal<string>;
|
|
2656
2714
|
/** Los botones de la pila de accesos van un paso más pequeños que el trigger. */
|
|
2657
|
-
protected readonly _itemSize: _angular_core.Signal<"
|
|
2715
|
+
protected readonly _itemSize: _angular_core.Signal<"xs" | "sm" | "xxs">;
|
|
2658
2716
|
private readonly _sso;
|
|
2659
2717
|
readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
2660
2718
|
readonly _positions: ConnectedPosition[];
|
|
@@ -3610,5 +3668,5 @@ declare class ClxToastService {
|
|
|
3610
3668
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxToastService>;
|
|
3611
3669
|
}
|
|
3612
3670
|
|
|
3613
|
-
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, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFabComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxMenuItemTrailingDirective, ClxModalComponent, ClxModalService, ClxNativeOverlayService, ClxNavGroupComponent, ClxNumberComponent, 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 };
|
|
3614
|
-
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, 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, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListItemLabelZoneStyle, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNavZoneStyle, ClxNumberSize, ClxNumberVariant, 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 };
|
|
3671
|
+
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, 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 };
|
|
3672
|
+
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, 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, 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 };
|