energy-flow-control--types-and-enums 1.0.178 → 1.0.180
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/package.json +1 -1
- package/src/types/index.d.ts +3 -3
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -544,7 +544,7 @@ export interface IConfigParam {
|
|
|
544
544
|
ui: {
|
|
545
545
|
prefix?: string
|
|
546
546
|
suffix?: string
|
|
547
|
-
minLengthInPx
|
|
547
|
+
minLengthInPx?: number
|
|
548
548
|
width?: {
|
|
549
549
|
px?: number
|
|
550
550
|
slots?: EnumRowSlots
|
|
@@ -557,8 +557,8 @@ export interface IAppValueCollection {
|
|
|
557
557
|
ui: {
|
|
558
558
|
width: {
|
|
559
559
|
px?: number
|
|
560
|
-
|
|
560
|
+
percent?: number
|
|
561
561
|
}
|
|
562
|
-
params: IConfigParam[]
|
|
563
562
|
}
|
|
563
|
+
params: IConfigParam[]
|
|
564
564
|
}
|