@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +17 -6
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.3.255",
5
+ "version": "1.3.257",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json",
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 ?: IDOMElementStyle
2465
- radio ?: IDOMElementStyle
2466
- text ?: IDOMElementStyle
2467
- textarea ?: IDOMElementStyle
2468
- select ?: IDOMElementStyle
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{