infinity-forge 3.7.0 → 3.7.2

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.
Files changed (33) hide show
  1. package/LICENSE +20 -20
  2. package/dist/infinity-forge.css +3 -0
  3. package/dist/sites/public/fonts/fonts.css +760 -760
  4. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/delete/index.d.ts +3 -2
  5. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/delete/index.js +5 -3
  6. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/delete/index.js.map +1 -1
  7. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/index.js +6 -3
  8. package/dist/system/presentation/hooks/ui/use-table/components/table/actions/index.js.map +1 -1
  9. package/dist/system/presentation/hooks/ui/use-table/interfaces.d.ts +1 -0
  10. package/dist/test/index.js +79 -10
  11. package/dist/test/index.js.map +1 -1
  12. package/dist/ui/components/form/handler/form-handler/index.js +0 -1
  13. package/dist/ui/components/form/handler/form-handler/index.js.map +1 -1
  14. package/dist/ui/components/form/input-youtube/index.js +1 -1
  15. package/dist/ui/components/form/input-youtube/index.js.map +1 -1
  16. package/dist/ui/components/index.d.ts +1 -0
  17. package/dist/ui/components/index.js +1 -0
  18. package/dist/ui/components/index.js.map +1 -1
  19. package/dist/ui/components/warning/index.d.ts +2 -0
  20. package/dist/ui/components/warning/index.js +159 -0
  21. package/dist/ui/components/warning/index.js.map +1 -0
  22. package/dist/ui/components/warning/interface.d.ts +7 -0
  23. package/dist/ui/components/warning/interface.js +3 -0
  24. package/dist/ui/components/warning/interface.js.map +1 -0
  25. package/dist/ui/components/warning/styles.d.ts +4 -0
  26. package/dist/ui/components/warning/styles.js +14 -0
  27. package/dist/ui/components/warning/styles.js.map +1 -0
  28. package/dist/ui/icons/render/mobile.js +1 -1
  29. package/dist/ui/icons/render/mobile.js.map +1 -1
  30. package/dist/ui/integrations/message-provider/send-message.js +1 -1
  31. package/dist/ui/integrations/message-provider/send-message.js.map +1 -1
  32. package/dist/ui/styles/reset.css +356 -356
  33. package/package.json +76 -76
