@fox-js/foxui 4.0.1-64 → 4.0.1-66
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 +3 -3
- package/dist/index.esm.js +5266 -5248
- package/dist/index.umd.js +4 -4
- package/dist/locale/index.esm.js +1 -1
- package/dist/locale/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1628,8 +1628,8 @@ export declare const padZero: (num: number | string, length?: number) => string;
|
|
|
1628
1628
|
* page layout
|
|
1629
1629
|
*/
|
|
1630
1630
|
export declare interface PageLayout {
|
|
1631
|
-
width
|
|
1632
|
-
height
|
|
1631
|
+
width?: number | string;
|
|
1632
|
+
height?: number | string;
|
|
1633
1633
|
headerHeight?: number | string;
|
|
1634
1634
|
footerHeight?: number | string;
|
|
1635
1635
|
headerPadding?: Padding;
|