@slickgrid-universal/vanilla-force-bundle 1.1.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/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [1.1.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.19.2...v1.1.0) (2021-12-11)
7
+
8
+ **Note:** Version bump only for package @slickgrid-universal/vanilla-force-bundle
package/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2020-2021, Ghislain B. - Slickgrid-Universal
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2
+ [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
3
+ [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)
4
+ [![npm](https://img.shields.io/npm/v/@slickgrid-universal/vanilla-force-bundle.svg?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/vanilla-force-bundle)
5
+ [![npm](https://img.shields.io/npm/dy/@slickgrid-universal/vanilla-force-bundle?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/vanilla-force-bundle)
6
+
7
+ [![Actions Status](https://github.com/ghiscoding/slickgrid-universal/workflows/CI%20Build/badge.svg)](https://github.com/ghiscoding/slickgrid-universal/actions)
8
+ [![Cypress.io](https://img.shields.io/badge/tested%20with-Cypress-04C38E.svg)](https://www.cypress.io/)
9
+ [![jest](https://jestjs.io/img/jest-badge.svg)](https://github.com/facebook/jest)
10
+ [![codecov](https://codecov.io/gh/ghiscoding/slickgrid-universal/branch/master/graph/badge.svg)](https://codecov.io/gh/ghiscoding/slickgrid-universal)
11
+
12
+ ## Vanilla Force Bundle
13
+ #### @slickgrid-universal/vanilla-force-bundle
14
+
15
+ Vanilla Force Bundle is similar to the Vanilla Bundle but oriented towards a Salesforce (LWC) implementation which requires an all-in-1 bundle (zip) with all necessary package loaded at once. So this package is very similar to the [@slickgrid-universal/vanilla-bundle](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/vanilla-bundle), it actually extends it, with the difference that it adds and imports 3 extra packages (which are optional in the `vanilla-bundle` but required for our Salesforce implementation) and those are:
16
+ - CompositeEditor
17
+ - CustomTooltip
18
+ - TextExport (CSV))
19
+
20
+ This package does what other framework would do, that is to make all the features usable in 1 bundle so that it could then be used by other Apps/Projects, for example we use this bundle in our SalesForce (with Lighning Web Component) App and it requires plain ES6 JavaScript which this bundle also produce (for that there's a [dist-grid-bundle-zip](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/vanilla-force-bundle/dist-grid-bundle-zip) folder which will zip the ES6 `dist` folder which we then import in SalesForce as a static resource).
21
+
22
+ ### Internal Dependencies
23
+ - [@slickgrid-universal/common](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/common)
24
+ - [@slickgrid-universal/composite-editor-component](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/composite-editor-component)
25
+ - [@slickgrid-universal/custom-tooltip-plugin](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/custom-tooltip-plugin)
26
+ - [@slickgrid-universal/event-pub-sub](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/event-pub-sub)
27
+ - [@slickgrid-universal/custom-footer-component](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/custom-footer-component)
28
+ - [@slickgrid-universal/empty-warning-component](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/empty-warning-component)
29
+ - [@slickgrid-universal/pagination-component](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/pagination-component)
30
+ - [@slickgrid-universal/text-export](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/text-export)
31
+ - [@slickgrid-universal/vanilla-bundle](https://github.com/ghiscoding/slickgrid-universal/tree/master/packages/vanilla-bundle)
32
+
33
+ ### External Dependencies
34
+ - [whatwg-fetch](https://github.com/whatwg/fetch) - Fetch Standard
35
+
36
+ ### Installation
37
+ This Vanilla Bundle is used in our SalesForce implementation (since it requires plain ES6) and is also used by the standalone [webpack-demo-vanilla-bundle](https://github.com/ghiscoding/slickgrid-universal/tree/master/examples/webpack-demo-vanilla-bundle) which serves for demo purposes.
38
+
39
+ Go to the root of the repo and follow the instructions provided in the main [README](https://github.com/ghiscoding/slickgrid-universal#installation)
@@ -0,0 +1,280 @@
1
+ // Generated by dts-bundle v0.7.3
2
+ // Dependencies for this module:
3
+ // ../../@slickgrid-universal/common
4
+ // ../../@slickgrid-universal/binding
5
+ // ../../@slickgrid-universal/event-pub-sub
6
+ // ../../@slickgrid-universal/composite-editor-component
7
+ // ../../@slickgrid-universal/empty-warning-component
8
+ // ../../@slickgrid-universal/pagination-component
9
+ // ../../@slickgrid-universal/vanilla-bundle
10
+
11
+ declare module 'slicker-bundle' {
12
+ import { Aggregators, Editors, Enums, Filters, Formatters, GroupTotalFormatters, SortComparers, Utilities } from '@slickgrid-universal/common';
13
+ import { BindingService } from '@slickgrid-universal/binding';
14
+ import { EventPubSubService } from '@slickgrid-universal/event-pub-sub';
15
+ import { SlickCompositeEditorComponent } from '@slickgrid-universal/composite-editor-component';
16
+ import { SlickEmptyWarningComponent } from '@slickgrid-universal/empty-warning-component';
17
+ import { SlickPaginationComponent } from '@slickgrid-universal/pagination-component';
18
+ import { VanillaForceGridBundle } from 'slicker-bundle/vanilla-force-bundle';
19
+ const Slicker: {
20
+ GridBundle: typeof VanillaForceGridBundle;
21
+ Aggregators: {
22
+ Avg: typeof import("@slickgrid-universal/common").AvgAggregator;
23
+ Clone: typeof import("@slickgrid-universal/common").CloneAggregator;
24
+ Count: typeof import("@slickgrid-universal/common").CountAggregator;
25
+ Distinct: typeof import("@slickgrid-universal/common").DistinctAggregator;
26
+ Min: typeof import("@slickgrid-universal/common").MinAggregator;
27
+ Max: typeof import("@slickgrid-universal/common").MaxAggregator;
28
+ Sum: typeof import("@slickgrid-universal/common").SumAggregator;
29
+ };
30
+ BindingService: typeof BindingService;
31
+ Editors: {
32
+ autoComplete: typeof import("@slickgrid-universal/common").AutoCompleteEditor;
33
+ checkbox: typeof import("@slickgrid-universal/common").CheckboxEditor;
34
+ date: typeof import("@slickgrid-universal/common").DateEditor;
35
+ dualInput: typeof import("@slickgrid-universal/common").DualInputEditor;
36
+ float: typeof import("@slickgrid-universal/common").FloatEditor;
37
+ integer: typeof import("@slickgrid-universal/common").IntegerEditor;
38
+ longText: typeof import("@slickgrid-universal/common").LongTextEditor;
39
+ multipleSelect: typeof import("@slickgrid-universal/common").MultipleSelectEditor;
40
+ password: typeof import("@slickgrid-universal/common/dist/commonjs/editors/inputPasswordEditor").InputPasswordEditor;
41
+ singleSelect: typeof import("@slickgrid-universal/common").SingleSelectEditor;
42
+ slider: typeof import("@slickgrid-universal/common").SliderEditor;
43
+ text: typeof import("@slickgrid-universal/common").InputEditor;
44
+ };
45
+ Enums: typeof Enums;
46
+ Filters: {
47
+ autoComplete: typeof import("@slickgrid-universal/common").AutoCompleteFilter;
48
+ compoundDate: typeof import("@slickgrid-universal/common").CompoundDateFilter;
49
+ compoundInput: typeof import("@slickgrid-universal/common").CompoundInputFilter;
50
+ compoundInputNumber: typeof import("@slickgrid-universal/common").CompoundInputNumberFilter;
51
+ compoundInputPassword: typeof import("@slickgrid-universal/common").CompoundInputPasswordFilter;
52
+ compoundInputText: typeof import("@slickgrid-universal/common").CompoundInputFilter;
53
+ compoundSlider: typeof import("@slickgrid-universal/common").CompoundSliderFilter;
54
+ dateRange: typeof import("@slickgrid-universal/common").DateRangeFilter;
55
+ input: typeof import("@slickgrid-universal/common").InputFilter;
56
+ inputMask: typeof import("@slickgrid-universal/common").InputMaskFilter;
57
+ inputNumber: typeof import("@slickgrid-universal/common").InputNumberFilter;
58
+ inputPassword: typeof import("@slickgrid-universal/common").InputPasswordFilter;
59
+ inputText: typeof import("@slickgrid-universal/common").InputFilter;
60
+ multipleSelect: typeof import("@slickgrid-universal/common").MultipleSelectFilter;
61
+ select: typeof import("@slickgrid-universal/common").NativeSelectFilter;
62
+ singleSelect: typeof import("@slickgrid-universal/common").SingleSelectFilter;
63
+ slider: typeof import("@slickgrid-universal/common").SliderFilter;
64
+ sliderRange: typeof import("@slickgrid-universal/common").SliderRangeFilter;
65
+ };
66
+ Formatters: {
67
+ alignCenter: import("@slickgrid-universal/common").Formatter<any>;
68
+ alignRight: import("@slickgrid-universal/common").Formatter<any>;
69
+ arrayObjectToCsv: import("@slickgrid-universal/common").Formatter<any>;
70
+ arrayToCsv: import("@slickgrid-universal/common").Formatter<any>;
71
+ bold: import("@slickgrid-universal/common").Formatter<any>;
72
+ center: import("@slickgrid-universal/common").Formatter<any>;
73
+ checkbox: import("@slickgrid-universal/common").Formatter<any>;
74
+ checkmark: import("@slickgrid-universal/common").Formatter<any>;
75
+ checkmarkMaterial: import("@slickgrid-universal/common").Formatter<any>;
76
+ complex: import("@slickgrid-universal/common").Formatter<any>;
77
+ complexObject: import("@slickgrid-universal/common").Formatter<any>;
78
+ collection: import("@slickgrid-universal/common").Formatter<any>;
79
+ collectionEditor: import("@slickgrid-universal/common").Formatter<any>;
80
+ dateIso: import("@slickgrid-universal/common").Formatter<any>;
81
+ dateTimeIso: import("@slickgrid-universal/common").Formatter<any>;
82
+ dateTimeShortIso: import("@slickgrid-universal/common").Formatter<any>;
83
+ dateTimeIsoAmPm: import("@slickgrid-universal/common").Formatter<any>;
84
+ dateEuro: import("@slickgrid-universal/common").Formatter<any>;
85
+ dateTimeEuro: import("@slickgrid-universal/common").Formatter<any>;
86
+ dateTimeShortEuro: import("@slickgrid-universal/common").Formatter<any>;
87
+ dateTimeEuroAmPm: import("@slickgrid-universal/common").Formatter<any>;
88
+ dateUs: import("@slickgrid-universal/common").Formatter<any>;
89
+ dateTimeUs: import("@slickgrid-universal/common").Formatter<any>;
90
+ dateTimeShortUs: import("@slickgrid-universal/common").Formatter<any>;
91
+ dateTimeUsAmPm: import("@slickgrid-universal/common").Formatter<any>;
92
+ deleteIcon: import("@slickgrid-universal/common").Formatter<any>;
93
+ decimal: import("@slickgrid-universal/common").Formatter<any>;
94
+ dollar: import("@slickgrid-universal/common").Formatter<any>;
95
+ dollarColored: import("@slickgrid-universal/common").Formatter<any>;
96
+ dollarColoredBold: import("@slickgrid-universal/common").Formatter<any>;
97
+ editIcon: import("@slickgrid-universal/common").Formatter<any>;
98
+ fakeHyperlink: import("@slickgrid-universal/common").Formatter<any>;
99
+ hyperlink: import("@slickgrid-universal/common").Formatter<any>;
100
+ icon: import("@slickgrid-universal/common").Formatter<any>;
101
+ infoIcon: import("@slickgrid-universal/common").Formatter<any>;
102
+ italic: import("@slickgrid-universal/common").Formatter<any>;
103
+ lowercase: import("@slickgrid-universal/common").Formatter<any>;
104
+ mask: import("@slickgrid-universal/common").Formatter<any>;
105
+ multiple: import("@slickgrid-universal/common").Formatter<any>;
106
+ percent: import("@slickgrid-universal/common").Formatter<any>;
107
+ percentComplete: import("@slickgrid-universal/common").Formatter<any>;
108
+ percentCompleteBar: import("@slickgrid-universal/common").Formatter<any>;
109
+ percentCompleteBarWithText: import("@slickgrid-universal/common").Formatter<any>;
110
+ percentSymbol: import("@slickgrid-universal/common").Formatter<any>;
111
+ progressBar: import("@slickgrid-universal/common").Formatter<any>;
112
+ translate: import("@slickgrid-universal/common").Formatter<any>;
113
+ translateBoolean: import("@slickgrid-universal/common").Formatter<any>;
114
+ tree: import("@slickgrid-universal/common").Formatter<any>;
115
+ treeExport: import("@slickgrid-universal/common").Formatter<any>;
116
+ uppercase: import("@slickgrid-universal/common").Formatter<any>;
117
+ yesNo: import("@slickgrid-universal/common").Formatter<any>;
118
+ };
119
+ GroupTotalFormatters: {
120
+ avgTotals: import("@slickgrid-universal/common").GroupTotalsFormatter;
121
+ avgTotalsDollar: import("@slickgrid-universal/common").GroupTotalsFormatter;
122
+ avgTotalsPercentage: import("@slickgrid-universal/common").GroupTotalsFormatter;
123
+ maxTotals: import("@slickgrid-universal/common").GroupTotalsFormatter;
124
+ minTotals: import("@slickgrid-universal/common").GroupTotalsFormatter;
125
+ sumTotals: import("@slickgrid-universal/common").GroupTotalsFormatter;
126
+ sumTotalsBold: import("@slickgrid-universal/common").GroupTotalsFormatter;
127
+ sumTotalsColored: import("@slickgrid-universal/common").GroupTotalsFormatter;
128
+ sumTotalsDollar: import("@slickgrid-universal/common").GroupTotalsFormatter;
129
+ sumTotalsDollarBold: import("@slickgrid-universal/common").GroupTotalsFormatter;
130
+ sumTotalsDollarColored: import("@slickgrid-universal/common").GroupTotalsFormatter;
131
+ sumTotalsDollarColoredBold: import("@slickgrid-universal/common").GroupTotalsFormatter;
132
+ };
133
+ SortComparers: {
134
+ date: import("@slickgrid-universal/common").SortComparer;
135
+ dateIso: import("@slickgrid-universal/common").SortComparer;
136
+ dateUtc: import("@slickgrid-universal/common").SortComparer;
137
+ dateTime: import("@slickgrid-universal/common").SortComparer;
138
+ dateTimeIso: import("@slickgrid-universal/common").SortComparer;
139
+ dateTimeIsoAmPm: import("@slickgrid-universal/common").SortComparer;
140
+ dateTimeIsoAM_PM: import("@slickgrid-universal/common").SortComparer;
141
+ dateTimeShortIso: import("@slickgrid-universal/common").SortComparer;
142
+ dateEuro: import("@slickgrid-universal/common").SortComparer;
143
+ dateEuroShort: import("@slickgrid-universal/common").SortComparer;
144
+ dateTimeShortEuro: import("@slickgrid-universal/common").SortComparer;
145
+ dateTimeEuro: import("@slickgrid-universal/common").SortComparer;
146
+ dateTimeEuroAmPm: import("@slickgrid-universal/common").SortComparer;
147
+ dateTimeEuroAM_PM: import("@slickgrid-universal/common").SortComparer;
148
+ dateTimeEuroShort: import("@slickgrid-universal/common").SortComparer;
149
+ dateTimeEuroShortAmPm: import("@slickgrid-universal/common").SortComparer;
150
+ dateTimeEuroShortAM_PM: import("@slickgrid-universal/common").SortComparer;
151
+ dateUs: import("@slickgrid-universal/common").SortComparer;
152
+ dateUsShort: import("@slickgrid-universal/common").SortComparer;
153
+ dateTimeShortUs: import("@slickgrid-universal/common").SortComparer;
154
+ dateTimeUs: import("@slickgrid-universal/common").SortComparer;
155
+ dateTimeUsAmPm: import("@slickgrid-universal/common").SortComparer;
156
+ dateTimeUsAM_PM: import("@slickgrid-universal/common").SortComparer;
157
+ dateTimeUsShort: import("@slickgrid-universal/common").SortComparer;
158
+ dateTimeUsShortAmPm: import("@slickgrid-universal/common").SortComparer;
159
+ dateTimeUsShortAM_PM: import("@slickgrid-universal/common").SortComparer;
160
+ numeric: import("@slickgrid-universal/common").SortComparer;
161
+ objectString: import("@slickgrid-universal/common").SortComparer;
162
+ string: import("@slickgrid-universal/common").SortComparer;
163
+ };
164
+ Utilities: {
165
+ deepAssign: typeof import("@slickgrid-universal/common").deepMerge;
166
+ 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 | undefined): number;
167
+ addToArrayWhenNotExists<T = any>(inputArray: T[], inputItem: T, itemIdPropName?: string | undefined): void;
168
+ addWhiteSpaces(nbSpaces: number, spaceChar?: string | undefined): string;
169
+ arrayRemoveItemByIndex<T_1>(array: T_1[], index: number): T_1[];
170
+ cancellablePromise<T_2 = any>(inputPromise: Promise<T_2>): import("@slickgrid-universal/common").CancellablePromiseWrapper<T_2>;
171
+ castObservableToPromise<T_3>(rxjs: import("@slickgrid-universal/common").RxJsFacade, input: Promise<T_3> | import("@slickgrid-universal/common").Observable<T_3> | import("@slickgrid-universal/common").Subject<T_3>, fromServiceName?: string | undefined): Promise<T_3>;
172
+ addTreeLevelByMutation<T_4>(treeArray: T_4[], options: {
173
+ childrenPropName: string;
174
+ levelPropName: string;
175
+ }, treeLevel?: number | undefined): void;
176
+ flattenToParentChildArray<T_5>(treeArray: T_5[], options?: {
177
+ parentPropName?: string | undefined;
178
+ childrenPropName?: string | undefined;
179
+ hasChildrenPropName?: string | undefined;
180
+ identifierPropName?: string | undefined;
181
+ shouldAddTreeLevelNumber?: boolean | undefined;
182
+ levelPropName?: string | undefined;
183
+ } | undefined): Omit<T_5, number | typeof Symbol.iterator | "charAt" | "charCodeAt" | "concat" | "indexOf" | "lastIndexOf" | "localeCompare" | "match" | "replace" | "search" | "slice" | "split" | "substring" | "toLowerCase" | "toLocaleLowerCase" | "toUpperCase" | "toLocaleUpperCase" | "trim" | "length" | "substr" | "codePointAt" | "includes" | "endsWith" | "normalize" | "repeat" | "startsWith" | "anchor" | "big" | "blink" | "bold" | "fixed" | "fontcolor" | "fontsize" | "italics" | "link" | "small" | "strike" | "sub" | "sup" | "padStart" | "padEnd" | "trimEnd" | "trimStart" | "trimLeft" | "trimRight" | "matchAll" | "at" | "toString" | "valueOf" | "toLocaleString">[];
184
+ unflattenParentChildArrayToTree<P, T_6 extends P & {
185
+ [childrenPropName: string]: P[];
186
+ }>(flatArray: P[], options?: {
187
+ childrenPropName?: string | undefined;
188
+ collapsedPropName?: string | undefined;
189
+ identifierPropName?: string | undefined;
190
+ levelPropName?: string | undefined;
191
+ parentPropName?: string | undefined;
192
+ initiallyCollapsed?: boolean | undefined;
193
+ } | undefined): T_6[];
194
+ deepCopy(objectOrArray: any): any;
195
+ deepMerge(target: any, ...sources: any[]): any;
196
+ emptyObject(obj: any): any;
197
+ isEmptyObject(obj: any): boolean;
198
+ isObject(item: any): any;
199
+ findItemInTreeStructure<T_7 = any>(treeArray: T_7[], predicate: (item: T_7) => boolean, childrenPropertyName: string): T_7 | undefined;
200
+ hasData(value: any): boolean;
201
+ isNumber(value: any, strict?: boolean | undefined): boolean;
202
+ isObjectEmpty(obj: unknown): unknown;
203
+ decimalFormatted(input: string | number, minDecimal?: number | undefined, maxDecimal?: number | undefined, decimalSeparator?: "," | "." | undefined, thousandSeparator?: "" | "," | "_" | "." | " " | undefined): string;
204
+ formatNumber(input: string | number, minDecimal?: number | undefined, maxDecimal?: number | undefined, displayNegativeNumberWithParentheses?: boolean | undefined, symbolPrefix?: string | undefined, symbolSuffix?: string | undefined, decimalSeparator?: "," | "." | undefined, thousandSeparator?: "" | "," | "_" | "." | " " | undefined): string;
205
+ getCellValueFromQueryFieldGetter(columnDef: import("@slickgrid-universal/common").Column<any>, dataContext: any, defaultValue: any): string;
206
+ getDescendantProperty<T_8 = any>(object: T_8, path: string | undefined): any;
207
+ getTranslationPrefix(gridOptions?: import("@slickgrid-universal/common").GridOption | undefined): string;
208
+ mapMomentDateFormatWithFieldType(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"): string;
209
+ mapFlatpickrDateFormatWithFieldType(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"): string;
210
+ mapOperatorType(operator: Enums.OperatorString | Enums.OperatorType): Enums.OperatorType;
211
+ mapOperatorToShorthandDesignation(operator: Enums.OperatorString | Enums.OperatorType): Enums.OperatorString;
212
+ 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;
213
+ objectWithoutKey<T_9 = any>(obj: T_9, omitKey: keyof T_9): T_9;
214
+ parseBoolean(input: any): boolean;
215
+ parseUtcDate(inputDateString: any, useUtc?: boolean | undefined): string;
216
+ removeAccentFromText(text: string, shouldLowerCase?: boolean | undefined): string;
217
+ setDeepValue<T_10 = any>(obj: T_10, path: string | string[], value: any): void;
218
+ thousandSeparatorFormatted(inputValue: string | number | null, separator?: "" | "," | "_" | "." | " " | undefined): string | null;
219
+ titleCase(inputStr: string, shouldTitleCaseEveryWords?: boolean | undefined): string;
220
+ toCamelCase(inputStr: string): string;
221
+ toKebabCase(inputStr: string): string;
222
+ toSentenceCase(inputStr: string): string;
223
+ findOrDefault<T_11 = any>(array: T_11[], logic: (item: T_11) => boolean, defaultVal?: {} | undefined): any;
224
+ toSnakeCase(inputStr: string): string;
225
+ unsubscribeAll(subscriptions: (import("@slickgrid-universal/common").Subscription | import("@slickgrid-universal/common").EventSubscription)[]): (import("@slickgrid-universal/common").Subscription | import("@slickgrid-universal/common").EventSubscription)[];
226
+ uniqueArray<T_12 = any>(arr: T_12[]): T_12[];
227
+ uniqueObjectArray(arr: any[], propertyName?: string | undefined): any[];
228
+ CancelledException: typeof import("@slickgrid-universal/common").CancelledException;
229
+ collectionObserver(inputArray: any[], callback: (outputArray: any[], newValues: any[]) => void): void;
230
+ propertyObserver(obj: any, prop: string, callback: (newValue: any) => void): void;
231
+ BackendUtilityService: typeof import("@slickgrid-universal/common").BackendUtilityService;
232
+ };
233
+ };
234
+ export { BindingService };
235
+ export { Aggregators, Editors, Enums, EventPubSubService, Filters, Formatters, GroupTotalFormatters, SortComparers, Utilities };
236
+ export { SlickCompositeEditorComponent, SlickEmptyWarningComponent, SlickPaginationComponent, VanillaForceGridBundle };
237
+ export { Slicker };
238
+ }
239
+
240
+ declare module 'slicker-bundle/vanilla-force-bundle' {
241
+ import { Column, GridOption, BackendUtilityService, CollectionService, ExtensionService, ExtensionUtility, FilterService, GridEventService, GridService, GridStateService, GroupingAndColspanService, PaginationService, ResizerService, RxJsFacade, SharedService, SortService, TranslaterService, TreeDataService } from '@slickgrid-universal/common';
242
+ import { EventPubSubService } from '@slickgrid-universal/event-pub-sub';
243
+ import { SlickCompositeEditorComponent } from '@slickgrid-universal/composite-editor-component';
244
+ import { SlickVanillaGridBundle, UniversalContainerService } from '@slickgrid-universal/vanilla-bundle';
245
+ export class VanillaForceGridBundle extends SlickVanillaGridBundle {
246
+ slickCompositeEditor: SlickCompositeEditorComponent | undefined;
247
+ /**
248
+ * Salesforce Slicker Grid Bundle constructor
249
+ * @param {Object} gridParentContainerElm - div HTML DOM element container
250
+ * @param {Array<Column>} columnDefs - Column Definitions
251
+ * @param {Object} options - Grid Options
252
+ * @param {Array<Object>} dataset - Dataset
253
+ * @param {Array<Object>} hierarchicalDataset - Hierarchical Dataset
254
+ * @param {Object} services - Typically only used for Unit Testing when we want to pass Mocked/Stub Services
255
+ */
256
+ constructor(gridParentContainerElm: HTMLElement, columnDefs?: Column[], options?: GridOption, dataset?: any[], hierarchicalDataset?: any[], services?: {
257
+ backendUtilityService?: BackendUtilityService;
258
+ collectionService?: CollectionService;
259
+ eventPubSubService?: EventPubSubService;
260
+ extensionService?: ExtensionService;
261
+ extensionUtility?: ExtensionUtility;
262
+ filterService?: FilterService;
263
+ gridEventService?: GridEventService;
264
+ gridService?: GridService;
265
+ gridStateService?: GridStateService;
266
+ groupingAndColspanService?: GroupingAndColspanService;
267
+ paginationService?: PaginationService;
268
+ resizerService?: ResizerService;
269
+ rxjs?: RxJsFacade;
270
+ sharedService?: SharedService;
271
+ sortService?: SortService;
272
+ treeDataService?: TreeDataService;
273
+ translaterService?: TranslaterService;
274
+ universalContainerService?: UniversalContainerService;
275
+ });
276
+ mergeGridOptions(gridOptions: GridOption): GridOption;
277
+ protected registerResources(): void;
278
+ }
279
+ }
280
+