@slickgrid-universal/vanilla-bundle 0.19.0 → 1.1.1
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 +75 -7
- package/README.md +30 -30
- package/dist/commonjs/components/slick-vanilla-grid-bundle.d.ts +159 -43
- package/dist/commonjs/components/slick-vanilla-grid-bundle.js +39 -84
- package/dist/commonjs/components/slick-vanilla-grid-bundle.js.map +1 -1
- package/dist/commonjs/index.d.ts +29 -39
- package/dist/commonjs/index.js +1 -3
- package/dist/commonjs/index.js.map +1 -1
- package/dist/esm/components/slick-vanilla-grid-bundle.d.ts +159 -44
- package/dist/esm/components/slick-vanilla-grid-bundle.js +41 -88
- package/dist/esm/components/slick-vanilla-grid-bundle.js.map +1 -1
- package/dist/esm/index.d.ts +29 -40
- package/dist/esm/index.js +1 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/index.d.ts +0 -1
- package/dist/esm/interfaces/slickerGridInstance.interface.d.ts +0 -1
- package/dist/esm/services/index.d.ts +0 -1
- package/dist/esm/services/universalContainer.service.d.ts +0 -1
- package/package.json +10 -25
- package/dist/bundle/index.d.ts +0 -451
- package/dist/bundle/slickgrid-vanilla-bundle.js +0 -3
- package/dist/bundle/slickgrid-vanilla-bundle.js.LICENSE.txt +0 -189
- package/dist/bundle/slickgrid-vanilla-bundle.js.map +0 -1
- package/dist/commonjs/salesforce-global-grid-options.d.ts +0 -3
- package/dist/commonjs/salesforce-global-grid-options.js +0 -82
- package/dist/commonjs/salesforce-global-grid-options.js.map +0 -1
- package/dist/esm/components/slick-vanilla-grid-bundle.d.ts.map +0 -1
- package/dist/esm/index.d.ts.map +0 -1
- package/dist/esm/interfaces/index.d.ts.map +0 -1
- package/dist/esm/interfaces/slickerGridInstance.interface.d.ts.map +0 -1
- package/dist/esm/salesforce-global-grid-options.d.ts +0 -4
- package/dist/esm/salesforce-global-grid-options.d.ts.map +0 -1
- package/dist/esm/salesforce-global-grid-options.js +0 -79
- package/dist/esm/salesforce-global-grid-options.js.map +0 -1
- package/dist/esm/services/index.d.ts.map +0 -1
- package/dist/esm/services/universalContainer.service.d.ts.map +0 -1
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Aggregators, Editors, Enums, Filters, Formatters, GroupTotalFormatters, SortComparers, Utilities } from '@slickgrid-universal/common';
|
|
2
2
|
import { BindingService } from '@slickgrid-universal/binding';
|
|
3
3
|
import { EventPubSubService } from '@slickgrid-universal/event-pub-sub';
|
|
4
|
-
import { SlickCompositeEditorComponent } from '@slickgrid-universal/composite-editor-component';
|
|
5
4
|
import { SlickEmptyWarningComponent } from '@slickgrid-universal/empty-warning-component';
|
|
6
5
|
import { SlickPaginationComponent } from '@slickgrid-universal/pagination-component';
|
|
7
6
|
import { SlickVanillaGridBundle } from './components/slick-vanilla-grid-bundle';
|
|
@@ -58,7 +57,6 @@ declare const Slicker: {
|
|
|
58
57
|
arrayObjectToCsv: import("@slickgrid-universal/common").Formatter<any>;
|
|
59
58
|
arrayToCsv: import("@slickgrid-universal/common").Formatter<any>;
|
|
60
59
|
bold: import("@slickgrid-universal/common").Formatter<any>;
|
|
61
|
-
bsDropdown: import("@slickgrid-universal/common").Formatter<any>;
|
|
62
60
|
center: import("@slickgrid-universal/common").Formatter<any>;
|
|
63
61
|
checkbox: import("@slickgrid-universal/common").Formatter<any>;
|
|
64
62
|
checkmark: import("@slickgrid-universal/common").Formatter<any>;
|
|
@@ -152,76 +150,68 @@ declare const Slicker: {
|
|
|
152
150
|
string: import("@slickgrid-universal/common").SortComparer;
|
|
153
151
|
};
|
|
154
152
|
Utilities: {
|
|
155
|
-
deepAssign:
|
|
153
|
+
deepAssign: typeof import("@slickgrid-universal/common").deepMerge;
|
|
156
154
|
sortByFieldType(fieldType: "string" | "number" | "boolean" | "object" | "text" | "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" | "readonly", value1: any, value2: any, sortDirection: number, sortColumn?: import("@slickgrid-universal/common").Column<any> | undefined, gridOptions?: import("@slickgrid-universal/common").GridOption | undefined): number;
|
|
157
155
|
addToArrayWhenNotExists<T = any>(inputArray: T[], inputItem: T, itemIdPropName?: string | undefined): void;
|
|
158
156
|
addWhiteSpaces(nbSpaces: number, spaceChar?: string | undefined): string;
|
|
159
157
|
arrayRemoveItemByIndex<T_1>(array: T_1[], index: number): T_1[];
|
|
160
158
|
cancellablePromise<T_2 = any>(inputPromise: Promise<T_2>): import("@slickgrid-universal/common").CancellablePromiseWrapper<T_2>;
|
|
161
159
|
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>;
|
|
162
|
-
|
|
163
|
-
[childrenPropName: string]: P[];
|
|
164
|
-
}>(flatArray: P[], options?: {
|
|
165
|
-
childrenPropName?: string | undefined;
|
|
166
|
-
collapsedPropName?: string | undefined;
|
|
167
|
-
identifierPropName?: string | undefined;
|
|
168
|
-
levelPropName?: string | undefined;
|
|
169
|
-
parentPropName?: string | undefined;
|
|
170
|
-
initiallyCollapsed?: boolean | undefined;
|
|
171
|
-
} | undefined): T_4[];
|
|
172
|
-
addTreeLevelByMutation<T_5>(treeArray: T_5[], options: {
|
|
160
|
+
addTreeLevelByMutation<T_4>(treeArray: T_4[], options: {
|
|
173
161
|
childrenPropName: string;
|
|
174
162
|
levelPropName: string;
|
|
175
163
|
}, treeLevel?: number | undefined): void;
|
|
176
|
-
flattenToParentChildArray<
|
|
164
|
+
flattenToParentChildArray<T_5>(treeArray: T_5[], options?: {
|
|
177
165
|
parentPropName?: string | undefined;
|
|
178
166
|
childrenPropName?: string | undefined;
|
|
179
167
|
hasChildrenPropName?: string | undefined;
|
|
180
168
|
identifierPropName?: string | undefined;
|
|
181
169
|
shouldAddTreeLevelNumber?: boolean | undefined;
|
|
182
170
|
levelPropName?: string | undefined;
|
|
183
|
-
} | undefined): Omit<
|
|
171
|
+
} | undefined): Omit<T_5, number | typeof Symbol.iterator | "link" | "small" | "sub" | "sup" | "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" | "strike" | "padStart" | "padEnd" | "trimEnd" | "trimStart" | "trimLeft" | "trimRight" | "matchAll" | "at" | "toString" | "valueOf" | "toLocaleString">[];
|
|
172
|
+
unflattenParentChildArrayToTree<P, T_6 extends P & {
|
|
173
|
+
[childrenPropName: string]: P[];
|
|
174
|
+
}>(flatArray: P[], options?: {
|
|
175
|
+
childrenPropName?: string | undefined;
|
|
176
|
+
collapsedPropName?: string | undefined;
|
|
177
|
+
identifierPropName?: string | undefined;
|
|
178
|
+
levelPropName?: string | undefined;
|
|
179
|
+
parentPropName?: string | undefined;
|
|
180
|
+
initiallyCollapsed?: boolean | undefined;
|
|
181
|
+
} | undefined): T_6[];
|
|
184
182
|
deepCopy(objectOrArray: any): any;
|
|
185
|
-
|
|
183
|
+
deepMerge(target: any, ...sources: any[]): any;
|
|
186
184
|
emptyObject(obj: any): any;
|
|
187
|
-
|
|
188
|
-
|
|
185
|
+
isEmptyObject(obj: any): boolean;
|
|
186
|
+
isObject(item: any): any;
|
|
187
|
+
findItemInTreeStructure<T_7 = any>(treeArray: T_7[], predicate: (item: T_7) => boolean, childrenPropertyName: string): T_7 | undefined;
|
|
189
188
|
hasData(value: any): boolean;
|
|
190
|
-
htmlEncode(inputValue: string): string;
|
|
191
|
-
htmlEntityDecode(input: string): string;
|
|
192
|
-
htmlEncodedStringWithPadding(inputStr: string, paddingLength: number): string;
|
|
193
189
|
isNumber(value: any, strict?: boolean | undefined): boolean;
|
|
194
190
|
isObjectEmpty(obj: unknown): unknown;
|
|
195
|
-
decimalFormatted(input: string | number, minDecimal?: number | undefined, maxDecimal?: number | undefined, decimalSeparator?: "
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
getDescendantProperty<
|
|
191
|
+
decimalFormatted(input: string | number, minDecimal?: number | undefined, maxDecimal?: number | undefined, decimalSeparator?: "." | "," | undefined, thousandSeparator?: "" | "." | "," | " " | "_" | undefined): string;
|
|
192
|
+
formatNumber(input: string | number, minDecimal?: number | undefined, maxDecimal?: number | undefined, displayNegativeNumberWithParentheses?: boolean | undefined, symbolPrefix?: string | undefined, symbolSuffix?: string | undefined, decimalSeparator?: "." | "," | undefined, thousandSeparator?: "" | "." | "," | " " | "_" | undefined): string;
|
|
193
|
+
getCellValueFromQueryFieldGetter(columnDef: import("@slickgrid-universal/common").Column<any>, dataContext: any, defaultValue: any): string;
|
|
194
|
+
getDescendantProperty<T_8 = any>(object: T_8, path: string | undefined): any;
|
|
199
195
|
getTranslationPrefix(gridOptions?: import("@slickgrid-universal/common").GridOption | undefined): string;
|
|
200
196
|
mapMomentDateFormatWithFieldType(fieldType: "string" | "number" | "boolean" | "object" | "text" | "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" | "readonly"): string;
|
|
201
197
|
mapFlatpickrDateFormatWithFieldType(fieldType: "string" | "number" | "boolean" | "object" | "text" | "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" | "readonly"): string;
|
|
202
198
|
mapOperatorType(operator: Enums.OperatorString | Enums.OperatorType): Enums.OperatorType;
|
|
203
199
|
mapOperatorToShorthandDesignation(operator: Enums.OperatorString | Enums.OperatorType): Enums.OperatorString;
|
|
204
200
|
mapOperatorByFieldType(fieldType: "string" | "number" | "boolean" | "object" | "text" | "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" | "readonly"): Enums.OperatorType;
|
|
205
|
-
objectWithoutKey<
|
|
201
|
+
objectWithoutKey<T_9 = any>(obj: T_9, omitKey: keyof T_9): T_9;
|
|
206
202
|
parseBoolean(input: any): boolean;
|
|
207
203
|
parseUtcDate(inputDateString: any, useUtc?: boolean | undefined): string;
|
|
208
204
|
removeAccentFromText(text: string, shouldLowerCase?: boolean | undefined): string;
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
thousandSeparatorFormatted(inputValue: string | number | null, separator?: "" | "," | "_" | "." | " " | undefined): string | null;
|
|
213
|
-
titleCase(inputStr: string, caseEveryWords?: boolean | undefined): string;
|
|
205
|
+
setDeepValue<T_10 = any>(obj: T_10, path: string | string[], value: any): void;
|
|
206
|
+
thousandSeparatorFormatted(inputValue: string | number | null, separator?: "" | "." | "," | " " | "_" | undefined): string | null;
|
|
207
|
+
titleCase(inputStr: string, shouldTitleCaseEveryWords?: boolean | undefined): string;
|
|
214
208
|
toCamelCase(inputStr: string): string;
|
|
215
209
|
toKebabCase(inputStr: string): string;
|
|
216
210
|
toSentenceCase(inputStr: string): string;
|
|
217
|
-
findOrDefault<
|
|
218
|
-
getHtmlElementOffset(element: HTMLElement): {
|
|
219
|
-
top: number;
|
|
220
|
-
left: number;
|
|
221
|
-
};
|
|
211
|
+
findOrDefault<T_11 = any>(array: T_11[], logic: (item: T_11) => boolean, defaultVal?: {} | undefined): any;
|
|
222
212
|
toSnakeCase(inputStr: string): string;
|
|
223
213
|
unsubscribeAll(subscriptions: (import("@slickgrid-universal/common").Subscription | import("@slickgrid-universal/common").EventSubscription)[]): (import("@slickgrid-universal/common").Subscription | import("@slickgrid-universal/common").EventSubscription)[];
|
|
224
|
-
uniqueArray<
|
|
214
|
+
uniqueArray<T_12 = any>(arr: T_12[]): T_12[];
|
|
225
215
|
uniqueObjectArray(arr: any[], propertyName?: string | undefined): any[];
|
|
226
216
|
CancelledException: typeof import("@slickgrid-universal/common").CancelledException;
|
|
227
217
|
collectionObserver(inputArray: any[], callback: (outputArray: any[], newValues: any[]) => void): void;
|
|
@@ -231,8 +221,7 @@ declare const Slicker: {
|
|
|
231
221
|
};
|
|
232
222
|
export { BindingService };
|
|
233
223
|
export { Aggregators, Editors, Enums, EventPubSubService, Filters, Formatters, GroupTotalFormatters, SortComparers, Utilities };
|
|
234
|
-
export {
|
|
224
|
+
export { SlickEmptyWarningComponent, SlickPaginationComponent, SlickVanillaGridBundle };
|
|
235
225
|
export { Slicker };
|
|
236
226
|
export * from './interfaces/index';
|
|
237
227
|
export * from './services/index';
|
|
238
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/esm/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Aggregators, Editors, Enums, Filters, Formatters, GroupTotalFormatters, SortComparers, Utilities } from '@slickgrid-universal/common';
|
|
2
2
|
import { BindingService } from '@slickgrid-universal/binding';
|
|
3
3
|
import { EventPubSubService } from '@slickgrid-universal/event-pub-sub';
|
|
4
|
-
import { SlickCompositeEditorComponent } from '@slickgrid-universal/composite-editor-component';
|
|
5
4
|
import { SlickEmptyWarningComponent } from '@slickgrid-universal/empty-warning-component';
|
|
6
5
|
import { SlickPaginationComponent } from '@slickgrid-universal/pagination-component';
|
|
7
6
|
import { SlickVanillaGridBundle } from './components/slick-vanilla-grid-bundle';
|
|
@@ -23,7 +22,7 @@ if (typeof window !== 'undefined') {
|
|
|
23
22
|
}
|
|
24
23
|
export { BindingService };
|
|
25
24
|
export { Aggregators, Editors, Enums, EventPubSubService, Filters, Formatters, GroupTotalFormatters, SortComparers, Utilities };
|
|
26
|
-
export {
|
|
25
|
+
export { SlickEmptyWarningComponent, SlickPaginationComponent, SlickVanillaGridBundle }; // export the custom components & interfaces
|
|
27
26
|
export { Slicker };
|
|
28
27
|
export * from './interfaces/index';
|
|
29
28
|
export * from './services/index';
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,oBAAoB,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAC/I,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,oBAAoB,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAC/I,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,0BAA0B,EAAE,MAAM,8CAA8C,CAAC;AAC1F,OAAO,EAAE,wBAAwB,EAAE,MAAM,2CAA2C,CAAC;AACrF,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAEhF,MAAM,OAAO,GAAG;IACd,UAAU,EAAE,sBAAsB;IAClC,WAAW;IACX,cAAc;IACd,OAAO;IACP,KAAK;IACL,OAAO;IACP,UAAU;IACV,oBAAoB;IACpB,aAAa;IACb,SAAS;CACV,CAAC;AAEF,6DAA6D;AAC7D,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE;IAChC,MAAc,CAAC,OAAO,GAAG,OAAO,CAAC;CACnC;AAED,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,0BAA0B,EAAE,wBAAwB,EAAE,sBAAsB,EAAE,CAAC,CAAC,4CAA4C;AACrI,OAAO,EAAE,OAAO,EAAE,CAAC;AACnB,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slickgrid-universal/vanilla-bundle",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Vanilla Slick Grid Bundle - Framework agnostic the output is to be used in vanilla JS/TS - Written in TypeScript and we also use WebPack to bundle everything into 1 JS file.",
|
|
5
5
|
"main": "dist/commonjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -14,22 +14,16 @@
|
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
16
|
"test": "echo testing slickgrid-universal slickgrid-vanilla-bundle code",
|
|
17
|
-
"dev": "
|
|
17
|
+
"dev": "run-s build",
|
|
18
18
|
"dev:watch": "run-p build:watch",
|
|
19
19
|
"build": "cross-env tsc --build",
|
|
20
20
|
"postbuild": "npm run bundle:commonjs",
|
|
21
21
|
"build:watch": "cross-env tsc --incremental --watch",
|
|
22
22
|
"prebundle": "npm run delete:dist",
|
|
23
|
-
"bundle": "npm-run-all bundle:commonjs bundle:esm
|
|
23
|
+
"bundle": "npm-run-all bundle:commonjs bundle:esm",
|
|
24
24
|
"bundle:commonjs": "tsc --project tsconfig.bundle.json --outDir dist/commonjs --module commonjs",
|
|
25
25
|
"bundle:esm": "cross-env tsc --project tsconfig.bundle.json --outDir dist/esm --module esnext --target es2018",
|
|
26
|
-
"prebundle:zip": "npm run delete:zip",
|
|
27
|
-
"bundle:zip": "npm run zip:dist",
|
|
28
26
|
"delete:dist": "cross-env rimraf --maxBusyTries=10 dist",
|
|
29
|
-
"delete:zip": "cross-env rimraf --maxBusyTries=10 dist-bundle-zip",
|
|
30
|
-
"webpack:prod": "webpack --env production",
|
|
31
|
-
"zip:dist:dev": "cross-env node compress.js --output-filename=slickgrid-vanilla-bundle-DEV --output-folder=\"dist-grid-bundle-zip/\"",
|
|
32
|
-
"zip:dist": "cross-env node compress.js --output-filename=slickgrid-vanilla-bundle --output-folder=\"dist-grid-bundle-zip/\"",
|
|
33
27
|
"package:add-browser-prop": "cross-env node ../change-package-browser.js --add-browser=true --folder-name=vanilla-bundle",
|
|
34
28
|
"package:remove-browser-prop": "cross-env node ../change-package-browser.js --remove-browser=true --folder-name=vanilla-bundle"
|
|
35
29
|
},
|
|
@@ -54,26 +48,17 @@
|
|
|
54
48
|
"not dead"
|
|
55
49
|
],
|
|
56
50
|
"dependencies": {
|
|
57
|
-
"@slickgrid-universal/common": "^
|
|
58
|
-
"@slickgrid-universal/
|
|
59
|
-
"@slickgrid-universal/
|
|
60
|
-
"@slickgrid-universal/
|
|
61
|
-
"@slickgrid-universal/
|
|
62
|
-
"@slickgrid-universal/event-pub-sub": "^0.19.0",
|
|
63
|
-
"@slickgrid-universal/pagination-component": "^0.19.0",
|
|
64
|
-
"@slickgrid-universal/text-export": "^0.19.0",
|
|
51
|
+
"@slickgrid-universal/common": "^1.1.0",
|
|
52
|
+
"@slickgrid-universal/custom-footer-component": "^1.1.1",
|
|
53
|
+
"@slickgrid-universal/empty-warning-component": "^1.1.1",
|
|
54
|
+
"@slickgrid-universal/event-pub-sub": "^1.1.1",
|
|
55
|
+
"@slickgrid-universal/pagination-component": "^1.1.1",
|
|
65
56
|
"whatwg-fetch": "^3.6.2"
|
|
66
57
|
},
|
|
67
58
|
"devDependencies": {
|
|
68
|
-
"@types/webpack": "^5.28.0",
|
|
69
|
-
"archiver": "^5.3.0",
|
|
70
59
|
"cross-env": "^7.0.3",
|
|
71
|
-
"dts-bundle-webpack": "^1.0.2",
|
|
72
|
-
"html-loader": "^3.0.0",
|
|
73
60
|
"npm-run-all": "^4.1.5",
|
|
74
|
-
"rimraf": "^3.0.2"
|
|
75
|
-
"ts-loader": "^9.2.6",
|
|
76
|
-
"webpack": "^5.60.0"
|
|
61
|
+
"rimraf": "^3.0.2"
|
|
77
62
|
},
|
|
78
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "c73565b875e9df7a4b26613bd0307d75156ef2d1"
|
|
79
64
|
}
|