@mirohq/design-system-grid 2.0.9 → 2.0.11-colors.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.map +1 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +264 -138
- package/package.json +3 -3
package/dist/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sources":["../src/grid.styled.ts","../src/partials/item.styled.ts","../src/partials/item.tsx","../src/grid.tsx"],"sourcesContent":["import type { ComponentPropsWithRef } from 'react'\nimport { Primitive } from '@mirohq/design-system-primitive'\nimport { styled, theme } from '@mirohq/design-system-stitches'\nimport {
|
|
1
|
+
{"version":3,"file":"main.js","sources":["../src/grid.styled.ts","../src/partials/item.styled.ts","../src/partials/item.tsx","../src/grid.tsx"],"sourcesContent":["import type { ComponentPropsWithRef } from 'react'\nimport { Primitive } from '@mirohq/design-system-primitive'\nimport { styled, theme } from '@mirohq/design-system-stitches'\nimport { createConstants, mapKeysToVariants } from '@mirohq/design-system-utils'\n\nexport const SIZES = createConstants(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)\n\nexport const StyledGrid = styled(Primitive.div, {\n display: 'grid',\n variants: {\n align: {\n start: {\n alignItems: 'start',\n },\n center: {\n alignItems: 'center',\n },\n end: {\n alignItems: 'end',\n },\n stretch: {\n alignItems: 'stretch',\n },\n baseline: {\n alignItems: 'baseline',\n },\n },\n flow: {\n row: {\n gridAutoFlow: 'row',\n },\n column: {\n gridAutoFlow: 'column',\n },\n dense: {\n gridAutoFlow: 'dense',\n },\n rowDense: {\n gridAutoFlow: 'row dense',\n },\n columnDense: {\n gridAutoFlow: 'column dense',\n },\n },\n gap: mapKeysToVariants(theme['space-gap'], 'gap'),\n gapX: mapKeysToVariants(theme['space-gap'], 'rowGap'),\n gapY: mapKeysToVariants(theme['space-gap'], 'columnGap'),\n columns: mapKeysToVariants(SIZES, key => ({\n gridTemplateColumns: `repeat(${key}, 1fr)`,\n })),\n rows: mapKeysToVariants(SIZES, key => ({\n gridTemplateRows: `repeat(${key}, 1fr)`,\n })),\n justify: {\n start: {\n justifyContent: 'start',\n },\n center: {\n justifyContent: 'center',\n },\n end: {\n justifyContent: 'end',\n },\n stretch: {\n justifyContent: 'stretch',\n },\n between: {\n justifyContent: 'space-between',\n },\n around: {\n justifyContent: 'space-around',\n },\n evenly: {\n justifyContent: 'space-evenly',\n },\n },\n justifyItems: {\n start: {\n justifyItems: 'start',\n },\n center: {\n justifyItems: 'center',\n },\n end: {\n justifyItems: 'end',\n },\n stretch: {\n justifyItems: 'stretch',\n },\n },\n },\n})\n\nexport type StyledGridProps = ComponentPropsWithRef<typeof StyledGrid>\n","import type { ComponentPropsWithRef } from 'react'\nimport { Primitive } from '@mirohq/design-system-primitive'\nimport { styled } from '@mirohq/design-system-stitches'\nimport { mapKeysToVariants, createConstants } from '@mirohq/design-system-utils'\n\nimport { SIZES as GRID_SIZES } from '../grid.styled'\n\nconst ADDITIONAL_COLUMNS_ROWS_SIZES = createConstants(-1)\nconst SIZES = { ...ADDITIONAL_COLUMNS_ROWS_SIZES, ...GRID_SIZES }\n\nexport const StyledItem = styled(Primitive.div, {\n variants: {\n columnStart: mapKeysToVariants(SIZES, key => ({ gridColumnStart: key })),\n rowStart: mapKeysToVariants(SIZES, key => ({ gridRowStart: key })),\n columnEnd: mapKeysToVariants(SIZES, key => ({ gridColumnEnd: key })),\n rowEnd: mapKeysToVariants(SIZES, key => ({ gridRowEnd: key })),\n },\n})\n\nexport type StyledItemProps = ComponentPropsWithRef<typeof StyledItem>\n","import React from 'react'\nimport type { ElementRef } from 'react'\n\nimport { StyledItem } from './item.styled'\nimport type { StyledItemProps } from './item.styled'\n\nexport interface ItemProps extends StyledItemProps {\n /**\n * Determines the grid item's start position within the grid referring to a column number.\n */\n columnStart?: StyledItemProps['columnStart']\n\n /**\n * Determines the grid item's start position within the grid referring to a row number.\n */\n rowStart?: StyledItemProps['rowStart']\n /**\n * Determines the grid item's end position within the grid referring to a column number.\n */\n columnEnd?: StyledItemProps['columnEnd']\n /**\n * Determines the grid item's end position within the grid referring to a row number.\n */\n rowEnd?: StyledItemProps['rowEnd']\n}\n\nexport const Item = React.forwardRef<ElementRef<typeof StyledItem>, ItemProps>(\n (props, forwardRef) => <StyledItem {...props} ref={forwardRef} />\n)\n","import React from 'react'\nimport type { ElementRef, ForwardRefExoticComponent } from 'react'\n\nimport { StyledGrid } from './grid.styled'\nimport type { StyledGridProps } from './grid.styled'\nimport { Item } from './partials/item'\n\nexport interface GridProps extends StyledGridProps {\n /**\n * Defines how elements are aligned along the block (column) axis.\n */\n align?: StyledGridProps['align']\n\n /**\n * Defines how elements are aligned along the inline (row) axis.\n */\n justify?: StyledGridProps['justify']\n\n /**\n * Aligns grid items along the inline (row) axis.\n * This value applies to all grid items inside the container.\n */\n justifyItems?: StyledGridProps['justifyItems']\n\n /**\n * Defines how elements are automatically placed in the grid.\n */\n flow?: StyledGridProps['flow']\n\n /**\n * Defines the width of the gutter between both columns and rows. It uses the\n * [space](/?path=/docs/foundation-spacing--page)\n */\n gap?: StyledGridProps['gap']\n\n /**\n * Defines the width of the gutter between rows. It uses the\n * [space](/?path=/docs/foundation-spacing--page)\n */\n gapX?: StyledGridProps['gapX']\n\n /**\n * Defines the width of the gutter between columns.It uses the\n * [space](/?path=/docs/foundation-spacing--page)\n */\n gapY?: StyledGridProps['gapY']\n\n /**\n * Defines the number of columns in the grid.\n */\n columns?: StyledGridProps['columns']\n\n /**\n * Defines the number of rows in the grid.\n */\n rows?: StyledGridProps['rows']\n}\n\nexport const Grid = React.forwardRef<ElementRef<typeof StyledGrid>, GridProps>(\n (props, forwardRef) => <StyledGrid {...props} ref={forwardRef} />\n) as ForwardRefExoticComponent<GridProps> & Partials\n\n// Partials\n// -----------------------------------------------------------------------------\n\ninterface Partials {\n Item: typeof Item\n}\n\nGrid.Item = Item\n"],"names":["SIZES","createConstants","styled","Primitive","mapKeysToVariants","theme","GRID_SIZES","React"],"mappings":"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"}
|
package/dist/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sources":["../src/grid.styled.ts","../src/partials/item.styled.ts","../src/partials/item.tsx","../src/grid.tsx"],"sourcesContent":["import type { ComponentPropsWithRef } from 'react'\nimport { Primitive } from '@mirohq/design-system-primitive'\nimport { styled, theme } from '@mirohq/design-system-stitches'\nimport {
|
|
1
|
+
{"version":3,"file":"module.js","sources":["../src/grid.styled.ts","../src/partials/item.styled.ts","../src/partials/item.tsx","../src/grid.tsx"],"sourcesContent":["import type { ComponentPropsWithRef } from 'react'\nimport { Primitive } from '@mirohq/design-system-primitive'\nimport { styled, theme } from '@mirohq/design-system-stitches'\nimport { createConstants, mapKeysToVariants } from '@mirohq/design-system-utils'\n\nexport const SIZES = createConstants(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)\n\nexport const StyledGrid = styled(Primitive.div, {\n display: 'grid',\n variants: {\n align: {\n start: {\n alignItems: 'start',\n },\n center: {\n alignItems: 'center',\n },\n end: {\n alignItems: 'end',\n },\n stretch: {\n alignItems: 'stretch',\n },\n baseline: {\n alignItems: 'baseline',\n },\n },\n flow: {\n row: {\n gridAutoFlow: 'row',\n },\n column: {\n gridAutoFlow: 'column',\n },\n dense: {\n gridAutoFlow: 'dense',\n },\n rowDense: {\n gridAutoFlow: 'row dense',\n },\n columnDense: {\n gridAutoFlow: 'column dense',\n },\n },\n gap: mapKeysToVariants(theme['space-gap'], 'gap'),\n gapX: mapKeysToVariants(theme['space-gap'], 'rowGap'),\n gapY: mapKeysToVariants(theme['space-gap'], 'columnGap'),\n columns: mapKeysToVariants(SIZES, key => ({\n gridTemplateColumns: `repeat(${key}, 1fr)`,\n })),\n rows: mapKeysToVariants(SIZES, key => ({\n gridTemplateRows: `repeat(${key}, 1fr)`,\n })),\n justify: {\n start: {\n justifyContent: 'start',\n },\n center: {\n justifyContent: 'center',\n },\n end: {\n justifyContent: 'end',\n },\n stretch: {\n justifyContent: 'stretch',\n },\n between: {\n justifyContent: 'space-between',\n },\n around: {\n justifyContent: 'space-around',\n },\n evenly: {\n justifyContent: 'space-evenly',\n },\n },\n justifyItems: {\n start: {\n justifyItems: 'start',\n },\n center: {\n justifyItems: 'center',\n },\n end: {\n justifyItems: 'end',\n },\n stretch: {\n justifyItems: 'stretch',\n },\n },\n },\n})\n\nexport type StyledGridProps = ComponentPropsWithRef<typeof StyledGrid>\n","import type { ComponentPropsWithRef } from 'react'\nimport { Primitive } from '@mirohq/design-system-primitive'\nimport { styled } from '@mirohq/design-system-stitches'\nimport { mapKeysToVariants, createConstants } from '@mirohq/design-system-utils'\n\nimport { SIZES as GRID_SIZES } from '../grid.styled'\n\nconst ADDITIONAL_COLUMNS_ROWS_SIZES = createConstants(-1)\nconst SIZES = { ...ADDITIONAL_COLUMNS_ROWS_SIZES, ...GRID_SIZES }\n\nexport const StyledItem = styled(Primitive.div, {\n variants: {\n columnStart: mapKeysToVariants(SIZES, key => ({ gridColumnStart: key })),\n rowStart: mapKeysToVariants(SIZES, key => ({ gridRowStart: key })),\n columnEnd: mapKeysToVariants(SIZES, key => ({ gridColumnEnd: key })),\n rowEnd: mapKeysToVariants(SIZES, key => ({ gridRowEnd: key })),\n },\n})\n\nexport type StyledItemProps = ComponentPropsWithRef<typeof StyledItem>\n","import React from 'react'\nimport type { ElementRef } from 'react'\n\nimport { StyledItem } from './item.styled'\nimport type { StyledItemProps } from './item.styled'\n\nexport interface ItemProps extends StyledItemProps {\n /**\n * Determines the grid item's start position within the grid referring to a column number.\n */\n columnStart?: StyledItemProps['columnStart']\n\n /**\n * Determines the grid item's start position within the grid referring to a row number.\n */\n rowStart?: StyledItemProps['rowStart']\n /**\n * Determines the grid item's end position within the grid referring to a column number.\n */\n columnEnd?: StyledItemProps['columnEnd']\n /**\n * Determines the grid item's end position within the grid referring to a row number.\n */\n rowEnd?: StyledItemProps['rowEnd']\n}\n\nexport const Item = React.forwardRef<ElementRef<typeof StyledItem>, ItemProps>(\n (props, forwardRef) => <StyledItem {...props} ref={forwardRef} />\n)\n","import React from 'react'\nimport type { ElementRef, ForwardRefExoticComponent } from 'react'\n\nimport { StyledGrid } from './grid.styled'\nimport type { StyledGridProps } from './grid.styled'\nimport { Item } from './partials/item'\n\nexport interface GridProps extends StyledGridProps {\n /**\n * Defines how elements are aligned along the block (column) axis.\n */\n align?: StyledGridProps['align']\n\n /**\n * Defines how elements are aligned along the inline (row) axis.\n */\n justify?: StyledGridProps['justify']\n\n /**\n * Aligns grid items along the inline (row) axis.\n * This value applies to all grid items inside the container.\n */\n justifyItems?: StyledGridProps['justifyItems']\n\n /**\n * Defines how elements are automatically placed in the grid.\n */\n flow?: StyledGridProps['flow']\n\n /**\n * Defines the width of the gutter between both columns and rows. It uses the\n * [space](/?path=/docs/foundation-spacing--page)\n */\n gap?: StyledGridProps['gap']\n\n /**\n * Defines the width of the gutter between rows. It uses the\n * [space](/?path=/docs/foundation-spacing--page)\n */\n gapX?: StyledGridProps['gapX']\n\n /**\n * Defines the width of the gutter between columns.It uses the\n * [space](/?path=/docs/foundation-spacing--page)\n */\n gapY?: StyledGridProps['gapY']\n\n /**\n * Defines the number of columns in the grid.\n */\n columns?: StyledGridProps['columns']\n\n /**\n * Defines the number of rows in the grid.\n */\n rows?: StyledGridProps['rows']\n}\n\nexport const Grid = React.forwardRef<ElementRef<typeof StyledGrid>, GridProps>(\n (props, forwardRef) => <StyledGrid {...props} ref={forwardRef} />\n) as ForwardRefExoticComponent<GridProps> & Partials\n\n// Partials\n// -----------------------------------------------------------------------------\n\ninterface Partials {\n Item: typeof Item\n}\n\nGrid.Item = Item\n"],"names":["SIZES","GRID_SIZES"],"mappings":"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"}
|
package/dist/types.d.ts
CHANGED
|
@@ -33,78 +33,141 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
33
33
|
readonly lg: "4px";
|
|
34
34
|
};
|
|
35
35
|
colors: {
|
|
36
|
+
readonly 'blue-100': any;
|
|
37
|
+
readonly 'blue-200': any;
|
|
38
|
+
readonly 'blue-300': any;
|
|
39
|
+
readonly 'blue-400': any;
|
|
40
|
+
readonly 'blue-500': any;
|
|
41
|
+
readonly 'blue-600': any;
|
|
42
|
+
readonly 'blue-700': any;
|
|
43
|
+
readonly 'blue-800': any;
|
|
44
|
+
readonly 'blue-900': any;
|
|
45
|
+
readonly 'blue-1000': any;
|
|
46
|
+
readonly 'gray-100': any;
|
|
47
|
+
readonly 'gray-200': any;
|
|
48
|
+
readonly 'gray-300': any;
|
|
49
|
+
readonly 'gray-400': any;
|
|
50
|
+
readonly 'gray-500': any;
|
|
51
|
+
readonly 'gray-600': any;
|
|
52
|
+
readonly 'gray-700': any;
|
|
53
|
+
readonly 'gray-800': any;
|
|
54
|
+
readonly 'gray-900': any;
|
|
55
|
+
readonly 'indigo-100': any;
|
|
56
|
+
readonly 'indigo-200': any;
|
|
57
|
+
readonly 'indigo-300': any;
|
|
58
|
+
readonly 'indigo-400': any;
|
|
59
|
+
readonly 'indigo-500': any;
|
|
60
|
+
readonly 'indigo-600': any;
|
|
61
|
+
readonly 'indigo-700': any;
|
|
62
|
+
readonly 'indigo-800': any;
|
|
63
|
+
readonly 'indigo-900': any;
|
|
64
|
+
readonly 'red-100': any;
|
|
65
|
+
readonly 'red-200': any;
|
|
66
|
+
readonly 'red-300': any;
|
|
67
|
+
readonly 'red-400': any;
|
|
68
|
+
readonly 'red-500': any;
|
|
69
|
+
readonly 'red-600': any;
|
|
70
|
+
readonly 'red-700': any;
|
|
71
|
+
readonly 'red-800': any;
|
|
72
|
+
readonly 'red-900': any;
|
|
73
|
+
readonly 'yellow-100': any;
|
|
74
|
+
readonly 'yellow-200': any;
|
|
75
|
+
readonly 'yellow-300': any;
|
|
76
|
+
readonly 'yellow-400': any;
|
|
77
|
+
readonly 'yellow-500': any;
|
|
78
|
+
readonly 'yellow-600': any;
|
|
79
|
+
readonly 'yellow-700': any;
|
|
80
|
+
readonly 'yellow-800': any;
|
|
81
|
+
readonly 'yellow-900': any;
|
|
82
|
+
readonly 'green-100': any;
|
|
83
|
+
readonly 'green-200': any;
|
|
84
|
+
readonly 'green-300': any;
|
|
85
|
+
readonly 'green-400': any;
|
|
86
|
+
readonly 'green-500': any;
|
|
87
|
+
readonly 'green-600': any;
|
|
88
|
+
readonly 'green-700': any;
|
|
89
|
+
readonly 'green-800': any;
|
|
90
|
+
readonly 'green-900': any;
|
|
36
91
|
readonly black: any;
|
|
37
|
-
readonly 'blue-10': any;
|
|
38
|
-
readonly 'blue-20': any;
|
|
39
|
-
readonly 'blue-50': any;
|
|
40
|
-
readonly 'blue-60': any;
|
|
41
|
-
readonly 'blue-70': any;
|
|
42
|
-
readonly 'blue-80': any;
|
|
43
|
-
readonly 'gray-20': any;
|
|
44
|
-
readonly 'gray-30': any;
|
|
45
|
-
readonly 'green-70': any;
|
|
46
|
-
readonly 'indigo-20': any;
|
|
47
|
-
readonly 'indigo-30': any;
|
|
48
|
-
readonly 'indigo-50': any;
|
|
49
|
-
readonly 'indigo-70': any;
|
|
50
|
-
readonly 'indigo-90': any;
|
|
51
|
-
readonly 'pink-20': any;
|
|
52
|
-
readonly 'pink-50': any;
|
|
53
|
-
readonly 'red-10': any;
|
|
54
|
-
readonly 'red-20': any;
|
|
55
|
-
readonly 'red-30': any;
|
|
56
|
-
readonly 'red-50': any;
|
|
57
|
-
readonly 'red-60': any;
|
|
58
|
-
readonly transparent: any;
|
|
59
92
|
readonly white: any;
|
|
60
|
-
readonly
|
|
61
|
-
readonly '
|
|
62
|
-
readonly 'background-
|
|
63
|
-
readonly 'background-
|
|
64
|
-
readonly 'background-
|
|
65
|
-
readonly 'background-
|
|
66
|
-
readonly 'background-
|
|
93
|
+
readonly transparent: any;
|
|
94
|
+
readonly 'background-neutrals'?: any;
|
|
95
|
+
readonly 'background-neutrals-body'?: any;
|
|
96
|
+
readonly 'background-neutrals-container'?: any;
|
|
97
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
98
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
99
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
100
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
101
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
102
|
+
readonly 'background-neutrals-disabled-controls'?: any;
|
|
103
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
104
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
105
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
106
|
+
readonly 'background-primary-prominent'?: any;
|
|
107
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
108
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
109
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
110
|
+
readonly 'background-primary-subtle'?: any;
|
|
111
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
112
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
113
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
114
|
+
readonly 'background-danger-prominent'?: any;
|
|
115
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
116
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
117
|
+
readonly 'background-danger'?: any;
|
|
67
118
|
readonly 'background-danger-hover'?: any;
|
|
68
|
-
readonly 'background-
|
|
69
|
-
readonly 'background-
|
|
70
|
-
readonly 'background-
|
|
71
|
-
readonly '
|
|
72
|
-
readonly '
|
|
73
|
-
readonly '
|
|
74
|
-
readonly '
|
|
75
|
-
readonly '
|
|
76
|
-
readonly '
|
|
77
|
-
readonly '
|
|
78
|
-
readonly '
|
|
79
|
-
readonly '
|
|
80
|
-
readonly '
|
|
81
|
-
readonly '
|
|
82
|
-
readonly '
|
|
83
|
-
readonly '
|
|
84
|
-
readonly '
|
|
85
|
-
readonly '
|
|
86
|
-
readonly '
|
|
87
|
-
readonly '
|
|
88
|
-
readonly '
|
|
89
|
-
readonly '
|
|
90
|
-
readonly '
|
|
91
|
-
readonly '
|
|
92
|
-
readonly '
|
|
93
|
-
readonly '
|
|
94
|
-
readonly '
|
|
95
|
-
readonly '
|
|
96
|
-
readonly '
|
|
97
|
-
readonly '
|
|
98
|
-
readonly '
|
|
99
|
-
readonly '
|
|
100
|
-
readonly 'icon-
|
|
101
|
-
readonly 'icon-
|
|
102
|
-
readonly 'icon-
|
|
103
|
-
readonly 'icon-
|
|
104
|
-
readonly 'icon-
|
|
105
|
-
readonly '
|
|
106
|
-
readonly '
|
|
107
|
-
readonly '
|
|
119
|
+
readonly 'background-success'?: any;
|
|
120
|
+
readonly 'background-warning-subtle'?: any;
|
|
121
|
+
readonly 'background-warning-prominent'?: any;
|
|
122
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
123
|
+
readonly 'text-neutrals'?: any;
|
|
124
|
+
readonly 'text-neutrals-secondary'?: any;
|
|
125
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
126
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
127
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
128
|
+
readonly 'text-primary-inverted'?: any;
|
|
129
|
+
readonly 'text-primary'?: any;
|
|
130
|
+
readonly 'text-primary-hover'?: any;
|
|
131
|
+
readonly 'text-primary-active'?: any;
|
|
132
|
+
readonly 'text-primary-selected'?: any;
|
|
133
|
+
readonly 'text-danger-inverted'?: any;
|
|
134
|
+
readonly 'text-danger'?: any;
|
|
135
|
+
readonly 'text-danger-hover'?: any;
|
|
136
|
+
readonly 'text-danger-active'?: any;
|
|
137
|
+
readonly 'text-success'?: any;
|
|
138
|
+
readonly 'text-warning'?: any;
|
|
139
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
140
|
+
readonly 'icon-neutrals'?: any;
|
|
141
|
+
readonly 'icon-neutrals-secondary'?: any;
|
|
142
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
143
|
+
readonly 'icon-neutrals-search'?: any;
|
|
144
|
+
readonly 'icon-primary-inverted'?: any;
|
|
145
|
+
readonly 'icon-primary'?: any;
|
|
146
|
+
readonly 'icon-primary-hover'?: any;
|
|
147
|
+
readonly 'icon-primary-active'?: any;
|
|
148
|
+
readonly 'icon-primary-selected'?: any;
|
|
149
|
+
readonly 'icon-danger-inverted'?: any;
|
|
150
|
+
readonly 'icon-danger'?: any;
|
|
151
|
+
readonly 'icon-danger-hover'?: any;
|
|
152
|
+
readonly 'icon-danger-active'?: any;
|
|
153
|
+
readonly 'icon-success-inverted'?: any;
|
|
154
|
+
readonly 'icon-success'?: any;
|
|
155
|
+
readonly 'icon-warning'?: any;
|
|
156
|
+
readonly 'border-neutrals'?: any;
|
|
157
|
+
readonly 'border-neutrals-hover'?: any;
|
|
158
|
+
readonly 'border-neutrals-active'?: any;
|
|
159
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
160
|
+
readonly 'border-neutrals-controls'?: any;
|
|
161
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
162
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
163
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
164
|
+
readonly 'border-primary'?: any;
|
|
165
|
+
readonly 'border-primary-hover'?: any;
|
|
166
|
+
readonly 'border-primary-active'?: any;
|
|
167
|
+
readonly 'border-primary-inverted'?: any;
|
|
168
|
+
readonly 'border-danger'?: any;
|
|
169
|
+
readonly 'border-success'?: any;
|
|
170
|
+
readonly 'border-warning'?: any;
|
|
108
171
|
};
|
|
109
172
|
'font-sizes': {
|
|
110
173
|
readonly 150: "0.75rem";
|
|
@@ -398,78 +461,141 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
398
461
|
readonly lg: "4px";
|
|
399
462
|
};
|
|
400
463
|
colors: {
|
|
464
|
+
readonly 'blue-100': any;
|
|
465
|
+
readonly 'blue-200': any;
|
|
466
|
+
readonly 'blue-300': any;
|
|
467
|
+
readonly 'blue-400': any;
|
|
468
|
+
readonly 'blue-500': any;
|
|
469
|
+
readonly 'blue-600': any;
|
|
470
|
+
readonly 'blue-700': any;
|
|
471
|
+
readonly 'blue-800': any;
|
|
472
|
+
readonly 'blue-900': any;
|
|
473
|
+
readonly 'blue-1000': any;
|
|
474
|
+
readonly 'gray-100': any;
|
|
475
|
+
readonly 'gray-200': any;
|
|
476
|
+
readonly 'gray-300': any;
|
|
477
|
+
readonly 'gray-400': any;
|
|
478
|
+
readonly 'gray-500': any;
|
|
479
|
+
readonly 'gray-600': any;
|
|
480
|
+
readonly 'gray-700': any;
|
|
481
|
+
readonly 'gray-800': any;
|
|
482
|
+
readonly 'gray-900': any;
|
|
483
|
+
readonly 'indigo-100': any;
|
|
484
|
+
readonly 'indigo-200': any;
|
|
485
|
+
readonly 'indigo-300': any;
|
|
486
|
+
readonly 'indigo-400': any;
|
|
487
|
+
readonly 'indigo-500': any;
|
|
488
|
+
readonly 'indigo-600': any;
|
|
489
|
+
readonly 'indigo-700': any;
|
|
490
|
+
readonly 'indigo-800': any;
|
|
491
|
+
readonly 'indigo-900': any;
|
|
492
|
+
readonly 'red-100': any;
|
|
493
|
+
readonly 'red-200': any;
|
|
494
|
+
readonly 'red-300': any;
|
|
495
|
+
readonly 'red-400': any;
|
|
496
|
+
readonly 'red-500': any;
|
|
497
|
+
readonly 'red-600': any;
|
|
498
|
+
readonly 'red-700': any;
|
|
499
|
+
readonly 'red-800': any;
|
|
500
|
+
readonly 'red-900': any;
|
|
501
|
+
readonly 'yellow-100': any;
|
|
502
|
+
readonly 'yellow-200': any;
|
|
503
|
+
readonly 'yellow-300': any;
|
|
504
|
+
readonly 'yellow-400': any;
|
|
505
|
+
readonly 'yellow-500': any;
|
|
506
|
+
readonly 'yellow-600': any;
|
|
507
|
+
readonly 'yellow-700': any;
|
|
508
|
+
readonly 'yellow-800': any;
|
|
509
|
+
readonly 'yellow-900': any;
|
|
510
|
+
readonly 'green-100': any;
|
|
511
|
+
readonly 'green-200': any;
|
|
512
|
+
readonly 'green-300': any;
|
|
513
|
+
readonly 'green-400': any;
|
|
514
|
+
readonly 'green-500': any;
|
|
515
|
+
readonly 'green-600': any;
|
|
516
|
+
readonly 'green-700': any;
|
|
517
|
+
readonly 'green-800': any;
|
|
518
|
+
readonly 'green-900': any;
|
|
401
519
|
readonly black: any;
|
|
402
|
-
readonly 'blue-10': any;
|
|
403
|
-
readonly 'blue-20': any;
|
|
404
|
-
readonly 'blue-50': any;
|
|
405
|
-
readonly 'blue-60': any;
|
|
406
|
-
readonly 'blue-70': any;
|
|
407
|
-
readonly 'blue-80': any;
|
|
408
|
-
readonly 'gray-20': any;
|
|
409
|
-
readonly 'gray-30': any;
|
|
410
|
-
readonly 'green-70': any;
|
|
411
|
-
readonly 'indigo-20': any;
|
|
412
|
-
readonly 'indigo-30': any;
|
|
413
|
-
readonly 'indigo-50': any;
|
|
414
|
-
readonly 'indigo-70': any;
|
|
415
|
-
readonly 'indigo-90': any;
|
|
416
|
-
readonly 'pink-20': any;
|
|
417
|
-
readonly 'pink-50': any;
|
|
418
|
-
readonly 'red-10': any;
|
|
419
|
-
readonly 'red-20': any;
|
|
420
|
-
readonly 'red-30': any;
|
|
421
|
-
readonly 'red-50': any;
|
|
422
|
-
readonly 'red-60': any;
|
|
423
|
-
readonly transparent: any;
|
|
424
520
|
readonly white: any;
|
|
425
|
-
readonly
|
|
426
|
-
readonly '
|
|
427
|
-
readonly 'background-
|
|
428
|
-
readonly 'background-
|
|
429
|
-
readonly 'background-
|
|
430
|
-
readonly 'background-
|
|
431
|
-
readonly 'background-
|
|
521
|
+
readonly transparent: any;
|
|
522
|
+
readonly 'background-neutrals'?: any;
|
|
523
|
+
readonly 'background-neutrals-body'?: any;
|
|
524
|
+
readonly 'background-neutrals-container'?: any;
|
|
525
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
526
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
527
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
528
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
529
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
530
|
+
readonly 'background-neutrals-disabled-controls'?: any;
|
|
531
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
532
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
533
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
534
|
+
readonly 'background-primary-prominent'?: any;
|
|
535
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
536
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
537
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
538
|
+
readonly 'background-primary-subtle'?: any;
|
|
539
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
540
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
541
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
542
|
+
readonly 'background-danger-prominent'?: any;
|
|
543
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
544
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
545
|
+
readonly 'background-danger'?: any;
|
|
432
546
|
readonly 'background-danger-hover'?: any;
|
|
433
|
-
readonly 'background-
|
|
434
|
-
readonly 'background-
|
|
435
|
-
readonly 'background-
|
|
436
|
-
readonly '
|
|
437
|
-
readonly '
|
|
438
|
-
readonly '
|
|
439
|
-
readonly '
|
|
440
|
-
readonly '
|
|
441
|
-
readonly '
|
|
442
|
-
readonly '
|
|
443
|
-
readonly '
|
|
444
|
-
readonly '
|
|
445
|
-
readonly '
|
|
446
|
-
readonly '
|
|
447
|
-
readonly '
|
|
448
|
-
readonly '
|
|
449
|
-
readonly '
|
|
450
|
-
readonly '
|
|
451
|
-
readonly '
|
|
452
|
-
readonly '
|
|
453
|
-
readonly '
|
|
454
|
-
readonly '
|
|
455
|
-
readonly '
|
|
456
|
-
readonly '
|
|
457
|
-
readonly '
|
|
458
|
-
readonly '
|
|
459
|
-
readonly '
|
|
460
|
-
readonly '
|
|
461
|
-
readonly '
|
|
462
|
-
readonly '
|
|
463
|
-
readonly '
|
|
464
|
-
readonly '
|
|
465
|
-
readonly 'icon-
|
|
466
|
-
readonly 'icon-
|
|
467
|
-
readonly 'icon-
|
|
468
|
-
readonly 'icon-
|
|
469
|
-
readonly 'icon-
|
|
470
|
-
readonly '
|
|
471
|
-
readonly '
|
|
472
|
-
readonly '
|
|
547
|
+
readonly 'background-success'?: any;
|
|
548
|
+
readonly 'background-warning-subtle'?: any;
|
|
549
|
+
readonly 'background-warning-prominent'?: any;
|
|
550
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
551
|
+
readonly 'text-neutrals'?: any;
|
|
552
|
+
readonly 'text-neutrals-secondary'?: any;
|
|
553
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
554
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
555
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
556
|
+
readonly 'text-primary-inverted'?: any;
|
|
557
|
+
readonly 'text-primary'?: any;
|
|
558
|
+
readonly 'text-primary-hover'?: any;
|
|
559
|
+
readonly 'text-primary-active'?: any;
|
|
560
|
+
readonly 'text-primary-selected'?: any;
|
|
561
|
+
readonly 'text-danger-inverted'?: any;
|
|
562
|
+
readonly 'text-danger'?: any;
|
|
563
|
+
readonly 'text-danger-hover'?: any;
|
|
564
|
+
readonly 'text-danger-active'?: any;
|
|
565
|
+
readonly 'text-success'?: any;
|
|
566
|
+
readonly 'text-warning'?: any;
|
|
567
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
568
|
+
readonly 'icon-neutrals'?: any;
|
|
569
|
+
readonly 'icon-neutrals-secondary'?: any;
|
|
570
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
571
|
+
readonly 'icon-neutrals-search'?: any;
|
|
572
|
+
readonly 'icon-primary-inverted'?: any;
|
|
573
|
+
readonly 'icon-primary'?: any;
|
|
574
|
+
readonly 'icon-primary-hover'?: any;
|
|
575
|
+
readonly 'icon-primary-active'?: any;
|
|
576
|
+
readonly 'icon-primary-selected'?: any;
|
|
577
|
+
readonly 'icon-danger-inverted'?: any;
|
|
578
|
+
readonly 'icon-danger'?: any;
|
|
579
|
+
readonly 'icon-danger-hover'?: any;
|
|
580
|
+
readonly 'icon-danger-active'?: any;
|
|
581
|
+
readonly 'icon-success-inverted'?: any;
|
|
582
|
+
readonly 'icon-success'?: any;
|
|
583
|
+
readonly 'icon-warning'?: any;
|
|
584
|
+
readonly 'border-neutrals'?: any;
|
|
585
|
+
readonly 'border-neutrals-hover'?: any;
|
|
586
|
+
readonly 'border-neutrals-active'?: any;
|
|
587
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
588
|
+
readonly 'border-neutrals-controls'?: any;
|
|
589
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
590
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
591
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
592
|
+
readonly 'border-primary'?: any;
|
|
593
|
+
readonly 'border-primary-hover'?: any;
|
|
594
|
+
readonly 'border-primary-active'?: any;
|
|
595
|
+
readonly 'border-primary-inverted'?: any;
|
|
596
|
+
readonly 'border-danger'?: any;
|
|
597
|
+
readonly 'border-success'?: any;
|
|
598
|
+
readonly 'border-warning'?: any;
|
|
473
599
|
};
|
|
474
600
|
'font-sizes': {
|
|
475
601
|
readonly 150: "0.75rem";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-grid",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11-colors.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
|
"@mirohq/design-system-primitive": "^1.0.4",
|
|
30
|
-
"@mirohq/design-system-
|
|
31
|
-
"@mirohq/design-system-
|
|
30
|
+
"@mirohq/design-system-stitches": "^2.0.10-colors.0",
|
|
31
|
+
"@mirohq/design-system-utils": "^0.10.0"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "rollup -c ../../../rollup.config.js",
|