@ctrliq/quantic-components 1.67.2 → 1.67.3
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/index.js.map +1 -1
- package/dist/layout/layout.component.d.ts +2 -4
- package/dist/layout/layout.component.js +22 -23
- package/dist/meta/index.js.map +1 -1
- package/dist/quantic-components.js +21 -22
- package/dist/quantic-components.js.map +1 -1
- package/dist/quantic-components.min.js +5 -10
- package/dist/quantic-components.min.js.map +1 -1
- package/dist/types/layout/layout.component.d.ts +2 -4
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type PropertyValues } from 'lit';
|
|
1
|
+
import { type CSSResultGroup, type PropertyValues } from 'lit';
|
|
2
2
|
import { LayoutVariant } from './index.constants';
|
|
3
3
|
import { QuanticElement } from '../shared/quantic-element';
|
|
4
4
|
import type { ComponentMeta } from '../shared/meta.types';
|
|
@@ -10,8 +10,6 @@ export declare class Layout extends Layout_base {
|
|
|
10
10
|
private previousIsSmallViewport?;
|
|
11
11
|
private hasSidebarSlot;
|
|
12
12
|
private hasTitlebarSlot;
|
|
13
|
-
private hasNavbarSlot;
|
|
14
|
-
private hasLogoSlot;
|
|
15
13
|
private asideElement?;
|
|
16
14
|
private toggleButtonElement?;
|
|
17
15
|
private focusTrap?;
|
|
@@ -28,10 +26,10 @@ export declare class Layout extends Layout_base {
|
|
|
28
26
|
protected willUpdate(_props: PropertyValues): void;
|
|
29
27
|
protected updated(props: PropertyValues): void;
|
|
30
28
|
static styles: import("lit").CSSResult;
|
|
29
|
+
static finalizeStyles(styles?: CSSResultGroup): import("lit").CSSResultOrNative[];
|
|
31
30
|
private get isAsideCollapsible();
|
|
32
31
|
private get hasSidebar();
|
|
33
32
|
private get hasTitlebar();
|
|
34
|
-
private get hasHeader();
|
|
35
33
|
render(): import("lit").TemplateResult;
|
|
36
34
|
}
|
|
37
35
|
export {};
|