@woosmap/ui 3.22.0 → 3.26.0
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/package.json +1 -1
- package/src/components/Demo/SkeletonDemo.js +6 -4
- package/src/styles/commons/base.styl +0 -2
- package/src/styles/console/input.styl +2 -0
- package/src/styles/console/select.styl +2 -0
- package/src/styles/next-website/demo.styl +21 -13
- package/src/styles/next-website/input.styl +2 -0
- package/src/styles/next-website/mixins.styl +1 -1
- package/src/styles/next-website/select.styl +2 -0
- package/src/styles/next-website/variables.styl +1 -0
- package/src/styles/website/input.styl +2 -0
- package/src/styles/website/select.styl +2 -0
package/package.json
CHANGED
|
@@ -176,10 +176,12 @@ export default class SkeletonDemo extends Component {
|
|
|
176
176
|
{filters2}
|
|
177
177
|
</div>
|
|
178
178
|
)}
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
179
|
+
{withMap && (
|
|
180
|
+
<div className="demo__map">
|
|
181
|
+
<div className="map" ref={this.mapDivRef} />
|
|
182
|
+
</div>
|
|
183
|
+
)}
|
|
184
|
+
{mainContent && <div className="demo__content">{mainContent}</div>}
|
|
183
185
|
</div>
|
|
184
186
|
<div className="demo__data">
|
|
185
187
|
{result && (
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
.demo
|
|
3
3
|
fullwh()
|
|
4
|
-
margin
|
|
4
|
+
margin auto
|
|
5
5
|
color $secondary
|
|
6
6
|
.title
|
|
7
7
|
font-size $title3
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
.map
|
|
45
45
|
width 100%
|
|
46
46
|
height 100%
|
|
47
|
+
background-color $inputDemoBgColor
|
|
47
48
|
&__results
|
|
48
49
|
width $demofilterWidth
|
|
49
50
|
display flex
|
|
@@ -93,7 +94,7 @@
|
|
|
93
94
|
br($demoBr)
|
|
94
95
|
background-color $inputDemoBgColor !important
|
|
95
96
|
border-color $inputDemoBorderColor
|
|
96
|
-
font-size $inputFontSizeDemo
|
|
97
|
+
font-size $inputFontSizeDemo !important
|
|
97
98
|
height $inputDemoHeight
|
|
98
99
|
padding 0 1rem 0 1rem
|
|
99
100
|
.mbi
|
|
@@ -101,15 +102,15 @@
|
|
|
101
102
|
.input
|
|
102
103
|
&__label
|
|
103
104
|
inputFont()
|
|
104
|
-
font-size $inputFontSizeDemo
|
|
105
|
+
font-size $inputFontSizeDemo !important
|
|
105
106
|
.select
|
|
106
107
|
.asyncselect
|
|
107
|
-
inputFont()
|
|
108
|
-
font-size $inputFontSizeDemo
|
|
109
108
|
&__control
|
|
109
|
+
inputFont()
|
|
110
|
+
font-size $inputFontSizeDemo !important
|
|
110
111
|
border-radius $demoBr !important
|
|
111
112
|
background-color $inputDemoBgColor !important
|
|
112
|
-
min-height
|
|
113
|
+
min-height $inputDemoHeight !important
|
|
113
114
|
height auto !important
|
|
114
115
|
&:not(.select__control--is-focused):not(.asyncselect__control--is-focused)
|
|
115
116
|
border-color $inputDemoBorderColor !important
|
|
@@ -167,7 +168,7 @@
|
|
|
167
168
|
&__filters
|
|
168
169
|
.btn
|
|
169
170
|
br(.2)
|
|
170
|
-
font-size $inputFontSizeDemo
|
|
171
|
+
font-size $inputFontSizeDemo !important
|
|
171
172
|
line-height 2.2rem
|
|
172
173
|
padding 0 .8rem
|
|
173
174
|
height $inputDemoHeight
|
|
@@ -193,18 +194,18 @@
|
|
|
193
194
|
color $inputDemoBgColor
|
|
194
195
|
&.language
|
|
195
196
|
&.transportation
|
|
196
|
-
mbi(.
|
|
197
|
+
mbi(.6)
|
|
197
198
|
.btn
|
|
198
199
|
br(.3)
|
|
199
200
|
border 0
|
|
200
|
-
height
|
|
201
|
-
padding .
|
|
201
|
+
height 2.2rem
|
|
202
|
+
padding .4rem
|
|
202
203
|
&.active
|
|
203
204
|
background-color $light
|
|
204
205
|
box-shadow 0 0 .1rem .1rem $activeColorDark
|
|
205
206
|
.flag
|
|
206
|
-
width 2.
|
|
207
|
-
height 1.
|
|
207
|
+
width 2.4rem
|
|
208
|
+
height 1.6rem
|
|
208
209
|
&.transportation
|
|
209
210
|
.btn
|
|
210
211
|
height 2.8rem
|
|
@@ -232,9 +233,16 @@
|
|
|
232
233
|
br(2)
|
|
233
234
|
inputFont()
|
|
234
235
|
padding 0 1rem
|
|
235
|
-
font-size $inputFontSizeDemo
|
|
236
|
+
font-size $inputFontSizeDemo !important
|
|
236
237
|
border .1rem solid $activeColor
|
|
237
238
|
color darken($activeColor, 20%)
|
|
239
|
+
&--address
|
|
240
|
+
&__formcontainer
|
|
241
|
+
mbib(.9)
|
|
242
|
+
.input
|
|
243
|
+
&__label
|
|
244
|
+
margin-bottom .2rem
|
|
245
|
+
|
|
238
246
|
@media screen and (max-width 769px)
|
|
239
247
|
.demo__showcase
|
|
240
248
|
max-height 100%
|