enwawa-ui 2.0.28 → 2.0.31
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/CHANGELOG.md +7 -0
- package/lib/index.d.ts +21 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +60 -4
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +60 -4
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -1756,6 +1756,14 @@ export interface MlInputListProps {
|
|
|
1756
1756
|
* The icon for the bottom button
|
|
1757
1757
|
*/
|
|
1758
1758
|
bottomButtonIcon?: React.ReactNode;
|
|
1759
|
+
/**
|
|
1760
|
+
* The function to fetch the place details
|
|
1761
|
+
*/
|
|
1762
|
+
fetchPlaceDetails?: (data: any, id: string) => void;
|
|
1763
|
+
/**
|
|
1764
|
+
* The minimum number of items
|
|
1765
|
+
*/
|
|
1766
|
+
minItems?: number;
|
|
1759
1767
|
}
|
|
1760
1768
|
export const MlInputList: React.FC<MlInputListProps>;
|
|
1761
1769
|
export interface OrPlanCardsProps {
|
|
@@ -3079,7 +3087,7 @@ export interface OrFormInLineItem {
|
|
|
3079
3087
|
/**
|
|
3080
3088
|
* Type of components available for the form
|
|
3081
3089
|
*/
|
|
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';
|
|
3090
|
+
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' | 'image';
|
|
3083
3091
|
/**
|
|
3084
3092
|
* Label of the field
|
|
3085
3093
|
*/
|
|
@@ -3258,6 +3266,18 @@ export interface OrFormInLineItem {
|
|
|
3258
3266
|
* The icon of the button
|
|
3259
3267
|
*/
|
|
3260
3268
|
icon?: AtButtonProps['icon'];
|
|
3269
|
+
/**
|
|
3270
|
+
* The function to fetch the place details
|
|
3271
|
+
*/
|
|
3272
|
+
fetchPlaceDetails?: (data: any, id: string) => void;
|
|
3273
|
+
/**
|
|
3274
|
+
* The minimum number of items
|
|
3275
|
+
*/
|
|
3276
|
+
minItems?: number;
|
|
3277
|
+
/**
|
|
3278
|
+
* The props for the image field
|
|
3279
|
+
*/
|
|
3280
|
+
imageProps?: AtImageProps;
|
|
3261
3281
|
}
|
|
3262
3282
|
export interface OrFormItemsInlineProps {
|
|
3263
3283
|
inputs?: Array<OrFormInLineItem | Array<OrFormInLineItem | OrFormInLineItem[]>>;
|