@yongdall/web 0.6.2 → 0.6.3
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/index.d.mts +2 -8
- package/index.mjs +16 -14
- package/index.mjs.map +1 -1
- package/package.json +5 -5
- package/yongdall.assets.json +8 -0
package/index.d.mts
CHANGED
|
@@ -2555,12 +2555,6 @@ type FilterFns = {
|
|
|
2555
2555
|
};
|
|
2556
2556
|
//#endregion
|
|
2557
2557
|
//#region packages/web/form/toSchema.d.mts
|
|
2558
|
-
/**
|
|
2559
|
-
*
|
|
2560
|
-
* @param {Record<string, FieldScriptConfiguration>} fields
|
|
2561
|
-
* @param {FieldComponents} components
|
|
2562
|
-
* @param {Permission[]?} [permissions]
|
|
2563
|
-
*/
|
|
2564
2558
|
declare function toSchema(fields: Record<string, FieldScriptConfiguration>, components: FieldComponents, permissions?: Permission[] | null): Schema$1;
|
|
2565
2559
|
//#endregion
|
|
2566
2560
|
//#region packages/web/form/renderForm.d.mts
|
|
@@ -2803,8 +2797,8 @@ declare const Application: {
|
|
|
2803
2797
|
loadMenus(force?: boolean): Promise<Menu.Define[]>;
|
|
2804
2798
|
readonly userMenus: Menu.Define[];
|
|
2805
2799
|
loadUserMenus(force?: boolean): Promise<Menu.Define[]>;
|
|
2806
|
-
loadPage(page: string): Promise<(() => Promise<
|
|
2807
|
-
loadContinuation(page: string): Promise<(() => Promise<
|
|
2800
|
+
loadPage(page: string): Promise<(() => Promise<any>) | null>;
|
|
2801
|
+
loadContinuation(page: string): Promise<(() => Promise<any>) | null>;
|
|
2808
2802
|
};
|
|
2809
2803
|
//#endregion
|
|
2810
2804
|
//#region packages/web/import.d.mts
|