@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/index.cjs.js +1 -1
- package/dist/index.esm.js +2561 -2595
- package/dist/index.umd.js +1 -1
- package/dist/style.js +1 -1
- package/dist/types/index.d.ts +18 -0
- package/package.json +1 -1
package/dist/style.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -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
|
*
|