@fox-js/foxui 4.0.1-23 → 4.0.1-24
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.cjs.js +30589 -12
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.esm.js +21813 -13840
- package/dist/index.esm.js.map +1 -0
- package/dist/index.umd.js +30591 -13
- package/dist/index.umd.js.map +1 -0
- package/dist/locale/index.esm.js +1 -1
- package/dist/locale/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/style.esm.js +1 -1
- package/dist/types/index.d.ts +7 -2
- package/package.json +1 -1
package/dist/style.esm.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1451,8 +1451,8 @@ export declare const padZero: (num: number | string, length?: number) => string;
|
|
|
1451
1451
|
export declare interface PageLayout {
|
|
1452
1452
|
width: number | string;
|
|
1453
1453
|
height: number | string;
|
|
1454
|
-
headerHeight
|
|
1455
|
-
footerHeight
|
|
1454
|
+
headerHeight?: number | string;
|
|
1455
|
+
footerHeight?: number | string;
|
|
1456
1456
|
headerPadding?: Padding;
|
|
1457
1457
|
footerPadding?: Padding;
|
|
1458
1458
|
contentPadding?: Padding;
|
|
@@ -1698,6 +1698,11 @@ export { unNumberFormat }
|
|
|
1698
1698
|
* @param state
|
|
1699
1699
|
* @param pageLayout
|
|
1700
1700
|
* @param overrideProps
|
|
1701
|
+
* @param root
|
|
1702
|
+
* @param rootWidth
|
|
1703
|
+
* @param rootHeight
|
|
1704
|
+
* @param headerBarHeight
|
|
1705
|
+
* @param footerBarHeight
|
|
1701
1706
|
*/
|
|
1702
1707
|
export declare function updatePageState(state: PageState, pageLayout: any, overrideProps?: Record<string, unknown>, root?: boolean, rootWidth?: number, rootHeight?: number, headerBarHeight?: number, footerBarHeight?: number): void;
|
|
1703
1708
|
|