@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
package/dist/rc.esm.js
CHANGED
|
@@ -120,7 +120,9 @@ import MUITableBody from '@material-ui/core/TableBody';
|
|
|
120
120
|
import MUITableCell from '@material-ui/core/TableCell';
|
|
121
121
|
import MUITableContainer from '@material-ui/core/TableContainer';
|
|
122
122
|
import MUITableHead from '@material-ui/core/TableHead';
|
|
123
|
+
import MUITablePagination from '@material-ui/core/TablePagination';
|
|
123
124
|
import MUITableRow from '@material-ui/core/TableRow';
|
|
125
|
+
import MUITableSortLabel from '@material-ui/core/TableSortLabel';
|
|
124
126
|
import MUITabs from '@material-ui/core/Tabs';
|
|
125
127
|
import MUITextField from '@material-ui/core/TextField';
|
|
126
128
|
import MUIToggleButton from '@material-ui/lab/ToggleButton';
|
|
@@ -627,6 +629,12 @@ var MuiCardActionArea = {
|
|
|
627
629
|
}
|
|
628
630
|
};
|
|
629
631
|
|
|
632
|
+
var MuiCheckbox = {
|
|
633
|
+
indeterminate: {
|
|
634
|
+
color: core.palette.primary.main
|
|
635
|
+
}
|
|
636
|
+
};
|
|
637
|
+
|
|
630
638
|
var MuiChip = {
|
|
631
639
|
root:
|
|
632
640
|
/*#__PURE__*/
|
|
@@ -1172,6 +1180,34 @@ var MuiTableCell = {
|
|
|
1172
1180
|
}
|
|
1173
1181
|
};
|
|
1174
1182
|
|
|
1183
|
+
var MuiTablePagination = {
|
|
1184
|
+
input: {
|
|
1185
|
+
border: "1px solid " + core.palette.grey[500],
|
|
1186
|
+
borderRadius: 4
|
|
1187
|
+
},
|
|
1188
|
+
select: {
|
|
1189
|
+
color: core.palette.grey[600],
|
|
1190
|
+
paddingBottom: 4,
|
|
1191
|
+
paddingTop: 4
|
|
1192
|
+
},
|
|
1193
|
+
selectRoot: {
|
|
1194
|
+
marginLeft: 20,
|
|
1195
|
+
marginRight: 40
|
|
1196
|
+
},
|
|
1197
|
+
caption: {
|
|
1198
|
+
color: core.palette.grey[600],
|
|
1199
|
+
fontWeight: 500
|
|
1200
|
+
},
|
|
1201
|
+
actions: {
|
|
1202
|
+
'& > button.Mui-disabled': {
|
|
1203
|
+
color: core.palette.grey[500]
|
|
1204
|
+
},
|
|
1205
|
+
'& > button': {
|
|
1206
|
+
color: core.palette.grey[700]
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
};
|
|
1210
|
+
|
|
1175
1211
|
var MuiTableRow = {
|
|
1176
1212
|
root: {
|
|
1177
1213
|
'&:nth-of-type(even)': {
|
|
@@ -1301,6 +1337,7 @@ createTheme({
|
|
|
1301
1337
|
MuiButton: MuiButton,
|
|
1302
1338
|
MuiCard: MuiCard,
|
|
1303
1339
|
MuiCardActionArea: MuiCardActionArea,
|
|
1340
|
+
MuiCheckbox: MuiCheckbox,
|
|
1304
1341
|
MuiChip: MuiChip,
|
|
1305
1342
|
MuiDialogActions: MuiDialogActions,
|
|
1306
1343
|
MuiDialogContent: MuiDialogContent,
|
|
@@ -1326,6 +1363,7 @@ createTheme({
|
|
|
1326
1363
|
MuiSwitch: MuiSwitch,
|
|
1327
1364
|
MuiTab: MuiTab,
|
|
1328
1365
|
MuiTableCell: MuiTableCell,
|
|
1366
|
+
MuiTablePagination: MuiTablePagination,
|
|
1329
1367
|
MuiTableRow: MuiTableRow,
|
|
1330
1368
|
MuiTabs: MuiTabs,
|
|
1331
1369
|
MuiToggleButton: MuiToggleButton,
|
|
@@ -1389,6 +1427,34 @@ forwardRef(function (props, ref) {
|
|
|
1389
1427
|
});
|
|
1390
1428
|
ArrowSort.displayName = 'ArrowSort';
|
|
1391
1429
|
|
|
1430
|
+
var ArrowSortAsc =
|
|
1431
|
+
/*#__PURE__*/
|
|
1432
|
+
forwardRef(function (props, ref) {
|
|
1433
|
+
return React.createElement(SvgIcon, Object.assign({}, props, {
|
|
1434
|
+
ref: ref,
|
|
1435
|
+
viewBox: "0 0 24 24"
|
|
1436
|
+
}), React.createElement("path", {
|
|
1437
|
+
fillRule: "evenodd",
|
|
1438
|
+
clipRule: "evenodd",
|
|
1439
|
+
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"
|
|
1440
|
+
}));
|
|
1441
|
+
});
|
|
1442
|
+
ArrowSortAsc.displayName = 'ArrowSortAsc';
|
|
1443
|
+
|
|
1444
|
+
var ArrowSortDesc =
|
|
1445
|
+
/*#__PURE__*/
|
|
1446
|
+
forwardRef(function (props, ref) {
|
|
1447
|
+
return React.createElement(SvgIcon, Object.assign({}, props, {
|
|
1448
|
+
ref: ref,
|
|
1449
|
+
viewBox: "0 0 24 24"
|
|
1450
|
+
}), React.createElement("path", {
|
|
1451
|
+
fillRule: "evenodd",
|
|
1452
|
+
clipRule: "evenodd",
|
|
1453
|
+
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"
|
|
1454
|
+
}));
|
|
1455
|
+
});
|
|
1456
|
+
ArrowSortDesc.displayName = 'ArrowSortDesc';
|
|
1457
|
+
|
|
1392
1458
|
var BarChart =
|
|
1393
1459
|
/*#__PURE__*/
|
|
1394
1460
|
forwardRef(function (props, ref) {
|
|
@@ -1937,6 +2003,8 @@ var Icons = {
|
|
|
1937
2003
|
ArrowDropUpRounded: ArrowDropUpRounded,
|
|
1938
2004
|
ArrowRightAlt: ArrowRightAlt,
|
|
1939
2005
|
ArrowSort: ArrowSort,
|
|
2006
|
+
ArrowSortAsc: ArrowSortAsc,
|
|
2007
|
+
ArrowSortDesc: ArrowSortDesc,
|
|
1940
2008
|
AutoAwesomeOutlined: AutoAwesomeOutlined,
|
|
1941
2009
|
BarChart: BarChart,
|
|
1942
2010
|
CalendarMonth: CalendarMonth,
|
|
@@ -2746,6 +2814,52 @@ forwardRef(function (props, ref) {
|
|
|
2746
2814
|
}));
|
|
2747
2815
|
});
|
|
2748
2816
|
|
|
2817
|
+
function _templateObject2$1() {
|
|
2818
|
+
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 "]);
|
|
2819
|
+
|
|
2820
|
+
_templateObject2$1 = function _templateObject2() {
|
|
2821
|
+
return data;
|
|
2822
|
+
};
|
|
2823
|
+
|
|
2824
|
+
return data;
|
|
2825
|
+
}
|
|
2826
|
+
|
|
2827
|
+
function _templateObject$1() {
|
|
2828
|
+
var data = _taggedTemplateLiteralLoose(["\n & .Mui-focused .MuiSelect-icon {\n color: ", ";\n }\n "]);
|
|
2829
|
+
|
|
2830
|
+
_templateObject$1 = function _templateObject() {
|
|
2831
|
+
return data;
|
|
2832
|
+
};
|
|
2833
|
+
|
|
2834
|
+
return data;
|
|
2835
|
+
}
|
|
2836
|
+
var TablePagination =
|
|
2837
|
+
/*#__PURE__*/
|
|
2838
|
+
forwardRef(function (props, ref) {
|
|
2839
|
+
var theme = useMUITheme();
|
|
2840
|
+
return React.createElement(MUITablePagination, Object.assign({}, props, {
|
|
2841
|
+
ref: ref,
|
|
2842
|
+
component: "div",
|
|
2843
|
+
className: css(_templateObject$1(), theme.palette.grey[500]),
|
|
2844
|
+
SelectProps: {
|
|
2845
|
+
variant: 'outlined',
|
|
2846
|
+
IconComponent: Icons.KeyboardArrowDown,
|
|
2847
|
+
MenuProps: {
|
|
2848
|
+
anchorOrigin: {
|
|
2849
|
+
vertical: 'bottom',
|
|
2850
|
+
horizontal: 'left'
|
|
2851
|
+
},
|
|
2852
|
+
transformOrigin: {
|
|
2853
|
+
vertical: -theme.spacing(1),
|
|
2854
|
+
horizontal: 'left'
|
|
2855
|
+
},
|
|
2856
|
+
getContentAnchorEl: null,
|
|
2857
|
+
className: css(_templateObject2$1(), theme.palette.grey[500], theme.palette.grey.A400, theme.palette.grey[700], theme.palette.grey[100], theme.palette.grey[700])
|
|
2858
|
+
}
|
|
2859
|
+
}
|
|
2860
|
+
}));
|
|
2861
|
+
});
|
|
2862
|
+
|
|
2749
2863
|
var TableRow =
|
|
2750
2864
|
/*#__PURE__*/
|
|
2751
2865
|
forwardRef(function (props, ref) {
|
|
@@ -2754,6 +2868,14 @@ forwardRef(function (props, ref) {
|
|
|
2754
2868
|
}));
|
|
2755
2869
|
});
|
|
2756
2870
|
|
|
2871
|
+
var TableSortLabel =
|
|
2872
|
+
/*#__PURE__*/
|
|
2873
|
+
forwardRef(function (props, ref) {
|
|
2874
|
+
return React.createElement(MUITableSortLabel, Object.assign({}, props, {
|
|
2875
|
+
ref: ref
|
|
2876
|
+
}));
|
|
2877
|
+
});
|
|
2878
|
+
|
|
2757
2879
|
var Tabs =
|
|
2758
2880
|
/*#__PURE__*/
|
|
2759
2881
|
forwardRef(function (props, ref) {
|
|
@@ -2884,10 +3006,10 @@ makeStyles$1(function (theme) {
|
|
|
2884
3006
|
};
|
|
2885
3007
|
});
|
|
2886
3008
|
|
|
2887
|
-
function _templateObject$
|
|
3009
|
+
function _templateObject$2() {
|
|
2888
3010
|
var data = _taggedTemplateLiteralLoose(["\n color: ", ";\n "]);
|
|
2889
3011
|
|
|
2890
|
-
_templateObject$
|
|
3012
|
+
_templateObject$2 = function _templateObject() {
|
|
2891
3013
|
return data;
|
|
2892
3014
|
};
|
|
2893
3015
|
|
|
@@ -2933,7 +3055,7 @@ forwardRef(function (props, ref) {
|
|
|
2933
3055
|
}
|
|
2934
3056
|
}, React.createElement(Typography, {
|
|
2935
3057
|
variant: "body2",
|
|
2936
|
-
className: css(_templateObject$
|
|
3058
|
+
className: css(_templateObject$2(), theme.palette.grey[500])
|
|
2937
3059
|
}, opt.emptyLabel));
|
|
2938
3060
|
}
|
|
2939
3061
|
|
|
@@ -3061,7 +3183,9 @@ var index = {
|
|
|
3061
3183
|
TableCell: TableCell,
|
|
3062
3184
|
TableContainer: TableContainer,
|
|
3063
3185
|
TableHead: TableHead,
|
|
3186
|
+
TablePagination: TablePagination,
|
|
3064
3187
|
TableRow: TableRow,
|
|
3188
|
+
TableSortLabel: TableSortLabel,
|
|
3065
3189
|
Tabs: Tabs,
|
|
3066
3190
|
TextField: TextField,
|
|
3067
3191
|
ToggleButton: ToggleButton,
|
|
@@ -3423,20 +3547,20 @@ var CardContent = MuiCardContent;
|
|
|
3423
3547
|
|
|
3424
3548
|
var CardHeader = MuiCardHeader;
|
|
3425
3549
|
|
|
3426
|
-
function _templateObject2$
|
|
3550
|
+
function _templateObject2$2() {
|
|
3427
3551
|
var data = _taggedTemplateLiteralLoose(["\n animation: ", " 1s linear infinite;\n"]);
|
|
3428
3552
|
|
|
3429
|
-
_templateObject2$
|
|
3553
|
+
_templateObject2$2 = function _templateObject2() {
|
|
3430
3554
|
return data;
|
|
3431
3555
|
};
|
|
3432
3556
|
|
|
3433
3557
|
return data;
|
|
3434
3558
|
}
|
|
3435
3559
|
|
|
3436
|
-
function _templateObject$
|
|
3560
|
+
function _templateObject$3() {
|
|
3437
3561
|
var data = _taggedTemplateLiteralLoose(["\n\t100% {\n\t\ttransform: rotate(360deg);\n\t}\n"]);
|
|
3438
3562
|
|
|
3439
|
-
_templateObject$
|
|
3563
|
+
_templateObject$3 = function _templateObject() {
|
|
3440
3564
|
return data;
|
|
3441
3565
|
};
|
|
3442
3566
|
|
|
@@ -3446,12 +3570,12 @@ var loadingCircle =
|
|
|
3446
3570
|
/*#__PURE__*/
|
|
3447
3571
|
keyframes(
|
|
3448
3572
|
/*#__PURE__*/
|
|
3449
|
-
_templateObject$
|
|
3573
|
+
_templateObject$3());
|
|
3450
3574
|
var spin =
|
|
3451
3575
|
/*#__PURE__*/
|
|
3452
3576
|
css(
|
|
3453
3577
|
/*#__PURE__*/
|
|
3454
|
-
_templateObject2$
|
|
3578
|
+
_templateObject2$2(), loadingCircle);
|
|
3455
3579
|
|
|
3456
3580
|
var _svgBaseProps;
|
|
3457
3581
|
var svgBaseProps = (_svgBaseProps = {
|
|
@@ -3513,20 +3637,20 @@ var CalendarAlt = {
|
|
|
3513
3637
|
}
|
|
3514
3638
|
};
|
|
3515
3639
|
|
|
3516
|
-
function _templateObject2$
|
|
3640
|
+
function _templateObject2$3() {
|
|
3517
3641
|
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"]);
|
|
3518
3642
|
|
|
3519
|
-
_templateObject2$
|
|
3643
|
+
_templateObject2$3 = function _templateObject2() {
|
|
3520
3644
|
return data;
|
|
3521
3645
|
};
|
|
3522
3646
|
|
|
3523
3647
|
return data;
|
|
3524
3648
|
}
|
|
3525
3649
|
|
|
3526
|
-
function _templateObject$
|
|
3650
|
+
function _templateObject$4() {
|
|
3527
3651
|
var data = _taggedTemplateLiteralLoose(["\n position: relative;\n"]);
|
|
3528
3652
|
|
|
3529
|
-
_templateObject$
|
|
3653
|
+
_templateObject$4 = function _templateObject() {
|
|
3530
3654
|
return data;
|
|
3531
3655
|
};
|
|
3532
3656
|
|
|
@@ -3536,12 +3660,12 @@ var DatePickerWrapper =
|
|
|
3536
3660
|
/*#__PURE__*/
|
|
3537
3661
|
styled$1('section')(
|
|
3538
3662
|
/*#__PURE__*/
|
|
3539
|
-
_templateObject$
|
|
3663
|
+
_templateObject$4());
|
|
3540
3664
|
var IonwWrapper =
|
|
3541
3665
|
/*#__PURE__*/
|
|
3542
3666
|
styled$1('section')(
|
|
3543
3667
|
/*#__PURE__*/
|
|
3544
|
-
_templateObject2$
|
|
3668
|
+
_templateObject2$3(), theme$1.color.primary["default"]);
|
|
3545
3669
|
var popOverStyles =
|
|
3546
3670
|
/*#__PURE__*/
|
|
3547
3671
|
createStyles({
|
|
@@ -4250,20 +4374,20 @@ function _templateObject3$1() {
|
|
|
4250
4374
|
return data;
|
|
4251
4375
|
}
|
|
4252
4376
|
|
|
4253
|
-
function _templateObject2$
|
|
4377
|
+
function _templateObject2$4() {
|
|
4254
4378
|
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"]);
|
|
4255
4379
|
|
|
4256
|
-
_templateObject2$
|
|
4380
|
+
_templateObject2$4 = function _templateObject2() {
|
|
4257
4381
|
return data;
|
|
4258
4382
|
};
|
|
4259
4383
|
|
|
4260
4384
|
return data;
|
|
4261
4385
|
}
|
|
4262
4386
|
|
|
4263
|
-
function _templateObject$
|
|
4387
|
+
function _templateObject$5() {
|
|
4264
4388
|
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"]);
|
|
4265
4389
|
|
|
4266
|
-
_templateObject$
|
|
4390
|
+
_templateObject$5 = function _templateObject() {
|
|
4267
4391
|
return data;
|
|
4268
4392
|
};
|
|
4269
4393
|
|
|
@@ -4273,12 +4397,12 @@ var InputStyle =
|
|
|
4273
4397
|
/*#__PURE__*/
|
|
4274
4398
|
styled$1('input')(
|
|
4275
4399
|
/*#__PURE__*/
|
|
4276
|
-
_templateObject$
|
|
4400
|
+
_templateObject$5());
|
|
4277
4401
|
var LabelStyle =
|
|
4278
4402
|
/*#__PURE__*/
|
|
4279
4403
|
styled$1('label')(
|
|
4280
4404
|
/*#__PURE__*/
|
|
4281
|
-
_templateObject2$
|
|
4405
|
+
_templateObject2$4(), function (props) {
|
|
4282
4406
|
return props.checked ? theme$1.color.primary["default"] : theme$1.color.text.F;
|
|
4283
4407
|
});
|
|
4284
4408
|
var ThumbStyle =
|
|
@@ -4341,10 +4465,10 @@ createStyles({
|
|
|
4341
4465
|
}
|
|
4342
4466
|
});
|
|
4343
4467
|
|
|
4344
|
-
function _templateObject$
|
|
4468
|
+
function _templateObject$6() {
|
|
4345
4469
|
var data = _taggedTemplateLiteralLoose(["\n z-index: 100;\n "]);
|
|
4346
4470
|
|
|
4347
|
-
_templateObject$
|
|
4471
|
+
_templateObject$6 = function _templateObject() {
|
|
4348
4472
|
return data;
|
|
4349
4473
|
};
|
|
4350
4474
|
|
|
@@ -4375,7 +4499,7 @@ var MenuList = function MenuList(_ref) {
|
|
|
4375
4499
|
placement: placement,
|
|
4376
4500
|
transition: true,
|
|
4377
4501
|
modifiers: modifiers,
|
|
4378
|
-
className: css(_templateObject$
|
|
4502
|
+
className: css(_templateObject$6())
|
|
4379
4503
|
}, function (_ref2) {
|
|
4380
4504
|
var TransitionProps = _ref2.TransitionProps;
|
|
4381
4505
|
|
|
@@ -4822,7 +4946,7 @@ forwardRef(function (_ref, ref) {
|
|
|
4822
4946
|
}, restProps));
|
|
4823
4947
|
});
|
|
4824
4948
|
|
|
4825
|
-
var MuiCheckbox =
|
|
4949
|
+
var MuiCheckbox$1 =
|
|
4826
4950
|
/*#__PURE__*/
|
|
4827
4951
|
forwardRef(function (_ref, ref) {
|
|
4828
4952
|
var disabled = _ref.disabled,
|
|
@@ -4850,20 +4974,20 @@ var LongArrowRight = {
|
|
|
4850
4974
|
}
|
|
4851
4975
|
};
|
|
4852
4976
|
|
|
4853
|
-
function _templateObject2$
|
|
4977
|
+
function _templateObject2$5() {
|
|
4854
4978
|
var data = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n margin: 0 8px;\n color: ", ";\n font-size: 14px;\n"]);
|
|
4855
4979
|
|
|
4856
|
-
_templateObject2$
|
|
4980
|
+
_templateObject2$5 = function _templateObject2() {
|
|
4857
4981
|
return data;
|
|
4858
4982
|
};
|
|
4859
4983
|
|
|
4860
4984
|
return data;
|
|
4861
4985
|
}
|
|
4862
4986
|
|
|
4863
|
-
function _templateObject$
|
|
4987
|
+
function _templateObject$7() {
|
|
4864
4988
|
var data = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n"]);
|
|
4865
4989
|
|
|
4866
|
-
_templateObject$
|
|
4990
|
+
_templateObject$7 = function _templateObject() {
|
|
4867
4991
|
return data;
|
|
4868
4992
|
};
|
|
4869
4993
|
|
|
@@ -4873,12 +4997,12 @@ var StepperContainer =
|
|
|
4873
4997
|
/*#__PURE__*/
|
|
4874
4998
|
css(
|
|
4875
4999
|
/*#__PURE__*/
|
|
4876
|
-
_templateObject$
|
|
5000
|
+
_templateObject$7());
|
|
4877
5001
|
var ConnectorContainer =
|
|
4878
5002
|
/*#__PURE__*/
|
|
4879
5003
|
css(
|
|
4880
5004
|
/*#__PURE__*/
|
|
4881
|
-
_templateObject2$
|
|
5005
|
+
_templateObject2$5(), theme$1.color.text.B3);
|
|
4882
5006
|
|
|
4883
5007
|
var Stepper$1 =
|
|
4884
5008
|
/*#__PURE__*/
|
|
@@ -4915,10 +5039,10 @@ forwardRef(function (_ref, ref) {
|
|
|
4915
5039
|
var index$3 = /*#__PURE__*/
|
|
4916
5040
|
memo(Stepper$1);
|
|
4917
5041
|
|
|
4918
|
-
function _templateObject$
|
|
5042
|
+
function _templateObject$8() {
|
|
4919
5043
|
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"]);
|
|
4920
5044
|
|
|
4921
|
-
_templateObject$
|
|
5045
|
+
_templateObject$8 = function _templateObject() {
|
|
4922
5046
|
return data;
|
|
4923
5047
|
};
|
|
4924
5048
|
|
|
@@ -4928,7 +5052,7 @@ var SytledStep =
|
|
|
4928
5052
|
/*#__PURE__*/
|
|
4929
5053
|
styled$1('button')(
|
|
4930
5054
|
/*#__PURE__*/
|
|
4931
|
-
_templateObject$
|
|
5055
|
+
_templateObject$8(), function (props) {
|
|
4932
5056
|
return props.disabled ? 'not-allowed' : 'pointer';
|
|
4933
5057
|
}, function (props) {
|
|
4934
5058
|
return props.active ? theme$1.color.text.B6 : theme$1.color.text.B3;
|
|
@@ -4965,10 +5089,10 @@ forwardRef(function (_ref, ref) {
|
|
|
4965
5089
|
var index$4 = /*#__PURE__*/
|
|
4966
5090
|
memo(Step$1);
|
|
4967
5091
|
|
|
4968
|
-
function _templateObject$
|
|
5092
|
+
function _templateObject$9() {
|
|
4969
5093
|
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"]);
|
|
4970
5094
|
|
|
4971
|
-
_templateObject$
|
|
5095
|
+
_templateObject$9 = function _templateObject() {
|
|
4972
5096
|
return data;
|
|
4973
5097
|
};
|
|
4974
5098
|
|
|
@@ -4978,7 +5102,7 @@ var StyledEditableTable =
|
|
|
4978
5102
|
/*#__PURE__*/
|
|
4979
5103
|
css(
|
|
4980
5104
|
/*#__PURE__*/
|
|
4981
|
-
_templateObject$
|
|
5105
|
+
_templateObject$9());
|
|
4982
5106
|
|
|
4983
5107
|
var EditableTable = function EditableTable(_ref) {
|
|
4984
5108
|
var rows = _ref.rows,
|
|
@@ -5760,20 +5884,20 @@ function _templateObject3$2() {
|
|
|
5760
5884
|
return data;
|
|
5761
5885
|
}
|
|
5762
5886
|
|
|
5763
|
-
function _templateObject2$
|
|
5887
|
+
function _templateObject2$6() {
|
|
5764
5888
|
var data = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n"]);
|
|
5765
5889
|
|
|
5766
|
-
_templateObject2$
|
|
5890
|
+
_templateObject2$6 = function _templateObject2() {
|
|
5767
5891
|
return data;
|
|
5768
5892
|
};
|
|
5769
5893
|
|
|
5770
5894
|
return data;
|
|
5771
5895
|
}
|
|
5772
5896
|
|
|
5773
|
-
function _templateObject$
|
|
5897
|
+
function _templateObject$a() {
|
|
5774
5898
|
var data = _taggedTemplateLiteralLoose(["\n display: flex;\n"]);
|
|
5775
5899
|
|
|
5776
|
-
_templateObject$
|
|
5900
|
+
_templateObject$a = function _templateObject() {
|
|
5777
5901
|
return data;
|
|
5778
5902
|
};
|
|
5779
5903
|
|
|
@@ -5804,12 +5928,12 @@ var MessageWrapper =
|
|
|
5804
5928
|
/*#__PURE__*/
|
|
5805
5929
|
css(
|
|
5806
5930
|
/*#__PURE__*/
|
|
5807
|
-
_templateObject$
|
|
5931
|
+
_templateObject$a());
|
|
5808
5932
|
var MessageContent =
|
|
5809
5933
|
/*#__PURE__*/
|
|
5810
5934
|
css(
|
|
5811
5935
|
/*#__PURE__*/
|
|
5812
|
-
_templateObject2$
|
|
5936
|
+
_templateObject2$6());
|
|
5813
5937
|
var TitleStyle =
|
|
5814
5938
|
/*#__PURE__*/
|
|
5815
5939
|
css(
|
|
@@ -5971,20 +6095,20 @@ function _templateObject3$3() {
|
|
|
5971
6095
|
return data;
|
|
5972
6096
|
}
|
|
5973
6097
|
|
|
5974
|
-
function _templateObject2$
|
|
6098
|
+
function _templateObject2$7() {
|
|
5975
6099
|
var data = _taggedTemplateLiteralLoose(["\n padding: 8px;\n display: inline-block;\n cursor: pointer;\n"]);
|
|
5976
6100
|
|
|
5977
|
-
_templateObject2$
|
|
6101
|
+
_templateObject2$7 = function _templateObject2() {
|
|
5978
6102
|
return data;
|
|
5979
6103
|
};
|
|
5980
6104
|
|
|
5981
6105
|
return data;
|
|
5982
6106
|
}
|
|
5983
6107
|
|
|
5984
|
-
function _templateObject$
|
|
6108
|
+
function _templateObject$b() {
|
|
5985
6109
|
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"]);
|
|
5986
6110
|
|
|
5987
|
-
_templateObject$
|
|
6111
|
+
_templateObject$b = function _templateObject() {
|
|
5988
6112
|
return data;
|
|
5989
6113
|
};
|
|
5990
6114
|
|
|
@@ -6046,12 +6170,12 @@ var StyledSideMenu =
|
|
|
6046
6170
|
/*#__PURE__*/
|
|
6047
6171
|
styled$1.section(
|
|
6048
6172
|
/*#__PURE__*/
|
|
6049
|
-
_templateObject$
|
|
6173
|
+
_templateObject$b(), duration, translateOffset, position, width, theme$1.zIndex.appBar);
|
|
6050
6174
|
var StyledIconWrapper =
|
|
6051
6175
|
/*#__PURE__*/
|
|
6052
6176
|
styled$1.div(
|
|
6053
6177
|
/*#__PURE__*/
|
|
6054
|
-
_templateObject2$
|
|
6178
|
+
_templateObject2$7());
|
|
6055
6179
|
var IconStyle =
|
|
6056
6180
|
/*#__PURE__*/
|
|
6057
6181
|
css(
|
|
@@ -6177,10 +6301,10 @@ var Divider$1 = function Divider(props) {
|
|
|
6177
6301
|
|
|
6178
6302
|
var boxShadowForMenu = "0 1px 6px 0 rgba(69, 69, 69, 0.2),\n0 1px 5px 0 rgba(69, 69, 69, 0.1)";
|
|
6179
6303
|
|
|
6180
|
-
function _templateObject$
|
|
6304
|
+
function _templateObject$c() {
|
|
6181
6305
|
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 "]);
|
|
6182
6306
|
|
|
6183
|
-
_templateObject$
|
|
6307
|
+
_templateObject$c = function _templateObject() {
|
|
6184
6308
|
return data;
|
|
6185
6309
|
};
|
|
6186
6310
|
|
|
@@ -6200,7 +6324,7 @@ var muiThemeForSurveyCake =
|
|
|
6200
6324
|
/*#__PURE__*/
|
|
6201
6325
|
function () {
|
|
6202
6326
|
// Side Effects
|
|
6203
|
-
injectGlobal(_templateObject$
|
|
6327
|
+
injectGlobal(_templateObject$c());
|
|
6204
6328
|
var BASE_FONT_SIZE = 16;
|
|
6205
6329
|
return createTheme({
|
|
6206
6330
|
typography: {
|
|
@@ -7401,5 +7525,5 @@ WordingProvider.useWording = function () {
|
|
|
7401
7525
|
return useContext(WordingContext);
|
|
7402
7526
|
};
|
|
7403
7527
|
|
|
7404
|
-
export { AnimateHeight, ArrowRight, Avatar, Backdrop$1 as Backdrop, BrowserLight, Button$1 as Button, Card$1 as Card, CardActionArea$1 as CardActionArea, CardActions$1 as CardActions, CardContent, CardHeader, MuiCheckbox as Checkbox, index$1 as Chip, DatePicker, Divider$1 as Divider, EditLight, EditableTable, GroupSelect, Icon$1 as Icon, InputSlider, KeyboardDatePicker, ListUl as ListUlFilled, Lock as LockFilled, MenuItem$1 as MenuItem, MenuList, api as Message, Modal, MuiThemeProvider, index$2 as Pagination, Paper, Popper, Portal, QuestionCircleOutline, MuiRadio$1 as Radio, Radio$1 as RadioGroup, Select$1 as Select, index$5 as SlidingSideMenu, Snackbar$1 as Snackbar, index$4 as Step, index$3 as Stepper, Switch$1 as Switch, Tab$1 as Tab, Tabs$1 as Tabs, Tag, ToggleButtonGroup$1 as ToggleButtonGroup, Tooltip$1 as Tooltip, Typography$1 as Typography, index as V2, WordingProvider, AnalyticsLight as analyticsLight, AngleLeft as angleLeftFilled, AngleLeft$1 as angleLeftOutlined, AngleRight as angleRightFilled, AngleRight$1 as angleRightOutlined, ArrowAltLeft as arrowAltLeftFilled, BarChart$1 as barChartFilled, BracketsCurly as bracketsCurly, CalendarAlt as calendarAltOutlined, CaretDown$1 as caretDownFilled, CaretLeft as caretLeftFilled, CaretRight as caretRightFilled, CaretUp as caretUpFilled, CheckCircle as checkCircleFilled, CheckCircle$1 as checkCircleOutlined, Check as checkFilled, Check$1 as checkOutlined, CheckSquare as checkSquareFilled, ChevronDown as chevronDownOutlined, ChevronLeft as chevronLeftFilled, ChevronRight as chevronRightFilled, Clock as clockOutlined, Code as codeOutlined, CogLight as cogLight, CommentAltLines as commentAltLinesOutlined, theme$1 as defaultTheme, EllipsisH as ellipsisHFilled, EllipsisV as ellipsisVFilled, ExclamationCircle as exclamationCircleFilled, ExclamationCircle$1 as exclamationCircleOutlined, ExclamationTriangle as exclamationTriangleFilled, ExternalLinkLight as externalLinkLight, Facebook$1 as facebookBrand, FacebookIn as facebookIn, FileAlt as fileAltOutlined, FileCertificate as fileCertificateOutlined, Filter as filterOutlined, GlobalAsia as globalAsiaOutlined, HandPointer as handPointerFilled, HandPointer$1 as handPointerOutlined, Heart as heartFilled, Heart$1 as heartOutlined, hexToRgba, InfoCircle as infoCircleFilled, InfoCircle$1 as infoCircleOutlined, LinkLight as linkLight, Link$2 as linkOutlined, Linkedin as linkedinBrand, LinkedinIn as linkedinIn, Link$1 as listUlOutlined, LongArrowRight as longArrowRightOutlined, makeStyles, MinusLight as minusLightFilled, muiThemeForSurveyCake, PageBreak as pageBreak, PenLight as penLight, PlusCircle as plusCircleOutlined, Plus as plusFilled, PlusLight as plusLightFilled, QRCode as qrcodeOutlined, QuestionCircle as questionCircleFilled, Redo as redoOutlined, Search as searchFilled, SearchLight as searchLightOutlined, SortDown as sortDownFilled, Sort as sortFilled, SortUp as sortUpFilled, SpinnerThird as spinnerThirdOutlined, Square as squareOutlined, Star as starFilled, Star$1 as starOutlined, ThLarge as thLargeOutLined, ThumbUp as thumbUpFilled, ThumbUp$1 as thumbUpOutlined, TimesCircle as timesCircleFilled, TimesCircle$1 as timesCircleOutlined, Times as timesOutlined, TrashAltRegular as trashAltRegular, Twitter as twitterBrand, TwitterIn as twitterIn, useTheme, User as userFilled, UserPlus as userPlusFilled, UserPlus$1 as userPlusOutlined, Users as usersFilled, withMuiPickersUtilsProvider };
|
|
7528
|
+
export { AnimateHeight, ArrowRight, Avatar, Backdrop$1 as Backdrop, BrowserLight, Button$1 as Button, Card$1 as Card, CardActionArea$1 as CardActionArea, CardActions$1 as CardActions, CardContent, CardHeader, MuiCheckbox$1 as Checkbox, index$1 as Chip, DatePicker, Divider$1 as Divider, EditLight, EditableTable, GroupSelect, Icon$1 as Icon, InputSlider, KeyboardDatePicker, ListUl as ListUlFilled, Lock as LockFilled, MenuItem$1 as MenuItem, MenuList, api as Message, Modal, MuiThemeProvider, index$2 as Pagination, Paper, Popper, Portal, QuestionCircleOutline, MuiRadio$1 as Radio, Radio$1 as RadioGroup, Select$1 as Select, index$5 as SlidingSideMenu, Snackbar$1 as Snackbar, index$4 as Step, index$3 as Stepper, Switch$1 as Switch, Tab$1 as Tab, Tabs$1 as Tabs, Tag, ToggleButtonGroup$1 as ToggleButtonGroup, Tooltip$1 as Tooltip, Typography$1 as Typography, index as V2, WordingProvider, AnalyticsLight as analyticsLight, AngleLeft as angleLeftFilled, AngleLeft$1 as angleLeftOutlined, AngleRight as angleRightFilled, AngleRight$1 as angleRightOutlined, ArrowAltLeft as arrowAltLeftFilled, BarChart$1 as barChartFilled, BracketsCurly as bracketsCurly, CalendarAlt as calendarAltOutlined, CaretDown$1 as caretDownFilled, CaretLeft as caretLeftFilled, CaretRight as caretRightFilled, CaretUp as caretUpFilled, CheckCircle as checkCircleFilled, CheckCircle$1 as checkCircleOutlined, Check as checkFilled, Check$1 as checkOutlined, CheckSquare as checkSquareFilled, ChevronDown as chevronDownOutlined, ChevronLeft as chevronLeftFilled, ChevronRight as chevronRightFilled, Clock as clockOutlined, Code as codeOutlined, CogLight as cogLight, CommentAltLines as commentAltLinesOutlined, theme$1 as defaultTheme, EllipsisH as ellipsisHFilled, EllipsisV as ellipsisVFilled, ExclamationCircle as exclamationCircleFilled, ExclamationCircle$1 as exclamationCircleOutlined, ExclamationTriangle as exclamationTriangleFilled, ExternalLinkLight as externalLinkLight, Facebook$1 as facebookBrand, FacebookIn as facebookIn, FileAlt as fileAltOutlined, FileCertificate as fileCertificateOutlined, Filter as filterOutlined, GlobalAsia as globalAsiaOutlined, HandPointer as handPointerFilled, HandPointer$1 as handPointerOutlined, Heart as heartFilled, Heart$1 as heartOutlined, hexToRgba, InfoCircle as infoCircleFilled, InfoCircle$1 as infoCircleOutlined, LinkLight as linkLight, Link$2 as linkOutlined, Linkedin as linkedinBrand, LinkedinIn as linkedinIn, Link$1 as listUlOutlined, LongArrowRight as longArrowRightOutlined, makeStyles, MinusLight as minusLightFilled, muiThemeForSurveyCake, PageBreak as pageBreak, PenLight as penLight, PlusCircle as plusCircleOutlined, Plus as plusFilled, PlusLight as plusLightFilled, QRCode as qrcodeOutlined, QuestionCircle as questionCircleFilled, Redo as redoOutlined, Search as searchFilled, SearchLight as searchLightOutlined, SortDown as sortDownFilled, Sort as sortFilled, SortUp as sortUpFilled, SpinnerThird as spinnerThirdOutlined, Square as squareOutlined, Star as starFilled, Star$1 as starOutlined, ThLarge as thLargeOutLined, ThumbUp as thumbUpFilled, ThumbUp$1 as thumbUpOutlined, TimesCircle as timesCircleFilled, TimesCircle$1 as timesCircleOutlined, Times as timesOutlined, TrashAltRegular as trashAltRegular, Twitter as twitterBrand, TwitterIn as twitterIn, useTheme, User as userFilled, UserPlus as userPlusFilled, UserPlus$1 as userPlusOutlined, Users as usersFilled, withMuiPickersUtilsProvider };
|
|
7405
7529
|
//# sourceMappingURL=rc.esm.js.map
|