@e-trias/woonplan 1.3.256 → 1.3.257
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/types.d.ts +16 -5
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -2461,11 +2461,22 @@ export interface IDOMElementStyle {
|
|
|
2461
2461
|
}
|
|
2462
2462
|
|
|
2463
2463
|
export interface IInputStyles{
|
|
2464
|
-
checkbox ?:
|
|
2465
|
-
radio ?:
|
|
2466
|
-
text ?:
|
|
2467
|
-
textarea ?:
|
|
2468
|
-
select ?:
|
|
2464
|
+
checkbox ?: IDOMInputStyle
|
|
2465
|
+
radio ?: IDOMInputStyle
|
|
2466
|
+
text ?: IDOMInputStyle
|
|
2467
|
+
textarea ?: IDOMInputStyle
|
|
2468
|
+
select ?: IDOMInputStyle
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
|
|
2472
|
+
export interface IDOMInputStyle {
|
|
2473
|
+
backgroundcolor ?: string
|
|
2474
|
+
textcolor ?: string
|
|
2475
|
+
shadow ?: IShadowStyle
|
|
2476
|
+
padding ?: IPaddingStyle
|
|
2477
|
+
border ?: IBorderStyle
|
|
2478
|
+
activebackgroundcolor ?: string
|
|
2479
|
+
activetextcolor ?: string
|
|
2469
2480
|
}
|
|
2470
2481
|
|
|
2471
2482
|
export interface ICSSvariablesSettings{
|