pollination-react-io 1.104.0 → 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/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 +2 -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
@@ -82,6 +82,7 @@
|
|
82
82
|
"jest": "^26.6.3",
|
83
83
|
"rollup": "^2.56.3",
|
84
84
|
"rollup-plugin-copy": "^3.4.0",
|
85
|
+
"rollup-plugin-import-file": "^1.0.1",
|
85
86
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
86
87
|
"rollup-plugin-postcss": "^4.0.2",
|
87
88
|
"rollup-plugin-svg": "^2.0.0",
|
@@ -132,5 +133,5 @@
|
|
132
133
|
"slugify": "^1.6.5",
|
133
134
|
"swr": "^1.3.0"
|
134
135
|
},
|
135
|
-
"version": "1.104.
|
136
|
+
"version": "1.104.1"
|
136
137
|
}
|