@mcurros2/microm 1.1.199-0 → 1.1.201-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/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +41 -19
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2674,6 +2674,7 @@ export interface MenuItem {
|
|
|
2674
2674
|
content?: ReactNode | Promise<ReactNode>;
|
|
2675
2675
|
onClick?: () => void;
|
|
2676
2676
|
section: 'header' | 'items' | 'footer';
|
|
2677
|
+
canShowAsShortcut?: boolean;
|
|
2677
2678
|
}
|
|
2678
2679
|
export interface NavigationState {
|
|
2679
2680
|
navigated: boolean;
|
|
@@ -3562,6 +3563,7 @@ export interface MicroMError extends Error {
|
|
|
3562
3563
|
message: string;
|
|
3563
3564
|
statusMessage?: string;
|
|
3564
3565
|
url?: string;
|
|
3566
|
+
errorBody?: string;
|
|
3565
3567
|
}
|
|
3566
3568
|
export const toMicroMError: (e: any) => MicroMError;
|
|
3567
3569
|
export const toDBStatusMicroMError: (dbstat: DBStatus[], form_mode?: FormMode) => MicroMError;
|