@sproutsocial/racine 8.0.0-beta-dark-mode.6 → 8.0.0-beta-dark-mode.10
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/__flow__/Stack/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import * as React from "react";
|
|
|
3
3
|
import { Children } from "react";
|
|
4
4
|
import Box from "../Box";
|
|
5
5
|
import { normalizeResponsiveProp } from "../utils/responsiveProps";
|
|
6
|
-
import type {
|
|
6
|
+
import type { TypeSpaceLiterals } from "../themes/default/theme";
|
|
7
7
|
import type { TypeResponsive } from "../types/system-props.flow";
|
|
8
8
|
|
|
9
9
|
type TypeDirection = "vertical" | "horizontal";
|
|
@@ -11,7 +11,7 @@ type TypeAlignment = "left" | "center" | "right" | "stretch";
|
|
|
11
11
|
|
|
12
12
|
type TypeProps = {
|
|
13
13
|
/** Amount of space between items in the stack */
|
|
14
|
-
space?: TypeResponsive<
|
|
14
|
+
space?: TypeResponsive<TypeSpaceLiterals>,
|
|
15
15
|
/** Alignment of the items in the stack (horizontal or vertical) */
|
|
16
16
|
align?: TypeResponsive<TypeAlignment>,
|
|
17
17
|
/** Axis upon which the stack is laid out (left, center, right, or stretch) */
|
|
@@ -119,3 +119,22 @@ export const ResponsiveSpace = () => (
|
|
|
119
119
|
ResponsiveSpace.story = {
|
|
120
120
|
name: "Responsive space",
|
|
121
121
|
};
|
|
122
|
+
|
|
123
|
+
export const NumberSpaceType = () => (
|
|
124
|
+
<Stack
|
|
125
|
+
direction={select("Direction", directionOptions, "vertical")}
|
|
126
|
+
align={select("Alignment", alignmentOptions, "left")}
|
|
127
|
+
bg="neutral.100"
|
|
128
|
+
p={400}
|
|
129
|
+
>
|
|
130
|
+
<Item>This</Item>
|
|
131
|
+
<Item>is</Item>
|
|
132
|
+
<Item>the</Item>
|
|
133
|
+
<Item>stack</Item>
|
|
134
|
+
<Item>component</Item>
|
|
135
|
+
</Stack>
|
|
136
|
+
);
|
|
137
|
+
|
|
138
|
+
NumberSpaceType.story = {
|
|
139
|
+
name: "Testing types",
|
|
140
|
+
};
|
|
@@ -250,11 +250,19 @@ export const fontWeights = {
|
|
|
250
250
|
extrabold: TYPOGRAPHY.TYPOGRAPHY_WEIGHT_EXTRA_BOLD,
|
|
251
251
|
};
|
|
252
252
|
|
|
253
|
-
export type
|
|
254
|
-
|
|
255
|
-
|
|
253
|
+
export type TypeSpaceLiterals =
|
|
254
|
+
| 0
|
|
255
|
+
| 100
|
|
256
|
+
| 200
|
|
257
|
+
| 300
|
|
258
|
+
| 350
|
|
259
|
+
| 400
|
|
260
|
+
| 450
|
|
261
|
+
| 500
|
|
262
|
+
| 600
|
|
263
|
+
| string;
|
|
256
264
|
|
|
257
|
-
export const space
|
|
265
|
+
export const space = {
|
|
258
266
|
"0": SPACE.SPACE_SIZE_0,
|
|
259
267
|
"100": SPACE.SPACE_SIZE_100,
|
|
260
268
|
"200": SPACE.SPACE_SIZE_200,
|
|
@@ -7,18 +7,18 @@ import {
|
|
|
7
7
|
borders,
|
|
8
8
|
borderWidths,
|
|
9
9
|
shadows,
|
|
10
|
-
|
|
10
|
+
space,
|
|
11
11
|
easing,
|
|
12
12
|
duration,
|
|
13
13
|
} from "../themes/default/theme";
|
|
14
14
|
import type { TypeColors } from "./theme.colors.flow.js";
|
|
15
|
-
import type { TypeFontFamilyString
|
|
15
|
+
import type { TypeFontFamilyString } from "../themes/default/theme";
|
|
16
16
|
|
|
17
17
|
export type TypeBreakpoint = typeof breakpoints;
|
|
18
18
|
export type TypeTypography = typeof typography;
|
|
19
19
|
export type TypeFontWeight = typeof fontWeights;
|
|
20
20
|
export type TypeFontFamily = TypeFontFamilyString;
|
|
21
|
-
|
|
21
|
+
export type TypeSpace = typeof space;
|
|
22
22
|
export type TypeColor = TypeColors;
|
|
23
23
|
export type TypeRadii = typeof radii;
|
|
24
24
|
export type TypeBorder = typeof borders;
|
package/lib/types/theme.flow.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
import { breakpoints, typography, fontWeights, radii, borders, borderWidths, shadows
|
|
2
|
-
, easing, duration } from "../themes/default/theme";
|
|
1
|
+
import { breakpoints, typography, fontWeights, radii, borders, borderWidths, shadows, space, easing, duration } from "../themes/default/theme";
|