@slickgrid-universal/vanilla-force-bundle 4.2.0 → 4.3.0
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/bundle/slickgrid-vanilla-bundle.js +45 -45
- package/dist/cjs/src/salesforce-global-grid-options.js +6 -1
- package/dist/cjs/src/salesforce-global-grid-options.js.map +1 -1
- package/dist/esm/salesforce-global-grid-options.js +6 -1
- package/dist/esm/salesforce-global-grid-options.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +24 -16
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/salesforce-global-grid-options.d.ts +1 -1
- package/dist/types/salesforce-global-grid-options.d.ts.map +1 -1
- package/package.json +13 -14
- package/src/salesforce-global-grid-options.ts +7 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -166,9 +166,11 @@ declare const Slicker: {
|
|
|
166
166
|
right: number;
|
|
167
167
|
};
|
|
168
168
|
createDomElement<T extends keyof HTMLElementTagNameMap, K extends keyof HTMLElementTagNameMap[T]>(tagName: T, elementOptions?: { [P in K]: import("@slickgrid-universal/common").InferDOMType<HTMLElementTagNameMap[T][P]>; } | null | undefined, appendToParent?: Element | undefined): HTMLElementTagNameMap[T];
|
|
169
|
+
classNameToList(className?: string | undefined): string[];
|
|
169
170
|
destroyAllElementProps(obj: any): void;
|
|
170
171
|
emptyElement<T_1 extends Element = Element>(element?: T_1 | null | undefined): T_1 | null | undefined;
|
|
171
|
-
getHTMLFromFragment(input: DocumentFragment, type?: "outerHTML" | "innerHTML" | undefined): string;
|
|
172
|
+
getHTMLFromFragment(input: string | number | DocumentFragment | HTMLElement, type?: "outerHTML" | "innerHTML" | undefined): string;
|
|
173
|
+
getHtmlStringOutput(input: string | number | DocumentFragment | HTMLElement, type?: "outerHTML" | "innerHTML" | undefined): string;
|
|
172
174
|
getOffsetRelativeToParent(parentElm: HTMLElement | null, childElm: HTMLElement | null): {
|
|
173
175
|
top: number;
|
|
174
176
|
right: number;
|
|
@@ -196,8 +198,14 @@ declare const Slicker: {
|
|
|
196
198
|
deepCopy(objectOrArray: any): any;
|
|
197
199
|
deepMerge(target: any, ...sources: any[]): any;
|
|
198
200
|
emptyObject(obj: any): any;
|
|
201
|
+
getFunctionDetails(fn: import("@slickgrid-universal/common").AnyFunction, addReturn?: boolean | undefined): {
|
|
202
|
+
params: string[];
|
|
203
|
+
body: string;
|
|
204
|
+
isAsync: boolean;
|
|
205
|
+
};
|
|
199
206
|
isEmptyObject(obj: any): boolean;
|
|
200
207
|
isDefined<T_5>(value: T_5 | null | undefined): value is T_5;
|
|
208
|
+
isDefinedNumber<T_6>(value: T_6 | null | undefined): value is T_6;
|
|
201
209
|
isObject(item: any): boolean;
|
|
202
210
|
isPrimitiveValue(val: any): boolean;
|
|
203
211
|
isPrimitiveOrHTML(val: any): boolean;
|
|
@@ -206,27 +214,27 @@ declare const Slicker: {
|
|
|
206
214
|
isObjectEmpty(obj: unknown): boolean;
|
|
207
215
|
parseBoolean(input: any): boolean;
|
|
208
216
|
removeAccentFromText(text: string, shouldLowerCase?: boolean | undefined): string;
|
|
209
|
-
setDeepValue<
|
|
217
|
+
setDeepValue<T_7 = unknown>(obj: T_7, path: string | string[], value: any): void;
|
|
210
218
|
titleCase(inputStr: string, shouldTitleCaseEveryWords?: boolean | undefined): string;
|
|
211
219
|
toCamelCase(inputStr: string): string;
|
|
212
220
|
toKebabCase(inputStr: string): string;
|
|
213
221
|
toSentenceCase(inputStr: string): string;
|
|
214
222
|
toSnakeCase(inputStr: string): string;
|
|
215
|
-
uniqueArray<
|
|
223
|
+
uniqueArray<T_8 = any>(arr: T_8[]): T_8[];
|
|
216
224
|
uniqueObjectArray(arr: any[], propertyName?: string | undefined): any[];
|
|
217
225
|
sortByFieldType(fieldType: "string" | "number" | "boolean" | "object" | "unknown" | "integer" | "float" | "date" | "dateIso" | "dateUtc" | "dateTime" | "dateTimeIso" | "dateTimeIsoAmPm" | "dateTimeIsoAM_PM" | "dateTimeShortIso" | "dateEuro" | "dateEuroShort" | "dateTimeShortEuro" | "dateTimeEuro" | "dateTimeEuroAmPm" | "dateTimeEuroAM_PM" | "dateTimeEuroShort" | "dateTimeEuroShortAmPm" | "dateTimeEuroShortAM_PM" | "dateUs" | "dateUsShort" | "dateTimeShortUs" | "dateTimeUs" | "dateTimeUsAmPm" | "dateTimeUsAM_PM" | "dateTimeUsShort" | "dateTimeUsShortAmPm" | "dateTimeUsShortAM_PM" | "password" | "text" | "readonly", value1: any, value2: any, sortDirection: number, sortColumn?: import("@slickgrid-universal/common").Column<any> | undefined, gridOptions?: import("@slickgrid-universal/common").GridOption<import("@slickgrid-universal/common").Column<any>> | undefined): number;
|
|
218
|
-
cancellablePromise<
|
|
219
|
-
castObservableToPromise<
|
|
220
|
-
addTreeLevelByMutation<
|
|
226
|
+
cancellablePromise<T_9 = any>(inputPromise: Promise<T_9>): import("@slickgrid-universal/common").CancellablePromiseWrapper<T_9>;
|
|
227
|
+
castObservableToPromise<T_10>(rxjs: import("@slickgrid-universal/common").RxJsFacade, input: Promise<T_10> | import("@slickgrid-universal/common").Observable<T_10> | import("@slickgrid-universal/common").Subject<T_10>, fromServiceName?: string | undefined): Promise<T_10>;
|
|
228
|
+
addTreeLevelByMutation<T_11>(treeArray: T_11[], options: {
|
|
221
229
|
childrenPropName: string;
|
|
222
230
|
levelPropName: string;
|
|
223
231
|
}, treeLevel?: number | undefined): void;
|
|
224
|
-
addTreeLevelAndAggregatorsByMutation<
|
|
232
|
+
addTreeLevelAndAggregatorsByMutation<T_12 = any>(treeArray: T_12[], options: {
|
|
225
233
|
aggregator: import("@slickgrid-universal/common").Aggregator;
|
|
226
234
|
childrenPropName: string;
|
|
227
235
|
levelPropName: string;
|
|
228
|
-
}, treeLevel?: number | undefined, parent?:
|
|
229
|
-
flattenToParentChildArray<
|
|
236
|
+
}, treeLevel?: number | undefined, parent?: T_12 | undefined): void;
|
|
237
|
+
flattenToParentChildArray<T_13>(treeArray: T_13[], options?: {
|
|
230
238
|
aggregators?: import("@slickgrid-universal/common").Aggregator[] | undefined;
|
|
231
239
|
parentPropName?: string | undefined;
|
|
232
240
|
childrenPropName?: string | undefined;
|
|
@@ -234,8 +242,8 @@ declare const Slicker: {
|
|
|
234
242
|
identifierPropName?: string | undefined;
|
|
235
243
|
shouldAddTreeLevelNumber?: boolean | undefined;
|
|
236
244
|
levelPropName?: string | undefined;
|
|
237
|
-
} | undefined): Omit<
|
|
238
|
-
unflattenParentChildArrayToTree<P_1,
|
|
245
|
+
} | undefined): Omit<T_13, number | "link" | "search" | "small" | "sub" | "sup" | typeof Symbol.iterator | "normalize" | "charAt" | "charCodeAt" | "concat" | "indexOf" | "lastIndexOf" | "localeCompare" | "match" | "replace" | "slice" | "split" | "substring" | "toLowerCase" | "toLocaleLowerCase" | "toUpperCase" | "toLocaleUpperCase" | "trim" | "length" | "substr" | "codePointAt" | "includes" | "endsWith" | "repeat" | "startsWith" | "anchor" | "big" | "blink" | "bold" | "fixed" | "fontcolor" | "fontsize" | "italics" | "strike" | "padStart" | "padEnd" | "trimEnd" | "trimStart" | "trimLeft" | "trimRight" | "matchAll" | "replaceAll" | "at" | "toString" | "valueOf" | "toLocaleString">[];
|
|
246
|
+
unflattenParentChildArrayToTree<P_1, T_14 extends P_1 & {
|
|
239
247
|
[childrenPropName: string]: P_1[];
|
|
240
248
|
}>(flatArray: P_1[], options?: {
|
|
241
249
|
aggregators?: import("@slickgrid-universal/common").Aggregator[] | undefined;
|
|
@@ -245,12 +253,12 @@ declare const Slicker: {
|
|
|
245
253
|
levelPropName?: string | undefined;
|
|
246
254
|
parentPropName?: string | undefined;
|
|
247
255
|
initiallyCollapsed?: boolean | undefined;
|
|
248
|
-
} | undefined):
|
|
249
|
-
findItemInTreeStructure<
|
|
256
|
+
} | undefined): T_14[];
|
|
257
|
+
findItemInTreeStructure<T_15 = any>(treeArray: T_15[], predicate: (item: T_15) => boolean, childrenPropertyName: string): T_15 | undefined;
|
|
250
258
|
decimalFormatted(input: string | number, minDecimal?: number | undefined, maxDecimal?: number | undefined, decimalSeparator?: "," | "." | undefined, thousandSeparator?: "" | "," | "_" | "." | " " | undefined): string;
|
|
251
259
|
formatNumber(input: string | number, minDecimal?: number | undefined, maxDecimal?: number | undefined, wrapNegativeNumberInBraquets?: boolean | undefined, symbolPrefix?: string | undefined, symbolSuffix?: string | undefined, decimalSeparator?: "," | "." | undefined, thousandSeparator?: "" | "," | "_" | "." | " " | undefined): string;
|
|
252
260
|
getCellValueFromQueryFieldGetter(columnDef: import("@slickgrid-universal/common").Column<any>, dataContext: any, defaultValue: any): string;
|
|
253
|
-
getDescendantProperty<
|
|
261
|
+
getDescendantProperty<T_16 = any>(object: T_16, path: string | undefined): any;
|
|
254
262
|
getTranslationPrefix(gridOptions?: import("@slickgrid-universal/common").GridOption<import("@slickgrid-universal/common").Column<any>> | undefined): string;
|
|
255
263
|
getColumnFieldType(columnDef: import("@slickgrid-universal/common").Column<any>): "string" | "number" | "boolean" | "object" | "unknown" | "integer" | "float" | "date" | "dateIso" | "dateUtc" | "dateTime" | "dateTimeIso" | "dateTimeIsoAmPm" | "dateTimeIsoAM_PM" | "dateTimeShortIso" | "dateEuro" | "dateEuroShort" | "dateTimeShortEuro" | "dateTimeEuro" | "dateTimeEuroAmPm" | "dateTimeEuroAM_PM" | "dateTimeEuroShort" | "dateTimeEuroShortAmPm" | "dateTimeEuroShortAM_PM" | "dateUs" | "dateUsShort" | "dateTimeShortUs" | "dateTimeUs" | "dateTimeUsAmPm" | "dateTimeUsAM_PM" | "dateTimeUsShort" | "dateTimeUsShortAmPm" | "dateTimeUsShortAM_PM" | "password" | "text" | "readonly";
|
|
256
264
|
isColumnDateType(fieldType: "string" | "number" | "boolean" | "object" | "unknown" | "integer" | "float" | "date" | "dateIso" | "dateUtc" | "dateTime" | "dateTimeIso" | "dateTimeIsoAmPm" | "dateTimeIsoAM_PM" | "dateTimeShortIso" | "dateEuro" | "dateEuroShort" | "dateTimeShortEuro" | "dateTimeEuro" | "dateTimeEuroAmPm" | "dateTimeEuroAM_PM" | "dateTimeEuroShort" | "dateTimeEuroShortAmPm" | "dateTimeEuroShortAM_PM" | "dateUs" | "dateUsShort" | "dateTimeShortUs" | "dateTimeUs" | "dateTimeUsAmPm" | "dateTimeUsAM_PM" | "dateTimeUsShort" | "dateTimeUsShortAmPm" | "dateTimeUsShortAM_PM" | "password" | "text" | "readonly"): boolean;
|
|
@@ -259,10 +267,10 @@ declare const Slicker: {
|
|
|
259
267
|
mapOperatorType(operator: Enums.OperatorString | Enums.OperatorType): Enums.OperatorType;
|
|
260
268
|
mapOperatorToShorthandDesignation(operator: Enums.OperatorString | Enums.OperatorType): Enums.OperatorString;
|
|
261
269
|
mapOperatorByFieldType(fieldType: "string" | "number" | "boolean" | "object" | "unknown" | "integer" | "float" | "date" | "dateIso" | "dateUtc" | "dateTime" | "dateTimeIso" | "dateTimeIsoAmPm" | "dateTimeIsoAM_PM" | "dateTimeShortIso" | "dateEuro" | "dateEuroShort" | "dateTimeShortEuro" | "dateTimeEuro" | "dateTimeEuroAmPm" | "dateTimeEuroAM_PM" | "dateTimeEuroShort" | "dateTimeEuroShortAmPm" | "dateTimeEuroShortAM_PM" | "dateUs" | "dateUsShort" | "dateTimeShortUs" | "dateTimeUs" | "dateTimeUsAmPm" | "dateTimeUsAM_PM" | "dateTimeUsShort" | "dateTimeUsShortAmPm" | "dateTimeUsShortAM_PM" | "password" | "text" | "readonly"): Enums.OperatorType;
|
|
262
|
-
objectWithoutKey<
|
|
270
|
+
objectWithoutKey<T_17 = any>(obj: T_17, omitKey: keyof T_17): T_17;
|
|
263
271
|
parseUtcDate(inputDateString: any, useUtc?: boolean | undefined): string;
|
|
264
272
|
thousandSeparatorFormatted(inputValue: string | number | null, separator?: "" | "," | "_" | "." | " " | undefined): string | null;
|
|
265
|
-
findOrDefault<
|
|
273
|
+
findOrDefault<T_18 = any>(array: T_18[], logic: (item: T_18) => boolean, defaultVal?: {} | undefined): any;
|
|
266
274
|
unsubscribeAll(subscriptions: (import("@slickgrid-universal/common").Subscription | import("@slickgrid-universal/common").EventSubscription)[]): (import("@slickgrid-universal/common").Subscription | import("@slickgrid-universal/common").EventSubscription)[];
|
|
267
275
|
CancelledException: typeof import("@slickgrid-universal/common").CancelledException;
|
|
268
276
|
collectionObserver(inputArray: any[], callback: (outputArray: any[], newValues: any[]) => void): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,oBAAoB,EAAyB,aAAa,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACtK,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,6BAA6B,EAAE,MAAM,iDAAiD,CAAC;AAChG,OAAO,EAAE,0BAA0B,EAAE,MAAM,8CAA8C,CAAC;AAC1F,OAAO,EAAE,wBAAwB,EAAE,MAAM,2CAA2C,CAAC;AACrF,OAAO,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAEhE,QAAA,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,oBAAoB,EAAyB,aAAa,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACtK,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,6BAA6B,EAAE,MAAM,iDAAiD,CAAC;AAChG,OAAO,EAAE,0BAA0B,EAAE,MAAM,8CAA8C,CAAC;AAC1F,OAAO,EAAE,wBAAwB,EAAE,MAAM,2CAA2C,CAAC;AACrF,OAAO,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAEhE,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYZ,CAAC;AAOF,OAAO,EAAE,cAAc,EAAE,CAAC;AAC1B,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,kBAAkB,EAAE,OAAO,EAAE,UAAU,EAAE,oBAAoB,EAAE,aAAa,EAAE,SAAS,EAAE,CAAC;AAChI,OAAO,EAAE,6BAA6B,EAAE,0BAA0B,EAAE,wBAAwB,EAAE,sBAAsB,EAAE,CAAC;AACvH,OAAO,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type GridOption } from '@slickgrid-universal/common';
|
|
2
2
|
/** Global Grid Options Defaults for Salesforce */
|
|
3
3
|
export declare const SalesforceGlobalGridOptions: GridOption<import("@slickgrid-universal/common").Column<any>>;
|
|
4
4
|
//# sourceMappingURL=salesforce-global-grid-options.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"salesforce-global-grid-options.d.ts","sourceRoot":"","sources":["../../src/salesforce-global-grid-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"salesforce-global-grid-options.d.ts","sourceRoot":"","sources":["../../src/salesforce-global-grid-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,KAAK,UAAU,EAAE,MAAM,6BAA6B,CAAC;AAQhF,kDAAkD;AAClD,eAAO,MAAM,2BAA2B,+DAgFzB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slickgrid-universal/vanilla-force-bundle",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0",
|
|
4
4
|
"description": "Vanilla Slick Grid Bundle (mostly exist for our Salesforce implementation) - Similar to Vanilla Bundle, the only difference is that it adds extra packages within its bundle (CustomTooltip, CompositeEditor & TextExport)",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"/dist",
|
|
29
29
|
"/src"
|
|
30
30
|
],
|
|
31
|
-
"note": "there are 2 bundler available vite & esbuild, but we really only use Vite only but we keep esbuild for reference",
|
|
32
31
|
"license": "MIT",
|
|
33
32
|
"author": "Ghislain B.",
|
|
34
33
|
"homepage": "https://github.com/ghiscoding/slickgrid-universal",
|
|
@@ -47,18 +46,18 @@
|
|
|
47
46
|
],
|
|
48
47
|
"dependencies": {
|
|
49
48
|
"@slickgrid-universal/binding": "~4.1.0",
|
|
50
|
-
"@slickgrid-universal/common": "~4.
|
|
51
|
-
"@slickgrid-universal/composite-editor-component": "~4.
|
|
52
|
-
"@slickgrid-universal/custom-footer-component": "~4.
|
|
53
|
-
"@slickgrid-universal/custom-tooltip-plugin": "~4.
|
|
54
|
-
"@slickgrid-universal/empty-warning-component": "~4.
|
|
55
|
-
"@slickgrid-universal/event-pub-sub": "~4.
|
|
56
|
-
"@slickgrid-universal/excel-export": "~4.
|
|
57
|
-
"@slickgrid-universal/pagination-component": "~4.
|
|
58
|
-
"@slickgrid-universal/text-export": "~4.
|
|
59
|
-
"@slickgrid-universal/utils": "~4.
|
|
60
|
-
"@slickgrid-universal/vanilla-bundle": "~4.
|
|
49
|
+
"@slickgrid-universal/common": "~4.3.0",
|
|
50
|
+
"@slickgrid-universal/composite-editor-component": "~4.3.0",
|
|
51
|
+
"@slickgrid-universal/custom-footer-component": "~4.3.0",
|
|
52
|
+
"@slickgrid-universal/custom-tooltip-plugin": "~4.3.0",
|
|
53
|
+
"@slickgrid-universal/empty-warning-component": "~4.3.0",
|
|
54
|
+
"@slickgrid-universal/event-pub-sub": "~4.3.0",
|
|
55
|
+
"@slickgrid-universal/excel-export": "~4.3.0",
|
|
56
|
+
"@slickgrid-universal/pagination-component": "~4.3.0",
|
|
57
|
+
"@slickgrid-universal/text-export": "~4.3.0",
|
|
58
|
+
"@slickgrid-universal/utils": "~4.3.0",
|
|
59
|
+
"@slickgrid-universal/vanilla-bundle": "~4.3.0",
|
|
61
60
|
"whatwg-fetch": "^3.6.20"
|
|
62
61
|
},
|
|
63
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "42fb4d8bbf9a0199c99658c344c912ac3aaa9772"
|
|
64
63
|
}
|
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { createDomElement, type GridOption } from '@slickgrid-universal/common';
|
|
2
2
|
import { EventNamingStyle } from '@slickgrid-universal/event-pub-sub';
|
|
3
3
|
|
|
4
|
+
// create empty warning message as Document Fragment to be CSP safe
|
|
5
|
+
const emptyWarningElm = new DocumentFragment();
|
|
6
|
+
emptyWarningElm.appendChild(createDomElement('span', { className: 'mdi mdi-alert color-warning' }));
|
|
7
|
+
emptyWarningElm.appendChild(document.createTextNode(' No data to display.'));
|
|
8
|
+
|
|
4
9
|
/** Global Grid Options Defaults for Salesforce */
|
|
5
10
|
export const SalesforceGlobalGridOptions = {
|
|
6
11
|
autoEdit: true, // true single click (false for double-click)
|
|
@@ -20,7 +25,7 @@ export const SalesforceGlobalGridOptions = {
|
|
|
20
25
|
},
|
|
21
26
|
datasetIdPropertyName: 'Id',
|
|
22
27
|
emptyDataWarning: {
|
|
23
|
-
message:
|
|
28
|
+
message: emptyWarningElm
|
|
24
29
|
},
|
|
25
30
|
enableDeepCopyDatasetOnPageLoad: true,
|
|
26
31
|
enableTextExport: true,
|