@proximus/lavender-list 2.0.0-alpha.168 → 2.0.0-alpha.169

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 CHANGED
@@ -11,16 +11,16 @@ export declare class List extends PxElement<HTMLDivElement> {
11
11
  get $children(): NodeListOf<Element>;
12
12
  get inverted(): boolean;
13
13
  set inverted(value: boolean);
14
- get gap(): string;
15
- set gap(value: string);
16
- get gapMobile(): string;
17
- set gapMobile(value: string);
18
- get gapTablet(): string;
19
- set gapTablet(value: string);
20
- get gapLaptop(): string;
21
- set gapLaptop(value: string);
22
- get gapDesktop(): string;
23
- set gapDesktop(value: string);
24
- get variant(): string;
25
- set variant(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);
26
26
  }