@fox-js/foxui 4.0.1-60 → 4.0.1-62
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 +4 -4
- package/dist/index.esm.js +6376 -6409
- package/dist/index.umd.js +4 -4
- package/dist/locale/index.esm.js +1 -1
- package/dist/locale/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +28 -0
- package/package.json +1 -1
- package/dist/style.esm.js +0 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -1157,6 +1157,12 @@ export declare interface GenericFunction {
|
|
|
1157
1157
|
(...args: any[]): any;
|
|
1158
1158
|
}
|
|
1159
1159
|
|
|
1160
|
+
/**
|
|
1161
|
+
* icons
|
|
1162
|
+
* @returns
|
|
1163
|
+
*/
|
|
1164
|
+
export declare function getGlobalIcons(): Icons;
|
|
1165
|
+
|
|
1160
1166
|
/**
|
|
1161
1167
|
* 获取公共校验检查事件
|
|
1162
1168
|
*/
|
|
@@ -1225,6 +1231,21 @@ declare const HintTextFunction: HintTextTooltip;
|
|
|
1225
1231
|
export { HintTextFunction as FoxHintText }
|
|
1226
1232
|
export { HintTextFunction as HintText }
|
|
1227
1233
|
|
|
1234
|
+
declare type Icons = {
|
|
1235
|
+
headerbar: {
|
|
1236
|
+
Left?: any;
|
|
1237
|
+
};
|
|
1238
|
+
radio: {
|
|
1239
|
+
CheckNormal?: any;
|
|
1240
|
+
Checked?: any;
|
|
1241
|
+
};
|
|
1242
|
+
checkbox: {
|
|
1243
|
+
CheckNormal?: any;
|
|
1244
|
+
Checked?: any;
|
|
1245
|
+
Indeterminate?: any;
|
|
1246
|
+
};
|
|
1247
|
+
};
|
|
1248
|
+
|
|
1228
1249
|
declare interface ImageInterface {
|
|
1229
1250
|
src: string;
|
|
1230
1251
|
}
|
|
@@ -1576,6 +1597,13 @@ declare type Options = {
|
|
|
1576
1597
|
[propName: string]: any;
|
|
1577
1598
|
};
|
|
1578
1599
|
|
|
1600
|
+
/**
|
|
1601
|
+
* 覆盖更新公共Icon
|
|
1602
|
+
* @param icons
|
|
1603
|
+
* @param merge
|
|
1604
|
+
*/
|
|
1605
|
+
export declare function overrideGlobalIcons(newIcons: Partial<Icons>): void;
|
|
1606
|
+
|
|
1579
1607
|
/**
|
|
1580
1608
|
* 覆盖更新公共的校验处理器
|
|
1581
1609
|
* @param validateHandler
|
package/package.json
CHANGED
package/dist/style.esm.js
DELETED