design-system-silkhaus 3.1.3 → 3.2.0-beta.dropdown.10
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/Checkbox-BiCYJqNy.js +6381 -0
- package/dist/Checkbox-CYnBe4tB.cjs +33 -0
- package/dist/app/index.d.ts +99 -6
- package/dist/app/index.js +1 -1
- package/dist/index.d.ts +80 -9
- package/dist/index.js +38 -41
- package/dist/style.css +1 -1
- package/dist/tailwind.config.js +17 -1
- package/package.json +1 -1
- package/dist/utils-C8F0YIvl.js +0 -3778
- package/dist/utils-k1RektY7.cjs +0 -30
package/dist/tailwind.config.js
CHANGED
|
@@ -763,6 +763,20 @@ exports.default = {
|
|
|
763
763
|
fontWeight: 'var(--font-weight-semibold)',
|
|
764
764
|
},
|
|
765
765
|
],
|
|
766
|
+
xSmallCaption2Regular: [
|
|
767
|
+
'var(--SmallCaption-1Regular-font-size)',
|
|
768
|
+
{
|
|
769
|
+
lineHeight: 'var(--SmallCaption-Regular-line-height)',
|
|
770
|
+
fontWeight: 'var(--font-weight-normal)',
|
|
771
|
+
},
|
|
772
|
+
],
|
|
773
|
+
xSmallCaption2Emphasized: [
|
|
774
|
+
'var(--SmallCaption-1Regular-font-size)',
|
|
775
|
+
{
|
|
776
|
+
lineHeight: 'var(--SmallCaption-1Regular-line-height)',
|
|
777
|
+
fontWeight: 'var(--font-weight-semibold)',
|
|
778
|
+
},
|
|
779
|
+
],
|
|
766
780
|
xSmallHeadLineRegular: [
|
|
767
781
|
'var(--xSmallHeadLine-Regular-font-size)',
|
|
768
782
|
{
|
|
@@ -801,7 +815,9 @@ exports.default = {
|
|
|
801
815
|
},
|
|
802
816
|
boxShadow: {
|
|
803
817
|
DEFAULT: 'var(--shadow-default)',
|
|
804
|
-
|
|
818
|
+
sm: '0px 1px 4px 0px rgba(0, 0, 0, 0.16)',
|
|
819
|
+
md: '0px 6px 16px 0px rgba(0, 0, 0, 0.12)',
|
|
820
|
+
lg: '0px 4px 18px 0px rgba(0, 0, 0, 0.17)',
|
|
805
821
|
},
|
|
806
822
|
},
|
|
807
823
|
},
|
package/package.json
CHANGED