datastake-daf 0.6.278 → 0.6.280

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 (25) hide show
  1. package/.env +8 -0
  2. package/.vscode/settings.json +13 -0
  3. package/dist/components/index.js +471 -810
  4. package/dist/utils/index.js +431 -420
  5. package/package.json +1 -1
  6. package/src/@daf/core/components/Dashboard/Globe/Globe.stories.js +5 -30
  7. package/src/@daf/core/components/Dashboard/Globe/hook.js +7 -63
  8. package/src/@daf/core/components/Dashboard/Globe/index.jsx +6 -24
  9. package/src/@daf/core/components/Dashboard/Globe/style.js +0 -29
  10. package/src/@daf/core/components/EditForm/EditForm.stories.js +1 -0
  11. package/src/@daf/core/components/EditForm/form.jsx +3 -0
  12. package/src/@daf/core/components/EditForm/helper.js +66 -39
  13. package/src/@daf/core/components/EditForm/storyConfig.js +1 -1
  14. package/src/@daf/core/components/EditForm/storyConfig3.js +40 -21563
  15. package/src/@daf/core/components/Icon/configs/MagicWant.js +13 -0
  16. package/src/@daf/core/components/Icon/configs/index.js +3 -0
  17. package/src/index.js +0 -1
  18. package/src/@daf/core/components/Dashboard/Globe/README.md +0 -106
  19. package/src/@daf/core/components/Dashboard/Globe/SimpleGlobe.jsx +0 -331
  20. package/src/@daf/core/components/Dashboard/Globe/SimpleGlobe.stories.js +0 -284
  21. package/src/@daf/core/components/Dashboard/Globe/SimpleGlobeDebug.jsx +0 -85
  22. package/src/@daf/core/components/Dashboard/Globe/SimpleGlobeExample.jsx +0 -75
  23. package/src/@daf/core/components/Dashboard/Globe/SimpleGlobeTest.jsx +0 -48
  24. package/src/@daf/core/components/Dashboard/Globe/storyConfig.js +0 -243
  25. package/src/@daf/core/components/Dashboard/Globe/storyConfig1.js +0 -354
package/.env ADDED
@@ -0,0 +1,8 @@
1
+ REACT_APP_API_KEY=
2
+ REACT_APP_AUTH_DOMAIN=
3
+ REACT_APP_PROJECT_ID=
4
+ REACT_APP_STORAGE_BUCKED=
5
+ REACT_APP_SENDER_ID=
6
+ REACT_APP_APP_ID=
7
+ REACT_APP_MEASUREMENT_ID=
8
+ REACT_APP_VAPID_KEY=
@@ -0,0 +1,13 @@
1
+ {
2
+ "cSpell.words": ["cukura"],
3
+ "files.autoSave": "afterDelay",
4
+ "editor.wordWrap": "on",
5
+ "editor.autoClosingBrackets": "always",
6
+ "editor.autoClosingComments": "always",
7
+ "editor.autoClosingQuotes": "always",
8
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
9
+ "editor.formatOnPaste": true,
10
+ "editor.formatOnSave": true,
11
+ "notebook.defaultFormatter": "esbenp.prettier-vscode",
12
+ "javascript.format.semicolons": "insert"
13
+ }