@htmlbricks/hb-payment-paypal 0.8.43 → 0.9.1
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/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@htmlbricks/hb-payment-paypal",
|
|
3
3
|
"displayName": "Svelte Paypal Payment WebComponent",
|
|
4
4
|
"description": "Svelte Paypal Payment WebComponent",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.9.1",
|
|
6
6
|
"main": "release/release.js",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"prepublish": "npm run build:release"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@htmlbricks/hb-jsutils": "^0.
|
|
34
|
-
"@htmlbricks/manifester": "^0.0.
|
|
33
|
+
"@htmlbricks/hb-jsutils": "^0.9.1",
|
|
34
|
+
"@htmlbricks/manifester": "^0.0.9",
|
|
35
35
|
"@rollup/plugin-alias": "^3.1.2",
|
|
36
36
|
"@rollup/plugin-commonjs": "^18.0.0",
|
|
37
37
|
"@rollup/plugin-json": "^4.1.0",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"html5-webcomponents"
|
|
82
82
|
],
|
|
83
83
|
"contributors": [],
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "5da5e18dec4ee6e6a205dca3c49d1785b9cc2cc9"
|
|
85
85
|
}
|
package/release/docs.mjs
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
export var storybookArgs = {
|
|
2
|
-
// payByCard: { action: "payByCard" },
|
|
3
|
-
paymentCompleted: { action: "paymentCompleted" },
|
|
4
|
-
paypalid: { control: { type: "string" } },
|
|
5
|
-
currency: { control: { type: "string" } }
|
|
6
|
-
};
|
|
7
|
-
var cssVars = [
|
|
8
|
-
{
|
|
9
|
-
name: "--hb-checkout-border",
|
|
10
|
-
defaultValue: "0.5px solid rgba(197, 197, 197, 0.808)",
|
|
11
|
-
description: "",
|
|
12
|
-
valueType: "string"
|
|
13
|
-
},
|
|
14
|
-
];
|
|
15
|
-
export var cssParts = [{ name: "btn", description: "paypal button css" }];
|
|
16
|
-
export var htmlSlots = [];
|
|
17
|
-
export var i18nLanguages = [];
|
|
18
|
-
export var styleSetup = {
|
|
19
|
-
vars: cssVars,
|
|
20
|
-
parts: cssParts
|
|
21
|
-
};
|
|
22
|
-
var examples = [
|
|
23
|
-
{
|
|
24
|
-
currency: "EUR",
|
|
25
|
-
total: 40,
|
|
26
|
-
paypalid: "test"
|
|
27
|
-
},
|
|
28
|
-
];
|
|
29
|
-
export var componentSetup = {
|
|
30
|
-
definitions: null,
|
|
31
|
-
storybookArgs: storybookArgs,
|
|
32
|
-
styleSetup: styleSetup,
|
|
33
|
-
htmlSlots: htmlSlots,
|
|
34
|
-
i18n: i18nLanguages,
|
|
35
|
-
examples: examples,
|
|
36
|
-
name: "hb-payment-paypal",
|
|
37
|
-
category: "payment",
|
|
38
|
-
tags: ["payment"],
|
|
39
|
-
size: {}
|
|
40
|
-
};
|
|
41
|
-
//# sourceMappingURL=docs.js.map
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$ref": "#/definitions/Component",
|
|
3
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
-
"definitions": {
|
|
5
|
-
"Component": {
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"properties": {
|
|
8
|
-
"currency": {
|
|
9
|
-
"enum": [
|
|
10
|
-
"EUR",
|
|
11
|
-
"USD"
|
|
12
|
-
],
|
|
13
|
-
"type": "string"
|
|
14
|
-
},
|
|
15
|
-
"id": {
|
|
16
|
-
"type": "string"
|
|
17
|
-
},
|
|
18
|
-
"paypalid": {
|
|
19
|
-
"type": "string"
|
|
20
|
-
},
|
|
21
|
-
"style": {
|
|
22
|
-
"type": "string"
|
|
23
|
-
},
|
|
24
|
-
"total": {
|
|
25
|
-
"type": "number"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"required": [
|
|
29
|
-
"paypalid",
|
|
30
|
-
"currency",
|
|
31
|
-
"total"
|
|
32
|
-
],
|
|
33
|
-
"type": "object"
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$ref": "#/definitions/Events",
|
|
3
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
-
"definitions": {
|
|
5
|
-
"Events": {
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"properties": {
|
|
8
|
-
"paymentCompleted": {
|
|
9
|
-
"additionalProperties": false,
|
|
10
|
-
"properties": {
|
|
11
|
-
"method": {
|
|
12
|
-
"const": "paypal",
|
|
13
|
-
"type": "string"
|
|
14
|
-
},
|
|
15
|
-
"total": {
|
|
16
|
-
"type": "number"
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"required": [
|
|
20
|
-
"method",
|
|
21
|
-
"total"
|
|
22
|
-
],
|
|
23
|
-
"type": "object"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"required": [
|
|
27
|
-
"paymentCompleted"
|
|
28
|
-
],
|
|
29
|
-
"type": "object"
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|