datastake-daf 0.6.99 → 0.6.100

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 (56) hide show
  1. package/.vscode/settings.json +13 -0
  2. package/dist/components/index.js +114 -54
  3. package/dist/style/datastake/_index.css +5 -0
  4. package/dist/style/datastake/datastake.css +5081 -0
  5. package/dist/style/datastake/fonts/Outfit-Black.ttf +0 -0
  6. package/dist/style/datastake/fonts/Outfit-Bold.ttf +0 -0
  7. package/dist/style/datastake/fonts/Outfit-ExtraBold.ttf +0 -0
  8. package/dist/style/datastake/fonts/Outfit-ExtraLight.ttf +0 -0
  9. package/dist/style/datastake/fonts/Outfit-Light.ttf +0 -0
  10. package/dist/style/datastake/fonts/Outfit-Medium.ttf +0 -0
  11. package/dist/style/datastake/fonts/Outfit-Regular.ttf +0 -0
  12. package/dist/style/datastake/fonts/Outfit-SemiBold.ttf +0 -0
  13. package/dist/style/datastake/fonts/Outfit-Thin.ttf +0 -0
  14. package/dist/style/datastake/fonts/outfit.css +62 -0
  15. package/dist/style/datastake/fonts/sf-ui-display-black-58646a6b80d5a.woff +0 -0
  16. package/dist/style/datastake/fonts/sf-ui-display-bold-58646a511e3d9.woff +0 -0
  17. package/dist/style/datastake/fonts/sf-ui-display-heavy-586470160b9e5.woff +0 -0
  18. package/dist/style/datastake/fonts/sf-ui-display-light-58646b33e0551.woff +0 -0
  19. package/dist/style/datastake/fonts/sf-ui-display-medium-58646be638f96.woff +0 -0
  20. package/dist/style/datastake/fonts/sf-ui-display-semibold-58646eddcae92.woff +0 -0
  21. package/dist/style/datastake/fonts/sf-ui-display-thin-58646e9b26e8b.woff +0 -0
  22. package/dist/style/datastake/fonts/sf-ui-display-ultralight-58646b19bf205.woff +0 -0
  23. package/dist/style/datastake/fonts/sfDisplay.css +59 -0
  24. package/dist/style/datastake/leaflet.css +671 -0
  25. package/dist/style/datastake/leaflet.markercluster.css +60 -0
  26. package/dist/style/style.css +1 -0
  27. package/package.json +1 -1
  28. package/rollup.config.js +83 -41
  29. package/src/@daf/core/components/Dashboard/Map/helper.js +439 -434
  30. package/src/@daf/core/components/Dashboard/Map/storyConfig1.js +233 -230
  31. package/src/helpers/Map.js +82 -6
  32. package/src/styles/_index.scss +1 -1
  33. package/src/styles/datastake/_index.css +5 -0
  34. package/src/styles/datastake/datastake.css +5081 -0
  35. package/src/styles/datastake/fonts/Outfit-Black.ttf +0 -0
  36. package/src/styles/datastake/fonts/Outfit-Bold.ttf +0 -0
  37. package/src/styles/datastake/fonts/Outfit-ExtraBold.ttf +0 -0
  38. package/src/styles/datastake/fonts/Outfit-ExtraLight.ttf +0 -0
  39. package/src/styles/datastake/fonts/Outfit-Light.ttf +0 -0
  40. package/src/styles/datastake/fonts/Outfit-Medium.ttf +0 -0
  41. package/src/styles/datastake/fonts/Outfit-Regular.ttf +0 -0
  42. package/src/styles/datastake/fonts/Outfit-SemiBold.ttf +0 -0
  43. package/src/styles/datastake/fonts/Outfit-Thin.ttf +0 -0
  44. package/src/styles/datastake/fonts/outfit.css +62 -0
  45. package/src/styles/datastake/fonts/sf-ui-display-black-58646a6b80d5a.woff +0 -0
  46. package/src/styles/datastake/fonts/sf-ui-display-bold-58646a511e3d9.woff +0 -0
  47. package/src/styles/datastake/fonts/sf-ui-display-heavy-586470160b9e5.woff +0 -0
  48. package/src/styles/datastake/fonts/sf-ui-display-light-58646b33e0551.woff +0 -0
  49. package/src/styles/datastake/fonts/sf-ui-display-medium-58646be638f96.woff +0 -0
  50. package/src/styles/datastake/fonts/sf-ui-display-semibold-58646eddcae92.woff +0 -0
  51. package/src/styles/datastake/fonts/sf-ui-display-thin-58646e9b26e8b.woff +0 -0
  52. package/src/styles/datastake/fonts/sf-ui-display-ultralight-58646b19bf205.woff +0 -0
  53. package/src/styles/datastake/fonts/sfDisplay.css +59 -0
  54. package/src/styles/datastake/leaflet.css +671 -0
  55. package/src/styles/datastake/leaflet.markercluster.css +60 -0
  56. package/src/styles/datastake.scss +1 -4454
