@mirohq/design-system-stitches 2.6.1 → 2.6.2-tag-component.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/types.d.ts +10 -0
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -248,6 +248,7 @@ declare const config: {
|
|
|
248
248
|
"text-warning-subtle"?: any;
|
|
249
249
|
};
|
|
250
250
|
'font-sizes': {
|
|
251
|
+
readonly 125: "0.625rem";
|
|
251
252
|
readonly 150: "0.75rem";
|
|
252
253
|
readonly 175: "0.875rem";
|
|
253
254
|
readonly 200: "1rem";
|
|
@@ -780,6 +781,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
780
781
|
"text-warning-subtle"?: string | number | boolean | undefined;
|
|
781
782
|
} | undefined;
|
|
782
783
|
'font-sizes'?: {
|
|
784
|
+
readonly 125?: string | number | boolean | undefined;
|
|
783
785
|
readonly 150?: string | number | boolean | undefined;
|
|
784
786
|
readonly 175?: string | number | boolean | undefined;
|
|
785
787
|
readonly 200?: string | number | boolean | undefined;
|
|
@@ -1128,6 +1130,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
1128
1130
|
"text-warning-subtle"?: string | number | boolean | undefined;
|
|
1129
1131
|
} | undefined;
|
|
1130
1132
|
'font-sizes'?: {
|
|
1133
|
+
readonly 125?: string | number | boolean | undefined;
|
|
1131
1134
|
readonly 150?: string | number | boolean | undefined;
|
|
1132
1135
|
readonly 175?: string | number | boolean | undefined;
|
|
1133
1136
|
readonly 200?: string | number | boolean | undefined;
|
|
@@ -1482,6 +1485,7 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1482
1485
|
"text-warning-subtle"?: any;
|
|
1483
1486
|
};
|
|
1484
1487
|
'font-sizes': {
|
|
1488
|
+
readonly 125: "0.625rem";
|
|
1485
1489
|
readonly 150: "0.75rem";
|
|
1486
1490
|
readonly 175: "0.875rem";
|
|
1487
1491
|
readonly 200: "1rem";
|
|
@@ -2029,6 +2033,7 @@ declare const globalCss: <Styles extends {
|
|
|
2029
2033
|
"text-warning-subtle"?: any;
|
|
2030
2034
|
};
|
|
2031
2035
|
'font-sizes': {
|
|
2036
|
+
readonly 125: "0.625rem";
|
|
2032
2037
|
readonly 150: "0.75rem";
|
|
2033
2038
|
readonly 175: "0.875rem";
|
|
2034
2039
|
readonly 200: "1rem";
|
|
@@ -2558,6 +2563,7 @@ declare const globalCss: <Styles extends {
|
|
|
2558
2563
|
"text-warning-subtle"?: any;
|
|
2559
2564
|
};
|
|
2560
2565
|
'font-sizes': {
|
|
2566
|
+
readonly 125: "0.625rem";
|
|
2561
2567
|
readonly 150: "0.75rem";
|
|
2562
2568
|
readonly 175: "0.875rem";
|
|
2563
2569
|
readonly 200: "1rem";
|
|
@@ -3088,6 +3094,7 @@ declare const keyframes: (style: {
|
|
|
3088
3094
|
"text-warning-subtle"?: any;
|
|
3089
3095
|
};
|
|
3090
3096
|
'font-sizes': {
|
|
3097
|
+
readonly 125: "0.625rem";
|
|
3091
3098
|
readonly 150: "0.75rem";
|
|
3092
3099
|
readonly 175: "0.875rem";
|
|
3093
3100
|
readonly 200: "1rem";
|
|
@@ -3661,6 +3668,7 @@ declare const theme: {
|
|
|
3661
3668
|
readonly 'yellow-950': "#231E0C";
|
|
3662
3669
|
} & Partial<_mirohq_design_system_themes.AliasColors>;
|
|
3663
3670
|
'font-sizes': {
|
|
3671
|
+
readonly 125: "0.625rem";
|
|
3664
3672
|
readonly 150: "0.75rem";
|
|
3665
3673
|
readonly 175: "0.875rem";
|
|
3666
3674
|
readonly 200: "1rem";
|
|
@@ -4032,6 +4040,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
4032
4040
|
"text-warning-subtle"?: any;
|
|
4033
4041
|
};
|
|
4034
4042
|
'font-sizes': {
|
|
4043
|
+
readonly 125: "0.625rem";
|
|
4035
4044
|
readonly 150: "0.75rem";
|
|
4036
4045
|
readonly 175: "0.875rem";
|
|
4037
4046
|
readonly 200: "1rem";
|
|
@@ -4564,6 +4573,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
4564
4573
|
"text-warning-subtle"?: any;
|
|
4565
4574
|
};
|
|
4566
4575
|
'font-sizes': {
|
|
4576
|
+
readonly 125: "0.625rem";
|
|
4567
4577
|
readonly 150: "0.75rem";
|
|
4568
4578
|
readonly 175: "0.875rem";
|
|
4569
4579
|
readonly 200: "1rem";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-stitches",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2-tag-component.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"lodash.merge": "^4.6.2",
|
|
30
|
-
"@mirohq/design-system-themes": "^0.6.0",
|
|
31
|
-
"@mirohq/design-tokens": "^4.0.0",
|
|
30
|
+
"@mirohq/design-system-themes": "^0.6.1-tag-component.0",
|
|
31
|
+
"@mirohq/design-tokens": "^4.1.0-tag-component.0",
|
|
32
32
|
"@mirohq/design-system-types": "^0.6.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|