enwawa-ui 4.1.35 → 4.1.37
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 +9 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +37 -8
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +37 -8
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4823,6 +4823,14 @@ export interface TmRequestsPageProps<_RecordType = AnyObject, FormType = any> {
|
|
|
4823
4823
|
* Show drawer content
|
|
4824
4824
|
*/
|
|
4825
4825
|
showDrawerContent?: boolean;
|
|
4826
|
+
/**
|
|
4827
|
+
* Expand left column to full width, collapsing the right column
|
|
4828
|
+
*/
|
|
4829
|
+
expandLeftSide?: boolean;
|
|
4830
|
+
/**
|
|
4831
|
+
* Expand right column to full width, collapsing the left column
|
|
4832
|
+
*/
|
|
4833
|
+
expandRightSide?: boolean;
|
|
4826
4834
|
}
|
|
4827
4835
|
export const TmRequestsPage: React.FC<TmRequestsPageProps>;
|
|
4828
4836
|
export const TmRequestsForm: React.FC<TmRequestsPageProps>;
|
|
@@ -5214,6 +5222,7 @@ export interface OrGoogleMapsProps extends GoogleMapProps {
|
|
|
5214
5222
|
latitude: number;
|
|
5215
5223
|
longitude: number;
|
|
5216
5224
|
}[];
|
|
5225
|
+
dashed?: boolean;
|
|
5217
5226
|
}[];
|
|
5218
5227
|
}
|
|
5219
5228
|
export const OrGoogleMaps: React.FC<OrGoogleMapsProps>;
|