@taiga-ui/addon-commerce 4.52.0-canary.a4e325d → 4.52.0-canary.a59c4d0
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/index.d.ts +0 -1
- package/components/input-card/input-card.component.d.ts +3 -9
- package/components/input-card-group/input-card-group.component.d.ts +4 -7
- package/components/input-card-group/input-card-group.options.d.ts +1 -2
- package/components/input-cvc/input-cvc.directive.d.ts +1 -3
- package/components/input-expire/input-expire.directive.d.ts +1 -3
- package/components/thumbnail-card/thumbnail-card.component.d.ts +1 -3
- package/components/thumbnail-card/thumbnail-card.options.d.ts +0 -2
- package/fesm2022/taiga-ui-addon-commerce-components-input-card-group.mjs +20 -37
- package/fesm2022/taiga-ui-addon-commerce-components-input-card-group.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-components-input-card.mjs +30 -61
- package/fesm2022/taiga-ui-addon-commerce-components-input-card.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-components-input-cvc.mjs +5 -10
- package/fesm2022/taiga-ui-addon-commerce-components-input-cvc.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-components-input-expire.mjs +5 -10
- package/fesm2022/taiga-ui-addon-commerce-components-input-expire.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-components-thumbnail-card.mjs +6 -11
- 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 +3 -3
- package/fesm2022/taiga-ui-addon-commerce-pipes-amount.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-pipes-currency.mjs +3 -3
- package/fesm2022/taiga-ui-addon-commerce-pipes-currency.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-pipes-decimal.mjs +3 -3
- package/fesm2022/taiga-ui-addon-commerce-pipes-decimal.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-pipes-format-card.mjs +3 -3
- package/fesm2022/taiga-ui-addon-commerce-pipes-format-card.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-tokens.mjs +11 -11
- package/fesm2022/taiga-ui-addon-commerce-tokens.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-commerce-types.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 +5 -5
- package/components/input-card/input-card.options.d.ts +0 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/addon-commerce",
|
|
3
|
-
"version": "4.52.0-canary.
|
|
3
|
+
"version": "4.52.0-canary.a59c4d0",
|
|
4
4
|
"description": "Extension package for Taiga UI related to commerce, payment systems, currencies etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"@angular/common": ">=19.0.0",
|
|
18
18
|
"@angular/core": ">=19.0.0",
|
|
19
19
|
"@angular/forms": ">=19.0.0",
|
|
20
|
-
"@maskito/angular": "^3.
|
|
21
|
-
"@maskito/core": "^3.
|
|
22
|
-
"@maskito/kit": "^3.
|
|
23
|
-
"@ng-web-apis/common": "^4.12.
|
|
20
|
+
"@maskito/angular": "^3.11.1",
|
|
21
|
+
"@maskito/core": "^3.11.1",
|
|
22
|
+
"@maskito/kit": "^3.11.1",
|
|
23
|
+
"@ng-web-apis/common": "^4.12.2",
|
|
24
24
|
"@taiga-ui/cdk": "^4.52.0",
|
|
25
25
|
"@taiga-ui/core": "^4.52.0",
|
|
26
26
|
"@taiga-ui/i18n": "^4.52.0",
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { InjectionToken, type Provider } from '@angular/core';
|
|
2
|
-
import { type TuiPaymentSystem } from '@taiga-ui/addon-commerce/types';
|
|
3
|
-
import { type TuiHandler } from '@taiga-ui/cdk/types';
|
|
4
|
-
export interface TuiInputCardOptions {
|
|
5
|
-
/** @deprecated apparently "off" doesn't disable autocomplete */
|
|
6
|
-
readonly autocomplete: boolean;
|
|
7
|
-
readonly icon: string | null;
|
|
8
|
-
readonly paymentSystemHandler: TuiHandler<string | null | undefined, TuiPaymentSystem | null>;
|
|
9
|
-
}
|
|
10
|
-
export declare const TUI_INPUT_CARD_DEFAULT_OPTIONS: TuiInputCardOptions;
|
|
11
|
-
export declare const TUI_INPUT_CARD_OPTIONS: InjectionToken<TuiInputCardOptions>;
|
|
12
|
-
export declare function tuiInputCardOptionsProvider(options: Partial<TuiInputCardOptions>): Provider;
|