@florid-kit/components 2.6.1 → 2.6.2

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.
Files changed (41) hide show
  1. package/behaviors/performance-mixin.d.ts +34 -0
  2. package/components/accordion-group.d.ts +3 -1
  3. package/components/accordion.d.ts +3 -1
  4. package/components/arch-image.d.ts +3 -1
  5. package/components/badge.d.ts +2 -1
  6. package/components/breadcrumb.d.ts +3 -1
  7. package/components/breadcrumbs.d.ts +3 -1
  8. package/components/button.d.ts +1 -1
  9. package/components/checkbox.d.ts +3 -1
  10. package/components/chip.d.ts +1 -1
  11. package/components/chipset.d.ts +3 -1
  12. package/components/dots.d.ts +3 -1
  13. package/components/dropdown-variant.d.ts +3 -1
  14. package/components/dropdown.d.ts +3 -1
  15. package/components/feedback-message.d.ts +3 -1
  16. package/components/filter-chip.d.ts +1 -1
  17. package/components/footer-simplify.d.ts +3 -1
  18. package/components/header-simplify.d.ts +3 -1
  19. package/components/icon-button.d.ts +2 -1
  20. package/components/input.d.ts +1 -1
  21. package/components/link.d.ts +2 -1
  22. package/components/mediumtile.d.ts +3 -1
  23. package/components/minitile.d.ts +3 -1
  24. package/components/option-tile.d.ts +3 -1
  25. package/components/popin.d.ts +3 -1
  26. package/components/radio.d.ts +3 -1
  27. package/components/rating.d.ts +3 -1
  28. package/components/reassurance.d.ts +3 -1
  29. package/components/search-input-dropdown.d.ts +3 -1
  30. package/components/search-input.d.ts +3 -1
  31. package/components/side-panel.d.ts +3 -1
  32. package/components/tab.d.ts +3 -1
  33. package/components/tablist.d.ts +3 -1
  34. package/components/tag.d.ts +2 -1
  35. package/components/thumbnail-navigation.d.ts +2 -1
  36. package/components/toast.d.ts +2 -1
  37. package/components/tooltip.d.ts +2 -1
  38. package/components/wishlist-button.d.ts +2 -1
  39. package/index.js +439 -416
  40. package/index.mjs +2205 -2002
  41. package/package.json +1 -1
@@ -0,0 +1,34 @@
1
+ import { LitElement } from 'lit';
2
+ import { MixinBase, MixinReturn } from './mixin.js';
3
+
4
+ declare global {
5
+ interface Window {
6
+ __florid__?: {
7
+ performance?: boolean;
8
+ };
9
+ }
10
+ }
11
+ /**
12
+ * Mixin that instruments a LitElement component with the Performance API.
13
+ * Disabled by default — two ways to enable:
14
+ *
15
+ * - URL param (recommended, survives reloads):
16
+ * https://mysite.com/page?perf
17
+ *
18
+ * - Runtime toggle (console / bootstrap code):
19
+ * window.__florid__ = { performance: true };
20
+ *
21
+ * To label a page section explicitly (more reliable than auto-detection):
22
+ * <section data-perf-context="checkout-form">...</section>
23
+ *
24
+ * In Storybook the `.storybook/preview.ts` decorator handles activation and
25
+ * reporting automatically — no manual setup needed.
26
+ *
27
+ * Two measures are created per component instance:
28
+ * - `<tag>:init` connectedCallback → firstUpdated (Lit JS render time)
29
+ * - `<tag>:to-paint` connectedCallback → first RAF (JS + CSS layout/paint)
30
+ *
31
+ * Instance marks (`<tag>#<id>:start/end`) are cleaned up immediately after
32
+ * measuring to avoid polluting the performance buffer.
33
+ */
34
+ export declare function mixinPerformance<T extends MixinBase<LitElement>>(Base: T): MixinReturn<T>;
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneAccordionGroup extends LitElement {
3
+ declare const OccitaneAccordionGroup_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneAccordionGroup extends OccitaneAccordionGroup_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  single: boolean;
6
7
  private defaultSlot;
@@ -18,3 +19,4 @@ declare global {
18
19
  "o-accordion-group": OccitaneAccordionGroup;
19
20
  }
20
21
  }
