@e-trias/woonplan 1.3.254 → 1.3.256
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 +46 -1
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 {
|
|
@@ -2429,3 +2429,48 @@ export interface Energystate{
|
|
|
2429
2429
|
floors : IEnergypostArray[]
|
|
2430
2430
|
}
|
|
2431
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
|
+
}
|