sea-chart 2.0.37 → 2.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/index.js +20 -69
- package/dist/assets/css/sea-chart-d3-tooltip.css +0 -1
- package/dist/components/cell-factory/FormatterConfig.js +55 -62
- package/dist/components/cell-factory/SimpleCellFormatter.js +5 -12
- package/dist/components/cell-factory/SingleSelectOption.js +11 -18
- package/dist/components/cell-factory/cell-editor-factory.js +5 -12
- package/dist/components/cell-factory/cell-formatter-factory.js +4 -11
- package/dist/components/cell-factory/link-content.js +30 -38
- package/dist/components/chart-color-selector/color-selector.js +11 -18
- package/dist/components/collaborator/index.js +7 -14
- package/dist/components/color-picker/index.js +12 -19
- package/dist/components/color-popover/color-rules/color-rule.js +26 -34
- package/dist/components/color-popover/color-rules/index.js +7 -15
- package/dist/components/color-popover/color-rules/rule-filters/filter.js +27 -34
- package/dist/components/color-popover/color-rules/rule-filters/index.js +17 -25
- package/dist/components/color-popover/color-rules/rule-filters/number-input.js +9 -17
- package/dist/components/color-popover/color-rules-popover.js +31 -37
- package/dist/components/color-popover/color-selector-popover.js +12 -20
- package/dist/components/color-setting/color-group-selector.js +13 -21
- package/dist/components/common-add-tool/index.js +8 -15
- package/dist/components/data-process-setter/data-setting-header.js +7 -14
- package/dist/components/data-process-setter/hide-column-setter.js +13 -20
- package/dist/components/data-process-setter/index.js +4 -27
- package/dist/components/data-process-setter/sort-setter.js +18 -26
- package/dist/components/draggable/Draggable.js +7 -13
- package/dist/components/drill-down-settings/drill-down-fields-popover/index.js +41 -48
- package/dist/components/drill-down-settings/drill-down-fields-settings/index.js +10 -18
- package/dist/components/drill-down-settings/index.js +11 -18
- package/dist/components/dtable-popover/index.js +13 -20
- package/dist/components/dtable-search-input/index.js +13 -21
- package/dist/components/font-settings/index.js +14 -22
- package/dist/components/goal-line-setting/goal-setting-item.js +6 -14
- package/dist/components/goal-line-setting/index.js +12 -19
- package/dist/components/highlighter/highlighter.js +7 -14
- package/dist/components/icon/index.js +12 -23
- package/dist/components/index.js +7 -48
- package/dist/components/loading/index.js +6 -13
- package/dist/components/number-input/index.js +11 -24
- package/dist/components/pixel-editor/index.js +15 -23
- package/dist/components/popover/hide-column-popover/hide-column-popover-widgets/hide-column-item.js +13 -16
- package/dist/components/popover/hide-column-popover/hide-column-popover.css +5 -1
- package/dist/components/popover/hide-column-popover/hide-column-popover.js +28 -38
- package/dist/components/popover/sort-popover/sort-popover-widgets/sort-utils.js +9 -18
- package/dist/components/popover/sort-popover/sort-popover.js +58 -69
- package/dist/components/resize-handle/ResizeHandle.js +6 -13
- package/dist/components/row-card/row-card-header-cell.js +17 -24
- package/dist/components/row-card/row-card-header.js +15 -22
- package/dist/components/row-card/row-card-item.js +35 -43
- package/dist/components/row-card/row-card.js +17 -25
- package/dist/components/statistic-record-dialog/index.js +61 -68
- package/dist/components/tooltip/index.js +39 -28
- package/dist/components/types-dialog/index.js +62 -70
- package/dist/components/types-dialog/use-force-update.js +4 -10
- package/dist/constants/color-rules.js +8 -14
- package/dist/constants/common-constants.js +8 -14
- package/dist/constants/error.js +2 -8
- package/dist/constants/geolocation.js +9 -15
- package/dist/constants/index.js +142 -271
- package/dist/constants/key-codes.js +0 -2
- package/dist/constants/model.js +3 -9
- package/dist/constants/regions.js +3 -8
- package/dist/constants/style.js +6 -12
- package/dist/constants/table.js +1 -7
- package/dist/constants/type-image.js +33 -39
- package/dist/constants/type.js +3 -9
- package/dist/context.js +13 -20
- package/dist/editor/index.js +13 -16
- package/dist/index.js +13 -104
- package/dist/intl.js +10 -17
- package/dist/locale/index.js +16 -23
- package/dist/locale/lang/de.js +2 -7
- package/dist/locale/lang/en.js +2 -7
- package/dist/locale/lang/es.js +2 -7
- package/dist/locale/lang/fr.js +2 -7
- package/dist/locale/lang/pt.js +2 -7
- package/dist/locale/lang/ru.js +2 -7
- package/dist/locale/lang/zh_CN.js +2 -7
- package/dist/model/area-group.js +12 -19
- package/dist/model/area.js +12 -19
- package/dist/model/bar-custom.js +11 -18
- package/dist/model/bar-group.js +12 -19
- package/dist/model/bar-stack.js +10 -17
- package/dist/model/bar.js +11 -18
- package/dist/model/base-model.js +4 -11
- package/dist/model/basic-number-card.js +13 -20
- package/dist/model/chart.js +7 -13
- package/dist/model/combination.js +15 -22
- package/dist/model/compare-bar.js +14 -21
- package/dist/model/completeness-group.js +11 -18
- package/dist/model/completeness.js +10 -17
- package/dist/model/dashboard.js +7 -14
- package/dist/model/funnel.js +14 -21
- package/dist/model/generic-model.js +135 -143
- package/dist/model/heat-map.js +9 -16
- package/dist/model/horizontal-bar.js +11 -18
- package/dist/model/horizontal-group-bar.js +10 -17
- package/dist/model/index.js +69 -93
- package/dist/model/line-group.js +13 -20
- package/dist/model/line.js +12 -19
- package/dist/model/map-bubble.js +14 -17
- package/dist/model/map.js +12 -19
- package/dist/model/mirror.js +13 -20
- package/dist/model/pie.js +12 -19
- package/dist/model/ring.js +12 -19
- package/dist/model/scatter.js +10 -17
- package/dist/model/stacked-horizontal-bar.js +11 -18
- package/dist/model/table-element.js +5 -12
- package/dist/model/table.js +7 -14
- package/dist/model/tree-map.js +7 -14
- package/dist/model/trend.js +11 -18
- package/dist/model/user.js +1 -7
- package/dist/model/world-map-bubble.js +12 -19
- package/dist/model/world-map.js +12 -19
- package/dist/services/map-json.js +14 -17
- package/dist/settings/advance-bar-settings/data-settings.js +36 -44
- package/dist/settings/advance-bar-settings/index.js +3 -20
- package/dist/settings/advance-bar-settings/style-settings.js +66 -73
- package/dist/settings/bar-settings/data-settings.js +39 -47
- package/dist/settings/bar-settings/index.js +3 -20
- package/dist/settings/bar-settings/style-settings.js +51 -59
- package/dist/settings/basic-number-card/data-settings.js +50 -57
- package/dist/settings/basic-number-card/index.js +3 -20
- package/dist/settings/basic-number-card/style-settings.js +19 -27
- package/dist/settings/combination-settings/data-settings.js +55 -64
- package/dist/settings/combination-settings/index.js +3 -20
- package/dist/settings/combination-settings/style-settings.js +67 -75
- package/dist/settings/completeness-settings/callbacks/callbacks.js +16 -27
- package/dist/settings/completeness-settings/data-settings/completion-settings.js +21 -28
- package/dist/settings/completeness-settings/data-settings/data-settings.js +25 -32
- package/dist/settings/completeness-settings/index.js +3 -20
- package/dist/settings/completeness-settings/style-settings.js +19 -26
- package/dist/settings/dashboard-settings/data-settings.js +44 -51
- package/dist/settings/dashboard-settings/index.js +2 -13
- package/dist/settings/data-settings.js +72 -79
- package/dist/settings/funnel-settings/components/dnd-item/dnd-item.js +12 -19
- package/dist/settings/funnel-settings/components/dnd-list.js +15 -23
- package/dist/settings/funnel-settings/components/funnel-label-setting.js +32 -40
- package/dist/settings/funnel-settings/components/funnel-layer-setting.js +22 -30
- package/dist/settings/funnel-settings/data-settings.js +23 -31
- package/dist/settings/funnel-settings/index.js +3 -20
- package/dist/settings/funnel-settings/style-settings.js +11 -19
- package/dist/settings/heat-map-settings/data-settings.js +18 -26
- package/dist/settings/heat-map-settings/index.js +3 -20
- package/dist/settings/heat-map-settings/style-settings.js +18 -26
- package/dist/settings/horizontal-bar-settings/data-settings.js +12 -19
- package/dist/settings/horizontal-bar-settings/index.js +3 -20
- package/dist/settings/horizontal-bar-settings/style-settings.js +12 -19
- package/dist/settings/index.js +57 -70
- package/dist/settings/map-settings/components/location-field-selector.js +10 -17
- package/dist/settings/map-settings/components/map-level-selector.js +11 -18
- package/dist/settings/map-settings/components/map-province-city-selector.js +19 -26
- package/dist/settings/map-settings/index.js +3 -20
- package/dist/settings/map-settings/map-data-settings.js +23 -30
- package/dist/settings/map-settings/map-style-settings.js +27 -35
- package/dist/settings/mirror-settings/data-settings.js +26 -34
- package/dist/settings/mirror-settings/index.js +2 -13
- package/dist/settings/pie-settings/data-settings.js +33 -41
- package/dist/settings/pie-settings/index.js +3 -20
- package/dist/settings/pie-settings/style-settings.js +47 -55
- package/dist/settings/scatter/data-settings.js +27 -34
- package/dist/settings/scatter/index.js +3 -12
- package/dist/settings/stacks-settings/index.js +19 -27
- package/dist/settings/stacks-settings/stack-item-settings.js +19 -27
- package/dist/settings/style-settings.js +65 -73
- package/dist/settings/table-element-settings/components/data-filter.js +49 -58
- package/dist/settings/table-element-settings/data-settings.js +21 -29
- package/dist/settings/table-element-settings/index.css +1 -31
- package/dist/settings/table-element-settings/index.js +2 -13
- package/dist/settings/table-settings/data-settings.js +113 -120
- package/dist/settings/table-settings/index.js +2 -13
- package/dist/settings/time-comparison-settings/data-settings.js +43 -51
- package/dist/settings/time-comparison-settings/index.js +3 -20
- package/dist/settings/time-comparison-settings/style-settings.js +44 -52
- package/dist/settings/trend-settings/data-settings.js +24 -32
- package/dist/settings/trend-settings/index.js +3 -20
- package/dist/settings/trend-settings/style-setting.js +19 -27
- package/dist/settings/widgets/basic-summary/index.js +59 -66
- package/dist/settings/widgets/chart-type/index.js +18 -26
- package/dist/settings/widgets/color-settings/index.js +72 -80
- package/dist/settings/widgets/common-data-settings.js +27 -34
- package/dist/settings/widgets/data-filter/index.js +59 -59
- package/dist/settings/widgets/data-sort.js +16 -24
- package/dist/settings/widgets/date-summary-item.js +26 -34
- package/dist/settings/widgets/display-values-settings/index.js +14 -22
- package/dist/settings/widgets/divider/index.js +8 -16
- package/dist/settings/widgets/font-settings/font-color-settings.js +11 -19
- package/dist/settings/widgets/font-settings/font-size-settings.js +14 -22
- package/dist/settings/widgets/font-settings/font-weight-settings.js +17 -25
- package/dist/settings/widgets/font-settings/index.js +4 -27
- package/dist/settings/widgets/group-by.js +52 -59
- package/dist/settings/widgets/min-max-setting.js +10 -18
- package/dist/settings/widgets/mininum-slice-percent.js +10 -18
- package/dist/settings/widgets/numeric-summary-item.js +25 -33
- package/dist/settings/widgets/select-line-type/index.js +10 -17
- package/dist/settings/widgets/select-table/index.js +9 -16
- package/dist/settings/widgets/select-view/index.js +20 -28
- package/dist/settings/widgets/stack.js +14 -22
- package/dist/settings/widgets/summary-method-setting.js +17 -25
- package/dist/settings/widgets/summary-settings.js +75 -82
- package/dist/settings/widgets/switch/index.js +9 -16
- package/dist/settings/widgets/text-horizontal-settings.js +15 -23
- package/dist/settings/widgets/time-picker.js +29 -37
- package/dist/settings/widgets/title-settings/index.js +29 -37
- package/dist/settings/widgets/title-settings/title-text.js +5 -12
- package/dist/settings/widgets/x-axios.js +0 -1
- package/dist/settings/widgets/y-axis-group-settings.js +65 -72
- package/dist/utils/cell-format-utils.js +25 -33
- package/dist/utils/cell-value-utils.js +4 -11
- package/dist/utils/chart-utils/base-utils.js +467 -367
- package/dist/utils/chart-utils/index.js +29 -40
- package/dist/utils/chart-utils/original-data-utils/basic-chart-calculator.js +78 -85
- package/dist/utils/chart-utils/original-data-utils/card-calculator.js +20 -21
- package/dist/utils/chart-utils/original-data-utils/combination-calculator.js +45 -52
- package/dist/utils/chart-utils/original-data-utils/compare-bar-chart-calculator.js +21 -28
- package/dist/utils/chart-utils/original-data-utils/completeness-calculator.js +33 -40
- package/dist/utils/chart-utils/original-data-utils/dashboard-calculator.js +28 -26
- package/dist/utils/chart-utils/original-data-utils/index.js +50 -57
- package/dist/utils/chart-utils/original-data-utils/mirror-calculator.js +19 -26
- package/dist/utils/chart-utils/original-data-utils/pivot-table-calculator.js +94 -97
- package/dist/utils/chart-utils/original-data-utils/scatter-calculator.js +19 -25
- package/dist/utils/chart-utils/original-data-utils/trend-calculator.js +50 -36
- package/dist/utils/chart-utils/sql-statistics-utils.js +385 -388
- package/dist/utils/chart.js +9 -17
- package/dist/utils/collaborator-manager.js +3 -9
- package/dist/utils/collaborator-utils.js +19 -31
- package/dist/utils/collaborator.js +6 -15
- package/dist/utils/color-utils.js +18 -29
- package/dist/utils/column-utils.js +88 -102
- package/dist/utils/common-utils.js +28 -53
- package/dist/utils/concurrency-manager.js +1 -7
- package/dist/utils/contexts.js +7 -11
- package/dist/utils/date-translate.js +12 -20
- package/dist/utils/digital-sign-utils.js +7 -14
- package/dist/utils/event-bus.js +1 -7
- package/dist/utils/hotkey.js +5 -11
- package/dist/utils/index.js +73 -219
- package/dist/utils/key-generator.js +2 -9
- package/dist/utils/map.js +22 -31
- package/dist/utils/object-utils.js +2 -8
- package/dist/utils/options-utils.js +10 -18
- package/dist/utils/row-record-utils.js +251 -183
- package/dist/utils/row-utils.js +27 -38
- package/dist/utils/search.js +24 -32
- package/dist/utils/sql/chart-data-sql.js +106 -112
- package/dist/utils/sql/column-2-sql-column.js +162 -172
- package/dist/utils/sql/index.js +3 -27
- package/dist/utils/trend-utils.js +50 -45
- package/dist/view/index.css +2 -8
- package/dist/view/index.js +102 -103
- package/dist/view/title/index.js +16 -24
- package/dist/view/wrapper/area-group.js +57 -57
- package/dist/view/wrapper/area.js +43 -51
- package/dist/view/wrapper/bar-compare.js +56 -48
- package/dist/view/wrapper/bar-custom-stack.js +73 -55
- package/dist/view/wrapper/bar-group.js +94 -73
- package/dist/view/wrapper/bar-stack.js +49 -57
- package/dist/view/wrapper/bar.js +40 -48
- package/dist/view/wrapper/basic-number-card.js +50 -34
- package/dist/view/wrapper/chart-component.js +164 -569
- package/dist/view/wrapper/combination.js +55 -63
- package/dist/view/wrapper/completeness-group.js +140 -93
- package/dist/view/wrapper/completeness.js +36 -44
- package/dist/view/wrapper/dashboard.js +104 -59
- package/dist/view/wrapper/funnel.js +40 -43
- package/dist/view/wrapper/heat-map.js +62 -70
- package/dist/view/wrapper/horizontal-bar-group.js +70 -58
- package/dist/view/wrapper/horizontal-bar-stack.js +48 -56
- package/dist/view/wrapper/horizontal-bar.js +41 -49
- package/dist/view/wrapper/index.js +107 -115
- package/dist/view/wrapper/line-group.js +49 -52
- package/dist/view/wrapper/line.js +42 -50
- package/dist/view/wrapper/map-bubble.js +40 -48
- package/dist/view/wrapper/map-world-bubble.js +40 -47
- package/dist/view/wrapper/map-world.js +42 -49
- package/dist/view/wrapper/map.js +42 -50
- package/dist/view/wrapper/mirror.js +41 -49
- package/dist/view/wrapper/pie.js +45 -53
- package/dist/view/wrapper/ring.js +50 -58
- package/dist/view/wrapper/scatter.js +50 -56
- package/dist/view/wrapper/table/index.js +14 -22
- package/dist/view/wrapper/table/one-dimension-table-no-numeric-columns.js +49 -57
- package/dist/view/wrapper/table/one-dimension-table-with-numeric-columns.js +53 -61
- package/dist/view/wrapper/table/pivot-table-display-name.js +82 -90
- package/dist/view/wrapper/table/two-dimension-table.js +85 -92
- package/dist/view/wrapper/table-element/components/dataset-utils.js +23 -36
- package/dist/view/wrapper/table-element/components/formatter.js +90 -99
- package/dist/view/wrapper/table-element/components/formatters/FileFormatter/index.js +23 -32
- package/dist/view/wrapper/table-element/components/formatters/formula-formatter.js +9 -16
- package/dist/view/wrapper/table-element/components/formatters/link-formatter.js +90 -97
- package/dist/view/wrapper/table-element/components/formula-formatter.js +9 -16
- package/dist/view/wrapper/table-element/components/link-formatter.js +90 -97
- package/dist/view/wrapper/table-element/components/record.js +13 -20
- package/dist/view/wrapper/table-element/components/records-body.js +9 -17
- package/dist/view/wrapper/table-element/components/records-header/index.js +7 -16
- package/dist/view/wrapper/table-element/components/records-header/records-header-cell.js +8 -16
- package/dist/view/wrapper/table-element/components/records.js +25 -33
- package/dist/view/wrapper/table-element/components/resize-column-handle/resize-column-handle.js +8 -13
- package/dist/view/wrapper/table-element/components/utils.js +6 -16
- package/dist/view/wrapper/table-element/components/value-display-utils.js +4 -11
- package/dist/view/wrapper/table-element/components/vertical-scrollbar/index.js +6 -13
- package/dist/view/wrapper/table-element/index.js +30 -43
- package/dist/view/wrapper/treemap.js +38 -46
- package/dist/view/wrapper/trend.js +80 -65
- package/package.json +15 -12
package/dist/constants/style.js
CHANGED
|
@@ -1,21 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.STYLE_COLORS = exports.HORIZONTAL_ALIGN_SHOW = exports.HORIZONTAL_ALIGNS = exports.HORIZONTAL_ALIGN = exports.FILL_BORDER_COLOR_MAP = exports.COLOR_OPTIONS = void 0;
|
|
7
|
-
const HORIZONTAL_ALIGN = exports.HORIZONTAL_ALIGN = {
|
|
1
|
+
export const HORIZONTAL_ALIGN = {
|
|
8
2
|
LEFT: 'left',
|
|
9
3
|
CENTER: 'center',
|
|
10
4
|
RIGHT: 'right'
|
|
11
5
|
};
|
|
12
|
-
const HORIZONTAL_ALIGNS =
|
|
13
|
-
const HORIZONTAL_ALIGN_SHOW =
|
|
6
|
+
export const HORIZONTAL_ALIGNS = [HORIZONTAL_ALIGN.LEFT, HORIZONTAL_ALIGN.CENTER, HORIZONTAL_ALIGN.RIGHT];
|
|
7
|
+
export const HORIZONTAL_ALIGN_SHOW = {
|
|
14
8
|
[HORIZONTAL_ALIGN.LEFT]: 'Left',
|
|
15
9
|
[HORIZONTAL_ALIGN.CENTER]: 'Center',
|
|
16
10
|
[HORIZONTAL_ALIGN.RIGHT]: 'Right'
|
|
17
11
|
};
|
|
18
|
-
const STYLE_COLORS =
|
|
12
|
+
export const STYLE_COLORS = [{
|
|
19
13
|
name: 'theme0',
|
|
20
14
|
colors: ['#5B8FF9', '#5AD8A6', '#5D7092', '#F6BD16', '#6F5EF9', '#6DC8EC', '#945FB9', '#FF9845', '#1E9493', '#FF99C3']
|
|
21
15
|
}, {
|
|
@@ -37,7 +31,7 @@ const STYLE_COLORS = exports.STYLE_COLORS = [{
|
|
|
37
31
|
name: 'theme6',
|
|
38
32
|
colors: ['#F76856', '#FFAF53', '#6CCDFF', '#C4C4CC', '#D48C82', '#E3C19A', '#A47CFF', '#FFD637', '#96DCFF', '#FFB6B6']
|
|
39
33
|
}];
|
|
40
|
-
const FILL_BORDER_COLOR_MAP =
|
|
34
|
+
export const FILL_BORDER_COLOR_MAP = {
|
|
41
35
|
'#EBEDFO': '#E1E3E6',
|
|
42
36
|
'#9AC5FF': '#8BBBFB',
|
|
43
37
|
'#5C90F9': '#5284EA',
|
|
@@ -95,7 +89,7 @@ const FILL_BORDER_COLOR_MAP = exports.FILL_BORDER_COLOR_MAP = {
|
|
|
95
89
|
'#6D2E02': '#542301',
|
|
96
90
|
'#EBEDF0': '#E1E3E6'
|
|
97
91
|
};
|
|
98
|
-
const COLOR_OPTIONS =
|
|
92
|
+
export const COLOR_OPTIONS = [{
|
|
99
93
|
name: 'blue',
|
|
100
94
|
exampleColors: ['#CAE9FF', '#9AC5FF', '#7DAAFF', '#5C90F9', '#3C77DD', '#075FBF', '#0047A5', '#053791', '#001E79'],
|
|
101
95
|
borderColor: '#5F7190',
|
package/dist/constants/table.js
CHANGED
|
@@ -1,40 +1,34 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
19
|
-
[
|
|
20
|
-
[
|
|
21
|
-
[
|
|
22
|
-
[
|
|
23
|
-
[
|
|
24
|
-
[
|
|
25
|
-
[
|
|
26
|
-
[
|
|
27
|
-
[
|
|
28
|
-
[
|
|
29
|
-
[
|
|
30
|
-
[
|
|
31
|
-
[
|
|
32
|
-
[
|
|
33
|
-
[
|
|
34
|
-
[_type.CHART_TYPE.TREND]: 'trend-chart.png',
|
|
35
|
-
[_type.CHART_TYPE.DASHBOARD]: 'dashboard-chart.png',
|
|
36
|
-
[_type.CHART_TYPE.TREE_MAP]: 'treemap.png',
|
|
37
|
-
[_type.CHART_TYPE.TABLE]: 'pivot-table.png',
|
|
38
|
-
[_type.CHART_TYPE.FUNNEL]: 'funnel.png',
|
|
39
|
-
[_type.CHART_TYPE.TABLE_ELEMENT]: 'table-element.png'
|
|
1
|
+
import { CHART_TYPE } from './type';
|
|
2
|
+
export const CHART_TYPE_IMAGE = {
|
|
3
|
+
[CHART_TYPE.BAR]: 'bar.png',
|
|
4
|
+
[CHART_TYPE.BAR_GROUP]: 'bar-group.png',
|
|
5
|
+
[CHART_TYPE.BAR_STACK]: 'bar-stack.png',
|
|
6
|
+
[CHART_TYPE.COMPARE_BAR]: 'compared-chart.png',
|
|
7
|
+
[CHART_TYPE.BAR_CUSTOM]: 'custom-bar.png',
|
|
8
|
+
[CHART_TYPE.HORIZONTAL_BAR]: 'horizontal-bar.png',
|
|
9
|
+
[CHART_TYPE.HORIZONTAL_GROUP_BAR]: 'horizontal-group-bar.png',
|
|
10
|
+
[CHART_TYPE.STACKED_HORIZONTAL_BAR]: 'stacked-horizontal-bar.png',
|
|
11
|
+
[CHART_TYPE.COMPLETENESS]: 'completeness-chart.png',
|
|
12
|
+
[CHART_TYPE.COMPLETENESS_GROUP]: 'group-completeness-chart.png',
|
|
13
|
+
[CHART_TYPE.LINE]: 'line.png',
|
|
14
|
+
[CHART_TYPE.LINE_GROUP]: 'group_line.png',
|
|
15
|
+
[CHART_TYPE.AREA]: 'area-chart.png',
|
|
16
|
+
[CHART_TYPE.AREA_GROUP]: 'area-group-chart.png',
|
|
17
|
+
[CHART_TYPE.PIE]: 'pie.png',
|
|
18
|
+
[CHART_TYPE.RING]: 'ring.png',
|
|
19
|
+
[CHART_TYPE.SCATTER]: 'scatter.png',
|
|
20
|
+
[CHART_TYPE.COMBINATION]: 'combination-chart.png',
|
|
21
|
+
[CHART_TYPE.MAP]: 'map.png',
|
|
22
|
+
[CHART_TYPE.MAP_BUBBLE]: 'map-bubble.png',
|
|
23
|
+
[CHART_TYPE.WORLD_MAP]: 'world-map.png',
|
|
24
|
+
[CHART_TYPE.WORLD_MAP_BUBBLE]: 'world-map-bubble.png',
|
|
25
|
+
[CHART_TYPE.HEAT_MAP]: 'heat-map.png',
|
|
26
|
+
[CHART_TYPE.MIRROR]: 'mirror.png',
|
|
27
|
+
[CHART_TYPE.BASIC_NUMBER_CARD]: 'number-card.png',
|
|
28
|
+
[CHART_TYPE.TREND]: 'trend-chart.png',
|
|
29
|
+
[CHART_TYPE.DASHBOARD]: 'dashboard-chart.png',
|
|
30
|
+
[CHART_TYPE.TREE_MAP]: 'treemap.png',
|
|
31
|
+
[CHART_TYPE.TABLE]: 'pivot-table.png',
|
|
32
|
+
[CHART_TYPE.FUNNEL]: 'funnel.png',
|
|
33
|
+
[CHART_TYPE.TABLE_ELEMENT]: 'table-element.png'
|
|
40
34
|
};
|
package/dist/constants/type.js
CHANGED
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.CHART_TYPE_SHOW = exports.CHART_TYPES = exports.CHART_TYPE = void 0;
|
|
7
|
-
const CHART_TYPE = exports.CHART_TYPE = {
|
|
1
|
+
export const CHART_TYPE = {
|
|
8
2
|
BAR: 'bar',
|
|
9
3
|
BAR_GROUP: 'bar_group',
|
|
10
4
|
BAR_STACK: 'bar_stack',
|
|
@@ -37,7 +31,7 @@ const CHART_TYPE = exports.CHART_TYPE = {
|
|
|
37
31
|
FUNNEL: 'funnel',
|
|
38
32
|
TABLE_ELEMENT: 'table_element'
|
|
39
33
|
};
|
|
40
|
-
const CHART_TYPE_SHOW =
|
|
34
|
+
export const CHART_TYPE_SHOW = {
|
|
41
35
|
[CHART_TYPE.BAR]: 'Basic_histogram',
|
|
42
36
|
[CHART_TYPE.BAR_GROUP]: 'Grouped_histogram',
|
|
43
37
|
[CHART_TYPE.BAR_STACK]: 'Stacked_histogram',
|
|
@@ -70,7 +64,7 @@ const CHART_TYPE_SHOW = exports.CHART_TYPE_SHOW = {
|
|
|
70
64
|
[CHART_TYPE.FUNNEL]: 'Funnel',
|
|
71
65
|
[CHART_TYPE.TABLE_ELEMENT]: 'Basic_table'
|
|
72
66
|
};
|
|
73
|
-
const CHART_TYPES =
|
|
67
|
+
export const CHART_TYPES = [{
|
|
74
68
|
name: 'Histogram',
|
|
75
69
|
icon: 'histogram',
|
|
76
70
|
children: [CHART_TYPE.BAR, CHART_TYPE.BAR_GROUP, CHART_TYPE.BAR_STACK, CHART_TYPE.COMPARE_BAR, CHART_TYPE.BAR_CUSTOM]
|
package/dist/context.js
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
var _dtableUtils = require("dtable-utils");
|
|
9
|
-
var _collaboratorManager = _interopRequireDefault(require("./utils/collaborator-manager"));
|
|
10
|
-
var _utils = require("./utils");
|
|
11
|
-
var _constants = require("./constants");
|
|
1
|
+
import { getTableById } from 'dtable-utils';
|
|
2
|
+
import CollaboratorManager from './utils/collaborator-manager';
|
|
3
|
+
import { ChartDataSQL } from './utils';
|
|
4
|
+
import { CHART_TYPE, CHART_TYPE_IMAGE, DEFAULT_MEDIAURL } from './constants';
|
|
12
5
|
class Context {
|
|
13
6
|
constructor() {
|
|
14
7
|
this.queryChartResult = _ref => {
|
|
@@ -30,7 +23,7 @@ class Context {
|
|
|
30
23
|
}
|
|
31
24
|
|
|
32
25
|
// use default api to get chart result data
|
|
33
|
-
const table =
|
|
26
|
+
const table = getTableById(tables, chart.config.table_id);
|
|
34
27
|
const {
|
|
35
28
|
view_id = '0000',
|
|
36
29
|
filter_conjunction = '',
|
|
@@ -43,7 +36,7 @@ class Context {
|
|
|
43
36
|
if (isCalculateByView) {
|
|
44
37
|
view = table.views.find(view => view._id === view_id);
|
|
45
38
|
}
|
|
46
|
-
const chartDataSQL = new
|
|
39
|
+
const chartDataSQL = new ChartDataSQL({
|
|
47
40
|
table,
|
|
48
41
|
view,
|
|
49
42
|
chart
|
|
@@ -57,7 +50,7 @@ class Context {
|
|
|
57
50
|
return;
|
|
58
51
|
}
|
|
59
52
|
const type = chart.config.type;
|
|
60
|
-
if (type ===
|
|
53
|
+
if (type === CHART_TYPE.BAR_CUSTOM) {
|
|
61
54
|
let allPromises = [];
|
|
62
55
|
Array.isArray(sql) && sql.forEach(item => {
|
|
63
56
|
if (item) {
|
|
@@ -101,7 +94,7 @@ class Context {
|
|
|
101
94
|
}).catch(error => {
|
|
102
95
|
var _error$response, _error$response$data;
|
|
103
96
|
// if geolocation format is wrong, still display the chart
|
|
104
|
-
if (type.includes('map') && error
|
|
97
|
+
if (type.includes('map') && (error === null || error === void 0 ? void 0 : (_error$response = error.response) === null || _error$response === void 0 ? void 0 : (_error$response$data = _error$response.data) === null || _error$response$data === void 0 ? void 0 : _error$response$data.error_message.includes('invalid geolocation format'))) {
|
|
105
98
|
var _error$response2, _error$response2$data;
|
|
106
99
|
console.error(error === null || error === void 0 ? void 0 : (_error$response2 = error.response) === null || _error$response2 === void 0 ? void 0 : (_error$response2$data = _error$response2.data) === null || _error$response2$data === void 0 ? void 0 : _error$response2$data.message);
|
|
107
100
|
onSuccess && onSuccess({
|
|
@@ -126,15 +119,15 @@ class Context {
|
|
|
126
119
|
return this.api.getTableFormulaResults(table, rows, value, view_id);
|
|
127
120
|
};
|
|
128
121
|
this.getChartImageUrl = type => {
|
|
129
|
-
const name =
|
|
122
|
+
const name = CHART_TYPE_IMAGE[type];
|
|
130
123
|
if (Reflect.ownKeys(this.settings).length !== 0) {
|
|
131
124
|
const {
|
|
132
125
|
server,
|
|
133
126
|
mediaUrl
|
|
134
127
|
} = this.settings;
|
|
135
|
-
return
|
|
128
|
+
return `${server}${mediaUrl}dtable-statistic/img/${name}?v=0.0.1`;
|
|
136
129
|
}
|
|
137
|
-
return
|
|
130
|
+
return `${DEFAULT_MEDIAURL}dtable-statistic/img/${name}?v=0.0.1`;
|
|
138
131
|
};
|
|
139
132
|
this.api = null;
|
|
140
133
|
this.settings = {};
|
|
@@ -163,7 +156,7 @@ class Context {
|
|
|
163
156
|
this.hasInit = true;
|
|
164
157
|
this.collaborators = collaborators || [];
|
|
165
158
|
this.departments = departments || [];
|
|
166
|
-
this.collaboratorManager = collaboratorManager ? collaboratorManager : new
|
|
159
|
+
this.collaboratorManager = collaboratorManager ? collaboratorManager : new CollaboratorManager(collaborators);
|
|
167
160
|
}
|
|
168
161
|
setSettings() {
|
|
169
162
|
let settings = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
@@ -189,4 +182,4 @@ class Context {
|
|
|
189
182
|
}
|
|
190
183
|
}
|
|
191
184
|
const context = new Context();
|
|
192
|
-
|
|
185
|
+
export default context;
|
package/dist/editor/index.js
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
require("./index.css");
|
|
13
|
-
function Editor(props) {
|
|
14
|
-
return /*#__PURE__*/_react.default.createElement("div", {
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import View, { propTypes } from '../view';
|
|
3
|
+
import Settings from '../settings';
|
|
4
|
+
import { settingsPropTypes } from '../settings';
|
|
5
|
+
import './index.css';
|
|
6
|
+
function Editor() {
|
|
7
|
+
let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {
|
|
8
|
+
...defaultProps,
|
|
9
|
+
...settingsDefaultProps
|
|
10
|
+
};
|
|
11
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
15
12
|
className: "sea-chart-editor"
|
|
16
|
-
}, /*#__PURE__*/
|
|
13
|
+
}, /*#__PURE__*/React.createElement(View, props), /*#__PURE__*/React.createElement(Settings, props, props.children));
|
|
17
14
|
}
|
|
18
|
-
|
|
15
|
+
export default Editor;
|
package/dist/index.js
CHANGED
|
@@ -1,104 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
Object.defineProperty(exports, "CHART_TYPES", {
|
|
15
|
-
enumerable: true,
|
|
16
|
-
get: function () {
|
|
17
|
-
return _type.CHART_TYPES;
|
|
18
|
-
}
|
|
19
|
-
});
|
|
20
|
-
Object.defineProperty(exports, "ChartDataSQL", {
|
|
21
|
-
enumerable: true,
|
|
22
|
-
get: function () {
|
|
23
|
-
return _utils.ChartDataSQL;
|
|
24
|
-
}
|
|
25
|
-
});
|
|
26
|
-
Object.defineProperty(exports, "ChartModel", {
|
|
27
|
-
enumerable: true,
|
|
28
|
-
get: function () {
|
|
29
|
-
return _model.ChartModel;
|
|
30
|
-
}
|
|
31
|
-
});
|
|
32
|
-
Object.defineProperty(exports, "Context", {
|
|
33
|
-
enumerable: true,
|
|
34
|
-
get: function () {
|
|
35
|
-
return _context.default;
|
|
36
|
-
}
|
|
37
|
-
});
|
|
38
|
-
Object.defineProperty(exports, "Divider", {
|
|
39
|
-
enumerable: true,
|
|
40
|
-
get: function () {
|
|
41
|
-
return _settings.Divider;
|
|
42
|
-
}
|
|
43
|
-
});
|
|
44
|
-
Object.defineProperty(exports, "EXTERNAL_EVENT", {
|
|
45
|
-
enumerable: true,
|
|
46
|
-
get: function () {
|
|
47
|
-
return _commonConstants.EXTERNAL_EVENT;
|
|
48
|
-
}
|
|
49
|
-
});
|
|
50
|
-
Object.defineProperty(exports, "Editor", {
|
|
51
|
-
enumerable: true,
|
|
52
|
-
get: function () {
|
|
53
|
-
return _editor.default;
|
|
54
|
-
}
|
|
55
|
-
});
|
|
56
|
-
Object.defineProperty(exports, "EventBus", {
|
|
57
|
-
enumerable: true,
|
|
58
|
-
get: function () {
|
|
59
|
-
return _eventBus.default;
|
|
60
|
-
}
|
|
61
|
-
});
|
|
62
|
-
Object.defineProperty(exports, "SeaChartAPI", {
|
|
63
|
-
enumerable: true,
|
|
64
|
-
get: function () {
|
|
65
|
-
return _api.default;
|
|
66
|
-
}
|
|
67
|
-
});
|
|
68
|
-
Object.defineProperty(exports, "Settings", {
|
|
69
|
-
enumerable: true,
|
|
70
|
-
get: function () {
|
|
71
|
-
return _settings.default;
|
|
72
|
-
}
|
|
73
|
-
});
|
|
74
|
-
Object.defineProperty(exports, "StyleSettings", {
|
|
75
|
-
enumerable: true,
|
|
76
|
-
get: function () {
|
|
77
|
-
return _settings.StyleSettings;
|
|
78
|
-
}
|
|
79
|
-
});
|
|
80
|
-
Object.defineProperty(exports, "TypesDialog", {
|
|
81
|
-
enumerable: true,
|
|
82
|
-
get: function () {
|
|
83
|
-
return _typesDialog.default;
|
|
84
|
-
}
|
|
85
|
-
});
|
|
86
|
-
Object.defineProperty(exports, "View", {
|
|
87
|
-
enumerable: true,
|
|
88
|
-
get: function () {
|
|
89
|
-
return _view.default;
|
|
90
|
-
}
|
|
91
|
-
});
|
|
92
|
-
exports.default = void 0;
|
|
93
|
-
var _api = _interopRequireDefault(require("./api"));
|
|
94
|
-
var _type = require("./constants/type");
|
|
95
|
-
var _model = require("./model");
|
|
96
|
-
var _view = _interopRequireDefault(require("./view"));
|
|
97
|
-
var _editor = _interopRequireDefault(require("./editor"));
|
|
98
|
-
var _settings = _interopRequireWildcard(require("./settings"));
|
|
99
|
-
var _typesDialog = _interopRequireDefault(require("./components/types-dialog"));
|
|
100
|
-
var _utils = require("./utils");
|
|
101
|
-
var _context = _interopRequireDefault(require("./context"));
|
|
102
|
-
var _eventBus = _interopRequireDefault(require("./utils/event-bus"));
|
|
103
|
-
var _commonConstants = require("./constants/common-constants");
|
|
104
|
-
var _default = exports.default = _view.default;
|
|
1
|
+
import SeaChartAPI from './api';
|
|
2
|
+
import { CHART_TYPE, CHART_TYPES } from './constants/type';
|
|
3
|
+
import { ChartModel } from './model';
|
|
4
|
+
import View from './view';
|
|
5
|
+
import Editor from './editor';
|
|
6
|
+
import Settings, { StyleSettings, Divider } from './settings';
|
|
7
|
+
import TypesDialog from './components/types-dialog';
|
|
8
|
+
import { ChartDataSQL } from './utils';
|
|
9
|
+
import Context from './context';
|
|
10
|
+
import EventBus from './utils/event-bus';
|
|
11
|
+
import { EXTERNAL_EVENT } from './constants/common-constants';
|
|
12
|
+
export default View;
|
|
13
|
+
export { SeaChartAPI, CHART_TYPE, CHART_TYPES, View, Editor, Settings, StyleSettings, Divider, Context, ChartModel, ChartDataSQL, EventBus, EXTERNAL_EVENT, TypesDialog };
|
package/dist/intl.js
CHANGED
|
@@ -1,26 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
var _lang2 = require("dtable-ui-component/lib/lang");
|
|
9
|
-
var _locale = _interopRequireDefault(require("./locale"));
|
|
10
|
-
var _constants = require("./constants");
|
|
1
|
+
import { setLocale } from 'dtable-ui-component/lib/lang';
|
|
2
|
+
import LOCALES from './locale';
|
|
3
|
+
import { DEFAULT_LANG } from './constants';
|
|
11
4
|
class Intl {
|
|
12
5
|
constructor(_ref) {
|
|
13
6
|
var _this = this;
|
|
14
7
|
let {
|
|
15
|
-
lang: _lang =
|
|
8
|
+
lang: _lang = DEFAULT_LANG
|
|
16
9
|
} = _ref;
|
|
17
10
|
this.setLang = function () {
|
|
18
|
-
let lang = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] :
|
|
11
|
+
let lang = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : DEFAULT_LANG;
|
|
19
12
|
const validLang = lang.toLowerCase();
|
|
20
|
-
|
|
13
|
+
setLocale(validLang);
|
|
21
14
|
if (validLang === _this.lang) return;
|
|
22
15
|
_this.lang = validLang;
|
|
23
|
-
_this.translation =
|
|
16
|
+
_this.translation = LOCALES[_this.lang];
|
|
24
17
|
};
|
|
25
18
|
this.get = function (key) {
|
|
26
19
|
let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
@@ -38,10 +31,10 @@ class Intl {
|
|
|
38
31
|
}) || key;
|
|
39
32
|
};
|
|
40
33
|
this.lang = _lang.toLowerCase();
|
|
41
|
-
this.translation =
|
|
34
|
+
this.translation = LOCALES[this.lang];
|
|
42
35
|
}
|
|
43
36
|
}
|
|
44
37
|
const intl = new Intl({
|
|
45
|
-
lang:
|
|
38
|
+
lang: DEFAULT_LANG
|
|
46
39
|
});
|
|
47
|
-
|
|
40
|
+
export default intl;
|
package/dist/locale/index.js
CHANGED
|
@@ -1,25 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
var _de = _interopRequireDefault(require("./lang/de"));
|
|
9
|
-
var _en = _interopRequireDefault(require("./lang/en"));
|
|
10
|
-
var _es = _interopRequireDefault(require("./lang/es"));
|
|
11
|
-
var _fr = _interopRequireDefault(require("./lang/fr"));
|
|
12
|
-
var _pt = _interopRequireDefault(require("./lang/pt"));
|
|
13
|
-
var _ru = _interopRequireDefault(require("./lang/ru"));
|
|
14
|
-
var _zh_CN = _interopRequireDefault(require("./lang/zh_CN"));
|
|
1
|
+
import de from './lang/de';
|
|
2
|
+
import en from './lang/en';
|
|
3
|
+
import es from './lang/es';
|
|
4
|
+
import fr from './lang/fr';
|
|
5
|
+
import pt from './lang/pt';
|
|
6
|
+
import ru from './lang/ru';
|
|
7
|
+
import zh_CN from './lang/zh_CN';
|
|
15
8
|
const LOCALES = {
|
|
16
|
-
'de':
|
|
17
|
-
'en':
|
|
18
|
-
'es':
|
|
19
|
-
'fr':
|
|
20
|
-
'pt':
|
|
21
|
-
'ru':
|
|
22
|
-
'zh-cn':
|
|
23
|
-
'zh_cn':
|
|
9
|
+
'de': de,
|
|
10
|
+
'en': en,
|
|
11
|
+
'es': es,
|
|
12
|
+
'fr': fr,
|
|
13
|
+
'pt': pt,
|
|
14
|
+
'ru': ru,
|
|
15
|
+
'zh-cn': zh_CN,
|
|
16
|
+
'zh_cn': zh_CN
|
|
24
17
|
};
|
|
25
|
-
|
|
18
|
+
export default LOCALES;
|
package/dist/locale/lang/de.js
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
1
|
/* eslint-disable */
|
|
8
2
|
const de = {
|
|
9
3
|
"Empty": "Leer",
|
|
@@ -153,6 +147,7 @@ const de = {
|
|
|
153
147
|
"Execution_time_of_the_query_exceeds_the_limit": "Le temps d'exécution de la requête dépasse la limite. Les données ne peuvent pas être chargées.",
|
|
154
148
|
"There_are_some_problems_with_the_filters": "Die Filterbedingungen sind abnormal. Bitte setzen sie die Filterbedingungen in den Ansichtseinstellungen zurück.",
|
|
155
149
|
"Please_complete_the_chart_configuration_first": "Configure chart in element settings",
|
|
150
|
+
"The_chart_settings_are_invalid_please_contact_the_administrator_for_relevant_configurations": "The chart settings are invalid. Please contact the administrator for relevant configurations",
|
|
156
151
|
"Not_used": "Nicht verwendet",
|
|
157
152
|
"Select_field": "Feld auswählen",
|
|
158
153
|
"Display_total": "Gesamtwert anzeigen",
|
|
@@ -301,4 +296,4 @@ const de = {
|
|
|
301
296
|
"All": "Alle",
|
|
302
297
|
"Label_value": "Etikettenwert"
|
|
303
298
|
};
|
|
304
|
-
|
|
299
|
+
export default de;
|
package/dist/locale/lang/en.js
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
1
|
/* eslint-disable */
|
|
8
2
|
const en = {
|
|
9
3
|
"Empty": "Empty",
|
|
@@ -153,6 +147,7 @@ const en = {
|
|
|
153
147
|
"Execution_time_of_the_query_exceeds_the_limit": "Execution time of the query exceeds the limit. Data cannot be loaded.",
|
|
154
148
|
"There_are_some_problems_with_the_filters": "There are some problems with the filters.",
|
|
155
149
|
"Please_complete_the_chart_configuration_first": "Configure chart in element settings",
|
|
150
|
+
"The_chart_settings_are_invalid_please_contact_the_administrator_for_relevant_configurations": "The chart settings are invalid. Please contact the administrator for relevant configurations",
|
|
156
151
|
"Not_used": "Not used",
|
|
157
152
|
"Select_field": "Select field",
|
|
158
153
|
"Display_total": "Display total",
|
|
@@ -304,4 +299,4 @@ const en = {
|
|
|
304
299
|
'Open_local_file_is_not_supported': 'Open local file is not supported',
|
|
305
300
|
'URL_is_invalid': 'URL is invalid'
|
|
306
301
|
};
|
|
307
|
-
|
|
302
|
+
export default en;
|
package/dist/locale/lang/es.js
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
1
|
/* eslint-disable */
|
|
8
2
|
const es = {
|
|
9
3
|
"Empty": "Empty",
|
|
@@ -153,6 +147,7 @@ const es = {
|
|
|
153
147
|
"Execution_time_of_the_query_exceeds_the_limit": "Execution time of the query exceeds the limit. Data cannot be loaded.",
|
|
154
148
|
"There_are_some_problems_with_the_filters": "There are some problems with the filters.",
|
|
155
149
|
"Please_complete_the_chart_configuration_first": "Configure chart in element settings",
|
|
150
|
+
"The_chart_settings_are_invalid_please_contact_the_administrator_for_relevant_configurations": "The chart settings are invalid. Please contact the administrator for relevant configurations",
|
|
156
151
|
"Not_used": "Not used",
|
|
157
152
|
"Select_field": "Select field",
|
|
158
153
|
"Display_total": "Display total",
|
|
@@ -301,4 +296,4 @@ const es = {
|
|
|
301
296
|
"All": "All",
|
|
302
297
|
"Label_value": "Label value"
|
|
303
298
|
};
|
|
304
|
-
|
|
299
|
+
export default es;
|
package/dist/locale/lang/fr.js
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
1
|
/* eslint-disable */
|
|
8
2
|
const fr = {
|
|
9
3
|
"Empty": "Vide",
|
|
@@ -153,6 +147,7 @@ const fr = {
|
|
|
153
147
|
"Execution_time_of_the_query_exceeds_the_limit": "Le temps d'exécution de la requête dépasse la limite. Les données ne peuvent pas être chargées.",
|
|
154
148
|
"There_are_some_problems_with_the_filters": "Les conditions de filtrage sont anormales. Veuillez réinitialiser les conditions de filtrage dans les paramètres de vue.",
|
|
155
149
|
"Please_complete_the_chart_configuration_first": "Configure chart in element settings",
|
|
150
|
+
"The_chart_settings_are_invalid_please_contact_the_administrator_for_relevant_configurations": "The chart settings are invalid. Please contact the administrator for relevant configurations",
|
|
156
151
|
"Not_used": "Ne pas utilisé",
|
|
157
152
|
"Select_field": "Sélectionner un champ",
|
|
158
153
|
"Display_total": "Afficher le total",
|
|
@@ -301,4 +296,4 @@ const fr = {
|
|
|
301
296
|
"All": "All",
|
|
302
297
|
"Label_value": "Label value"
|
|
303
298
|
};
|
|
304
|
-
|
|
299
|
+
export default fr;
|
package/dist/locale/lang/pt.js
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
1
|
/* eslint-disable */
|
|
8
2
|
const pt = {
|
|
9
3
|
"Empty": "Empty",
|
|
@@ -153,6 +147,7 @@ const pt = {
|
|
|
153
147
|
"Execution_time_of_the_query_exceeds_the_limit": "Execution time of the query exceeds the limit. Data cannot be loaded.",
|
|
154
148
|
"There_are_some_problems_with_the_filters": "There are some problems with the filters.",
|
|
155
149
|
"Please_complete_the_chart_configuration_first": "Configure chart in element settings",
|
|
150
|
+
"The_chart_settings_are_invalid_please_contact_the_administrator_for_relevant_configurations": "The chart settings are invalid. Please contact the administrator for relevant configurations",
|
|
156
151
|
"Not_used": "Not used",
|
|
157
152
|
"Select_field": "Select field",
|
|
158
153
|
"Display_total": "Display total",
|
|
@@ -301,4 +296,4 @@ const pt = {
|
|
|
301
296
|
"All": "All",
|
|
302
297
|
"Label_value": "Label value"
|
|
303
298
|
};
|
|
304
|
-
|
|
299
|
+
export default pt;
|
package/dist/locale/lang/ru.js
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
1
|
/* eslint-disable */
|
|
8
2
|
const ru = {
|
|
9
3
|
"Empty": "Empty",
|
|
@@ -153,6 +147,7 @@ const ru = {
|
|
|
153
147
|
"Execution_time_of_the_query_exceeds_the_limit": "Execution time of the query exceeds the limit. Data cannot be loaded.",
|
|
154
148
|
"There_are_some_problems_with_the_filters": "There are some problems with the filters.",
|
|
155
149
|
"Please_complete_the_chart_configuration_first": "Configure chart in element settings",
|
|
150
|
+
"The_chart_settings_are_invalid_please_contact_the_administrator_for_relevant_configurations": "The chart settings are invalid. Please contact the administrator for relevant configurations",
|
|
156
151
|
"Not_used": "Not used",
|
|
157
152
|
"Select_field": "Select field",
|
|
158
153
|
"Display_total": "Display total",
|
|
@@ -301,4 +296,4 @@ const ru = {
|
|
|
301
296
|
"All": "All",
|
|
302
297
|
"Label_value": "Label value"
|
|
303
298
|
};
|
|
304
|
-
|
|
299
|
+
export default ru;
|