@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/index.cjs.js +2 -2
- package/dist/index.esm.js +1705 -1691
- package/dist/index.umd.js +2 -2
- package/dist/style.css +2 -1
- package/dist/style.js +1 -1
- package/dist/types/index.d.ts +19 -1
- package/package.json +1 -1
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
package/dist/types/index.d.ts
CHANGED
|
@@ -1210,7 +1210,11 @@ declare interface FoxUI {
|
|
|
1210
1210
|
* @param app
|
|
1211
1211
|
* @param options
|
|
1212
1212
|
*/
|
|
1213
|
-
install(app: App,
|
|
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;
|