@ailife-dev-vue/uiplus-dev 0.1.28 → 0.1.29
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.css +1 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.mjs +11486 -11362
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -259,6 +259,10 @@ export declare interface Characteristic {
|
|
|
259
259
|
max?: string;
|
|
260
260
|
step?: number;
|
|
261
261
|
unit?: string;
|
|
262
|
+
/** 为 1 时按 min/max(及可选 divisor)换算为百分比展示 */
|
|
263
|
+
percent?: number;
|
|
264
|
+
/** 百分比换算时除数;真值才对 min/max 做除法 */
|
|
265
|
+
divisor?: string | number;
|
|
262
266
|
method?: string;
|
|
263
267
|
permission?: string;
|
|
264
268
|
report?: number;
|
|
@@ -3782,7 +3786,10 @@ export declare const UpCommonBannerNew: {
|
|
|
3782
3786
|
centerImageUrl: string;
|
|
3783
3787
|
logo: string;
|
|
3784
3788
|
showBottomWhenOff: boolean;
|
|
3785
|
-
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
3789
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
3790
|
+
topLeftRef: HTMLDivElement;
|
|
3791
|
+
bottomLeftRef: HTMLDivElement;
|
|
3792
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
3786
3793
|
P: {};
|
|
3787
3794
|
B: {};
|
|
3788
3795
|
D: {};
|