@pisell/private-materials 6.6.45 → 6.6.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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +1 -1
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +1 -1
- package/es/components/appointmentBooking/components/Voucher/index.js +22 -7
- package/es/components/booking/addons/index.js +3 -2
- package/es/components/booking/components/footer/amount.js +4 -5
- package/es/components/booking/components/footer/index.js +7 -0
- package/es/components/booking/components/footer/utils.d.ts +1 -1
- package/es/components/booking/components/footer/utils.js +10 -15
- package/es/components/booking/components/voucher/index.js +7 -1
- package/es/components/booking/components/voucher/index.less +4 -1
- package/es/components/booking/components/voucherModal/index.less +1 -0
- package/es/components/booking/hooks/useQuotation.js +2 -2
- package/es/components/booking/info2/service/editService/index.js +10 -8
- package/es/components/booking/info2/service/editService/utils.d.ts +0 -1
- package/es/components/booking/info2/service/editService/utils.js +0 -16
- package/es/components/booking/payments/index.js +1 -1
- package/es/components/checkout/components/WalletPassModule/index.js +1 -0
- package/es/components/checkout/components/WalletPassModule/utils.d.ts +1 -0
- package/es/components/checkout/components/WalletPassModule/utils.js +17 -3
- package/es/components/checkout/hooks/useWalletPass.d.ts +1 -1
- package/es/components/checkout/hooks/useWalletPass.js +316 -192
- package/es/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +5 -0
- package/es/components/pay/toC/PaymentMethods/WalletPass/index.js +166 -145
- package/es/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +6 -0
- package/es/components/pay/toC/PaymentMethods/WalletPass/utils.js +3 -3
- package/es/components/pay/toC/WalletPassBlock/index.js +3 -1
- package/es/components/pay/toC/index.js +66 -27
- package/es/components/pay/toC/model.d.ts +1 -0
- package/es/components/pay/toC/serve.d.ts +18 -0
- package/es/components/pay/toC/serve.js +29 -1
- package/es/components/pay/toC/utils.d.ts +2 -2
- package/es/components/pay/toC/utils.js +4 -0
- package/es/components/ticketBooking/components/addServiceVariant/addService.js +7 -4
- package/lib/components/appointmentBooking/components/Voucher/index.js +10 -2
- package/lib/components/booking/addons/index.js +3 -2
- package/lib/components/booking/components/footer/amount.js +4 -4
- package/lib/components/booking/components/footer/index.js +9 -0
- package/lib/components/booking/components/footer/utils.d.ts +1 -1
- package/lib/components/booking/components/footer/utils.js +10 -15
- package/lib/components/booking/components/voucher/index.js +7 -1
- package/lib/components/booking/components/voucher/index.less +4 -1
- package/lib/components/booking/components/voucherModal/index.less +1 -0
- package/lib/components/booking/hooks/useQuotation.js +2 -2
- package/lib/components/booking/info2/service/editService/index.js +24 -21
- package/lib/components/booking/info2/service/editService/utils.d.ts +0 -1
- package/lib/components/booking/info2/service/editService/utils.js +0 -16
- package/lib/components/booking/payments/index.js +1 -1
- package/lib/components/checkout/components/WalletPassModule/index.js +1 -0
- package/lib/components/checkout/components/WalletPassModule/utils.d.ts +1 -0
- package/lib/components/checkout/components/WalletPassModule/utils.js +18 -2
- package/lib/components/checkout/hooks/useWalletPass.d.ts +1 -1
- package/lib/components/checkout/hooks/useWalletPass.js +157 -108
- package/lib/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +5 -0
- package/lib/components/pay/toC/PaymentMethods/WalletPass/index.js +90 -103
- package/lib/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +6 -0
- package/lib/components/pay/toC/PaymentMethods/WalletPass/utils.js +2 -2
- package/lib/components/pay/toC/WalletPassBlock/index.js +3 -1
- package/lib/components/pay/toC/index.js +52 -11
- package/lib/components/pay/toC/model.d.ts +1 -0
- package/lib/components/pay/toC/serve.d.ts +18 -0
- package/lib/components/pay/toC/serve.js +6 -0
- package/lib/components/pay/toC/utils.d.ts +2 -2
- package/lib/components/pay/toC/utils.js +4 -0
- package/lib/components/ticketBooking/components/addServiceVariant/addService.js +11 -7
- package/lowcode/eco-cup-list/meta.ts +63 -0
- package/lowcode/eco-customer-list/meta.ts +63 -0
- package/package.json +2 -2
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentMetadata, Snippet } from '@alilc/lowcode-types';
|
|
3
|
+
|
|
4
|
+
const EcoCupListMeta: ComponentMetadata = {
|
|
5
|
+
"componentName": "EcoCupList",
|
|
6
|
+
"title": "EcoCupList",
|
|
7
|
+
"docUrl": "",
|
|
8
|
+
"screenshot": "",
|
|
9
|
+
"devMode": "proCode",
|
|
10
|
+
"npm": {
|
|
11
|
+
"package": "@pisell/private-materials",
|
|
12
|
+
"version": "3.4.86",
|
|
13
|
+
"exportName": "EcoCupList",
|
|
14
|
+
"main": "src/index.ts",
|
|
15
|
+
"destructuring": true,
|
|
16
|
+
"subName": ""
|
|
17
|
+
},
|
|
18
|
+
"configure": {
|
|
19
|
+
"props": [
|
|
20
|
+
{
|
|
21
|
+
"title": {
|
|
22
|
+
"label": {
|
|
23
|
+
"type": "i18n",
|
|
24
|
+
"en-US": "data",
|
|
25
|
+
"zh-CN": "data"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"name": "data",
|
|
29
|
+
"setter": {
|
|
30
|
+
"componentName": "ArraySetter",
|
|
31
|
+
"props": {
|
|
32
|
+
"itemSetter": {
|
|
33
|
+
"componentName": "MixedSetter",
|
|
34
|
+
"isRequired": false,
|
|
35
|
+
"props": {}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"isRequired": true,
|
|
39
|
+
"initialValue": []
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"supports": {
|
|
44
|
+
"style": true
|
|
45
|
+
},
|
|
46
|
+
"component": {}
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
const snippets: Snippet[] = [
|
|
50
|
+
{
|
|
51
|
+
"title": "EcoCupList",
|
|
52
|
+
"screenshot": "",
|
|
53
|
+
"schema": {
|
|
54
|
+
"componentName": "EcoCupList",
|
|
55
|
+
"props": {}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
];
|
|
59
|
+
|
|
60
|
+
export default {
|
|
61
|
+
...EcoCupListMeta,
|
|
62
|
+
snippets
|
|
63
|
+
};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentMetadata, Snippet } from '@alilc/lowcode-types';
|
|
3
|
+
|
|
4
|
+
const EcoCustomerListMeta: ComponentMetadata = {
|
|
5
|
+
"componentName": "EcoCustomerList",
|
|
6
|
+
"title": "EcoCustomerList",
|
|
7
|
+
"docUrl": "",
|
|
8
|
+
"screenshot": "",
|
|
9
|
+
"devMode": "proCode",
|
|
10
|
+
"npm": {
|
|
11
|
+
"package": "@pisell/private-materials",
|
|
12
|
+
"version": "3.4.86",
|
|
13
|
+
"exportName": "EcoCustomerList",
|
|
14
|
+
"main": "src/index.ts",
|
|
15
|
+
"destructuring": true,
|
|
16
|
+
"subName": ""
|
|
17
|
+
},
|
|
18
|
+
"configure": {
|
|
19
|
+
"props": [
|
|
20
|
+
{
|
|
21
|
+
"title": {
|
|
22
|
+
"label": {
|
|
23
|
+
"type": "i18n",
|
|
24
|
+
"en-US": "data",
|
|
25
|
+
"zh-CN": "data"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"name": "data",
|
|
29
|
+
"setter": {
|
|
30
|
+
"componentName": "ArraySetter",
|
|
31
|
+
"props": {
|
|
32
|
+
"itemSetter": {
|
|
33
|
+
"componentName": "MixedSetter",
|
|
34
|
+
"isRequired": false,
|
|
35
|
+
"props": {}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"isRequired": true,
|
|
39
|
+
"initialValue": []
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"supports": {
|
|
44
|
+
"style": true
|
|
45
|
+
},
|
|
46
|
+
"component": {}
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
const snippets: Snippet[] = [
|
|
50
|
+
{
|
|
51
|
+
"title": "EcoCustomerList",
|
|
52
|
+
"screenshot": "",
|
|
53
|
+
"schema": {
|
|
54
|
+
"componentName": "EcoCustomerList",
|
|
55
|
+
"props": {}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
];
|
|
59
|
+
|
|
60
|
+
export default {
|
|
61
|
+
...EcoCustomerListMeta,
|
|
62
|
+
snippets
|
|
63
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pisell/private-materials",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.47",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"@react-spring/web": "^9.6.1",
|
|
63
63
|
"@use-gesture/react": "^10.3.1",
|
|
64
64
|
"@pisell/utils": "3.0.2",
|
|
65
|
-
"@pisell/materials": "6.6.15",
|
|
66
65
|
"@pisell/icon": "0.0.11",
|
|
66
|
+
"@pisell/materials": "6.6.14",
|
|
67
67
|
"@pisell/date-picker": "3.0.7"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|