package/package.json CHANGED
@@ -1,76 +1,76 @@
1
- {
2
- "name": "infinity-forge",
3
- "version": "3.7.0",
4
- "description": "codie Library",
5
- "main": "./dist/index",
6
- "module": "./dist/index",
7
- "types": "./dist/index.d.ts",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/CodieDigital/codiedigital-library"
11
- },
12
- "scripts": {
13
- "dev": "next -p 3052",
14
- "deploy": "npm version patch && npm publish",
15
- "next": "next build",
16
- "start": "next start -p 3015",
17
- "build": "tsc && tsc-alias --resolve-full-paths && npm run build:CSS",
18
- "build:CSS": "npm run minify-css && node combine-css.ts && cpx \"src/**/*.css\" dist --watch",
19
- "minify-css": "postcss src/**/*.css --use cssnano -d dist --no-map"
20
- },
21
- "peerDependencies": {
22
- "react": ">=16"
23
- },
24
- "files": [
25
- "dist",
26
- "LICENSE",
27
- "README.md"
28
- ],
29
- "keywords": [
30
- "react",
31
- "typescript",
32
- "awesome-project"
33
- ],
34
- "author": "Codie Digital",
35
- "license": "MIT",
36
- "devDependencies": {
37
- "@types/node": "^20.12.12",
38
- "@types/react": "^18.3.3",
39
- "@types/react-dom": "^18.3.0",
40
- "@types/styled-components": "^5.1.34",
41
- "concurrently": "^8.2.2",
42
- "copyfiles": "^2.4.1",
43
- "cpx": "^1.5.0",
44
- "cssnano": "^7.0.1",
45
- "fs-extra": "^11.2.0",
46
- "postcss": "^8.4.38",
47
- "postcss-cli": "^11.0.0",
48
- "tsc-alias": "^1.8.10",
49
- "tslib": "^2.6.2",
50
- "typescript": "^5.4.5"
51
- },
52
- "dependencies": {
53
- "@types/lodash": "^4.17.7",
54
- "axios": "^1.7.2",
55
- "chroma-js": "^2.4.2",
56
- "formik": "^2.4.6",
57
- "inversify": "^6.0.2",
58
- "lodash": "^4.17.21",
59
- "moment": "^2.30.1",
60
- "next": "^14.2.3",
61
- "react": "18.3.1",
62
- "react-dom": "18.3.1",
63
- "react-ga": "^3.3.1",
64
- "react-google-recaptcha": "^3.1.0",
65
- "react-is": "^18.3.1",
66
- "react-rte": "^0.16.5",
67
- "react-select": "^5.8.0",
68
- "react-share": "^5.1.0",
69
- "react-webcam": "^7.2.0",
70
- "reflect-metadata": "^0.2.2",
71
- "sharp": "^0.33.4",
72
- "styled-components": "^6.1.13",
73
- "yup": "^1.4.0",
74
- "zustand": "^4.5.2"
75
- }
76
- }
1
+ {
2
+ "name": "infinity-forge",
3
+ "version": "3.7.2",
4
+ "description": "codie Library",
5
+ "main": "./dist/index",
6
+ "module": "./dist/index",
7
+ "types": "./dist/index.d.ts",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/CodieDigital/codiedigital-library"
11
+ },
12
+ "scripts": {
13
+ "dev": "next -p 3052",
14
+ "deploy": "npm version patch && npm publish",
15
+ "next": "next build",
16
+ "start": "next start -p 3015",
17
+ "build": "tsc && tsc-alias --resolve-full-paths && npm run build:CSS",
18
+ "build:CSS": "npm run minify-css && node combine-css.ts && cpx \"src/**/*.css\" dist --watch",
19
+ "minify-css": "postcss src/**/*.css --use cssnano -d dist --no-map"
20
+ },
21
+ "peerDependencies": {
22
+ "react": ">=16"
23
+ },
24
+ "files": [
25
+ "dist",
26
+ "LICENSE",
27
+ "README.md"
28
+ ],
29
+ "keywords": [
30
+ "react",
31
+ "typescript",
32
+ "awesome-project"
33
+ ],
34
+ "author": "Codie Digital",
35
+ "license": "MIT",
36
+ "devDependencies": {
37
+ "@types/node": "^20.12.12",
38
+ "@types/react": "^18.3.3",
39
+ "@types/react-dom": "^18.3.0",
40
+ "@types/styled-components": "^5.1.34",
41
+ "concurrently": "^8.2.2",
42
+ "copyfiles": "^2.4.1",
43
+ "cpx": "^1.5.0",
44
+ "cssnano": "^7.0.1",
45
+ "fs-extra": "^11.2.0",
46
+ "postcss": "^8.4.38",
47
+ "postcss-cli": "^11.0.0",
48
+ "tsc-alias": "^1.8.10",
49
+ "tslib": "^2.6.2",
50
+ "typescript": "^5.4.5"
51
+ },
52
+ "dependencies": {
53
+ "@types/lodash": "^4.17.7",
54
+ "axios": "^1.7.2",
55
+ "chroma-js": "^2.4.2",
56
+ "formik": "^2.4.6",
57
+ "inversify": "^6.0.2",
58
+ "lodash": "^4.17.21",
59
+ "moment": "^2.30.1",
60
+ "next": "^14.2.3",
61
+ "react": "18.3.1",
62
+ "react-dom": "18.3.1",
63
+ "react-ga": "^3.3.1",
64
+ "react-google-recaptcha": "^3.1.0",
65
+ "react-is": "^18.3.1",
66
+ "react-rte": "^0.16.5",
67
+ "react-select": "^5.8.0",
68
+ "react-share": "^5.1.0",
69
+ "react-webcam": "^7.2.0",
70
+ "reflect-metadata": "^0.2.2",
71
+ "sharp": "^0.33.4",
72
+ "styled-components": "^6.1.13",
73
+ "yup": "^1.4.0",
74
+ "zustand": "^4.5.2"
75
+ }
76
+ }