@quandis/qbo4.ui-bridge 4.0.1-CI-20240919-212538 → 4.0.1-CI-20240923-214644
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/package.json +16 -17
- package/wwwroot/js/qbo4.ui-bridge.js +57 -40
- package/wwwroot/js/qbo4.ui-bridge.min.js +2 -2
- package/wwwroot/js/qbo4.ui-bridge.min.js.LICENSE.txt +1 -1
- package/wwwroot/js/qbo4.ui-bridge.min.js.map +1 -1
- package/src/Program.d.ts +0 -9
- package/src/qbo-badge.d.ts +0 -32
- package/src/qbo-breadcrumb.d.ts +0 -23
- package/src/qbo-contact-name.d.ts +0 -22
- package/src/qbo-contact.d.ts +0 -21
- package/src/qbo-mainmenu.d.ts +0 -41
- package/src/qbo-sidebar.d.ts +0 -10
- package/src/qbo-ssn.d.ts +0 -26
- package/src/styles.d.ts +0 -3
package/package.json
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
"author": "Quandis, Inc.",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "4.0.1-CI-
|
|
6
|
+
"version": "4.0.1-CI-20240923-214644",
|
|
7
7
|
"workspaces": [
|
|
8
8
|
"code"
|
|
9
9
|
],
|
|
10
10
|
"main": "src/Program.js",
|
|
11
11
|
"private": false,
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "npm run
|
|
13
|
+
"build": "npm run sass && tsc && npm run packdev && npm run packprod && del *.tgz && npm pack && ren *.tgz qbo4.ui-bridge.tgz",
|
|
14
14
|
"update": "npm install ../../src/qbo4.ui.Web/qbo4.ui.tgz --force",
|
|
15
15
|
"clean": "rd \"node_modules/@quandis/qbo4.ui\" -force -recurse -ErrorAction SilentlyContinue",
|
|
16
16
|
"packdev": "webpack --config webpack.config.dev.js --no-color",
|
|
@@ -25,35 +25,34 @@
|
|
|
25
25
|
"src/"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@codemirror/commands": "^6.
|
|
28
|
+
"@codemirror/commands": "^6.6.2",
|
|
29
29
|
"@codemirror/lang-html": "^6.4.9",
|
|
30
30
|
"@joint/core": "^4.0.4",
|
|
31
|
-
"@quandis/qbo4.logging": "
|
|
32
|
-
"@quandis/qbo4.ui": "
|
|
33
|
-
"@quandis/qbo4.ui-bridge": "file:qbo4.ui-bridge.tgz",
|
|
31
|
+
"@quandis/qbo4.logging": "*",
|
|
32
|
+
"@quandis/qbo4.ui": "*",
|
|
34
33
|
"bootstrap": "^5.3.3",
|
|
35
34
|
"bootstrap-icons": "^1.11.3",
|
|
36
35
|
"codemirror": "6.0.1",
|
|
37
|
-
"lit": "^3.
|
|
36
|
+
"lit": "^3.2.0",
|
|
38
37
|
"reflect-metadata": "^0.2.2",
|
|
39
38
|
"tsyringe": "^4.8.0",
|
|
40
|
-
"zero-md": "^3.
|
|
39
|
+
"zero-md": "^3.1.4"
|
|
41
40
|
},
|
|
42
41
|
"devDependencies": {
|
|
43
42
|
"@esm-bundle/chai": "^4.3.4",
|
|
44
43
|
"@fullhuman/postcss-purgecss": "^6.0.0",
|
|
45
|
-
"autoprefixer": "^10.4.
|
|
44
|
+
"autoprefixer": "^10.4.20",
|
|
46
45
|
"clean-css": "^5.3.3",
|
|
47
|
-
"eslint": "^9.
|
|
48
|
-
"glob": "^
|
|
46
|
+
"eslint": "^9.11.1",
|
|
47
|
+
"glob": "^11.0.0",
|
|
49
48
|
"html-webpack-plugin": "^5.6.0",
|
|
50
|
-
"mini-css-extract-plugin": "^2.9.
|
|
51
|
-
"postcss": "^8.4.
|
|
49
|
+
"mini-css-extract-plugin": "^2.9.1",
|
|
50
|
+
"postcss": "^8.4.47",
|
|
52
51
|
"postcss-loader": "^8.1.1",
|
|
53
|
-
"sass": "^1.
|
|
54
|
-
"typescript": "^5.
|
|
55
|
-
"webpack": "^5.
|
|
52
|
+
"sass": "^1.79.3",
|
|
53
|
+
"typescript": "^5.6.2",
|
|
54
|
+
"webpack": "^5.94.0",
|
|
56
55
|
"webpack-cli": "^5.1.4",
|
|
57
|
-
"webpack-merge": "^
|
|
56
|
+
"webpack-merge": "^6.0.1"
|
|
58
57
|
}
|
|
59
58
|
}
|