enwawa-ui 2.0.27 → 2.0.28
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/lib/index.d.ts +17 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +31 -14
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +31 -14
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1748,6 +1748,14 @@ export interface MlInputListProps {
|
|
|
1748
1748
|
* The text for the bottom button
|
|
1749
1749
|
*/
|
|
1750
1750
|
bottomButtonText?: string;
|
|
1751
|
+
/**
|
|
1752
|
+
* The type for the bottom button
|
|
1753
|
+
*/
|
|
1754
|
+
bottomButtonType?: AtButtonProps['type'];
|
|
1755
|
+
/**
|
|
1756
|
+
* The icon for the bottom button
|
|
1757
|
+
*/
|
|
1758
|
+
bottomButtonIcon?: React.ReactNode;
|
|
1751
1759
|
}
|
|
1752
1760
|
export const MlInputList: React.FC<MlInputListProps>;
|
|
1753
1761
|
export interface OrPlanCardsProps {
|
|
@@ -3071,7 +3079,7 @@ export interface OrFormInLineItem {
|
|
|
3071
3079
|
/**
|
|
3072
3080
|
* Type of components available for the form
|
|
3073
3081
|
*/
|
|
3074
|
-
component: 'radio' | 'number-input' | 'checkbox' | 'select' | 'select-multiple' | 'text' | 'phone' | 'date-picker' | 'date-range-picker' | 'cvc' | 'name' | 'select-input' | 'info' | 'copy-info' | 'status-info' | 'file-input' | 'collapse' | 'download-upload' | 'summary' | 'qr-code' | 'select-table' | 'google-map' | 'google-autocomplete-search' | 'stepper' | 'input-list';
|
|
3082
|
+
component: 'radio' | 'number-input' | 'checkbox' | 'select' | 'select-multiple' | 'text' | 'phone' | 'date-picker' | 'date-range-picker' | 'cvc' | 'name' | 'select-input' | 'info' | 'copy-info' | 'status-info' | 'file-input' | 'collapse' | 'download-upload' | 'summary' | 'qr-code' | 'select-table' | 'google-map' | 'google-autocomplete-search' | 'stepper' | 'input-list' | 'button';
|
|
3075
3083
|
/**
|
|
3076
3084
|
* Label of the field
|
|
3077
3085
|
*/
|
|
@@ -3242,6 +3250,14 @@ export interface OrFormInLineItem {
|
|
|
3242
3250
|
* The text for the bottom button
|
|
3243
3251
|
*/
|
|
3244
3252
|
addButtonText?: string;
|
|
3253
|
+
/**
|
|
3254
|
+
* The mode of the button
|
|
3255
|
+
*/
|
|
3256
|
+
buttonType?: AtButtonProps['type'];
|
|
3257
|
+
/**
|
|
3258
|
+
* The icon of the button
|
|
3259
|
+
*/
|
|
3260
|
+
icon?: AtButtonProps['icon'];
|
|
3245
3261
|
}
|
|
3246
3262
|
export interface OrFormItemsInlineProps {
|
|
3247
3263
|
inputs?: Array<OrFormInLineItem | Array<OrFormInLineItem | OrFormInLineItem[]>>;
|