dtable-ui-component 6.0.29 → 6.0.31
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/lib/BodyPortal/index.js +29 -0
- package/lib/CheckboxEditor/index.js +24 -116
- package/lib/CheckboxEditor/mb-editor.js +99 -0
- package/lib/CheckboxEditor/pc-editor.js +118 -0
- package/lib/CollaboratorEditor/index.js +23 -11
- package/lib/CollaboratorEditor/mb-editor/index.css +41 -0
- package/lib/CollaboratorEditor/mb-editor/index.js +88 -0
- package/lib/DTableCommonAddTool/index.js +1 -3
- package/lib/DTableFiltersPopover/widgets/department-select-filter/department-multiple-select-filter.js +6 -6
- package/lib/DTableFiltersPopover/widgets/department-select-filter/department-single-select-filter.js +6 -6
- package/lib/DateEditor/index.js +69 -95
- package/lib/DateEditor/mb-editor/custom-rc-calendar.css +118 -0
- package/lib/DateEditor/mb-editor/index.css +39 -0
- package/lib/DateEditor/mb-editor/index.js +215 -0
- package/lib/DateEditor/{pc-date-editor-popover.js → pc-editor.js} +9 -9
- package/lib/{Department-editor/department-multiple-select → DepartmentMultipleSelectEditor}/index.js +6 -6
- package/lib/DepartmentSingleSelectEditor/index.js +34 -0
- package/lib/DepartmentSingleSelectEditor/mb-editor/index.css +4 -0
- package/lib/DepartmentSingleSelectEditor/mb-editor/index.js +227 -0
- package/lib/{Department-editor → DepartmentSingleSelectEditor/pc-editor}/department-single-select.js +7 -7
- package/lib/{Department-editor → DepartmentSingleSelectEditor/pc-editor}/index.css +10 -3
- package/lib/{Department-editor → DepartmentSingleSelectEditor/pc-editor}/index.js +8 -25
- package/lib/DigitalSignEditor/index.js +24 -171
- package/lib/DigitalSignEditor/mb-editor/index.css +35 -0
- package/lib/DigitalSignEditor/mb-editor/index.js +144 -0
- package/lib/DigitalSignEditor/pc-editor/index.js +181 -0
- package/lib/FileEditor/files-previewer/index.js +26 -268
- package/lib/FileEditor/files-previewer/mb-previewer/file-previewer/index.js +122 -0
- package/lib/FileEditor/files-previewer/mb-previewer/index.css +39 -0
- package/lib/FileEditor/files-previewer/mb-previewer/index.js +64 -0
- package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/dropdown-menu.js +1 -1
- package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/file-name-editor/index.js +1 -1
- package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/index.css +0 -2
- package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/index.js +2 -2
- package/lib/FileEditor/files-previewer/pc-previewer/index.js +276 -0
- package/lib/FileEditor/index.css +0 -5
- package/lib/FileEditor/index.js +26 -265
- package/lib/FileEditor/mb-editor/index.css +10 -0
- package/lib/FileEditor/mb-editor/index.js +136 -0
- package/lib/FileEditor/pc-editor/addition-previewer/index.css +1 -0
- package/lib/FileEditor/{addition-previewer → pc-editor/addition-previewer}/index.js +1 -1
- package/lib/FileEditor/pc-editor/addition-previewer/local-file-addition/index.css +1 -0
- package/lib/FileEditor/{addition-previewer → pc-editor/addition-previewer}/local-file-addition/index.js +4 -4
- package/lib/FileEditor/pc-editor/index.css +5 -0
- package/lib/FileEditor/pc-editor/index.js +274 -0
- package/lib/FormulaFormatter/index.css +5 -5
- package/lib/GeolocationEditor/index.js +92 -230
- package/lib/GeolocationEditor/map-editor-utils.js +10 -4
- package/lib/GeolocationEditor/mb-editor/country-editor.js +79 -0
- package/lib/GeolocationEditor/mb-editor/index.css +11 -0
- package/lib/GeolocationEditor/mb-editor/index.js +125 -0
- package/lib/GeolocationEditor/mb-editor/location-editor.js +101 -0
- package/lib/GeolocationEditor/mb-editor/map-editor/index.css +11 -0
- package/lib/GeolocationEditor/mb-editor/map-editor/index.js +474 -0
- package/lib/GeolocationEditor/mb-editor/map-selection-editor/index.css +158 -0
- package/lib/GeolocationEditor/mb-editor/map-selection-editor/index.js +530 -0
- package/lib/GeolocationEditor/mb-editor/province-city-editor.js +77 -0
- package/lib/GeolocationEditor/mb-editor/province-editor.js +76 -0
- package/lib/GeolocationEditor/{country-editor.js → pc-editor/country-editor.js} +5 -49
- package/lib/GeolocationEditor/{index.css → pc-editor/index.css} +3 -4
- package/lib/GeolocationEditor/pc-editor/index.js +247 -0
- package/lib/GeolocationEditor/{location-editor.js → pc-editor/location-editor.js} +8 -41
- package/lib/GeolocationEditor/{map-editor → pc-editor/map-editor}/index.js +6 -6
- package/lib/GeolocationEditor/{map-editor → pc-editor/map-editor}/large-editor/index.js +7 -7
- package/lib/GeolocationEditor/{map-selection-editor → pc-editor/map-selection-editor}/index.js +7 -7
- package/lib/GeolocationEditor/{map-selection-editor → pc-editor/map-selection-editor}/large-editor/index.js +7 -7
- package/lib/GeolocationEditor/{province-city-editor.js → pc-editor/province-city-editor.js} +7 -38
- package/lib/GeolocationEditor/{province-editor.js → pc-editor/province-editor.js} +7 -31
- package/lib/GeolocationEditor/{selector-header-item.js → pc-editor/selector-header-item.js} +1 -1
- package/lib/ImageEditor/images-previewer/image-preview/index.js +3 -3
- package/lib/ImageEditor/images-previewer/index.js +9 -4
- package/lib/ImageEditor/index.css +17 -16
- package/lib/ImageEditor/index.js +26 -185
- package/lib/ImageEditor/mb-editor/index.css +29 -0
- package/lib/ImageEditor/mb-editor/index.js +136 -0
- package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/image-link/index.js +1 -1
- package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/index.js +1 -1
- package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/local-image-addition/index.js +4 -4
- package/lib/ImageEditor/pc-editor/images-previewer/index.js +140 -0
- package/lib/ImageEditor/pc-editor/index.css +24 -0
- package/lib/ImageEditor/pc-editor/index.js +194 -0
- package/lib/ImageThumbnail/index.js +2 -1
- package/lib/LinkEditor/index.js +5 -5
- package/lib/LinkEditor/{mb-link-editor-popover → mb-popover}/index.css +1 -1
- package/lib/MobileFullScreenPage/body/index.css +9 -0
- package/lib/MobileFullScreenPage/body/index.js +23 -0
- package/lib/MobileFullScreenPage/header/index.css +39 -0
- package/lib/MobileFullScreenPage/header/index.js +38 -0
- package/lib/MobileFullScreenPage/index.css +13 -0
- package/lib/MobileFullScreenPage/index.js +73 -0
- package/lib/MobileModal/index.js +41 -0
- package/lib/MobileOperationSheet/index.css +27 -0
- package/lib/MobileOperationSheet/index.js +92 -0
- package/lib/MobileSelector/empty/index.css +3 -0
- package/lib/MobileSelector/empty/index.js +23 -0
- package/lib/MobileSelector/index.css +32 -0
- package/lib/MobileSelector/index.js +57 -0
- package/lib/MobileSelector/option/index.css +28 -0
- package/lib/MobileSelector/option/index.js +36 -0
- package/lib/MobileSelector/options/index.css +8 -0
- package/lib/MobileSelector/options/index.js +18 -0
- package/lib/MobileSelector/search/index.css +7 -0
- package/lib/MobileSelector/search/index.js +26 -0
- package/lib/MobileUpload/index.css +1 -0
- package/lib/MobileUpload/index.js +160 -0
- package/lib/MultipleSelectEditor/index.js +9 -14
- package/lib/RowExpand/index.js +24 -0
- package/lib/RowExpandDialog/column-content/index.js +2 -2
- package/lib/RowExpandDialog/index.js +2 -0
- package/lib/RowExpandEditor/add-btn/index.js +24 -0
- package/lib/RowExpandEditor/add-btn/mb-add-btn/index.css +3 -0
- package/lib/RowExpandEditor/add-btn/mb-add-btn/index.js +19 -0
- package/lib/RowExpandEditor/{RowExpandAddBtn → add-btn/pc-add-btn}/index.js +6 -4
- package/lib/RowExpandEditor/checkbox-editor/index.js +25 -0
- package/lib/RowExpandEditor/checkbox-editor/mb-editor/index.css +6 -0
- package/lib/RowExpandEditor/checkbox-editor/mb-editor/index.js +36 -0
- package/lib/RowExpandEditor/{RowExpandCheckboxEditor/index.js → checkbox-editor/pc-editor.js} +9 -13
- package/lib/RowExpandEditor/collaborator-editor/index.js +24 -0
- package/lib/RowExpandEditor/collaborator-editor/mb-editor/index.css +9 -0
- package/lib/RowExpandEditor/collaborator-editor/mb-editor/index.js +163 -0
- package/lib/RowExpandEditor/{RowExpandCollaboratorEditor → collaborator-editor/pc-editor}/index.css +1 -1
- package/lib/RowExpandEditor/{RowExpandCollaboratorEditor → collaborator-editor/pc-editor}/index.js +6 -7
- package/lib/RowExpandEditor/constants.js +34 -34
- package/lib/RowExpandEditor/date-editor/index.js +24 -0
- package/lib/RowExpandEditor/date-editor/mb-editor.js +82 -0
- package/lib/RowExpandEditor/{RowExpandDateEditor/index.js → date-editor/pc-editor.js} +2 -2
- package/lib/RowExpandEditor/department-editor/index.js +24 -0
- package/lib/RowExpandEditor/department-editor/mb-editor.js +65 -0
- package/lib/RowExpandEditor/{RowExpandDepartmentEditor/index.js → department-editor/pc-editor.js} +44 -49
- package/lib/RowExpandEditor/digital-sign-editor/index.js +24 -0
- package/lib/RowExpandEditor/digital-sign-editor/mb-editor/index.css +1 -0
- package/lib/RowExpandEditor/digital-sign-editor/mb-editor/index.js +130 -0
- package/lib/RowExpandEditor/{RowExpandDigitalSignEditor → digital-sign-editor/pc-editor}/index.css +1 -1
- package/lib/RowExpandEditor/{RowExpandDigitalSignEditor → digital-sign-editor/pc-editor}/index.js +11 -11
- package/lib/RowExpandEditor/duration-editor/index.js +24 -0
- package/lib/RowExpandEditor/duration-editor/mb-editor.js +71 -0
- package/lib/RowExpandEditor/{RowExpandDurationEditor/index.js → duration-editor/pc-editor.js} +2 -2
- package/lib/RowExpandEditor/email-editor/index.js +24 -0
- package/lib/RowExpandEditor/email-editor/mb-editor/index.css +1 -0
- package/lib/RowExpandEditor/email-editor/mb-editor/index.js +84 -0
- package/lib/RowExpandEditor/email-editor/pc-editor/index.css +1 -0
- package/lib/RowExpandEditor/{RowExpandEmailEditor → email-editor/pc-editor}/index.js +3 -3
- package/lib/RowExpandEditor/file-editor/index.js +24 -0
- package/lib/RowExpandEditor/file-editor/mb-editor/index.js +114 -0
- package/lib/RowExpandEditor/file-editor/pc-editor/index.css +1 -0
- package/lib/RowExpandEditor/{RowExpandFileEditor → file-editor/pc-editor}/index.js +9 -9
- package/lib/RowExpandEditor/geolocation-editor/index.js +24 -0
- package/lib/RowExpandEditor/geolocation-editor/mb-editor/index.js +100 -0
- package/lib/RowExpandEditor/{RowExpandGeolocationEditor → geolocation-editor/pc-editor}/index.js +17 -13
- package/lib/RowExpandEditor/image-editor/index.js +24 -0
- package/lib/RowExpandEditor/image-editor/mb-editor/index.css +30 -0
- package/lib/RowExpandEditor/image-editor/mb-editor/index.js +109 -0
- package/lib/RowExpandEditor/{RowExpandImageEditor → image-editor/pc-editor}/index.js +9 -9
- package/lib/RowExpandEditor/long-text-editor/index.js +24 -0
- package/lib/RowExpandEditor/long-text-editor/mb-editor/editor/index.css +10 -0
- package/lib/RowExpandEditor/long-text-editor/mb-editor/editor/index.js +80 -0
- package/lib/RowExpandEditor/long-text-editor/mb-editor/index.css +3 -0
- package/lib/RowExpandEditor/long-text-editor/mb-editor/index.js +91 -0
- package/lib/RowExpandEditor/{RowExpandLongTextEditor → long-text-editor/pc-editor}/index.js +7 -7
- package/lib/RowExpandEditor/multiple-select-editor/index.js +24 -0
- package/lib/RowExpandEditor/multiple-select-editor/mb-editor/index.js +154 -0
- package/lib/RowExpandEditor/{RowExpandMultipleSelectEditor → multiple-select-editor/pc-editor}/index.css +1 -1
- package/lib/RowExpandEditor/{RowExpandMultipleSelectEditor → multiple-select-editor/pc-editor}/index.js +6 -6
- package/lib/RowExpandEditor/number-editor/index.js +24 -0
- package/lib/RowExpandEditor/number-editor/mb-editor/index.css +3 -0
- package/lib/RowExpandEditor/number-editor/mb-editor/index.js +76 -0
- package/lib/RowExpandEditor/{RowExpandNumberEditor/index.js → number-editor/pc-editor.js} +2 -2
- package/lib/RowExpandEditor/rate-editor/index.css +34 -0
- package/lib/RowExpandEditor/rate-editor/index.js +25 -0
- package/lib/RowExpandEditor/rate-editor/mb-editor.js +92 -0
- package/lib/RowExpandEditor/{RowExpandRateEditor/index.js → rate-editor/pc-editor.js} +2 -3
- package/lib/RowExpandEditor/right-angle/index.css +6 -0
- package/lib/RowExpandEditor/right-angle/index.js +17 -0
- package/lib/RowExpandEditor/single-select-editor/index.js +24 -0
- package/lib/RowExpandEditor/single-select-editor/mb-editor/index.css +8 -0
- package/lib/RowExpandEditor/single-select-editor/mb-editor/index.js +134 -0
- package/lib/RowExpandEditor/{RowExpandSingleSelectorEditor → single-select-editor/pc-editor}/index.js +17 -17
- package/lib/RowExpandEditor/text-editor/index.js +24 -0
- package/lib/RowExpandEditor/text-editor/mb-editor/index.css +14 -0
- package/lib/RowExpandEditor/text-editor/mb-editor/index.js +37 -0
- package/lib/RowExpandEditor/{RowExpandTextEditor → text-editor/pc-editor}/index.js +7 -7
- package/lib/RowExpandEditor/url-editor/index.js +24 -0
- package/lib/RowExpandEditor/url-editor/mb-editor/index.css +17 -0
- package/lib/RowExpandEditor/url-editor/mb-editor/index.js +87 -0
- package/lib/RowExpandEditor/{RowExpandUrlEditor → url-editor/pc-editor}/index.js +6 -6
- package/lib/RowExpandFormatter/constants.js +17 -17
- package/lib/RowExpandFormatter/department-formatter/index.js +19 -0
- package/lib/RowExpandFormatter/department-formatter/mb-formatter.js +20 -0
- package/lib/RowExpandFormatter/{RowExpandDepartmentFormatter/index.js → department-formatter/pc-formatter.js} +2 -2
- package/lib/RowExpandFormatter/{RowExpandEmailFormatter → email-formatter}/index.css +4 -4
- package/lib/RowExpandFormatter/index.css +33 -18
- package/lib/RowExpandFormatter/index.js +1 -1
- package/lib/RowExpandFormatter/rate-formatter/index.css +5 -0
- package/lib/RowExpandView/body/index.css +173 -0
- package/lib/RowExpandView/body/index.js +111 -0
- package/lib/RowExpandView/column-content/index.css +27 -0
- package/lib/RowExpandView/column-content/index.js +25 -0
- package/lib/RowExpandView/index.css +3 -0
- package/lib/RowExpandView/index.js +178 -0
- package/lib/SelectItem/index.js +57 -33
- package/lib/{Department-editor/selected-departments → SelectedDepartments}/index.css +0 -1
- package/lib/{Department-editor/selected-departments → SelectedDepartments}/index.js +3 -3
- package/lib/SingleSelectEditor/index.js +9 -14
- package/lib/SvgIcon/index.js +2 -1
- package/lib/constants/index.js +3 -2
- package/lib/css/am.css +0 -25
- package/lib/css/mb-cell-editor.css +1 -1
- package/lib/index.js +62 -6
- package/lib/locales/de.json +3 -1
- package/lib/locales/en.json +3 -1
- package/lib/locales/es.json +3 -1
- package/lib/locales/fr.json +3 -1
- package/lib/locales/pt.json +3 -1
- package/lib/locales/ru.json +3 -1
- package/lib/locales/zh-CN.json +3 -1
- package/lib/select-editor/index.js +27 -20
- package/lib/select-editor/mb-editor/index.css +1 -0
- package/lib/select-editor/mb-editor/index.js +105 -0
- package/lib/select-editor/{pc-select-editor → pc-editor}/index.css +1 -1
- package/lib/select-editor/{pc-select-editor → pc-editor}/index.js +7 -7
- package/lib/utils/editor-utils.js +6 -2
- package/lib/utils/get-event-transfer.js +2 -1
- package/lib/utils/utils.js +11 -2
- package/package.json +5 -5
- package/lib/CollaboratorEditor/mb-collaborator-editor/index.css +0 -85
- package/lib/CollaboratorEditor/mb-collaborator-editor/index.js +0 -148
- package/lib/DateEditor/mb-date-editor-popover/custom-rc-calendar.css +0 -118
- package/lib/DateEditor/mb-date-editor-popover/index.css +0 -45
- package/lib/DateEditor/mb-date-editor-popover/index.js +0 -226
- package/lib/FileEditor/addition-previewer/index.css +0 -1
- package/lib/FileEditor/addition-previewer/local-file-addition/index.css +0 -1
- package/lib/RowExpandEditor/RowExpandEmailEditor/index.css +0 -2
- package/lib/RowExpandEditor/RowExpandFileEditor/index.css +0 -1
- package/lib/RowExpandEditor/RowExpandRateEditor/index.css +0 -13
- package/lib/RowExpandFormatter/RowExpandRateFormatter/index.css +0 -5
- package/lib/select-editor/mb-select-editor/index.css +0 -127
- package/lib/select-editor/mb-select-editor/index.js +0 -197
- package/lib/select-editor/select-editor-option.js +0 -84
- /package/lib/CollaboratorEditor/{pc-collaborator-editor → pc-editor}/index.css +0 -0
- /package/lib/CollaboratorEditor/{pc-collaborator-editor → pc-editor}/index.js +0 -0
- /package/lib/{Department-editor/department-multiple-select → DepartmentMultipleSelectEditor}/index.css +0 -0
- /package/lib/DigitalSignEditor/{index.css → pc-editor/index.css} +0 -0
- /package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/file-name-editor/index.css +0 -0
- /package/lib/GeolocationEditor/{map-editor → pc-editor/map-editor}/large-editor/index.css +0 -0
- /package/lib/GeolocationEditor/{map-selection-editor → pc-editor/map-selection-editor}/large-editor/index.css +0 -0
- /package/lib/GeolocationEditor/{parse-geolocation.js → pc-editor/parse-geolocation.js} +0 -0
- /package/lib/GeolocationEditor/{selector-list.js → pc-editor/selector-list.js} +0 -0
- /package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/image-link/index.css +0 -0
- /package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/index.css +0 -0
- /package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/local-image-addition/index.css +0 -0
- /package/lib/LinkEditor/{mb-link-editor-popover → mb-popover}/index.js +0 -0
- /package/lib/LinkEditor/{pc-link-editor-popover → pc-popover}/index.css +0 -0
- /package/lib/LinkEditor/{pc-link-editor-popover → pc-popover}/index.js +0 -0
- /package/lib/RowExpandEditor/{RowExpandAddBtn → add-btn/pc-add-btn}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandCheckboxEditor → checkbox-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandGeolocationEditor → geolocation-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandImageEditor → image-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandLongTextEditor → long-text-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandSingleSelectorEditor → single-select-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandTextEditor → text-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandUrlEditor → url-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandEmailFormatter → email-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandFileFormatter → file-formatter}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandFileFormatter → file-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandFileFormatter → file-formatter}/row-expand-file-item-formatter.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandFormulaFormatter → formula-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandImageFormatter → image-formatter}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandImageFormatter → image-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandImageFormatter → image-formatter}/row-expand-image-item-formatter.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandLinkFormatter → link-formatter}/collaborator-item-formatter.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandLinkFormatter → link-formatter}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandLinkFormatter → link-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandLinkFormatter → link-formatter}/value-display-utils.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandRateFormatter → rate-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandUrlFormatter → url-formatter}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandUrlFormatter → url-formatter}/index.js +0 -0
- /package/lib/{Department-editor/constants.js → constants/departments.js} +0 -0
- /package/lib/{Department-editor/utils.js → utils/departments.js} +0 -0
package/lib/SelectItem/index.js
CHANGED
|
@@ -1,41 +1,65 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
8
|
exports.default = void 0;
|
|
8
|
-
var _react =
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
9
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
11
|
+
const SelectItem = _ref => {
|
|
12
|
+
let {
|
|
13
|
+
option,
|
|
14
|
+
fontSize,
|
|
15
|
+
className,
|
|
16
|
+
isShowRemove,
|
|
17
|
+
onRemove
|
|
18
|
+
} = _ref;
|
|
19
|
+
const style = (0, _react.useMemo)(() => {
|
|
20
|
+
return {
|
|
21
|
+
display: 'flex',
|
|
22
|
+
alignItems: 'center',
|
|
23
|
+
padding: '0px 10px',
|
|
24
|
+
marginRight: 8,
|
|
25
|
+
height: 20,
|
|
26
|
+
lineHeight: '20px',
|
|
27
|
+
textAlign: 'center',
|
|
28
|
+
borderRadius: 10,
|
|
29
|
+
width: 'min-content',
|
|
30
|
+
maxWidth: 300,
|
|
31
|
+
margin: '5px 10px 5px 0',
|
|
32
|
+
fontSize: fontSize || 13,
|
|
33
|
+
backgroundColor: option.color,
|
|
34
|
+
color: option.textColor || null
|
|
26
35
|
};
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
|
|
36
|
+
}, [option, fontSize]);
|
|
37
|
+
const opBtnStyle = (0, _react.useMemo)(() => {
|
|
38
|
+
const textColor = option.textColor || null;
|
|
39
|
+
return {
|
|
40
|
+
cursor: 'pointer',
|
|
41
|
+
color: textColor === '#FFFFFF' ? '#FFFFFF' : '#909090',
|
|
42
|
+
marginLeft: 5
|
|
43
|
+
};
|
|
44
|
+
}, [option]);
|
|
45
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
46
|
+
className: (0, _classnames.default)('dtable-ui dtable-ui-select-item', className),
|
|
47
|
+
style: style
|
|
48
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
49
|
+
className: "dtable-ui-select-item-name text-truncate",
|
|
50
|
+
title: option.name
|
|
51
|
+
}, option.name), isShowRemove && /*#__PURE__*/_react.default.createElement("div", {
|
|
52
|
+
className: "dtable-ui-select-item-operation-btn",
|
|
53
|
+
style: opBtnStyle,
|
|
54
|
+
onClick: onRemove
|
|
55
|
+
}, /*#__PURE__*/_react.default.createElement("i", {
|
|
56
|
+
className: "dtable-font dtable-icon-fork-number",
|
|
57
|
+
style: {
|
|
58
|
+
fontSize: '12px',
|
|
59
|
+
transform: 'scale(0.8)',
|
|
60
|
+
display: 'inline-block',
|
|
61
|
+
lineHeight: '12px'
|
|
62
|
+
}
|
|
63
|
+
})));
|
|
64
|
+
};
|
|
65
|
+
var _default = exports.default = SelectItem;
|
|
@@ -7,8 +7,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.default = void 0;
|
|
8
8
|
var _react = _interopRequireWildcard(require("react"));
|
|
9
9
|
var _dtableUtils = require("dtable-utils");
|
|
10
|
-
var
|
|
11
|
-
var _lang = require("
|
|
10
|
+
var _departments = require("../constants/departments");
|
|
11
|
+
var _lang = require("../lang");
|
|
12
12
|
require("./index.css");
|
|
13
13
|
function SelectedDepartments(_ref) {
|
|
14
14
|
let {
|
|
@@ -26,7 +26,7 @@ function SelectedDepartments(_ref) {
|
|
|
26
26
|
}, [departments]);
|
|
27
27
|
const dom = Array.isArray(value) ? value.map((content, index) => {
|
|
28
28
|
if ([_dtableUtils.DEPARTMENT_SELECT_RANGE_MAP.CURRENT_USER_DEPARTMENT, _dtableUtils.DEPARTMENT_SELECT_RANGE_MAP.CURRENT_USER_DEPARTMENT_AND_SUB].includes(content)) {
|
|
29
|
-
const name = (0, _lang.getLocale)(
|
|
29
|
+
const name = (0, _lang.getLocale)(_departments.DEPARTMENT_SELECT_RANGE_OPTIONS.find(option => option.type === content).name);
|
|
30
30
|
return /*#__PURE__*/_react.default.createElement("div", {
|
|
31
31
|
key: "department-".concat(index),
|
|
32
32
|
className: "department mr-1"
|
|
@@ -1,27 +1,22 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
8
|
exports.default = void 0;
|
|
8
|
-
var _react =
|
|
9
|
-
var
|
|
10
|
-
|
|
11
|
-
const SingleSelectEditor = _ref => {
|
|
9
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
+
var _selectEditor = _interopRequireDefault(require("../select-editor"));
|
|
11
|
+
const SingleSelectEditor = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
12
12
|
let {
|
|
13
13
|
value: oldValue,
|
|
14
14
|
...props
|
|
15
15
|
} = _ref;
|
|
16
16
|
const value = oldValue ? [oldValue] : [];
|
|
17
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
query: "(max-width: 767.8px)"
|
|
23
|
-
}, /*#__PURE__*/_react.default.createElement(_selectEditor.MBSelectEditor, Object.assign({}, props, {
|
|
24
|
-
value: value
|
|
25
|
-
}))));
|
|
26
|
-
};
|
|
17
|
+
return /*#__PURE__*/_react.default.createElement(_selectEditor.default, Object.assign({}, props, {
|
|
18
|
+
value: value,
|
|
19
|
+
ref: ref
|
|
20
|
+
}));
|
|
21
|
+
});
|
|
27
22
|
var _default = exports.default = SingleSelectEditor;
|
package/lib/SvgIcon/index.js
CHANGED
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.default = void 0;
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _constants = require("../constants");
|
|
9
10
|
require("./index.css");
|
|
10
11
|
const needScaleIcons = ['check', 'dot', 'cross'];
|
|
11
12
|
const SvgIcon = props => {
|
|
@@ -15,7 +16,7 @@ const SvgIcon = props => {
|
|
|
15
16
|
color
|
|
16
17
|
} = props;
|
|
17
18
|
let iconClass = "dtable-ui-multicolor-icon multicolor-icon-".concat(symbol, " ").concat(className || '');
|
|
18
|
-
if (needScaleIcons.includes(symbol) &&
|
|
19
|
+
if (needScaleIcons.includes(symbol) && _constants.isMobile) {
|
|
19
20
|
iconClass += ' scale-icon';
|
|
20
21
|
}
|
|
21
22
|
return /*#__PURE__*/_react.default.createElement("svg", {
|
package/lib/constants/index.js
CHANGED
|
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.SIMPLE_CELL_FORMULA_RESULTS = exports.SIMPLE_CELL_COLUMNS = exports.ROW_EXPAND_FOCUS_STYLE = exports.ROW_EXPAND_BTN_FOCUS_STYLE = exports.NUMBER_TYPES = exports.LONG_TEXT_LENGTH_LIMIT = exports.LONG_TEXT_EXCEED_LIMIT_SUGGEST = exports.LONG_TEXT_EXCEED_LIMIT_MESSAGE = exports.KeyCodes = exports.FORMAT_REG_EXP_LIST = exports.FILE_EDITOR_STATUS = exports.EVENT_BUS_TYPE = exports.DELETED_OPTION_TIPS = exports.DELETED_OPTION_BACKGROUND_COLOR = exports.DEFAULT_CHECKBOX_MARK_STYLE = exports.DATE_TYPES = exports.ARRAY_FORMAT_COLUMNS = void 0;
|
|
7
|
+
exports.isMobile = exports.SIMPLE_CELL_FORMULA_RESULTS = exports.SIMPLE_CELL_COLUMNS = exports.ROW_EXPAND_FOCUS_STYLE = exports.ROW_EXPAND_BTN_FOCUS_STYLE = exports.NUMBER_TYPES = exports.LONG_TEXT_LENGTH_LIMIT = exports.LONG_TEXT_EXCEED_LIMIT_SUGGEST = exports.LONG_TEXT_EXCEED_LIMIT_MESSAGE = exports.KeyCodes = exports.FORMAT_REG_EXP_LIST = exports.FILE_EDITOR_STATUS = exports.EVENT_BUS_TYPE = exports.DELETED_OPTION_TIPS = exports.DELETED_OPTION_BACKGROUND_COLOR = exports.DEFAULT_CHECKBOX_MARK_STYLE = exports.DATE_TYPES = exports.ARRAY_FORMAT_COLUMNS = void 0;
|
|
8
8
|
var _dtableUtils = require("dtable-utils");
|
|
9
9
|
var _keyCodes = _interopRequireDefault(require("./key-codes"));
|
|
10
10
|
const NUMBER_TYPES = exports.NUMBER_TYPES = {
|
|
@@ -53,4 +53,5 @@ const LONG_TEXT_LENGTH_LIMIT = exports.LONG_TEXT_LENGTH_LIMIT = 10 * 10000;
|
|
|
53
53
|
const FILE_EDITOR_STATUS = exports.FILE_EDITOR_STATUS = {
|
|
54
54
|
PREVIEWER: 'previewer',
|
|
55
55
|
ADDITION: 'addition'
|
|
56
|
-
};
|
|
56
|
+
};
|
|
57
|
+
const isMobile = exports.isMobile = typeof window !== 'undefined' && (window.innerWidth < 768 || navigator.userAgent.toLowerCase().match(/(ipod|ipad|iphone|android|coolpad|mmp|smartphone|midp|wap|xoom|symbian|j2me|blackberry|wince)/i) != null);
|
package/lib/css/am.css
CHANGED
|
@@ -363,28 +363,3 @@
|
|
|
363
363
|
transform: translate(0, -100%);
|
|
364
364
|
}
|
|
365
365
|
}
|
|
366
|
-
|
|
367
|
-
*,
|
|
368
|
-
*:before,
|
|
369
|
-
*:after {
|
|
370
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
body {
|
|
374
|
-
background-color: #f5f5f9;
|
|
375
|
-
font-size: 14px;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
*[contenteditable] {
|
|
379
|
-
-webkit-user-select: auto !important;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
*:focus {
|
|
383
|
-
outline: none;
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
a {
|
|
387
|
-
background: transparent;
|
|
388
|
-
text-decoration: none;
|
|
389
|
-
outline: none;
|
|
390
|
-
}
|
package/lib/index.js
CHANGED
|
@@ -22,6 +22,12 @@ Object.defineProperty(exports, "AutoNumberFormatter", {
|
|
|
22
22
|
return _AutoNumberFormatter.default;
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
|
+
Object.defineProperty(exports, "BodyPortal", {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function () {
|
|
28
|
+
return _BodyPortal.default;
|
|
29
|
+
}
|
|
30
|
+
});
|
|
25
31
|
Object.defineProperty(exports, "ButtonFormatter", {
|
|
26
32
|
enumerable: true,
|
|
27
33
|
get: function () {
|
|
@@ -196,16 +202,16 @@ Object.defineProperty(exports, "DatePicker", {
|
|
|
196
202
|
return _DatePicker.default;
|
|
197
203
|
}
|
|
198
204
|
});
|
|
199
|
-
Object.defineProperty(exports, "
|
|
205
|
+
Object.defineProperty(exports, "DepartmentSelectFilter", {
|
|
200
206
|
enumerable: true,
|
|
201
207
|
get: function () {
|
|
202
|
-
return
|
|
208
|
+
return _DepartmentSelectFilter.default;
|
|
203
209
|
}
|
|
204
210
|
});
|
|
205
|
-
Object.defineProperty(exports, "
|
|
211
|
+
Object.defineProperty(exports, "DepartmentSingleSelectEditor", {
|
|
206
212
|
enumerable: true,
|
|
207
213
|
get: function () {
|
|
208
|
-
return
|
|
214
|
+
return _DepartmentSingleSelectEditor.default;
|
|
209
215
|
}
|
|
210
216
|
});
|
|
211
217
|
Object.defineProperty(exports, "DepartmentSingleSelectFormatter", {
|
|
@@ -376,6 +382,36 @@ Object.defineProperty(exports, "MTimeFormatter", {
|
|
|
376
382
|
return _MTimeFormatter.default;
|
|
377
383
|
}
|
|
378
384
|
});
|
|
385
|
+
Object.defineProperty(exports, "MobileFullScreenPage", {
|
|
386
|
+
enumerable: true,
|
|
387
|
+
get: function () {
|
|
388
|
+
return _MobileFullScreenPage.default;
|
|
389
|
+
}
|
|
390
|
+
});
|
|
391
|
+
Object.defineProperty(exports, "MobileModal", {
|
|
392
|
+
enumerable: true,
|
|
393
|
+
get: function () {
|
|
394
|
+
return _MobileModal.default;
|
|
395
|
+
}
|
|
396
|
+
});
|
|
397
|
+
Object.defineProperty(exports, "MobileOperationSheet", {
|
|
398
|
+
enumerable: true,
|
|
399
|
+
get: function () {
|
|
400
|
+
return _MobileOperationSheet.default;
|
|
401
|
+
}
|
|
402
|
+
});
|
|
403
|
+
Object.defineProperty(exports, "MobileSelector", {
|
|
404
|
+
enumerable: true,
|
|
405
|
+
get: function () {
|
|
406
|
+
return _MobileSelector.default;
|
|
407
|
+
}
|
|
408
|
+
});
|
|
409
|
+
Object.defineProperty(exports, "MobileUpload", {
|
|
410
|
+
enumerable: true,
|
|
411
|
+
get: function () {
|
|
412
|
+
return _MobileUpload.default;
|
|
413
|
+
}
|
|
414
|
+
});
|
|
379
415
|
Object.defineProperty(exports, "Modal", {
|
|
380
416
|
enumerable: true,
|
|
381
417
|
get: function () {
|
|
@@ -454,6 +490,12 @@ Object.defineProperty(exports, "RoleStatusEditor", {
|
|
|
454
490
|
return _RoleStatusEditor.default;
|
|
455
491
|
}
|
|
456
492
|
});
|
|
493
|
+
Object.defineProperty(exports, "RowExpand", {
|
|
494
|
+
enumerable: true,
|
|
495
|
+
get: function () {
|
|
496
|
+
return _RowExpand.default;
|
|
497
|
+
}
|
|
498
|
+
});
|
|
457
499
|
Object.defineProperty(exports, "RowExpandDialog", {
|
|
458
500
|
enumerable: true,
|
|
459
501
|
get: function () {
|
|
@@ -472,6 +514,12 @@ Object.defineProperty(exports, "RowExpandFormatter", {
|
|
|
472
514
|
return _RowExpandFormatter.default;
|
|
473
515
|
}
|
|
474
516
|
});
|
|
517
|
+
Object.defineProperty(exports, "RowExpandView", {
|
|
518
|
+
enumerable: true,
|
|
519
|
+
get: function () {
|
|
520
|
+
return _RowExpandView.default;
|
|
521
|
+
}
|
|
522
|
+
});
|
|
475
523
|
Object.defineProperty(exports, "SelectItem", {
|
|
476
524
|
enumerable: true,
|
|
477
525
|
get: function () {
|
|
@@ -597,11 +645,13 @@ var _DepartmentSingleSelectFormatter = _interopRequireDefault(require("./Departm
|
|
|
597
645
|
var _SimpleLongTextFormatter = _interopRequireDefault(require("./SimpleLongTextFormatter"));
|
|
598
646
|
var _RowExpandFormatter = _interopRequireDefault(require("./RowExpandFormatter"));
|
|
599
647
|
var _RowExpandEditor = _interopRequireDefault(require("./RowExpandEditor"));
|
|
648
|
+
var _RowExpand = _interopRequireDefault(require("./RowExpand"));
|
|
600
649
|
var _RowExpandDialog = _interopRequireDefault(require("./RowExpandDialog"));
|
|
650
|
+
var _RowExpandView = _interopRequireDefault(require("./RowExpandView"));
|
|
601
651
|
var _CheckboxEditor = _interopRequireDefault(require("./CheckboxEditor"));
|
|
602
652
|
var _CollaboratorEditor = _interopRequireDefault(require("./CollaboratorEditor"));
|
|
603
653
|
var _DateEditor = _interopRequireDefault(require("./DateEditor"));
|
|
604
|
-
var
|
|
654
|
+
var _DepartmentSingleSelectEditor = _interopRequireDefault(require("./DepartmentSingleSelectEditor"));
|
|
605
655
|
var _DigitalSignEditor = _interopRequireDefault(require("./DigitalSignEditor"));
|
|
606
656
|
var _DurationEditor = _interopRequireDefault(require("./DurationEditor"));
|
|
607
657
|
var _EmailEditor = _interopRequireDefault(require("./EmailEditor"));
|
|
@@ -654,4 +704,10 @@ var _Progress = _interopRequireDefault(require("./Progress"));
|
|
|
654
704
|
var _Radio = _interopRequireDefault(require("./Radio"));
|
|
655
705
|
var _TabBar = _interopRequireDefault(require("./TabBar"));
|
|
656
706
|
var _TextareaItem = _interopRequireDefault(require("./TextareaItem"));
|
|
657
|
-
var _Toast = _interopRequireDefault(require("./Toast"));
|
|
707
|
+
var _Toast = _interopRequireDefault(require("./Toast"));
|
|
708
|
+
var _BodyPortal = _interopRequireDefault(require("./BodyPortal"));
|
|
709
|
+
var _MobileModal = _interopRequireDefault(require("./MobileModal"));
|
|
710
|
+
var _MobileOperationSheet = _interopRequireDefault(require("./MobileOperationSheet"));
|
|
711
|
+
var _MobileUpload = _interopRequireDefault(require("./MobileUpload"));
|
|
712
|
+
var _MobileSelector = _interopRequireDefault(require("./MobileSelector"));
|
|
713
|
+
var _MobileFullScreenPage = _interopRequireDefault(require("./MobileFullScreenPage"));
|
package/lib/locales/de.json
CHANGED
|
@@ -163,5 +163,7 @@
|
|
|
163
163
|
"Mark_as_resolved": "Als erledigt markieren",
|
|
164
164
|
"No_comment_yet": "Es sind keine Kommentare vorhanden.",
|
|
165
165
|
"Add_comment": "Kommentar hinzufügen",
|
|
166
|
-
"Add_participants": "Teilnehmer hinzufügen"
|
|
166
|
+
"Add_participants": "Teilnehmer hinzufügen",
|
|
167
|
+
"Edit_long_text": "Langtext bearbeiten",
|
|
168
|
+
"Choose_a_department": "Bereich wählen"
|
|
167
169
|
}
|
package/lib/locales/en.json
CHANGED
|
@@ -163,5 +163,7 @@
|
|
|
163
163
|
"Mark_as_resolved": "Mark as resolved",
|
|
164
164
|
"No_comment_yet": "No comment yet",
|
|
165
165
|
"Add_comment": "Add comment",
|
|
166
|
-
"Add_participants": "Add participants"
|
|
166
|
+
"Add_participants": "Add participants",
|
|
167
|
+
"Edit_long_text": "Edit long text",
|
|
168
|
+
"Choose_a_department": "Choose a department"
|
|
167
169
|
}
|
package/lib/locales/es.json
CHANGED
|
@@ -163,5 +163,7 @@
|
|
|
163
163
|
"Mark_as_resolved": "Marcar como resuelto",
|
|
164
164
|
"No_comment_yet": "No comment yet",
|
|
165
165
|
"Add_comment": "Añadir comentario",
|
|
166
|
-
"Add_participants": "Añadir participantes"
|
|
166
|
+
"Add_participants": "Añadir participantes",
|
|
167
|
+
"Edit_long_text": "Edit long text",
|
|
168
|
+
"Choose_a_department": "Choose a department"
|
|
167
169
|
}
|
package/lib/locales/fr.json
CHANGED
|
@@ -163,5 +163,7 @@
|
|
|
163
163
|
"Mark_as_resolved": "Marquer comme résolu",
|
|
164
164
|
"No_comment_yet": "Aucun commentaire n'est disponible.",
|
|
165
165
|
"Add_comment": "Ajouter un commentaire",
|
|
166
|
-
"Add_participants": "Ajouter des participants"
|
|
166
|
+
"Add_participants": "Ajouter des participants",
|
|
167
|
+
"Edit_long_text": "Modifier le texte long",
|
|
168
|
+
"Choose_a_department": "Sélectionner un département"
|
|
167
169
|
}
|
package/lib/locales/pt.json
CHANGED
|
@@ -163,5 +163,7 @@
|
|
|
163
163
|
"Mark_as_resolved": "Marca conforme resolvido",
|
|
164
164
|
"No_comment_yet": "No comment yet",
|
|
165
165
|
"Add_comment": "Adicionar comentário",
|
|
166
|
-
"Add_participants": "Adicione participantes"
|
|
166
|
+
"Add_participants": "Adicione participantes",
|
|
167
|
+
"Edit_long_text": "Editar texto longo",
|
|
168
|
+
"Choose_a_department": "Choose a department"
|
|
167
169
|
}
|
package/lib/locales/ru.json
CHANGED
|
@@ -163,5 +163,7 @@
|
|
|
163
163
|
"Mark_as_resolved": "Пометить как разрешенный",
|
|
164
164
|
"No_comment_yet": "Пока без комментариев",
|
|
165
165
|
"Add_comment": "Добавить комментарий",
|
|
166
|
-
"Add_participants": "Добавить участников"
|
|
166
|
+
"Add_participants": "Добавить участников",
|
|
167
|
+
"Edit_long_text": "Редактировать длинный текст",
|
|
168
|
+
"Choose_a_department": "Выберите отдел"
|
|
167
169
|
}
|
package/lib/locales/zh-CN.json
CHANGED
|
@@ -1,27 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
exports.default = void 0;
|
|
9
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
+
var _reactResponsive = _interopRequireDefault(require("react-responsive"));
|
|
11
|
+
var _pcEditor = _interopRequireDefault(require("./pc-editor"));
|
|
12
|
+
var _mbEditor = _interopRequireDefault(require("./mb-editor"));
|
|
13
|
+
const SelectEditor = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
14
|
+
let {
|
|
15
|
+
isMobile,
|
|
16
|
+
...props
|
|
17
|
+
} = _ref;
|
|
18
|
+
if (isMobile === false) return /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
19
|
+
ref: ref
|
|
20
|
+
}));
|
|
21
|
+
if (isMobile === true) return /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
22
|
+
ref: ref
|
|
23
|
+
}));
|
|
24
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
25
|
+
query: "(min-width: 768px)"
|
|
26
|
+
}, /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
27
|
+
ref: ref
|
|
28
|
+
}))), /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
29
|
+
query: "(max-width: 768px)"
|
|
30
|
+
}, /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
31
|
+
ref: ref
|
|
32
|
+
}))));
|
|
12
33
|
});
|
|
13
|
-
|
|
14
|
-
enumerable: true,
|
|
15
|
-
get: function () {
|
|
16
|
-
return _pcSelectEditor.default;
|
|
17
|
-
}
|
|
18
|
-
});
|
|
19
|
-
Object.defineProperty(exports, "SelectEditorOption", {
|
|
20
|
-
enumerable: true,
|
|
21
|
-
get: function () {
|
|
22
|
-
return _selectEditorOption.default;
|
|
23
|
-
}
|
|
24
|
-
});
|
|
25
|
-
var _mbSelectEditor = _interopRequireDefault(require("./mb-select-editor"));
|
|
26
|
-
var _pcSelectEditor = _interopRequireDefault(require("./pc-select-editor"));
|
|
27
|
-
var _selectEditorOption = _interopRequireDefault(require("./select-editor-option"));
|
|
34
|
+
var _default = exports.default = SelectEditor;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import url('../../css/mb-cell-editor.css');
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _lang = require("../../lang");
|
|
10
|
+
var _SelectItem = _interopRequireDefault(require("../../SelectItem"));
|
|
11
|
+
var _MobileSelector = _interopRequireDefault(require("../../MobileSelector"));
|
|
12
|
+
var _DTableCommonAddTool = _interopRequireDefault(require("../../DTableCommonAddTool"));
|
|
13
|
+
require("./index.css");
|
|
14
|
+
const {
|
|
15
|
+
Search,
|
|
16
|
+
Option,
|
|
17
|
+
Options,
|
|
18
|
+
Empty
|
|
19
|
+
} = _MobileSelector.default;
|
|
20
|
+
class MBSelectEditor extends _react.default.Component {
|
|
21
|
+
constructor(props) {
|
|
22
|
+
super(props);
|
|
23
|
+
this.onChangeSearch = newValue => {
|
|
24
|
+
const {
|
|
25
|
+
searchVal
|
|
26
|
+
} = this.state;
|
|
27
|
+
if (searchVal === newValue) return;
|
|
28
|
+
this.setState({
|
|
29
|
+
searchVal: newValue
|
|
30
|
+
});
|
|
31
|
+
};
|
|
32
|
+
this.getDisplayOptions = () => {
|
|
33
|
+
const {
|
|
34
|
+
options
|
|
35
|
+
} = this.props;
|
|
36
|
+
const {
|
|
37
|
+
searchVal
|
|
38
|
+
} = this.state;
|
|
39
|
+
return searchVal ? options.filter(item => item.name.indexOf(searchVal) > -1) : options;
|
|
40
|
+
};
|
|
41
|
+
this.onChange = option => {
|
|
42
|
+
this.props.onCommit(option);
|
|
43
|
+
};
|
|
44
|
+
this.onAddNewOption = event => {
|
|
45
|
+
event.stopPropagation();
|
|
46
|
+
event.nativeEvent.stopImmediatePropagation();
|
|
47
|
+
const name = this.state.searchValue.trim();
|
|
48
|
+
if (name) {
|
|
49
|
+
this.props.onAddNewOption(name);
|
|
50
|
+
this.props.onClose && this.props.onClose();
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
this.renderOptions = options => {
|
|
54
|
+
const {
|
|
55
|
+
value = [],
|
|
56
|
+
valueKey
|
|
57
|
+
} = this.props;
|
|
58
|
+
return options.map(option => {
|
|
59
|
+
const isSelected = value.includes(option[valueKey]);
|
|
60
|
+
return /*#__PURE__*/_react.default.createElement(Option, {
|
|
61
|
+
key: option[valueKey],
|
|
62
|
+
isSelected: isSelected,
|
|
63
|
+
onChange: this.onChange.bind(this, option)
|
|
64
|
+
}, /*#__PURE__*/_react.default.createElement(_SelectItem.default, {
|
|
65
|
+
option: option
|
|
66
|
+
}));
|
|
67
|
+
});
|
|
68
|
+
};
|
|
69
|
+
this.state = {
|
|
70
|
+
searchVal: ''
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
render() {
|
|
74
|
+
const {
|
|
75
|
+
column,
|
|
76
|
+
isSupportNewOption,
|
|
77
|
+
options,
|
|
78
|
+
onAddNewOption
|
|
79
|
+
} = this.props;
|
|
80
|
+
const {
|
|
81
|
+
searchVal
|
|
82
|
+
} = this.state;
|
|
83
|
+
const displayOptions = this.getDisplayOptions();
|
|
84
|
+
const isShowCreateBtn = isSupportNewOption && onAddNewOption && !!searchVal && !options.find(item => item.name !== searchVal);
|
|
85
|
+
return /*#__PURE__*/_react.default.createElement(_MobileSelector.default, {
|
|
86
|
+
onClose: this.props.onClose,
|
|
87
|
+
title: column.name,
|
|
88
|
+
className: "dtable-ui-mobile-select-editor"
|
|
89
|
+
}, options.length > 10 && /*#__PURE__*/_react.default.createElement(Search, {
|
|
90
|
+
value: searchVal,
|
|
91
|
+
placeholder: (0, _lang.getLocale)('Search_option'),
|
|
92
|
+
onChange: this.onChangeSearch
|
|
93
|
+
}), /*#__PURE__*/_react.default.createElement(Options, null, displayOptions.length === 0 && /*#__PURE__*/_react.default.createElement(Empty, null, (0, _lang.getLocale)('No_options_available')), displayOptions.length > 0 && this.renderOptions(displayOptions), isShowCreateBtn && /*#__PURE__*/_react.default.createElement(_DTableCommonAddTool.default, {
|
|
94
|
+
footerName: (0, _lang.getLocale)('Add_option'),
|
|
95
|
+
callBack: this.onAddNewOption
|
|
96
|
+
})));
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
MBSelectEditor.defaultProps = {
|
|
100
|
+
isShowRemoveIcon: false,
|
|
101
|
+
isSupportNewOption: false,
|
|
102
|
+
value: [],
|
|
103
|
+
valueKey: 'id'
|
|
104
|
+
};
|
|
105
|
+
var _default = exports.default = MBSelectEditor;
|
|
@@ -45,7 +45,7 @@ class PCSelectEditor extends _react.default.Component {
|
|
|
45
45
|
option = this.filteredOptions[this.state.highlightIndex];
|
|
46
46
|
}
|
|
47
47
|
if (option) {
|
|
48
|
-
this.
|
|
48
|
+
this.onChange(option);
|
|
49
49
|
} else {
|
|
50
50
|
const {
|
|
51
51
|
searchValue
|
|
@@ -103,18 +103,18 @@ class PCSelectEditor extends _react.default.Component {
|
|
|
103
103
|
this.setState({
|
|
104
104
|
searchValue
|
|
105
105
|
});
|
|
106
|
-
|
|
106
|
+
const val = searchValue.toLowerCase();
|
|
107
107
|
this.filteredOptions = val ? options.filter(item => item.name && item.name.toLowerCase().indexOf(val) > -1) : options;
|
|
108
108
|
this.setState({
|
|
109
109
|
highlightIndex: this.filteredOptions.length > 0 ? 0 : -1
|
|
110
110
|
});
|
|
111
111
|
};
|
|
112
112
|
this.onAddNewOption = () => {
|
|
113
|
-
|
|
113
|
+
const name = this.state.searchValue.trim();
|
|
114
114
|
this.props.onAddNewOption(name);
|
|
115
115
|
};
|
|
116
|
-
this.
|
|
117
|
-
this.props.onCommit(
|
|
116
|
+
this.onChange = option => {
|
|
117
|
+
this.props.onCommit(option);
|
|
118
118
|
};
|
|
119
119
|
this.onMenuMouseEnter = index => {
|
|
120
120
|
this.setState({
|
|
@@ -231,7 +231,7 @@ class PCSelectEditor extends _react.default.Component {
|
|
|
231
231
|
onChange: this.onValueChanged,
|
|
232
232
|
autoFocus: true
|
|
233
233
|
})), /*#__PURE__*/_react.default.createElement("div", {
|
|
234
|
-
className: "select-options-container",
|
|
234
|
+
className: "select-dtable-ui-mobile-selector-options-container",
|
|
235
235
|
ref: ref => this.container = ref
|
|
236
236
|
}, this.filteredOptions.length > 0 && this.filteredOptions.map((option, index) => {
|
|
237
237
|
let optionStyle = this.getOptionStyle(option);
|
|
@@ -248,7 +248,7 @@ class PCSelectEditor extends _react.default.Component {
|
|
|
248
248
|
className: (0, _classnames.default)('select-option-item-container', {
|
|
249
249
|
'select-option-item-container-highlight': index === highlightIndex
|
|
250
250
|
}),
|
|
251
|
-
onMouseDown: this.
|
|
251
|
+
onMouseDown: this.onChange.bind(this, option),
|
|
252
252
|
onMouseEnter: this.onMenuMouseEnter.bind(this, index),
|
|
253
253
|
onMouseLeave: this.onMenuMouseLeave.bind(this, index)
|
|
254
254
|
}, /*#__PURE__*/_react.default.createElement("div", {
|