pds-dev-kit-web 2.2.149 → 2.2.151
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/src/common/assets/icons/line/CheckBox.d.ts +4 -0
- package/dist/src/common/assets/icons/line/CheckBox.js +30 -0
- package/dist/src/common/assets/icons/line/Dropdown.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Dropdown.js +30 -0
- package/dist/src/common/assets/icons/line/Radio.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Radio.js +30 -0
- package/dist/src/common/assets/icons/line/SectionQuestion32.d.ts +4 -0
- package/dist/src/common/assets/icons/line/SectionQuestion32.js +30 -0
- package/dist/src/common/assets/icons/line/SectionQuestion40.d.ts +4 -0
- package/dist/src/common/assets/icons/line/SectionQuestion40.js +30 -0
- package/dist/src/common/assets/icons/line/SectionQuestionnaire32.d.ts +4 -0
- package/dist/src/common/assets/icons/line/SectionQuestionnaire32.js +30 -0
- package/dist/src/common/assets/icons/line/SectionQuestionnaire40.d.ts +4 -0
- package/dist/src/common/assets/icons/line/SectionQuestionnaire40.js +30 -0
- package/dist/src/common/assets/icons/line/TextLong.d.ts +4 -0
- package/dist/src/common/assets/icons/line/TextLong.js +30 -0
- package/dist/src/common/assets/icons/line/TextShort.d.ts +4 -0
- package/dist/src/common/assets/icons/line/TextShort.js +30 -0
- package/dist/src/common/assets/icons/line/index.d.ts +9 -0
- package/dist/src/common/assets/icons/line/index.js +18 -0
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTU.js +2 -2
- package/package.json +1 -1
- package/release-note.md +2 -2
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var CheckBox = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M15.3833,5.3157 L8.5203,5.3157 C6.6613,5.3157 5.1543,6.8227 5.1543,8.6817 L5.1543,15.3177 C5.1543,17.1777 6.6613,18.6847 8.5203,18.6847 L15.3833,18.6847 C17.2423,18.6847 18.7493,17.1777 18.7493,15.3177 L18.7493,8.6817 C18.7493,6.8227 17.2423,5.3157 15.3833,5.3157 L15.3833,5.3157 Z M15.3833,6.8157 C16.4123,6.8157 17.2493,7.6527 17.2493,8.6817 L17.2493,15.3177 C17.2493,16.3467 16.4123,17.1847 15.3833,17.1847 L8.5203,17.1847 C7.4913,17.1847 6.6543,16.3467 6.6543,15.3177 L6.6543,8.6817 C6.6543,7.6527 7.4913,6.8157 8.5203,6.8157 L15.3833,6.8157 Z" }), (0, jsx_runtime_1.jsx)("polyline", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", points: "8.71 10.048 11.893 14.267 18.116 5.244" })] })) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = CheckBox;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var Dropdown = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M3.25,14.1775 L3.25,9.8225 C3.25,8.3965 4.406,7.2415 5.831,7.2415 L18.169,7.2415 C19.594,7.2415 20.75,8.3965 20.75,9.8225 L20.75,14.1775 C20.75,15.6035 19.594,16.7585 18.169,16.7585 L5.831,16.7585 C4.406,16.7585 3.25,15.6035 3.25,14.1775 Z" }), (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M18.0652,11.3698 L16.5102,13.5008 C16.2652,13.8368 15.7642,13.8398 15.5152,13.5058 L13.9222,11.3758 C13.6172,10.9678 13.9082,10.3868 14.4182,10.3868 L17.5652,10.3868 C18.0712,10.3868 18.3632,10.9608 18.0652,11.3698" })] })) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = Dropdown;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var Radio = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M7.5445,11.9106 C7.5445,12.7486 6.8655,13.4276 6.0275,13.4276 C5.1895,13.4276 4.5105,12.7486 4.5105,11.9106 C4.5105,11.0726 5.1895,10.3936 6.0275,10.3936 C6.8655,10.3936 7.5445,11.0726 7.5445,11.9106" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeWidth: "1.6", d: "M9.3311,11.9106 C9.3311,13.7346 7.8521,15.2146 6.0271,15.2146 C4.2031,15.2146 2.7241,13.7346 2.7241,11.9106 C2.7241,10.0866 4.2031,8.6066 6.0271,8.6066 C7.8521,8.6066 9.3311,10.0866 9.3311,11.9106 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeWidth: "2", d: "M11.9518,10.0919 L18.6498,10.0919 M11.9518,13.7294 L21.2758,13.7294" })] })) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = Radio;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var SectionQuestion32 = function (_a) {
|
|
27
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "54px", height: "32px", viewBox: "0 0 54 32" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M50.5129,0 C52.4389,0 53.9999,1.561 53.9999,3.487 L53.9999,28.513 C53.9999,30.439 52.4389,32 50.5129,32 L3.4869,32 C1.5609,32 -0.0001,30.439 -0.0001,28.513 L-0.0001,3.487 C-0.0001,1.561 1.5609,0 3.4869,0 Z M50.5129,2 L3.4869,2 C2.6669,2 1.9999,2.667 1.9999,3.487 L1.9999,28.513 C1.9999,29.333 2.6669,30 3.4869,30 L50.5129,30 C51.3329,30 51.9999,29.333 51.9999,28.513 L51.9999,3.487 C51.9999,2.667 51.3329,2 50.5129,2 Z M27.7594,5.9347 C28.7629364,5.9347 29.6646319,6.37111959 30.2850307,7.06450288 L32.528,7.0649 C34.461,7.0649 36.028,8.6319 36.028,10.5649 L36.028,22.5649 C36.028,24.4979 34.461,26.0649 32.528,26.0649 L21.528,26.0649 C19.595,26.0649 18.028,24.4979 18.028,22.5649 L18.028,10.5649 C18.028,8.6319 19.595,7.0649 21.528,7.0649 L23.7707693,7.06450288 C24.3911681,6.37111959 25.2928636,5.9347 26.2964,5.9347 L27.7594,5.9347 Z M22.9391953,8.86400026 L21.528,8.8649 C20.591,8.8649 19.828,9.6279 19.828,10.5649 L19.828,22.5649 C19.828,23.5019 20.591,24.2649 21.528,24.2649 L32.528,24.2649 C33.465,24.2649 34.228,23.5019 34.228,22.5649 L34.228,10.5649 C34.228,9.6279 33.465,8.8649 32.528,8.8649 L31.1166047,8.86400026 C31.128771,8.9538707 31.1374128,9.04485956 31.1423864,9.13682307 L31.1474,9.3227 C31.1474,9.8107 30.7524,10.2057 30.2644,10.2057 L23.7914,10.2057 C23.3409385,10.2057 22.9697195,9.86913195 22.9152744,9.43352704 L22.9084,9.3227 C22.9084,9.16712981 22.918888,9.01400705 22.9391953,8.86400026 Z M26.8991,20.104 C27.2761,20.104 27.5901,20.223 27.8431,20.463 C28.0951,20.703 28.2201,21.01 28.2201,21.383 C28.2201,21.756 28.0951,22.063 27.8431,22.303 C27.5901,22.543 27.2761,22.662 26.8991,22.662 C26.5221,22.662 26.2081,22.543 25.9561,22.303 C25.7041,22.063 25.5781,21.756 25.5781,21.383 C25.5781,21.01 25.7041,20.703 25.9561,20.463 C26.2081,20.223 26.5221,20.104 26.8991,20.104 Z M26.9041,11.804 C27.9861,11.804 28.8251,12.143 29.4191,12.626 C30.0131,13.109 30.3111,13.795 30.3111,14.685 C30.3111,15.074 30.2311,15.428 30.0701,15.747 C29.9101,16.065 29.6531,16.391 29.2991,16.724 L28.4621,17.476 C28.2241,17.696 28.0781,17.94 27.9671,18.481 C27.8501,19.045 27.4801,19.381 26.8861,19.381 C26.2521,19.381 25.8271,18.974 25.8151,18.414 C25.8091,18.154 25.8241,17.885 26.0051,17.449 C26.1511,17.095 26.3921,16.786 26.7511,16.386 C27.0551,16.05 27.3841,15.83 27.5701,15.589 C27.7571,15.347 27.8501,15.081 27.8501,14.791 C27.8501,14.083 27.5601,13.807 27.0011,13.736 C26.7131,13.699 26.4091,13.782 26.2411,13.995 C26.1031,14.169 26.0871,14.261 26.0291,14.401 C25.8641,14.8 25.4601,15.04 24.9711,15.04 L24.8981,15.04 C24.0321,15.04 23.5701,14.285 23.8061,13.549 C23.9131,13.216 24.0431,12.987 24.3721,12.686 C24.9571,12.149 25.8171,11.804 26.9041,11.804 Z" }) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = SectionQuestion32;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var SectionQuestion32 = function (_a) {
|
|
27
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "68", height: "40", viewBox: "0 0 68 40" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M50.5129,0 C52.4389,0 53.9999,1.561 53.9999,3.487 L53.9999,28.513 C53.9999,30.439 52.4389,32 50.5129,32 L3.4869,32 C1.5609,32 -0.0001,30.439 -0.0001,28.513 L-0.0001,3.487 C-0.0001,1.561 1.5609,0 3.4869,0 Z M50.5129,2 L3.4869,2 C2.6669,2 1.9999,2.667 1.9999,3.487 L1.9999,28.513 C1.9999,29.333 2.6669,30 3.4869,30 L50.5129,30 C51.3329,30 51.9999,29.333 51.9999,28.513 L51.9999,3.487 C51.9999,2.667 51.3329,2 50.5129,2 Z M27.7594,5.9347 C28.7629364,5.9347 29.6646319,6.37111959 30.2850307,7.06450288 L32.528,7.0649 C34.461,7.0649 36.028,8.6319 36.028,10.5649 L36.028,22.5649 C36.028,24.4979 34.461,26.0649 32.528,26.0649 L21.528,26.0649 C19.595,26.0649 18.028,24.4979 18.028,22.5649 L18.028,10.5649 C18.028,8.6319 19.595,7.0649 21.528,7.0649 L23.7707693,7.06450288 C24.3911681,6.37111959 25.2928636,5.9347 26.2964,5.9347 L27.7594,5.9347 Z M22.9391953,8.86400026 L21.528,8.8649 C20.591,8.8649 19.828,9.6279 19.828,10.5649 L19.828,22.5649 C19.828,23.5019 20.591,24.2649 21.528,24.2649 L32.528,24.2649 C33.465,24.2649 34.228,23.5019 34.228,22.5649 L34.228,10.5649 C34.228,9.6279 33.465,8.8649 32.528,8.8649 L31.1166047,8.86400026 C31.128771,8.9538707 31.1374128,9.04485956 31.1423864,9.13682307 L31.1474,9.3227 C31.1474,9.8107 30.7524,10.2057 30.2644,10.2057 L23.7914,10.2057 C23.3409385,10.2057 22.9697195,9.86913195 22.9152744,9.43352704 L22.9084,9.3227 C22.9084,9.16712981 22.918888,9.01400705 22.9391953,8.86400026 Z M26.8991,20.104 C27.2761,20.104 27.5901,20.223 27.8431,20.463 C28.0951,20.703 28.2201,21.01 28.2201,21.383 C28.2201,21.756 28.0951,22.063 27.8431,22.303 C27.5901,22.543 27.2761,22.662 26.8991,22.662 C26.5221,22.662 26.2081,22.543 25.9561,22.303 C25.7041,22.063 25.5781,21.756 25.5781,21.383 C25.5781,21.01 25.7041,20.703 25.9561,20.463 C26.2081,20.223 26.5221,20.104 26.8991,20.104 Z M26.9041,11.804 C27.9861,11.804 28.8251,12.143 29.4191,12.626 C30.0131,13.109 30.3111,13.795 30.3111,14.685 C30.3111,15.074 30.2311,15.428 30.0701,15.747 C29.9101,16.065 29.6531,16.391 29.2991,16.724 L28.4621,17.476 C28.2241,17.696 28.0781,17.94 27.9671,18.481 C27.8501,19.045 27.4801,19.381 26.8861,19.381 C26.2521,19.381 25.8271,18.974 25.8151,18.414 C25.8091,18.154 25.8241,17.885 26.0051,17.449 C26.1511,17.095 26.3921,16.786 26.7511,16.386 C27.0551,16.05 27.3841,15.83 27.5701,15.589 C27.7571,15.347 27.8501,15.081 27.8501,14.791 C27.8501,14.083 27.5601,13.807 27.0011,13.736 C26.7131,13.699 26.4091,13.782 26.2411,13.995 C26.1031,14.169 26.0871,14.261 26.0291,14.401 C25.8641,14.8 25.4601,15.04 24.9711,15.04 L24.8981,15.04 C24.0321,15.04 23.5701,14.285 23.8061,13.549 C23.9131,13.216 24.0431,12.987 24.3721,12.686 C24.9571,12.149 25.8171,11.804 26.9041,11.804 Z" }) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = SectionQuestion32;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var SectionQuestionnaire32 = function (_a) {
|
|
27
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "54px", height: "32px", viewBox: "0 0 54 32" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M50.5129,0 C52.4389,0 53.9999,1.561 53.9999,3.487 L53.9999,28.513 C53.9999,30.439 52.4389,32 50.5129,32 L3.4869,32 C1.5609,32 -0.0001,30.439 -0.0001,28.513 L-0.0001,3.487 C-0.0001,1.561 1.5609,0 3.4869,0 Z M50.5129,2 L3.4869,2 C2.6669,2 1.9999,2.667 1.9999,3.487 L1.9999,28.513 C1.9999,29.333 2.6669,30 3.4869,30 L50.5129,30 C51.3329,30 51.9999,29.333 51.9999,28.513 L51.9999,3.487 C51.9999,2.667 51.3329,2 50.5129,2 Z M27.7594,5.7044 C29.004205,5.7044 30.0923138,6.37589166 30.6812251,7.37637364 L32.3993,7.3765 C34.3323,7.3765 35.8993,8.9435 35.8993,10.8765 L35.8993,15.0734 L36.5274,14.446 C36.7955818,14.1778182 37.2150033,14.153438 37.5106832,14.3728595 L37.5954,14.446 L38.8894,15.74 C39.1844,16.035 39.1844,16.513 38.8894,16.808 L37.7984,17.899 L35.8993,15.9994 L35.8993,17.0334 L37.2826,18.4159 L35.8993,19.7984 L35.8993,22.8765 C35.8993,24.7450667 34.4350256,26.2716267 32.5913355,26.3713211 L32.3993,26.3765 L21.3993,26.3765 C19.4663,26.3765 17.8993,24.8095 17.8993,22.8765 L17.8993,10.8765 C17.8993,8.9435 19.4663,7.3765 21.3993,7.3765 L23.3745749,7.37637364 C23.9634862,6.37589166 25.051595,5.7044 26.2964,5.7044 L27.7594,5.7044 Z M22.9133,9.1764 L21.3993,9.1765 C20.4623,9.1765 19.6993,9.9395 19.6993,10.8765 L19.6993,22.8765 C19.6993,23.8135 20.4623,24.5765 21.3993,24.5765 L32.3993,24.5765 C33.3363,24.5765 34.0993,23.8135 34.0993,22.8765 L34.0993,21.5974 L33.5856,22.1119 C33.5602667,22.1379 33.5287111,22.1572333 33.4941926,22.1684185 L33.4406,22.1789 L31.2206,22.3649 C31.0776,22.3769 30.9586,22.2579 30.9706,22.1159 L31.1566,19.8949 C31.1616,19.8399 31.1846,19.7889 31.2236,19.7499 L34.0993,16.8734 L34.0993,10.8765 C34.0993,9.98881579 33.4145022,9.25729778 32.5457155,9.18275485 L32.3993,9.1765 L31.1423,9.1764 L31.1405256,9.20322704 C31.0860805,9.63883195 30.7148615,9.9754 30.2644,9.9754 L23.7914,9.9754 C23.3409385,9.9754 22.9697195,9.63883195 22.9152744,9.20322704 L22.9133,9.1764 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeWidth: "1.5", d: "M22.8072,13.2795 L31.2482,13.2795 M22.8072,16.8765 L31.2482,16.8765 M22.8072,20.4735 L27.7802,20.4735" })] })) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = SectionQuestionnaire32;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var SectionQuestionnaire32 = function (_a) {
|
|
27
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "68", height: "40", viewBox: "0 0 68 40" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M50.5129,0 C52.4389,0 53.9999,1.561 53.9999,3.487 L53.9999,28.513 C53.9999,30.439 52.4389,32 50.5129,32 L3.4869,32 C1.5609,32 -0.0001,30.439 -0.0001,28.513 L-0.0001,3.487 C-0.0001,1.561 1.5609,0 3.4869,0 Z M50.5129,2 L3.4869,2 C2.6669,2 1.9999,2.667 1.9999,3.487 L1.9999,28.513 C1.9999,29.333 2.6669,30 3.4869,30 L50.5129,30 C51.3329,30 51.9999,29.333 51.9999,28.513 L51.9999,3.487 C51.9999,2.667 51.3329,2 50.5129,2 Z M27.7594,5.7044 C29.004205,5.7044 30.0923138,6.37589166 30.6812251,7.37637364 L32.3993,7.3765 C34.3323,7.3765 35.8993,8.9435 35.8993,10.8765 L35.8993,15.0734 L36.5274,14.446 C36.7955818,14.1778182 37.2150033,14.153438 37.5106832,14.3728595 L37.5954,14.446 L38.8894,15.74 C39.1844,16.035 39.1844,16.513 38.8894,16.808 L37.7984,17.899 L35.8993,15.9994 L35.8993,17.0334 L37.2826,18.4159 L35.8993,19.7984 L35.8993,22.8765 C35.8993,24.7450667 34.4350256,26.2716267 32.5913355,26.3713211 L32.3993,26.3765 L21.3993,26.3765 C19.4663,26.3765 17.8993,24.8095 17.8993,22.8765 L17.8993,10.8765 C17.8993,8.9435 19.4663,7.3765 21.3993,7.3765 L23.3745749,7.37637364 C23.9634862,6.37589166 25.051595,5.7044 26.2964,5.7044 L27.7594,5.7044 Z M22.9133,9.1764 L21.3993,9.1765 C20.4623,9.1765 19.6993,9.9395 19.6993,10.8765 L19.6993,22.8765 C19.6993,23.8135 20.4623,24.5765 21.3993,24.5765 L32.3993,24.5765 C33.3363,24.5765 34.0993,23.8135 34.0993,22.8765 L34.0993,21.5974 L33.5856,22.1119 C33.5602667,22.1379 33.5287111,22.1572333 33.4941926,22.1684185 L33.4406,22.1789 L31.2206,22.3649 C31.0776,22.3769 30.9586,22.2579 30.9706,22.1159 L31.1566,19.8949 C31.1616,19.8399 31.1846,19.7889 31.2236,19.7499 L34.0993,16.8734 L34.0993,10.8765 C34.0993,9.98881579 33.4145022,9.25729778 32.5457155,9.18275485 L32.3993,9.1765 L31.1423,9.1764 L31.1405256,9.20322704 C31.0860805,9.63883195 30.7148615,9.9754 30.2644,9.9754 L23.7914,9.9754 C23.3409385,9.9754 22.9697195,9.63883195 22.9152744,9.20322704 L22.9133,9.1764 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeWidth: "1.5", d: "M22.8072,13.2795 L31.2482,13.2795 M22.8072,16.8765 L31.2482,16.8765 M22.8072,20.4735 L27.7802,20.4735" })] })) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = SectionQuestionnaire32;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var TextLong = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M7.9789,4.6123 L3.2779,4.6123 L2.6329,6.4503 L3.5079,6.9493 L3.7619,6.5403 C4.0539,6.0673 4.2729,5.7813 4.8499,5.7813 C4.8749,5.7813 4.8959,5.7813 4.9149,5.7823 L4.9149,9.2703 C4.8589,9.2763 4.7769,9.2803 4.6549,9.2803 L4.1549,9.2803 L4.1549,10.4483 L7.0919,10.4483 L7.0919,9.2803 L6.5919,9.2803 C6.4839,9.2803 6.3969,9.2783 6.3329,9.2733 L6.3329,5.7903 C6.3749,5.7853 6.4329,5.7813 6.5119,5.7813 C6.9819,5.7813 7.1099,5.9573 7.4109,6.4653 L7.6959,6.9423 L8.6439,6.5533 L7.9789,4.6123 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeWidth: "1.5", d: "M10.3539,7.1909 L18.1129,7.1909 C19.8069,7.1909 21.1799,8.3199 21.1799,10.0519 L21.1799,15.1259 C21.1799,16.8579 19.8069,18.2619 18.1129,18.2619 L6.0239,18.2619 C4.3299,18.2619 3.0729,16.8579 3.0729,15.1259 L3.0729,11.9569 M10.8112,11.1458 L17.5092,11.1458 M6.5702,14.3066 L17.5092,14.3066" })] })) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = TextLong;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var TextShort = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M18.2315,4.3521 L5.7525,4.3521 L4.3095,8.4591 L5.5195,9.1531 L5.8245,8.6611 C6.7445,7.1771 7.6155,6.0421 9.7265,6.0421 C10.7725,6.0421 10.7725,6.2221 10.7725,6.5801 L10.7725,17.4791 C10.7725,17.6921 10.7725,17.9571 9.1575,17.9571 L8.5575,17.9571 L8.5575,19.6481 L15.4035,19.6481 L15.4035,17.9571 L14.8035,17.9571 C13.1885,17.9571 13.1885,17.7771 13.1885,17.4791 C13.1885,13.7690828 13.1885,10.9865699 13.1885,9.13156128 C13.1885,8.56456988 13.1885,7.71408279 13.1885,6.5801 C13.1885,6.3661 13.1885,6.0421 14.5685,6.0421 C16.4965,6.0421 17.0965,7.0571 17.9265,8.4591 L18.3775,9.2151 L19.7095,8.6621 L18.2315,4.3521 Z" }) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = TextShort;
|
|
@@ -55,6 +55,7 @@ declare const lineIcons: {
|
|
|
55
55
|
readonly ic_chat_room_group: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
56
56
|
readonly ic_chat_room_paid: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
57
57
|
readonly ic_check: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
58
|
+
readonly ic_checkbox: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
58
59
|
readonly ic_checkbox_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
59
60
|
readonly ic_clip: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
60
61
|
readonly ic_coins: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -75,6 +76,7 @@ declare const lineIcons: {
|
|
|
75
76
|
readonly ic_divider: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
76
77
|
readonly ic_dotted_circle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
77
78
|
readonly ic_download: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
79
|
+
readonly ic_dropdown: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
78
80
|
readonly ic_dynamic_layout: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
79
81
|
readonly ic_edit: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
80
82
|
readonly ic_editor: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -168,6 +170,7 @@ declare const lineIcons: {
|
|
|
168
170
|
readonly ic_profit: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
169
171
|
readonly ic_qr: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
170
172
|
readonly ic_question: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
173
|
+
readonly ic_radio: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
171
174
|
readonly ic_radio_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
172
175
|
readonly ic_radio_on: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
173
176
|
readonly ic_receipt: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -203,6 +206,10 @@ declare const lineIcons: {
|
|
|
203
206
|
readonly ic_section_price_box_40: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
204
207
|
readonly ic_section_products_carousel_32: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
205
208
|
readonly ic_section_products_carousel_40: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
209
|
+
readonly ic_question_line_32: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
210
|
+
readonly ic_question_line_40: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
211
|
+
readonly ic_questionnaire_line_32: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
212
|
+
readonly ic_questionnaire_line_40: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
206
213
|
readonly ic_section_review_32: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
207
214
|
readonly ic_section_review_40: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
208
215
|
readonly ic_section_slider_32: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -243,6 +250,8 @@ declare const lineIcons: {
|
|
|
243
250
|
readonly ic_text_align_middle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
244
251
|
readonly ic_text_align_right: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
245
252
|
readonly ic_text_align_top: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
253
|
+
readonly ic_text_long: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
254
|
+
readonly ic_text_short: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
246
255
|
readonly ic_ticket: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
247
256
|
readonly ic_time: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
248
257
|
readonly ic_toggle_down: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -61,6 +61,7 @@ var ChatRoomFree_1 = __importDefault(require("./ChatRoomFree"));
|
|
|
61
61
|
var ChatRoomGroup_1 = __importDefault(require("./ChatRoomGroup"));
|
|
62
62
|
var ChatRoomPaid_1 = __importDefault(require("./ChatRoomPaid"));
|
|
63
63
|
var Check_1 = __importDefault(require("./Check"));
|
|
64
|
+
var CheckBox_1 = __importDefault(require("./CheckBox"));
|
|
64
65
|
var CheckboxOff_1 = __importDefault(require("./CheckboxOff"));
|
|
65
66
|
var Clip_1 = __importDefault(require("./Clip"));
|
|
66
67
|
var Coins_1 = __importDefault(require("./Coins"));
|
|
@@ -83,6 +84,7 @@ var DeviceMobileNotification_1 = __importDefault(require("./DeviceMobileNotifica
|
|
|
83
84
|
var Divider_1 = __importDefault(require("./Divider"));
|
|
84
85
|
var DottedCircle_1 = __importDefault(require("./DottedCircle"));
|
|
85
86
|
var Download_1 = __importDefault(require("./Download"));
|
|
87
|
+
var Dropdown_1 = __importDefault(require("./Dropdown"));
|
|
86
88
|
var Duplicate_1 = __importDefault(require("./Duplicate"));
|
|
87
89
|
var DynamicLayout_1 = __importDefault(require("./DynamicLayout"));
|
|
88
90
|
var Edit_1 = __importDefault(require("./Edit"));
|
|
@@ -186,6 +188,7 @@ var PostWelcome_1 = __importDefault(require("./PostWelcome"));
|
|
|
186
188
|
var Profit_1 = __importDefault(require("./Profit"));
|
|
187
189
|
var Qr_1 = __importDefault(require("./Qr"));
|
|
188
190
|
var Question_1 = __importDefault(require("./Question"));
|
|
191
|
+
var Radio_1 = __importDefault(require("./Radio"));
|
|
189
192
|
var RadioOff_1 = __importDefault(require("./RadioOff"));
|
|
190
193
|
var RadioOn_1 = __importDefault(require("./RadioOn"));
|
|
191
194
|
var Receipt_1 = __importDefault(require("./Receipt"));
|
|
@@ -229,6 +232,10 @@ var SectionPriceBox32_1 = __importDefault(require("./SectionPriceBox32"));
|
|
|
229
232
|
var SectionPriceBox40_1 = __importDefault(require("./SectionPriceBox40"));
|
|
230
233
|
var SectionProductsCarousel32_1 = __importDefault(require("./SectionProductsCarousel32"));
|
|
231
234
|
var SectionProductsCarousel40_1 = __importDefault(require("./SectionProductsCarousel40"));
|
|
235
|
+
var SectionQuestion32_1 = __importDefault(require("./SectionQuestion32"));
|
|
236
|
+
var SectionQuestion40_1 = __importDefault(require("./SectionQuestion40"));
|
|
237
|
+
var SectionQuestionnaire32_1 = __importDefault(require("./SectionQuestionnaire32"));
|
|
238
|
+
var SectionQuestionnaire40_1 = __importDefault(require("./SectionQuestionnaire40"));
|
|
232
239
|
var SectionReview32_1 = __importDefault(require("./SectionReview32"));
|
|
233
240
|
var SectionReview40_1 = __importDefault(require("./SectionReview40"));
|
|
234
241
|
var SectionSlider32_1 = __importDefault(require("./SectionSlider32"));
|
|
@@ -272,6 +279,8 @@ var TextAlignLeft_1 = __importDefault(require("./TextAlignLeft"));
|
|
|
272
279
|
var TextAlignMiddle_1 = __importDefault(require("./TextAlignMiddle"));
|
|
273
280
|
var TextAlignRight_1 = __importDefault(require("./TextAlignRight"));
|
|
274
281
|
var TextAlignTop_1 = __importDefault(require("./TextAlignTop"));
|
|
282
|
+
var TextLong_1 = __importDefault(require("./TextLong"));
|
|
283
|
+
var TextShort_1 = __importDefault(require("./TextShort"));
|
|
275
284
|
var Ticket_1 = __importDefault(require("./Ticket"));
|
|
276
285
|
var Time_1 = __importDefault(require("./Time"));
|
|
277
286
|
var ToggleDown_1 = __importDefault(require("./ToggleDown"));
|
|
@@ -373,6 +382,7 @@ var lineIcons = {
|
|
|
373
382
|
ic_chat_room_group: ChatRoomGroup_1.default,
|
|
374
383
|
ic_chat_room_paid: ChatRoomPaid_1.default,
|
|
375
384
|
ic_check: Check_1.default,
|
|
385
|
+
ic_checkbox: CheckBox_1.default,
|
|
376
386
|
ic_checkbox_off: CheckboxOff_1.default,
|
|
377
387
|
ic_clip: Clip_1.default,
|
|
378
388
|
ic_coins: Coins_1.default,
|
|
@@ -393,6 +403,7 @@ var lineIcons = {
|
|
|
393
403
|
ic_divider: Divider_1.default,
|
|
394
404
|
ic_dotted_circle: DottedCircle_1.default,
|
|
395
405
|
ic_download: Download_1.default,
|
|
406
|
+
ic_dropdown: Dropdown_1.default,
|
|
396
407
|
ic_dynamic_layout: DynamicLayout_1.default,
|
|
397
408
|
ic_edit: Edit_1.default,
|
|
398
409
|
ic_editor: Editor_1.default,
|
|
@@ -486,6 +497,7 @@ var lineIcons = {
|
|
|
486
497
|
ic_profit: Profit_1.default,
|
|
487
498
|
ic_qr: Qr_1.default,
|
|
488
499
|
ic_question: Question_1.default,
|
|
500
|
+
ic_radio: Radio_1.default,
|
|
489
501
|
ic_radio_off: RadioOff_1.default,
|
|
490
502
|
ic_radio_on: RadioOn_1.default,
|
|
491
503
|
ic_receipt: Receipt_1.default,
|
|
@@ -521,6 +533,10 @@ var lineIcons = {
|
|
|
521
533
|
ic_section_price_box_40: SectionPriceBox40_1.default,
|
|
522
534
|
ic_section_products_carousel_32: SectionProductsCarousel32_1.default,
|
|
523
535
|
ic_section_products_carousel_40: SectionProductsCarousel40_1.default,
|
|
536
|
+
ic_question_line_32: SectionQuestion32_1.default,
|
|
537
|
+
ic_question_line_40: SectionQuestion40_1.default,
|
|
538
|
+
ic_questionnaire_line_32: SectionQuestionnaire32_1.default,
|
|
539
|
+
ic_questionnaire_line_40: SectionQuestionnaire40_1.default,
|
|
524
540
|
ic_section_review_32: SectionReview32_1.default,
|
|
525
541
|
ic_section_review_40: SectionReview40_1.default,
|
|
526
542
|
ic_section_slider_32: SectionSlider32_1.default,
|
|
@@ -561,6 +577,8 @@ var lineIcons = {
|
|
|
561
577
|
ic_text_align_middle: TextAlignMiddle_1.default,
|
|
562
578
|
ic_text_align_right: TextAlignRight_1.default,
|
|
563
579
|
ic_text_align_top: TextAlignTop_1.default,
|
|
580
|
+
ic_text_long: TextLong_1.default,
|
|
581
|
+
ic_text_short: TextShort_1.default,
|
|
564
582
|
ic_ticket: Ticket_1.default,
|
|
565
583
|
ic_time: Time_1.default,
|
|
566
584
|
ic_toggle_down: ToggleDown_1.default,
|
|
@@ -98,7 +98,7 @@ var S_ContentsContainer2 = styled_components_1.default.div(templateObject_5 || (
|
|
|
98
98
|
var containerColor = _a.containerColor;
|
|
99
99
|
return "background-color: ".concat(containerColor);
|
|
100
100
|
}, overrideStyleContainer2);
|
|
101
|
-
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n box-sizing: border-box;\n
|
|
101
|
+
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n box-sizing: border-box;\n height: 100%;\n max-width: 480px;\n width: 480px;\n ", ";\n"], ["\n box-sizing: border-box;\n height: 100%;\n max-width: 480px;\n width: 480px;\n ", ";\n"])), function (_a) {
|
|
102
102
|
var areaColor = _a.areaColor;
|
|
103
103
|
return "background-color: ".concat(areaColor);
|
|
104
104
|
});
|
|
@@ -106,7 +106,7 @@ var S_ContentsArea2 = styled_components_1.default.div(templateObject_7 || (templ
|
|
|
106
106
|
var areaColor = _a.areaColor;
|
|
107
107
|
return "background-color: ".concat(areaColor);
|
|
108
108
|
});
|
|
109
|
-
var S_Content1 = styled_components_1.default.div(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n
|
|
109
|
+
var S_Content1 = styled_components_1.default.div(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n height: 100%;\n overflow: hidden;\n"], ["\n height: 100%;\n overflow: hidden;\n"])));
|
|
110
110
|
var S_Content2 = styled_components_1.default.div(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n height: 100%;\n overflow: hidden;\n"], ["\n height: 100%;\n overflow: hidden;\n"])));
|
|
111
111
|
exports.default = WTU;
|
|
112
112
|
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9;
|
package/package.json
CHANGED
package/release-note.md
CHANGED