@getblock/common 0.1.77 → 0.1.78
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/dist/cn.271f0152.js +31 -0
- package/dist/en.df69dcda.js +31 -0
- package/dist/getblock-common.es.ts +1740 -1483
- package/dist/getblock-common.umd.ts +3 -3
- package/dist/src/components/contactFormNew/ContactFormNew.vue.d.ts +501 -0
- package/dist/src/components/contactFormNew/locales/cn.d.ts +2 -0
- package/dist/src/components/contactFormNew/locales/en.d.ts +2 -0
- package/dist/src/components/contactFormNew/type/shared.d.ts +30 -0
- package/dist/src/components/contactFormNew/utils/useTexts.d.ts +32 -0
- package/dist/src/components/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const u = {
|
|
2
|
+
title: "\u8054\u7CFB\u6211\u4EEC",
|
|
3
|
+
description: "\u8054\u7CFB\u6211\u4EEC\u7684\u9500\u552E\u56E2\u961F\u4EE5\u83B7\u53D6\u4E2A\u6027\u5316\u5B9A\u4EF7\u548C\u5EFA\u8BAE",
|
|
4
|
+
form: {
|
|
5
|
+
placeholders: {
|
|
6
|
+
name: "\u8F93\u5165\u60A8\u7684\u59D3\u540D",
|
|
7
|
+
company: "\u516C\u53F8\u540D\u79F0",
|
|
8
|
+
email: "\u90AE\u7BB1",
|
|
9
|
+
contact: "Telegram / \u7535\u8BDD\u53F7\u7801",
|
|
10
|
+
textMessage: "\u6211\u4EEC\u80FD\u4E3A\u60A8\u63D0\u4F9B\u4EC0\u4E48\u5E2E\u52A9\uFF1F"
|
|
11
|
+
},
|
|
12
|
+
errors: {
|
|
13
|
+
name: "\u5FC5\u987B\u586B\u5199\u6B64\u5B57\u6BB5",
|
|
14
|
+
company: "\u5FC5\u987B\u586B\u5199\u6B64\u5B57\u6BB5",
|
|
15
|
+
email: {
|
|
16
|
+
empty: "\u5FC5\u987B\u586B\u5199\u6B64\u5B57\u6BB5",
|
|
17
|
+
noValid: "\u65E0\u6548\u7684\u90AE\u7BB1\u5730\u5740"
|
|
18
|
+
},
|
|
19
|
+
contact: "\u5FC5\u987B\u586B\u5199\u6B64\u5B57\u6BB5",
|
|
20
|
+
textMessage: "\u5FC5\u987B\u586B\u5199\u6B64\u5B57\u6BB5"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
button: "\u53D1\u9001",
|
|
24
|
+
agreement: {
|
|
25
|
+
1: '\u70B9\u51FB"\u53D1\u9001"\u5373\u8868\u793A\u60A8\u540C\u610F\u6211\u4EEC\u7684',
|
|
26
|
+
2: "\u9690\u79C1\u653F\u7B56"
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
export {
|
|
30
|
+
u as cn
|
|
31
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
title: "Get in touch with us",
|
|
3
|
+
description: "Contact our sales team to get personalized pricing and recommendations",
|
|
4
|
+
form: {
|
|
5
|
+
placeholders: {
|
|
6
|
+
name: "Enter your name",
|
|
7
|
+
company: "Name your company",
|
|
8
|
+
email: "Email",
|
|
9
|
+
contact: "Telegram / Phone number",
|
|
10
|
+
textMessage: "How can we help you?"
|
|
11
|
+
},
|
|
12
|
+
errors: {
|
|
13
|
+
name: "Field must be filled",
|
|
14
|
+
company: "Field must be filled",
|
|
15
|
+
email: {
|
|
16
|
+
empty: "Field must be filled",
|
|
17
|
+
noValid: "Invalid email address"
|
|
18
|
+
},
|
|
19
|
+
contact: "Field must be filled",
|
|
20
|
+
textMessage: "Field must be filled"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
button: "Send",
|
|
24
|
+
agreement: {
|
|
25
|
+
1: 'By clicking "Send" you agree to our',
|
|
26
|
+
2: "Privacy Policy"
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
export {
|
|
30
|
+
e as en
|
|
31
|
+
};
|