@florid-kit/components 2.5.5 → 2.6.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.
@@ -70,6 +70,7 @@ export declare class OccitaneOptionTile extends LitElement {
70
70
  private _handleDecrement;
71
71
  private _toggleDescription;
72
72
  private get _isFree();
73
+ private get _hasPriceArea();
73
74
  private _renderPriceArea;
74
75
  private _renderQuantitySelector;
75
76
  protected render(): import('lit').TemplateResult<1>;
@@ -0,0 +1,33 @@
1
+ import { LitElement } from 'lit';
2
+
3
+ declare const textareaBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
4
+ export declare class OccitaneTextarea extends textareaBaseClass {
5
+ static readonly formAssociated = true;
6
+ label: string;
7
+ value: string;
8
+ placeholder: string;
9
+ helperText: string;
10
+ state: "default" | "error" | "success";
11
+ disabled: boolean;
12
+ name: string;
13
+ required: boolean;
14
+ rows: number;
15
+ resize: "none" | "vertical" | "both";
16
+ textareaId: string;
17
+ private readonly textareaEl;
18
+ static readonly shadowRootOptions: ShadowRootInit;
19
+ constructor();
20
+ static readonly styles: import('lit').CSSResult;
21
+ updated(changed: Map<string, unknown>): void;
22
+ formResetCallback(): void;
23
+ private handleInput;
24
+ private handleChange;
25
+ private renderHelperIcon;
26
+ render(): import('lit').TemplateResult<1>;
27
+ }
28
+ declare global {
29
+ interface HTMLElementTagNameMap {
30
+ "o-textarea": OccitaneTextarea;
31
+ }
32
+ }
33
+ export {};