@razorpay/blade 9.1.2 → 9.2.0
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/components/index.d.ts +868 -90
- package/build/components/index.native.d.ts +588 -41
- package/build/components/index.native.js +321 -321
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +999 -951
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/package.json +1 -1
|
@@ -1457,7 +1457,8 @@ type StyledPropsBlade$1 = Partial<
|
|
|
1457
1457
|
| 'gridColumnStart'
|
|
1458
1458
|
| 'gridColumnEnd'
|
|
1459
1459
|
| 'gridArea'
|
|
1460
|
-
|
|
1460
|
+
> &
|
|
1461
|
+
Pick<LayoutProps$1, 'display'>,
|
|
1461
1462
|
'__brand__'
|
|
1462
1463
|
>
|
|
1463
1464
|
>;
|
|
@@ -2671,7 +2672,7 @@ declare type BoxVisualProps = MakeObjectResponsive<{
|
|
|
2671
2672
|
}> & {
|
|
2672
2673
|
as: BoxAsType;
|
|
2673
2674
|
};
|
|
2674
|
-
declare type StyledPropsBlade = Partial<Omit<MarginProps & Pick<FlexboxProps, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> & PositionProps & Pick<GridProps, 'gridColumn' | 'gridRow' | 'gridRowStart' | 'gridRowEnd' | 'gridColumnStart' | 'gridColumnEnd' | 'gridArea'>, '__brand__'>>;
|
|
2675
|
+
declare type StyledPropsBlade = Partial<Omit<MarginProps & Pick<FlexboxProps, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> & PositionProps & Pick<GridProps, 'gridColumn' | 'gridRow' | 'gridRowStart' | 'gridRowEnd' | 'gridColumnStart' | 'gridColumnEnd' | 'gridArea'> & Pick<LayoutProps, 'display'>, '__brand__'>>;
|
|
2675
2676
|
declare type BoxCallbackProps = Omit<Platform.Select<{
|
|
2676
2677
|
web: {
|
|
2677
2678
|
/**
|
|
@@ -4071,7 +4072,104 @@ declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
|
4071
4072
|
readonly l?: "platform-web" | undefined;
|
|
4072
4073
|
readonly xl?: "platform-web" | undefined;
|
|
4073
4074
|
} | undefined;
|
|
4074
|
-
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"
|
|
4075
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
4076
|
+
width: SpacingValueType | {
|
|
4077
|
+
readonly base?: SpacingValueType | undefined;
|
|
4078
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4079
|
+
readonly s?: SpacingValueType | undefined;
|
|
4080
|
+
readonly m?: SpacingValueType | undefined;
|
|
4081
|
+
readonly l?: SpacingValueType | undefined;
|
|
4082
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4083
|
+
};
|
|
4084
|
+
display?: csstype.Property.Display | {
|
|
4085
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
4086
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
4087
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
4088
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
4089
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
4090
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
4091
|
+
} | undefined;
|
|
4092
|
+
height: SpacingValueType | {
|
|
4093
|
+
readonly base?: SpacingValueType | undefined;
|
|
4094
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4095
|
+
readonly s?: SpacingValueType | undefined;
|
|
4096
|
+
readonly m?: SpacingValueType | undefined;
|
|
4097
|
+
readonly l?: SpacingValueType | undefined;
|
|
4098
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4099
|
+
};
|
|
4100
|
+
maxHeight: SpacingValueType | {
|
|
4101
|
+
readonly base?: SpacingValueType | undefined;
|
|
4102
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4103
|
+
readonly s?: SpacingValueType | undefined;
|
|
4104
|
+
readonly m?: SpacingValueType | undefined;
|
|
4105
|
+
readonly l?: SpacingValueType | undefined;
|
|
4106
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4107
|
+
};
|
|
4108
|
+
maxWidth: SpacingValueType | {
|
|
4109
|
+
readonly base?: SpacingValueType | undefined;
|
|
4110
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4111
|
+
readonly s?: SpacingValueType | undefined;
|
|
4112
|
+
readonly m?: SpacingValueType | undefined;
|
|
4113
|
+
readonly l?: SpacingValueType | undefined;
|
|
4114
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4115
|
+
};
|
|
4116
|
+
minHeight: SpacingValueType | {
|
|
4117
|
+
readonly base?: SpacingValueType | undefined;
|
|
4118
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4119
|
+
readonly s?: SpacingValueType | undefined;
|
|
4120
|
+
readonly m?: SpacingValueType | undefined;
|
|
4121
|
+
readonly l?: SpacingValueType | undefined;
|
|
4122
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4123
|
+
};
|
|
4124
|
+
minWidth: SpacingValueType | {
|
|
4125
|
+
readonly base?: SpacingValueType | undefined;
|
|
4126
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4127
|
+
readonly s?: SpacingValueType | undefined;
|
|
4128
|
+
readonly m?: SpacingValueType | undefined;
|
|
4129
|
+
readonly l?: SpacingValueType | undefined;
|
|
4130
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4131
|
+
};
|
|
4132
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
4133
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
4134
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
4135
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
4136
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
4137
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
4138
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
4139
|
+
} | undefined;
|
|
4140
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
4141
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
4142
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
4143
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
4144
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
4145
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
4146
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
4147
|
+
} | undefined;
|
|
4148
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
4149
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
4150
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
4151
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
4152
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
4153
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
4154
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
4155
|
+
} | undefined;
|
|
4156
|
+
overflow?: csstype.Property.Overflow | {
|
|
4157
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
4158
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
4159
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
4160
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
4161
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
4162
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
4163
|
+
} | undefined;
|
|
4164
|
+
__brand__?: "platform-web" | {
|
|
4165
|
+
readonly base?: "platform-web" | undefined;
|
|
4166
|
+
readonly xs?: "platform-web" | undefined;
|
|
4167
|
+
readonly s?: "platform-web" | undefined;
|
|
4168
|
+
readonly m?: "platform-web" | undefined;
|
|
4169
|
+
readonly l?: "platform-web" | undefined;
|
|
4170
|
+
readonly xl?: "platform-web" | undefined;
|
|
4171
|
+
} | undefined;
|
|
4172
|
+
}, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4075
4173
|
|
|
4076
4174
|
declare type CheckboxGroupProps = {
|
|
4077
4175
|
/**
|
|
@@ -4195,19 +4293,19 @@ declare type DividerProps = {
|
|
|
4195
4293
|
*
|
|
4196
4294
|
*/
|
|
4197
4295
|
width?: CSSObject['width'];
|
|
4198
|
-
};
|
|
4199
|
-
declare const Divider: ({ orientation, dividerStyle, variant, thickness, contrast, height, width, }: DividerProps) => React__default.ReactElement;
|
|
4296
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
4297
|
+
declare const Divider: ({ orientation, dividerStyle, variant, thickness, contrast, height, width, testID, ...styledProps }: DividerProps) => React__default.ReactElement;
|
|
4200
4298
|
|
|
4201
4299
|
declare type DropdownProps = {
|
|
4202
4300
|
selectionType?: 'single' | 'multiple';
|
|
4203
4301
|
onDismiss?: () => void;
|
|
4204
4302
|
children: React.ReactNode[];
|
|
4205
|
-
} & StyledPropsBlade$1;
|
|
4303
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
4206
4304
|
declare type DropdownOverlayProps = {
|
|
4207
4305
|
children: React.ReactElement[] | React.ReactElement;
|
|
4208
4306
|
} & TestID$1;
|
|
4209
4307
|
|
|
4210
|
-
declare const Dropdown: ({ children, selectionType, onDismiss, ...styledProps }: DropdownProps) => JSX.Element;
|
|
4308
|
+
declare const Dropdown: ({ children, selectionType, onDismiss, testID, ...styledProps }: DropdownProps) => JSX.Element;
|
|
4211
4309
|
|
|
4212
4310
|
declare const DropdownOverlay: ({ children, testID }: DropdownOverlayProps) => JSX.Element;
|
|
4213
4311
|
|
|
@@ -5354,7 +5452,104 @@ declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInput
|
|
|
5354
5452
|
readonly l?: "platform-web" | undefined;
|
|
5355
5453
|
readonly xl?: "platform-web" | undefined;
|
|
5356
5454
|
} | undefined;
|
|
5357
|
-
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"
|
|
5455
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
5456
|
+
width: SpacingValueType | {
|
|
5457
|
+
readonly base?: SpacingValueType | undefined;
|
|
5458
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5459
|
+
readonly s?: SpacingValueType | undefined;
|
|
5460
|
+
readonly m?: SpacingValueType | undefined;
|
|
5461
|
+
readonly l?: SpacingValueType | undefined;
|
|
5462
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5463
|
+
};
|
|
5464
|
+
display?: csstype.Property.Display | {
|
|
5465
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
5466
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
5467
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
5468
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
5469
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
5470
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
5471
|
+
} | undefined;
|
|
5472
|
+
height: SpacingValueType | {
|
|
5473
|
+
readonly base?: SpacingValueType | undefined;
|
|
5474
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5475
|
+
readonly s?: SpacingValueType | undefined;
|
|
5476
|
+
readonly m?: SpacingValueType | undefined;
|
|
5477
|
+
readonly l?: SpacingValueType | undefined;
|
|
5478
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5479
|
+
};
|
|
5480
|
+
maxHeight: SpacingValueType | {
|
|
5481
|
+
readonly base?: SpacingValueType | undefined;
|
|
5482
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5483
|
+
readonly s?: SpacingValueType | undefined;
|
|
5484
|
+
readonly m?: SpacingValueType | undefined;
|
|
5485
|
+
readonly l?: SpacingValueType | undefined;
|
|
5486
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5487
|
+
};
|
|
5488
|
+
maxWidth: SpacingValueType | {
|
|
5489
|
+
readonly base?: SpacingValueType | undefined;
|
|
5490
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5491
|
+
readonly s?: SpacingValueType | undefined;
|
|
5492
|
+
readonly m?: SpacingValueType | undefined;
|
|
5493
|
+
readonly l?: SpacingValueType | undefined;
|
|
5494
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5495
|
+
};
|
|
5496
|
+
minHeight: SpacingValueType | {
|
|
5497
|
+
readonly base?: SpacingValueType | undefined;
|
|
5498
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5499
|
+
readonly s?: SpacingValueType | undefined;
|
|
5500
|
+
readonly m?: SpacingValueType | undefined;
|
|
5501
|
+
readonly l?: SpacingValueType | undefined;
|
|
5502
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5503
|
+
};
|
|
5504
|
+
minWidth: SpacingValueType | {
|
|
5505
|
+
readonly base?: SpacingValueType | undefined;
|
|
5506
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5507
|
+
readonly s?: SpacingValueType | undefined;
|
|
5508
|
+
readonly m?: SpacingValueType | undefined;
|
|
5509
|
+
readonly l?: SpacingValueType | undefined;
|
|
5510
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5511
|
+
};
|
|
5512
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
5513
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
5514
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
5515
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
5516
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
5517
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
5518
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
5519
|
+
} | undefined;
|
|
5520
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
5521
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
5522
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
5523
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
5524
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
5525
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
5526
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
5527
|
+
} | undefined;
|
|
5528
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
5529
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
5530
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
5531
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
5532
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
5533
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
5534
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
5535
|
+
} | undefined;
|
|
5536
|
+
overflow?: csstype.Property.Overflow | {
|
|
5537
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
5538
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
5539
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
5540
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
5541
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
5542
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
5543
|
+
} | undefined;
|
|
5544
|
+
__brand__?: "platform-web" | {
|
|
5545
|
+
readonly base?: "platform-web" | undefined;
|
|
5546
|
+
readonly xs?: "platform-web" | undefined;
|
|
5547
|
+
readonly s?: "platform-web" | undefined;
|
|
5548
|
+
readonly m?: "platform-web" | undefined;
|
|
5549
|
+
readonly l?: "platform-web" | undefined;
|
|
5550
|
+
readonly xl?: "platform-web" | undefined;
|
|
5551
|
+
} | undefined;
|
|
5552
|
+
}, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
5358
5553
|
|
|
5359
5554
|
declare type PasswordInputExtraProps = {
|
|
5360
5555
|
/**
|
|
@@ -5573,29 +5768,8 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseI
|
|
|
5573
5768
|
readonly l?: "platform-web" | undefined;
|
|
5574
5769
|
readonly xl?: "platform-web" | undefined;
|
|
5575
5770
|
} | undefined;
|
|
5576
|
-
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"
|
|
5577
|
-
|
|
5578
|
-
declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'onSubmit' | 'value' | 'isDisabled' | 'isRequired' | 'maxCharacters' | 'autoFocus' | 'numberOfLines' | 'testID'> & {
|
|
5579
|
-
/**
|
|
5580
|
-
* Decides whether to render a clear icon button
|
|
5581
|
-
*/
|
|
5582
|
-
showClearButton?: boolean;
|
|
5583
|
-
/**
|
|
5584
|
-
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
5585
|
-
*/
|
|
5586
|
-
onClearButtonClick?: () => void;
|
|
5587
|
-
} & StyledPropsBlade$1;
|
|
5588
|
-
declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "defaultValue" | "onChange" | "onSubmit" | "autoFocus" | "numberOfLines" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "maxCharacters"> & {
|
|
5589
|
-
/**
|
|
5590
|
-
* Decides whether to render a clear icon button
|
|
5591
|
-
*/
|
|
5592
|
-
showClearButton?: boolean | undefined;
|
|
5593
|
-
/**
|
|
5594
|
-
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
5595
|
-
*/
|
|
5596
|
-
onClearButtonClick?: (() => void) | undefined;
|
|
5597
|
-
} & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5598
|
-
bottom: SpacingValueType | {
|
|
5771
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
5772
|
+
width: SpacingValueType | {
|
|
5599
5773
|
readonly base?: SpacingValueType | undefined;
|
|
5600
5774
|
readonly xs?: SpacingValueType | undefined;
|
|
5601
5775
|
readonly s?: SpacingValueType | undefined;
|
|
@@ -5603,7 +5777,15 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
5603
5777
|
readonly l?: SpacingValueType | undefined;
|
|
5604
5778
|
readonly xl?: SpacingValueType | undefined;
|
|
5605
5779
|
};
|
|
5606
|
-
|
|
5780
|
+
display?: csstype.Property.Display | {
|
|
5781
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
5782
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
5783
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
5784
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
5785
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
5786
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
5787
|
+
} | undefined;
|
|
5788
|
+
height: SpacingValueType | {
|
|
5607
5789
|
readonly base?: SpacingValueType | undefined;
|
|
5608
5790
|
readonly xs?: SpacingValueType | undefined;
|
|
5609
5791
|
readonly s?: SpacingValueType | undefined;
|
|
@@ -5611,15 +5793,7 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
5611
5793
|
readonly l?: SpacingValueType | undefined;
|
|
5612
5794
|
readonly xl?: SpacingValueType | undefined;
|
|
5613
5795
|
};
|
|
5614
|
-
|
|
5615
|
-
readonly base?: csstype.Property.Position | undefined;
|
|
5616
|
-
readonly xs?: csstype.Property.Position | undefined;
|
|
5617
|
-
readonly s?: csstype.Property.Position | undefined;
|
|
5618
|
-
readonly m?: csstype.Property.Position | undefined;
|
|
5619
|
-
readonly l?: csstype.Property.Position | undefined;
|
|
5620
|
-
readonly xl?: csstype.Property.Position | undefined;
|
|
5621
|
-
} | undefined;
|
|
5622
|
-
right: SpacingValueType | {
|
|
5796
|
+
maxHeight: SpacingValueType | {
|
|
5623
5797
|
readonly base?: SpacingValueType | undefined;
|
|
5624
5798
|
readonly xs?: SpacingValueType | undefined;
|
|
5625
5799
|
readonly s?: SpacingValueType | undefined;
|
|
@@ -5627,7 +5801,7 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
5627
5801
|
readonly l?: SpacingValueType | undefined;
|
|
5628
5802
|
readonly xl?: SpacingValueType | undefined;
|
|
5629
5803
|
};
|
|
5630
|
-
|
|
5804
|
+
maxWidth: SpacingValueType | {
|
|
5631
5805
|
readonly base?: SpacingValueType | undefined;
|
|
5632
5806
|
readonly xs?: SpacingValueType | undefined;
|
|
5633
5807
|
readonly s?: SpacingValueType | undefined;
|
|
@@ -5635,21 +5809,139 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
5635
5809
|
readonly l?: SpacingValueType | undefined;
|
|
5636
5810
|
readonly xl?: SpacingValueType | undefined;
|
|
5637
5811
|
};
|
|
5638
|
-
|
|
5639
|
-
readonly base?:
|
|
5640
|
-
readonly xs?:
|
|
5641
|
-
readonly s?:
|
|
5642
|
-
readonly m?:
|
|
5643
|
-
readonly l?:
|
|
5644
|
-
readonly xl?:
|
|
5645
|
-
}
|
|
5646
|
-
|
|
5647
|
-
readonly base?:
|
|
5648
|
-
readonly xs?:
|
|
5649
|
-
readonly s?:
|
|
5650
|
-
readonly m?:
|
|
5651
|
-
readonly l?:
|
|
5652
|
-
readonly xl?:
|
|
5812
|
+
minHeight: SpacingValueType | {
|
|
5813
|
+
readonly base?: SpacingValueType | undefined;
|
|
5814
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5815
|
+
readonly s?: SpacingValueType | undefined;
|
|
5816
|
+
readonly m?: SpacingValueType | undefined;
|
|
5817
|
+
readonly l?: SpacingValueType | undefined;
|
|
5818
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5819
|
+
};
|
|
5820
|
+
minWidth: SpacingValueType | {
|
|
5821
|
+
readonly base?: SpacingValueType | undefined;
|
|
5822
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5823
|
+
readonly s?: SpacingValueType | undefined;
|
|
5824
|
+
readonly m?: SpacingValueType | undefined;
|
|
5825
|
+
readonly l?: SpacingValueType | undefined;
|
|
5826
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5827
|
+
};
|
|
5828
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
5829
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
5830
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
5831
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
5832
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
5833
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
5834
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
5835
|
+
} | undefined;
|
|
5836
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
5837
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
5838
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
5839
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
5840
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
5841
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
5842
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
5843
|
+
} | undefined;
|
|
5844
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
5845
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
5846
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
5847
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
5848
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
5849
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
5850
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
5851
|
+
} | undefined;
|
|
5852
|
+
overflow?: csstype.Property.Overflow | {
|
|
5853
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
5854
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
5855
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
5856
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
5857
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
5858
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
5859
|
+
} | undefined;
|
|
5860
|
+
__brand__?: "platform-web" | {
|
|
5861
|
+
readonly base?: "platform-web" | undefined;
|
|
5862
|
+
readonly xs?: "platform-web" | undefined;
|
|
5863
|
+
readonly s?: "platform-web" | undefined;
|
|
5864
|
+
readonly m?: "platform-web" | undefined;
|
|
5865
|
+
readonly l?: "platform-web" | undefined;
|
|
5866
|
+
readonly xl?: "platform-web" | undefined;
|
|
5867
|
+
} | undefined;
|
|
5868
|
+
}, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
5869
|
+
|
|
5870
|
+
declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'onSubmit' | 'value' | 'isDisabled' | 'isRequired' | 'maxCharacters' | 'autoFocus' | 'numberOfLines' | 'testID'> & {
|
|
5871
|
+
/**
|
|
5872
|
+
* Decides whether to render a clear icon button
|
|
5873
|
+
*/
|
|
5874
|
+
showClearButton?: boolean;
|
|
5875
|
+
/**
|
|
5876
|
+
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
5877
|
+
*/
|
|
5878
|
+
onClearButtonClick?: () => void;
|
|
5879
|
+
} & StyledPropsBlade$1;
|
|
5880
|
+
declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "defaultValue" | "onChange" | "onSubmit" | "autoFocus" | "numberOfLines" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "maxCharacters"> & {
|
|
5881
|
+
/**
|
|
5882
|
+
* Decides whether to render a clear icon button
|
|
5883
|
+
*/
|
|
5884
|
+
showClearButton?: boolean | undefined;
|
|
5885
|
+
/**
|
|
5886
|
+
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
5887
|
+
*/
|
|
5888
|
+
onClearButtonClick?: (() => void) | undefined;
|
|
5889
|
+
} & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5890
|
+
bottom: SpacingValueType | {
|
|
5891
|
+
readonly base?: SpacingValueType | undefined;
|
|
5892
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5893
|
+
readonly s?: SpacingValueType | undefined;
|
|
5894
|
+
readonly m?: SpacingValueType | undefined;
|
|
5895
|
+
readonly l?: SpacingValueType | undefined;
|
|
5896
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5897
|
+
};
|
|
5898
|
+
left: SpacingValueType | {
|
|
5899
|
+
readonly base?: SpacingValueType | undefined;
|
|
5900
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5901
|
+
readonly s?: SpacingValueType | undefined;
|
|
5902
|
+
readonly m?: SpacingValueType | undefined;
|
|
5903
|
+
readonly l?: SpacingValueType | undefined;
|
|
5904
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5905
|
+
};
|
|
5906
|
+
position?: csstype.Property.Position | {
|
|
5907
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
5908
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
5909
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
5910
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
5911
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
5912
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
5913
|
+
} | undefined;
|
|
5914
|
+
right: SpacingValueType | {
|
|
5915
|
+
readonly base?: SpacingValueType | undefined;
|
|
5916
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5917
|
+
readonly s?: SpacingValueType | undefined;
|
|
5918
|
+
readonly m?: SpacingValueType | undefined;
|
|
5919
|
+
readonly l?: SpacingValueType | undefined;
|
|
5920
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5921
|
+
};
|
|
5922
|
+
top: SpacingValueType | {
|
|
5923
|
+
readonly base?: SpacingValueType | undefined;
|
|
5924
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5925
|
+
readonly s?: SpacingValueType | undefined;
|
|
5926
|
+
readonly m?: SpacingValueType | undefined;
|
|
5927
|
+
readonly l?: SpacingValueType | undefined;
|
|
5928
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5929
|
+
};
|
|
5930
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
5931
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
5932
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
5933
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
5934
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
5935
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
5936
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
5937
|
+
} | undefined;
|
|
5938
|
+
__brand__?: "platform-web" | {
|
|
5939
|
+
readonly base?: "platform-web" | undefined;
|
|
5940
|
+
readonly xs?: "platform-web" | undefined;
|
|
5941
|
+
readonly s?: "platform-web" | undefined;
|
|
5942
|
+
readonly m?: "platform-web" | undefined;
|
|
5943
|
+
readonly l?: "platform-web" | undefined;
|
|
5944
|
+
readonly xl?: "platform-web" | undefined;
|
|
5653
5945
|
} | undefined;
|
|
5654
5946
|
} & Pick<{
|
|
5655
5947
|
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
@@ -5780,7 +6072,104 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
5780
6072
|
readonly l?: "platform-web" | undefined;
|
|
5781
6073
|
readonly xl?: "platform-web" | undefined;
|
|
5782
6074
|
} | undefined;
|
|
5783
|
-
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"
|
|
6075
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
6076
|
+
width: SpacingValueType | {
|
|
6077
|
+
readonly base?: SpacingValueType | undefined;
|
|
6078
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6079
|
+
readonly s?: SpacingValueType | undefined;
|
|
6080
|
+
readonly m?: SpacingValueType | undefined;
|
|
6081
|
+
readonly l?: SpacingValueType | undefined;
|
|
6082
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6083
|
+
};
|
|
6084
|
+
display?: csstype.Property.Display | {
|
|
6085
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
6086
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
6087
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
6088
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
6089
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
6090
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
6091
|
+
} | undefined;
|
|
6092
|
+
height: SpacingValueType | {
|
|
6093
|
+
readonly base?: SpacingValueType | undefined;
|
|
6094
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6095
|
+
readonly s?: SpacingValueType | undefined;
|
|
6096
|
+
readonly m?: SpacingValueType | undefined;
|
|
6097
|
+
readonly l?: SpacingValueType | undefined;
|
|
6098
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6099
|
+
};
|
|
6100
|
+
maxHeight: SpacingValueType | {
|
|
6101
|
+
readonly base?: SpacingValueType | undefined;
|
|
6102
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6103
|
+
readonly s?: SpacingValueType | undefined;
|
|
6104
|
+
readonly m?: SpacingValueType | undefined;
|
|
6105
|
+
readonly l?: SpacingValueType | undefined;
|
|
6106
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6107
|
+
};
|
|
6108
|
+
maxWidth: SpacingValueType | {
|
|
6109
|
+
readonly base?: SpacingValueType | undefined;
|
|
6110
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6111
|
+
readonly s?: SpacingValueType | undefined;
|
|
6112
|
+
readonly m?: SpacingValueType | undefined;
|
|
6113
|
+
readonly l?: SpacingValueType | undefined;
|
|
6114
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6115
|
+
};
|
|
6116
|
+
minHeight: SpacingValueType | {
|
|
6117
|
+
readonly base?: SpacingValueType | undefined;
|
|
6118
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6119
|
+
readonly s?: SpacingValueType | undefined;
|
|
6120
|
+
readonly m?: SpacingValueType | undefined;
|
|
6121
|
+
readonly l?: SpacingValueType | undefined;
|
|
6122
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6123
|
+
};
|
|
6124
|
+
minWidth: SpacingValueType | {
|
|
6125
|
+
readonly base?: SpacingValueType | undefined;
|
|
6126
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6127
|
+
readonly s?: SpacingValueType | undefined;
|
|
6128
|
+
readonly m?: SpacingValueType | undefined;
|
|
6129
|
+
readonly l?: SpacingValueType | undefined;
|
|
6130
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6131
|
+
};
|
|
6132
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
6133
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
6134
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
6135
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
6136
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
6137
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
6138
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
6139
|
+
} | undefined;
|
|
6140
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
6141
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
6142
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
6143
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
6144
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
6145
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
6146
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
6147
|
+
} | undefined;
|
|
6148
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
6149
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
6150
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
6151
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
6152
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
6153
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
6154
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
6155
|
+
} | undefined;
|
|
6156
|
+
overflow?: csstype.Property.Overflow | {
|
|
6157
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
6158
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
6159
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
6160
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
6161
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
6162
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
6163
|
+
} | undefined;
|
|
6164
|
+
__brand__?: "platform-web" | {
|
|
6165
|
+
readonly base?: "platform-web" | undefined;
|
|
6166
|
+
readonly xs?: "platform-web" | undefined;
|
|
6167
|
+
readonly s?: "platform-web" | undefined;
|
|
6168
|
+
readonly m?: "platform-web" | undefined;
|
|
6169
|
+
readonly l?: "platform-web" | undefined;
|
|
6170
|
+
readonly xl?: "platform-web" | undefined;
|
|
6171
|
+
} | undefined;
|
|
6172
|
+
}, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
5784
6173
|
|
|
5785
6174
|
declare type FormInputOnEventWithIndex = ({ name, value, inputIndex, }: {
|
|
5786
6175
|
name?: string;
|
|
@@ -6588,35 +6977,132 @@ declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
|
6588
6977
|
readonly l?: "platform-web" | undefined;
|
|
6589
6978
|
readonly xl?: "platform-web" | undefined;
|
|
6590
6979
|
} | undefined;
|
|
6591
|
-
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"
|
|
6592
|
-
|
|
6593
|
-
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
|
|
6597
|
-
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
|
|
6618
|
-
|
|
6619
|
-
|
|
6980
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
6981
|
+
width: SpacingValueType | {
|
|
6982
|
+
readonly base?: SpacingValueType | undefined;
|
|
6983
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6984
|
+
readonly s?: SpacingValueType | undefined;
|
|
6985
|
+
readonly m?: SpacingValueType | undefined;
|
|
6986
|
+
readonly l?: SpacingValueType | undefined;
|
|
6987
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6988
|
+
};
|
|
6989
|
+
display?: csstype.Property.Display | {
|
|
6990
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
6991
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
6992
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
6993
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
6994
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
6995
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
6996
|
+
} | undefined;
|
|
6997
|
+
height: SpacingValueType | {
|
|
6998
|
+
readonly base?: SpacingValueType | undefined;
|
|
6999
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7000
|
+
readonly s?: SpacingValueType | undefined;
|
|
7001
|
+
readonly m?: SpacingValueType | undefined;
|
|
7002
|
+
readonly l?: SpacingValueType | undefined;
|
|
7003
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7004
|
+
};
|
|
7005
|
+
maxHeight: SpacingValueType | {
|
|
7006
|
+
readonly base?: SpacingValueType | undefined;
|
|
7007
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7008
|
+
readonly s?: SpacingValueType | undefined;
|
|
7009
|
+
readonly m?: SpacingValueType | undefined;
|
|
7010
|
+
readonly l?: SpacingValueType | undefined;
|
|
7011
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7012
|
+
};
|
|
7013
|
+
maxWidth: SpacingValueType | {
|
|
7014
|
+
readonly base?: SpacingValueType | undefined;
|
|
7015
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7016
|
+
readonly s?: SpacingValueType | undefined;
|
|
7017
|
+
readonly m?: SpacingValueType | undefined;
|
|
7018
|
+
readonly l?: SpacingValueType | undefined;
|
|
7019
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7020
|
+
};
|
|
7021
|
+
minHeight: SpacingValueType | {
|
|
7022
|
+
readonly base?: SpacingValueType | undefined;
|
|
7023
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7024
|
+
readonly s?: SpacingValueType | undefined;
|
|
7025
|
+
readonly m?: SpacingValueType | undefined;
|
|
7026
|
+
readonly l?: SpacingValueType | undefined;
|
|
7027
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7028
|
+
};
|
|
7029
|
+
minWidth: SpacingValueType | {
|
|
7030
|
+
readonly base?: SpacingValueType | undefined;
|
|
7031
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7032
|
+
readonly s?: SpacingValueType | undefined;
|
|
7033
|
+
readonly m?: SpacingValueType | undefined;
|
|
7034
|
+
readonly l?: SpacingValueType | undefined;
|
|
7035
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7036
|
+
};
|
|
7037
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
7038
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
7039
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
7040
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
7041
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
7042
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
7043
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
7044
|
+
} | undefined;
|
|
7045
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
7046
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
7047
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
7048
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
7049
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
7050
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
7051
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
7052
|
+
} | undefined;
|
|
7053
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
7054
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
7055
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
7056
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
7057
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
7058
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
7059
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
7060
|
+
} | undefined;
|
|
7061
|
+
overflow?: csstype.Property.Overflow | {
|
|
7062
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
7063
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
7064
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
7065
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
7066
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
7067
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
7068
|
+
} | undefined;
|
|
7069
|
+
__brand__?: "platform-web" | {
|
|
7070
|
+
readonly base?: "platform-web" | undefined;
|
|
7071
|
+
readonly xs?: "platform-web" | undefined;
|
|
7072
|
+
readonly s?: "platform-web" | undefined;
|
|
7073
|
+
readonly m?: "platform-web" | undefined;
|
|
7074
|
+
readonly l?: "platform-web" | undefined;
|
|
7075
|
+
readonly xl?: "platform-web" | undefined;
|
|
7076
|
+
} | undefined;
|
|
7077
|
+
}, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
7078
|
+
|
|
7079
|
+
declare type RadioGroupProps = {
|
|
7080
|
+
/**
|
|
7081
|
+
* Accepts multiple radios as children
|
|
7082
|
+
*/
|
|
7083
|
+
children: React__default.ReactNode;
|
|
7084
|
+
/**
|
|
7085
|
+
* Help text of the radio group
|
|
7086
|
+
*/
|
|
7087
|
+
helpText?: string;
|
|
7088
|
+
/**
|
|
7089
|
+
* Error text of the radio group
|
|
7090
|
+
* Renders when `validationState` is set to 'error'
|
|
7091
|
+
*
|
|
7092
|
+
* Overrides helpText
|
|
7093
|
+
*/
|
|
7094
|
+
errorText?: string;
|
|
7095
|
+
/**
|
|
7096
|
+
* Sets the error state of the radioGroup
|
|
7097
|
+
* If set to `error` it will render the `errorText` of the group,
|
|
7098
|
+
* and propagate `invalid` prop to every radio
|
|
7099
|
+
*/
|
|
7100
|
+
validationState?: 'error' | 'none';
|
|
7101
|
+
/**
|
|
7102
|
+
* Renders a necessity indicator after radioGroup label
|
|
7103
|
+
*
|
|
7104
|
+
* If set to `undefined` it renders nothing.
|
|
7105
|
+
*/
|
|
6620
7106
|
necessityIndicator?: 'required' | 'optional' | 'none';
|
|
6621
7107
|
/**
|
|
6622
7108
|
* Sets the disabled state of the radioGroup
|
|
@@ -6769,10 +7255,302 @@ declare type SwitchProps = {
|
|
|
6769
7255
|
* The id of the input field in a switch, useful for associating a label element with the input via htmlFor prop
|
|
6770
7256
|
*/
|
|
6771
7257
|
id?: string;
|
|
6772
|
-
|
|
6773
|
-
};
|
|
7258
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6774
7259
|
|
|
6775
|
-
declare const Switch: React__default.ForwardRefExoticComponent<
|
|
7260
|
+
declare const Switch: React__default.ForwardRefExoticComponent<{
|
|
7261
|
+
isChecked?: boolean | undefined;
|
|
7262
|
+
defaultChecked?: boolean | undefined;
|
|
7263
|
+
onChange?: OnChange | undefined;
|
|
7264
|
+
name?: string | undefined;
|
|
7265
|
+
value?: string | undefined;
|
|
7266
|
+
isDisabled?: boolean | undefined;
|
|
7267
|
+
size?: "small" | "medium" | undefined;
|
|
7268
|
+
accessibilityLabel: string;
|
|
7269
|
+
id?: string | undefined;
|
|
7270
|
+
} & TestID$1 & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
7271
|
+
bottom: SpacingValueType | {
|
|
7272
|
+
readonly base?: SpacingValueType | undefined;
|
|
7273
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7274
|
+
readonly s?: SpacingValueType | undefined;
|
|
7275
|
+
readonly m?: SpacingValueType | undefined;
|
|
7276
|
+
readonly l?: SpacingValueType | undefined;
|
|
7277
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7278
|
+
};
|
|
7279
|
+
left: SpacingValueType | {
|
|
7280
|
+
readonly base?: SpacingValueType | undefined;
|
|
7281
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7282
|
+
readonly s?: SpacingValueType | undefined;
|
|
7283
|
+
readonly m?: SpacingValueType | undefined;
|
|
7284
|
+
readonly l?: SpacingValueType | undefined;
|
|
7285
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7286
|
+
};
|
|
7287
|
+
position?: csstype.Property.Position | {
|
|
7288
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
7289
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
7290
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
7291
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
7292
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
7293
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
7294
|
+
} | undefined;
|
|
7295
|
+
right: SpacingValueType | {
|
|
7296
|
+
readonly base?: SpacingValueType | undefined;
|
|
7297
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7298
|
+
readonly s?: SpacingValueType | undefined;
|
|
7299
|
+
readonly m?: SpacingValueType | undefined;
|
|
7300
|
+
readonly l?: SpacingValueType | undefined;
|
|
7301
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7302
|
+
};
|
|
7303
|
+
top: SpacingValueType | {
|
|
7304
|
+
readonly base?: SpacingValueType | undefined;
|
|
7305
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7306
|
+
readonly s?: SpacingValueType | undefined;
|
|
7307
|
+
readonly m?: SpacingValueType | undefined;
|
|
7308
|
+
readonly l?: SpacingValueType | undefined;
|
|
7309
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7310
|
+
};
|
|
7311
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
7312
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
7313
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
7314
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
7315
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
7316
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
7317
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
7318
|
+
} | undefined;
|
|
7319
|
+
__brand__?: "platform-web" | {
|
|
7320
|
+
readonly base?: "platform-web" | undefined;
|
|
7321
|
+
readonly xs?: "platform-web" | undefined;
|
|
7322
|
+
readonly s?: "platform-web" | undefined;
|
|
7323
|
+
readonly m?: "platform-web" | undefined;
|
|
7324
|
+
readonly l?: "platform-web" | undefined;
|
|
7325
|
+
readonly xl?: "platform-web" | undefined;
|
|
7326
|
+
} | undefined;
|
|
7327
|
+
} & Pick<{
|
|
7328
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
7329
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7330
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7331
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7332
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7333
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7334
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7335
|
+
} | undefined;
|
|
7336
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
7337
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
7338
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
7339
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
7340
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
7341
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
7342
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
7343
|
+
} | undefined;
|
|
7344
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
7345
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7346
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7347
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7348
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7349
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7350
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7351
|
+
} | undefined;
|
|
7352
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
7353
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
7354
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
7355
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
7356
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
7357
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
7358
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
7359
|
+
} | undefined;
|
|
7360
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
7361
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
7362
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
7363
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
7364
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
7365
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
7366
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
7367
|
+
} | undefined;
|
|
7368
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
7369
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
7370
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
7371
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
7372
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
7373
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
7374
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
7375
|
+
} | undefined;
|
|
7376
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
7377
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
7378
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
7379
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
7380
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
7381
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
7382
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
7383
|
+
} | undefined;
|
|
7384
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
7385
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
7386
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
7387
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
7388
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
7389
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
7390
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
7391
|
+
} | undefined;
|
|
7392
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
7393
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7394
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7395
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7396
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7397
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7398
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7399
|
+
} | undefined;
|
|
7400
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
7401
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7402
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7403
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7404
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7405
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7406
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7407
|
+
} | undefined;
|
|
7408
|
+
grid?: csstype.Property.Grid | {
|
|
7409
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
7410
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
7411
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
7412
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
7413
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
7414
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
7415
|
+
} | undefined;
|
|
7416
|
+
gridArea?: csstype.Property.GridArea | {
|
|
7417
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
7418
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
7419
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
7420
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
7421
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
7422
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
7423
|
+
} | undefined;
|
|
7424
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
7425
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
7426
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
7427
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
7428
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
7429
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
7430
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
7431
|
+
} | undefined;
|
|
7432
|
+
gridRow?: csstype.Property.GridRow | {
|
|
7433
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
7434
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
7435
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
7436
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
7437
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
7438
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
7439
|
+
} | undefined;
|
|
7440
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
7441
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
7442
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
7443
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
7444
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
7445
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
7446
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
7447
|
+
} | undefined;
|
|
7448
|
+
__brand__?: "platform-web" | {
|
|
7449
|
+
readonly base?: "platform-web" | undefined;
|
|
7450
|
+
readonly xs?: "platform-web" | undefined;
|
|
7451
|
+
readonly s?: "platform-web" | undefined;
|
|
7452
|
+
readonly m?: "platform-web" | undefined;
|
|
7453
|
+
readonly l?: "platform-web" | undefined;
|
|
7454
|
+
readonly xl?: "platform-web" | undefined;
|
|
7455
|
+
} | undefined;
|
|
7456
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
7457
|
+
width: SpacingValueType | {
|
|
7458
|
+
readonly base?: SpacingValueType | undefined;
|
|
7459
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7460
|
+
readonly s?: SpacingValueType | undefined;
|
|
7461
|
+
readonly m?: SpacingValueType | undefined;
|
|
7462
|
+
readonly l?: SpacingValueType | undefined;
|
|
7463
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7464
|
+
};
|
|
7465
|
+
display?: csstype.Property.Display | {
|
|
7466
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
7467
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
7468
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
7469
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
7470
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
7471
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
7472
|
+
} | undefined;
|
|
7473
|
+
height: SpacingValueType | {
|
|
7474
|
+
readonly base?: SpacingValueType | undefined;
|
|
7475
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7476
|
+
readonly s?: SpacingValueType | undefined;
|
|
7477
|
+
readonly m?: SpacingValueType | undefined;
|
|
7478
|
+
readonly l?: SpacingValueType | undefined;
|
|
7479
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7480
|
+
};
|
|
7481
|
+
maxHeight: SpacingValueType | {
|
|
7482
|
+
readonly base?: SpacingValueType | undefined;
|
|
7483
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7484
|
+
readonly s?: SpacingValueType | undefined;
|
|
7485
|
+
readonly m?: SpacingValueType | undefined;
|
|
7486
|
+
readonly l?: SpacingValueType | undefined;
|
|
7487
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7488
|
+
};
|
|
7489
|
+
maxWidth: SpacingValueType | {
|
|
7490
|
+
readonly base?: SpacingValueType | undefined;
|
|
7491
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7492
|
+
readonly s?: SpacingValueType | undefined;
|
|
7493
|
+
readonly m?: SpacingValueType | undefined;
|
|
7494
|
+
readonly l?: SpacingValueType | undefined;
|
|
7495
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7496
|
+
};
|
|
7497
|
+
minHeight: SpacingValueType | {
|
|
7498
|
+
readonly base?: SpacingValueType | undefined;
|
|
7499
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7500
|
+
readonly s?: SpacingValueType | undefined;
|
|
7501
|
+
readonly m?: SpacingValueType | undefined;
|
|
7502
|
+
readonly l?: SpacingValueType | undefined;
|
|
7503
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7504
|
+
};
|
|
7505
|
+
minWidth: SpacingValueType | {
|
|
7506
|
+
readonly base?: SpacingValueType | undefined;
|
|
7507
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7508
|
+
readonly s?: SpacingValueType | undefined;
|
|
7509
|
+
readonly m?: SpacingValueType | undefined;
|
|
7510
|
+
readonly l?: SpacingValueType | undefined;
|
|
7511
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7512
|
+
};
|
|
7513
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
7514
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
7515
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
7516
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
7517
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
7518
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
7519
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
7520
|
+
} | undefined;
|
|
7521
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
7522
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
7523
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
7524
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
7525
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
7526
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
7527
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
7528
|
+
} | undefined;
|
|
7529
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
7530
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
7531
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
7532
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
7533
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
7534
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
7535
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
7536
|
+
} | undefined;
|
|
7537
|
+
overflow?: csstype.Property.Overflow | {
|
|
7538
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
7539
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
7540
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
7541
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
7542
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
7543
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
7544
|
+
} | undefined;
|
|
7545
|
+
__brand__?: "platform-web" | {
|
|
7546
|
+
readonly base?: "platform-web" | undefined;
|
|
7547
|
+
readonly xs?: "platform-web" | undefined;
|
|
7548
|
+
readonly s?: "platform-web" | undefined;
|
|
7549
|
+
readonly m?: "platform-web" | undefined;
|
|
7550
|
+
readonly l?: "platform-web" | undefined;
|
|
7551
|
+
readonly xl?: "platform-web" | undefined;
|
|
7552
|
+
} | undefined;
|
|
7553
|
+
}, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
6776
7554
|
|
|
6777
7555
|
declare type BladeCommonEvents = {
|
|
6778
7556
|
onBlur?: Platform.Select<{
|