@proximus/lavender-content-header 1.4.14-beta.2 → 1.4.15-alpha.2
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/dist/ContentHeader.d.ts +18 -18
- package/dist/index.es.js +1966 -2216
- package/package.json +1 -1
package/dist/ContentHeader.d.ts
CHANGED
|
@@ -21,28 +21,28 @@ export declare class ContentHeader extends PxElement<HTMLDivElement> {
|
|
|
21
21
|
get $grid(): Grid;
|
|
22
22
|
get $section(): Section;
|
|
23
23
|
get $h1(): H1;
|
|
24
|
-
get $subtitleSlot(): HTMLSlotElement;
|
|
24
|
+
get $subtitleSlot(): HTMLSlotElement | null | undefined;
|
|
25
25
|
get $subtitleSlotted(): HTMLSlotElement;
|
|
26
|
-
get $patchDescriptionSlot(): HTMLSlotElement;
|
|
26
|
+
get $patchDescriptionSlot(): HTMLSlotElement | null | undefined;
|
|
27
27
|
get $patchDescriptionSlotted(): HTMLSlotElement;
|
|
28
28
|
get $overlapSlot(): HTMLSlotElement;
|
|
29
29
|
get $children(): NodeListOf<Element>;
|
|
30
|
-
get backgroundColor(): string;
|
|
31
|
-
set backgroundColor(value: string);
|
|
32
|
-
get gradient(): string;
|
|
33
|
-
set gradient(value: string);
|
|
34
|
-
get backgroundImage(): string;
|
|
35
|
-
set backgroundImage(value: string);
|
|
36
|
-
get backgroundImageMobile(): string;
|
|
37
|
-
set backgroundImageMobile(value: string);
|
|
38
|
-
get backgroundImageTablet(): string;
|
|
39
|
-
set backgroundImageTablet(value: string);
|
|
40
|
-
get backgroundImageLaptop(): string;
|
|
41
|
-
set backgroundImageLaptop(value: string);
|
|
42
|
-
get backgroundSize(): string;
|
|
43
|
-
set backgroundSize(value: string);
|
|
44
|
-
get backgroundPosition(): string;
|
|
45
|
-
set backgroundPosition(value: string);
|
|
30
|
+
get backgroundColor(): string | null;
|
|
31
|
+
set backgroundColor(value: string | null);
|
|
32
|
+
get gradient(): string | null;
|
|
33
|
+
set gradient(value: string | null);
|
|
34
|
+
get backgroundImage(): string | null;
|
|
35
|
+
set backgroundImage(value: string | null);
|
|
36
|
+
get backgroundImageMobile(): string | null;
|
|
37
|
+
set backgroundImageMobile(value: string | null);
|
|
38
|
+
get backgroundImageTablet(): string | null;
|
|
39
|
+
set backgroundImageTablet(value: string | null);
|
|
40
|
+
get backgroundImageLaptop(): string | null;
|
|
41
|
+
set backgroundImageLaptop(value: string | null);
|
|
42
|
+
get backgroundSize(): string | null;
|
|
43
|
+
set backgroundSize(value: string | null);
|
|
44
|
+
get backgroundPosition(): string | null;
|
|
45
|
+
set backgroundPosition(value: string | null);
|
|
46
46
|
get gradientContrastHelper(): boolean;
|
|
47
47
|
set gradientContrastHelper(value: boolean);
|
|
48
48
|
get overlayContrastHelper(): boolean;
|