@mond-design-system/react 4.8.0 → 4.9.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/README.md +2 -1
- package/dist/index.cjs +75 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +44 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +35 -1
- package/dist/index.d.ts +35 -1
- package/dist/index.js +75 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -2621,6 +2621,50 @@ button.mds-Link__link {
|
|
|
2621
2621
|
color: var(--mds-status-danger);
|
|
2622
2622
|
}
|
|
2623
2623
|
|
|
2624
|
+
/* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/FileDrop/FileDrop.module.css?mds-scoped */
|
|
2625
|
+
.mds-FileDrop__drop {
|
|
2626
|
+
display: block;
|
|
2627
|
+
}
|
|
2628
|
+
.mds-FileDrop__target {
|
|
2629
|
+
display: flex;
|
|
2630
|
+
flex-direction: column;
|
|
2631
|
+
align-items: center;
|
|
2632
|
+
gap: var(--mds-gap-hairline);
|
|
2633
|
+
width: 100%;
|
|
2634
|
+
padding: var(--mds-pad-drop-y) var(--mds-pad-card);
|
|
2635
|
+
border: var(--mds-border-width) dashed var(--mds-border-strong);
|
|
2636
|
+
border-radius: var(--mds-radius-media);
|
|
2637
|
+
background: var(--mds-surface-sunken);
|
|
2638
|
+
color: var(--mds-text-primary);
|
|
2639
|
+
cursor: pointer;
|
|
2640
|
+
transition: var(--mds-transition-surface);
|
|
2641
|
+
}
|
|
2642
|
+
.mds-FileDrop__target:focus-visible {
|
|
2643
|
+
outline: var(--mds-focus-width) solid var(--mds-focus-ring-color);
|
|
2644
|
+
outline-offset: var(--mds-focus-offset);
|
|
2645
|
+
}
|
|
2646
|
+
.mds-FileDrop__target:disabled {
|
|
2647
|
+
border-color: var(--mds-border-subtle);
|
|
2648
|
+
color: var(--mds-action-disabled-fg);
|
|
2649
|
+
cursor: not-allowed;
|
|
2650
|
+
}
|
|
2651
|
+
.mds-FileDrop__over .mds-FileDrop__target {
|
|
2652
|
+
border-color: var(--mds-action-bg);
|
|
2653
|
+
background: var(--mds-surface-selected);
|
|
2654
|
+
}
|
|
2655
|
+
.mds-FileDrop__icon {
|
|
2656
|
+
display: inline-flex;
|
|
2657
|
+
align-items: center;
|
|
2658
|
+
justify-content: center;
|
|
2659
|
+
width: var(--mds-icon-lg);
|
|
2660
|
+
height: var(--mds-icon-lg);
|
|
2661
|
+
font-size: var(--mds-icon-lg);
|
|
2662
|
+
color: var(--mds-text-muted);
|
|
2663
|
+
}
|
|
2664
|
+
.mds-FileDrop__picker {
|
|
2665
|
+
display: none;
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2624
2668
|
/* mds-css:/home/runner/work/mond-design-system/mond-design-system/packages/react/src/components/Lightbox/Lightbox.module.css?mds-scoped */
|
|
2625
2669
|
.mds-Lightbox__panel {
|
|
2626
2670
|
flex: 1;
|