@mirohq/design-system-grid 2.1.11-dropdown.0 → 2.1.11
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 +43 -31
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -8,9 +8,9 @@ import * as _stitches_react_types_styled_component from '@stitches/react/types/s
|
|
|
8
8
|
declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
9
9
|
align?: "end" | "baseline" | "start" | "center" | "stretch" | undefined;
|
|
10
10
|
flow?: "row" | "column" | "dense" | "rowDense" | "columnDense" | undefined;
|
|
11
|
-
gap?:
|
|
12
|
-
gapX?:
|
|
13
|
-
gapY?:
|
|
11
|
+
gap?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
12
|
+
gapX?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
13
|
+
gapY?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
14
14
|
columns?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | undefined;
|
|
15
15
|
rows?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | undefined;
|
|
16
16
|
justify?: "end" | "start" | "center" | "stretch" | "between" | "around" | "evenly" | undefined;
|
|
@@ -18,9 +18,9 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
18
18
|
}, "rows" | "align" | "justify" | "justifyItems" | "columns" | "gap" | "flow" | "gapX" | "gapY"> & _stitches_react_types_styled_component.TransformProps<{
|
|
19
19
|
align?: "end" | "baseline" | "start" | "center" | "stretch" | undefined;
|
|
20
20
|
flow?: "row" | "column" | "dense" | "rowDense" | "columnDense" | undefined;
|
|
21
|
-
gap?:
|
|
22
|
-
gapX?:
|
|
23
|
-
gapY?:
|
|
21
|
+
gap?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
22
|
+
gapX?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
23
|
+
gapY?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
24
24
|
columns?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | undefined;
|
|
25
25
|
rows?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | undefined;
|
|
26
26
|
justify?: "end" | "start" | "center" | "stretch" | "between" | "around" | "evenly" | undefined;
|
|
@@ -102,7 +102,6 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
102
102
|
readonly 'background-danger-prominent-active'?: any;
|
|
103
103
|
readonly 'background-danger-prominent-hover'?: any;
|
|
104
104
|
readonly 'background-neutrals'?: any;
|
|
105
|
-
readonly 'background-neutrals-body'?: any;
|
|
106
105
|
readonly 'background-neutrals-container'?: any;
|
|
107
106
|
readonly 'background-neutrals-controls-disabled'?: any;
|
|
108
107
|
readonly 'background-neutrals-disabled'?: any;
|
|
@@ -110,6 +109,8 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
110
109
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
111
110
|
readonly 'background-neutrals-inverted'?: any;
|
|
112
111
|
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
112
|
+
readonly 'background-neutrals-page'?: any;
|
|
113
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
113
114
|
readonly 'background-neutrals-scrolls'?: any;
|
|
114
115
|
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
115
116
|
readonly 'background-neutrals-subtle'?: any;
|
|
@@ -133,12 +134,11 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
133
134
|
readonly 'text-neutrals'?: any;
|
|
134
135
|
readonly 'text-neutrals-disabled'?: any;
|
|
135
136
|
readonly 'text-neutrals-inverted'?: any;
|
|
136
|
-
readonly 'text-neutrals-link'?: any;
|
|
137
|
-
readonly 'text-neutrals-link-active'?: any;
|
|
138
|
-
readonly 'text-neutrals-link-hover'?: any;
|
|
139
137
|
readonly 'text-neutrals-placeholder'?: any;
|
|
140
138
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
141
139
|
readonly 'text-neutrals-subtle'?: any;
|
|
140
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
141
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
142
142
|
readonly 'text-primary'?: any;
|
|
143
143
|
readonly 'text-primary-active'?: any;
|
|
144
144
|
readonly 'text-primary-hover'?: any;
|
|
@@ -158,7 +158,7 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
158
158
|
readonly 'icon-neutrals-inverted'?: any;
|
|
159
159
|
readonly 'icon-neutrals-search'?: any;
|
|
160
160
|
readonly 'icon-neutrals-subtle'?: any;
|
|
161
|
-
readonly 'icon-neutrals-
|
|
161
|
+
readonly 'icon-neutrals-text'?: any;
|
|
162
162
|
readonly 'icon-primary'?: any;
|
|
163
163
|
readonly 'icon-primary-active'?: any;
|
|
164
164
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -167,7 +167,10 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
167
167
|
readonly 'icon-success'?: any;
|
|
168
168
|
readonly 'icon-success-inverted'?: any;
|
|
169
169
|
readonly 'icon-warning'?: any;
|
|
170
|
+
readonly 'icon-warning-prominent'?: any;
|
|
170
171
|
readonly 'border-danger'?: any;
|
|
172
|
+
readonly 'border-danger-active'?: any;
|
|
173
|
+
readonly 'border-danger-hover'?: any;
|
|
171
174
|
readonly 'border-focus-inner'?: any;
|
|
172
175
|
readonly 'border-focus-middle'?: any;
|
|
173
176
|
readonly 'border-focus-outer'?: any;
|
|
@@ -179,6 +182,9 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
179
182
|
readonly 'border-neutrals-hover'?: any;
|
|
180
183
|
readonly 'border-neutrals-inverted'?: any;
|
|
181
184
|
readonly 'border-neutrals-subtle'?: any;
|
|
185
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
186
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
187
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
182
188
|
readonly 'border-primary'?: any;
|
|
183
189
|
readonly 'border-primary-active'?: any;
|
|
184
190
|
readonly 'border-primary-hover'?: any;
|
|
@@ -223,28 +229,28 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
223
229
|
readonly 'icon-400': "32px";
|
|
224
230
|
};
|
|
225
231
|
space: {
|
|
226
|
-
readonly
|
|
232
|
+
readonly none: 0;
|
|
227
233
|
readonly 50: "4px";
|
|
228
234
|
readonly 100: "8px";
|
|
229
235
|
readonly 150: "12px";
|
|
230
236
|
readonly 200: "16px";
|
|
231
237
|
readonly 300: "24px";
|
|
232
238
|
readonly 400: "32px";
|
|
233
|
-
readonly 500: "
|
|
239
|
+
readonly 500: "64px";
|
|
234
240
|
readonly 600: "48px";
|
|
235
241
|
readonly 800: "64px";
|
|
236
242
|
readonly 1200: "96px";
|
|
237
243
|
readonly 1600: "128px";
|
|
238
244
|
};
|
|
239
245
|
'space-gap': {
|
|
240
|
-
readonly
|
|
246
|
+
readonly none: any;
|
|
241
247
|
readonly 50: any;
|
|
242
248
|
readonly 100: any;
|
|
243
249
|
readonly 200: any;
|
|
244
250
|
readonly 300: any;
|
|
245
251
|
};
|
|
246
252
|
'space-inset': {
|
|
247
|
-
readonly
|
|
253
|
+
readonly none: any;
|
|
248
254
|
readonly 50: any;
|
|
249
255
|
readonly 100: any;
|
|
250
256
|
readonly 150: any;
|
|
@@ -257,7 +263,7 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
257
263
|
readonly 1600: any;
|
|
258
264
|
};
|
|
259
265
|
'space-offset': {
|
|
260
|
-
readonly
|
|
266
|
+
readonly none: any;
|
|
261
267
|
readonly 50: any;
|
|
262
268
|
readonly 100: any;
|
|
263
269
|
readonly 150: any;
|
|
@@ -268,7 +274,7 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
268
274
|
readonly 800: any;
|
|
269
275
|
readonly 1200: any;
|
|
270
276
|
readonly 1600: any;
|
|
271
|
-
readonly 'stacking-
|
|
277
|
+
readonly 'stacking-none': any;
|
|
272
278
|
readonly 'stacking-100': any;
|
|
273
279
|
readonly 'stacking-200': any;
|
|
274
280
|
readonly 'stacking-300': any;
|
|
@@ -473,9 +479,9 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
473
479
|
} & _mirohq_design_system_stitches.CustomStylesProps, "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "rows" | "align" | "justify" | "asChild" | "justifyItems" | "columns" | "gap" | "flow" | keyof _mirohq_design_system_stitches.CustomStylesProps | "gapX" | "gapY"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"div">>, {
|
|
474
480
|
align?: "end" | "baseline" | "start" | "center" | "stretch" | undefined;
|
|
475
481
|
flow?: "row" | "column" | "dense" | "rowDense" | "columnDense" | undefined;
|
|
476
|
-
gap?:
|
|
477
|
-
gapX?:
|
|
478
|
-
gapY?:
|
|
482
|
+
gap?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
483
|
+
gapX?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
484
|
+
gapY?: "none" | 200 | 50 | 100 | 300 | "100" | "200" | "300" | "50" | undefined;
|
|
479
485
|
columns?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | undefined;
|
|
480
486
|
rows?: "1" | 1 | 4 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | undefined;
|
|
481
487
|
justify?: "end" | "start" | "center" | "stretch" | "between" | "around" | "evenly" | undefined;
|
|
@@ -570,7 +576,6 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
570
576
|
readonly 'background-danger-prominent-active'?: any;
|
|
571
577
|
readonly 'background-danger-prominent-hover'?: any;
|
|
572
578
|
readonly 'background-neutrals'?: any;
|
|
573
|
-
readonly 'background-neutrals-body'?: any;
|
|
574
579
|
readonly 'background-neutrals-container'?: any;
|
|
575
580
|
readonly 'background-neutrals-controls-disabled'?: any;
|
|
576
581
|
readonly 'background-neutrals-disabled'?: any;
|
|
@@ -578,6 +583,8 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
578
583
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
579
584
|
readonly 'background-neutrals-inverted'?: any;
|
|
580
585
|
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
586
|
+
readonly 'background-neutrals-page'?: any;
|
|
587
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
581
588
|
readonly 'background-neutrals-scrolls'?: any;
|
|
582
589
|
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
583
590
|
readonly 'background-neutrals-subtle'?: any;
|
|
@@ -601,12 +608,11 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
601
608
|
readonly 'text-neutrals'?: any;
|
|
602
609
|
readonly 'text-neutrals-disabled'?: any;
|
|
603
610
|
readonly 'text-neutrals-inverted'?: any;
|
|
604
|
-
readonly 'text-neutrals-link'?: any;
|
|
605
|
-
readonly 'text-neutrals-link-active'?: any;
|
|
606
|
-
readonly 'text-neutrals-link-hover'?: any;
|
|
607
611
|
readonly 'text-neutrals-placeholder'?: any;
|
|
608
612
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
609
613
|
readonly 'text-neutrals-subtle'?: any;
|
|
614
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
615
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
610
616
|
readonly 'text-primary'?: any;
|
|
611
617
|
readonly 'text-primary-active'?: any;
|
|
612
618
|
readonly 'text-primary-hover'?: any;
|
|
@@ -626,7 +632,7 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
626
632
|
readonly 'icon-neutrals-inverted'?: any;
|
|
627
633
|
readonly 'icon-neutrals-search'?: any;
|
|
628
634
|
readonly 'icon-neutrals-subtle'?: any;
|
|
629
|
-
readonly 'icon-neutrals-
|
|
635
|
+
readonly 'icon-neutrals-text'?: any;
|
|
630
636
|
readonly 'icon-primary'?: any;
|
|
631
637
|
readonly 'icon-primary-active'?: any;
|
|
632
638
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -635,7 +641,10 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
635
641
|
readonly 'icon-success'?: any;
|
|
636
642
|
readonly 'icon-success-inverted'?: any;
|
|
637
643
|
readonly 'icon-warning'?: any;
|
|
644
|
+
readonly 'icon-warning-prominent'?: any;
|
|
638
645
|
readonly 'border-danger'?: any;
|
|
646
|
+
readonly 'border-danger-active'?: any;
|
|
647
|
+
readonly 'border-danger-hover'?: any;
|
|
639
648
|
readonly 'border-focus-inner'?: any;
|
|
640
649
|
readonly 'border-focus-middle'?: any;
|
|
641
650
|
readonly 'border-focus-outer'?: any;
|
|
@@ -647,6 +656,9 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
647
656
|
readonly 'border-neutrals-hover'?: any;
|
|
648
657
|
readonly 'border-neutrals-inverted'?: any;
|
|
649
658
|
readonly 'border-neutrals-subtle'?: any;
|
|
659
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
660
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
661
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
650
662
|
readonly 'border-primary'?: any;
|
|
651
663
|
readonly 'border-primary-active'?: any;
|
|
652
664
|
readonly 'border-primary-hover'?: any;
|
|
@@ -691,28 +703,28 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
691
703
|
readonly 'icon-400': "32px";
|
|
692
704
|
};
|
|
693
705
|
space: {
|
|
694
|
-
readonly
|
|
706
|
+
readonly none: 0;
|
|
695
707
|
readonly 50: "4px";
|
|
696
708
|
readonly 100: "8px";
|
|
697
709
|
readonly 150: "12px";
|
|
698
710
|
readonly 200: "16px";
|
|
699
711
|
readonly 300: "24px";
|
|
700
712
|
readonly 400: "32px";
|
|
701
|
-
readonly 500: "
|
|
713
|
+
readonly 500: "64px";
|
|
702
714
|
readonly 600: "48px";
|
|
703
715
|
readonly 800: "64px";
|
|
704
716
|
readonly 1200: "96px";
|
|
705
717
|
readonly 1600: "128px";
|
|
706
718
|
};
|
|
707
719
|
'space-gap': {
|
|
708
|
-
readonly
|
|
720
|
+
readonly none: any;
|
|
709
721
|
readonly 50: any;
|
|
710
722
|
readonly 100: any;
|
|
711
723
|
readonly 200: any;
|
|
712
724
|
readonly 300: any;
|
|
713
725
|
};
|
|
714
726
|
'space-inset': {
|
|
715
|
-
readonly
|
|
727
|
+
readonly none: any;
|
|
716
728
|
readonly 50: any;
|
|
717
729
|
readonly 100: any;
|
|
718
730
|
readonly 150: any;
|
|
@@ -725,7 +737,7 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
725
737
|
readonly 1600: any;
|
|
726
738
|
};
|
|
727
739
|
'space-offset': {
|
|
728
|
-
readonly
|
|
740
|
+
readonly none: any;
|
|
729
741
|
readonly 50: any;
|
|
730
742
|
readonly 100: any;
|
|
731
743
|
readonly 150: any;
|
|
@@ -736,7 +748,7 @@ declare const StyledItem: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
736
748
|
readonly 800: any;
|
|
737
749
|
readonly 1200: any;
|
|
738
750
|
readonly 1600: any;
|
|
739
|
-
readonly 'stacking-
|
|
751
|
+
readonly 'stacking-none': any;
|
|
740
752
|
readonly 'stacking-100': any;
|
|
741
753
|
readonly 'stacking-200': any;
|
|
742
754
|
readonly 'stacking-300': any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-grid",
|
|
3
|
-
"version": "2.1.11
|
|
3
|
+
"version": "2.1.11",
|
|
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-primitive": "^1.1.0",
|
|
29
30
|
"@mirohq/design-system-utils": "^0.13.2",
|
|
30
|
-
"@mirohq/design-system-stitches": "^2.3.2
|
|
31
|
-
"@mirohq/design-system-primitive": "^1.1.0"
|
|
31
|
+
"@mirohq/design-system-stitches": "^2.3.2"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "rollup -c ../../../rollup.config.js",
|