codexly-ui 0.12.46 → 0.12.47
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 +438 -1
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +173 -15
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<"sm" | "md" | "lg" | "xxs" | "xs" | undefined>;
|
|
123
123
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
124
|
-
protected readonly _size: _angular_core.Signal<"
|
|
124
|
+
protected readonly _size: _angular_core.Signal<"sm" | "md" | "lg" | "xxs" | "xs">;
|
|
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>;
|
|
@@ -144,11 +144,11 @@ declare class ClxButtonComponent {
|
|
|
144
144
|
* unusual background shade (bright yellow) where the variant's own resolved text color (white)
|
|
145
145
|
* reads poorly and a themed text tone is needed instead. */
|
|
146
146
|
readonly textColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
147
|
-
readonly size: _angular_core.InputSignal<"
|
|
147
|
+
readonly size: _angular_core.InputSignal<"sm" | "md" | "lg" | "xxs" | "xs" | undefined>;
|
|
148
148
|
readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
|
|
149
149
|
private readonly _tableActionsColor;
|
|
150
150
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
151
|
-
protected readonly _size: _angular_core.Signal<"
|
|
151
|
+
protected readonly _size: _angular_core.Signal<"sm" | "md" | "lg" | "xxs" | "xs">;
|
|
152
152
|
protected readonly _shape: _angular_core.Signal<ClxShape>;
|
|
153
153
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
154
154
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -204,11 +204,11 @@ declare class ClxBadgeComponent {
|
|
|
204
204
|
private readonly _themeSvc;
|
|
205
205
|
readonly variant: _angular_core.InputSignal<ClxBadgeVariant>;
|
|
206
206
|
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
207
|
-
readonly size: _angular_core.InputSignal<"
|
|
207
|
+
readonly size: _angular_core.InputSignal<"sm" | "md" | "xs" | undefined>;
|
|
208
208
|
readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
|
|
209
209
|
readonly positioned: _angular_core.InputSignal<boolean>;
|
|
210
210
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
211
|
-
protected readonly _size: _angular_core.Signal<"
|
|
211
|
+
protected readonly _size: _angular_core.Signal<"sm" | "md" | "xs">;
|
|
212
212
|
protected readonly _shape: _angular_core.Signal<ClxShape>;
|
|
213
213
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
214
214
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxBadgeComponent, never>;
|
|
@@ -280,7 +280,7 @@ declare class ClxCardComponent {
|
|
|
280
280
|
* product-cart-style layout) regardless of variant/color. */
|
|
281
281
|
readonly border: _angular_core.InputSignal<boolean>;
|
|
282
282
|
/** Per-instance border-radius override — falls back to the theme's global borderRadius when unset. */
|
|
283
|
-
readonly radius: _angular_core.InputSignal<"sm" | "md" | "lg" | "
|
|
283
|
+
readonly radius: _angular_core.InputSignal<"sm" | "md" | "lg" | "none" | "xl" | "full" | undefined>;
|
|
284
284
|
/** Auto-generated header icon (Material Symbols name) — shown in a rounded primary-subtle
|
|
285
285
|
* square next to headerTitle. Ignored when a manual [clxCardHeader] block is projected. */
|
|
286
286
|
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
@@ -495,7 +495,7 @@ declare class ClxProgressBarComponent {
|
|
|
495
495
|
readonly variant: _angular_core.InputSignal<ClxProgressBarVariant>;
|
|
496
496
|
readonly label: _angular_core.InputSignal<string>;
|
|
497
497
|
readonly showValue: _angular_core.InputSignal<boolean>;
|
|
498
|
-
readonly valueFormat: _angular_core.InputSignal<"
|
|
498
|
+
readonly valueFormat: _angular_core.InputSignal<"value" | "percent" | "fraction">;
|
|
499
499
|
protected readonly _pct: _angular_core.Signal<number>;
|
|
500
500
|
protected readonly _pbSize: _angular_core.Signal<ClxProgressBarSize>;
|
|
501
501
|
protected readonly _trackH: _angular_core.Signal<string>;
|
|
@@ -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 {
|
|
@@ -1767,7 +1923,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
|
|
|
1767
1923
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
1768
1924
|
readonly size: _angular_core.InputSignal<ClxEditorSize | undefined>;
|
|
1769
1925
|
protected readonly _editorSize: _angular_core.Signal<ClxEditorSize>;
|
|
1770
|
-
readonly status: _angular_core.InputSignal<"
|
|
1926
|
+
readonly status: _angular_core.InputSignal<"default" | "error" | "success">;
|
|
1771
1927
|
readonly statusMessage: _angular_core.InputSignal<string>;
|
|
1772
1928
|
readonly hint: _angular_core.InputSignal<string>;
|
|
1773
1929
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -2078,6 +2234,8 @@ interface ClxFormControlsTheme {
|
|
|
2078
2234
|
upload?: ClxColorInput;
|
|
2079
2235
|
otp?: ClxColorInput;
|
|
2080
2236
|
wizard?: ClxColorInput;
|
|
2237
|
+
cardNumber?: ClxColorInput;
|
|
2238
|
+
cardExpiry?: ClxColorInput;
|
|
2081
2239
|
}
|
|
2082
2240
|
type ClxTableShadow = 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
2083
2241
|
interface ClxTableTheme {
|
|
@@ -2246,7 +2404,7 @@ declare class ClxMenuComponent implements AfterViewInit {
|
|
|
2246
2404
|
readonly style: _angular_core.InputSignal<ClxNavZoneStyle | undefined>;
|
|
2247
2405
|
protected readonly _resolved: _angular_core.Signal<{
|
|
2248
2406
|
color: codexly_ui.ClxColorInput;
|
|
2249
|
-
size: "
|
|
2407
|
+
size: "sm" | "md" | "xs";
|
|
2250
2408
|
weight: codexly_ui.ClxFontWeight;
|
|
2251
2409
|
}>;
|
|
2252
2410
|
protected readonly _color: _angular_core.Signal<codexly_ui.ClxColorInput>;
|
|
@@ -2600,7 +2758,7 @@ declare class ClxNotificationComponent {
|
|
|
2600
2758
|
} | undefined>;
|
|
2601
2759
|
readonly buttonColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2602
2760
|
readonly buttonVariant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
2603
|
-
readonly buttonSize: _angular_core.InputSignal<"
|
|
2761
|
+
readonly buttonSize: _angular_core.InputSignal<"sm" | "md" | "lg" | "xxs" | "xs">;
|
|
2604
2762
|
readonly buttonIcon: _angular_core.InputSignal<string>;
|
|
2605
2763
|
/** Unread-count badge color — falls back to the theme's notification.unreadColor (then
|
|
2606
2764
|
* primaryColor) when unset. */
|
|
@@ -3152,7 +3310,7 @@ declare class ClxFabComponent {
|
|
|
3152
3310
|
protected readonly _position: _angular_core.Signal<ClxFabPosition>;
|
|
3153
3311
|
protected readonly _triggerClass: _angular_core.Signal<string>;
|
|
3154
3312
|
/** Los botones de la pila de accesos van un paso más pequeños que el trigger. */
|
|
3155
|
-
protected readonly _itemSize: _angular_core.Signal<"
|
|
3313
|
+
protected readonly _itemSize: _angular_core.Signal<"sm" | "xxs" | "xs">;
|
|
3156
3314
|
private readonly _sso;
|
|
3157
3315
|
readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
3158
3316
|
readonly _positions: ConnectedPosition[];
|
|
@@ -4000,7 +4158,7 @@ declare class ClxSearchComponent implements ControlValueAccessor {
|
|
|
4000
4158
|
padDefaultL: string;
|
|
4001
4159
|
padDefaultR: string;
|
|
4002
4160
|
}>;
|
|
4003
|
-
protected readonly _buttonSize: _angular_core.Signal<"
|
|
4161
|
+
protected readonly _buttonSize: _angular_core.Signal<"sm" | "md" | "lg" | "xs">;
|
|
4004
4162
|
protected readonly _wrapperClass: _angular_core.Signal<string>;
|
|
4005
4163
|
protected readonly _inputClass: _angular_core.Signal<string>;
|
|
4006
4164
|
writeValue(val: string): void;
|
|
@@ -4359,5 +4517,5 @@ declare class ClxToastService {
|
|
|
4359
4517
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxToastService>;
|
|
4360
4518
|
}
|
|
4361
4519
|
|
|
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 };
|
|
4520
|
+
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 };
|
|
4521
|
+
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 };
|