pollination-react-io 1.103.1 → 1.104.1
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.
- package/build/EpwMap/EpwMap.d.ts +6 -0
- package/build/EpwMap/EpwMap.types.d.ts +29 -0
- package/build/EpwMap/LeafletControls.d.ts +22 -0
- package/build/EpwMap/LeafletCustomPopup.d.ts +8 -0
- package/build/EpwMap/utils.d.ts +2 -0
- package/build/assets/weather.csv +28820 -0
- package/build/index.d.ts +1 -0
- package/build/index.esm.js +17125 -421
- package/build/index.esm.js.map +1 -1
- package/build/index.js +17125 -420
- package/build/index.js.map +1 -1
- package/build/variables.scss +95 -0
- package/package.json +7 -1
@@ -0,0 +1,95 @@
|
|
1
|
+
:root {
|
2
|
+
--background: #FFFAEE;
|
3
|
+
--primary: #1890ff;
|
4
|
+
--primary2: #40a9ff;
|
5
|
+
--primary1: #cceefe;
|
6
|
+
--primary0: #e6f7ff;
|
7
|
+
--secondary: #fff566;
|
8
|
+
--primary3: #000;
|
9
|
+
|
10
|
+
--success: #46A758;
|
11
|
+
--warning: #F76809;
|
12
|
+
--danger: #FF4616;
|
13
|
+
|
14
|
+
/* radix-ui/colors */
|
15
|
+
--slate1: hsl(206, 30.0%, 98.8%);
|
16
|
+
--slate2: hsl(210, 16.7%, 97.6%);
|
17
|
+
--slate3: hsl(209, 13.3%, 95.3%);
|
18
|
+
--slate4: hsl(209, 12.2%, 93.2%);
|
19
|
+
--slate5: hsl(208, 11.7%, 91.1%);
|
20
|
+
--slate6: hsl(208, 11.3%, 88.9%);
|
21
|
+
--slate7: hsl(207, 11.1%, 85.9%);
|
22
|
+
--slate8: hsl(205, 10.7%, 78.0%);
|
23
|
+
--slate9: hsl(206, 6.0%, 56.1%);
|
24
|
+
--slate10: hsl(206, 5.8%, 52.3%);
|
25
|
+
--slate11: hsl(206, 6.0%, 43.5%);
|
26
|
+
--slate12: hsl(206, 24.0%, 9.0%);
|
27
|
+
}
|
28
|
+
|
29
|
+
@mixin primary {
|
30
|
+
|
31
|
+
background-color: var(--primary);
|
32
|
+
|
33
|
+
color: white;
|
34
|
+
|
35
|
+
transition: background-color 0.125s ease-in-out;
|
36
|
+
}
|
37
|
+
|
38
|
+
@keyframes spin {
|
39
|
+
from {
|
40
|
+
transform: rotate(0);
|
41
|
+
}
|
42
|
+
|
43
|
+
to {
|
44
|
+
transform: rotate(360deg);
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
.spin {
|
49
|
+
animation: spin 1s linear 0s infinite;
|
50
|
+
}
|
51
|
+
|
52
|
+
@keyframes Animation {
|
53
|
+
0%{background-position:200%}
|
54
|
+
50%{background-position:100%}
|
55
|
+
100%{background-position:0%}
|
56
|
+
}
|
57
|
+
|
58
|
+
.loading {
|
59
|
+
background: linear-gradient(45deg, transparent, var(--primary), 12%, transparent);
|
60
|
+
background-size: 200%;
|
61
|
+
animation: Animation 3s ease infinite;
|
62
|
+
}
|
63
|
+
|
64
|
+
// Collapse
|
65
|
+
@keyframes open {
|
66
|
+
from {
|
67
|
+
height: 0
|
68
|
+
}
|
69
|
+
to {
|
70
|
+
height: var(--radix-collapsible-content-height)
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
@keyframes close {
|
75
|
+
from {
|
76
|
+
height: var(--radix-collapsible-content-height)
|
77
|
+
}
|
78
|
+
to {
|
79
|
+
height: 0
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
.collapse-content{
|
84
|
+
overflow: hidden;
|
85
|
+
font-size: inherit;
|
86
|
+
color: inherit;
|
87
|
+
}
|
88
|
+
|
89
|
+
.collapse-content[data-state="open"]{
|
90
|
+
animation: open 300ms ease-out;
|
91
|
+
}
|
92
|
+
|
93
|
+
.collapse-content[data-state="closed"]{
|
94
|
+
animation: close 300ms ease-out;
|
95
|
+
}
|
package/package.json
CHANGED
@@ -75,12 +75,14 @@
|
|
75
75
|
"eslint-plugin-jsx-a11y": "^6.6.0",
|
76
76
|
"eslint-plugin-react": "^7.30.1",
|
77
77
|
"eslint-plugin-react-hooks": "^4.6.0",
|
78
|
+
"file-loader": "^6.2.0",
|
78
79
|
"gh-pages": "^4.0.0",
|
79
80
|
"html-webpack-plugin": "^5.5.0",
|
80
81
|
"identity-obj-proxy": "^3.0.0",
|
81
82
|
"jest": "^26.6.3",
|
82
83
|
"rollup": "^2.56.3",
|
83
84
|
"rollup-plugin-copy": "^3.4.0",
|
85
|
+
"rollup-plugin-import-file": "^1.0.1",
|
84
86
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
85
87
|
"rollup-plugin-postcss": "^4.0.2",
|
86
88
|
"rollup-plugin-svg": "^2.0.0",
|
@@ -112,8 +114,11 @@
|
|
112
114
|
"dayjs": "^1.11.5",
|
113
115
|
"downshift": "^6.1.7",
|
114
116
|
"jszip": "^3.10.1",
|
117
|
+
"leaflet": "^1.8.0",
|
118
|
+
"leaflet-control-geocoder": "^2.4.0",
|
115
119
|
"lodash.debounce": "^4.0.8",
|
116
120
|
"lodash.isequal": "^4.5.0",
|
121
|
+
"papaparse": "^5.4.1",
|
117
122
|
"rc-dropdown": "^4.0.1",
|
118
123
|
"react-bootstrap-icons": "^1.10.2",
|
119
124
|
"react-chartjs-2": "^4.3.1",
|
@@ -121,11 +126,12 @@
|
|
121
126
|
"react-dropzone": "^14.2.2",
|
122
127
|
"react-hook-form": "^7.34.0",
|
123
128
|
"react-hot-toast": "^2.4.0",
|
129
|
+
"react-leaflet": "^3.2.5",
|
124
130
|
"react-perfect-scrollbar": "^1.5.8",
|
125
131
|
"react-super-responsive-table": "^5.2.1",
|
126
132
|
"react-tabs": "^4.2.1",
|
127
133
|
"slugify": "^1.6.5",
|
128
134
|
"swr": "^1.3.0"
|
129
135
|
},
|
130
|
-
"version": "1.
|
136
|
+
"version": "1.104.1"
|
131
137
|
}
|