@florid-kit/components 0.9.1 → 0.9.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.
@@ -0,0 +1,25 @@
1
+ import { LitElement } from 'lit';
2
+
3
+ export declare class OccitaneRadio extends LitElement {
4
+ checked: boolean;
5
+ disabled: boolean;
6
+ size: "S" | "L";
7
+ showLabel: boolean;
8
+ label: string;
9
+ name: string;
10
+ value: string;
11
+ inputId: string;
12
+ private inputEl;
13
+ constructor();
14
+ static styles: import('lit').CSSResult;
15
+ private handleClick;
16
+ private syncInput;
17
+ protected updated(changedProperties: Map<string, unknown>): void;
18
+ private handleKeyDown;
19
+ render(): import('lit').TemplateResult<1>;
20
+ }
21
+ declare global {
22
+ interface HTMLElementTagNameMap {
23
+ "o-radio": OccitaneRadio;
24
+ }
25
+ }
@@ -16,13 +16,14 @@ export declare class ThumbnailNavigation extends LitElement {
16
16
  private focusedIndex;
17
17
  private readonly playerIconTemplate;
18
18
  static styles: import('lit').CSSResult;
19
+ private get lastIndex();
19
20
  private handleKeyDown;
20
21
  private focusNext;
21
22
  private focusPrevious;
22
23
  private focusThumbnail;
23
24
  private selectThumbnail;
24
25
  private onFocus;
25
- private onBlur;
26
+ private onFocusOut;
26
27
  protected render(): import('lit').TemplateResult<1>;
27
28
  }
28
29
  declare global {