@taiga-ui/addon-commerce 4.48.0 → 4.49.0-canary.8c4d1de
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/components/input-card/input-card.component.d.ts +1 -1
- package/components/input-card/input-card.options.d.ts +3 -4
- package/components/input-card-group/input-card-group.component.d.ts +4 -5
- package/components/input-card-group/input-card-group.options.d.ts +3 -4
- package/components/input-card-group/input-card-group.providers.d.ts +1 -1
- package/components/input-cvc/input-cvc.directive.d.ts +1 -1
- package/components/thumbnail-card/thumbnail-card.component.d.ts +3 -3
- package/components/thumbnail-card/thumbnail-card.options.d.ts +3 -3
- package/constants/default-card-validator.d.ts +1 -1
- package/constants/mask-card-holder.d.ts +1 -1
- package/constants/mask-card.d.ts +1 -1
- package/constants/mask-cvc.d.ts +2 -2
- package/esm2022/components/input-card/input-card.component.mjs +1 -1
- package/esm2022/components/input-card/input-card.options.mjs +1 -1
- package/esm2022/components/input-card-group/input-card-group.component.mjs +2 -2
- package/esm2022/components/input-card-group/input-card-group.options.mjs +2 -2
- package/esm2022/components/input-card-group/input-card-group.providers.mjs +1 -1
- package/esm2022/components/input-cvc/input-cvc.directive.mjs +1 -1
- package/esm2022/components/thumbnail-card/thumbnail-card.component.mjs +3 -3
- package/esm2022/components/thumbnail-card/thumbnail-card.options.mjs +1 -1
- package/esm2022/constants/default-card-validator.mjs +1 -1
- package/esm2022/constants/mask-card-holder.mjs +1 -1
- package/esm2022/constants/mask-card.mjs +1 -1
- package/esm2022/constants/mask-cvc.mjs +1 -1
- package/esm2022/pipes/amount/amount.options.mjs +1 -1
- package/esm2022/pipes/amount/amount.pipe.mjs +1 -1
- package/esm2022/pipes/amount/amount.types.mjs +1 -1
- package/esm2022/pipes/amount/amount.utils.mjs +1 -1
- package/esm2022/pipes/currency/currency.pipe.mjs +1 -1
- package/esm2022/pipes/decimal/decimal.pipe.mjs +1 -1
- package/esm2022/pipes/format-card/format-card.pipe.mjs +1 -1
- package/esm2022/tokens/i18n.mjs +1 -1
- package/esm2022/tokens/payment-system-icons.mjs +1 -1
- package/esm2022/types/currency-variants.mjs +1 -1
- package/esm2022/utils/format-currency.mjs +1 -1
- package/esm2022/utils/get-currency-symbol.mjs +2 -2
- package/esm2022/utils/get-payment-system.mjs +1 -1
- package/esm2022/validators/card-expire.validator.mjs +1 -1
- package/esm2022/validators/card-number.validator.mjs +1 -1
- package/esm2022/validators/luhn.validator.mjs +1 -1
- package/fesm2022/taiga-ui-addon-commerce-components-input-card-group.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-components-input-card.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-components-input-cvc.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-components-thumbnail-card.mjs +2 -2
- package/fesm2022/taiga-ui-addon-commerce-components-thumbnail-card.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-constants.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-pipes-amount.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-pipes-currency.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-pipes-decimal.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-pipes-format-card.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-tokens.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-utils.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-validators.mjs.map +1 -1
- package/package.json +8 -8
- package/pipes/amount/amount.options.d.ts +4 -5
- package/pipes/amount/amount.pipe.d.ts +4 -4
- package/pipes/amount/amount.types.d.ts +1 -1
- package/pipes/amount/amount.utils.d.ts +1 -1
- package/pipes/currency/currency.pipe.d.ts +2 -2
- package/pipes/decimal/decimal.pipe.d.ts +3 -3
- package/pipes/format-card/format-card.pipe.d.ts +1 -1
- package/tokens/i18n.d.ts +1 -1
- package/tokens/payment-system-icons.d.ts +1 -1
- package/types/currency-variants.d.ts +2 -2
- package/utils/format-currency.d.ts +1 -1
- package/utils/get-currency-symbol.d.ts +1 -1
- package/utils/get-payment-system.d.ts +1 -1
- package/validators/card-expire.validator.d.ts +1 -1
- package/validators/card-number.validator.d.ts +1 -1
- package/validators/luhn.validator.d.ts +2 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type TuiCurrencyVariants } from '@taiga-ui/addon-commerce/types';
|
|
2
2
|
export declare function tuiGetCurrencySymbol(currency: TuiCurrencyVariants): string | null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type AbstractControl, type ValidationErrors } from '@angular/forms';
|
|
2
2
|
export declare function tuiCardExpireValidator({ value, }: AbstractControl): ValidationErrors | null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type AbstractControl, type ValidationErrors } from '@angular/forms';
|
|
2
2
|
export declare function tuiCardNumberValidator({ value, }: AbstractControl): ValidationErrors | null;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import type
|
|
1
|
+
import { type ValidatorFn } from '@angular/forms';
|
|
2
|
+
import { type PolymorpheusContent } from '@taiga-ui/polymorpheus';
|
|
3
3
|
export declare function tuiCreateLuhnValidator(message: PolymorpheusContent): ValidatorFn;
|