@flarehr/workflows-progress-app 4.36.2 → 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/index.html +90 -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-progress-app.css +1 -3
- package/dist/workflows-progress-app.js +809 -2
- package/dist/workflows-progress-component.js +796 -2
- package/package.json +15 -19
- package/LICENSE.md +0 -1
- package/dist/workflows-progress-app.js.LICENSE.txt +0 -5
- package/dist/workflows-progress-component.js.LICENSE.txt +0 -5
package/package.json
CHANGED
|
@@ -1,36 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flarehr/workflows-progress-app",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.38.0",
|
|
4
4
|
"description": "Flare Workflows Progress App",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist/"
|
|
8
8
|
],
|
|
9
9
|
"scripts": {
|
|
10
|
-
"start": "dotnet fable watch
|
|
11
|
-
"build": "dotnet fable
|
|
10
|
+
"start": "dotnet fable watch . -s --run vite",
|
|
11
|
+
"build": "dotnet fable . -s --run vite build --emptyOutDir && vite build --config vite.progress-comp.config.mjs",
|
|
12
12
|
"test": ""
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@fortawesome/fontawesome-svg-core": "^6.1.2",
|
|
16
16
|
"@fortawesome/free-solid-svg-icons": "^6.1.2",
|
|
17
17
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
18
|
-
"date-fns": "^
|
|
19
|
-
"preact": "^10.
|
|
20
|
-
"preact-custom-element": "^4.
|
|
21
|
-
"
|
|
18
|
+
"date-fns": "^4.1.0",
|
|
19
|
+
"preact": "^10.24.2",
|
|
20
|
+
"preact-custom-element": "^4.3.0",
|
|
21
|
+
"use-sync-external-store": "^1.2.2"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"postcss-loader": "^7.0.1",
|
|
32
|
-
"webpack": "^5.74.0",
|
|
33
|
-
"webpack-cli": "^4.10.0",
|
|
34
|
-
"webpack-dev-server": "^4.10.0"
|
|
24
|
+
"@preact/preset-vite": "^2.9.1",
|
|
25
|
+
"autoprefixer": "^10.4.20",
|
|
26
|
+
"cssnano": "^7.0.6",
|
|
27
|
+
"postcss": "^8.4.47",
|
|
28
|
+
"tailwindcss": "^3.4.13",
|
|
29
|
+
"vite": "^5.4.8",
|
|
30
|
+
"vite-plugin-static-copy": "1.0.6"
|
|
35
31
|
}
|
|
36
32
|
}
|
package/LICENSE.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Flare HR Pty Ltd © 2015-2021
|