design-system-silkhaus 3.10.0-beta-image-viewer.4 → 3.10.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/dist/{ButtonsGroupSelector-BAlFswmU.js → ButtonsGroupSelector-Dt1072KD.js} +145 -127
- package/dist/app/index.js +2 -2
- package/dist/index.d.ts +105 -18
- package/dist/index.js +11296 -11563
- package/dist/style.css +1 -1
- package/dist/tailwind.config.js +20 -0
- package/package.json +4 -5
package/dist/tailwind.config.js
CHANGED
|
@@ -314,6 +314,9 @@ exports.fontSizeConfig = {
|
|
|
314
314
|
fontWeight: 'var(--font-weight-bold)',
|
|
315
315
|
},
|
|
316
316
|
],
|
|
317
|
+
/**
|
|
318
|
+
* @deprecated use `mediumSubheadRegular` instead
|
|
319
|
+
*/
|
|
317
320
|
mediumSubHeadRegular: [
|
|
318
321
|
'var(--MediumSubHead-Regular-font-size)',
|
|
319
322
|
{
|
|
@@ -321,6 +324,9 @@ exports.fontSizeConfig = {
|
|
|
321
324
|
fontWeight: 'var(--font-weight-normal)',
|
|
322
325
|
},
|
|
323
326
|
],
|
|
327
|
+
/**
|
|
328
|
+
* @deprecated use `mediumSubheadEmphasized` instead
|
|
329
|
+
*/
|
|
324
330
|
mediumSubHeadEmphasized: [
|
|
325
331
|
'var(--MediumSubHead-Regular-font-size)',
|
|
326
332
|
{
|
|
@@ -328,6 +334,20 @@ exports.fontSizeConfig = {
|
|
|
328
334
|
fontWeight: 'var(--font-weight-semibold)',
|
|
329
335
|
},
|
|
330
336
|
],
|
|
337
|
+
mediumSubheadRegular: [
|
|
338
|
+
'var(--MediumSubHead-Regular-font-size)',
|
|
339
|
+
{
|
|
340
|
+
lineHeight: 'var(--MediumSubHead-Regular-line-height)',
|
|
341
|
+
fontWeight: 'var(--font-weight-normal)',
|
|
342
|
+
},
|
|
343
|
+
],
|
|
344
|
+
mediumSubheadEmphasized: [
|
|
345
|
+
'var(--MediumSubHead-Regular-font-size)',
|
|
346
|
+
{
|
|
347
|
+
lineHeight: 'var(--MediumSubHead-Regular-line-height)',
|
|
348
|
+
fontWeight: 'var(--font-weight-semibold)',
|
|
349
|
+
},
|
|
350
|
+
],
|
|
331
351
|
mediumCaption1Regular: [
|
|
332
352
|
'var(--MediumCaption-1Regular-font-size)',
|
|
333
353
|
{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "design-system-silkhaus",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "3.10.0
|
|
4
|
+
"version": "3.10.0",
|
|
5
5
|
"description": "Design system for Silkhaus built with Typescript, React and Tailwind",
|
|
6
6
|
"author": "silkhaus",
|
|
7
7
|
"license": "MIT",
|
|
@@ -113,9 +113,9 @@
|
|
|
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",
|
|
@@ -126,8 +126,7 @@
|
|
|
126
126
|
"react-toastify": "^10.0.5",
|
|
127
127
|
"rsuite": "^5.65.1",
|
|
128
128
|
"simplebar-react": "^3.2.6",
|
|
129
|
-
"slick-carousel": "^1.8.1"
|
|
130
|
-
"yet-another-react-lightbox": "^3.23.2"
|
|
129
|
+
"slick-carousel": "^1.8.1"
|
|
131
130
|
},
|
|
132
131
|
"lint-staged": {
|
|
133
132
|
"*": [
|