@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 +8 -0
- package/LICENSE +20 -0
- package/README.md +39 -0
- package/dist/bundle/index.d.ts +280 -0
- package/dist/bundle/slickgrid-vanilla-bundle.js +3 -0
- package/dist/bundle/slickgrid-vanilla-bundle.js.LICENSE.txt +175 -0
- package/dist/bundle/slickgrid-vanilla-bundle.js.map +1 -0
- package/dist/commonjs/index.d.ts +226 -0
- package/dist/commonjs/index.js +42 -0
- package/dist/commonjs/index.js.map +1 -0
- package/dist/commonjs/salesforce-global-grid-options.d.ts +3 -0
- package/dist/commonjs/salesforce-global-grid-options.js +82 -0
- package/dist/commonjs/salesforce-global-grid-options.js.map +1 -0
- package/dist/commonjs/vanilla-force-bundle.d.ts +38 -0
- package/dist/commonjs/vanilla-force-bundle.js +100 -0
- package/dist/commonjs/vanilla-force-bundle.js.map +1 -0
- package/dist/esm/index.d.ts +226 -0
- package/dist/esm/index.js +28 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/salesforce-global-grid-options.d.ts +3 -0
- package/dist/esm/salesforce-global-grid-options.js +79 -0
- package/dist/esm/salesforce-global-grid-options.js.map +1 -0
- package/dist/esm/vanilla-force-bundle.d.ts +38 -0
- package/dist/esm/vanilla-force-bundle.js +96 -0
- package/dist/esm/vanilla-force-bundle.js.map +1 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@slickgrid-universal/vanilla-force-bundle",
|
|
3
|
+
"version": "1.1.0",
|
|
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
|
+
"main": "dist/commonjs/index.js",
|
|
6
|
+
"module": "dist/esm/index.js",
|
|
7
|
+
"types": "dist/commonjs/index.d.ts",
|
|
8
|
+
"typings": "dist/commonjs/index.d.ts",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"/dist"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"test": "echo testing slickgrid-universal vanilla-force-bundle code",
|
|
17
|
+
"dev": "webpack --env development",
|
|
18
|
+
"dev:watch": "run-p build:watch",
|
|
19
|
+
"build": "cross-env tsc --build",
|
|
20
|
+
"postbuild": "npm run bundle:commonjs",
|
|
21
|
+
"build:watch": "cross-env tsc --incremental --watch",
|
|
22
|
+
"prebundle": "npm run delete:dist",
|
|
23
|
+
"bundle": "npm-run-all bundle:commonjs bundle:esm webpack:prod",
|
|
24
|
+
"bundle:commonjs": "tsc --project tsconfig.bundle.json --outDir dist/commonjs --module commonjs",
|
|
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
|
+
"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
|
+
"package:add-browser-prop": "cross-env node ../change-package-browser.js --add-browser=true --folder-name=vanilla-force-bundle",
|
|
34
|
+
"package:remove-browser-prop": "cross-env node ../change-package-browser.js --remove-browser=true --folder-name=vanilla-force-bundle"
|
|
35
|
+
},
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"author": "Ghislain B.",
|
|
38
|
+
"homepage": "https://github.com/ghiscoding/slickgrid-universal",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/ghiscoding/slickgrid-universal.git",
|
|
42
|
+
"directory": "packages/vanilla-force-bundle"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/ghiscoding/slickgrid-universal/issues"
|
|
46
|
+
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=14.17.0",
|
|
49
|
+
"npm": ">=6.14.8"
|
|
50
|
+
},
|
|
51
|
+
"browserslist": [
|
|
52
|
+
"last 2 version",
|
|
53
|
+
"> 1%",
|
|
54
|
+
"not dead"
|
|
55
|
+
],
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"@slickgrid-universal/common": "^0.19.2",
|
|
58
|
+
"@slickgrid-universal/composite-editor-component": "^0.19.2",
|
|
59
|
+
"@slickgrid-universal/custom-footer-component": "^0.19.2",
|
|
60
|
+
"@slickgrid-universal/custom-tooltip-plugin": "^0.19.2",
|
|
61
|
+
"@slickgrid-universal/empty-warning-component": "^0.19.2",
|
|
62
|
+
"@slickgrid-universal/event-pub-sub": "^0.19.2",
|
|
63
|
+
"@slickgrid-universal/pagination-component": "^0.19.2",
|
|
64
|
+
"@slickgrid-universal/text-export": "^0.19.2",
|
|
65
|
+
"@slickgrid-universal/vanilla-bundle": "^0.19.2",
|
|
66
|
+
"whatwg-fetch": "^3.6.2"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@types/webpack": "^5.28.0",
|
|
70
|
+
"archiver": "^5.3.0",
|
|
71
|
+
"cross-env": "^7.0.3",
|
|
72
|
+
"dts-bundle-webpack": "^1.0.2",
|
|
73
|
+
"html-loader": "^3.0.1",
|
|
74
|
+
"npm-run-all": "^4.1.5",
|
|
75
|
+
"rimraf": "^3.0.2",
|
|
76
|
+
"webpack": "^5.64.4"
|
|
77
|
+
},
|
|
78
|
+
"gitHead": "fd29e770b19fc58a0b7fdd08769a03a2e3f5456d"
|
|
79
|
+
}
|