@proximus/lavender-content-header 2.0.0-alpha.1 → 2.0.0-alpha.11
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 -2
- package/dist/index.es.js +1946 -28
- package/package.json +1 -1
package/dist/ContentHeader.d.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
1
|
+
import '@proximus/lavender-section';
|
|
2
|
+
import { type Section } from '@proximus/lavender-section';
|
|
3
|
+
import type { H1 } from '@proximus/lavender-heading';
|
|
4
|
+
import '@proximus/lavender-heading';
|
|
5
|
+
import '@proximus/lavender-container';
|
|
6
|
+
import '@proximus/lavender-layout';
|
|
7
|
+
import type { Grid } from '@proximus/lavender-grid';
|
|
8
|
+
import '@proximus/lavender-grid';
|
|
3
9
|
import { PxElement } from '@proximus/lavender-common';
|
|
4
10
|
export declare class ContentHeader extends PxElement<HTMLDivElement> {
|
|
5
11
|
static nativeName: string;
|
|
@@ -8,6 +14,8 @@ export declare class ContentHeader extends PxElement<HTMLDivElement> {
|
|
|
8
14
|
static get observedAttributes(): string[];
|
|
9
15
|
connectedCallback(): void;
|
|
10
16
|
attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
|
|
17
|
+
createGridding(value?: string): void;
|
|
18
|
+
get $grid(): Grid;
|
|
11
19
|
get $section(): Section;
|
|
12
20
|
get $h1(): H1;
|
|
13
21
|
get $subtitleSlot(): HTMLSlotElement;
|
|
@@ -34,6 +42,14 @@ export declare class ContentHeader extends PxElement<HTMLDivElement> {
|
|
|
34
42
|
set gradientContrastHelper(value: boolean);
|
|
35
43
|
get overlayContrastHelper(): boolean;
|
|
36
44
|
set overlayContrastHelper(value: boolean);
|
|
45
|
+
get hasGridding(): boolean;
|
|
46
|
+
set hasGridding(value: boolean);
|
|
47
|
+
get hasGriddingMobile(): boolean;
|
|
48
|
+
set hasGriddingMobile(value: boolean);
|
|
49
|
+
get hasGriddingTablet(): boolean;
|
|
50
|
+
set hasGriddingTablet(value: boolean);
|
|
51
|
+
get hasGriddingLaptop(): boolean;
|
|
52
|
+
set hasGriddingLaptop(value: boolean);
|
|
37
53
|
get inverted(): boolean;
|
|
38
54
|
set inverted(value: boolean);
|
|
39
55
|
get minHeight(): boolean;
|