22
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneAccordion extends LitElement {
3
+ declare const OccitaneAccordion_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneAccordion extends OccitaneAccordion_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  label: string;
6
7
  expanded: boolean;
@@ -16,3 +17,4 @@ declare global {
16
17
  "o-accordion": OccitaneAccordion;
17
18
  }
18
19
  }
20
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneArchImage extends LitElement {
3
+ declare const OccitaneArchImage_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneArchImage extends OccitaneArchImage_base {
4
5
  imageUrl: string;
5
6
  imageAlt: string;
6
7
  hoverUrl: string;
@@ -15,3 +16,4 @@ declare global {
15
16
  "o-arch-image": OccitaneArchImage;
16
17
  }
17
18
  }
19
+ export {};
@@ -2,7 +2,8 @@ import { LitElement } from 'lit';
2
2
 
3
3
  type BadgeVariant = "cart" | "filter";
4
4
  export declare const badgeVariantValues: readonly ["cart", "filter"];
5
- export declare class OccitaneBadge extends LitElement {
5
+ declare const OccitaneBadge_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
6
+ export declare class OccitaneBadge extends OccitaneBadge_base {
6
7
  variant: BadgeVariant;
7
8
  text: number;
8
9
  srlabel: string;
@@ -1,9 +1,11 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OBreadcrumb extends LitElement {
3
+ declare const OBreadcrumb_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OBreadcrumb extends OBreadcrumb_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  href: string;
6
7
  active: boolean;
7
8
  private _handleClick;
8
9
  render(): import('lit').TemplateResult<1>;
9
10
  }
11
+ export {};
@@ -1,6 +1,8 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OBreadcrumbs extends LitElement {
3
+ declare const OBreadcrumbs_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class OBreadcrumbs extends OBreadcrumbs_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  render(): import('lit').TemplateResult<1>;
6
7
  }
8
+ export {};
@@ -1,7 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
  import { FormSubmitter, FormSubmitterType } from '../controllers/form-submitter';
3
3
 
4
- declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
4
+ declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>>;
5
5
  type ButtonVariant = "primary" | "secondary" | "ghost" | "tertiary";
6
6
  export declare const variants: string[];
7
7
  export declare class OccitaneButton extends buttonBaseClass implements FormSubmitter {
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneCheckbox extends LitElement {
3
+ declare const OccitaneCheckbox_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneCheckbox extends OccitaneCheckbox_base {
4
5
  checked: boolean;
5
6
  indeterminate: boolean;
6
7
  disabled: boolean;
@@ -24,3 +25,4 @@ declare global {
24
25
  "o-checkbox": OccitaneCheckbox;
25
26
  }
26
27
  }
28
+ export {};
@@ -1,6 +1,6 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
3
+ declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>>;
4
4
  export declare class OccitaneChip extends buttonBaseClass {
5
5
  static styles: import('lit').CSSResult;
6
6
  link: string;
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneChipset extends LitElement {
3
+ declare const OccitaneChipset_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneChipset extends OccitaneChipset_base {
4
5
  constructor();
5
6
  static styles: import('lit').CSSResult;
6
7
  name: string;
@@ -13,3 +14,4 @@ declare global {
13
14
  "o-chipset": OccitaneChipset;
14
15
  }
15
16
  }
17
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneDots extends LitElement {
3
+ declare const OccitaneDots_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneDots extends OccitaneDots_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  render(): import('lit').TemplateResult<1>;
6
7
  }
@@ -9,3 +10,4 @@ declare global {
9
10
  "o-dots": OccitaneDots;
10
11
  }
11
12
  }
13
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneDropdownVariant extends LitElement {
3
+ declare const OccitaneDropdownVariant_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneDropdownVariant extends OccitaneDropdownVariant_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  options: Array<{
6
7
  value: string;
@@ -51,3 +52,4 @@ declare global {
51
52
  "o-dropdown-variant": OccitaneDropdownVariant;
52
53
  }
53
54
  }
55
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneDropdown extends LitElement {
3
+ declare const OccitaneDropdown_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneDropdown extends OccitaneDropdown_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  options: Array<{
6
7
  value: string;
@@ -35,3 +36,4 @@ declare global {
35
36
  "o-dropdown": OccitaneDropdown;
36
37
  }
37
38
  }
39
+ export {};
@@ -2,7 +2,8 @@ import { LitElement } from 'lit';
2
2
 
3
3
  export type FeedbackMessageVariant = "standard" | "success" | "info" | "error";
4
4
  export declare const feedbackMessageVariantValues: readonly ["standard", "success", "info", "error"];
5
- export declare class OccitaneFeedbackMessage extends LitElement {
5
+ declare const OccitaneFeedbackMessage_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
6
+ export declare class OccitaneFeedbackMessage extends OccitaneFeedbackMessage_base {
6
7
  static styles: import('lit').CSSResult;
7
8
  variant: FeedbackMessageVariant;
8
9
  framed: boolean;
@@ -15,3 +16,4 @@ declare global {
15
16
  "o-feedback-message": OccitaneFeedbackMessage;
16
17
  }
17
18
  }
19
+ export {};
@@ -1,6 +1,6 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
3
+ declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>>;
4
4
  export declare class OccitaneFilterChip extends buttonBaseClass {
5
5
  static styles: import('lit').CSSResult;
6
6
  name: string;
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneFooterSimplify extends LitElement {
3
+ declare const OccitaneFooterSimplify_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneFooterSimplify extends OccitaneFooterSimplify_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  altImage: string;
6
7
  loccitaneGroup: string;
@@ -15,3 +16,4 @@ declare global {
15
16
  "o-footer-simplify": OccitaneFooterSimplify;
16
17
  }
17
18
  }
19
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneHeaderSimplify extends LitElement {
3
+ declare const OccitaneHeaderSimplify_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneHeaderSimplify extends OccitaneHeaderSimplify_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  makeSticky: boolean;
6
7
  showBackButton: boolean;
@@ -25,3 +26,4 @@ declare global {
25
26
  "o-header-simplify": OccitaneHeaderSimplify;
26
27
  }
27
28
  }
29
+ export {};
@@ -5,7 +5,8 @@ type bgstyle = IconBgStyle;
5
5
  type size = IconLogicalSize;
6
6
  type status = "empty" | "filled";
7
7
  type type = "button" | "span";
8
- export declare class OccitaneIconButton extends LitElement {
8
+ declare const OccitaneIconButton_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
9
+ export declare class OccitaneIconButton extends OccitaneIconButton_base {
9
10
  static styles: import('lit').CSSResult;
10
11
  bgstyle: bgstyle;
11
12
  size: size;
@@ -1,7 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
  import { IconName } from '../assets/icons/icons';
3
3
 
4
- declare const inputBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
4
+ declare const inputBaseClass: import('../behaviors/mixin').MixinReturn<import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>>;
5
5
  export declare class OccitaneInput extends inputBaseClass {
6
6
  static readonly formAssociated = true;
7
7
  label: string;
@@ -5,7 +5,8 @@ type Inverse = true | false;
5
5
  type endIcon = true | false;
6
6
  type reverseEndIcon = true | false;
7
7
  type Disabled = true | false;
8
- export declare class OccitaneLink extends LitElement {
8
+ declare const OccitaneLink_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
9
+ export declare class OccitaneLink extends OccitaneLink_base {
9
10
  static styles: import('lit').CSSResult;
10
11
  href: string;
11
12
  target: "_blank" | "_parent" | "_self" | "_top" | "";
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class MediumTile extends LitElement {
3
+ declare const MediumTile_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class MediumTile extends MediumTile_base {
4
5
  type: string;
5
6
  titleProduct: string;
6
7
  descriptionProduct: string;
@@ -30,3 +31,4 @@ declare global {
30
31
  "o-medium-tile": MediumTile;
31
32
  }
32
33
  }
34
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class MiniTile extends LitElement {
3
+ declare const MiniTile_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class MiniTile extends MiniTile_base {
4
5
  type: string;
5
6
  titleProduct: string;
6
7
  volume: string;
@@ -19,3 +20,4 @@ export declare class MiniTile extends LitElement {
19
20
  static styles: import('lit').CSSResult;
20
21
  render(): import('lit').TemplateResult<1>;
21
22
  }
23
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneOptionTile extends LitElement {
3
+ declare const OccitaneOptionTile_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneOptionTile extends OccitaneOptionTile_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  /** SKU identifier passed to events for cart integration */
6
7
  sku: string;
@@ -80,3 +81,4 @@ declare global {
80
81
  "o-option-tile": OccitaneOptionTile;
81
82
  }
82
83
  }
84
+ export {};
@@ -1,7 +1,8 @@
1
1
  import { LitElement } from 'lit';
2
2
  import { IconLogicalSize } from '../assets/icons/icons';
3
3
 
4
- export declare class OPopin extends LitElement {
4
+ declare const OPopin_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
5
+ export declare class OPopin extends OPopin_base {
5
6
  ispagedesigner: boolean;
6
7
  get classPopin(): string;
7
8
  set classPopin(value: string);
@@ -36,3 +37,4 @@ export declare class OPopin extends LitElement {
36
37
  static styles: import('lit').CSSResult;
37
38
  render(): import('lit').TemplateResult<1>;
38
39
  }
40
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneRadio extends LitElement {
3
+ declare const OccitaneRadio_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneRadio extends OccitaneRadio_base {
4
5
  checked: boolean;
5
6
  disabled: boolean;
6
7
  size: "S" | "L";
@@ -23,3 +24,4 @@ declare global {
23
24
  "o-radio": OccitaneRadio;
24
25
  }
25
26
  }
27
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneRating extends LitElement {
3
+ declare const OccitaneRating_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneRating extends OccitaneRating_base {
4
5
  rating: number;
5
6
  reviewCount?: string;
6
7
  href?: string;
@@ -13,3 +14,4 @@ declare global {
13
14
  "o-rating": OccitaneRating;
14
15
  }
15
16
  }
17
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneReassurance extends LitElement {
3
+ declare const OccitaneReassurance_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneReassurance extends OccitaneReassurance_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  option: {
6
7
  title?: string;
@@ -18,3 +19,4 @@ declare global {
18
19
  "o-reassurance": OccitaneReassurance;
19
20
  }
20
21
  }
22
+ export {};
@@ -4,7 +4,8 @@ export interface SearchDropdownOption {
4
4
  id: string;
5
5
  value: string;
6
6
  }
7
- export declare class OccitaneSearchInputDropdown extends LitElement {
7
+ declare const OccitaneSearchInputDropdown_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
8
+ export declare class OccitaneSearchInputDropdown extends OccitaneSearchInputDropdown_base {
8
9
  label: string;
9
10
  value: string;
10
11
  placeholder: string;
@@ -63,3 +64,4 @@ declare global {
63
64
  "o-search-input-dropdown": OccitaneSearchInputDropdown;
64
65
  }
65
66
  }
67
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneSearchInput extends LitElement {
3
+ declare const OccitaneSearchInput_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneSearchInput extends OccitaneSearchInput_base {
4
5
  label: string;
5
6
  value: string;
6
7
  placeholder: string;
@@ -23,3 +24,4 @@ declare global {
23
24
  "o-search-input": OccitaneSearchInput;
24
25
  }
25
26
  }
27
+ export {};
@@ -8,7 +8,8 @@ declare global {
8
8
  "open-detail": CustomEvent<OpenDetailDetail>;
9
9
  }
10
10
  }
11
- export declare class OccitaneSidePanel extends LitElement {
11
+ declare const OccitaneSidePanel_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
12
+ export declare class OccitaneSidePanel extends OccitaneSidePanel_base {
12
13
  open: boolean;
13
14
  showHeader: boolean;
14
15
  showFooter: boolean;
@@ -69,3 +70,4 @@ declare global {
69
70
  "o-side-panel": OccitaneSidePanel;
70
71
  }
71
72
  }
73
+ export {};
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneTab extends LitElement {
3
+ declare const OccitaneTab_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneTab extends OccitaneTab_base {
4
5
  static styles: import('lit').CSSResult;
5
6
  text: string;
6
7
  class: string;
@@ -16,3 +17,4 @@ declare global {
16
17
  "o-tab": OccitaneTab;
17
18
  }
18
19
  }
20
+ export {};
@@ -1,9 +1,11 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- export declare class OccitaneTablist extends LitElement {
3
+ declare const OccitaneTablist_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
4
+ export declare class OccitaneTablist extends OccitaneTablist_base {
4
5
  constructor();
5
6
  static styles: import('lit').CSSResult;
6
7
  private onTabSelected;
7
8
  protected firstUpdated(): void;
8
9
  protected render(): import('lit').TemplateResult<1>;
9
10
  }
11
+ export {};
@@ -2,7 +2,8 @@ import { LitElement } from 'lit';
2
2
 
3
3
  type TagType = "" | "nostock" | "lowstock" | "instock" | "percentage" | "eyebrow";
4
4
  type bgstyle = "background-emphasis" | "background-white";
5
- export declare class OccitaneTag extends LitElement {
5
+ declare const OccitaneTag_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
6
+ export declare class OccitaneTag extends OccitaneTag_base {
6
7
  static styles: import('lit').CSSResult;
7
8
  type: TagType;
8
9
  bgstyle: bgstyle;
@@ -4,7 +4,8 @@ type ThumbnailItem = {
4
4
  src: string;
5
5
  type?: "image" | "video";
6
6
  };
7
- export declare class ThumbnailNavigation extends LitElement {
7
+ declare const ThumbnailNavigation_base: import('../behaviors/mixin').MixinReturn<typeof LitElement>;
8
+ export declare class ThumbnailNavigation extends ThumbnailNavigation_base {
8
9
  thumbnails: ThumbnailItem[];
9
10
  activeIndex: number;
10
11
  disabledIndexes: number[];
@@ -3,7 +3,8 @@ import { LitElement } from 'lit';
3
3
  type verticalanchor = "top" | "bottom";
4
4
  type horizontalanchor = "left" | "center" | "right";
5
5
  type animationaxis = "vertical" | "horizontal";
6
- export declare class OccitaneToast extends LitElement {
6
+ declare const OccitaneToast_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
7
+ export declare class OccitaneToast extends OccitaneToast_base {
7
8
  icon: string;
8
9
  text: string;
9
10
  verticalanchor: verticalanchor;
@@ -1,7 +1,8 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
3
  type TooltipType = "top" | "bottom" | "left" | "right";
4
- export declare class OccitaneTooltip extends LitElement {
4
+ declare const OccitaneTooltip_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
5
+ export declare class OccitaneTooltip extends OccitaneTooltip_base {
5
6
  static styles: import('lit').CSSResult;
6
7
  type: TooltipType;
7
8
  text: string;
@@ -1,7 +1,8 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
3
  type Status = "empty" | "filled";
4
- export declare class OccitaneWishlistButton extends LitElement {
4
+ declare const OccitaneWishlistButton_base: import('../behaviors/mixin.js').MixinReturn<typeof LitElement>;
5
+ export declare class OccitaneWishlistButton extends OccitaneWishlistButton_base {
5
6
  static styles: import('lit').CSSResult;
6
7
  status: Status;
7
8
  icon: string;