@mirohq/design-system-badge 0.3.21 → 0.3.22
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 +13 -0
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -120,6 +120,9 @@ declare const StyledBadge: react.ForwardRefExoticComponent<Omit<Omit<{}, never>
|
|
|
120
120
|
"background-primary-subtle-pressed-hover"?: any;
|
|
121
121
|
"background-primary-subtle-selected"?: any;
|
|
122
122
|
"background-success"?: any;
|
|
123
|
+
"background-success-prominent"?: any;
|
|
124
|
+
"background-success-prominent-active"?: any;
|
|
125
|
+
"background-success-prominent-hover"?: any;
|
|
123
126
|
"background-warning-prominent"?: any;
|
|
124
127
|
"background-warning-subtle"?: any;
|
|
125
128
|
"border-danger"?: any;
|
|
@@ -148,6 +151,8 @@ declare const StyledBadge: react.ForwardRefExoticComponent<Omit<Omit<{}, never>
|
|
|
148
151
|
"border-primary-hover"?: any;
|
|
149
152
|
"border-primary-inverted"?: any;
|
|
150
153
|
"border-success"?: any;
|
|
154
|
+
"border-success-active"?: any;
|
|
155
|
+
"border-success-hover"?: any;
|
|
151
156
|
"border-warning"?: any;
|
|
152
157
|
"icon-danger"?: any;
|
|
153
158
|
"icon-danger-active"?: any;
|
|
@@ -167,9 +172,12 @@ declare const StyledBadge: react.ForwardRefExoticComponent<Omit<Omit<{}, never>
|
|
|
167
172
|
"icon-primary-inverted"?: any;
|
|
168
173
|
"icon-primary-selected"?: any;
|
|
169
174
|
"icon-success"?: any;
|
|
175
|
+
"icon-success-active"?: any;
|
|
176
|
+
"icon-success-hover"?: any;
|
|
170
177
|
"icon-success-inverted"?: any;
|
|
171
178
|
"icon-warning"?: any;
|
|
172
179
|
"icon-warning-prominent"?: any;
|
|
180
|
+
"icon-warning-subtle"?: any;
|
|
173
181
|
"text-danger"?: any;
|
|
174
182
|
"text-danger-active"?: any;
|
|
175
183
|
"text-danger-hover"?: any;
|
|
@@ -191,7 +199,11 @@ declare const StyledBadge: react.ForwardRefExoticComponent<Omit<Omit<{}, never>
|
|
|
191
199
|
"text-primary-inverted-subtle"?: any;
|
|
192
200
|
"text-primary-selected"?: any;
|
|
193
201
|
"text-success"?: any;
|
|
202
|
+
"text-success-active"?: any;
|
|
203
|
+
"text-success-hover"?: any;
|
|
204
|
+
"text-success-inverted"?: any;
|
|
194
205
|
"text-warning"?: any;
|
|
206
|
+
"text-warning-subtle"?: any;
|
|
195
207
|
};
|
|
196
208
|
'font-sizes': {
|
|
197
209
|
readonly 150: "0.75rem";
|
|
@@ -234,6 +246,7 @@ declare const StyledBadge: react.ForwardRefExoticComponent<Omit<Omit<{}, never>
|
|
|
234
246
|
};
|
|
235
247
|
space: {
|
|
236
248
|
readonly 0: "0px";
|
|
249
|
+
readonly 25: "2px";
|
|
237
250
|
readonly 50: "4px";
|
|
238
251
|
readonly 100: "8px";
|
|
239
252
|
readonly 150: "12px";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-badge",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.22",
|
|
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-
|
|
29
|
+
"@mirohq/design-system-primitive": "^1.1.1",
|
|
30
30
|
"@mirohq/design-system-types": "^0.6.2",
|
|
31
|
-
"@mirohq/design-system-
|
|
31
|
+
"@mirohq/design-system-stitches": "^2.3.14"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "rollup -c ../../../rollup.config.js",
|