@fox-js/foxui 4.0.1-90 → 4.0.1-92

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.css CHANGED
@@ -786,9 +786,10 @@
786
786
  .fox-row-item {
787
787
  padding: var(--fox-input-item-padding);
788
788
  margin: var(--fox-input-item-margin);
789
+ align-items: center;
790
+ gap: var(--fox-row-item-gap, 12px);
789
791
  border: none;
790
792
  flex-flow: row;
791
- align-items: center;
792
793
  display: flex;
793
794
  }
794
795
 
package/dist/style.js CHANGED
@@ -1,3 +1,3 @@
1
1
  /*!
2
- * @fox-js/foxui-base v4.0.0 2026-06-02T02:43:52.916Z
2
+ * @fox-js/foxui-base v4.0.0 2026-06-09T06:40:37.454Z
3
3
  */
@@ -1210,7 +1210,11 @@ declare interface FoxUI {
1210
1210
  * @param app
1211
1211
  * @param options
1212
1212
  */
1213
- install(app: App, ...options: any[]): any;
1213
+ install(app: App, options: FoxUIOptions): any;
1214
+ /**
1215
+ * 卸载
1216
+ */
1217
+ unInstall(): void;
1214
1218
  /**
1215
1219
  * 更新Layout
1216
1220
  *
@@ -1266,6 +1270,14 @@ declare class FoxUIApp implements FoxUI {
1266
1270
  * packages
1267
1271
  */
1268
1272
  private packages;
1273
+ /**
1274
+ * resize监听器
1275
+ */
1276
+ private resizeListener;
1277
+ /**
1278
+ * resize observer
1279
+ */
1280
+ private resizeObserver;
1269
1281
  /**
1270
1282
  * version
1271
1283
  */
@@ -1283,6 +1295,10 @@ declare class FoxUIApp implements FoxUI {
1283
1295
  * @param options
1284
1296
  */
1285
1297
  install(app: App, options: FoxUIOptions): any;
1298
+ /**
1299
+ * 卸载
1300
+ */
1301
+ unInstall(): void;
1286
1302
  /**
1287
1303
  * 更新Layout
1288
1304
  *
@@ -1335,6 +1351,8 @@ declare class FoxUIApp implements FoxUI {
1335
1351
  declare interface FoxUIOptions {
1336
1352
  install?: boolean;
1337
1353
  componentPrefix?: string;
1354
+ autoAdjustPageLayout?: boolean;
1355
+ resizeDebounceDelay?: number;
1338
1356
  headerBarHeight?: number;
1339
1357
  footerBarHeight?: number;
1340
1358
  safeAreaInset?: SafeAreaInset;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fox-js/foxui",
3
3
  "type": "module",
4
- "version": "4.0.1-90",
4
+ "version": "4.0.1-92",
5
5
  "description": "FoxUI轻量级移动端组件库(支持小程序开发)",
6
6
  "author": "jiangcheng",
7
7
  "main": "./dist/index.umd.js",