@mirohq/design-system-grid 2.1.2-test-changelog.0 → 2.1.2
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 +6 -0
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -118,6 +118,8 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
118
118
|
readonly 'background-danger'?: any;
|
|
119
119
|
readonly 'background-danger-hover'?: any;
|
|
120
120
|
readonly 'background-success'?: any;
|
|
121
|
+
readonly 'background-warning-subtle'?: any;
|
|
122
|
+
readonly 'background-warning-prominent'?: any;
|
|
121
123
|
readonly 'text-neutrals-inverted'?: any;
|
|
122
124
|
readonly 'text-neutrals'?: any;
|
|
123
125
|
readonly 'text-neutrals-subtle'?: any;
|
|
@@ -198,6 +200,7 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
198
200
|
readonly 50: "0 4px 16px #05003812";
|
|
199
201
|
readonly 100: "0 8px 32px #05003808";
|
|
200
202
|
readonly 'focus-small': "0 0 0 2px $colors$blue-200, inset 0 0 0 2px $colors$blue-500, inset 0 0 0 3px $colors$white";
|
|
203
|
+
readonly 'focus-small-outline': "0 0 0 2px $colors$blue-200, inset 0 0 0 1px $colors$blue-500, inset 0 0 0 2px $colors$white";
|
|
201
204
|
readonly 'focus-large': "0 0 0 4px $colors$blue-200, inset 0 0 0 2px $colors$blue-500, inset 0 0 0 3px $colors$white";
|
|
202
205
|
readonly 'focus-controls': "0 0 0 1px $colors$white, 0 0 0 3px $colors$blue-500, 0 0 0 5px $colors$blue-200";
|
|
203
206
|
};
|
|
@@ -552,6 +555,8 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
552
555
|
readonly 'background-danger'?: any;
|
|
553
556
|
readonly 'background-danger-hover'?: any;
|
|
554
557
|
readonly 'background-success'?: any;
|
|
558
|
+
readonly 'background-warning-subtle'?: any;
|
|
559
|
+
readonly 'background-warning-prominent'?: any;
|
|
555
560
|
readonly 'text-neutrals-inverted'?: any;
|
|
556
561
|
readonly 'text-neutrals'?: any;
|
|
557
562
|
readonly 'text-neutrals-subtle'?: any;
|
|
@@ -632,6 +637,7 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
632
637
|
readonly 50: "0 4px 16px #05003812";
|
|
633
638
|
readonly 100: "0 8px 32px #05003808";
|
|
634
639
|
readonly 'focus-small': "0 0 0 2px $colors$blue-200, inset 0 0 0 2px $colors$blue-500, inset 0 0 0 3px $colors$white";
|
|
640
|
+
readonly 'focus-small-outline': "0 0 0 2px $colors$blue-200, inset 0 0 0 1px $colors$blue-500, inset 0 0 0 2px $colors$white";
|
|
635
641
|
readonly 'focus-large': "0 0 0 4px $colors$blue-200, inset 0 0 0 2px $colors$blue-500, inset 0 0 0 3px $colors$white";
|
|
636
642
|
readonly 'focus-controls': "0 0 0 1px $colors$white, 0 0 0 3px $colors$blue-500, 0 0 0 5px $colors$blue-200";
|
|
637
643
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-grid",
|
|
3
|
-
"version": "2.1.2
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"react": "^16.14 || ^17 || ^18"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@mirohq/design-system-
|
|
30
|
-
"@mirohq/design-system-
|
|
31
|
-
"@mirohq/design-system-
|
|
29
|
+
"@mirohq/design-system-stitches": "^2.1.2",
|
|
30
|
+
"@mirohq/design-system-utils": "^0.12.1",
|
|
31
|
+
"@mirohq/design-system-primitive": "^1.1.0"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "rollup -c ../../../rollup.config.js",
|