design-system-silkhaus 3.11.0 → 3.12.0-beta.month-range-picker.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/{ButtonsGroupSelector-Da7wwKtY.js → ButtonsGroupSelector-Dw7UzSrk.js} +477 -468
- package/dist/app/index.js +2 -2
- package/dist/index.d.ts +48 -0
- package/dist/index.js +5143 -4996
- package/dist/style.css +1 -1
- package/dist/tailwind.config.js +28 -0
- package/package.json +1 -1
package/dist/tailwind.config.js
CHANGED
|
@@ -454,6 +454,20 @@ exports.fontSizeConfig = {
|
|
|
454
454
|
fontWeight: 'var(--font-weight-semibold)',
|
|
455
455
|
},
|
|
456
456
|
],
|
|
457
|
+
smallBodyRegular: [
|
|
458
|
+
'15px',
|
|
459
|
+
{
|
|
460
|
+
lineHeight: '24px',
|
|
461
|
+
fontWeight: 'var(--font-weight-normal)',
|
|
462
|
+
},
|
|
463
|
+
],
|
|
464
|
+
smallBodyEmphasized: [
|
|
465
|
+
'15px',
|
|
466
|
+
{
|
|
467
|
+
lineHeight: '24px',
|
|
468
|
+
fontWeight: 'var(--font-weight-semibold)',
|
|
469
|
+
},
|
|
470
|
+
],
|
|
457
471
|
smallBody1Regular: [
|
|
458
472
|
'var(--SmallBody-1Regular-font-size)',
|
|
459
473
|
{
|
|
@@ -461,6 +475,13 @@ exports.fontSizeConfig = {
|
|
|
461
475
|
fontWeight: 'var(--SmallBody-1Regular-font-weight)',
|
|
462
476
|
},
|
|
463
477
|
],
|
|
478
|
+
smallBody1Emphasized: [
|
|
479
|
+
'var(--SmallBody-1Regular-font-size)',
|
|
480
|
+
{
|
|
481
|
+
lineHeight: 'var(--SmallBody-1Regular-line-height)',
|
|
482
|
+
fontWeight: 'var(--font-weight-semibold)',
|
|
483
|
+
},
|
|
484
|
+
],
|
|
464
485
|
smallBody2Regular: [
|
|
465
486
|
'var(--SmallBody-2Regular-font-size)',
|
|
466
487
|
{
|
|
@@ -468,6 +489,13 @@ exports.fontSizeConfig = {
|
|
|
468
489
|
fontWeight: 'var(--SmallBody-2Regular-font-weight)',
|
|
469
490
|
},
|
|
470
491
|
],
|
|
492
|
+
smallBody2Emphasized: [
|
|
493
|
+
'var(--SmallBody-2Regular-font-size)',
|
|
494
|
+
{
|
|
495
|
+
lineHeight: 'var(--SmallBody-2Regular-line-height)',
|
|
496
|
+
fontWeight: 'var(--font-weight-semibold)',
|
|
497
|
+
},
|
|
498
|
+
],
|
|
471
499
|
smallSubheadRegular: [
|
|
472
500
|
'var(--SmallSubhead-Regular-font-size)',
|
|
473
501
|
{
|
package/package.json
CHANGED