@@ -1089,7 +1089,7 @@ export type FlexBox = {
1089
1089
* - To override this setting for a specific component, set the `margin`
1090
1090
* property of that component.
1091
1091
*/
1092
- spacing ?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1092
+ spacing ?: string | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1093
1093
/**
1094
1094
* Minimum space between this box and the previous component in the parent box.
1095
1095
*
@@ -1100,7 +1100,7 @@ export type FlexBox = {
1100
1100
* - If this box is the first component in the parent box, the `margin`
1101
1101
* property will be ignored.
1102
1102
*/
1103
- margin ?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1103
+ margin ?: string | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1104
1104
/**
1105
1105
* Free space between the borders of this box and the child element.
1106
1106
* For more information, see [Box padding](https://developers.line.biz/en/docs/messaging-api/flex-message-layout/#padding-property) in the API documentation.
@@ -1261,7 +1261,7 @@ export type FlexButton = {
1261
1261
* - If this box is the first component in the parent box, the `margin`
1262
1262
* property will be ignored.
1263
1263
*/
1264
- margin ?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1264
+ margin ?: string | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1265
1265
/**
1266
1266
* Height of the button. The default value is `md`.
1267
1267
*/
@@ -1349,7 +1349,7 @@ export type FlexIcon = {
1349
1349
* - If this box is the first component in the parent box, the `margin`
1350
1350
* property will be ignored.
1351
1351
*/
1352
- margin ?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1352
+ margin ?: string | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1353
1353
/**
1354
1354
* Maximum size of the icon width.
1355
1355
* The size increases in the order of listing.
@@ -1412,7 +1412,7 @@ export type FlexImage = {
1412
1412
* - If this box is the first component in the parent box, the `margin`
1413
1413
* property will be ignored.
1414
1414
*/
1415
- margin ?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1415
+ margin ?: string | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1416
1416
/**
1417
1417
* Horizontal alignment style. Specify one of the following values:
1418
1418
*
@@ -1508,7 +1508,7 @@ export type FlexSeparator = {
1508
1508
* - If this box is the first component in the parent box, the `margin`
1509
1509
* property will be ignored.
1510
1510
*/
1511
- margin ?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1511
+ margin ?: string | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1512
1512
/**
1513
1513
* Color of the separator. Use a hexadecimal color code.
1514
1514
*/
@@ -1564,7 +1564,7 @@ type FlexTextBase = {
1564
1564
* - If this box is the first component in the parent box, the `margin`
1565
1565
* property will be ignored.
1566
1566
*/
1567
- margin ?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1567
+ margin ?: string | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" ;
1568
1568
/**
1569
1569
* Font size.
1570
1570
* The size increases in the order of listing.
0 commit comments