@everlywell/ui-kit 1.11.5 → 1.11.6
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/index.js +14 -14
- package/index.mjs +1064 -988
- package/lib/theme/data-display/Tag/Tag.config.d.ts +351 -351
- package/lib/theme/feedback/Progress/Progress.d.ts +2 -3
- package/lib/theme/index.d.ts +702 -702
- package/lib/theme/layout/Grid/Grid.d.ts +3 -3
- package/package.json +1 -1
|
@@ -34,16 +34,16 @@ declare const Grid: React.ForwardRefExoticComponent<{
|
|
|
34
34
|
* Aligns the grid items within the container to the edges.
|
|
35
35
|
* Essentially removing the spacing around the container
|
|
36
36
|
*/
|
|
37
|
-
alignEdges?: boolean
|
|
37
|
+
alignEdges?: boolean;
|
|
38
38
|
/**
|
|
39
39
|
* Define the spacing between elements using the spacing values defined
|
|
40
40
|
* in the design system. Default is the theme horizontal page spacing defined
|
|
41
41
|
* in the app's theme.
|
|
42
42
|
*/
|
|
43
|
-
spacing?: Spacing
|
|
43
|
+
spacing?: Spacing;
|
|
44
44
|
/**
|
|
45
45
|
* Indicates the number of columns
|
|
46
46
|
*/
|
|
47
|
-
columns?: Columns
|
|
47
|
+
columns?: Columns;
|
|
48
48
|
} & FlexProps & React.RefAttributes<unknown>>;
|
|
49
49
|
export default Grid;
|