@odx/foundation 1.0.0-beta.76 → 1.0.0-beta.78

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.
@@ -48,7 +48,6 @@ export declare class OdxButton extends InteractiveElement {
48
48
  */
49
49
  variant: ButtonVariant;
50
50
  constructor();
51
- connectedCallback(): void;
52
51
  protected render(): TemplateResult;
53
52
  }
54
53
  //# sourceMappingURL=button.d.ts.map
@@ -1,4 +1,6 @@
1
1
  import { CanBeDisabled, CustomElement } from '../../lib/main.js';
2
+ import { PropertyValues, TemplateResult } from 'lit';
3
+ import { ButtonVariant } from '../button/button.js';
2
4
  declare global {
3
5
  interface HTMLElementTagNameMap {
4
6
  'odx-button-group': OdxButtonGroup;
@@ -6,8 +8,13 @@ declare global {
6
8
  }
7
9
  declare const OdxButtonGroup_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
8
10
  export declare class OdxButtonGroup extends OdxButtonGroup_base {
11
+ #private;
12
+ private buttons;
9
13
  block: boolean;
10
14
  vertical: boolean;
15
+ variant?: ButtonVariant;
16
+ protected render(): TemplateResult;
17
+ protected updated(props: PropertyValues<this>): void;
11
18
  }
12
19
  export {};
13
20
  //# sourceMappingURL=button-group.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { FormControl } from '../../lib/main.js';
2
2
  import { OdxIconName } from '@odx/icons';
3
- import { PropertyValues, TemplateResult } from 'lit';
3
+ import { nothing, PropertyValues, TemplateResult } from 'lit';
4
4
  declare global {
5
5
  interface HTMLElementTagNameMap {
6
6
  'odx-input': OdxInput;
@@ -11,6 +11,7 @@ export declare class OdxInput extends FormControl<string> {
11
11
  private nativeInput;
12
12
  block: boolean;
13
13
  clearable: boolean;
14
+ hideControls: boolean;
14
15
  placeholder: string;
15
16
  min?: number;
16
17
  max?: number;
@@ -22,6 +23,6 @@ export declare class OdxInput extends FormControl<string> {
22
23
  stepDown(): void;
23
24
  protected willUpdate(props: PropertyValues<this>): void;
24
25
  protected render(): TemplateResult;
25
- protected renderControl(type: string, icon: OdxIconName, listener: EventListener, disabled: boolean): TemplateResult;
26
+ protected renderControl(type: string, icon: OdxIconName, listener: EventListener, disabled: boolean): TemplateResult | typeof nothing;
26
27
  }
27
28
  //# sourceMappingURL=input.d.ts.map
@@ -64,6 +64,7 @@ export * from './text/text.js';
64
64
  export * from './title/title.js';
65
65
  export * from './toast/toast.js';
66
66
  export * from './toggle-button/toggle-button.js';
67
+ export * from './toggle-button-group/toggle-button-group.js';
67
68
  export * from './toggle-content/toggle-content.js';
68
69
  export * from './tooltip/tooltip.js';
69
70
  export * from './translate/translate.js';
@@ -0,0 +1,10 @@
1
+ import { RadioGroupFormControl } from '../../lib/main.js';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'odx-toggle-button-group': OdxToggleButtonGroup;
5
+ }
6
+ }
7
+ export declare class OdxToggleButtonGroup extends RadioGroupFormControl {
8
+ block: boolean;
9
+ }
10
+ //# sourceMappingURL=toggle-button-group.d.ts.map