@mirohq/design-system-base-select 0.1.0-box.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/main.js +84 -0
- package/dist/main.js.map +1 -0
- package/dist/module.js +76 -0
- package/dist/module.js.map +1 -0
- package/dist/types.d.ts +14 -0
- package/package.json +38 -0
package/dist/main.js
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var designSystemStyles = require('@mirohq/design-system-styles');
|
|
6
|
+
var designSystemStitches = require('@mirohq/design-system-stitches');
|
|
7
|
+
var designSystemPrimitive = require('@mirohq/design-system-primitive');
|
|
8
|
+
|
|
9
|
+
const StyledItemCheck = designSystemStitches.styled(designSystemPrimitive.Primitive.span, {
|
|
10
|
+
color: "$icon-primary"
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
const separatorStyles = {
|
|
14
|
+
backgroundColor: "$border-neutrals-subtle",
|
|
15
|
+
height: "1px",
|
|
16
|
+
width: "100%",
|
|
17
|
+
margin: "$100 0"
|
|
18
|
+
};
|
|
19
|
+
const contentStyles = {
|
|
20
|
+
backgroundColor: "$background-neutrals-container",
|
|
21
|
+
borderRadius: "$50",
|
|
22
|
+
boxShadow: "$50",
|
|
23
|
+
fontSize: "$175",
|
|
24
|
+
fontWeight: "normal",
|
|
25
|
+
lineHeight: "20px",
|
|
26
|
+
padding: "$50",
|
|
27
|
+
zIndex: "$select",
|
|
28
|
+
// this z-index will be applied to an absolute positioned container
|
|
29
|
+
outline: "1px solid transparent"
|
|
30
|
+
};
|
|
31
|
+
const itemStyles = {
|
|
32
|
+
all: "unset",
|
|
33
|
+
position: "relative",
|
|
34
|
+
display: "grid",
|
|
35
|
+
gridTemplateColumns: "20px 1fr",
|
|
36
|
+
cursor: "pointer",
|
|
37
|
+
userSelect: "none",
|
|
38
|
+
fontSize: "$175",
|
|
39
|
+
lineHeight: "20px",
|
|
40
|
+
boxSizing: "border-box",
|
|
41
|
+
padding: "6px 0",
|
|
42
|
+
paddingInline: "$150 $100",
|
|
43
|
+
borderRadius: "$50",
|
|
44
|
+
color: "$text-neutrals",
|
|
45
|
+
...designSystemStyles.focus.css({
|
|
46
|
+
boxShadow: "$focus-small"
|
|
47
|
+
}),
|
|
48
|
+
'&:not([aria-disabled="true"])': {
|
|
49
|
+
_hover: {
|
|
50
|
+
background: "$background-primary-subtle-hover",
|
|
51
|
+
color: "$text-primary-hover",
|
|
52
|
+
boxShadow: "none",
|
|
53
|
+
["".concat(StyledItemCheck)]: {
|
|
54
|
+
color: "$icon-primary-hover"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"&:active": {
|
|
58
|
+
background: "$background-primary-subtle-active",
|
|
59
|
+
color: "$text-primary-active",
|
|
60
|
+
boxShadow: "none"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"&:disabled, &[aria-disabled=true], &[data-disabled]": {
|
|
64
|
+
cursor: "default",
|
|
65
|
+
color: "$text-neutrals-disabled",
|
|
66
|
+
["".concat(StyledItemCheck)]: {
|
|
67
|
+
color: "$icon-neutrals-disabled"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
'&[aria-selected="true"]:not(:disabled,[aria-disabled=true],[data-disabled])': {
|
|
71
|
+
color: "$text-primary-selected"
|
|
72
|
+
}
|
|
73
|
+
};
|
|
74
|
+
const groupLabelStyles = {
|
|
75
|
+
color: "$text-neutrals-subtle",
|
|
76
|
+
padding: "6px $100"
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
exports.StyledItemCheck = StyledItemCheck;
|
|
80
|
+
exports.contentStyles = contentStyles;
|
|
81
|
+
exports.groupLabelStyles = groupLabelStyles;
|
|
82
|
+
exports.itemStyles = itemStyles;
|
|
83
|
+
exports.separatorStyles = separatorStyles;
|
|
84
|
+
//# sourceMappingURL=main.js.map
|
package/dist/main.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.js","sources":["../src/item-check.styled.ts","../src/styles.ts"],"sourcesContent":["import { styled } from '@mirohq/design-system-stitches'\nimport { Primitive } from '@mirohq/design-system-primitive'\n\nexport const StyledItemCheck = styled(Primitive.span, {\n color: '$icon-primary',\n})\n","import type { CSS } from '@mirohq/design-system-stitches'\nimport { focus } from '@mirohq/design-system-styles'\n\nimport { StyledItemCheck } from './item-check.styled'\n\nexport const separatorStyles: CSS = {\n backgroundColor: '$border-neutrals-subtle',\n height: '1px',\n width: '100%',\n margin: '$100 0',\n}\n\nexport const contentStyles: CSS = {\n backgroundColor: '$background-neutrals-container',\n borderRadius: '$50',\n boxShadow: '$50',\n fontSize: '$175',\n fontWeight: 'normal',\n lineHeight: '20px',\n padding: '$50',\n zIndex: '$select', // this z-index will be applied to an absolute positioned container\n outline: '1px solid transparent',\n}\n\nexport const itemStyles: CSS = {\n all: 'unset',\n position: 'relative',\n display: 'grid',\n gridTemplateColumns: '20px 1fr',\n cursor: 'pointer',\n userSelect: 'none',\n fontSize: '$175',\n lineHeight: '20px',\n boxSizing: 'border-box',\n padding: '6px 0',\n paddingInline: '$150 $100',\n borderRadius: '$50',\n color: '$text-neutrals',\n\n ...focus.css({\n boxShadow: '$focus-small',\n }),\n\n '&:not([aria-disabled=\"true\"])': {\n _hover: {\n background: '$background-primary-subtle-hover',\n color: '$text-primary-hover',\n boxShadow: 'none',\n\n [`${StyledItemCheck}`]: {\n color: '$icon-primary-hover',\n },\n },\n\n '&:active': {\n background: '$background-primary-subtle-active',\n color: '$text-primary-active',\n boxShadow: 'none',\n },\n },\n\n '&:disabled, &[aria-disabled=true], &[data-disabled]': {\n cursor: 'default',\n color: '$text-neutrals-disabled',\n\n [`${StyledItemCheck}`]: {\n color: '$icon-neutrals-disabled',\n },\n },\n\n '&[aria-selected=\"true\"]:not(:disabled,[aria-disabled=true],[data-disabled])':\n {\n color: '$text-primary-selected',\n },\n}\n\nexport const groupLabelStyles: CSS = {\n color: '$text-neutrals-subtle',\n padding: '6px $100',\n}\n"],"names":["styled","Primitive","focus"],"mappings":";;;;;;;;AAGa,MAAA,eAAA,GAAkBA,2BAAO,CAAAC,+BAAA,CAAU,IAAM,EAAA;AAAA,EACpD,KAAO,EAAA,eAAA;AACT,CAAC;;ACAM,MAAM,eAAuB,GAAA;AAAA,EAClC,eAAiB,EAAA,yBAAA;AAAA,EACjB,MAAQ,EAAA,KAAA;AAAA,EACR,KAAO,EAAA,MAAA;AAAA,EACP,MAAQ,EAAA,QAAA;AACV,EAAA;AAEO,MAAM,aAAqB,GAAA;AAAA,EAChC,eAAiB,EAAA,gCAAA;AAAA,EACjB,YAAc,EAAA,KAAA;AAAA,EACd,SAAW,EAAA,KAAA;AAAA,EACX,QAAU,EAAA,MAAA;AAAA,EACV,UAAY,EAAA,QAAA;AAAA,EACZ,UAAY,EAAA,MAAA;AAAA,EACZ,OAAS,EAAA,KAAA;AAAA,EACT,MAAQ,EAAA,SAAA;AAAA;AAAA,EACR,OAAS,EAAA,uBAAA;AACX,EAAA;AAEO,MAAM,UAAkB,GAAA;AAAA,EAC7B,GAAK,EAAA,OAAA;AAAA,EACL,QAAU,EAAA,UAAA;AAAA,EACV,OAAS,EAAA,MAAA;AAAA,EACT,mBAAqB,EAAA,UAAA;AAAA,EACrB,MAAQ,EAAA,SAAA;AAAA,EACR,UAAY,EAAA,MAAA;AAAA,EACZ,QAAU,EAAA,MAAA;AAAA,EACV,UAAY,EAAA,MAAA;AAAA,EACZ,SAAW,EAAA,YAAA;AAAA,EACX,OAAS,EAAA,OAAA;AAAA,EACT,aAAe,EAAA,WAAA;AAAA,EACf,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA,gBAAA;AAAA,EAEP,GAAGC,yBAAM,GAAI,CAAA;AAAA,IACX,SAAW,EAAA,cAAA;AAAA,GACZ,CAAA;AAAA,EAED,+BAAiC,EAAA;AAAA,IAC/B,MAAQ,EAAA;AAAA,MACN,UAAY,EAAA,kCAAA;AAAA,MACZ,KAAO,EAAA,qBAAA;AAAA,MACP,SAAW,EAAA,MAAA;AAAA,MAEX,CAAC,EAAG,CAAA,MAAA,CAAA,eAAA,CAAiB,GAAG;AAAA,QACtB,KAAO,EAAA,qBAAA;AAAA,OACT;AAAA,KACF;AAAA,IAEA,UAAY,EAAA;AAAA,MACV,UAAY,EAAA,mCAAA;AAAA,MACZ,KAAO,EAAA,sBAAA;AAAA,MACP,SAAW,EAAA,MAAA;AAAA,KACb;AAAA,GACF;AAAA,EAEA,qDAAuD,EAAA;AAAA,IACrD,MAAQ,EAAA,SAAA;AAAA,IACR,KAAO,EAAA,yBAAA;AAAA,IAEP,CAAC,EAAG,CAAA,MAAA,CAAA,eAAA,CAAiB,GAAG;AAAA,MACtB,KAAO,EAAA,yBAAA;AAAA,KACT;AAAA,GACF;AAAA,EAEA,6EACE,EAAA;AAAA,IACE,KAAO,EAAA,wBAAA;AAAA,GACT;AACJ,EAAA;AAEO,MAAM,gBAAwB,GAAA;AAAA,EACnC,KAAO,EAAA,uBAAA;AAAA,EACP,OAAS,EAAA,UAAA;AACX;;;;;;;;"}
|
package/dist/module.js
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { focus } from '@mirohq/design-system-styles';
|
|
2
|
+
import { styled } from '@mirohq/design-system-stitches';
|
|
3
|
+
import { Primitive } from '@mirohq/design-system-primitive';
|
|
4
|
+
|
|
5
|
+
const StyledItemCheck = styled(Primitive.span, {
|
|
6
|
+
color: "$icon-primary"
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
const separatorStyles = {
|
|
10
|
+
backgroundColor: "$border-neutrals-subtle",
|
|
11
|
+
height: "1px",
|
|
12
|
+
width: "100%",
|
|
13
|
+
margin: "$100 0"
|
|
14
|
+
};
|
|
15
|
+
const contentStyles = {
|
|
16
|
+
backgroundColor: "$background-neutrals-container",
|
|
17
|
+
borderRadius: "$50",
|
|
18
|
+
boxShadow: "$50",
|
|
19
|
+
fontSize: "$175",
|
|
20
|
+
fontWeight: "normal",
|
|
21
|
+
lineHeight: "20px",
|
|
22
|
+
padding: "$50",
|
|
23
|
+
zIndex: "$select",
|
|
24
|
+
// this z-index will be applied to an absolute positioned container
|
|
25
|
+
outline: "1px solid transparent"
|
|
26
|
+
};
|
|
27
|
+
const itemStyles = {
|
|
28
|
+
all: "unset",
|
|
29
|
+
position: "relative",
|
|
30
|
+
display: "grid",
|
|
31
|
+
gridTemplateColumns: "20px 1fr",
|
|
32
|
+
cursor: "pointer",
|
|
33
|
+
userSelect: "none",
|
|
34
|
+
fontSize: "$175",
|
|
35
|
+
lineHeight: "20px",
|
|
36
|
+
boxSizing: "border-box",
|
|
37
|
+
padding: "6px 0",
|
|
38
|
+
paddingInline: "$150 $100",
|
|
39
|
+
borderRadius: "$50",
|
|
40
|
+
color: "$text-neutrals",
|
|
41
|
+
...focus.css({
|
|
42
|
+
boxShadow: "$focus-small"
|
|
43
|
+
}),
|
|
44
|
+
'&:not([aria-disabled="true"])': {
|
|
45
|
+
_hover: {
|
|
46
|
+
background: "$background-primary-subtle-hover",
|
|
47
|
+
color: "$text-primary-hover",
|
|
48
|
+
boxShadow: "none",
|
|
49
|
+
["".concat(StyledItemCheck)]: {
|
|
50
|
+
color: "$icon-primary-hover"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"&:active": {
|
|
54
|
+
background: "$background-primary-subtle-active",
|
|
55
|
+
color: "$text-primary-active",
|
|
56
|
+
boxShadow: "none"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"&:disabled, &[aria-disabled=true], &[data-disabled]": {
|
|
60
|
+
cursor: "default",
|
|
61
|
+
color: "$text-neutrals-disabled",
|
|
62
|
+
["".concat(StyledItemCheck)]: {
|
|
63
|
+
color: "$icon-neutrals-disabled"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
'&[aria-selected="true"]:not(:disabled,[aria-disabled=true],[data-disabled])': {
|
|
67
|
+
color: "$text-primary-selected"
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
const groupLabelStyles = {
|
|
71
|
+
color: "$text-neutrals-subtle",
|
|
72
|
+
padding: "6px $100"
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
export { StyledItemCheck, contentStyles, groupLabelStyles, itemStyles, separatorStyles };
|
|
76
|
+
//# sourceMappingURL=module.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.js","sources":["../src/item-check.styled.ts","../src/styles.ts"],"sourcesContent":["import { styled } from '@mirohq/design-system-stitches'\nimport { Primitive } from '@mirohq/design-system-primitive'\n\nexport const StyledItemCheck = styled(Primitive.span, {\n color: '$icon-primary',\n})\n","import type { CSS } from '@mirohq/design-system-stitches'\nimport { focus } from '@mirohq/design-system-styles'\n\nimport { StyledItemCheck } from './item-check.styled'\n\nexport const separatorStyles: CSS = {\n backgroundColor: '$border-neutrals-subtle',\n height: '1px',\n width: '100%',\n margin: '$100 0',\n}\n\nexport const contentStyles: CSS = {\n backgroundColor: '$background-neutrals-container',\n borderRadius: '$50',\n boxShadow: '$50',\n fontSize: '$175',\n fontWeight: 'normal',\n lineHeight: '20px',\n padding: '$50',\n zIndex: '$select', // this z-index will be applied to an absolute positioned container\n outline: '1px solid transparent',\n}\n\nexport const itemStyles: CSS = {\n all: 'unset',\n position: 'relative',\n display: 'grid',\n gridTemplateColumns: '20px 1fr',\n cursor: 'pointer',\n userSelect: 'none',\n fontSize: '$175',\n lineHeight: '20px',\n boxSizing: 'border-box',\n padding: '6px 0',\n paddingInline: '$150 $100',\n borderRadius: '$50',\n color: '$text-neutrals',\n\n ...focus.css({\n boxShadow: '$focus-small',\n }),\n\n '&:not([aria-disabled=\"true\"])': {\n _hover: {\n background: '$background-primary-subtle-hover',\n color: '$text-primary-hover',\n boxShadow: 'none',\n\n [`${StyledItemCheck}`]: {\n color: '$icon-primary-hover',\n },\n },\n\n '&:active': {\n background: '$background-primary-subtle-active',\n color: '$text-primary-active',\n boxShadow: 'none',\n },\n },\n\n '&:disabled, &[aria-disabled=true], &[data-disabled]': {\n cursor: 'default',\n color: '$text-neutrals-disabled',\n\n [`${StyledItemCheck}`]: {\n color: '$icon-neutrals-disabled',\n },\n },\n\n '&[aria-selected=\"true\"]:not(:disabled,[aria-disabled=true],[data-disabled])':\n {\n color: '$text-primary-selected',\n },\n}\n\nexport const groupLabelStyles: CSS = {\n color: '$text-neutrals-subtle',\n padding: '6px $100',\n}\n"],"names":[],"mappings":";;;;AAGa,MAAA,eAAA,GAAkB,MAAO,CAAA,SAAA,CAAU,IAAM,EAAA;AAAA,EACpD,KAAO,EAAA,eAAA;AACT,CAAC;;ACAM,MAAM,eAAuB,GAAA;AAAA,EAClC,eAAiB,EAAA,yBAAA;AAAA,EACjB,MAAQ,EAAA,KAAA;AAAA,EACR,KAAO,EAAA,MAAA;AAAA,EACP,MAAQ,EAAA,QAAA;AACV,EAAA;AAEO,MAAM,aAAqB,GAAA;AAAA,EAChC,eAAiB,EAAA,gCAAA;AAAA,EACjB,YAAc,EAAA,KAAA;AAAA,EACd,SAAW,EAAA,KAAA;AAAA,EACX,QAAU,EAAA,MAAA;AAAA,EACV,UAAY,EAAA,QAAA;AAAA,EACZ,UAAY,EAAA,MAAA;AAAA,EACZ,OAAS,EAAA,KAAA;AAAA,EACT,MAAQ,EAAA,SAAA;AAAA;AAAA,EACR,OAAS,EAAA,uBAAA;AACX,EAAA;AAEO,MAAM,UAAkB,GAAA;AAAA,EAC7B,GAAK,EAAA,OAAA;AAAA,EACL,QAAU,EAAA,UAAA;AAAA,EACV,OAAS,EAAA,MAAA;AAAA,EACT,mBAAqB,EAAA,UAAA;AAAA,EACrB,MAAQ,EAAA,SAAA;AAAA,EACR,UAAY,EAAA,MAAA;AAAA,EACZ,QAAU,EAAA,MAAA;AAAA,EACV,UAAY,EAAA,MAAA;AAAA,EACZ,SAAW,EAAA,YAAA;AAAA,EACX,OAAS,EAAA,OAAA;AAAA,EACT,aAAe,EAAA,WAAA;AAAA,EACf,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA,gBAAA;AAAA,EAEP,GAAG,MAAM,GAAI,CAAA;AAAA,IACX,SAAW,EAAA,cAAA;AAAA,GACZ,CAAA;AAAA,EAED,+BAAiC,EAAA;AAAA,IAC/B,MAAQ,EAAA;AAAA,MACN,UAAY,EAAA,kCAAA;AAAA,MACZ,KAAO,EAAA,qBAAA;AAAA,MACP,SAAW,EAAA,MAAA;AAAA,MAEX,CAAC,EAAG,CAAA,MAAA,CAAA,eAAA,CAAiB,GAAG;AAAA,QACtB,KAAO,EAAA,qBAAA;AAAA,OACT;AAAA,KACF;AAAA,IAEA,UAAY,EAAA;AAAA,MACV,UAAY,EAAA,mCAAA;AAAA,MACZ,KAAO,EAAA,sBAAA;AAAA,MACP,SAAW,EAAA,MAAA;AAAA,KACb;AAAA,GACF;AAAA,EAEA,qDAAuD,EAAA;AAAA,IACrD,MAAQ,EAAA,SAAA;AAAA,IACR,KAAO,EAAA,yBAAA;AAAA,IAEP,CAAC,EAAG,CAAA,MAAA,CAAA,eAAA,CAAiB,GAAG;AAAA,MACtB,KAAO,EAAA,yBAAA;AAAA,KACT;AAAA,GACF;AAAA,EAEA,6EACE,EAAA;AAAA,IACE,KAAO,EAAA,wBAAA;AAAA,GACT;AACJ,EAAA;AAEO,MAAM,gBAAwB,GAAA;AAAA,EACnC,KAAO,EAAA,uBAAA;AAAA,EACP,OAAS,EAAA,UAAA;AACX;;;;"}
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as _mirohq_design_system_stitches from '@mirohq/design-system-stitches';
|
|
2
|
+
import { CSS } from '@mirohq/design-system-stitches';
|
|
3
|
+
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
4
|
+
import * as react from 'react';
|
|
5
|
+
import * as _mirohq_design_system_primitive from '@mirohq/design-system-primitive';
|
|
6
|
+
|
|
7
|
+
declare const separatorStyles: CSS;
|
|
8
|
+
declare const contentStyles: CSS;
|
|
9
|
+
declare const itemStyles: CSS;
|
|
10
|
+
declare const groupLabelStyles: CSS;
|
|
11
|
+
|
|
12
|
+
declare const StyledItemCheck: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"span">>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLSpanElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"span">>, {}, {}>;
|
|
13
|
+
|
|
14
|
+
export { StyledItemCheck, contentStyles, groupLabelStyles, itemStyles, separatorStyles };
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mirohq/design-system-base-select",
|
|
3
|
+
"version": "0.1.0-box.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"author": "Miro",
|
|
6
|
+
"source": "src/index.ts",
|
|
7
|
+
"main": "dist/main.js",
|
|
8
|
+
"module": "dist/module.js",
|
|
9
|
+
"types": "dist/types.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"require": "./dist/main.js",
|
|
14
|
+
"import": "./dist/module.js",
|
|
15
|
+
"types": "./dist/types.d.ts"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"@stitches/react": "^1.2.8",
|
|
26
|
+
"react": "^16.14 || ^17 || ^18"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@mirohq/design-system-primitive": "^1.1.2",
|
|
30
|
+
"@mirohq/design-system-styles": "^1.2.11",
|
|
31
|
+
"@mirohq/design-system-stitches": "^2.6.11"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "rollup -c ../../../../rollup.config.js",
|
|
35
|
+
"clean": "rm -rf dist",
|
|
36
|
+
"prebuild": "pnpm clean"
|
|
37
|
+
}
|
|
38
|
+
}
|