@florid-kit/components 0.3.43 → 0.4.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.
@@ -3,7 +3,6 @@ import { FormSubmitter, FormSubmitterType } from '../controllers/form-submitter'
3
3
 
4
4
  declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
5
5
  type ButtonVariant = "primary" | "secondary" | "ghost" | "tertiary";
6
- type size = "small" | "medium" | "large";
7
6
  export declare class OccitaneButton extends buttonBaseClass implements FormSubmitter {
8
7
  static readonly formAssociated = true;
9
8
  static styles: import('lit').CSSResult;
@@ -17,11 +16,10 @@ export declare class OccitaneButton extends buttonBaseClass implements FormSubmi
17
16
  textsecond: string;
18
17
  fullwidth: boolean;
19
18
  disabled: boolean;
20
- iconstrokewidth: string;
21
- icon: string;
19
+ startIconModel: string;
20
+ endIconModel: string;
22
21
  startIcon: boolean;
23
22
  endIcon: boolean;
24
- iconSize: size;
25
23
  panelTarget: string;
26
24
  href: string;
27
25
  target: "_blank" | "_self" | "_top" | "_parent" | "";
@@ -13,6 +13,7 @@ export declare class OccitaneSidePanel extends LitElement {
13
13
  secondaryButtonVariant: string;
14
14
  onSecondaryButtonClick?: () => void;
15
15
  disablePortal: boolean;
16
+ zIndex: number;
16
17
  private previousFocusedElement;
17
18
  static styles: import('lit').CSSResult;
18
19
  connectedCallback(): void;
@@ -24,6 +25,7 @@ export declare class OccitaneSidePanel extends LitElement {
24
25
  closePanel(): void;
25
26
  private handleFirstClick;
26
27
  private handleSecondaryClick;
28
+ protected updated(): void;
27
29
  protected render(): import('lit').TemplateResult<1>;
28
30
  }
29
31
  declare global {