@woosmap/ui 4.224.1 → 4.226.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "4.224.1",
3
+ "version": "4.226.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -181,7 +181,7 @@ export default class PricingSimulator extends Component {
181
181
  </ul>
182
182
  <div className="pricing-total mobile">
183
183
  <div className="pricing-total__label">
184
- <span className="pricing-total__label__title">{tr('Monthly price (Estimated)')}</span>
184
+ <span className="pricing-total__label__title">{tr('Monthly cost estimation')}</span>
185
185
  {contactSale && (
186
186
  <span className="pricing-total__label__info">
187
187
  {tr('* Some products require contact sales for pricing')}
@@ -212,7 +212,6 @@ export default class PricingSimulator extends Component {
212
212
  {PricingData[category].description}
213
213
  </p>
214
214
  </div>
215
- <span className="pricing-simulator__prod-price-label">{tr('Monthly cost estimation')}</span>
216
215
  </div>
217
216
  {Object.keys(PricingData[category].pricings).map((pricingKey) => {
218
217
  const productPricing = PricingData[category].pricings[pricingKey];
@@ -234,11 +233,20 @@ export default class PricingSimulator extends Component {
234
233
  </div>
235
234
  <div className="pricing-simulator__wrapper__pricebox">
236
235
  <div className="pricing-total desktop">
237
- <div className="pricing-total__label">{tr('Monthly price')}</div>
236
+ <div className="pricing-total__label">{tr('Monthly cost estimation')}</div>
238
237
  <div className="pricing-total__amount">
239
238
  {totalDisplayed}
240
239
  {contactSale && <span className="pricing-total__amount__asterisk">*</span>}
241
240
  </div>
241
+ <div>
242
+ <a
243
+ href="/contact?originfunnel=signup&utm_source=pricing-simulator"
244
+ className="btn btn--primary"
245
+ data-gaid="signup-pricing-simulator"
246
+ >
247
+ <span className="btn__label">{tr('Create an account')}</span>
248
+ </a>
249
+ </div>
242
250
  {contactSale && (
243
251
  <div className="pricing-total__amount__info">
244
252
  {tr('* Some products require contact sales for pricing')}
@@ -249,7 +249,10 @@ export default class PricingSlider extends Component {
249
249
  value={aboveLastTier || computedQueries}
250
250
  />
251
251
  </div>
252
- <div className="pricing-slider__price">{displayedAmount}</div>
252
+ <div className="pricing-slider__price">
253
+ <span className="pricing-simulator__prod-price-label">{tr('Monthly cost estimation')}</span>
254
+ {displayedAmount}
255
+ </div>
253
256
  </div>
254
257
  {displayedPricing.length > 0 && (
255
258
  <div className="pricing-slider__detailed-price-wrapper">
@@ -1,11 +1,343 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
2
+
3
+
4
+
5
+
6
+ $fontFamily = 'Jost', sans-serif
7
+ $fontFamily2 = 'Roboto Mono', monospace
8
+ $fontWeight = 360
9
+
10
+ $fontSize = 2.1rem
11
+ $fontSizeHeader = 1.7rem
12
+ $fontSizeFooter = 1.6rem
13
+
14
+ $fontSizeSmall = 1.8rem
15
+ $fontSizeMini = 1.6rem
16
+
17
+ $title = 6.4rem
18
+ $title2 = 5rem
19
+ $title3 = 3.8rem
20
+ $title4 = 3rem
21
+ $title5 = 2.6rem
22
+ $title6 = 2.2rem
23
+
24
+ $sectionPadding = 8rem
25
+
26
+
27
+ $gap = 2.2rem
28
+
29
+ $borderRadius = $gap
30
+
31
+
32
+ $padding = 2rem
33
+ $contentPadding = 2.8rem
34
+
35
+
36
+ $buttonHeight = 3.8rem
37
+ $buttonPadding = 0 $padding 0 $padding
38
+ $buttonFontSize = $fontSize - .2
39
+ $buttonLineHeight = $fontSize * 2
40
+
41
+ $buttonHeightSmall = 4rem !important
42
+ $buttonPaddingSmall = 0 1.4rem 0 1.4rem
43
+ $buttonFontSizeSmall = 1.6rem
44
+ $buttonLineHeightSmall = 2.2rem
45
+
46
+ $buttonHeightMini = $buttonHeight - 1.4
47
+ $buttonPaddingMini = 0 $padding - 1.2 0 $padding - 1.2
48
+ $buttonFontSizeMini = $fontSizeSmall - .4
49
+ $buttonLineHeightMini = $buttonFontSizeMini * 2
50
+
51
+ $buttonHeightNano = $buttonHeight - 1.4
52
+ $buttonPaddingNano = 0 $padding - .4 0 $padding - .4
53
+ $buttonFontSizeNano = $fontSize - .3
54
+ $buttonLineHeightNano = $buttonFontSizeNano * 2
55
+
56
+ $buttonHeightLarge = 6rem
57
+ $buttonFontSizeLarge = 2rem
58
+ $buttonLineHeightLarge = 3rem
59
+ $buttonPaddingLarge = 0 3rem
60
+
61
+
62
+ $inputMinWidth = 16rem
63
+
64
+ $inputHeight = $buttonHeight
65
+ $inputPadding = 0 1rem .2rem 1rem
66
+ $inputFontSize = $fontSize
67
+ $inputLineHeight = $buttonLineHeight
68
+
69
+ $inputHeightSmall = $buttonHeightSmall
70
+ $inputPaddingSmall = 0 $padding - .1 .2rem $padding - .1
71
+ $inputFontSizeSmall = $buttonFontSizeSmall
72
+ $inputLineHeightSmall = $buttonLineHeightSmall
73
+
74
+ $inputHeightLarge = $buttonHeightLarge
75
+ $inputPaddingLarge = 0 $padding + .4 .2rem $padding + .4
76
+ $inputFontSizeLarge = $buttonFontSizeLarge
77
+ $inputLineHeightLarge = $buttonLineHeightLarge
78
+
79
+ // tabs
80
+
81
+ $tabBtnHeight = $buttonHeight
82
+ $tabBtnPillHeight = $buttonHeight
83
+
84
+
1
85
  $pR = .6rem
2
86
  $discount = #00bd9a
3
87
  $cardColor = rgba(40, 50, 98, .6)
4
88
  $cardColorHover = #1f2339
5
89
  $light14 = rgba($light, 14%)
6
90
  $dark14 = rgba($dark, 14%)
91
+
92
+ font()
93
+ font-family $fontFamily
94
+ font-size $fontSize
95
+ font-weight $fontWeight
96
+ color $lightText
97
+ line-height $fontSize + .4
98
+ -webkit-font-smoothing antialiased
99
+ -moz-osx-font-smoothing grayscale
100
+
101
+ a
102
+ focus()
103
+ .btn
104
+ &--link
105
+ &--link-flex
106
+ transition unset
107
+
108
+ body
109
+ font()
110
+ width 100%
111
+ height 100%
112
+ line-height 1.4
113
+ background-color $bodyColorWebsite
114
+
115
+ button[lwc-56vbshdpqil]
116
+ button.closeButton[lwc-56vbshdpqil]
117
+ border-radius 5rem
118
+ .red
119
+ color red
120
+ .react-bricks-content
121
+ background-color $bodyColorWebsite
122
+ .back-link
123
+ margin-bottom 2rem
124
+ #react-bricks-brick
125
+ .wrapper
126
+ padding 2rem
127
+ display flex
128
+ align-items center
129
+ flex-direction column
130
+ .article
131
+ width 100%
132
+ .sections-carousel__wrapper
133
+ .sections-carousel__tabs
134
+ gap .2rem
135
+ &__item
136
+ background-color $light6
137
+ .slick-list
138
+ width 90vw !important
139
+ .sections-carousel__tabs__item
140
+ flex-wrap wrap
141
+
142
+ .header__logo
143
+ display none
144
+ max-width 16rem
145
+ img
146
+ max-width 16rem
147
+ .select
148
+ position absolute
149
+ top 20rem
150
+ right 2rem
151
+ max-width 10rem
152
+ .select__control
153
+ .select__value-container
154
+ max-width 10rem !important
155
+ width 10rem !important
156
+
157
+
158
+
159
+ // commons
160
+ img
161
+ display block
162
+ max-width 100%
163
+ .mbi
164
+ > :not(:last-child)
165
+ margin-right marginMbi
166
+ &--small
167
+ > :not(:last-child)
168
+ margin-right marginMbi - .4
169
+ &--large
170
+ > :not(:last-child)
171
+ margin-right marginMbi + .8
172
+ .mbib
173
+ > :not(:last-child)
174
+ margin-bottom marginMbi
175
+ &--small
176
+ > :not(:last-child)
177
+ margin-bottom marginMbi - .4
178
+ &--large
179
+ > :not(:last-child)
180
+ margin-bottom marginMbi + .8
181
+ .no-shrink
182
+ flex-shrink 0
183
+ .fullw
184
+ width 100%
185
+ min-width 0
186
+ .fullh
187
+ height 100%
188
+ min-height 0
189
+ .fullwh
190
+ height 100%
191
+ width 100%
192
+ min-width 0
193
+ min-height 0
194
+ .ellipsis
195
+ white-space nowrap
196
+ overflow hidden
197
+ text-overflow ellipsis
198
+
199
+ h1
200
+ h2
201
+ &.main-title
202
+ .section--industry-header &
203
+ .section--story-header &
204
+ font-size $title
205
+ margin-bottom 0
206
+
207
+ h1
208
+ font-size $title
209
+ font-weight 600
210
+ line-height 1.2
211
+ max-width $wrapperTitle
212
+ width 100%
213
+ margin-left auto
214
+ margin-right auto
215
+ margin-bottom $margin + 2
216
+ color $lightTitle
217
+ letter-spacing -.12rem
218
+ text-transform unset
219
+ .section--light &
220
+ .section--white &
221
+ .section--grey &
222
+ color $darkTitle
223
+ .section--story-hero &
224
+ .section--industry-hero &
225
+ max-width unset
226
+ color $lightTitle !important
227
+ font-size $title - .7 !important
228
+ text-align center
229
+ text-shadow 0 0 1rem $dark30
230
+ margin-bottom 0
231
+ &.section__title
232
+ font-weight 600
233
+ font-size $title2
234
+ line-height 1.2
235
+ margin-bottom $margin
236
+
237
+
238
+ .section--home-hero
239
+ h1
240
+ font-size $title + 1
241
+ .section--hero h2 &
242
+ margin-bottom $marginLarge
243
+
244
+ h2
245
+ font-size $title2
246
+ line-height 1.1
247
+ margin-bottom $margin
248
+ font-weight 600
249
+ color $lightTitle
250
+ .section--light &
251
+ .section--white &
252
+ .section--grey &
253
+ color $darkTitle
254
+ &.section__title
255
+ font-weight 600
256
+ font-size $title3
257
+ line-height 1.1
258
+ margin-bottom $margin
259
+ &.article__title
260
+ font-size $title - .8
261
+ font-weight 600
262
+ line-height 1.2
263
+ margin-left auto
264
+ margin-right auto
265
+ margin-bottom $marginLarge
266
+ .section--logos &
267
+ .layout-block &
268
+ text-transform uppercase
269
+ letter-spacing .25rem
270
+ font-weight 400
271
+ font-size 2rem
272
+ .layout-block &
273
+ color $logo2
274
+ font-size 1.6rem
275
+ margin-bottom 2rem
276
+ .section--logos &
277
+ margin-bottom $marginLarge - 3rem
278
+ .section--story-hero &
279
+ .section--industry-hero &
280
+ color $lightTitle !important
281
+ text-shadow 0 0 1rem $dark30
282
+ .section--txt-top &
283
+ font-size $title2
284
+ line-height 1.2
285
+ font-weight 600
286
+ margin-bottom $margin
287
+ max-width unset
288
+ h3
289
+ font-weight 600
290
+ font-size $title3
291
+ line-height 1.1
292
+ color $lightTitle
293
+ margin-bottom $margin
294
+ .section--light &
295
+ .section--white &
296
+ .section--grey &
297
+ color $darkTitle
298
+ .layout-block &
299
+ font-size 1.9rem
300
+ line-height 1
301
+ font-weight 500
302
+ text-transform uppercase
303
+ letter-spacing .15rem
304
+ margin-bottom 1.8rem
305
+
306
+ h4
307
+ font-weight 600
308
+ font-size $title4
309
+ line-height $title4 * 1.3
310
+ margin-bottom $margin
311
+ color $lightTitle
312
+ .section--light &
313
+ .section--white &
314
+ .section--grey &
315
+ color $darkTitle
316
+ h5
317
+ font-weight 600
318
+ font-size $title5
319
+ line-height $title5 * 1.3
320
+ margin-bottom $margin
321
+ color $lightTitle
322
+ .section--light &
323
+ .section--white &
324
+ .section--grey &
325
+ color $darkTitle
326
+ h6
327
+ font-weight 600
328
+ font-size $title6
329
+ line-height $title6 * 1.3
330
+ margin-bottom $margin
331
+ color $lightTitle
332
+ .section--light &
333
+ .section--white &
334
+ .section--grey &
335
+ color $darkTitle
336
+
337
+
7
338
  .pricing
8
339
  &-container
340
+ font-family 'Jost', sans-serif
9
341
  width 100%
10
342
  border .1rem solid $light20
11
343
  border-top 0
@@ -16,8 +348,7 @@ $dark14 = rgba($dark, 14%)
16
348
  border-top 0
17
349
  &-nav
18
350
  position sticky
19
- // top 10.7rem
20
- top 0
351
+ top 10.7rem
21
352
  z-index 10000
22
353
  width 100%
23
354
  &-description
@@ -45,7 +376,7 @@ $dark14 = rgba($dark, 14%)
45
376
  font-size 1.9rem
46
377
  border-top .1rem solid $light20
47
378
  border-bottom .1rem solid $light20
48
- background-color lighten($cardColor, 10%)
379
+ background-color lighten(rgba(40, 50, 98, .6), 10%)
49
380
  .section--light &
50
381
  .section--white &
51
382
  .section--grey &
@@ -70,7 +401,7 @@ $dark14 = rgba($dark, 14%)
70
401
  gap 1.6rem
71
402
  flex-wrap wrap
72
403
  padding 1rem 2rem
73
- background-color lighten($cardColor, 5%)
404
+ background-color lighten(rgba(40, 50, 98, .6), 5%)
74
405
  border-bottom .1rem solid $light20
75
406
  color $light60
76
407
  .section--light &
@@ -79,11 +410,13 @@ $dark14 = rgba($dark, 14%)
79
410
  background-color #fbfbfb
80
411
  border-bottom .1rem solid $dark10
81
412
  color $dark
413
+ @media screen and (max-width 560px)
414
+ gap 0.5rem
82
415
  @media screen and (max-width 360px)
83
416
  justify-content center
84
417
  &.desktop
85
418
  position sticky
86
- top 6rem
419
+ top 16.7rem
87
420
  left 0
88
421
  padding 3rem
89
422
  text-align center
@@ -159,10 +492,10 @@ $dark14 = rgba($dark, 14%)
159
492
  margin-right auto
160
493
  margin-left auto
161
494
  .desktop &
162
- br()
495
+ br(15)
163
496
  display inline-block
164
497
  margin auto
165
- font-size 3rem
498
+ font-size 2rem
166
499
  padding 1.6rem 2rem
167
500
  min-width 16rem
168
501
  font-weight 600
@@ -178,13 +511,13 @@ $dark14 = rgba($dark, 14%)
178
511
  margin-top 0.5rem
179
512
  font-style italic
180
513
  &__asterisk
181
- font-size 2rem
514
+ font-size 1.4rem
182
515
  position relative
183
516
  top -0.8rem
184
517
  margin-left: 0.5rem
185
518
  .mobile &
186
519
  font-size 1.3rem
187
- top auto
520
+ top -1rem
188
521
  line-height 1.3
189
522
 
190
523
  &-simulator
@@ -212,11 +545,11 @@ $dark14 = rgba($dark, 14%)
212
545
  flex-shrink 0
213
546
  &__pricebox
214
547
  position relative
215
- flex: 1 1 0
548
+ flex: 3 1 0
216
549
  @media screen and (max-width 960px)
217
550
  display none
218
551
  &__data
219
- flex: 2 1 0
552
+ flex: 5 1 0
220
553
  border-right .1rem solid $light14
221
554
  .section--light &
222
555
  .section--white &
@@ -254,13 +587,9 @@ $dark14 = rgba($dark, 14%)
254
587
  &__prod-price-label
255
588
  font-size 1rem
256
589
  font-weight 460
257
- margin-left auto
258
- margin-right 1.7rem
259
590
  text-transform uppercase
260
591
  letter-spacing .2rem
261
- margin-right 4rem
262
- margin-top 3rem
263
- width 11rem
592
+ text-align center
264
593
  &-slider
265
594
  &__wrapper
266
595
  trans()
@@ -351,15 +680,17 @@ $dark14 = rgba($dark, 14%)
351
680
  min-width 10rem !important
352
681
  text-align center !important
353
682
  height 4rem !important
354
- font-weight 460 !important
683
+ font-weight 560 !important
355
684
  color $dark !important
685
+ padding-top .2rem !important
686
+ font-size 1.8rem !important
356
687
  &__price
357
688
  display flex
358
689
  flex-direction column
359
690
  align-items center
360
691
  width 15rem
361
692
  .button-contact
362
- margin-top 2.9rem
693
+ margin-top .4rem
363
694
  .btn
364
695
  color $light !important
365
696
  .free-label
@@ -373,7 +704,7 @@ $dark14 = rgba($dark, 14%)
373
704
  line-height 2.2rem
374
705
  text-align center
375
706
  font-weight 600
376
- margin-top 2.8rem
707
+ margin-top .4rem
377
708
  white-space nowrap
378
709
  color $light
379
710
  .section--light &
@@ -453,15 +784,38 @@ $dark14 = rgba($dark, 14%)
453
784
  padding 1rem 1.8rem
454
785
  gap 1.2rem
455
786
  flex-basis 100%
456
- &:nth-child(even)
457
- background-color $dark4
787
+ &:not(:last-child)
788
+ border-bottom: .1rem solid $dark6
789
+ &:first-child
790
+ border-top: .1rem solid $dark6
791
+
792
+ &:last-child:not(:first-child)
793
+ background-color: $dark3
794
+ .pricing-summary
795
+ &-info
796
+ font-weight: 800
797
+ font-size: 1.6rem
798
+ &-product
799
+ font-size: 1.6rem
800
+ font-weight: 800
801
+ text-transform: uppercase
802
+ &-asterisk
803
+ position relative
804
+ font-size: 1.2rem
805
+ bottom: .6rem
806
+ &-amount
807
+ font-size: 1.6rem
808
+ font-weight: 800
809
+ flex: 3
810
+ text-align: right !important
458
811
  &-wrapper
459
812
  br()
460
813
  display flex
461
814
  flex-direction column
462
815
  border .1rem solid $borderColor
463
- max-height: calc(100vh - 27rem)
816
+ max-height: calc(100vh - 40rem)
464
817
  margin-top 2rem
818
+ overflow: hidden
465
819
  &-content
466
820
  overflow-y: auto
467
821
  &-header
@@ -485,21 +839,36 @@ $dark14 = rgba($dark, 14%)
485
839
  line-height 3
486
840
  text-transform uppercase
487
841
  letter-spacing .1rem
488
- border-bottom .1rem solid $light14
489
- .section--light &
490
- .section--white &
491
- .section--grey &
492
- border-bottom .1rem solid $borderColor
493
842
 
494
843
  &-info
495
- flex 3
844
+ flex 4
496
845
  text-align: left
497
846
  &-product
498
847
  flex 1
499
848
  margin-bottom 0.5rem
849
+ font-size 1.5rem
850
+ font-weight: 460
851
+ color: $light
852
+ .section--light &
853
+ .section--white &
854
+ .section--grey &
855
+ color $dark
856
+ &-estimated
857
+ margin-left: .5rem
858
+ font-size: 1rem
500
859
  &-amount
501
860
  font-weight: 700
502
- flex 1
861
+ flex 2
862
+ font-size 1.3rem
863
+ color: $light
864
+ text-align: right
865
+ .section--light &
866
+ .section--white &
867
+ .section--grey &
868
+ color $dark
869
+ .highlight-info
870
+ color $logo3
871
+ font-weight: 550
503
872
  &-queries
504
873
  font-weight 460
505
874
  font-size 1.2rem
@@ -540,7 +909,7 @@ $dark14 = rgba($dark, 14%)
540
909
  order 4
541
910
  margin-top 4rem
542
911
  margin 2rem auto 0 auto
543
- width 80vw
912
+ width 90%
544
913
  min-width auto
545
914
  .pricing-slider__queries
546
915
  order 3
@@ -548,7 +917,6 @@ $dark14 = rgba($dark, 14%)
548
917
  flex-direction column
549
918
  align-items center
550
919
  padding 0 2rem
551
- width 100vw
552
920
  &__documentation
553
921
  display inline-block
554
922
  width 100%
@@ -583,7 +951,7 @@ $dark14 = rgba($dark, 14%)
583
951
  &:hover
584
952
  background-color transparent !important
585
953
 
586
- @media screen and (max-width 360px)
954
+ @media screen and (max-width 560px)
587
955
  .pricing
588
956
  &-nav
589
957
  top 6.6rem
@@ -7,6 +7,9 @@
7
7
  @import "./console/variables.styl"
8
8
  @import "./console/colors.styl"
9
9
 
10
+ // Used to debug or improve pricing slider
11
+ // @import "./console/pricing-slider.styl"
12
+
10
13
  @import "./commons/__all.styl"
11
14
  @import "./commons/flags.styl"
12
15
  @import "./console/icon.styl"
@@ -20,4 +23,5 @@
20
23
  @import "./console/button.styl"
21
24
  @import "./console/input.styl"
22
25
  @import "./console/select.styl"
23
- @import "./console/tab.styl"
26
+ @import "./console/tab.styl"
27
+
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="Encoding">
4
- <file url="PROJECT" charset="UTF-8" />
5
- </component>
6
- </project>
@@ -1,30 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <profile version="1.0">
3
- <option name="myName" value="Project Default" />
4
- <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
- <inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
6
- <option name="ignoredPackages">
7
- <value>
8
- <list size="16">
9
- <item index="0" class="java.lang.String" itemvalue="Fabric" />
10
- <item index="1" class="java.lang.String" itemvalue="PyYAML" />
11
- <item index="2" class="java.lang.String" itemvalue="Jinja2" />
12
- <item index="3" class="java.lang.String" itemvalue="github3.py" />
13
- <item index="4" class="java.lang.String" itemvalue="schedule" />
14
- <item index="5" class="java.lang.String" itemvalue="tzlocal" />
15
- <item index="6" class="java.lang.String" itemvalue="pydantic" />
16
- <item index="7" class="java.lang.String" itemvalue="django" />
17
- <item index="8" class="java.lang.String" itemvalue="django-cors-middleware" />
18
- <item index="9" class="java.lang.String" itemvalue="timezonefinder" />
19
- <item index="10" class="java.lang.String" itemvalue="application_kit" />
20
- <item index="11" class="java.lang.String" itemvalue="requests" />
21
- <item index="12" class="java.lang.String" itemvalue="PLY" />
22
- <item index="13" class="java.lang.String" itemvalue="ddtrace" />
23
- <item index="14" class="java.lang.String" itemvalue="humanize" />
24
- <item index="15" class="java.lang.String" itemvalue="types-redis" />
25
- </list>
26
- </value>
27
- </option>
28
- </inspection_tool>
29
- </profile>
30
- </component>
@@ -1,6 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <settings>
3
- <option name="USE_PROJECT_PROFILE" value="false" />
4
- <version value="1.0" />
5
- </settings>
6
- </component>
package/.idea/misc.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8" project-jdk-type="Python SDK" />
4
- </project>
package/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/ui.iml" filepath="$PROJECT_DIR$/.idea/ui.iml" />
6
- </modules>
7
- </component>
8
- </project>
package/.idea/ui.iml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="PYTHON_MODULE" version="4">
3
- <component name="NewModuleRootManager">
4
- <content url="file://$MODULE_DIR$" />
5
- <orderEntry type="inheritedJdk" />
6
- <orderEntry type="sourceFolder" forTests="false" />
7
- </component>
8
- </module>
package/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="" vcs="Git" />
5
- </component>
6
- </project>
@@ -1,7 +0,0 @@
1
- import dynamic from 'next/dynamic';
2
-
3
- const getIcon = async (icon) => {
4
- return dynamic(() => import(`../../icons/${icon}.svg`));
5
- };
6
-
7
- export default getIcon;
@@ -1,573 +0,0 @@
1
- import localitiesImgSq from '../../images/products/product-localities-sq.png';
2
- import geolocationImgSq from '../../images/products/product-geolocation-sq.png';
3
- import storesImgSq from '../../images/products/product-stores-sq.png';
4
- import distanceImgSq from '../../images/products/product-distance-sq.png';
5
- import mapImgSq from '../../images/products/product-map-sq.png';
6
- import indoorImgSq from '../../images/products/product-indoor-sq.png';
7
- // import geofencingImgSq from '../../images/products/product-geofencing-sq.png';
8
- // import transitImgSq from '../../images/products/product-transit-sq.png';
9
-
10
- /* eslint-disable */
11
-
12
-
13
- const Pricing = {
14
- Localities: {
15
- image: localitiesImgSq,
16
- description: "Find the right address and speed up the customer journey with autocompletion and geocode features",
17
- pricings: {
18
- 'Autocomplete': {
19
- docLink: 'https://developers.woosmap.com/products/localities/autocomplete',
20
- defaultQueries: 1,
21
- publicTierCount: 1,
22
- unit: "Monthly Requests",
23
- description:
24
- "Get suggestions for addresses, localities, postcodes and more with typo tolerance. Per terms, 'autocomplete' cannot be used alone, the 'details' endpoint is mandatory for detailed information.",
25
- pricing: [],
26
- discountEligible: true,
27
- },
28
- 'Search': {
29
- docLink: 'https://developers.woosmap.com/products/localities/search',
30
- defaultQueries: 0,
31
- publicTierCount: 1,
32
- unit: "Monthly Requests",
33
- description:
34
- "Get suggestions for points of interest based on their name, categories and city",
35
- pricing: [],
36
- discountEligible: true,
37
- },
38
- 'Details': {
39
- docLink: 'https://developers.woosmap.com/products/localities/details',
40
- defaultQueries: 0,
41
- publicTierCount: 4,
42
- unit: "Monthly Requests",
43
- description:
44
- "Get details on Autocomplete and Search suggestions",
45
- pricing: [
46
- [5000, 0],
47
- [100000, 6.26],
48
- [500000, 5.0],
49
- [1000000, 4.69],
50
- [5000000, 2.35],
51
- [10000000, 0.59],
52
- [20000000, 0.46],
53
- [50000000, 0.46],
54
- ],
55
- discountEligible: false,
56
- },
57
- 'Details UK Addresses': {
58
- docLink: 'https://developers.woosmap.com/products/localities/details',
59
- defaultQueries: 0,
60
- publicTierCount: 4, unit: "Monthly Requests",
61
- description:
62
- "Get details on Autocomplete suggestions on UK addresses benefiting from best available data on the market",
63
- pricing: [
64
- [10000, 36.15],
65
- [50000, 24.92],
66
- [100000, 15.98],
67
- [500000, 12.78],
68
- [1000000, 9.59],
69
- [5000000, 4.79],
70
- [10000000, 1.2],
71
- [20000000, 0.94],
72
- [50000000, 0.94],
73
- ],
74
- discountEligible: false,
75
- },
76
- 'Geocode/Reverse Geocode': {
77
- docLink: 'https://developers.woosmap.com/products/localities/geocode',
78
- defaultQueries: 0,
79
- publicTierCount: 4,
80
- unit: "Monthly Requests",
81
- description:
82
- "Geocoding/Reverse geocoding on localities, postcodes and addresses with high accuracy levels",
83
- pricing: [
84
- [5000, 0],
85
- [100000, 1.84],
86
- [500000, 1.47],
87
- [1000000, 1.38],
88
- [5000000, 0.69],
89
- [10000000, 0.17],
90
- [20000000, 0.05],
91
- [50000000, 0.02],
92
- ],
93
- discountEligible: false,
94
- },
95
- 'Geocode/Reverse Geocode UK addresses': {
96
- docLink: 'https://developers.woosmap.com/products/localities/geocode',
97
- defaultQueries: 0,
98
- publicTierCount: 4, unit: "Monthly Requests",
99
- description:
100
- "Geocoding/Reverse geocoding on localities, postcodes and UK addresses benefiting from best available data on the market",
101
- pricing: [
102
- [10000, 36.15],
103
- [50000, 24.92],
104
- [100000, 4.7],
105
- [500000, 3.76],
106
- [1000000, 2.82],
107
- [5000000, 1.41],
108
- [10000000, 0.36],
109
- [20000000, 0.1],
110
- [50000000, 0.04],
111
- ],
112
- discountEligible: false,
113
- },
114
- 'Nearby': {
115
- docLink: 'https://developers.woosmap.com/products/localities/nearby',
116
- defaultQueries: 0,
117
- publicTierCount: 4,
118
- unit: "Monthly Requests",
119
- description:
120
- "Get nearest points of interest based on a specified location",
121
- pricing: [
122
- [10000, 0],
123
- [100000, 6.26],
124
- [500000, 5.0],
125
- [1000000, 4.69],
126
- [5000000, 2.35],
127
- [10000000, 0.59],
128
- [20000000, 0.46],
129
- [50000000, 0.46],
130
- ],
131
- discountEligible: false,
132
- },
133
- 'what3words': {
134
- docLink: 'https://developers.woosmap.com/products/w3w-api/overview',
135
- defaultQueries: 0,
136
- publicTierCount: 1,
137
- unit: "Monthly Requests",
138
- description:
139
- "Add what3words capabilities to your address search",
140
- pricing: [],
141
- discountEligible: false,
142
- },
143
- },
144
- },
145
- 'Map': {
146
- image: mapImgSq,
147
- description: "Display your data without compromising readability",
148
- pricings: {
149
- 'Mapload': {
150
- docLink: 'https://developers.woosmap.com/products/map-api/get-started',
151
- defaultQueries: 0,
152
- publicTierCount: 4,
153
- unit: "Monthly Requests",
154
- description:
155
- "Get a vector basemap, with smooth navigation and fast loading, optimised for mobile, with 3D capabilities. Leverage built in interactions with the Store Search API for mapping of your Points of Interest",
156
- pricing: [
157
- [5000, 0],
158
- [100000, 2.58],
159
- [500000, 2.06],
160
- [1000000, 1.93],
161
- [5000000, 0.97],
162
- [10000000, 0.24],
163
- [20000000, 0.07],
164
- [50000000, 0.03],
165
- ],
166
- discountEligible: false,
167
- },
168
- 'Static Map': {
169
- docLink: 'https://developers.woosmap.com/products/map-static-api/get-started/',
170
- defaultQueries: 0,
171
- publicTierCount: 4,
172
- unit: "Monthly Requests",
173
- description:
174
- "Generate customizable, embeddable map images with minimal integration effort",
175
- pricing: [
176
- [5000, 0]
177
- [100000, 0.74],
178
- [500000, 0.59],
179
- [1000000, 0.55],
180
- [5000000, 0.28],
181
- [10000000, 0.07],
182
- [20000000, 0.02],
183
- [50000000, 0.01],
184
- ],
185
- discountEligible: false,
186
- },
187
- },
188
- },
189
- Distance: {
190
- image: distanceImgSq,
191
- description: "Get distance or time for your routes worldwide with or without traffic",
192
- pricings: {
193
- 'Route (/q)': {
194
- docLink: 'https://developers.woosmap.com/products/distance-api/route-endpoint',
195
- defaultQueries: 0,
196
- publicTierCount: 4,
197
- unit: "Monthly Requests",
198
- description:
199
- "Get driving, cycling or walking route distance and duration with detailed path to display on a map",
200
- pricing: [
201
- [5000, 0],
202
- [100000, 1.84],
203
- [500000, 1.47],
204
- [1000000, 1.38],
205
- [5000000, 0.69],
206
- [10000000, 0.17],
207
- [20000000, 0.05],
208
- [50000000, 0.02],
209
- ],
210
- discountEligible: false,
211
- },
212
- 'Route with Traffic (/q)': {
213
- docLink: 'https://developers.woosmap.com/products/distance-api/route-endpoint/#traffic-awareness-parameters-optional',
214
- defaultQueries: 0,
215
- publicTierCount: 4,
216
- unit: "Monthly Requests",
217
- description:
218
- "Get driving, cycling or walking route distance and duration including historical or real time traffic paterns",
219
- pricing: [
220
- [5000, 0],
221
- [100000, 3.68],
222
- [500000, 2.94],
223
- [1000000, 2.76],
224
- [5000000, 1.54],
225
- [10000000, 0.66],
226
- [20000000, 0.44],
227
- [50000000, 0.44],
228
- ],
229
- discountEligible: false,
230
- },
231
- 'Distance Matrix (/elt)': {
232
- docLink: 'https://developers.woosmap.com/products/distance-api/distance-matrix-endpoint',
233
- defaultQueries: 0,
234
- publicTierCount: 4,
235
- unit: "Monthly Elements",
236
- description:
237
- "Get driving, cycling or walking route distance and duration for multiple Origins and Destinations",
238
- pricing: [
239
- [10000, 0],
240
- [100000, 1.84],
241
- [500000, 1.47],
242
- [1000000, 1.38],
243
- [5000000, 0.69],
244
- [10000000, 0.17],
245
- [20000000, 0.05],
246
- [50000000, 0.02],
247
- ],
248
- discountEligible: false,
249
- },
250
- 'Distance Matrix with Traffic (/elt)': {
251
- docLink: 'https://developers.woosmap.com/products/distance-api/distance-matrix-endpoint/#traffic-awareness-parameter-optional',
252
- defaultQueries: 0,
253
- publicTierCount: 2,
254
- unit: "Monthly Elements",
255
- description:
256
- "Get driving, cycling or walking route distance and duration for multiple Origins and Destinations, including historical or real time traffic paterns",
257
- pricing: [
258
- [5000, 0],
259
- [100000, 3.68],
260
- [500000, 2.94],
261
- [1000000, 2.76],
262
- [5000000, 2,31],
263
- [10000000, 1.75],
264
- [20000000, 0.99],
265
- [50000000, 0.66],
266
- ],
267
- discountEligible: false,
268
- },
269
- 'Isochrone (/q)': {
270
- docLink: 'https://developers.woosmap.com/products/distance-api/isochrone-endpoint',
271
- defaultQueries: 0,
272
- publicTierCount: 4,
273
- unit: "Monthly Requests",
274
- description:
275
- "Get isochrone computations to display on a map",
276
- pricing: [
277
- [5000, 0],
278
- [100000, 1.84],
279
- [500000, 1.47],
280
- [1000000, 1.38],
281
- [5000000, 0.69],
282
- [10000000, 0.17],
283
- [20000000, 0.05],
284
- [50000000, 0.02],
285
- ],
286
- discountEligible: false,
287
- },
288
- 'Distance Matrix with Geofencing (/elt)': {
289
- docLink: 'https://developers.woosmap.com/products/mobile/get-started',
290
- defaultQueries: 0,
291
- publicTierCount: 4,
292
- unit: "Monthly Elements",
293
- description:
294
- "Get driving, cycling or walking route distance and duration for multiple Origins and Destinations using the Woosmap Geofencing SDK",
295
- pricing: [
296
- [10000, 0],
297
- [100000, 10.32],
298
- [500000, 8.24],
299
- [1000000, 7.73],
300
- [5000000, 3.86],
301
- [10000000, 0.98],
302
- [20000000, 0.29],
303
- [50000000, 0.11],
304
- ],
305
- discountEligible: false,
306
- },
307
- 'Distance Matrix with Traffic with Geofencing (/elt)': {
308
- docLink: 'https://developers.woosmap.com/products/mobile/get-started/',
309
- defaultQueries: 0,
310
- publicTierCount: 4,
311
- unit: "Monthly Elements",
312
- description:
313
- "Get driving, cycling or walking route distance and duration for multiple Origins and Destinations, including historical or real time traffic paterns using the Woosmap Geofencing SDK",
314
- pricing: [
315
- [5000, 0],
316
- [100000, 20.64],
317
- [500000, 16.48],
318
- [1000000, 15.46],
319
- [5000000, 7.73],
320
- [10000000, 1.95],
321
- [20000000, 0.59],
322
- [50000000, 0.22],
323
- ],
324
- discountEligible: false,
325
- },
326
- 'Transit': {
327
- docLink: 'https://developers.woosmap.com/products/transit-api/route-endpoint',
328
- defaultQueries: 0,
329
- publicTierCount: 4,
330
- unit: "Monthly Requests",
331
- description:
332
- "Get distance, duration, path and public transport details between an origin and a destination, based on public transportation",
333
- pricing: [
334
- [5000, 0],
335
- [100000, 3.68],
336
- [500000, 2.94],
337
- [1000000, 2.76],
338
- [5000000, 1.54],
339
- [10000000, 0.66],
340
- [20000000, 0.44],
341
- [50000000, 0.44],
342
- ],
343
- discountEligible: false,
344
- },
345
- },
346
- },
347
- Geolocation: {
348
- image: geolocationImgSq,
349
- description: "Automatic Geolocation based on IP addresses",
350
- pricings: {
351
- 'Position': {
352
- docLink: 'https://developers.woosmap.com/products/geolocation-api/location',
353
- defaultQueries: 0,
354
- publicTierCount: 3,
355
- unit: "Monthly Requests",
356
- description:
357
- "Retrieve local context for your visitors (country, region, timezone, etc), based on their IP, to customise your website and create location-based funnels",
358
- pricing: [
359
- [100000, 2.06],
360
- [500000, 1.65],
361
- [1000000, 1.55],
362
- [5000000, 0.77],
363
- [10000000, 0.20],
364
- [20000000, 0.06],
365
- [50000000, 0.02],
366
- ],
367
- discountEligible: false,
368
- },
369
- 'Stores': {
370
- docLink: 'https://developers.woosmap.com/products/geolocation-api/stores',
371
- defaultQueries: 0,
372
- publicTierCount: 3,
373
- unit: "Monthly Requests",
374
- description:
375
- "In addition to local context, retrieve all assets hosted in Woosmap close to this location (store search request included)",
376
- pricing: [
377
- [100000, 2.58],
378
- [500000, 2.06],
379
- [1000000, 1.93],
380
- [5000000, 0.97],
381
- [10000000, 0.24],
382
- [20000000, 0.07],
383
- [50000000, 0.03],
384
- ],
385
- discountEligible: false,
386
- },
387
- 'Timezone': {
388
- docLink: 'https://developers.woosmap.com/products/geolocation-api/timezone',
389
- defaultQueries: 0,
390
- publicTierCount: 3,
391
- unit: "Monthly Requests",
392
- description:
393
- "Retrieve the timezone and time offsets from a location to compute local time",
394
- pricing: [
395
- [100000, 2.58],
396
- [500000, 2.06],
397
- [1000000, 1.93],
398
- [5000000, 0.97],
399
- [10000000, 0.24],
400
- [20000000, 0.07],
401
- [50000000, 0.03],
402
- ],
403
- discountEligible: false,
404
- },
405
- },
406
- },
407
- Stores: {
408
- image: storesImgSq,
409
- description: "A dedicated search engine for your own data",
410
- pricings: {
411
- 'Search': {
412
- docLink: 'https://developers.woosmap.com/products/search-api/search-query',
413
- defaultQueries: 0,
414
- publicTierCount: 4,
415
- unit: "Monthly Requests",
416
- description:
417
- "Search for your points of interest by location, proxilmity to a route, by their characteristics with autocomplete capabilities",
418
- pricing: [
419
- [10000, 0],
420
- [100000, 0.52],
421
- [500000, 0.41],
422
- [1000000, 0.39],
423
- [5000000, 0.19],
424
- [10000000, 0.05],
425
- [20000000, 0.015],
426
- [50000000, 0.006],
427
- ],
428
- discountEligible: false,
429
- },
430
- 'Mapping': {
431
- docLink: 'https://developers.woosmap.com/products/map-api/guides/display-stores-overlay',
432
- defaultQueries: 0,
433
- publicTierCount: 4,
434
- unit: "Monthly Requests",
435
- description:
436
- "Map your points of interest on a world map, no matter their number",
437
- pricing: [
438
- [10000, 0],
439
- [100000, 5.16],
440
- [500000, 4.12],
441
- [1000000, 3.86],
442
- [5000000, 1.93],
443
- [10000000, 0.49],
444
- [20000000, 0.15],
445
- [50000000, 0.06],
446
- ],
447
- discountEligible: false,
448
- },
449
- 'Data Management': {
450
- docLink: 'https://developers.woosmap.com/products/data-api/get-started',
451
- defaultQueries: 0,
452
- publicTierCount: 2,
453
- unit: "Monthly Requests",
454
- description:
455
- "Handle and maintain location data, ensuring accuracy and reliability",
456
- pricing: [
457
- [10000, 0],
458
- [100000, 10.32],
459
- [500000, 8.24],
460
- [1000000, 7.73],
461
- [5000000, 3.86],
462
- [10000000, 0.98],
463
- [20000000, 0.29],
464
- [50000000, 0.11],
465
- ],
466
- discountEligible: false,
467
- },
468
- 'Search (Geofencing context)': {
469
- docLink: 'https://developers.woosmap.com/products/mobile/get-started',
470
- defaultQueries: 0,
471
- publicTierCount: 4,
472
- unit: "Monthly Requests",
473
- description:
474
- "Search for your points of interest by location using the Woosmap Geofencing SDK",
475
- pricing: [
476
- [10000, 0],
477
- [100000, 5.16],
478
- [500000, 4.12],
479
- [1000000, 3.86],
480
- [5000000, 1.93],
481
- [10000000, 0.49],
482
- [20000000, 0.15],
483
- [50000000, 0.06],
484
- ],
485
- discountEligible: false,
486
- },
487
- },
488
- },
489
- Indoor: {
490
- image: indoorImgSq,
491
- description: "Map private venues and propose indoor search and wayfinding",
492
- pricings: {
493
- 'Search': {
494
- docLink: 'https://developers.woosmap.com/products/indoor-api/indoor-js-api/get-started',
495
- defaultQueries: 0,
496
- publicTierCount: 2,
497
- unit: "Monthly Requests",
498
- description:
499
- "Search for your POI",
500
- pricing: [
501
- [10000, 0],
502
- [100000, 2.06],
503
- [500000, 1.65],
504
- [1000000, 1.55],
505
- [5000000, 0.77],
506
- [10000000, 0.20],
507
- [20000000, 0.06],
508
- [50000000, 0.02],
509
- ],
510
- discountEligible: false,
511
- },
512
- 'Distance': {
513
- docLink: 'https://developers.woosmap.com/products/indoor-api/indoor-js-api/direction-service',
514
- defaultQueries: 0,
515
- publicTierCount: 4,
516
- unit: "Monthly Requests",
517
- description:
518
- "Enable indoor path calculation and turn-by-turn navigation based on mobility profiles",
519
- pricing: [
520
- [10000, 0],
521
- [100000, 20.64],
522
- [500000, 16.48],
523
- [1000000, 15.46],
524
- [5000000, 7.73],
525
- [10000000, 1.95],
526
- [20000000, 0.59],
527
- [50000000, 0.22],
528
- ],
529
- discountEligible: false,
530
- },
531
- 'Data Management': {
532
- docLink: 'https://developers.woosmap.com/products/indoor-api/guides/digitalisation',
533
- defaultQueries: 0,
534
- publicTierCount: 4,
535
- unit: "Monthly Requests",
536
- description:
537
- "Manage your POIs and venue",
538
- pricing: [
539
- [10000, 0],
540
- [100000, 20.64],
541
- [500000, 16.48],
542
- [1000000, 15.46],
543
- [5000000, 7.73],
544
- [10000000, 1.95],
545
- [20000000, 0.59],
546
- [50000000, 0.22],
547
- ],
548
- discountEligible: false,
549
- },
550
- 'Mapping': {
551
- docLink: 'https://developers.woosmap.com/products/indoor-api/indoor-js-api/map-renderer',
552
- defaultQueries: 0,
553
- publicTierCount: 4,
554
- unit: "Monthly Requests",
555
- description:
556
- "Display your indoor venue map on top of the map of the world",
557
- pricing: [
558
- [10000, 0],
559
- [100000, 20.64],
560
- [500000, 16.48],
561
- [1000000, 15.46],
562
- [5000000, 7.73],
563
- [10000000, 1.95],
564
- [20000000, 0.59],
565
- [50000000, 0.22],
566
- ],
567
- discountEligible: false,
568
- },
569
- },
570
- },
571
- };
572
-
573
- export default Pricing;
package/storybook.log DELETED
@@ -1,3 +0,0 @@
1
- Usage Error: Package "@storybook/addon-styling-webpack" is already listed as a regular dependency - remove the -D,-P flags or remove it from your dependencies first
2
-
3
- $ yarn add [--json] [-E,--exact] [-T,--tilde] [-C,--caret] [-D,--dev] [-P,--peer] [-O,--optional] [--prefer-dev] [-i,--interactive] [--cached] [--mode #0] ...