@e-trias/woonplan 1.3.253 → 1.3.255

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 +46 -0
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.253",
5
+ "version": "1.3.255",
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
@@ -1585,6 +1585,7 @@ export interface IAreaactioncollection extends ILogged{
1585
1585
  userdataid ?: string
1586
1586
  areaactionid ?: string
1587
1587
  housetemplateid ?: string
1588
+ vveentirebuilding ?: boolean
1588
1589
  }
1589
1590
  export interface IAreaaction extends ILogged{
1590
1591
  settings ?: ISettings
@@ -2428,3 +2429,48 @@ export interface Energystate{
2428
2429
  floors : IEnergypostArray[]
2429
2430
  }
2430
2431
 
2432
+
2433
+ export interface IPaddingStyle {
2434
+ right ?: string
2435
+ left ?: string
2436
+ top ?: string
2437
+ bottom ?: string
2438
+ }
2439
+
2440
+ export interface IBorderStyle {
2441
+ radius ?: string
2442
+ color ?: string
2443
+ width ?: string
2444
+ style ?: string
2445
+ }
2446
+
2447
+ export interface IShadowStyle {
2448
+ hoffset ?: string
2449
+ voffset ?: string
2450
+ blur ?: string
2451
+ spread ?: string
2452
+ color ?: string
2453
+ }
2454
+
2455
+ export interface IDOMElementStyle {
2456
+ backgroundcolor ?: string
2457
+ textcolor ?: string
2458
+ shadow ?: IShadowStyle
2459
+ padding ?: IPaddingStyle
2460
+ border ?: IBorderStyle
2461
+ }
2462
+
2463
+ export interface IInputStyles{
2464
+ checkbox ?: IDOMElementStyle
2465
+ radio ?: IDOMElementStyle
2466
+ text ?: IDOMElementStyle
2467
+ textarea ?: IDOMElementStyle
2468
+ select ?: IDOMElementStyle
2469
+ }
2470
+
2471
+ export interface ICSSvariablesSettings{
2472
+ button ?: IDOMElementStyle
2473
+ card ?: IDOMElementStyle
2474
+ hero ?: IDOMElementStyle
2475
+ input ?: IInputStyles
2476
+ }