@7shifts/sous-chef 3.50.0 → 3.51.1
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 +49 -1
- package/dist/index.js +194 -90
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +193 -91
- package/dist/index.modern.js.map +1 -1
- package/dist/lists/ActionList/ActionList.d.ts +7 -0
- package/dist/lists/ActionList/index.d.ts +1 -0
- package/dist/lists/ActionListItem/ActionListItem.d.ts +23 -0
- package/dist/lists/ActionListItem/ActionListItemActions/ActionListItemActions.d.ts +8 -0
- package/dist/lists/ActionListItem/index.d.ts +1 -0
- package/dist/lists/ActionListItem/type.d.ts +1 -0
- package/dist/lists/index.d.ts +3 -1
- package/package.json +6 -5
package/dist/index.css
CHANGED
|
@@ -2694,6 +2694,54 @@ input:disabled + ._2W10t::after {
|
|
|
2694
2694
|
border-radius: 20px;
|
|
2695
2695
|
background-color: var(--color-white);
|
|
2696
2696
|
}
|
|
2697
|
+
._9iCpw {
|
|
2698
|
+
border: 1px solid var(--color-grey-200);
|
|
2699
|
+
border-radius: var(--border-radius-600);
|
|
2700
|
+
background-color: var(--color-white);
|
|
2701
|
+
}
|
|
2702
|
+
._9iCpw > *:not(:last-child) {
|
|
2703
|
+
border-bottom: 1px solid var(--color-grey-200);
|
|
2704
|
+
}
|
|
2705
|
+
._9iCpw > *:last-child {
|
|
2706
|
+
border-radius: 0 0 var(--border-radius-600) var(--border-radius-600);
|
|
2707
|
+
}
|
|
2708
|
+
._9iCpw > *:first-child {
|
|
2709
|
+
border-radius: var(--border-radius-600) var(--border-radius-600) 0 0;
|
|
2710
|
+
}
|
|
2711
|
+
._9iCpw > *:only-child {
|
|
2712
|
+
border-radius: var(--border-radius-600);
|
|
2713
|
+
border-bottom: none;
|
|
2714
|
+
}
|
|
2715
|
+
._n1vRf {
|
|
2716
|
+
width: 100%;
|
|
2717
|
+
height: 100%;
|
|
2718
|
+
background-color: var(--color-white);
|
|
2719
|
+
border: none;
|
|
2720
|
+
padding: 16px;
|
|
2721
|
+
color: var(--color-grey-500);
|
|
2722
|
+
text-align: inherit;
|
|
2723
|
+
position: relative;
|
|
2724
|
+
z-index: 1;
|
|
2725
|
+
outline: none;
|
|
2726
|
+
}
|
|
2727
|
+
._1cHQz p {
|
|
2728
|
+
color: var(--color-grey-300);
|
|
2729
|
+
}
|
|
2730
|
+
._T7LTs {
|
|
2731
|
+
cursor: pointer;
|
|
2732
|
+
transition: all ease-in-out 150ms;
|
|
2733
|
+
}
|
|
2734
|
+
._T7LTs:hover {
|
|
2735
|
+
background-color: var(--color-grey-100);
|
|
2736
|
+
}
|
|
2737
|
+
._T7LTs:focus {
|
|
2738
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
2739
|
+
z-index: 2;
|
|
2740
|
+
outline: none;
|
|
2741
|
+
}
|
|
2742
|
+
._2DAEW {
|
|
2743
|
+
white-space: nowrap;
|
|
2744
|
+
}
|
|
2697
2745
|
._1JTKu {
|
|
2698
2746
|
flex: 1;
|
|
2699
2747
|
display: "flex";
|
|
@@ -3090,7 +3138,7 @@ input:checked ~ ._3mCob {
|
|
|
3090
3138
|
}
|
|
3091
3139
|
._3mCob {
|
|
3092
3140
|
border: 1px solid var(--color-grey-200);
|
|
3093
|
-
border-radius:
|
|
3141
|
+
border-radius: var(--border-radius-600);
|
|
3094
3142
|
padding: 16px;
|
|
3095
3143
|
display: block;
|
|
3096
3144
|
cursor: pointer;
|