@operato/scene-wellstek-gantt 7.3.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +13 -0
  3. package/assets/favicon.ico +0 -0
  4. package/assets/images/spinner.png +0 -0
  5. package/assets/javascript/wellstek-gantt.js +19740 -0
  6. package/db.sqlite +0 -0
  7. package/dist/data.d.ts +149 -0
  8. package/dist/data.js +1899 -0
  9. package/dist/data.js.map +1 -0
  10. package/dist/editors/index.d.ts +6 -0
  11. package/dist/editors/index.js +8 -0
  12. package/dist/editors/index.js.map +1 -0
  13. package/dist/gantt.d.ts +20 -0
  14. package/dist/gantt.js +227 -0
  15. package/dist/gantt.js.map +1 -0
  16. package/dist/groups/index.d.ts +0 -0
  17. package/dist/groups/index.js +2 -0
  18. package/dist/groups/index.js.map +1 -0
  19. package/dist/index.d.ts +1 -0
  20. package/dist/index.js +2 -0
  21. package/dist/index.js.map +1 -0
  22. package/dist/templates/gantt.d.ts +14 -0
  23. package/dist/templates/gantt.js +16 -0
  24. package/dist/templates/gantt.js.map +1 -0
  25. package/dist/templates/index.d.ts +14 -0
  26. package/dist/templates/index.js +3 -0
  27. package/dist/templates/index.js.map +1 -0
  28. package/dist/templates/wellstek-gantt.d.ts +14 -0
  29. package/dist/templates/wellstek-gantt.js +16 -0
  30. package/dist/templates/wellstek-gantt.js.map +1 -0
  31. package/dist/wellstek-gantt.d.ts +11 -0
  32. package/dist/wellstek-gantt.js +134 -0
  33. package/dist/wellstek-gantt.js.map +1 -0
  34. package/icons/wellstek-gantt.png +0 -0
  35. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +15 -0
  36. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +15 -0
  37. package/logs/application-2024-08-10-13.log +306 -0
  38. package/logs/connections-2024-08-10-13.log +50 -0
  39. package/package.json +61 -0
  40. package/schema.graphql +4213 -0
  41. package/src/index.ts +1 -0
  42. package/src/templates/index.ts +3 -0
  43. package/src/templates/wellstek-gantt.ts +16 -0
  44. package/src/wellstek-gantt.ts +151 -0
  45. package/things-scene.config.js +5 -0
  46. package/translations/en.json +4 -0
  47. package/translations/ja.json +4 -0
  48. package/translations/ko.json +4 -0
  49. package/translations/ms.json +4 -0
  50. package/translations/zh.json +4 -0
  51. package/tsconfig.json +23 -0
  52. package/tsconfig.tsbuildinfo +1 -0
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@operato/scene-wellstek-gantt",
3
+ "description": "Operato Scene Component for Gantt Chart made by Wellstek",
4
+ "version": "7.3.0",
5
+ "license": "MIT",
6
+ "things-scene": true,
7
+ "author": "heartyoh",
8
+ "main": "dist/index.js",
9
+ "module": "dist/index.js",
10
+ "publishConfig": {
11
+ "access": "public",
12
+ "@oprato:registry": "https://registry.npmjs.org"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/things-scene/operato-scene.git",
17
+ "directory": "packages/scene-wellstek-gantt"
18
+ },
19
+ "scripts": {
20
+ "serve": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"things-factory-dev\"",
21
+ "serve:dev": "npm run serve",
22
+ "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
23
+ "build": "tsc",
24
+ "prepublish": "tsc",
25
+ "lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
26
+ "format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
27
+ "migration": "things-factory-migration"
28
+ },
29
+ "dependencies": {
30
+ "@hatiolab/things-scene": "^3.2.0"
31
+ },
32
+ "devDependencies": {
33
+ "@hatiolab/prettier-config": "^1.0.0",
34
+ "@things-factory/builder": "^7.0.0",
35
+ "@things-factory/operato-board": "^7.0.0",
36
+ "@typescript-eslint/eslint-plugin": "^4.33.0",
37
+ "@typescript-eslint/parser": "^4.33.0",
38
+ "@web/dev-server": "^0.1.28",
39
+ "concurrently": "^8.0.1",
40
+ "eslint": "^8.39.0",
41
+ "eslint-config-prettier": "^8.3.0",
42
+ "husky": "^8.0.3",
43
+ "lint-staged": "^13.2.2",
44
+ "prettier": "^2.4.1",
45
+ "tslib": "^2.3.1",
46
+ "typescript": "^5.0.4"
47
+ },
48
+ "prettier": "@hatiolab/prettier-config",
49
+ "husky": {
50
+ "hooks": {
51
+ "pre-commit": "lint-staged"
52
+ }
53
+ },
54
+ "lint-staged": {
55
+ "*.ts": [
56
+ "eslint --fix",
57
+ "prettier --write"
58
+ ]
59
+ },
60
+ "gitHead": "9f8940dc88139cba169be139d32617410d155908"
61
+ }