mayak-common-library 0.0.109 → 0.0.111
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/dist/index.css +188 -50
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +571 -580
- package/dist/index.mjs +502 -512
- package/package.json +4 -2
package/dist/index.css
CHANGED
|
@@ -95,7 +95,13 @@
|
|
|
95
95
|
}
|
|
96
96
|
@layer components {
|
|
97
97
|
.white-block-snack {
|
|
98
|
-
@apply bg-white px-[10px] py-[2px] w-fit
|
|
98
|
+
@apply bg-white px-[10px] py-[2px] w-fit text-12;
|
|
99
|
+
}
|
|
100
|
+
.white-block-snack-border {
|
|
101
|
+
@apply bg-white border-solid px-[10px] py-[2px] w-fit text-14 border-[1px] border-dark;
|
|
102
|
+
}
|
|
103
|
+
.gold-block-snack-border {
|
|
104
|
+
@apply bg-gold border-solid px-[10px] py-[2px] w-fit text-14 border-[1px] border-gold;
|
|
99
105
|
}
|
|
100
106
|
.black-block-snack {
|
|
101
107
|
@apply bg-dark py-[6px] px-[16px] w-fit text-white font-extrabold text-12;
|
|
@@ -104,10 +110,10 @@
|
|
|
104
110
|
@apply bg-gray-light px-[10px] w-fit text-12;
|
|
105
111
|
}
|
|
106
112
|
.border-block-snack {
|
|
107
|
-
@apply px-[10px] py-[2px] text-12 border-[1px] border-
|
|
113
|
+
@apply px-[10px] py-[2px] text-12 border-[1px] border-custom-gray-medium w-fit;
|
|
108
114
|
}
|
|
109
|
-
.
|
|
110
|
-
@apply
|
|
115
|
+
.border-gold-block-snack {
|
|
116
|
+
@apply w-fit px-[10px] py-[2px] text-gray border-[1px] border-gold font-extrabold text-12 group-hover/card:text-white group-hover/card:bg-gold;
|
|
111
117
|
}
|
|
112
118
|
.text-gold2 {
|
|
113
119
|
color: #99835F;
|
|
@@ -126,19 +132,18 @@
|
|
|
126
132
|
.text-32 {
|
|
127
133
|
font-size: 32px;
|
|
128
134
|
line-height: 35px;
|
|
129
|
-
@apply uppercase font-extrabold;
|
|
130
135
|
}
|
|
131
136
|
.text-100 {
|
|
132
|
-
font-size: 100px
|
|
133
|
-
line-height: 110px
|
|
137
|
+
font-size: 100px;
|
|
138
|
+
line-height: 110px;
|
|
134
139
|
}
|
|
135
140
|
.text-50 {
|
|
136
141
|
font-size: 50px;
|
|
137
142
|
line-height: 55px;
|
|
138
143
|
}
|
|
139
|
-
.text-
|
|
140
|
-
font-size:
|
|
141
|
-
line-height:
|
|
144
|
+
.text-60 {
|
|
145
|
+
font-size: 60px;
|
|
146
|
+
line-height: 66px;
|
|
142
147
|
}
|
|
143
148
|
.text-10 {
|
|
144
149
|
font-size: 10px;
|
|
@@ -150,16 +155,16 @@
|
|
|
150
155
|
}
|
|
151
156
|
.text-14 {
|
|
152
157
|
font-size: 14px;
|
|
153
|
-
line-height:
|
|
158
|
+
line-height: 22px;
|
|
154
159
|
}
|
|
155
160
|
.text-14-gray {
|
|
156
161
|
font-size: 14px;
|
|
157
|
-
line-height:
|
|
162
|
+
line-height: 22px;
|
|
158
163
|
color: #757575;
|
|
159
164
|
}
|
|
160
165
|
.text-14-bold {
|
|
161
166
|
font-size: 14px;
|
|
162
|
-
line-height:
|
|
167
|
+
line-height: 22px;
|
|
163
168
|
@apply font-extrabold;
|
|
164
169
|
}
|
|
165
170
|
.text-16 {
|
|
@@ -173,7 +178,14 @@
|
|
|
173
178
|
.text-20 {
|
|
174
179
|
font-size: 20px;
|
|
175
180
|
line-height: 22px;
|
|
176
|
-
|
|
181
|
+
}
|
|
182
|
+
.text-22 {
|
|
183
|
+
font-size: 22px;
|
|
184
|
+
line-height: 26px;
|
|
185
|
+
}
|
|
186
|
+
.text-24 {
|
|
187
|
+
font-size: 24px;
|
|
188
|
+
line-height: 30px;
|
|
177
189
|
}
|
|
178
190
|
.text-26 {
|
|
179
191
|
font-size: 26px;
|
|
@@ -210,6 +222,9 @@
|
|
|
210
222
|
.bg-gray {
|
|
211
223
|
background-color: #757575;
|
|
212
224
|
}
|
|
225
|
+
.bg-gray2 {
|
|
226
|
+
background-color: #FBFBFB;
|
|
227
|
+
}
|
|
213
228
|
.bg-dark {
|
|
214
229
|
background-color: #343434;
|
|
215
230
|
}
|
|
@@ -222,12 +237,18 @@
|
|
|
222
237
|
.border-custom-gray {
|
|
223
238
|
border-color: #757575;
|
|
224
239
|
}
|
|
225
|
-
.border-
|
|
226
|
-
border-color: #
|
|
240
|
+
.border-custom-gray-medium {
|
|
241
|
+
border-color: #D0CED2;
|
|
242
|
+
}
|
|
243
|
+
.border-custom-gray-light {
|
|
244
|
+
border-color: #F5F5F5;
|
|
227
245
|
}
|
|
228
246
|
.border-custom-dark {
|
|
229
247
|
border-color: #343434;
|
|
230
248
|
}
|
|
249
|
+
.border-dark {
|
|
250
|
+
border-color: #343434;
|
|
251
|
+
}
|
|
231
252
|
.border-gold {
|
|
232
253
|
border-color: #C8BCA1;
|
|
233
254
|
}
|
|
@@ -237,14 +258,17 @@
|
|
|
237
258
|
.big-title {
|
|
238
259
|
@apply uppercase font-extrabold text-34;
|
|
239
260
|
}
|
|
261
|
+
.wrapper-gold {
|
|
262
|
+
@apply bg-gold py-[6px] px-[16px] w-fit md:py-[2px] md:px-[6px];
|
|
263
|
+
}
|
|
240
264
|
.block-gold {
|
|
241
265
|
@apply bg-gold py-[30px] px-[40px] flex flex-col;
|
|
242
266
|
}
|
|
243
267
|
.block-simple-border {
|
|
244
|
-
@apply block border-[1px] py-[16px] px-[24px] text-14 w-fit border-dark;
|
|
268
|
+
@apply block border-[1px] py-[16px] px-[24px] text-14 w-fit border-dark border-solid;
|
|
245
269
|
}
|
|
246
270
|
.block-white-wrapper {
|
|
247
|
-
@apply text-32 bg-white py-[20px] px-[30px] block;
|
|
271
|
+
@apply text-32 bg-white py-[20px] px-[30px] block md:pt-[10px] md:pb-[6px] md:px-[10px];
|
|
248
272
|
}
|
|
249
273
|
.block-white {
|
|
250
274
|
@apply bg-white py-[30px] px-[40px];
|
|
@@ -255,6 +279,9 @@
|
|
|
255
279
|
.filter-gold2 {
|
|
256
280
|
filter: invert(64%) sepia(5%) saturate(2284%) hue-rotate(358deg) brightness(81%) contrast(87%);
|
|
257
281
|
}
|
|
282
|
+
.filter-gold {
|
|
283
|
+
filter: invert(87%) sepia(15%) saturate(382%) hue-rotate(4deg) brightness(85%) contrast(91%);
|
|
284
|
+
}
|
|
258
285
|
.filter-gray {
|
|
259
286
|
filter: invert(50%) sepia(10%) saturate(17%) hue-rotate(354deg) brightness(89%) contrast(90%);
|
|
260
287
|
}
|
|
@@ -279,20 +306,75 @@
|
|
|
279
306
|
box-sizing: border-box;
|
|
280
307
|
margin-right: auto;
|
|
281
308
|
display: block;
|
|
282
|
-
max-width:
|
|
309
|
+
max-width: 790px !important;
|
|
310
|
+
}
|
|
311
|
+
.dot-slider {
|
|
312
|
+
border: none;
|
|
313
|
+
width: 10px;
|
|
314
|
+
height: 10px;
|
|
315
|
+
background: #343434;
|
|
316
|
+
border-radius: 50%;
|
|
317
|
+
cursor: pointer;
|
|
318
|
+
}
|
|
319
|
+
.dot-slider_big {
|
|
320
|
+
width: 14px;
|
|
321
|
+
height: 14px;
|
|
322
|
+
}
|
|
323
|
+
@media screen and (max-width: 1100px) {
|
|
324
|
+
.dot-slider_big {
|
|
325
|
+
width: 10px;
|
|
326
|
+
height: 10px;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
.dot:focus {
|
|
330
|
+
outline: none;
|
|
331
|
+
}
|
|
332
|
+
.dot-slider_active {
|
|
333
|
+
background: #C8BCA1;
|
|
334
|
+
}
|
|
335
|
+
.trim-text-1 {
|
|
336
|
+
display: -webkit-box;
|
|
337
|
+
-webkit-box-orient: vertical;
|
|
338
|
+
overflow: hidden;
|
|
339
|
+
-webkit-line-clamp: 1;
|
|
340
|
+
}
|
|
341
|
+
.simpleZoomImgHover {
|
|
342
|
+
@apply opacity-90 transform scale-110 transition duration-300 ease-out;
|
|
343
|
+
}
|
|
344
|
+
.simpleZoomImg {
|
|
345
|
+
-webkit-transform: scale(1);
|
|
346
|
+
-ms-transform: scale(1);
|
|
347
|
+
transform: scale(1);
|
|
348
|
+
-webkit-transition: 0.3s ease-out;
|
|
349
|
+
transition: 0.3s ease-out;
|
|
350
|
+
}
|
|
351
|
+
.bg-gold-gradient {
|
|
352
|
+
@apply bg-gradient-to-r from-[#99835F] to-[#C8BCA1];
|
|
283
353
|
}
|
|
284
354
|
}
|
|
285
355
|
.richTextBlock {
|
|
356
|
+
font-family: RockStar, sans-serif;
|
|
286
357
|
line-height: 24px;
|
|
287
358
|
}
|
|
288
359
|
.richTextBlock p {
|
|
289
|
-
color: #
|
|
360
|
+
color: #343434 !important;
|
|
361
|
+
margin: 10px 0;
|
|
362
|
+
}
|
|
363
|
+
@media screen and (max-width: 1100px) {
|
|
364
|
+
.richTextBlock p {
|
|
365
|
+
margin: 6px 0;
|
|
366
|
+
}
|
|
290
367
|
}
|
|
291
368
|
.richTextBlock ul {
|
|
292
369
|
margin: 16px 0;
|
|
293
|
-
padding-left:
|
|
370
|
+
padding-left: 20px;
|
|
294
371
|
list-style: disc;
|
|
295
372
|
}
|
|
373
|
+
@media screen and (max-width: 1100px) {
|
|
374
|
+
.richTextBlock ul {
|
|
375
|
+
margin: 10px 0;
|
|
376
|
+
}
|
|
377
|
+
}
|
|
296
378
|
.richTextBlock h2 {
|
|
297
379
|
font-size: 20px;
|
|
298
380
|
line-height: 22px;
|
|
@@ -307,25 +389,52 @@
|
|
|
307
389
|
margin-top: 20px;
|
|
308
390
|
margin-bottom: 6px;
|
|
309
391
|
}
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
.nav-indicator {
|
|
323
|
-
@apply absolute top-0 rounded-full bg-accent-beige;
|
|
324
|
-
width: 7px;
|
|
325
|
-
height: 7px;
|
|
326
|
-
transition: transform 0.3s ease-out;
|
|
392
|
+
.input-form::placeholder {
|
|
393
|
+
color: #343434;
|
|
394
|
+
opacity: 1;
|
|
395
|
+
}
|
|
396
|
+
.fader {
|
|
397
|
+
height: 738px;
|
|
398
|
+
position: relative;
|
|
399
|
+
overflow: hidden;
|
|
400
|
+
}
|
|
401
|
+
@media screen and (max-width: 800px) {
|
|
402
|
+
.fader {
|
|
403
|
+
height: 950px;
|
|
327
404
|
}
|
|
328
405
|
}
|
|
406
|
+
.fader__slide {
|
|
407
|
+
cursor: pointer;
|
|
408
|
+
width: 100%;
|
|
409
|
+
height: 100%;
|
|
410
|
+
position: absolute;
|
|
411
|
+
top: 0;
|
|
412
|
+
}
|
|
413
|
+
.homeLocaleSwitcher p {
|
|
414
|
+
color: white !important;
|
|
415
|
+
}
|
|
416
|
+
.homeLocaleSwitcher svg {
|
|
417
|
+
filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
|
|
418
|
+
}
|
|
419
|
+
.homeLocaleSwitcher:hover p {
|
|
420
|
+
color: #343434 !important;
|
|
421
|
+
}
|
|
422
|
+
.homeLocaleSwitcher:hover svg {
|
|
423
|
+
filter: none;
|
|
424
|
+
}
|
|
425
|
+
.placeholder-style::placeholder {
|
|
426
|
+
position: relative;
|
|
427
|
+
left: 2px;
|
|
428
|
+
}
|
|
429
|
+
.placeholder-style-2::placeholder {
|
|
430
|
+
position: relative;
|
|
431
|
+
left: 2px;
|
|
432
|
+
color: #939393 !important;
|
|
433
|
+
}
|
|
434
|
+
.placeholder-style-phone::placeholder {
|
|
435
|
+
color: #343434;
|
|
436
|
+
opacity: 1;
|
|
437
|
+
}
|
|
329
438
|
@font-face {
|
|
330
439
|
font-family: RockStar;
|
|
331
440
|
src: url("./Rock Star_Regular_Web-VMOWTS6V.woff2");
|
|
@@ -338,45 +447,74 @@
|
|
|
338
447
|
}
|
|
339
448
|
body {
|
|
340
449
|
max-width: 100vw;
|
|
341
|
-
overflow-x: hidden;
|
|
342
450
|
margin: 0;
|
|
343
451
|
display: flex;
|
|
344
452
|
flex-direction: column;
|
|
345
453
|
min-height: 100vh;
|
|
346
454
|
color: #343434;
|
|
347
|
-
background-color: #F5F5F5;
|
|
455
|
+
background-color: #F5F5F5 !important;
|
|
348
456
|
font-size: 14px;
|
|
349
|
-
line-height:
|
|
457
|
+
line-height: 22px;
|
|
350
458
|
font-weight: 400;
|
|
351
459
|
font-family: RockStar, sans-serif;
|
|
352
460
|
}
|
|
461
|
+
div {
|
|
462
|
+
box-sizing: border-box;
|
|
463
|
+
}
|
|
464
|
+
html {
|
|
465
|
+
overflow-x: hidden;
|
|
466
|
+
}
|
|
353
467
|
main {
|
|
354
468
|
flex-grow: 1;
|
|
355
469
|
}
|
|
356
470
|
a {
|
|
357
471
|
color: inherit;
|
|
358
472
|
text-decoration: none;
|
|
473
|
+
transition: all 0.3s ease-out;
|
|
474
|
+
}
|
|
475
|
+
a:not(.noHover):hover {
|
|
476
|
+
color: #99835F;
|
|
359
477
|
}
|
|
360
478
|
*:focus-visible {
|
|
361
479
|
outline: none;
|
|
362
480
|
}
|
|
363
|
-
|
|
481
|
+
.MuiContainer-root {
|
|
482
|
+
padding-left: 0 !important;
|
|
483
|
+
padding-right: 0 !important;
|
|
484
|
+
}
|
|
485
|
+
@media screen and (max-width: 1270px) {
|
|
364
486
|
.MuiContainer-root {
|
|
365
|
-
padding-left:
|
|
366
|
-
padding-right:
|
|
487
|
+
padding-left: 40px !important;
|
|
488
|
+
padding-right: 40px !important;
|
|
367
489
|
}
|
|
368
490
|
}
|
|
369
|
-
@media screen and (max-width:
|
|
491
|
+
@media screen and (max-width: 1100px) {
|
|
370
492
|
.MuiContainer-root {
|
|
371
|
-
padding-left:
|
|
372
|
-
padding-right:
|
|
493
|
+
padding-left: 60px !important;
|
|
494
|
+
padding-right: 60px !important;
|
|
373
495
|
}
|
|
374
496
|
}
|
|
375
|
-
@media screen and (max-width:
|
|
497
|
+
@media screen and (max-width: 800px) {
|
|
376
498
|
.MuiContainer-root {
|
|
377
|
-
padding-left:
|
|
378
|
-
padding-right:
|
|
499
|
+
padding-left: 25px !important;
|
|
500
|
+
padding-right: 25px !important;
|
|
379
501
|
}
|
|
380
502
|
}
|
|
503
|
+
:root {
|
|
504
|
+
--map-tiles-filter: grayscale(0.5) saturate(0) ;
|
|
505
|
+
}
|
|
506
|
+
.map-tiles {
|
|
507
|
+
filter: var(--map-tiles-filter, none);
|
|
508
|
+
}
|
|
509
|
+
::-webkit-input-placeholder {
|
|
510
|
+
opacity: 1 !important;
|
|
511
|
+
}
|
|
512
|
+
input,
|
|
513
|
+
textarea,
|
|
514
|
+
button,
|
|
515
|
+
select,
|
|
516
|
+
a {
|
|
517
|
+
-webkit-tap-highlight-color: transparent;
|
|
518
|
+
}
|
|
381
519
|
|
|
382
520
|
/* src/components/AppBar/styles.css */
|
package/dist/index.d.mts
CHANGED
|
@@ -22,6 +22,7 @@ export { default as MapIcon } from '@/icons/map-search.svg';
|
|
|
22
22
|
import { ListProps } from '@mui/material/List/List';
|
|
23
23
|
import { CheckboxProps } from '@mui/material/Checkbox';
|
|
24
24
|
import { FormControlLabelProps as FormControlLabelProps$1 } from '@mui/material/FormControlLabel/FormControlLabel';
|
|
25
|
+
export { NextIntlClientProvider } from 'next-intl';
|
|
25
26
|
|
|
26
27
|
declare function Greet(props: {
|
|
27
28
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export { default as MapIcon } from '@/icons/map-search.svg';
|
|
|
22
22
|
import { ListProps } from '@mui/material/List/List';
|
|
23
23
|
import { CheckboxProps } from '@mui/material/Checkbox';
|
|
24
24
|
import { FormControlLabelProps as FormControlLabelProps$1 } from '@mui/material/FormControlLabel/FormControlLabel';
|
|
25
|
+
export { NextIntlClientProvider } from 'next-intl';
|
|
25
26
|
|
|
26
27
|
declare function Greet(props: {
|
|
27
28
|
name: string;
|