@mirohq/design-system-patterns 0.2.0-patterns-improvements.0 → 0.2.0-patterns-improvements-2.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/main.js +1 -32
- package/dist/main.js.map +1 -1
- package/dist/module.js +1 -25
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +2 -13
- package/package.json +3 -3
package/dist/main.js
CHANGED
@@ -8,34 +8,10 @@ var designSystemStitches = require('@mirohq/design-system-stitches');
|
|
8
8
|
var designSystemBox = require('@mirohq/design-system-box');
|
9
9
|
var designSystemButton = require('@mirohq/design-system-button');
|
10
10
|
var designSystemTypography = require('@mirohq/design-system-typography');
|
11
|
-
var criticalSVG = require('@mirohq/brand-assets/illustrations/empty-state/critical.svg');
|
12
|
-
var ctaSVG = require('@mirohq/brand-assets/illustrations/empty-state/cta.svg');
|
13
|
-
var generalSVG = require('@mirohq/brand-assets/illustrations/empty-state/general.svg');
|
14
|
-
var inProgressSVG = require('@mirohq/brand-assets/illustrations/empty-state/in-progress.svg');
|
15
|
-
var informativeSVG = require('@mirohq/brand-assets/illustrations/empty-state/informative.svg');
|
16
|
-
var noResultsSVG = require('@mirohq/brand-assets/illustrations/empty-state/no-results.svg');
|
17
|
-
var participateSVG = require('@mirohq/brand-assets/illustrations/empty-state/participate.svg');
|
18
11
|
|
19
12
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
20
13
|
|
21
14
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
22
|
-
var criticalSVG__default = /*#__PURE__*/_interopDefaultLegacy(criticalSVG);
|
23
|
-
var ctaSVG__default = /*#__PURE__*/_interopDefaultLegacy(ctaSVG);
|
24
|
-
var generalSVG__default = /*#__PURE__*/_interopDefaultLegacy(generalSVG);
|
25
|
-
var inProgressSVG__default = /*#__PURE__*/_interopDefaultLegacy(inProgressSVG);
|
26
|
-
var informativeSVG__default = /*#__PURE__*/_interopDefaultLegacy(informativeSVG);
|
27
|
-
var noResultsSVG__default = /*#__PURE__*/_interopDefaultLegacy(noResultsSVG);
|
28
|
-
var participateSVG__default = /*#__PURE__*/_interopDefaultLegacy(participateSVG);
|
29
|
-
|
30
|
-
const emptyStateIllustrations = {
|
31
|
-
critical: criticalSVG__default["default"],
|
32
|
-
cta: ctaSVG__default["default"],
|
33
|
-
general: generalSVG__default["default"],
|
34
|
-
"in-progress": inProgressSVG__default["default"],
|
35
|
-
informative: informativeSVG__default["default"],
|
36
|
-
"no-results": noResultsSVG__default["default"],
|
37
|
-
participate: participateSVG__default["default"]
|
38
|
-
};
|
39
15
|
|
40
16
|
const Container = designSystemStitches.styled(designSystemBox.Box, {
|
41
17
|
background: "$background-neutrals",
|
@@ -60,14 +36,7 @@ const Actions = designSystemStitches.styled(designSystemBox.Box, {
|
|
60
36
|
gap: "$100"
|
61
37
|
});
|
62
38
|
const PatternEmptyState = React__default["default"].forwardRef(({ heading, description, illustration, actions, ...restProps }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(Container, { ref, ...restProps, children: [
|
63
|
-
illustration != null && /* @__PURE__ */ jsxRuntime.jsx(
|
64
|
-
Illustration,
|
65
|
-
{
|
66
|
-
src: emptyStateIllustrations[illustration],
|
67
|
-
"aria-hidden": true,
|
68
|
-
alt: ""
|
69
|
-
}
|
70
|
-
),
|
39
|
+
illustration != null && /* @__PURE__ */ jsxRuntime.jsx(Illustration, { src: illustration, "aria-hidden": true, alt: "" }),
|
71
40
|
/* @__PURE__ */ jsxRuntime.jsx(designSystemTypography.Heading, { ref, level: 2, styledAs: "h3", children: heading }),
|
72
41
|
description != null && /* @__PURE__ */ jsxRuntime.jsx(Description, { css: { color: "$text-neutrals-subtle" }, children: description }),
|
73
42
|
actions != null && /* @__PURE__ */ jsxRuntime.jsxs(Actions, { children: [
|
package/dist/main.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"main.js","sources":["../src/empty-state/
|
1
|
+
{"version":3,"file":"main.js","sources":["../src/empty-state/empty-state.tsx"],"sourcesContent":["import React from 'react'\nimport type { ReactNode, ElementRef } from 'react'\nimport { styled } from '@mirohq/design-system-stitches'\nimport { Box } from '@mirohq/design-system-box'\nimport { Button } from '@mirohq/design-system-button'\nimport type { ButtonProps } from '@mirohq/design-system-button'\nimport type { BoxProps } from '@mirohq/design-system-box'\nimport { Heading } from '@mirohq/design-system-typography'\n\n// Types\n// -----------------------------------------------------------------------------\nexport interface PatternEmptyStateProps extends Omit<BoxProps, 'children'> {\n heading: ReactNode\n description?: ReactNode\n illustration?: string\n actions?: {\n primary: ActionButton\n secondary?: ActionButton\n }\n}\n\ntype ActionButton = Omit<ButtonProps, 'variant' | 'children'> & {\n label: ReactNode\n}\n\n// Styled\n// -----------------------------------------------------------------------------\nconst Container = styled(Box, {\n background: '$background-neutrals',\n padding: '$500',\n display: 'flex',\n flexDirection: 'column',\n gap: '$50',\n minWidth: '290px',\n maxWidth: '480px',\n})\n\nconst Illustration = styled('img', {\n width: '112px',\n display: 'block',\n})\n\nconst Description = styled(Box, {\n color: '$text-neutrals-subtle',\n})\n\nconst Actions = styled(Box, {\n paddingY: '$200',\n display: 'flex',\n flexWrap: 'wrap',\n gap: '$100',\n})\n\n// Component\n// -----------------------------------------------------------------------------\nexport const PatternEmptyState = React.forwardRef<\n ElementRef<typeof Box>,\n PatternEmptyStateProps\n>(({ heading, description, illustration, actions, ...restProps }, ref) => (\n <Container ref={ref} {...restProps}>\n {illustration != null && (\n <Illustration src={illustration} aria-hidden alt='' />\n )}\n <Heading ref={ref} level={2} styledAs='h3'>\n {heading}\n </Heading>\n {description != null && (\n <Description css={{ color: '$text-neutrals-subtle' }}>\n {description}\n </Description>\n )}\n {actions != null && (\n <Actions>\n <Button {...actions.primary} variant='primary'>\n {actions.primary.label}\n </Button>\n\n {actions.secondary != null && (\n <Button {...actions.secondary} variant='ghost'>\n {actions.secondary.label}\n </Button>\n )}\n </Actions>\n )}\n </Container>\n))\n"],"names":["styled","Box","React","Heading","jsx","jsxs","Button"],"mappings":";;;;;;;;;;;;;;;AA2BA,MAAM,SAAA,GAAYA,4BAAOC,mBAAK,EAAA;AAAA,EAC5B,UAAY,EAAA,sBAAA;AAAA,EACZ,OAAS,EAAA,MAAA;AAAA,EACT,OAAS,EAAA,MAAA;AAAA,EACT,aAAe,EAAA,QAAA;AAAA,EACf,GAAK,EAAA,KAAA;AAAA,EACL,QAAU,EAAA,OAAA;AAAA,EACV,QAAU,EAAA,OAAA;AACZ,CAAC,CAAA,CAAA;AAED,MAAM,YAAA,GAAeD,4BAAO,KAAO,EAAA;AAAA,EACjC,KAAO,EAAA,OAAA;AAAA,EACP,OAAS,EAAA,OAAA;AACX,CAAC,CAAA,CAAA;AAED,MAAM,WAAA,GAAcA,4BAAOC,mBAAK,EAAA;AAAA,EAC9B,KAAO,EAAA,uBAAA;AACT,CAAC,CAAA,CAAA;AAED,MAAM,OAAA,GAAUD,4BAAOC,mBAAK,EAAA;AAAA,EAC1B,QAAU,EAAA,MAAA;AAAA,EACV,OAAS,EAAA,MAAA;AAAA,EACT,QAAU,EAAA,MAAA;AAAA,EACV,GAAK,EAAA,MAAA;AACP,CAAC,CAAA,CAAA;AAIM,MAAM,oBAAoBC,yBAAM,CAAA,UAAA,CAGrC,CAAC,EAAE,SAAS,WAAa,EAAA,YAAA,EAAc,OAAS,EAAA,GAAG,WAAa,EAAA,GAAA,qCAC/D,SAAU,EAAA,EAAA,GAAA,EAAW,GAAG,SACtB,EAAA,QAAA,EAAA;AAAA,EAAgB,YAAA,IAAA,IAAA,mCACd,YAAa,EAAA,EAAA,GAAA,EAAK,cAAc,aAAW,EAAA,IAAA,EAAC,KAAI,EAAG,EAAA,CAAA;AAAA,iCAErDC,8BAAQ,EAAA,EAAA,GAAA,EAAU,OAAO,CAAG,EAAA,QAAA,EAAS,MACnC,QACH,EAAA,OAAA,EAAA,CAAA;AAAA,EACC,WAAA,IAAe,wBACbC,cAAA,CAAA,WAAA,EAAA,EAAY,KAAK,EAAE,KAAA,EAAO,uBAAwB,EAAA,EAChD,QACH,EAAA,WAAA,EAAA,CAAA;AAAA,EAED,OAAA,IAAW,IACV,oBAAAC,eAAA,CAAC,OACC,EAAA,EAAA,QAAA,EAAA;AAAA,oBAACD,cAAA,CAAAE,yBAAA,EAAA,EAAQ,GAAG,OAAQ,CAAA,OAAA,EAAS,SAAQ,SAClC,EAAA,QAAA,EAAA,OAAA,CAAQ,QAAQ,KACnB,EAAA,CAAA;AAAA,IAEC,OAAQ,CAAA,SAAA,IAAa,IACpB,oBAAAF,cAAA,CAACE,yBAAQ,EAAA,EAAA,GAAG,OAAQ,CAAA,SAAA,EAAW,OAAQ,EAAA,OAAA,EACpC,QAAQ,EAAA,OAAA,CAAA,SAAA,CAAU,KACrB,EAAA,CAAA;AAAA,GAEJ,EAAA,CAAA;AAAA,CAAA,EAEJ,CACD;;;;"}
|
package/dist/module.js
CHANGED
@@ -4,23 +4,6 @@ import { styled } from '@mirohq/design-system-stitches';
|
|
4
4
|
import { Box } from '@mirohq/design-system-box';
|
5
5
|
import { Button } from '@mirohq/design-system-button';
|
6
6
|
import { Heading } from '@mirohq/design-system-typography';
|
7
|
-
import criticalSVG from '@mirohq/brand-assets/illustrations/empty-state/critical.svg';
|
8
|
-
import ctaSVG from '@mirohq/brand-assets/illustrations/empty-state/cta.svg';
|
9
|
-
import generalSVG from '@mirohq/brand-assets/illustrations/empty-state/general.svg';
|
10
|
-
import inProgressSVG from '@mirohq/brand-assets/illustrations/empty-state/in-progress.svg';
|
11
|
-
import informativeSVG from '@mirohq/brand-assets/illustrations/empty-state/informative.svg';
|
12
|
-
import noResultsSVG from '@mirohq/brand-assets/illustrations/empty-state/no-results.svg';
|
13
|
-
import participateSVG from '@mirohq/brand-assets/illustrations/empty-state/participate.svg';
|
14
|
-
|
15
|
-
const emptyStateIllustrations = {
|
16
|
-
critical: criticalSVG,
|
17
|
-
cta: ctaSVG,
|
18
|
-
general: generalSVG,
|
19
|
-
"in-progress": inProgressSVG,
|
20
|
-
informative: informativeSVG,
|
21
|
-
"no-results": noResultsSVG,
|
22
|
-
participate: participateSVG
|
23
|
-
};
|
24
7
|
|
25
8
|
const Container = styled(Box, {
|
26
9
|
background: "$background-neutrals",
|
@@ -45,14 +28,7 @@ const Actions = styled(Box, {
|
|
45
28
|
gap: "$100"
|
46
29
|
});
|
47
30
|
const PatternEmptyState = React.forwardRef(({ heading, description, illustration, actions, ...restProps }, ref) => /* @__PURE__ */ jsxs(Container, { ref, ...restProps, children: [
|
48
|
-
illustration != null && /* @__PURE__ */ jsx(
|
49
|
-
Illustration,
|
50
|
-
{
|
51
|
-
src: emptyStateIllustrations[illustration],
|
52
|
-
"aria-hidden": true,
|
53
|
-
alt: ""
|
54
|
-
}
|
55
|
-
),
|
31
|
+
illustration != null && /* @__PURE__ */ jsx(Illustration, { src: illustration, "aria-hidden": true, alt: "" }),
|
56
32
|
/* @__PURE__ */ jsx(Heading, { ref, level: 2, styledAs: "h3", children: heading }),
|
57
33
|
description != null && /* @__PURE__ */ jsx(Description, { css: { color: "$text-neutrals-subtle" }, children: description }),
|
58
34
|
actions != null && /* @__PURE__ */ jsxs(Actions, { children: [
|
package/dist/module.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"module.js","sources":["../src/empty-state/
|
1
|
+
{"version":3,"file":"module.js","sources":["../src/empty-state/empty-state.tsx"],"sourcesContent":["import React from 'react'\nimport type { ReactNode, ElementRef } from 'react'\nimport { styled } from '@mirohq/design-system-stitches'\nimport { Box } from '@mirohq/design-system-box'\nimport { Button } from '@mirohq/design-system-button'\nimport type { ButtonProps } from '@mirohq/design-system-button'\nimport type { BoxProps } from '@mirohq/design-system-box'\nimport { Heading } from '@mirohq/design-system-typography'\n\n// Types\n// -----------------------------------------------------------------------------\nexport interface PatternEmptyStateProps extends Omit<BoxProps, 'children'> {\n heading: ReactNode\n description?: ReactNode\n illustration?: string\n actions?: {\n primary: ActionButton\n secondary?: ActionButton\n }\n}\n\ntype ActionButton = Omit<ButtonProps, 'variant' | 'children'> & {\n label: ReactNode\n}\n\n// Styled\n// -----------------------------------------------------------------------------\nconst Container = styled(Box, {\n background: '$background-neutrals',\n padding: '$500',\n display: 'flex',\n flexDirection: 'column',\n gap: '$50',\n minWidth: '290px',\n maxWidth: '480px',\n})\n\nconst Illustration = styled('img', {\n width: '112px',\n display: 'block',\n})\n\nconst Description = styled(Box, {\n color: '$text-neutrals-subtle',\n})\n\nconst Actions = styled(Box, {\n paddingY: '$200',\n display: 'flex',\n flexWrap: 'wrap',\n gap: '$100',\n})\n\n// Component\n// -----------------------------------------------------------------------------\nexport const PatternEmptyState = React.forwardRef<\n ElementRef<typeof Box>,\n PatternEmptyStateProps\n>(({ heading, description, illustration, actions, ...restProps }, ref) => (\n <Container ref={ref} {...restProps}>\n {illustration != null && (\n <Illustration src={illustration} aria-hidden alt='' />\n )}\n <Heading ref={ref} level={2} styledAs='h3'>\n {heading}\n </Heading>\n {description != null && (\n <Description css={{ color: '$text-neutrals-subtle' }}>\n {description}\n </Description>\n )}\n {actions != null && (\n <Actions>\n <Button {...actions.primary} variant='primary'>\n {actions.primary.label}\n </Button>\n\n {actions.secondary != null && (\n <Button {...actions.secondary} variant='ghost'>\n {actions.secondary.label}\n </Button>\n )}\n </Actions>\n )}\n </Container>\n))\n"],"names":[],"mappings":";;;;;;;AA2BA,MAAM,SAAA,GAAY,OAAO,GAAK,EAAA;AAAA,EAC5B,UAAY,EAAA,sBAAA;AAAA,EACZ,OAAS,EAAA,MAAA;AAAA,EACT,OAAS,EAAA,MAAA;AAAA,EACT,aAAe,EAAA,QAAA;AAAA,EACf,GAAK,EAAA,KAAA;AAAA,EACL,QAAU,EAAA,OAAA;AAAA,EACV,QAAU,EAAA,OAAA;AACZ,CAAC,CAAA,CAAA;AAED,MAAM,YAAA,GAAe,OAAO,KAAO,EAAA;AAAA,EACjC,KAAO,EAAA,OAAA;AAAA,EACP,OAAS,EAAA,OAAA;AACX,CAAC,CAAA,CAAA;AAED,MAAM,WAAA,GAAc,OAAO,GAAK,EAAA;AAAA,EAC9B,KAAO,EAAA,uBAAA;AACT,CAAC,CAAA,CAAA;AAED,MAAM,OAAA,GAAU,OAAO,GAAK,EAAA;AAAA,EAC1B,QAAU,EAAA,MAAA;AAAA,EACV,OAAS,EAAA,MAAA;AAAA,EACT,QAAU,EAAA,MAAA;AAAA,EACV,GAAK,EAAA,MAAA;AACP,CAAC,CAAA,CAAA;AAIM,MAAM,oBAAoB,KAAM,CAAA,UAAA,CAGrC,CAAC,EAAE,SAAS,WAAa,EAAA,YAAA,EAAc,OAAS,EAAA,GAAG,WAAa,EAAA,GAAA,0BAC/D,SAAU,EAAA,EAAA,GAAA,EAAW,GAAG,SACtB,EAAA,QAAA,EAAA;AAAA,EAAgB,YAAA,IAAA,IAAA,wBACd,YAAa,EAAA,EAAA,GAAA,EAAK,cAAc,aAAW,EAAA,IAAA,EAAC,KAAI,EAAG,EAAA,CAAA;AAAA,sBAErD,OAAQ,EAAA,EAAA,GAAA,EAAU,OAAO,CAAG,EAAA,QAAA,EAAS,MACnC,QACH,EAAA,OAAA,EAAA,CAAA;AAAA,EACC,WAAA,IAAe,wBACb,GAAA,CAAA,WAAA,EAAA,EAAY,KAAK,EAAE,KAAA,EAAO,uBAAwB,EAAA,EAChD,QACH,EAAA,WAAA,EAAA,CAAA;AAAA,EAED,OAAA,IAAW,IACV,oBAAA,IAAA,CAAC,OACC,EAAA,EAAA,QAAA,EAAA;AAAA,oBAAC,GAAA,CAAA,MAAA,EAAA,EAAQ,GAAG,OAAQ,CAAA,OAAA,EAAS,SAAQ,SAClC,EAAA,QAAA,EAAA,OAAA,CAAQ,QAAQ,KACnB,EAAA,CAAA;AAAA,IAEC,OAAQ,CAAA,SAAA,IAAa,IACpB,oBAAA,GAAA,CAAC,MAAQ,EAAA,EAAA,GAAG,OAAQ,CAAA,SAAA,EAAW,OAAQ,EAAA,OAAA,EACpC,QAAQ,EAAA,OAAA,CAAA,SAAA,CAAU,KACrB,EAAA,CAAA;AAAA,GAEJ,EAAA,CAAA;AAAA,CAAA,EAEJ,CACD;;;;"}
|
package/dist/types.d.ts
CHANGED
@@ -2,21 +2,10 @@ import React, { ReactNode } from 'react';
|
|
2
2
|
import { ButtonProps } from '@mirohq/design-system-button';
|
3
3
|
import { BoxProps } from '@mirohq/design-system-box';
|
4
4
|
|
5
|
-
declare const emptyStateIllustrations: {
|
6
|
-
critical: string;
|
7
|
-
cta: string;
|
8
|
-
general: string;
|
9
|
-
'in-progress': string;
|
10
|
-
informative: string;
|
11
|
-
'no-results': string;
|
12
|
-
participate: string;
|
13
|
-
};
|
14
|
-
declare type EmptyStateIllustrationProps = keyof typeof emptyStateIllustrations;
|
15
|
-
|
16
5
|
interface PatternEmptyStateProps extends Omit<BoxProps, 'children'> {
|
17
6
|
heading: ReactNode;
|
18
7
|
description?: ReactNode;
|
19
|
-
illustration?:
|
8
|
+
illustration?: string;
|
20
9
|
actions?: {
|
21
10
|
primary: ActionButton;
|
22
11
|
secondary?: ActionButton;
|
@@ -27,4 +16,4 @@ declare type ActionButton = Omit<ButtonProps, 'variant' | 'children'> & {
|
|
27
16
|
};
|
28
17
|
declare const PatternEmptyState: React.ForwardRefExoticComponent<Omit<PatternEmptyStateProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
29
18
|
|
30
|
-
export {
|
19
|
+
export { PatternEmptyState, PatternEmptyStateProps };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mirohq/design-system-patterns",
|
3
|
-
"version": "0.2.0-patterns-improvements.0",
|
3
|
+
"version": "0.2.0-patterns-improvements-2.0",
|
4
4
|
"description": "",
|
5
5
|
"author": "Miro",
|
6
6
|
"source": "src/index.ts",
|
@@ -27,9 +27,9 @@
|
|
27
27
|
},
|
28
28
|
"dependencies": {
|
29
29
|
"@mirohq/design-system-box": "^2.1.60",
|
30
|
+
"@mirohq/design-system-button": "^4.2.4",
|
30
31
|
"@mirohq/design-system-stitches": "^2.6.29",
|
31
|
-
"@mirohq/design-system-typography": "^0.6.7"
|
32
|
-
"@mirohq/design-system-button": "^4.2.4"
|
32
|
+
"@mirohq/design-system-typography": "^0.6.7"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
35
35
|
"@mirohq/brand-assets": "^0.2.1"
|