@proximus/lavender-list 2.0.0-alpha.17 → 2.0.0-alpha.173
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/List.d.ts +14 -10
- package/dist/ListItem.d.ts +2 -0
- package/dist/index.es.js +640 -691
- package/package.json +2 -2
package/dist/List.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { PxElement } from '@proximus/lavender-common';
|
|
2
|
+
export declare const listVariantValues: string[];
|
|
2
3
|
export declare class List extends PxElement<HTMLDivElement> {
|
|
4
|
+
#private;
|
|
3
5
|
static nativeName: string;
|
|
4
6
|
private template;
|
|
5
7
|
constructor();
|
|
@@ -9,14 +11,16 @@ export declare class List extends PxElement<HTMLDivElement> {
|
|
|
9
11
|
get $children(): NodeListOf<Element>;
|
|
10
12
|
get inverted(): boolean;
|
|
11
13
|
set inverted(value: boolean);
|
|
12
|
-
get gap(): string;
|
|
13
|
-
set gap(value: string);
|
|
14
|
-
get gapMobile(): string;
|
|
15
|
-
set gapMobile(value: string);
|
|
16
|
-
get gapTablet(): string;
|
|
17
|
-
set gapTablet(value: string);
|
|
18
|
-
get gapLaptop(): string;
|
|
19
|
-
set gapLaptop(value: string);
|
|
20
|
-
get gapDesktop(): string;
|
|
21
|
-
set gapDesktop(value: string);
|
|
14
|
+
get gap(): string | null;
|
|
15
|
+
set gap(value: string | null);
|
|
16
|
+
get gapMobile(): string | null;
|
|
17
|
+
set gapMobile(value: string | null);
|
|
18
|
+
get gapTablet(): string | null;
|
|
19
|
+
set gapTablet(value: string | null);
|
|
20
|
+
get gapLaptop(): string | null;
|
|
21
|
+
set gapLaptop(value: string | null);
|
|
22
|
+
get gapDesktop(): string | null;
|
|
23
|
+
set gapDesktop(value: string | null);
|
|
24
|
+
get variant(): string | null;
|
|
25
|
+
set variant(value: string | null);
|
|
22
26
|
}
|
package/dist/ListItem.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { PxElement } from '@proximus/lavender-common';
|
|
2
|
+
export declare const LIST_ITEM_CONNECTED_EVENT = "px-list-item-connected";
|
|
2
3
|
export declare class ListItem extends PxElement<HTMLDivElement> {
|
|
3
4
|
static nativeName: string;
|
|
4
5
|
private template;
|
|
5
6
|
constructor();
|
|
7
|
+
connectedCallback(): void;
|
|
6
8
|
static get observedAttributes(): string[];
|
|
7
9
|
attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
|
|
8
10
|
get $children(): NodeListOf<Element>;
|