@odx/foundation 1.0.0-beta.181 → 1.0.0-beta.182
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/components/button/button.d.ts +2 -0
- package/dist/components/icon-button/icon-button.d.ts +2 -0
- package/dist/components/main.d.ts +0 -1
- package/dist/components/popover/popover-host.d.ts +7 -0
- package/dist/components/search-bar/search-bar.d.ts +1 -1
- package/dist/components.js +312 -303
- package/dist/css.css +1 -1
- package/dist/lib/utils/attribute-directive.d.ts +1 -1
- package/dist/main.js +6 -4
- package/dist/styles.css +1 -1
- package/package.json +3 -3
- package/dist/components/panel/panel.d.ts +0 -10
|
@@ -38,6 +38,7 @@ export declare class OdxButton extends InteractiveElement {
|
|
|
38
38
|
#private;
|
|
39
39
|
/** @internal */
|
|
40
40
|
static readonly formAssociated = true;
|
|
41
|
+
active: boolean;
|
|
41
42
|
/**
|
|
42
43
|
* The size of the button.
|
|
43
44
|
*/
|
|
@@ -51,5 +52,6 @@ export declare class OdxButton extends InteractiveElement {
|
|
|
51
52
|
*/
|
|
52
53
|
variant: ButtonVariant;
|
|
53
54
|
constructor();
|
|
55
|
+
isActive(): boolean;
|
|
54
56
|
connectedCallback(): void;
|
|
55
57
|
}
|
|
@@ -50,7 +50,6 @@ export * from './option/option.js';
|
|
|
50
50
|
export * from './page/page.js';
|
|
51
51
|
export * from './page-layout/page-layout.js';
|
|
52
52
|
export * from './pagination/pagination.js';
|
|
53
|
-
export * from './panel/panel.js';
|
|
54
53
|
export * from './popover/popover.js';
|
|
55
54
|
export * from './progress-bar/progress-bar.js';
|
|
56
55
|
export * from './progress-ring/progress-ring.js';
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { CanBeDisabled, CustomElement, Placement, PopoverPlacementOptions } from '../../main.js';
|
|
2
2
|
import { PropertyValues } from 'lit';
|
|
3
3
|
import { OdxPopover } from './popover.js';
|
|
4
|
+
export declare const popoverOpenDirective: {
|
|
5
|
+
value(host?: Element | null): boolean;
|
|
6
|
+
toggle(host?: Element | null, state?: boolean): void;
|
|
7
|
+
selector: "[odx-popover-open]";
|
|
8
|
+
attribute: "odx-popover-open";
|
|
9
|
+
applied(host?: Element | null): boolean;
|
|
10
|
+
};
|
|
4
11
|
declare const PopoverHost_base: import('../../main.js').Constructor<CanBeDisabled> & typeof CustomElement;
|
|
5
12
|
export declare class PopoverHost extends PopoverHost_base {
|
|
6
13
|
#private;
|
|
@@ -30,7 +30,7 @@ export declare class OdxSearchBar extends OdxSearchBar_base {
|
|
|
30
30
|
debounceTime?: number;
|
|
31
31
|
placeholder: string;
|
|
32
32
|
readonly: boolean;
|
|
33
|
-
|
|
33
|
+
value: string;
|
|
34
34
|
search(value: string, options?: Partial<SearchOptions>): void;
|
|
35
35
|
connectedCallback(): void;
|
|
36
36
|
protected updated(props: PropertyValues<this>): void;
|