@croeminc/croem-card-widget 0.6.0-beta.2
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/Constants.d.ts +8 -0
- package/README.md +125 -0
- package/esm2020/Constants.mjs +9 -0
- package/esm2020/croeminc-croem-card-widget.mjs +5 -0
- package/esm2020/lib/card-widget/Add-card-widget/add-card-widget/add-card-widget.component.mjs +195 -0
- package/esm2020/lib/card-widget/Pay-card-widget/payment-card-widget/payment-card-widget.component.mjs +149 -0
- package/esm2020/lib/card-widget/Update-card-widget/update-card-widget/update-card-widget.component.mjs +267 -0
- package/esm2020/lib/croem-card-widget.component.mjs +77 -0
- package/esm2020/lib/croem-card-widget.module.mjs +48 -0
- package/esm2020/lib/croem-card-widget.service.mjs +62 -0
- package/esm2020/lib/dynamic-form-builder/dynamic-form-fields/dropdown.mjs +32 -0
- package/esm2020/lib/dynamic-form-builder/dynamic-form-fields/textbox.mjs +21 -0
- package/esm2020/lib/dynamic-form-builder/field-builder.component.mjs +24 -0
- package/esm2020/lib/dynamic-form-builder/interfaces/CardModeEnum.mjs +7 -0
- package/esm2020/lib/dynamic-form-builder/interfaces/FormFields.Interface.mjs +2 -0
- package/esm2020/lib/dynamic-form-builder/interfaces/InputParams.Interface.mjs +2 -0
- package/esm2020/lib/dynamic-form-builder/interfaces/apiResponse.Interface.mjs +2 -0
- package/esm2020/lib/localizations/en.mjs +16 -0
- package/esm2020/lib/localizations/es.mjs +16 -0
- package/esm2020/lib/localizations/language.interface.mjs +2 -0
- package/esm2020/public-api.mjs +11 -0
- package/fesm2015/croeminc-croem-card-widget.mjs +876 -0
- package/fesm2015/croeminc-croem-card-widget.mjs.map +1 -0
- package/fesm2020/croeminc-croem-card-widget.mjs +868 -0
- package/fesm2020/croeminc-croem-card-widget.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/card-widget/Add-card-widget/add-card-widget/add-card-widget.component.d.ts +61 -0
- package/lib/card-widget/Pay-card-widget/payment-card-widget/payment-card-widget.component.d.ts +43 -0
- package/lib/card-widget/Update-card-widget/update-card-widget/update-card-widget.component.d.ts +64 -0
- package/lib/croem-card-widget.component.d.ts +49 -0
- package/lib/croem-card-widget.module.d.ts +16 -0
- package/lib/croem-card-widget.service.d.ts +11 -0
- package/lib/dynamic-form-builder/dynamic-form-fields/dropdown.d.ts +19 -0
- package/lib/dynamic-form-builder/dynamic-form-fields/textbox.d.ts +12 -0
- package/lib/dynamic-form-builder/field-builder.component.d.ts +14 -0
- package/lib/dynamic-form-builder/interfaces/CardModeEnum.d.ts +5 -0
- package/lib/dynamic-form-builder/interfaces/FormFields.Interface.d.ts +14 -0
- package/lib/dynamic-form-builder/interfaces/InputParams.Interface.d.ts +17 -0
- package/lib/dynamic-form-builder/interfaces/apiResponse.Interface.d.ts +24 -0
- package/lib/localizations/en.d.ts +2 -0
- package/lib/localizations/es.d.ts +2 -0
- package/lib/localizations/language.interface.d.ts +15 -0
- package/package.json +48 -0
- package/public-api.d.ts +7 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type Language = {
|
|
2
|
+
CardNumber: string;
|
|
3
|
+
CardHolderName: string;
|
|
4
|
+
ExpiryDate: string;
|
|
5
|
+
CardType: string;
|
|
6
|
+
RequestCancelled: string;
|
|
7
|
+
DoYouWishTo: string;
|
|
8
|
+
APIKeyNull: string;
|
|
9
|
+
lblSave: string;
|
|
10
|
+
CVV: string;
|
|
11
|
+
ValidThru: string;
|
|
12
|
+
Proceed: string;
|
|
13
|
+
TokenEmpty: string;
|
|
14
|
+
Update: string;
|
|
15
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@croeminc/croem-card-widget",
|
|
3
|
+
"version": "0.6.0-beta.2",
|
|
4
|
+
"description": "An Angular credit card input validation, tokenization, and payment processing widget component.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"angular",
|
|
7
|
+
"credit-card",
|
|
8
|
+
"payment-gateway",
|
|
9
|
+
"payment",
|
|
10
|
+
"widget",
|
|
11
|
+
"validation",
|
|
12
|
+
"tokenization"
|
|
13
|
+
],
|
|
14
|
+
"author": "Croem Inc.",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://croeminc@dev.azure.com/croeminc/AMP/_git/AMP.Web"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"@angular/common": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0",
|
|
22
|
+
"@angular/core": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0",
|
|
23
|
+
"card-validator": "^9.1.0"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"tslib": "^2.3.0"
|
|
27
|
+
},
|
|
28
|
+
"sideEffects": false,
|
|
29
|
+
"module": "fesm2015/croeminc-croem-card-widget.mjs",
|
|
30
|
+
"es2020": "fesm2020/croeminc-croem-card-widget.mjs",
|
|
31
|
+
"esm2020": "esm2020/croeminc-croem-card-widget.mjs",
|
|
32
|
+
"fesm2020": "fesm2020/croeminc-croem-card-widget.mjs",
|
|
33
|
+
"fesm2015": "fesm2015/croeminc-croem-card-widget.mjs",
|
|
34
|
+
"typings": "index.d.ts",
|
|
35
|
+
"exports": {
|
|
36
|
+
"./package.json": {
|
|
37
|
+
"default": "./package.json"
|
|
38
|
+
},
|
|
39
|
+
".": {
|
|
40
|
+
"types": "./index.d.ts",
|
|
41
|
+
"esm2020": "./esm2020/croeminc-croem-card-widget.mjs",
|
|
42
|
+
"es2020": "./fesm2020/croeminc-croem-card-widget.mjs",
|
|
43
|
+
"es2015": "./fesm2015/croeminc-croem-card-widget.mjs",
|
|
44
|
+
"node": "./fesm2015/croeminc-croem-card-widget.mjs",
|
|
45
|
+
"default": "./fesm2020/croeminc-croem-card-widget.mjs"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './lib/croem-card-widget.service';
|
|
2
|
+
export * from './lib/croem-card-widget.component';
|
|
3
|
+
export * from './lib/croem-card-widget.module';
|
|
4
|
+
export * from './lib/dynamic-form-builder/interfaces/InputParams.Interface';
|
|
5
|
+
export * from './lib/dynamic-form-builder/interfaces/apiResponse.Interface';
|
|
6
|
+
export * from './lib/dynamic-form-builder/interfaces/FormFields.Interface';
|
|
7
|
+
export * from './Constants';
|