energy-flow-control--types-and-enums 1.0.179 → 1.0.181
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 -1
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -536,7 +536,9 @@ export interface IConfigParam {
|
|
|
536
536
|
label: string
|
|
537
537
|
rules: {
|
|
538
538
|
required?: boolean
|
|
539
|
+
length?: number
|
|
539
540
|
minLength?: number
|
|
541
|
+
maxLength?: number
|
|
540
542
|
minValue?: number
|
|
541
543
|
maxValue?: number
|
|
542
544
|
}
|
|
@@ -544,7 +546,7 @@ export interface IConfigParam {
|
|
|
544
546
|
ui: {
|
|
545
547
|
prefix?: string
|
|
546
548
|
suffix?: string
|
|
547
|
-
minLengthInPx
|
|
549
|
+
minLengthInPx?: number
|
|
548
550
|
width?: {
|
|
549
551
|
px?: number
|
|
550
552
|
slots?: EnumRowSlots
|