@@ -0,0 +1,62 @@
1
+ @font-face {
2
+ font-family: "Outfit";
3
+ font-style: normal;
4
+ font-weight: 100;
5
+ src: url("./Outfit-Thin.ttf");
6
+ }
7
+
8
+ @font-face {
9
+ font-family: "Outfit";
10
+ font-style: normal;
11
+ font-weight: 200;
12
+ src: url("./Outfit-ExtraLight.ttf");
13
+ }
14
+
15
+ @font-face {
16
+ font-family: "Outfit";
17
+ font-style: normal;
18
+ font-weight: 300;
19
+ src: url("./Outfit-Light.ttf");
20
+ }
21
+
22
+ @font-face {
23
+ font-family: "Outfit";
24
+ font-style: normal;
25
+ font-weight: 400;
26
+ src: url("./Outfit-Regular.ttf");
27
+ }
28
+
29
+ @font-face {
30
+ font-family: "Outfit";
31
+ font-style: normal;
32
+ font-weight: 500;
33
+ src: url("./Outfit-Medium.ttf");
34
+ }
35
+
36
+ @font-face {
37
+ font-family: "Outfit";
38
+ font-style: normal;
39
+ font-weight: 600;
40
+ src: url("./Outfit-SemiBold.ttf");
41
+ }
42
+
43
+ @font-face {
44
+ font-family: "Outfit";
45
+ font-style: normal;
46
+ font-weight: 700;
47
+ src: url("./Outfit-Bold.ttf");
48
+ }
49
+
50
+ @font-face {
51
+ font-family: "Outfit";
52
+ font-style: normal;
53
+ font-weight: 800;
54
+ src: url("./Outfit-ExtraBold.ttf");
55
+ }
56
+
57
+ @font-face {
58
+ font-family: "Outfit";
59
+ font-style: normal;
60
+ font-weight: 900;
61
+ src: url("./Outfit-Black.ttf");
62
+ }
@@ -0,0 +1,59 @@
1
+ @font-face {
2
+ font-family: "SF UI Display";
3
+ font-style: normal;
4
+ font-weight: 100;
5
+ src: local("SF UI Display Ultralight"),
6
+ url("./sf-ui-display-ultralight-58646b19bf205.woff") format("woff");
7
+ }
8
+
9
+ @font-face {
10
+ font-family: "SF UI Display";
11
+ font-style: normal;
12
+ font-weight: 200;
13
+ src: local("SF UI Display Thin"),
14
+ url("./sf-ui-display-thin-58646e9b26e8b.woff") format("woff");
15
+ }
16
+
17
+ @font-face {
18
+ font-family: "SF UI Display";
19
+ font-style: normal;
20
+ font-weight: 300;
21
+ src: local("SF UI Display Light"),
22
+ url("./sf-ui-display-light-58646b33e0551.woff") format("woff");
23
+ }
24
+
25
+ @font-face {
26
+ font-family: "SF UI Display";
27
+ font-style: normal;
28
+ font-weight: 500;
29
+ src: local("SF UI Display Medium"),
30
+ url("./sf-ui-display-medium-58646be638f96.woff") format("woff");
31
+ }
32
+
33
+ /* @font-face { */
34
+ /* font-family: 'SF UI Display'; */
35
+ /* font-style: normal; */
36
+ /* font-weight: 600; */
37
+ /* src: local('SF UI Display Semibold'), url('sf-ui-display-semibold-58646eddcae92.woff') format('woff'); */
38
+ /* } */
39
+
40
+ /* @font-face { */
41
+ /* font-family: 'SF UI Display'; */
42
+ /* font-style: normal; */
43
+ /* font-weight: 700; */
44
+ /* src: local('SF UI Display Bold'), url('sf-ui-display-bold-58646a511e3d9.woff') format('woff'); */
45
+ /* } */
46
+
47
+ /* @font-face { */
48
+ /* font-family: 'SF UI Display'; */
49
+ /* font-style: normal; */
50
+ /* font-weight: 800; */
51
+ /* src: local('SF UI Display Heavy'), url('sf-ui-display-heavy-586470160b9e5.woff') format('woff'); */
52
+ /* } */
53
+
54
+ /* @font-face { */
55
+ /* font-family: 'SF UI Display'; */
56
+ /* font-style: normal; */
57
+ /* font-weight: 900; */
58
+ /* src: local('SF UI Display Black'), url('sf-ui-display-black-58646a6b80d5a.woff') format('woff'); */
59
+ /* } */