@fox-js/foxui-pc 4.1.1-35 → 4.1.1-37

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-08T01:43:37.815Z
2
+ * @fox-js/foxui-desktop v4.0.0 2026-06-13T06:52:22.066Z
3
3
  */
@@ -1194,6 +1194,10 @@ declare interface FoxUI {
1194
1194
  * @param options
1195
1195
  */
1196
1196
  install(app: App, options: FoxUIOptions): any;
1197
+ /**
1198
+ * 卸载
1199
+ */
1200
+ unInstall(): void;
1197
1201
  /**
1198
1202
  * 更新Layout
1199
1203
  *
@@ -1247,6 +1251,8 @@ declare interface FoxUI {
1247
1251
  declare interface FoxUIOptions {
1248
1252
  install?: boolean;
1249
1253
  componentPrefix?: string;
1254
+ autoAdjustPageLayout?: boolean;
1255
+ resizeDebounceDelay?: number;
1250
1256
  headerBarHeight?: number;
1251
1257
  footerBarHeight?: number;
1252
1258
  safeAreaInset?: SafeAreaInset;
@@ -1270,6 +1276,14 @@ declare class FoxUIVue implements FoxUI {
1270
1276
  * 安装器
1271
1277
  */
1272
1278
  private installers;
1279
+ /**
1280
+ * resize监听器
1281
+ */
1282
+ private resizeListener;
1283
+ /**
1284
+ * resize observer
1285
+ */
1286
+ private resizeObserver;
1273
1287
  /**
1274
1288
  * version
1275
1289
  */
@@ -1287,6 +1301,10 @@ declare class FoxUIVue implements FoxUI {
1287
1301
  * @param options
1288
1302
  */
1289
1303
  install(app: App, options?: FoxUIOptions): any;
1304
+ /**
1305
+ * 卸载
1306
+ */
1307
+ unInstall(): void;
1290
1308
  /**
1291
1309
  * 更新Layout
1292
1310
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fox-js/foxui-pc",
3
3
  "type": "module",
4
- "version": "4.1.1-35",
4
+ "version": "4.1.1-37",
5
5
  "description": "FoxUI PC端组件库",
6
6
  "author": "jiangcheng",
7
7
  "main": "./dist/index.umd.js",