@fox-js/foxui-pc 4.1.1-34 → 4.1.1-36
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 +2326 -2332
- package/dist/index.umd.js +1 -1
- package/dist/style.css +2 -1
- package/dist/style.js +1 -1
- package/dist/types/index.d.ts +18 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -810,9 +810,10 @@
|
|
|
810
810
|
.fox-row-item {
|
|
811
811
|
padding: var(--fox-input-item-padding, 0);
|
|
812
812
|
margin: var(--fox-input-item-margin);
|
|
813
|
+
align-items: center;
|
|
814
|
+
gap: var(--fox-row-item-gap, 12px);
|
|
813
815
|
border: none;
|
|
814
816
|
flex-flow: row;
|
|
815
|
-
align-items: center;
|
|
816
817
|
display: flex;
|
|
817
818
|
}
|
|
818
819
|
|
package/dist/style.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -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
|
*
|