@e-trias/woonplan 1.3.255 → 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 +17 -6
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -839,7 +839,7 @@ export interface ISettings {
|
|
|
839
839
|
gaApiKey ?: string
|
|
840
840
|
gtmCode ?: string
|
|
841
841
|
}
|
|
842
|
-
|
|
842
|
+
css ?: ICSSvariablesSettings
|
|
843
843
|
}
|
|
844
844
|
|
|
845
845
|
export interface IColors {
|
|
@@ -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{
|