@20minutes/hela 2.23.2 → 2.23.4
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/components/atoms/Layout/Grid/Grid.d.ts +1 -1
- package/dist/components/atoms/TabPanel/TabPanel.d.ts +1 -0
- package/dist/components/molecules/Tabs/Tabs.d.ts +1 -0
- package/dist/constants/cssProperties/flexboxAndGridBox.d.ts +1 -1
- package/dist/constants/storybook/gridPropsControls.d.ts +1 -1
- package/dist/constants/tokenVariables.d.ts +4 -0
- package/dist/index.es.js +475 -473
- package/dist/index.umd.cjs +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { BoxProps } from '../../..';
|
|
3
3
|
import { FlexOrGridBoxSystemProps, TypeWithMediaQueriesType } from '../../../../types';
|
|
4
|
-
export declare const colsNumberGridList: readonly [1, 2, 3, 4, 5, 6, 12, "2-of-3"];
|
|
4
|
+
export declare const colsNumberGridList: readonly [1, 2, 3, 4, 5, 6, 7, 12, "2-of-3"];
|
|
5
5
|
export type ColsNumberGridType = (typeof colsNumberGridList)[number];
|
|
6
6
|
export interface GridProps extends BoxProps, FlexOrGridBoxSystemProps {
|
|
7
7
|
colsNumber?: ColsNumberGridType | TypeWithMediaQueriesType<ColsNumberGridType>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const flexDirectionList: readonly ["column", "row", "column-reverse", "row-reverse"];
|
|
2
|
-
export declare const flexWrapList: readonly ["wrap", "wrap-reverse", "
|
|
2
|
+
export declare const flexWrapList: readonly ["wrap", "wrap-reverse", "nowrap"];
|
|
3
3
|
export declare const alignItemsList: readonly ["start", "end", "center", "baseline", "stretch"];
|
|
4
4
|
export declare const alignContentList: readonly ["start", "end", "center", "between", "around", "evenly", "stretch"];
|
|
5
5
|
export declare const justifyContentList: readonly ["start", "end", "center", "between", "around", "evenly", "stretch"];
|