@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/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [7.3.0](https://github.com/things-scene/operato-scene/compare/v7.2.8...v7.3.0) (2024-08-10)
7
+
8
+
9
+ ### :rocket: New Features
10
+
11
+ * add wellstek-gantt component ([4a486b7](https://github.com/things-scene/operato-scene/commit/4a486b7105e529568ce6001d29a86e4c5a037594))
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ ## build
2
+
3
+ `$ yarn build`
4
+
5
+ | type | filename | for | tested |
6
+ | ---- | --------------------------------- | -------------- | ------ |
7
+ | UMD | things-scene-wellstek-gantt.js | modern browser | O |
8
+ | UMD | things-scene-wellstek-gantt-ie.js | ie 11 | O |
9
+ | ESM | things-scene-wellstek-gantt.mjs | modern browser | O |
10
+
11
+ ## publish
12
+
13
+ `$ yarn publish`
Binary file
Binary file