design-system-silkhaus 3.11.0-beta-image-viewer.18 → 3.11.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-CshRIOBN.js} +480 -473
- package/dist/app/index.js +2 -2
- package/dist/index.d.ts +50 -79
- package/dist/index.js +12613 -14314
- package/dist/style.css +1 -1
- package/dist/tailwind.config.js +28 -0
- package/package.json +4 -6
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "design-system-silkhaus",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "3.11.0-beta-
|
|
4
|
+
"version": "3.11.0-beta.month-range-picker.1",
|
|
5
5
|
"description": "Design system for Silkhaus built with Typescript, React and Tailwind",
|
|
6
6
|
"author": "silkhaus",
|
|
7
7
|
"license": "MIT",
|
|
@@ -113,22 +113,20 @@
|
|
|
113
113
|
"vitest": "^2.0.4"
|
|
114
114
|
},
|
|
115
115
|
"peerDependencies": {
|
|
116
|
-
"moment": "^2.30.1",
|
|
117
116
|
"react": "^18.2.0",
|
|
118
|
-
"react-dom": "^18.2.0"
|
|
117
|
+
"react-dom": "^18.2.0",
|
|
118
|
+
"moment": "^2.30.1"
|
|
119
119
|
},
|
|
120
120
|
"dependencies": {
|
|
121
121
|
"@floating-ui/react": "^0.26.20",
|
|
122
122
|
"class-variance-authority": "^0.7.0",
|
|
123
123
|
"react-dates": "^21.8.0",
|
|
124
124
|
"react-jss": "^10.10.0",
|
|
125
|
-
"react-responsive": "^10.0.1",
|
|
126
125
|
"react-slick": "^0.30.3",
|
|
127
126
|
"react-toastify": "^10.0.5",
|
|
128
127
|
"rsuite": "^5.65.1",
|
|
129
128
|
"simplebar-react": "^3.2.6",
|
|
130
|
-
"slick-carousel": "^1.8.1"
|
|
131
|
-
"yet-another-react-lightbox": "^3.23.2"
|
|
129
|
+
"slick-carousel": "^1.8.1"
|
|
132
130
|
},
|
|
133
131
|
"lint-staged": {
|
|
134
132
|
"*": [
|