codexly-ui 0.12.46 → 0.13.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/fesm2022/codexly-ui.mjs +458 -3
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +172 -3
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -737,6 +737,162 @@ declare class ClxInputComponent implements ControlValueAccessor {
|
|
|
737
737
|
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>;
|
|
738
738
|
}
|
|
739
739
|
|
|
740
|
+
type ClxCardBrand = 'visa' | 'mastercard' | 'amex' | 'unknown';
|
|
741
|
+
/** Luhn checksum + brand detection are pure functions, reusable outside the component (e.g. a
|
|
742
|
+
* parent FormGroup wiring its own cross-field validator) — kept separate from the component
|
|
743
|
+
* class itself, same reasoning as any other framework-agnostic utility in this library. */
|
|
744
|
+
declare const ClxCardValidators: {
|
|
745
|
+
luhn(digits: string): boolean;
|
|
746
|
+
};
|
|
747
|
+
/** Prefix rules ordered so the most specific range is checked before its broader superset would
|
|
748
|
+
* otherwise misclassify it (none overlap here, but future additions should preserve this). */
|
|
749
|
+
declare function detectClxCardBrand(digits: string): ClxCardBrand;
|
|
750
|
+
|
|
751
|
+
/** Plain text input for a card's PAN — groups digits into 4-digit blocks as the customer types,
|
|
752
|
+
* detects the brand (Visa/Mastercard/Amex) by BIN prefix purely to show its label (no network
|
|
753
|
+
* call, no lookup), and exposes a Luhn-valid boolean so a consuming FormGroup can wire its own
|
|
754
|
+
* validator without importing anything beyond ClxCardValidators. Knows nothing about any payment
|
|
755
|
+
* provider — it is a generic card-number field, reusable by any app that ever needs one. */
|
|
756
|
+
declare class ClxCardNumberInputComponent implements ControlValueAccessor {
|
|
757
|
+
private readonly _themeSvc;
|
|
758
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
759
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
760
|
+
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
761
|
+
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
762
|
+
readonly hint: _angular_core.InputSignal<string>;
|
|
763
|
+
readonly status: _angular_core.InputSignal<ClxInputStatus>;
|
|
764
|
+
readonly statusMessage: _angular_core.InputSignal<string>;
|
|
765
|
+
readonly size: _angular_core.InputSignal<ClxInputSize | undefined>;
|
|
766
|
+
protected readonly _size: _angular_core.Signal<ClxInputSize>;
|
|
767
|
+
/** Initial value for standalone use (without FormControl) — raw digits, no spaces. */
|
|
768
|
+
readonly value: _angular_core.InputSignal<string>;
|
|
769
|
+
/** Disabled state for standalone use (without FormControl) */
|
|
770
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
771
|
+
/** Emits the detected brand every time it changes — a consuming form can show its own brand
|
|
772
|
+
* logo elsewhere in the page without re-deriving the detection itself. */
|
|
773
|
+
readonly brandChange: _angular_core.OutputEmitterRef<ClxCardBrand>;
|
|
774
|
+
protected readonly _inputId: string;
|
|
775
|
+
/** Raw digits only (no spaces) — this is the value handed to the FormControl / ControlValueAccessor. */
|
|
776
|
+
readonly _value: _angular_core.WritableSignal<string>;
|
|
777
|
+
private readonly _cvaDisabled;
|
|
778
|
+
private _cvaConnected;
|
|
779
|
+
private readonly _cardDisabled;
|
|
780
|
+
protected readonly _disabled: _angular_core.Signal<boolean>;
|
|
781
|
+
private readonly _valueEffect;
|
|
782
|
+
private readonly _brandEffect;
|
|
783
|
+
private _onChange;
|
|
784
|
+
private _onTouched;
|
|
785
|
+
protected readonly _brand: _angular_core.Signal<ClxCardBrand>;
|
|
786
|
+
protected readonly _brandLabel: _angular_core.Signal<string>;
|
|
787
|
+
/** Digits grouped into 4-character blocks for display only — the underlying FormControl value
|
|
788
|
+
* (see writeValue/_handleInput) never contains the spaces. */
|
|
789
|
+
protected readonly _displayValue: _angular_core.Signal<string>;
|
|
790
|
+
protected readonly _sizeConfig: _angular_core.Signal<{
|
|
791
|
+
input: string;
|
|
792
|
+
label: string;
|
|
793
|
+
hint: string;
|
|
794
|
+
iconSize: "xs" | "sm" | "md";
|
|
795
|
+
iconLeft: string;
|
|
796
|
+
iconRight: string;
|
|
797
|
+
padLeft: string;
|
|
798
|
+
padRight: string;
|
|
799
|
+
padDefaultL: string;
|
|
800
|
+
padDefaultR: string;
|
|
801
|
+
}>;
|
|
802
|
+
protected readonly _statusCfg: _angular_core.Signal<{
|
|
803
|
+
border: string;
|
|
804
|
+
ring: string;
|
|
805
|
+
msgCls: string;
|
|
806
|
+
iconName: string;
|
|
807
|
+
iconColor: string;
|
|
808
|
+
}>;
|
|
809
|
+
protected readonly _labelClass: _angular_core.Signal<string>;
|
|
810
|
+
protected readonly _hintClass: _angular_core.Signal<string>;
|
|
811
|
+
protected readonly _wrapperClass: _angular_core.Signal<string>;
|
|
812
|
+
protected readonly _inputClass: _angular_core.Signal<string>;
|
|
813
|
+
protected readonly _suffixIconWrapCls: _angular_core.Signal<string>;
|
|
814
|
+
protected readonly _brandLabelClass: _angular_core.Signal<string>;
|
|
815
|
+
protected readonly _statusMsgClass: _angular_core.Signal<string>;
|
|
816
|
+
writeValue(val: string): void;
|
|
817
|
+
registerOnChange(fn: (v: string) => void): void;
|
|
818
|
+
registerOnTouched(fn: () => void): void;
|
|
819
|
+
setDisabledState(disabled: boolean): void;
|
|
820
|
+
protected _handleInput(event: Event): void;
|
|
821
|
+
protected _handleBlur(): void;
|
|
822
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxCardNumberInputComponent, never>;
|
|
823
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCardNumberInputComponent, "clx-card-number-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "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; }; }, { "brandChange": "brandChange"; }, never, never, true, never>;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
/** Plain text input for a card's expiry date in MM/YY form — auto-inserts the "/" as the customer
|
|
827
|
+
* types and exposes the raw "MMYY" digits (no slash) as the FormControl value, same convention
|
|
828
|
+
* Wompi's own tokenization endpoint expects for exp_month/exp_year split apart. Knows nothing
|
|
829
|
+
* about any payment provider — a generic expiry field, reusable by any app that ever needs one. */
|
|
830
|
+
declare class ClxCardExpiryInputComponent implements ControlValueAccessor {
|
|
831
|
+
private readonly _themeSvc;
|
|
832
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
833
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
834
|
+
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
835
|
+
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
836
|
+
readonly hint: _angular_core.InputSignal<string>;
|
|
837
|
+
readonly status: _angular_core.InputSignal<ClxInputStatus>;
|
|
838
|
+
readonly statusMessage: _angular_core.InputSignal<string>;
|
|
839
|
+
readonly size: _angular_core.InputSignal<ClxInputSize | undefined>;
|
|
840
|
+
protected readonly _size: _angular_core.Signal<ClxInputSize>;
|
|
841
|
+
/** Initial value for standalone use (without FormControl) — raw "MMYY" digits, no slash. */
|
|
842
|
+
readonly value: _angular_core.InputSignal<string>;
|
|
843
|
+
/** Disabled state for standalone use (without FormControl) */
|
|
844
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
845
|
+
protected readonly _inputId: string;
|
|
846
|
+
/** Raw "MMYY" digits (max 4, no slash) — this is the value handed to the FormControl. */
|
|
847
|
+
readonly _value: _angular_core.WritableSignal<string>;
|
|
848
|
+
private readonly _cvaDisabled;
|
|
849
|
+
private _cvaConnected;
|
|
850
|
+
private readonly _cardDisabled;
|
|
851
|
+
protected readonly _disabled: _angular_core.Signal<boolean>;
|
|
852
|
+
private readonly _valueEffect;
|
|
853
|
+
private _onChange;
|
|
854
|
+
private _onTouched;
|
|
855
|
+
/** "MMYY" -> "MM/YY" for display only — the underlying FormControl value never has the slash. */
|
|
856
|
+
protected readonly _displayValue: _angular_core.Signal<string>;
|
|
857
|
+
protected readonly _sizeConfig: _angular_core.Signal<{
|
|
858
|
+
input: string;
|
|
859
|
+
label: string;
|
|
860
|
+
hint: string;
|
|
861
|
+
iconSize: "xs" | "sm" | "md";
|
|
862
|
+
iconLeft: string;
|
|
863
|
+
iconRight: string;
|
|
864
|
+
padLeft: string;
|
|
865
|
+
padRight: string;
|
|
866
|
+
padDefaultL: string;
|
|
867
|
+
padDefaultR: string;
|
|
868
|
+
}>;
|
|
869
|
+
protected readonly _statusCfg: _angular_core.Signal<{
|
|
870
|
+
border: string;
|
|
871
|
+
ring: string;
|
|
872
|
+
msgCls: string;
|
|
873
|
+
iconName: string;
|
|
874
|
+
iconColor: string;
|
|
875
|
+
}>;
|
|
876
|
+
protected readonly _labelClass: _angular_core.Signal<string>;
|
|
877
|
+
protected readonly _hintClass: _angular_core.Signal<string>;
|
|
878
|
+
protected readonly _wrapperClass: _angular_core.Signal<string>;
|
|
879
|
+
protected readonly _inputClass: _angular_core.Signal<string>;
|
|
880
|
+
protected readonly _suffixIconWrapCls: _angular_core.Signal<string>;
|
|
881
|
+
protected readonly _statusMsgClass: _angular_core.Signal<string>;
|
|
882
|
+
writeValue(val: string): void;
|
|
883
|
+
registerOnChange(fn: (v: string) => void): void;
|
|
884
|
+
registerOnTouched(fn: () => void): void;
|
|
885
|
+
setDisabledState(disabled: boolean): void;
|
|
886
|
+
protected _handleInput(event: Event): void;
|
|
887
|
+
protected _handleBlur(): void;
|
|
888
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxCardExpiryInputComponent, never>;
|
|
889
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCardExpiryInputComponent, "clx-card-expiry-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "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; }; }, {}, never, never, true, never>;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
/** True when MM/YY (2-digit year) refers to a month that has already fully elapsed relative to
|
|
893
|
+
* the system's current date — the expiry month itself is still valid through its last day. */
|
|
894
|
+
declare function isClxCardExpired(month: string, twoDigitYear: string): boolean;
|
|
895
|
+
|
|
740
896
|
type ClxOtpSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
741
897
|
|
|
742
898
|
declare class ClxOtpComponent implements ControlValueAccessor, AfterViewInit {
|
|
@@ -1943,6 +2099,16 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
1943
2099
|
readonly prevLabel: _angular_core.InputSignal<string>;
|
|
1944
2100
|
readonly nextLabel: _angular_core.InputSignal<string>;
|
|
1945
2101
|
readonly finishLabel: _angular_core.InputSignal<string>;
|
|
2102
|
+
/** Which step to land on when the wizard first renders — for restoring an in-progress flow (e.g.
|
|
2103
|
+
* a saved draft, or state re-hydrated after an external redirect) rather than always starting
|
|
2104
|
+
* fresh at step 0. Applied once, in ngAfterContentInit, and clamped to a valid index; deliberately
|
|
2105
|
+
* bypasses the `linear` guard that goTo()/next() enforce for user-driven navigation — that guard
|
|
2106
|
+
* exists to stop a customer from skipping ahead of steps they haven't filled in yet, which doesn't
|
|
2107
|
+
* apply here: the caller is asserting those earlier steps are ALREADY valid (e.g. their own
|
|
2108
|
+
* signals were just re-prefilled from a backend order), not trying to skip past them. Consumers
|
|
2109
|
+
* are responsible for that guarantee — this input trusts it rather than re-validating each
|
|
2110
|
+
* skipped step, since isValid() reflects the CURRENT signal state, which the caller controls. */
|
|
2111
|
+
readonly initialStep: _angular_core.InputSignal<number | undefined>;
|
|
1946
2112
|
readonly stepChange: _angular_core.OutputEmitterRef<number>;
|
|
1947
2113
|
readonly finish: _angular_core.OutputEmitterRef<void>;
|
|
1948
2114
|
private readonly _destroyRef;
|
|
@@ -1950,6 +2116,7 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
1950
2116
|
protected _steps: ClxStepComponent[];
|
|
1951
2117
|
protected readonly _currentIndex: _angular_core.WritableSignal<number>;
|
|
1952
2118
|
ngAfterContentInit(): void;
|
|
2119
|
+
private _applyInitialStep;
|
|
1953
2120
|
private _syncActiveAttrs;
|
|
1954
2121
|
protected readonly _lastIndex: _angular_core.Signal<number>;
|
|
1955
2122
|
protected readonly _currentStepValid: _angular_core.Signal<boolean>;
|
|
@@ -1968,7 +2135,7 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
1968
2135
|
protected readonly _rootClass: _angular_core.Signal<string>;
|
|
1969
2136
|
protected _circleClass(i: number): string;
|
|
1970
2137
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxWizardComponent, never>;
|
|
1971
|
-
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>;
|
|
2138
|
+
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; }; "initialStep": { "alias": "initialStep"; "required": false; "isSignal": true; }; }, { "stepChange": "stepChange"; "finish": "finish"; }, ["_stepQuery"], ["*", "[clx-wizard-footer-start]"], true, never>;
|
|
1972
2139
|
}
|
|
1973
2140
|
|
|
1974
2141
|
declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
@@ -2078,6 +2245,8 @@ interface ClxFormControlsTheme {
|
|
|
2078
2245
|
upload?: ClxColorInput;
|
|
2079
2246
|
otp?: ClxColorInput;
|
|
2080
2247
|
wizard?: ClxColorInput;
|
|
2248
|
+
cardNumber?: ClxColorInput;
|
|
2249
|
+
cardExpiry?: ClxColorInput;
|
|
2081
2250
|
}
|
|
2082
2251
|
type ClxTableShadow = 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
2083
2252
|
interface ClxTableTheme {
|
|
@@ -4359,5 +4528,5 @@ declare class ClxToastService {
|
|
|
4359
4528
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxToastService>;
|
|
4360
4529
|
}
|
|
4361
4530
|
|
|
4362
|
-
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 };
|
|
4363
|
-
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 };
|
|
4531
|
+
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, ClxCardExpiryInputComponent, ClxCardFooterDirective, ClxCardHeaderActionsDirective, ClxCardHeaderDirective, ClxCardNumberInputComponent, ClxCardValidators, 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, detectClxCardBrand, isClxCardExpired, parseColorInput, provideCodexlyTheme, resolveColor, resolveContainerRadius, resolveRadius };
|
|
4532
|
+
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, ClxCardBrand, 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 };
|