@flarehr/workflows-app 4.37.0 → 4.38.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/app-invite/app-store.png +0 -0
- package/dist/app-invite/completed.png +0 -0
- package/dist/app-invite/google-play.png +0 -0
- package/dist/app-invite/qr.png +0 -0
- package/dist/app-invite/welcome.png +0 -0
- package/dist/index.html +105 -0
- package/dist/support/assets/loading-bar.gif +0 -0
- package/dist/support/external-loading-page.js +29 -0
- package/dist/support/support.html +51 -0
- package/dist/workflows-app.css +1 -2
- package/dist/workflows-app.js +818 -2
- package/package.json +22 -23
- package/LICENCE +0 -1
- package/dist/tests.js +0 -4029
- package/dist/workflows-app.js.LICENSE.txt +0 -5
package/package.json
CHANGED
|
@@ -1,46 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flarehr/workflows-app",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.38.0",
|
|
4
4
|
"description": "Flare Workflows App",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist/"
|
|
8
8
|
],
|
|
9
9
|
"scripts": {
|
|
10
10
|
"postinstall": "dotnet tool restore",
|
|
11
|
-
"start": "dotnet fable watch
|
|
12
|
-
"build": "dotnet fable
|
|
13
|
-
"test": "dotnet fable ./tests/Workflows.UI.Tests/ --define TEST &&
|
|
11
|
+
"start": "dotnet fable watch . -s --define LOCAL --run vite",
|
|
12
|
+
"build": "dotnet fable . -s --run cross-env NODE_ENV=production vite build --emptyOutDir",
|
|
13
|
+
"test": "dotnet fable ./tests/Workflows.UI.Tests/ --define TEST && cross-env NODE_ENV=development vite build --config vite.tests.config.mjs --mode development && mocha ./dist-test/Tests.fs.js -r jsdom-global/register"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@fortawesome/fontawesome-svg-core": "^6.1.2",
|
|
17
17
|
"@fortawesome/free-solid-svg-icons": "^6.1.2",
|
|
18
18
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
19
19
|
"@juggle/resize-observer": "^3.4.0",
|
|
20
|
-
"jwt-decode": "^
|
|
21
|
-
"preact": "^10.
|
|
20
|
+
"jwt-decode": "^4.0.0",
|
|
21
|
+
"preact": "^10.24.2",
|
|
22
|
+
"use-sync-external-store": "^1.2.2"
|
|
22
23
|
},
|
|
23
24
|
"devDependencies": {
|
|
24
|
-
"@
|
|
25
|
-
"@tailwindcss/forms": "^0.5.
|
|
25
|
+
"@preact/preset-vite": "^2.9.1",
|
|
26
|
+
"@tailwindcss/forms": "^0.5.9",
|
|
26
27
|
"@testing-library/react": "^15.0.7",
|
|
27
28
|
"@testing-library/user-event": "^13.5.0",
|
|
28
|
-
"autoprefixer": "^10.4.
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"css-loader": "^6.7.1",
|
|
32
|
-
"cssnano": "^5.1.13",
|
|
33
|
-
"html-webpack-plugin": "^5.5.0",
|
|
29
|
+
"autoprefixer": "^10.4.20",
|
|
30
|
+
"cross-env": "^7.0.3",
|
|
31
|
+
"cssnano": "^7.0.6",
|
|
34
32
|
"jsdom": "^24.1.1",
|
|
35
33
|
"jsdom-global": "^3.0.2",
|
|
36
|
-
"mini-css-extract-plugin": "^2.6.1",
|
|
37
34
|
"mocha": "^9.2.2",
|
|
38
|
-
"postcss": "^8.4.
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
35
|
+
"postcss": "^8.4.47",
|
|
36
|
+
"tailwindcss": "^3.4.13",
|
|
37
|
+
"vite": "^5.4.8",
|
|
38
|
+
"vite-plugin-static-copy": "1.0.6",
|
|
39
|
+
"vite-plugin-svgr": "^4.2.0"
|
|
40
|
+
},
|
|
41
|
+
"optionalDependencies": {
|
|
42
|
+
"@esbuild/linux-x64": "^0.24.0",
|
|
43
|
+
"@rollup/rollup-linux-x64-gnu": "^4.24.0"
|
|
45
44
|
}
|
|
46
45
|
}
|
package/LICENCE
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Flare HR Pty Ltd © 2015-2021
|