@wise/dynamic-flow-client 2.3.1 → 2.3.2
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/build/i18n/de.json +1 -0
- package/build/i18n/es.json +1 -0
- package/build/i18n/fr.json +1 -0
- package/build/i18n/hu.json +1 -0
- package/build/i18n/id.json +1 -0
- package/build/i18n/it.json +1 -0
- package/build/i18n/ja.json +1 -0
- package/build/i18n/pl.json +1 -0
- package/build/i18n/pt.json +1 -0
- package/build/i18n/ro.json +1 -0
- package/build/i18n/ru.json +1 -0
- package/build/i18n/th.json +1 -0
- package/build/i18n/tr.json +1 -0
- package/build/i18n/zh_CN.json +1 -0
- package/build/i18n/zh_HK.json +1 -0
- package/build/main.js +24 -9
- package/build/main.min.js +1 -1
- package/build/types/layout/utils/index.d.ts +1 -1
- package/build/types/revamp/wise/renderers/utils/layout-utils.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Align, Size } from '@wise/dynamic-flow-types';
|
|
2
2
|
export { getNavigationOptionMedia } from './getNavigationOptionMedia';
|
|
3
|
-
declare const getMargin: (size: Size | undefined) => "" | "m-
|
|
3
|
+
declare const getMargin: (size: Size | undefined) => "" | "m-b-0" | "m-b-1" | "m-b-2" | "m-b-3" | "m-b-5";
|
|
4
4
|
declare const getTextAlignmentAndMargin: (component: {
|
|
5
5
|
align?: Align;
|
|
6
6
|
margin?: Size;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Align, Size } from '../../../renderers/types';
|
|
2
|
-
declare const getTopMargin: (size: Size) => "" | "m-t-
|
|
2
|
+
declare const getTopMargin: (size: Size) => "" | "m-t-2" | "m-t-0" | "m-t-1" | "m-t-3" | "m-t-5";
|
|
3
3
|
declare const getTextAlignmentAndTopMargin: (component: {
|
|
4
4
|
align: Align;
|
|
5
5
|
margin: Size;
|