mautourco-components 0.2.142 → 0.2.144
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/components/molecules/LanguageSelector/LanguageSelector.css +120 -0
- package/dist/components/molecules/LanguageSelector/LanguageSelector.d.ts +11 -0
- package/dist/components/molecules/LanguageSelector/LanguageSelector.js +28 -0
- package/dist/components/molecules/TextWithIcon/TextWithIcon.js +1 -1
- package/dist/components/organisms/Docket/Docket.d.ts +31 -6
- package/dist/components/organisms/Docket/Docket.js +33 -13
- package/dist/components/organisms/Docket/DocketEmptyState.d.ts +14 -3
- package/dist/components/organisms/Docket/DocketEmptyState.js +7 -2
- package/dist/components/organisms/Docket/DocketFooter.d.ts +24 -0
- package/dist/components/organisms/Docket/DocketFooter.js +11 -3
- package/dist/components/organisms/DocketAccordion/DocketAccordion.d.ts +10 -1
- package/dist/components/organisms/DocketAccordion/DocketAccordion.js +2 -2
- package/dist/hooks/useMobile.d.ts +2 -1
- package/dist/hooks/useMobile.js +1 -0
- package/dist/styles/components/organism/docket.css +14 -20
- package/package.json +1 -1
- package/src/components/molecules/LanguageSelector/LanguageSelector.css +83 -0
- package/src/components/molecules/LanguageSelector/LanguageSelector.tsx +102 -0
- package/src/components/molecules/TextWithIcon/TextWithIcon.tsx +1 -1
- package/src/components/organisms/Docket/Docket.tsx +106 -24
- package/src/components/organisms/Docket/DocketEmptyState.tsx +29 -7
- package/src/components/organisms/Docket/DocketFooter.tsx +82 -26
- package/src/components/organisms/DocketAccordion/DocketAccordion.tsx +12 -2
- package/src/styles/components/organism/docket.css +13 -20
|
@@ -239,24 +239,6 @@
|
|
|
239
239
|
width: 100%;
|
|
240
240
|
}
|
|
241
241
|
|
|
242
|
-
.docket__footer-view-link {
|
|
243
|
-
display: inline-flex;
|
|
244
|
-
align-items: center;
|
|
245
|
-
gap: var(--component-button-spacing-ghost-sm-gap, 6px);
|
|
246
|
-
background: none;
|
|
247
|
-
border: none;
|
|
248
|
-
padding: var(--component-button-spacing-ghost-sm-padding-y, 0px)
|
|
249
|
-
var(--component-button-spacing-ghost-sm-padding-x, 0px);
|
|
250
|
-
cursor: pointer;
|
|
251
|
-
font-family: var(--font-font-family-body, 'Satoshi', sans-serif);
|
|
252
|
-
font-size: var(--font-size-text-sm, 14px);
|
|
253
|
-
font-weight: var(--font-weight-font-medium, 500);
|
|
254
|
-
line-height: var(--font-leading-leading-sm, 20px);
|
|
255
|
-
color: var(--color-button-ghost-foreground-default, #78716c);
|
|
256
|
-
text-decoration: none;
|
|
257
|
-
transition: color 0.2s ease;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
242
|
.docket__footer-view-text {
|
|
261
243
|
display: inline-block;
|
|
262
244
|
}
|
|
@@ -287,6 +269,16 @@
|
|
|
287
269
|
flex: 2;
|
|
288
270
|
}
|
|
289
271
|
|
|
272
|
+
.docket__footer-actions .docket__footer-button--half {
|
|
273
|
+
flex: 0 0 50%;
|
|
274
|
+
max-width: 50%;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.docket__footer-button:disabled {
|
|
278
|
+
border: var(--button-border-width-outline-default, 1px) solid
|
|
279
|
+
var(--button-color-outline-secondary-border-disabled, #a3a3a3) !important;
|
|
280
|
+
}
|
|
281
|
+
|
|
290
282
|
/* Collapsed header for mobile/tablet */
|
|
291
283
|
.docket__collapsed-header {
|
|
292
284
|
display: none;
|
|
@@ -387,7 +379,7 @@
|
|
|
387
379
|
}
|
|
388
380
|
|
|
389
381
|
/* Responsive behavior */
|
|
390
|
-
@media (max-width:
|
|
382
|
+
@media (max-width: 1439px) {
|
|
391
383
|
.docket {
|
|
392
384
|
width: 384px;
|
|
393
385
|
}
|
|
@@ -425,7 +417,8 @@
|
|
|
425
417
|
}
|
|
426
418
|
}
|
|
427
419
|
|
|
428
|
-
|
|
420
|
+
/* Desktop and up */
|
|
421
|
+
@media (min-width: 1440px) {
|
|
429
422
|
.docket__collapsed-header,
|
|
430
423
|
.docket__close-header {
|
|
431
424
|
display: none;
|