@hopara/react 0.1.96
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/index.js +42 -0
- package/build/index.js.LICENSE.txt +16 -0
- package/build/static/css/main.css +179 -0
- package/build/static/media/404.14fd65ba.gif +0 -0
- package/build/static/media/compass.1b7cfab3.svg +6 -0
- package/build/static/media/filter-large.61677ff2.svg +1 -0
- package/build/static/media/layers-large.596ff81a.svg +1 -0
- package/build/static/media/logo-medium-outline.318dd794.svg +41 -0
- package/build/static/media/place-row.c46a02cf.svg +7 -0
- package/build/static/media/table-large.72b90bd0.svg +1 -0
- package/build/static/media/target.5caa5a92.svg +1 -0
- package/build/static/media/tune-large.ecd7a42c.svg +1 -0
- package/package.json +138 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2021 Google LLC
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
.SidebarTransition_transitionBlock__2ONFT {
|
|
2
|
+
position: relative;
|
|
3
|
+
height: 100%;
|
|
4
|
+
width: 100%;
|
|
5
|
+
transition: opacity .2s ease-in-out, transform 0.2s ease-in-out, filter 0.28s ease-in-out;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.SidebarTransition_enter__3P9py,
|
|
9
|
+
.SidebarTransition_enterInvert__3lsEA {
|
|
10
|
+
z-index: 2;
|
|
11
|
+
filter: blur(2px);
|
|
12
|
+
}
|
|
13
|
+
.SidebarTransition_enter__3P9py {
|
|
14
|
+
transform: translate3d(-100%, 0, 0);
|
|
15
|
+
}
|
|
16
|
+
.SidebarTransition_enterInvert__3lsEA {
|
|
17
|
+
transform: translate3d(100%, 0, 0);
|
|
18
|
+
}
|
|
19
|
+
.SidebarTransition_enterActive__2zE_e {
|
|
20
|
+
opacity: 1;
|
|
21
|
+
transform: translate3d(0, 0, 0);
|
|
22
|
+
}
|
|
23
|
+
.SidebarTransition_enterDone__2Nyek {
|
|
24
|
+
filter: blur(0);
|
|
25
|
+
}
|
|
26
|
+
.SidebarTransition_exit__1NquM {
|
|
27
|
+
opacity: 1;
|
|
28
|
+
transform: translate3d(0, 0, 0);
|
|
29
|
+
}
|
|
30
|
+
.SidebarTransition_exitActive__kjse3 {
|
|
31
|
+
opacity: 0;
|
|
32
|
+
transform: translate3d(100%, 0, 0);
|
|
33
|
+
}
|
|
34
|
+
.SidebarTransition_exitActiveInvert__5-Ogx {
|
|
35
|
+
opacity: 0;
|
|
36
|
+
transform: translate3d(-100%, 0, 0);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.SidebarTransition_enterActive__2zE_e,
|
|
40
|
+
.SidebarTransition_exitActive__kjse3 {
|
|
41
|
+
filter: blur(2px);
|
|
42
|
+
}
|
|
43
|
+
.Toastify {
|
|
44
|
+
position: absolute;
|
|
45
|
+
top: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@keyframes fade-in {
|
|
49
|
+
0% {
|
|
50
|
+
opacity: 0;
|
|
51
|
+
}
|
|
52
|
+
100% {
|
|
53
|
+
opacity: 1;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.hopara-Toastify__fade-in {
|
|
58
|
+
animation: fade-in 100ms ease-in both;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@keyframes fade-out {
|
|
62
|
+
0% {
|
|
63
|
+
opacity: 1;
|
|
64
|
+
}
|
|
65
|
+
100% {
|
|
66
|
+
opacity: 0;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.hopara-Toastify__fade-out {
|
|
71
|
+
animation: fade-out 240ms ease-out both;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.hopara-Toastify__toast__dark {
|
|
75
|
+
box-shadow: rgb(0 0 0 / 20%) 0 3px 5px -1px, rgb(0 0 0 / 14%) 0 6px 10px 0, rgb(0 0 0 / 12%) 0 1px 18px 0;
|
|
76
|
+
background-image: linear-gradient(rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.11));
|
|
77
|
+
background-color: rgb(250, 250, 250);
|
|
78
|
+
color: rgba(0, 0, 0, 0.87);
|
|
79
|
+
font-size: 12px !important;
|
|
80
|
+
min-height: 10px !important;
|
|
81
|
+
border-radius: 4px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.hopara-Toastify__toast__light {
|
|
85
|
+
box-shadow: rgb(0 0 0 / 20%) 0 3px 5px -1px, rgb(0 0 0 / 14%) 0 6px 10px 0, rgb(0 0 0 / 12%) 0 1px 18px 0;
|
|
86
|
+
background-image: linear-gradient(rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.11));
|
|
87
|
+
background-color: rgb(50, 50, 50);
|
|
88
|
+
color: #fff;
|
|
89
|
+
font-size: 12px !important;
|
|
90
|
+
min-height: 10px !important;
|
|
91
|
+
border-radius: 4px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.hopara-Toastify__body:before {
|
|
95
|
+
content: "";
|
|
96
|
+
background-color: inherit;
|
|
97
|
+
width: 10px;
|
|
98
|
+
height: 10px;
|
|
99
|
+
border-radius: 10px;
|
|
100
|
+
margin-right: 10px;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.hopara-Toastify__toast__light .Toastify__close-button {
|
|
104
|
+
align-self: center;
|
|
105
|
+
color: rgb(255,255,255);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.hopara-Toastify__toast__dark .Toastify__close-button {
|
|
109
|
+
align-self: center;
|
|
110
|
+
color: rgb(50,50,50);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.Toastify__toast--success .hopara-Toastify__body {
|
|
114
|
+
color: #29d67a;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.Toastify__toast--success .hopara-Toastify__body:before {
|
|
118
|
+
background-color: #29d67a;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.Toastify__toast--info .hopara-Toastify__body {
|
|
122
|
+
color: #3b48c4;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.Toastify__toast--info .hopara-Toastify__body:before {
|
|
126
|
+
background-color: #3b48c4;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.Toastify__toast--warn .hopara-Toastify__body {
|
|
130
|
+
color: #e68a19;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.Toastify__toast--warn .hopara-Toastify__body:before {
|
|
134
|
+
background-color: #e68a19;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.Toastify__toast--error .hopara-Toastify__body {
|
|
138
|
+
color: #e62719;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.Toastify__toast--error .hopara-Toastify__body:before {
|
|
142
|
+
background-color: #e62719;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
.ViewTransition_transitionBlock__3-hy8 {
|
|
148
|
+
position: relative;
|
|
149
|
+
height: 100%;
|
|
150
|
+
width: 100%;
|
|
151
|
+
transition: opacity .15s ease-in-out, transform 0.5s ease-in-out, filter 0.25s ease-in-out;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.ViewTransition_enter__1qfMc {
|
|
155
|
+
z-index: 2;
|
|
156
|
+
opacity: 0;
|
|
157
|
+
transform: translate3d(-100%, 0, 0);
|
|
158
|
+
filter: blur(4px);
|
|
159
|
+
}
|
|
160
|
+
.ViewTransition_enterActive__3-7mt {
|
|
161
|
+
opacity: 1;
|
|
162
|
+
transform: translate3d(0, 0, 0);
|
|
163
|
+
}
|
|
164
|
+
.ViewTransition_enterDone__1pAFe {
|
|
165
|
+
filter: blur(0);
|
|
166
|
+
}
|
|
167
|
+
.ViewTransition_exit__3gsBJ {
|
|
168
|
+
opacity: 1;
|
|
169
|
+
transform: translate3d(0, 0, 0);
|
|
170
|
+
}
|
|
171
|
+
.ViewTransition_exitActive__3ephY {
|
|
172
|
+
opacity: 0;
|
|
173
|
+
transform: translate3d(100%, 0, 0);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.ViewTransition_enterActive__3-7mt,
|
|
177
|
+
.ViewTransition_exitActive__3ephY {
|
|
178
|
+
filter: blur(4px);
|
|
179
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g fill-rule="evenodd" transform="matrix(1.021277, 0, 0, 1.021277, 7.404254, -0.000004)">
|
|
4
|
+
<path d="M 4.55 23.5 L 0 11.75 L 4.55 0 L 9 11.75 L 4.55 23.5 Z M 4.54 20.704 L 7.836 11.75 L 1.087 11.75 L 4.54 20.704 Z" style="stroke: none;"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48"><path d="M21.3 34.7v-1.1h5.4v1.1Zm-8-11.15v-1.1h21.4v1.1Zm-6-11.15v-1.1h33.4v1.1Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48"><path d="M24 35.9 10.2 25.2l.85-.7L24 34.5l12.95-10 .85.7Zm0-6.15-13.8-10.7L24 8.35l13.8 10.7Zm0-11Zm0 9.6 12-9.3L24 9.8l-12 9.25Z"/></svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<svg width="170" height="62" version="1.1" viewBox="0 0 45 16.4" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g fill="#fff" stroke-width=".999" class="logo-stroke">
|
|
3
|
+
<path d="m8.38 0.00313c-0.178-0.00959-0.324 0.0068-0.412 0.0176l-0.00309 5.17e-4 -0.0222 0.00258-0.0247 0.00413h-5.3e-4c-0.343 0.0581-0.653 0.207-0.909 0.418-0.252-0.145-0.542-0.228-0.85-0.228-0.499-8.77e-6 -0.951 0.219-1.27 0.564-0.198-0.114-0.424-0.185-0.667-0.185-0.746 2.62e-5 -1.36 0.617-1.36 1.37 0 0.3 0.0993 0.576 0.263 0.802-0.145-0.0538-0.301-0.0848-0.464-0.0848-0.746 0-1.36 0.617-1.36 1.37 0 0.266 0.0795 0.512 0.211 0.723-0.0728-0.0123-0.147-0.0202-0.223-0.0202-0.746-6e-7 -1.36 0.617-1.36 1.37 0 0.415 0.19 0.785 0.482 1.04-0.292 0.252-0.482 0.622-0.482 1.04 0 0.416 0.19 0.785 0.482 1.04-0.292 0.252-0.482 0.621-0.482 1.04 0 0.754 0.613 1.37 1.36 1.37 0.0761 0 0.15-0.0078 0.223-0.0202-0.131 0.211-0.211 0.457-0.211 0.723 0 0.754 0.613 1.37 1.36 1.37 0.157 0 0.307-0.0286 0.447-0.0786-0.154 0.222-0.246 0.491-0.246 0.782 0 0.754 0.612 1.37 1.36 1.37 0.243 0 0.469-0.0705 0.667-0.185 0.318 0.345 0.769 0.564 1.27 0.564 0.305 0 0.592-0.0816 0.842-0.223 0.259 0.214 0.572 0.363 0.92 0.421l0.0103 0.0021 0.00464 5.29e-4 0.00618 5.29e-4c0.156 0.0224 0.29 0.0254 0.403 0.0258h0.0304l0.0118-5.29e-4c4.36-0.171 7.81-3.81 7.81-8.2-2.2e-5 -4.4-3.46-8.03-7.82-8.2z"/>
|
|
4
|
+
<path d="m12.6 0.59v2.11l0.197-0.00103v0.525h0.41v0.00982l1.14-0.00983h1.55v-2.64h-2.09z"/>
|
|
5
|
+
<path d="m19.5 3.83v7.65c1.78-1.42e-4 3.56 0.0016 5.33 0.0016v-0.428c0.48 0.338 1.07 0.507 1.69 0.507 0.634 0 1.24-0.181 1.73-0.538v2.09h2.58v-1.59c0.0976 0.0116 0.19 0.0357 0.292 0.0357 0.695 0 1.36-0.241 1.85-0.707 0.0862 0.0954 0.18 0.184 0.283 0.259 0.454 0.331 0.99 0.446 1.5 0.446 0.362 0 0.713-0.0981 1.05-0.243 0.303 0.172 0.621 0.243 0.884 0.243 0.204 1.64e-4 0.407-0.0264 0.603-0.078h2.04v-1.15c0.137 0.313 0.35 0.583 0.619 0.78 0.454 0.331 0.991 0.446 1.5 0.446 0.362 0 0.713-0.0981 1.05-0.243 0.302 0.172 0.621 0.243 0.883 0.243 0.267 2.91e-4 0.532-0.0445 0.783-0.132l0.62-0.217 0.113-2.39-0.633 0.107v-1.07c0-0.703-0.285-1.36-0.799-1.77-0.36-0.29-0.783-0.411-1.21-0.473l-0.016-0.0661h-0.472c-0.415 0-0.823 0.0857-1.19 0.249l-0.221-0.0946h-5.27e-4c-0.262-0.112-0.542-0.158-0.818-0.151l0.0021-0.00362c-4e-3 1.61e-5 -0.0079 0.00151-0.0118 0.00156-0.0019 5.74e-5 -0.0038-0.00111-0.0057-0.00103l-1.05 0.0351 0.0263 0.0413h-1.74v0.445c-0.492-0.386-1.09-0.522-1.68-0.522-0.758 0-1.5 0.284-1.99 0.812-0.501-0.535-1.21-0.814-1.96-0.814-0.205 0-0.402 0.0331-0.593 0.078h-2.28v0.461c-0.487-0.358-1.09-0.538-1.73-0.538-0.8 0-1.56 0.283-2.09 0.854-0.0266 0.0289-0.0491 0.0605-0.0742 0.0904-0.0888-0.121-0.187-0.234-0.299-0.334-0.488-0.436-1.11-0.61-1.71-0.608h-0.0016c-0.0906 5.11e-5 -0.18 0.0206-0.27 0.03v-1.74z"/>
|
|
6
|
+
</g>
|
|
7
|
+
<g stroke-width=".999" class="logo-typo">
|
|
8
|
+
<path d="m37.2 9.99-0.0383 0.489c-0.148 0.0518-0.305 0.0781-0.462 0.0778-0.377 0-0.623-0.143-0.692-0.571-0.246 0.364-0.746 0.571-1.24 0.571-0.723 0-1.31-0.341-1.31-1.04 0-0.582 0.508-1.04 1.5-1.21l1.02-0.171v-0.214c0-0.512-0.323-0.857-0.9-0.857-0.508 0-0.892 0.248-1.1 0.738l-0.454-0.329c0.2-0.571 0.807-0.946 1.55-0.946 0.877 0 1.52 0.419 1.52 1.32v1.91c0 0.186 0.0765 0.279 0.292 0.279 0.104-9.22e-4 0.207-0.015 0.308-0.0407zm-1.22-0.814v-0.535l-0.861 0.163c-0.678 0.124-1.02 0.349-1.02 0.714 0 0.326 0.261 0.496 0.7 0.496 0.615 0 1.18-0.326 1.18-0.837z"/>
|
|
9
|
+
<path d="m28.4 8.54c0 1.26-0.699 2.02-1.86 2.02s-1.86-0.762-1.86-2.02c0-1.26 0.7-2.02 1.86-2.02 1.16 0 1.86 0.759 1.86 2.02zm-3.11 0c0 0.923 0.469 1.48 1.25 1.48 0.777 0 1.25-0.558 1.25-1.48 0-0.923-0.468-1.48-1.25-1.48-0.779 0-1.25 0.558-1.25 1.48z"/>
|
|
10
|
+
<path d="m23.9 8v2.48h-0.615v-2.27c0-0.861-0.416-1.15-0.946-1.15-0.561 0-1.19 0.365-1.19 1.36v2.06h-0.615v-5.66h0.615v2.37c0.269-0.465 0.731-0.659 1.25-0.659 0.823-0.0027 1.5 0.471 1.5 1.47z"/>
|
|
11
|
+
<path d="m32.9 8.54c0 1.26-0.685 2.02-1.75 2.02-0.577 0-1.04-0.28-1.27-0.683v2.24h-0.615v-5.51h0.539l0.0383 0.675c0.223-0.442 0.708-0.753 1.32-0.753 1.07 0 1.75 0.753 1.75 2.02zm-0.615 0c0-0.9-0.454-1.47-1.21-1.47-0.731 0-1.21 0.551-1.21 1.43v0.0928c0 0.877 0.477 1.43 1.21 1.43 0.754-0.0027 1.21-0.576 1.21-1.47z"/>
|
|
12
|
+
<path d="m40 6.6-0.123 0.605c-0.151-0.0718-0.317-0.106-0.484-0.101-0.462 0-1.02 0.411-1.02 1.28v2.09h-0.615v-3.88h0.5l0.085 0.636c0.212-0.473 0.631-0.714 1.23-0.714 0.145-0.00542 0.29 0.0208 0.423 0.0778z"/>
|
|
13
|
+
<path d="m43.9 9.99-0.0383 0.489c-0.148 0.0518-0.305 0.0781-0.462 0.0778-0.377 0-0.623-0.143-0.692-0.571-0.246 0.364-0.746 0.571-1.24 0.571-0.723 0-1.31-0.341-1.31-1.04 0-0.582 0.508-1.04 1.5-1.21l1.02-0.171v-0.214c0-0.512-0.323-0.857-0.9-0.857-0.508 0-0.892 0.248-1.1 0.738l-0.454-0.329c0.2-0.571 0.807-0.946 1.55-0.946 0.877 0 1.52 0.419 1.52 1.32v1.91c0 0.186 0.0765 0.279 0.292 0.279 0.104-9.22e-4 0.207-0.015 0.308-0.0407zm-1.22-0.814v-0.535l-0.861 0.163c-0.677 0.124-1.02 0.349-1.02 0.714 0 0.326 0.261 0.496 0.699 0.496 0.615 0 1.18-0.326 1.18-0.837z"/>
|
|
14
|
+
</g>
|
|
15
|
+
<g stroke-width=".999" class="logo-symbol">
|
|
16
|
+
<path d="m13.6 1.71v-0.125h0.525v0.125h-0.197v0.529h-0.132v-0.53zm0.607 0.53v-0.655h0.189l0.168 0.475h0.0086l0.171-0.475h0.189v0.654h-0.134v-0.45h-0.0081l-0.162 0.45h-0.119l-0.162-0.45h-0.0086v0.45z" stroke-width=".999"/>
|
|
17
|
+
<path d="m6.86 4.11c0 0.416-0.337 0.754-0.752 0.754-0.415 7.2e-6 -0.752-0.337-0.752-0.754 0-0.416 0.337-0.754 0.752-0.754 0.415 0 0.752 0.337 0.752 0.754"/>
|
|
18
|
+
<path d="m6.86 6.17c0 0.416-0.337 0.754-0.752 0.754-0.415 7e-6 -0.752-0.337-0.752-0.754 0-0.416 0.337-0.754 0.752-0.754 0.415 0 0.752 0.337 0.752 0.754"/>
|
|
19
|
+
<path d="m8.03 1.08c-0.465 0.0783-0.806 0.482-0.806 0.954 3.83e-5 0.473 0.341 0.876 0.806 0.955v0.126c-0.474 0.0785-0.821 0.489-0.821 0.97 1.91e-4 0.481 0.347 0.891 0.821 0.969v0.126c-0.473 0.0785-0.821 0.489-0.821 0.969 0 0.481 0.347 0.891 0.821 0.969v0.126c-0.473 0.0785-0.821 0.489-0.821 0.969 0 0.481 0.347 0.891 0.821 0.969v0.126c-0.473 0.0785-0.821 0.489-0.821 0.969 0 0.481 0.347 0.891 0.821 0.969v0.126c-0.473 0.0785-0.821 0.489-0.821 0.969 1.91e-4 0.481 0.347 0.891 0.821 0.969v0.126c-0.473 0.0785-0.821 0.489-0.821 0.969 1.91e-4 0.481 0.347 0.891 0.821 0.969 0.0944 0.0135 0.166 0.0154 0.268 0.0158 3.84-0.149 6.87-3.32 6.87-7.17-1.9e-5 -3.85-3.04-7.02-6.89-7.16-0.0849-0.00536-0.171 0.00353-0.252 0.0134z"/>
|
|
20
|
+
<path d="m4.73 6.17c0 0.312-0.253 0.565-0.564 0.565-0.312 0-0.564-0.253-0.564-0.565 0-0.312 0.253-0.565 0.564-0.565 0.312 0 0.564 0.253 0.564 0.565"/>
|
|
21
|
+
<path d="m6.86 8.23c0 0.416-0.337 0.754-0.752 0.754-0.415 0-0.752-0.337-0.752-0.754 0-0.416 0.337-0.754 0.752-0.754 0.415 0 0.752 0.337 0.752 0.754"/>
|
|
22
|
+
<path d="m6.86 10.3c0 0.416-0.337 0.754-0.752 0.754-0.415 8e-6 -0.752-0.337-0.752-0.754 0-0.416 0.337-0.754 0.752-0.754 0.415 7.2e-6 0.752 0.337 0.752 0.754"/>
|
|
23
|
+
<path d="m6.86 12.3c0 0.416-0.337 0.754-0.752 0.754-0.415 7e-6 -0.752-0.337-0.752-0.754 0-0.416 0.337-0.754 0.752-0.754 0.415 0 0.752 0.337 0.752 0.754"/>
|
|
24
|
+
<path d="m6.86 2.03c0 0.416-0.337 0.754-0.752 0.754-0.415 7.2e-6 -0.752-0.337-0.752-0.754s0.337-0.754 0.752-0.754c0.415 7.2e-6 0.752 0.337 0.752 0.754"/>
|
|
25
|
+
<path d="m6.86 14.4c0 0.416-0.337 0.754-0.752 0.754-0.415 8e-6 -0.752-0.337-0.752-0.754 0-0.416 0.337-0.754 0.752-0.754 0.415 0 0.752 0.337 0.752 0.754"/>
|
|
26
|
+
<path d="m4.73 4.11c0 0.312-0.253 0.565-0.564 0.565-0.312 0-0.564-0.253-0.564-0.565 0-0.312 0.253-0.565 0.564-0.565 0.312 0 0.564 0.253 0.564 0.565"/>
|
|
27
|
+
<path d="m4.73 8.23c0 0.312-0.253 0.565-0.564 0.565-0.312 0-0.564-0.253-0.564-0.565 0-0.312 0.253-0.565 0.564-0.565 0.312 7e-6 0.564 0.253 0.564 0.565"/>
|
|
28
|
+
<path d="m4.73 10.3c0 0.312-0.253 0.565-0.564 0.565-0.312-7e-6 -0.564-0.253-0.564-0.565 0-0.312 0.253-0.565 0.564-0.565 0.312 7e-6 0.564 0.253 0.564 0.565"/>
|
|
29
|
+
<path d="m4.73 12.3c0 0.312-0.253 0.565-0.564 0.565-0.312 0-0.564-0.253-0.564-0.565s0.253-0.565 0.564-0.565c0.312 0 0.564 0.253 0.564 0.565"/>
|
|
30
|
+
<path d="m2.98 6.17c0 0.208-0.168 0.377-0.376 0.377-0.208 0-0.376-0.169-0.376-0.377 0-0.208 0.168-0.377 0.376-0.377 0.208 0 0.376 0.169 0.376 0.377"/>
|
|
31
|
+
<path d="m2.98 8.23c0 0.208-0.168 0.377-0.376 0.377-0.208 0-0.376-0.169-0.376-0.377 0-0.208 0.168-0.377 0.376-0.377 0.208 7.5e-6 0.376 0.169 0.376 0.377"/>
|
|
32
|
+
<path d="m2.98 10.3c0 0.208-0.168 0.377-0.376 0.377-0.208 0-0.376-0.169-0.376-0.377s0.168-0.377 0.376-0.377c0.208 0 0.376 0.169 0.376 0.377"/>
|
|
33
|
+
<path d="m1.61 6.17c0 0.208-0.168 0.377-0.376 0.377-0.208 0-0.376-0.169-0.376-0.377 0-0.208 0.168-0.377 0.376-0.377 0.208-1.42e-5 0.376 0.169 0.376 0.377"/>
|
|
34
|
+
<path d="m1.61 8.23c0 0.208-0.168 0.377-0.376 0.377-0.208 0-0.376-0.169-0.376-0.377 0-0.208 0.168-0.377 0.376-0.377 0.208-6.9e-6 0.376 0.169 0.376 0.377"/>
|
|
35
|
+
<path d="m1.61 10.3c0 0.208-0.168 0.377-0.376 0.377-0.208 0-0.376-0.169-0.376-0.377s0.168-0.377 0.376-0.377c0.208-7e-6 0.376 0.169 0.376 0.377"/>
|
|
36
|
+
<path d="m2.98 4.11c0 0.208-0.168 0.377-0.376 0.377-0.208 0-0.376-0.169-0.376-0.377 0-0.208 0.168-0.377 0.376-0.377 0.208 0 0.376 0.169 0.376 0.377"/>
|
|
37
|
+
<path d="m2.98 12.3c0 0.208-0.168 0.377-0.376 0.377-0.208 0-0.376-0.169-0.376-0.377 0-0.208 0.168-0.377 0.376-0.377 0.208 0 0.376 0.169 0.376 0.377"/>
|
|
38
|
+
<path d="m4.54 2.03c0 0.208-0.168 0.377-0.376 0.377-0.208 0-0.376-0.169-0.376-0.377s0.168-0.377 0.376-0.377c0.208 7.2e-6 0.376 0.169 0.376 0.377"/>
|
|
39
|
+
<path d="m4.54 14.4c0 0.208-0.168 0.377-0.376 0.377-0.208-8e-6 -0.376-0.169-0.376-0.377 0-0.208 0.168-0.377 0.376-0.377 0.208 0 0.376 0.169 0.376 0.377"/>
|
|
40
|
+
</g>
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<title>placeRow</title>
|
|
4
|
+
<g id="placeRow" fill-rule="evenodd">
|
|
5
|
+
<polygon fill="currentColor" points="12 2 16.2426407 6.24264069 15.1213203 7.36396103 13 5.242 13 11 18.759 11 16.636039 8.87867966 17.7573593 7.75735931 22 12 17.7573593 16.2426407 16.636039 15.1213203 18.757 13 13 13 13 18.757 15.1213203 16.636039 16.2426407 17.7573593 12 22 7.75735931 17.7573593 8.87867966 16.636039 11 18.759 11 13 5.242 13 7.36396103 15.1213203 6.24264069 16.2426407 2 12 6.24264069 7.75735931 7.36396103 8.87867966 5.24 11 11 11 11 5.24 8.87867966 7.36396103 7.75735931 6.24264069"/>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48"><path d="M8.6 39.4V8.6h30.8v30.8Zm1.1-21.3h28.6V9.7H9.7Zm9.9 10.1h8.8v-9h-8.8Zm0 10.1h8.8v-9h-8.8ZM9.7 28.2h8.8v-9H9.7Zm19.8 0h8.8v-9h-8.8ZM9.7 38.3h8.8v-9H9.7Zm19.8 0h8.8v-9h-8.8Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11,2V4.07C7.38,4.53 4.53,7.38 4.07,11H2V13H4.07C4.53,16.62 7.38,19.47 11,19.93V22H13V19.93C16.62,19.47 19.47,16.62 19.93,13H22V11H19.93C19.47,7.38 16.62,4.53 13,4.07V2M11,6.08V8H13V6.09C15.5,6.5 17.5,8.5 17.92,11H16V13H17.91C17.5,15.5 15.5,17.5 13,17.92V16H11V17.91C8.5,17.5 6.5,15.5 6.08,13H8V11H6.09C6.5,8.5 8.5,6.5 11,6.08M12,11A1,1 0 0,0 11,12A1,1 0 0,0 12,13A1,1 0 0,0 13,12A1,1 0 0,0 12,11Z" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48"><path d="M23.1 40.7v-9.2h1.1v4.05h16.5v1.1H24.2v4.05ZM7.3 36.65v-1.1h9.5v1.1Zm8.4-8.05v-4.05H7.3v-1.1h8.4V19.4h1.1v9.2Zm7.4-4.05v-1.1h17.6v1.1Zm8.1-8.1V7.3h1.1v4.05h8.4v1.1h-8.4v4Zm-23.9-4v-1.1h17.6v1.1Z"/></svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hopara/react",
|
|
3
|
+
"version": "0.1.96",
|
|
4
|
+
"description": "",
|
|
5
|
+
"author": "",
|
|
6
|
+
"homepage": "https://hopara.io",
|
|
7
|
+
"license": "ISC",
|
|
8
|
+
"main": "build/index.js",
|
|
9
|
+
"directories": {
|
|
10
|
+
"lib": "build"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"build"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+ssh://git@bitbucket.org/kyrix/front.git"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "react-app-rewired build"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://bitbucket.org/kyrix/front/issues"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@babel/core": "^7.18.9",
|
|
30
|
+
"@babel/preset-env": "^7.16.4",
|
|
31
|
+
"@danmarshall/deckgl-typings": "^4.9.22",
|
|
32
|
+
"@hopara/components": "^0.1.96",
|
|
33
|
+
"@hopara/config": "^0.1.96",
|
|
34
|
+
"@hopara/dataset": "^0.1.96",
|
|
35
|
+
"@hopara/encoding": "^0.1.96",
|
|
36
|
+
"@hopara/http-client": "^0.1.96",
|
|
37
|
+
"@hopara/image": "^0.1.96",
|
|
38
|
+
"@hopara/internals": "^0.1.96",
|
|
39
|
+
"@hopara/memoize": "^0.1.96",
|
|
40
|
+
"@hopara/object": "^0.1.96",
|
|
41
|
+
"@hopara/projector": "^0.1.96",
|
|
42
|
+
"@hopara/region": "git+ssh://git@bitbucket.org:kyrix/region.git#release",
|
|
43
|
+
"@hopara/spatial": "^0.1.96",
|
|
44
|
+
"babel-loader": "8.1.0",
|
|
45
|
+
"customize-cra": "^1.0.0",
|
|
46
|
+
"react-app-rewired": "^2.2.1",
|
|
47
|
+
"webpack-node-externals": "^3.0.0"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@auth0/auth0-react": "^1.10.2",
|
|
51
|
+
"@auth0/auth0-spa-js": "~1.15.0",
|
|
52
|
+
"@deck.gl/aggregation-layers": "^8.7.10",
|
|
53
|
+
"@deck.gl/core": "^8.7.10",
|
|
54
|
+
"@deck.gl/extensions": "^8.7.10",
|
|
55
|
+
"@deck.gl/geo-layers": "^8.7.10",
|
|
56
|
+
"@deck.gl/layers": "^8.7.10",
|
|
57
|
+
"@deck.gl/mesh-layers": "^8.7.10",
|
|
58
|
+
"@deck.gl/react": "^8.7.10",
|
|
59
|
+
"@emotion/react": "^11.9.0",
|
|
60
|
+
"@emotion/styled": "^11.8.1",
|
|
61
|
+
"@loaders.gl/core": "^3.0.0",
|
|
62
|
+
"@loaders.gl/gltf": "^3.0.0",
|
|
63
|
+
"@loaders.gl/images": "^3.0.0",
|
|
64
|
+
"@luma.gl/core": "8.5.16",
|
|
65
|
+
"@luma.gl/engine": "8.5.16",
|
|
66
|
+
"@material/material-color-utilities": "^0.2.0",
|
|
67
|
+
"@mui/icons-material": "^5.8.4",
|
|
68
|
+
"@mui/material": "^5.9.1",
|
|
69
|
+
"@mui/styles": "^5.9.1",
|
|
70
|
+
"@mui/system": "^5.9.1",
|
|
71
|
+
"@nebula.gl/edit-modes": "~1.0.2",
|
|
72
|
+
"@nebula.gl/layers": "~1.0.2",
|
|
73
|
+
"@turf/bbox": "^6.5.0",
|
|
74
|
+
"@turf/bbox-polygon": "^6.5.0",
|
|
75
|
+
"@turf/centroid": "^6.5.0",
|
|
76
|
+
"@turf/distance": "^6.5.0",
|
|
77
|
+
"@turf/helpers": "^6.5.0",
|
|
78
|
+
"@turf/invariant": "^6.5.0",
|
|
79
|
+
"@turf/meta": "^6.5.0",
|
|
80
|
+
"@turf/polygon-to-line": "^6.5.0",
|
|
81
|
+
"@turf/rhumb-bearing": "^6.5.0",
|
|
82
|
+
"@turf/rhumb-distance": "^6.5.0",
|
|
83
|
+
"@turf/transform-rotate": "^6.5.0",
|
|
84
|
+
"@turf/transform-translate": "^6.5.0",
|
|
85
|
+
"ajv": "^6.0.0",
|
|
86
|
+
"case": "^1.6.3",
|
|
87
|
+
"class-transformer": "^0.5.1",
|
|
88
|
+
"colorsys": "^1.0.22",
|
|
89
|
+
"d3": "^6.3.1",
|
|
90
|
+
"d3-color": "^3.1.0",
|
|
91
|
+
"d3-svg-legend": "^2.25.6",
|
|
92
|
+
"dayjs": "^1.11.3",
|
|
93
|
+
"deck.gl": "^8.7.10",
|
|
94
|
+
"fast-memoize": "~2.5.2",
|
|
95
|
+
"feather-icons-react": "~0.4.3",
|
|
96
|
+
"gl-matrix": "3.0.0",
|
|
97
|
+
"js-cookie": "^3.0.1",
|
|
98
|
+
"js-sentencecase": "~1.2.1",
|
|
99
|
+
"jwt-decode": "^3.1.2",
|
|
100
|
+
"lodash": "~4.17.21",
|
|
101
|
+
"mapbox-gl": "npm:empty-npm-package@1.0.0",
|
|
102
|
+
"maplibre-gl": "^2.1.7",
|
|
103
|
+
"math.gl": "^3.4.3",
|
|
104
|
+
"moment": "^2.29.1",
|
|
105
|
+
"nebula.gl": "~1.0.2",
|
|
106
|
+
"query-string": "^6.13.8",
|
|
107
|
+
"react-beautiful-dnd": "^13.1.0",
|
|
108
|
+
"react-color": "^2.19.3",
|
|
109
|
+
"react-datepicker": "^4.8.0",
|
|
110
|
+
"react-draggable": "~4.4.3",
|
|
111
|
+
"react-is": "^16.8.0",
|
|
112
|
+
"react-map-gl": "^7.0.10",
|
|
113
|
+
"react-resize-detector": "^7.1.2",
|
|
114
|
+
"react-table": "^7.7.0",
|
|
115
|
+
"react-toastify": "^8.0.3",
|
|
116
|
+
"react-transition-group": "~4.4.1",
|
|
117
|
+
"redux-persist": "~6.0.0",
|
|
118
|
+
"redux-saga": "~1.1.3",
|
|
119
|
+
"reflect-metadata": "~0.1.13",
|
|
120
|
+
"reselect": "~4.0.0",
|
|
121
|
+
"setimmediate": "^1.0.5",
|
|
122
|
+
"slugify": "~1.4.6",
|
|
123
|
+
"socket.io-client": "~2.3.1",
|
|
124
|
+
"supercluster": "^7.1.4",
|
|
125
|
+
"typesafe-actions": "^5.1.0",
|
|
126
|
+
"vega": "^5.21.0",
|
|
127
|
+
"vega-lite": "^5.1.1"
|
|
128
|
+
},
|
|
129
|
+
"peerDependencies": {
|
|
130
|
+
"react": "^18.2.0",
|
|
131
|
+
"react-dom": "^18.2.0",
|
|
132
|
+
"react-redux": "^8.0.4",
|
|
133
|
+
"redux": "^4.2.0"
|
|
134
|
+
},
|
|
135
|
+
"browserslist": [
|
|
136
|
+
"defaults, not ie 11"
|
|
137
|
+
]
|
|
138
|
+
}
|