@fox-js/foxui-pad 4.1.1-31 → 4.1.1-32

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/style.js CHANGED
@@ -1,3 +1,3 @@
1
1
  /*!
2
- * @fox-js/foxui-desktop v4.0.0 2026-06-08T14:22:49.887Z
2
+ * @fox-js/foxui-desktop v4.0.0 2026-06-09T06:38:50.055Z
3
3
  */
@@ -1234,6 +1234,10 @@ declare interface FoxUI {
1234
1234
  * @param options
1235
1235
  */
1236
1236
  install(app: App, options: FoxUIOptions): any;
1237
+ /**
1238
+ * 卸载
1239
+ */
1240
+ unInstall(): void;
1237
1241
  /**
1238
1242
  * 更新Layout
1239
1243
  *
@@ -1287,6 +1291,8 @@ declare interface FoxUI {
1287
1291
  declare interface FoxUIOptions {
1288
1292
  install?: boolean;
1289
1293
  componentPrefix?: string;
1294
+ autoAdjustPageLayout?: boolean;
1295
+ resizeDebounceDelay?: number;
1290
1296
  headerBarHeight?: number;
1291
1297
  footerBarHeight?: number;
1292
1298
  safeAreaInset?: SafeAreaInset;
@@ -1310,6 +1316,14 @@ declare class FoxUIVue implements FoxUI {
1310
1316
  * 安装器
1311
1317
  */
1312
1318
  private installers;
1319
+ /**
1320
+ * resize监听器
1321
+ */
1322
+ private resizeListener;
1323
+ /**
1324
+ * resize observer
1325
+ */
1326
+ private resizeObserver;
1313
1327
  /**
1314
1328
  * version
1315
1329
  */
@@ -1327,6 +1341,10 @@ declare class FoxUIVue implements FoxUI {
1327
1341
  * @param options
1328
1342
  */
1329
1343
  install(app: App, options?: FoxUIOptions): any;
1344
+ /**
1345
+ * 卸载
1346
+ */
1347
+ unInstall(): void;
1330
1348
  /**
1331
1349
  * 更新Layout
1332
1350
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fox-js/foxui-pad",
3
3
  "type": "module",
4
- "version": "4.1.1-31",
4
+ "version": "4.1.1-32",
5
5
  "description": "FoxUI PAD端组件库",
6
6
  "author": "jiangcheng",
7
7
  "main": "./dist/index.umd.js",