@7shifts/sous-chef 3.76.0-beta.0 → 3.76.0-beta.1
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/index.css +60 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +157 -110
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +249 -201
- package/dist/index.modern.js.map +1 -1
- package/dist/layout/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/layout/index.d.ts
CHANGED
|
@@ -3,5 +3,6 @@ import CalloutCard from './CalloutCard';
|
|
|
3
3
|
import Inline from './Inline';
|
|
4
4
|
import Stack from './Stack';
|
|
5
5
|
import Page from './Page';
|
|
6
|
-
|
|
6
|
+
import PageLayout from './PageLayout';
|
|
7
|
+
export { CalloutCard, Card, Inline, Stack, Page, PageLayout };
|
|
7
8
|
export type { AlignItems, FlexWrap, JustifyContent } from './Flex/types';
|