@surveycake/rc 3.0.0-alpha.78 → 3.0.0-alpha.79
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/CHANGELOG.md +7 -0
- package/dist/V2/Checkbox/styles.d.ts +3 -0
- package/dist/V2/Icon/Customize/ArrowSortAsc.d.ts +3 -0
- package/dist/V2/Icon/Customize/ArrowSortDesc.d.ts +3 -0
- package/dist/V2/Icon/Customize/index.d.ts +2 -0
- package/dist/V2/Icon/index.d.ts +2 -0
- package/dist/V2/Table/Table.stories.d.ts +1 -0
- package/dist/V2/TablePagination/TablePagination.stories.d.ts +4 -0
- package/dist/V2/TablePagination/index.d.ts +3 -0
- package/dist/V2/TablePagination/styles.d.ts +3 -0
- package/dist/V2/TableSortLabel/index.d.ts +6 -0
- package/dist/V2/index.d.ts +2 -0
- package/dist/rc.cjs.development.js +177 -53
- package/dist/rc.cjs.development.js.map +1 -1
- package/dist/rc.cjs.production.min.js +1 -1
- package/dist/rc.cjs.production.min.js.map +1 -1
- package/dist/rc.esm.js +177 -53
- package/dist/rc.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -126,7 +126,9 @@ var MUITableBody = _interopDefault(require('@material-ui/core/TableBody'));
|
|
|
126
126
|
var MUITableCell = _interopDefault(require('@material-ui/core/TableCell'));
|
|
127
127
|
var MUITableContainer = _interopDefault(require('@material-ui/core/TableContainer'));
|
|
128
128
|
var MUITableHead = _interopDefault(require('@material-ui/core/TableHead'));
|
|
129
|
+
var MUITablePagination = _interopDefault(require('@material-ui/core/TablePagination'));
|
|
129
130
|
var MUITableRow = _interopDefault(require('@material-ui/core/TableRow'));
|
|
131
|
+
var MUITableSortLabel = _interopDefault(require('@material-ui/core/TableSortLabel'));
|
|
130
132
|
var MUITabs = _interopDefault(require('@material-ui/core/Tabs'));
|
|
131
133
|
var MUITextField = _interopDefault(require('@material-ui/core/TextField'));
|
|
132
134
|
var MUIToggleButton = _interopDefault(require('@material-ui/lab/ToggleButton'));
|
|
@@ -632,6 +634,12 @@ var MuiCardActionArea = {
|
|
|
632
634
|
}
|
|
633
635
|
};
|
|
634
636
|
|
|
637
|
+
var MuiCheckbox = {
|
|
638
|
+
indeterminate: {
|
|
639
|
+
color: core.palette.primary.main
|
|
640
|
+
}
|
|
641
|
+
};
|
|
642
|
+
|
|
635
643
|
var MuiChip = {
|
|
636
644
|
root:
|
|
637
645
|
/*#__PURE__*/
|
|
@@ -1177,6 +1185,34 @@ var MuiTableCell = {
|
|
|
1177
1185
|
}
|
|
1178
1186
|
};
|
|
1179
1187
|
|
|
1188
|
+
var MuiTablePagination = {
|
|
1189
|
+
input: {
|
|
1190
|
+
border: "1px solid " + core.palette.grey[500],
|
|
1191
|
+
borderRadius: 4
|
|
1192
|
+
},
|
|
1193
|
+
select: {
|
|
1194
|
+
color: core.palette.grey[600],
|
|
1195
|
+
paddingBottom: 4,
|
|
1196
|
+
paddingTop: 4
|
|
1197
|
+
},
|
|
1198
|
+
selectRoot: {
|
|
1199
|
+
marginLeft: 20,
|
|
1200
|
+
marginRight: 40
|
|
1201
|
+
},
|
|
1202
|
+
caption: {
|
|
1203
|
+
color: core.palette.grey[600],
|
|
1204
|
+
fontWeight: 500
|
|
1205
|
+
},
|
|
1206
|
+
actions: {
|
|
1207
|
+
'& > button.Mui-disabled': {
|
|
1208
|
+
color: core.palette.grey[500]
|
|
1209
|
+
},
|
|
1210
|
+
'& > button': {
|
|
1211
|
+
color: core.palette.grey[700]
|
|
1212
|
+
}
|
|
1213
|
+
}
|
|
1214
|
+
};
|
|
1215
|
+
|
|
1180
1216
|
var MuiTableRow = {
|
|
1181
1217
|
root: {
|
|
1182
1218
|
'&:nth-of-type(even)': {
|
|
@@ -1306,6 +1342,7 @@ styles$5.createTheme({
|
|
|
1306
1342
|
MuiButton: MuiButton,
|
|
1307
1343
|
MuiCard: MuiCard,
|
|
1308
1344
|
MuiCardActionArea: MuiCardActionArea,
|
|
1345
|
+
MuiCheckbox: MuiCheckbox,
|
|
1309
1346
|
MuiChip: MuiChip,
|
|
1310
1347
|
MuiDialogActions: MuiDialogActions,
|
|
1311
1348
|
MuiDialogContent: MuiDialogContent,
|
|
@@ -1331,6 +1368,7 @@ styles$5.createTheme({
|
|
|
1331
1368
|
MuiSwitch: MuiSwitch,
|
|
1332
1369
|
MuiTab: MuiTab,
|
|
1333
1370
|
MuiTableCell: MuiTableCell,
|
|
1371
|
+
MuiTablePagination: MuiTablePagination,
|
|
1334
1372
|
MuiTableRow: MuiTableRow,
|
|
1335
1373
|
MuiTabs: MuiTabs,
|
|
1336
1374
|
MuiToggleButton: MuiToggleButton,
|
|
@@ -1394,6 +1432,34 @@ React.forwardRef(function (props, ref) {
|
|
|
1394
1432
|
});
|
|
1395
1433
|
ArrowSort.displayName = 'ArrowSort';
|
|
1396
1434
|
|
|
1435
|
+
var ArrowSortAsc =
|
|
1436
|
+
/*#__PURE__*/
|
|
1437
|
+
React.forwardRef(function (props, ref) {
|
|
1438
|
+
return React__default.createElement(SvgIcon, Object.assign({}, props, {
|
|
1439
|
+
ref: ref,
|
|
1440
|
+
viewBox: "0 0 24 24"
|
|
1441
|
+
}), React__default.createElement("path", {
|
|
1442
|
+
fillRule: "evenodd",
|
|
1443
|
+
clipRule: "evenodd",
|
|
1444
|
+
d: "M12.5941 5.25322L16.7531 9.52739C17.2808 10.0697 16.9068 11 16.1589 11H7.84107C7.09316 11 6.71921 10.0697 7.24694 9.52739L11.4094 5.25322C11.7344 4.91559 12.2656 4.91559 12.5941 5.25322ZM15.8177 14L12.0017 17.9217L8.18253 14H15.8177ZM12.5941 18.7468C12.2656 19.0844 11.7344 19.0844 11.4094 18.7468L7.24694 14.4726C6.71921 13.9303 7.09316 13 7.84107 13H16.1589C16.9068 13 17.2808 13.9303 16.7531 14.4726L12.5941 18.7468Z"
|
|
1445
|
+
}));
|
|
1446
|
+
});
|
|
1447
|
+
ArrowSortAsc.displayName = 'ArrowSortAsc';
|
|
1448
|
+
|
|
1449
|
+
var ArrowSortDesc =
|
|
1450
|
+
/*#__PURE__*/
|
|
1451
|
+
React.forwardRef(function (props, ref) {
|
|
1452
|
+
return React__default.createElement(SvgIcon, Object.assign({}, props, {
|
|
1453
|
+
ref: ref,
|
|
1454
|
+
viewBox: "0 0 24 24"
|
|
1455
|
+
}), React__default.createElement("path", {
|
|
1456
|
+
fillRule: "evenodd",
|
|
1457
|
+
clipRule: "evenodd",
|
|
1458
|
+
d: "M8.18253 10L12.0017 6.07831L15.8177 10H8.18253ZM11.4094 5.25322L7.24694 9.52739C6.71921 10.0697 7.09316 11 7.84107 11H16.1589C16.9068 11 17.2808 10.0697 16.7531 9.52739L12.5941 5.25322C12.2656 4.91559 11.7344 4.91559 11.4094 5.25322ZM16.1589 13H7.84107C7.09316 13 6.71921 13.9303 7.24694 14.4726L11.4094 18.7468C11.7344 19.0844 12.2656 19.0844 12.5941 18.7468L16.7531 14.4726C17.2808 13.9303 16.9068 13 16.1589 13Z"
|
|
1459
|
+
}));
|
|
1460
|
+
});
|
|
1461
|
+
ArrowSortDesc.displayName = 'ArrowSortDesc';
|
|
1462
|
+
|
|
1397
1463
|
var BarChart =
|
|
1398
1464
|
/*#__PURE__*/
|
|
1399
1465
|
React.forwardRef(function (props, ref) {
|
|
@@ -1942,6 +2008,8 @@ var Icons = {
|
|
|
1942
2008
|
ArrowDropUpRounded: ArrowDropUpRounded,
|
|
1943
2009
|
ArrowRightAlt: ArrowRightAlt,
|
|
1944
2010
|
ArrowSort: ArrowSort,
|
|
2011
|
+
ArrowSortAsc: ArrowSortAsc,
|
|
2012
|
+
ArrowSortDesc: ArrowSortDesc,
|
|
1945
2013
|
AutoAwesomeOutlined: AutoAwesomeOutlined,
|
|
1946
2014
|
BarChart: BarChart,
|
|
1947
2015
|
CalendarMonth: CalendarMonth,
|
|
@@ -2751,6 +2819,52 @@ React.forwardRef(function (props, ref) {
|
|
|
2751
2819
|
}));
|
|
2752
2820
|
});
|
|
2753
2821
|
|
|
2822
|
+
function _templateObject2$1() {
|
|
2823
|
+
var data = _taggedTemplateLiteralLoose(["\n & .MuiPaper-root {\n box-shadow: none;\n border: 1px solid ", ";\n }\n\n & .MuiMenuItem-root:hover {\n background-color: ", ";\n color: ", ";\n }\n\n & .MuiMenuItem-root.Mui-selected {\n background-color: ", ";\n color: ", ";\n }\n "]);
|
|
2824
|
+
|
|
2825
|
+
_templateObject2$1 = function _templateObject2() {
|
|
2826
|
+
return data;
|
|
2827
|
+
};
|
|
2828
|
+
|
|
2829
|
+
return data;
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
function _templateObject$1() {
|
|
2833
|
+
var data = _taggedTemplateLiteralLoose(["\n & .Mui-focused .MuiSelect-icon {\n color: ", ";\n }\n "]);
|
|
2834
|
+
|
|
2835
|
+
_templateObject$1 = function _templateObject() {
|
|
2836
|
+
return data;
|
|
2837
|
+
};
|
|
2838
|
+
|
|
2839
|
+
return data;
|
|
2840
|
+
}
|
|
2841
|
+
var TablePagination =
|
|
2842
|
+
/*#__PURE__*/
|
|
2843
|
+
React.forwardRef(function (props, ref) {
|
|
2844
|
+
var theme = useMUITheme();
|
|
2845
|
+
return React__default.createElement(MUITablePagination, Object.assign({}, props, {
|
|
2846
|
+
ref: ref,
|
|
2847
|
+
component: "div",
|
|
2848
|
+
className: emotion.css(_templateObject$1(), theme.palette.grey[500]),
|
|
2849
|
+
SelectProps: {
|
|
2850
|
+
variant: 'outlined',
|
|
2851
|
+
IconComponent: Icons.KeyboardArrowDown,
|
|
2852
|
+
MenuProps: {
|
|
2853
|
+
anchorOrigin: {
|
|
2854
|
+
vertical: 'bottom',
|
|
2855
|
+
horizontal: 'left'
|
|
2856
|
+
},
|
|
2857
|
+
transformOrigin: {
|
|
2858
|
+
vertical: -theme.spacing(1),
|
|
2859
|
+
horizontal: 'left'
|
|
2860
|
+
},
|
|
2861
|
+
getContentAnchorEl: null,
|
|
2862
|
+
className: emotion.css(_templateObject2$1(), theme.palette.grey[500], theme.palette.grey.A400, theme.palette.grey[700], theme.palette.grey[100], theme.palette.grey[700])
|
|
2863
|
+
}
|
|
2864
|
+
}
|
|
2865
|
+
}));
|
|
2866
|
+
});
|
|
2867
|
+
|
|
2754
2868
|
var TableRow =
|
|
2755
2869
|
/*#__PURE__*/
|
|
2756
2870
|
React.forwardRef(function (props, ref) {
|
|
@@ -2759,6 +2873,14 @@ React.forwardRef(function (props, ref) {
|
|
|
2759
2873
|
}));
|
|
2760
2874
|
});
|
|
2761
2875
|
|
|
2876
|
+
var TableSortLabel =
|
|
2877
|
+
/*#__PURE__*/
|
|
2878
|
+
React.forwardRef(function (props, ref) {
|
|
2879
|
+
return React__default.createElement(MUITableSortLabel, Object.assign({}, props, {
|
|
2880
|
+
ref: ref
|
|
2881
|
+
}));
|
|
2882
|
+
});
|
|
2883
|
+
|
|
2762
2884
|
var Tabs =
|
|
2763
2885
|
/*#__PURE__*/
|
|
2764
2886
|
React.forwardRef(function (props, ref) {
|
|
@@ -2889,10 +3011,10 @@ styles$5.makeStyles(function (theme) {
|
|
|
2889
3011
|
};
|
|
2890
3012
|
});
|
|
2891
3013
|
|
|
2892
|
-
function _templateObject$
|
|
3014
|
+
function _templateObject$2() {
|
|
2893
3015
|
var data = _taggedTemplateLiteralLoose(["\n color: ", ";\n "]);
|
|
2894
3016
|
|
|
2895
|
-
_templateObject$
|
|
3017
|
+
_templateObject$2 = function _templateObject() {
|
|
2896
3018
|
return data;
|
|
2897
3019
|
};
|
|
2898
3020
|
|
|
@@ -2938,7 +3060,7 @@ React.forwardRef(function (props, ref) {
|
|
|
2938
3060
|
}
|
|
2939
3061
|
}, React__default.createElement(Typography, {
|
|
2940
3062
|
variant: "body2",
|
|
2941
|
-
className: emotion.css(_templateObject$
|
|
3063
|
+
className: emotion.css(_templateObject$2(), theme.palette.grey[500])
|
|
2942
3064
|
}, opt.emptyLabel));
|
|
2943
3065
|
}
|
|
2944
3066
|
|
|
@@ -3066,7 +3188,9 @@ var index = {
|
|
|
3066
3188
|
TableCell: TableCell,
|
|
3067
3189
|
TableContainer: TableContainer,
|
|
3068
3190
|
TableHead: TableHead,
|
|
3191
|
+
TablePagination: TablePagination,
|
|
3069
3192
|
TableRow: TableRow,
|
|
3193
|
+
TableSortLabel: TableSortLabel,
|
|
3070
3194
|
Tabs: Tabs,
|
|
3071
3195
|
TextField: TextField,
|
|
3072
3196
|
ToggleButton: ToggleButton,
|
|
@@ -3428,20 +3552,20 @@ var CardContent = MuiCardContent;
|
|
|
3428
3552
|
|
|
3429
3553
|
var CardHeader = MuiCardHeader;
|
|
3430
3554
|
|
|
3431
|
-
function _templateObject2$
|
|
3555
|
+
function _templateObject2$2() {
|
|
3432
3556
|
var data = _taggedTemplateLiteralLoose(["\n animation: ", " 1s linear infinite;\n"]);
|
|
3433
3557
|
|
|
3434
|
-
_templateObject2$
|
|
3558
|
+
_templateObject2$2 = function _templateObject2() {
|
|
3435
3559
|
return data;
|
|
3436
3560
|
};
|
|
3437
3561
|
|
|
3438
3562
|
return data;
|
|
3439
3563
|
}
|
|
3440
3564
|
|
|
3441
|
-
function _templateObject$
|
|
3565
|
+
function _templateObject$3() {
|
|
3442
3566
|
var data = _taggedTemplateLiteralLoose(["\n\t100% {\n\t\ttransform: rotate(360deg);\n\t}\n"]);
|
|
3443
3567
|
|
|
3444
|
-
_templateObject$
|
|
3568
|
+
_templateObject$3 = function _templateObject() {
|
|
3445
3569
|
return data;
|
|
3446
3570
|
};
|
|
3447
3571
|
|
|
@@ -3451,12 +3575,12 @@ var loadingCircle =
|
|
|
3451
3575
|
/*#__PURE__*/
|
|
3452
3576
|
emotion.keyframes(
|
|
3453
3577
|
/*#__PURE__*/
|
|
3454
|
-
_templateObject$
|
|
3578
|
+
_templateObject$3());
|
|
3455
3579
|
var spin =
|
|
3456
3580
|
/*#__PURE__*/
|
|
3457
3581
|
emotion.css(
|
|
3458
3582
|
/*#__PURE__*/
|
|
3459
|
-
_templateObject2$
|
|
3583
|
+
_templateObject2$2(), loadingCircle);
|
|
3460
3584
|
|
|
3461
3585
|
var _svgBaseProps;
|
|
3462
3586
|
var svgBaseProps = (_svgBaseProps = {
|
|
@@ -3518,20 +3642,20 @@ var CalendarAlt = {
|
|
|
3518
3642
|
}
|
|
3519
3643
|
};
|
|
3520
3644
|
|
|
3521
|
-
function _templateObject2$
|
|
3645
|
+
function _templateObject2$3() {
|
|
3522
3646
|
var data = _taggedTemplateLiteralLoose(["\n position: absolute;\n left: 12px;\n top: 7px;\n width: 18px;\n height: 18px;\n font-size: 18px;\n color: ", ";\n"]);
|
|
3523
3647
|
|
|
3524
|
-
_templateObject2$
|
|
3648
|
+
_templateObject2$3 = function _templateObject2() {
|
|
3525
3649
|
return data;
|
|
3526
3650
|
};
|
|
3527
3651
|
|
|
3528
3652
|
return data;
|
|
3529
3653
|
}
|
|
3530
3654
|
|
|
3531
|
-
function _templateObject$
|
|
3655
|
+
function _templateObject$4() {
|
|
3532
3656
|
var data = _taggedTemplateLiteralLoose(["\n position: relative;\n"]);
|
|
3533
3657
|
|
|
3534
|
-
_templateObject$
|
|
3658
|
+
_templateObject$4 = function _templateObject() {
|
|
3535
3659
|
return data;
|
|
3536
3660
|
};
|
|
3537
3661
|
|
|
@@ -3541,12 +3665,12 @@ var DatePickerWrapper =
|
|
|
3541
3665
|
/*#__PURE__*/
|
|
3542
3666
|
styled('section')(
|
|
3543
3667
|
/*#__PURE__*/
|
|
3544
|
-
_templateObject$
|
|
3668
|
+
_templateObject$4());
|
|
3545
3669
|
var IonwWrapper =
|
|
3546
3670
|
/*#__PURE__*/
|
|
3547
3671
|
styled('section')(
|
|
3548
3672
|
/*#__PURE__*/
|
|
3549
|
-
_templateObject2$
|
|
3673
|
+
_templateObject2$3(), theme$1.color.primary["default"]);
|
|
3550
3674
|
var popOverStyles =
|
|
3551
3675
|
/*#__PURE__*/
|
|
3552
3676
|
styles$5.createStyles({
|
|
@@ -4255,20 +4379,20 @@ function _templateObject3$1() {
|
|
|
4255
4379
|
return data;
|
|
4256
4380
|
}
|
|
4257
4381
|
|
|
4258
|
-
function _templateObject2$
|
|
4382
|
+
function _templateObject2$4() {
|
|
4259
4383
|
var data = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n width: 60px;\n min-width: 60px;\n height: 22px;\n display: block;\n border-radius: 100px;\n display: flex;\n align-items: center;\n position: relative;\n background-color: ", ";\n transition: 0.3s;\n outline: none;\n"]);
|
|
4260
4384
|
|
|
4261
|
-
_templateObject2$
|
|
4385
|
+
_templateObject2$4 = function _templateObject2() {
|
|
4262
4386
|
return data;
|
|
4263
4387
|
};
|
|
4264
4388
|
|
|
4265
4389
|
return data;
|
|
4266
4390
|
}
|
|
4267
4391
|
|
|
4268
|
-
function _templateObject$
|
|
4392
|
+
function _templateObject$5() {
|
|
4269
4393
|
var data = _taggedTemplateLiteralLoose(["\n height: 10px;\n width: 0;\n visibility: hidden;\n outline: none;\n position: absolute;\n left: 50%;\n top: 12%;\n"]);
|
|
4270
4394
|
|
|
4271
|
-
_templateObject$
|
|
4395
|
+
_templateObject$5 = function _templateObject() {
|
|
4272
4396
|
return data;
|
|
4273
4397
|
};
|
|
4274
4398
|
|
|
@@ -4278,12 +4402,12 @@ var InputStyle =
|
|
|
4278
4402
|
/*#__PURE__*/
|
|
4279
4403
|
styled('input')(
|
|
4280
4404
|
/*#__PURE__*/
|
|
4281
|
-
_templateObject$
|
|
4405
|
+
_templateObject$5());
|
|
4282
4406
|
var LabelStyle =
|
|
4283
4407
|
/*#__PURE__*/
|
|
4284
4408
|
styled('label')(
|
|
4285
4409
|
/*#__PURE__*/
|
|
4286
|
-
_templateObject2$
|
|
4410
|
+
_templateObject2$4(), function (props) {
|
|
4287
4411
|
return props.checked ? theme$1.color.primary["default"] : theme$1.color.text.F;
|
|
4288
4412
|
});
|
|
4289
4413
|
var ThumbStyle =
|
|
@@ -4346,10 +4470,10 @@ styles$5.createStyles({
|
|
|
4346
4470
|
}
|
|
4347
4471
|
});
|
|
4348
4472
|
|
|
4349
|
-
function _templateObject$
|
|
4473
|
+
function _templateObject$6() {
|
|
4350
4474
|
var data = _taggedTemplateLiteralLoose(["\n z-index: 100;\n "]);
|
|
4351
4475
|
|
|
4352
|
-
_templateObject$
|
|
4476
|
+
_templateObject$6 = function _templateObject() {
|
|
4353
4477
|
return data;
|
|
4354
4478
|
};
|
|
4355
4479
|
|
|
@@ -4380,7 +4504,7 @@ var MenuList = function MenuList(_ref) {
|
|
|
4380
4504
|
placement: placement,
|
|
4381
4505
|
transition: true,
|
|
4382
4506
|
modifiers: modifiers,
|
|
4383
|
-
className: emotion.css(_templateObject$
|
|
4507
|
+
className: emotion.css(_templateObject$6())
|
|
4384
4508
|
}, function (_ref2) {
|
|
4385
4509
|
var TransitionProps = _ref2.TransitionProps;
|
|
4386
4510
|
|
|
@@ -4827,7 +4951,7 @@ React.forwardRef(function (_ref, ref) {
|
|
|
4827
4951
|
}, restProps));
|
|
4828
4952
|
});
|
|
4829
4953
|
|
|
4830
|
-
var MuiCheckbox =
|
|
4954
|
+
var MuiCheckbox$1 =
|
|
4831
4955
|
/*#__PURE__*/
|
|
4832
4956
|
React.forwardRef(function (_ref, ref) {
|
|
4833
4957
|
var disabled = _ref.disabled,
|
|
@@ -4855,20 +4979,20 @@ var LongArrowRight = {
|
|
|
4855
4979
|
}
|
|
4856
4980
|
};
|
|
4857
4981
|
|
|
4858
|
-
function _templateObject2$
|
|
4982
|
+
function _templateObject2$5() {
|
|
4859
4983
|
var data = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n margin: 0 8px;\n color: ", ";\n font-size: 14px;\n"]);
|
|
4860
4984
|
|
|
4861
|
-
_templateObject2$
|
|
4985
|
+
_templateObject2$5 = function _templateObject2() {
|
|
4862
4986
|
return data;
|
|
4863
4987
|
};
|
|
4864
4988
|
|
|
4865
4989
|
return data;
|
|
4866
4990
|
}
|
|
4867
4991
|
|
|
4868
|
-
function _templateObject$
|
|
4992
|
+
function _templateObject$7() {
|
|
4869
4993
|
var data = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n"]);
|
|
4870
4994
|
|
|
4871
|
-
_templateObject$
|
|
4995
|
+
_templateObject$7 = function _templateObject() {
|
|
4872
4996
|
return data;
|
|
4873
4997
|
};
|
|
4874
4998
|
|
|
@@ -4878,12 +5002,12 @@ var StepperContainer =
|
|
|
4878
5002
|
/*#__PURE__*/
|
|
4879
5003
|
emotion.css(
|
|
4880
5004
|
/*#__PURE__*/
|
|
4881
|
-
_templateObject$
|
|
5005
|
+
_templateObject$7());
|
|
4882
5006
|
var ConnectorContainer =
|
|
4883
5007
|
/*#__PURE__*/
|
|
4884
5008
|
emotion.css(
|
|
4885
5009
|
/*#__PURE__*/
|
|
4886
|
-
_templateObject2$
|
|
5010
|
+
_templateObject2$5(), theme$1.color.text.B3);
|
|
4887
5011
|
|
|
4888
5012
|
var Stepper$1 =
|
|
4889
5013
|
/*#__PURE__*/
|
|
@@ -4920,10 +5044,10 @@ React.forwardRef(function (_ref, ref) {
|
|
|
4920
5044
|
var index$3 = /*#__PURE__*/
|
|
4921
5045
|
React.memo(Stepper$1);
|
|
4922
5046
|
|
|
4923
|
-
function _templateObject$
|
|
5047
|
+
function _templateObject$8() {
|
|
4924
5048
|
var data = _taggedTemplateLiteralLoose(["\n cursor: ", ";\n color: ", ";\n background-color: transparent;\n min-width: 56px;\n padding: 16px 0;\n border: none;\n font-size: ", "px;\n font-weight: ", ";\n line-height: 22px;\n outline: none;\n\n &:hover {\n color: ", ";\n }\n"]);
|
|
4925
5049
|
|
|
4926
|
-
_templateObject$
|
|
5050
|
+
_templateObject$8 = function _templateObject() {
|
|
4927
5051
|
return data;
|
|
4928
5052
|
};
|
|
4929
5053
|
|
|
@@ -4933,7 +5057,7 @@ var SytledStep =
|
|
|
4933
5057
|
/*#__PURE__*/
|
|
4934
5058
|
styled('button')(
|
|
4935
5059
|
/*#__PURE__*/
|
|
4936
|
-
_templateObject$
|
|
5060
|
+
_templateObject$8(), function (props) {
|
|
4937
5061
|
return props.disabled ? 'not-allowed' : 'pointer';
|
|
4938
5062
|
}, function (props) {
|
|
4939
5063
|
return props.active ? theme$1.color.text.B6 : theme$1.color.text.B3;
|
|
@@ -4970,10 +5094,10 @@ React.forwardRef(function (_ref, ref) {
|
|
|
4970
5094
|
var index$4 = /*#__PURE__*/
|
|
4971
5095
|
React.memo(Step$1);
|
|
4972
5096
|
|
|
4973
|
-
function _templateObject$
|
|
5097
|
+
function _templateObject$9() {
|
|
4974
5098
|
var data = _taggedTemplateLiteralLoose(["\n\ttable, th, td {\n\t\tborder: 1px solid #eeeeee;\n\t}\n\n table {\n width: 100%;\n\t\tborder-collapse: collapse;\n\t\ttable-layout:fixed;\n\t}\n\n thead {\n\t\ttr th {\n\t\t\theight: 56px;\n\t\t\tfont-size: 14px;\n\t\t\tfont-weight: 500;\n\t\t\ttext-align: center;\n\t\t\tcolor: #3dba90;\n\n\t\t\t&:#title {\n\t\t\t\twidth: 20%;\n\t\t\t}\n\n\t\t\t&#origin {\n\t\t\t\twidth: 40%;\n\t\t\t}\n\n\t\t\t&#translate {\n\t\t\t\twidth: 40%;\n\t\t\t}\n\t\t}\n\t}\n\n\ttbody {\n\t\ttr td {\n\t\t\tword-break:break-word;\n\t\t\tvertical-align:top;\n\t\t}\n\t}\n"]);
|
|
4975
5099
|
|
|
4976
|
-
_templateObject$
|
|
5100
|
+
_templateObject$9 = function _templateObject() {
|
|
4977
5101
|
return data;
|
|
4978
5102
|
};
|
|
4979
5103
|
|
|
@@ -4983,7 +5107,7 @@ var StyledEditableTable =
|
|
|
4983
5107
|
/*#__PURE__*/
|
|
4984
5108
|
emotion.css(
|
|
4985
5109
|
/*#__PURE__*/
|
|
4986
|
-
_templateObject$
|
|
5110
|
+
_templateObject$9());
|
|
4987
5111
|
|
|
4988
5112
|
var EditableTable = function EditableTable(_ref) {
|
|
4989
5113
|
var rows = _ref.rows,
|
|
@@ -5765,20 +5889,20 @@ function _templateObject3$2() {
|
|
|
5765
5889
|
return data;
|
|
5766
5890
|
}
|
|
5767
5891
|
|
|
5768
|
-
function _templateObject2$
|
|
5892
|
+
function _templateObject2$6() {
|
|
5769
5893
|
var data = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n"]);
|
|
5770
5894
|
|
|
5771
|
-
_templateObject2$
|
|
5895
|
+
_templateObject2$6 = function _templateObject2() {
|
|
5772
5896
|
return data;
|
|
5773
5897
|
};
|
|
5774
5898
|
|
|
5775
5899
|
return data;
|
|
5776
5900
|
}
|
|
5777
5901
|
|
|
5778
|
-
function _templateObject$
|
|
5902
|
+
function _templateObject$a() {
|
|
5779
5903
|
var data = _taggedTemplateLiteralLoose(["\n display: flex;\n"]);
|
|
5780
5904
|
|
|
5781
|
-
_templateObject$
|
|
5905
|
+
_templateObject$a = function _templateObject() {
|
|
5782
5906
|
return data;
|
|
5783
5907
|
};
|
|
5784
5908
|
|
|
@@ -5809,12 +5933,12 @@ var MessageWrapper =
|
|
|
5809
5933
|
/*#__PURE__*/
|
|
5810
5934
|
emotion.css(
|
|
5811
5935
|
/*#__PURE__*/
|
|
5812
|
-
_templateObject$
|
|
5936
|
+
_templateObject$a());
|
|
5813
5937
|
var MessageContent =
|
|
5814
5938
|
/*#__PURE__*/
|
|
5815
5939
|
emotion.css(
|
|
5816
5940
|
/*#__PURE__*/
|
|
5817
|
-
_templateObject2$
|
|
5941
|
+
_templateObject2$6());
|
|
5818
5942
|
var TitleStyle =
|
|
5819
5943
|
/*#__PURE__*/
|
|
5820
5944
|
emotion.css(
|
|
@@ -5976,20 +6100,20 @@ function _templateObject3$3() {
|
|
|
5976
6100
|
return data;
|
|
5977
6101
|
}
|
|
5978
6102
|
|
|
5979
|
-
function _templateObject2$
|
|
6103
|
+
function _templateObject2$7() {
|
|
5980
6104
|
var data = _taggedTemplateLiteralLoose(["\n padding: 8px;\n display: inline-block;\n cursor: pointer;\n"]);
|
|
5981
6105
|
|
|
5982
|
-
_templateObject2$
|
|
6106
|
+
_templateObject2$7 = function _templateObject2() {
|
|
5983
6107
|
return data;
|
|
5984
6108
|
};
|
|
5985
6109
|
|
|
5986
6110
|
return data;
|
|
5987
6111
|
}
|
|
5988
6112
|
|
|
5989
|
-
function _templateObject$
|
|
6113
|
+
function _templateObject$b() {
|
|
5990
6114
|
var data = _taggedTemplateLiteralLoose(["\n background-color: white;\n transition: transform ", ";\n transform: translateX(", ");\n position: fixed;\n ", ";\n bottom: 0;\n top: 0;\n min-width: ", "px;\n height: 100%;\n z-index: ", ";\n"]);
|
|
5991
6115
|
|
|
5992
|
-
_templateObject$
|
|
6116
|
+
_templateObject$b = function _templateObject() {
|
|
5993
6117
|
return data;
|
|
5994
6118
|
};
|
|
5995
6119
|
|
|
@@ -6051,12 +6175,12 @@ var StyledSideMenu =
|
|
|
6051
6175
|
/*#__PURE__*/
|
|
6052
6176
|
styled.section(
|
|
6053
6177
|
/*#__PURE__*/
|
|
6054
|
-
_templateObject$
|
|
6178
|
+
_templateObject$b(), duration, translateOffset, position, width, theme$1.zIndex.appBar);
|
|
6055
6179
|
var StyledIconWrapper =
|
|
6056
6180
|
/*#__PURE__*/
|
|
6057
6181
|
styled.div(
|
|
6058
6182
|
/*#__PURE__*/
|
|
6059
|
-
_templateObject2$
|
|
6183
|
+
_templateObject2$7());
|
|
6060
6184
|
var IconStyle =
|
|
6061
6185
|
/*#__PURE__*/
|
|
6062
6186
|
emotion.css(
|
|
@@ -6182,10 +6306,10 @@ var Divider$1 = function Divider(props) {
|
|
|
6182
6306
|
|
|
6183
6307
|
var boxShadowForMenu = "0 1px 6px 0 rgba(69, 69, 69, 0.2),\n0 1px 5px 0 rgba(69, 69, 69, 0.1)";
|
|
6184
6308
|
|
|
6185
|
-
function _templateObject$
|
|
6309
|
+
function _templateObject$c() {
|
|
6186
6310
|
var data = _taggedTemplateLiteralLoose(["\n @import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700|Roboto:400,500,700&display=swap&subset=chinese-traditional');\n "]);
|
|
6187
6311
|
|
|
6188
|
-
_templateObject$
|
|
6312
|
+
_templateObject$c = function _templateObject() {
|
|
6189
6313
|
return data;
|
|
6190
6314
|
};
|
|
6191
6315
|
|
|
@@ -6205,7 +6329,7 @@ var muiThemeForSurveyCake =
|
|
|
6205
6329
|
/*#__PURE__*/
|
|
6206
6330
|
function () {
|
|
6207
6331
|
// Side Effects
|
|
6208
|
-
emotion.injectGlobal(_templateObject$
|
|
6332
|
+
emotion.injectGlobal(_templateObject$c());
|
|
6209
6333
|
var BASE_FONT_SIZE = 16;
|
|
6210
6334
|
return styles$5.createTheme({
|
|
6211
6335
|
typography: {
|
|
@@ -7424,7 +7548,7 @@ exports.CardActionArea = CardActionArea$1;
|
|
|
7424
7548
|
exports.CardActions = CardActions$1;
|
|
7425
7549
|
exports.CardContent = CardContent;
|
|
7426
7550
|
exports.CardHeader = CardHeader;
|
|
7427
|
-
exports.Checkbox = MuiCheckbox;
|
|
7551
|
+
exports.Checkbox = MuiCheckbox$1;
|
|
7428
7552
|
exports.Chip = index$1;
|
|
7429
7553
|
exports.DatePicker = DatePicker;
|
|
7430
7554
|
exports.Divider = Divider$1;
|