@fluid-topics/ft-select 0.1.17 → 0.2.1

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.
@@ -10,7 +10,7 @@ export declare class FtSelectOption extends FtLitElement implements FtSelectOpti
10
10
  label: string;
11
11
  value: any;
12
12
  selected: boolean;
13
- protected getTemplate(): import("lit-html").TemplateResult<1>;
13
+ protected render(): import("lit-html").TemplateResult<1>;
14
14
  protected updated(changedProperties: PropertyValues): void;
15
15
  }
16
16
  export interface FtSelectProperties {
@@ -37,7 +37,7 @@ export declare const FtSelectCssVariables: {
37
37
  };
38
38
  export declare class FtSelect extends FtLitElement implements FtSelectProperties {
39
39
  static elementDefinitions: ElementDefinitionsMap;
40
- protected getStyles(): import("lit").CSSResult[];
40
+ static styles: import("lit").CSSResult[];
41
41
  label: string;
42
42
  helper: string;
43
43
  outlined: boolean;
@@ -53,7 +53,7 @@ export declare class FtSelect extends FtLitElement implements FtSelectProperties
53
53
  private selectedOptionElement?;
54
54
  private lastOption?;
55
55
  private optionsSlot?;
56
- protected getTemplate(): import("lit-html").TemplateResult<1>;
56
+ protected render(): import("lit-html").TemplateResult<1>;
57
57
  private renderOption;
58
58
  protected updated(props: PropertyValues): void;
59
59
  protected contentAvailableCallback(props: PropertyValues): void;