@aracna/react 1.0.30 → 1.0.31

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.
@@ -1,61 +1,61 @@
1
1
  import type { ElementComponentProps } from './types.js';
2
2
  import type { AriaTooltipElementAttributes, AriaTooltipElementEventMap, AriaTooltipArrowElementAttributes, AriaTooltipArrowElementEventMap, AriaTooltipContentElementAttributes, AriaTooltipContentElementEventMap, AriaTooltipTriggerElementAttributes, AriaTooltipTriggerElementEventMap } from '@aracna/web';
3
- import type { AriaTooltipElement, AriaTooltipArrowElement, AriaTooltipContentElement, AriaTooltipTriggerElement } from '@aracna/web-components/elements/aria/aria-tooltip-element.js';
3
+ import type { AriaTooltipElement, AriaTooltipArrowElement, AriaTooltipContentElement, AriaTooltipTriggerElement } from '@aracna/web-components/elements/aria/aria-tooltip-element';
4
4
  export type AriaTooltipProps = ElementComponentProps<AriaTooltipElement, AriaTooltipElementAttributes, AriaTooltipElementEventMap>;
5
5
  export type AriaTooltipArrowProps = ElementComponentProps<AriaTooltipArrowElement, AriaTooltipArrowElementAttributes, AriaTooltipArrowElementEventMap>;
6
6
  export type AriaTooltipContentProps = ElementComponentProps<AriaTooltipContentElement, AriaTooltipContentElementAttributes, AriaTooltipContentElementEventMap>;
7
7
  export type AriaTooltipTriggerProps = ElementComponentProps<AriaTooltipTriggerElement, AriaTooltipTriggerElementAttributes, AriaTooltipTriggerElementEventMap>;
8
8
  import type { AriaTabsElementAttributes, AriaTabsElementEventMap, AriaTabsPanelElementAttributes, AriaTabsPanelElementEventMap, AriaTabsTabElementAttributes, AriaTabsTabElementEventMap } from '@aracna/web';
9
- import type { AriaTabsElement, AriaTabsPanelElement, AriaTabsTabElement } from '@aracna/web-components/elements/aria/aria-tabs-element.js';
9
+ import type { AriaTabsElement, AriaTabsPanelElement, AriaTabsTabElement } from '@aracna/web-components/elements/aria/aria-tabs-element';
10
10
  export type AriaTabsProps = ElementComponentProps<AriaTabsElement, AriaTabsElementAttributes, AriaTabsElementEventMap>;
11
11
  export type AriaTabsPanelProps = ElementComponentProps<AriaTabsPanelElement, AriaTabsPanelElementAttributes, AriaTabsPanelElementEventMap>;
12
12
  export type AriaTabsTabProps = ElementComponentProps<AriaTabsTabElement, AriaTabsTabElementAttributes, AriaTabsTabElementEventMap>;
13
13
  import type { AriaSwitchElementAttributes, AriaSwitchElementEventMap } from '@aracna/web';
14
- import type { AriaSwitchElement } from '@aracna/web-components/elements/aria/aria-switch-element.js';
14
+ import type { AriaSwitchElement } from '@aracna/web-components/elements/aria/aria-switch-element';
15
15
  export type AriaSwitchProps = ElementComponentProps<AriaSwitchElement, AriaSwitchElementAttributes, AriaSwitchElementEventMap>;
16
16
  import type { AriaSliderElementAttributes, AriaSliderElementEventMap, AriaSliderThumbElementAttributes, AriaSliderThumbElementEventMap } from '@aracna/web';
17
- import type { AriaSliderElement, AriaSliderThumbElement } from '@aracna/web-components/elements/aria/aria-slider-element.js';
17
+ import type { AriaSliderElement, AriaSliderThumbElement } from '@aracna/web-components/elements/aria/aria-slider-element';
18
18
  export type AriaSliderProps = ElementComponentProps<AriaSliderElement, AriaSliderElementAttributes, AriaSliderElementEventMap>;
19
19
  export type AriaSliderThumbProps = ElementComponentProps<AriaSliderThumbElement, AriaSliderThumbElementAttributes, AriaSliderThumbElementEventMap>;
20
20
  import type { AriaRadioButtonElementAttributes, AriaRadioButtonElementEventMap, AriaRadioGroupElementAttributes, AriaRadioGroupElementEventMap } from '@aracna/web';
21
- import type { AriaRadioButtonElement, AriaRadioGroupElement } from '@aracna/web-components/elements/aria/aria-radio-group-element.js';
21
+ import type { AriaRadioButtonElement, AriaRadioGroupElement } from '@aracna/web-components/elements/aria/aria-radio-group-element';
22
22
  export type AriaRadioButtonProps = ElementComponentProps<AriaRadioButtonElement, AriaRadioButtonElementAttributes, AriaRadioButtonElementEventMap>;
23
23
  export type AriaRadioGroupProps = ElementComponentProps<AriaRadioGroupElement, AriaRadioGroupElementAttributes, AriaRadioGroupElementEventMap>;
24
24
  import type { AriaMeterElementAttributes, AriaMeterElementEventMap } from '@aracna/web';
25
- import type { AriaMeterElement } from '@aracna/web-components/elements/aria/aria-meter-element.js';
25
+ import type { AriaMeterElement } from '@aracna/web-components/elements/aria/aria-meter-element';
26
26
  export type AriaMeterProps = ElementComponentProps<AriaMeterElement, AriaMeterElementAttributes, AriaMeterElementEventMap>;
27
27
  import type { AriaMenuElementAttributes, AriaMenuElementEventMap, AriaMenuButtonElementAttributes, AriaMenuButtonElementEventMap, AriaMenuItemElementAttributes, AriaMenuItemElementEventMap, AriaMenuSubMenuElementAttributes, AriaMenuSubMenuElementEventMap } from '@aracna/web';
28
- import type { AriaMenuElement, AriaMenuButtonElement, AriaMenuItemElement, AriaMenuSubMenuElement } from '@aracna/web-components/elements/aria/aria-menu-element.js';
28
+ import type { AriaMenuElement, AriaMenuButtonElement, AriaMenuItemElement, AriaMenuSubMenuElement } from '@aracna/web-components/elements/aria/aria-menu-element';
29
29
  export type AriaMenuProps = ElementComponentProps<AriaMenuElement, AriaMenuElementAttributes<AriaMenuItemElement>, AriaMenuElementEventMap>;
30
30
  export type AriaMenuButtonProps = ElementComponentProps<AriaMenuButtonElement, AriaMenuButtonElementAttributes, AriaMenuButtonElementEventMap>;
31
31
  export type AriaMenuItemProps = ElementComponentProps<AriaMenuItemElement, AriaMenuItemElementAttributes, AriaMenuItemElementEventMap>;
32
32
  export type AriaMenuSubMenuProps = ElementComponentProps<AriaMenuSubMenuElement, AriaMenuSubMenuElementAttributes, AriaMenuSubMenuElementEventMap>;
33
33
  import type { AriaListBoxElementAttributes, AriaListBoxElementEventMap, AriaListBoxOptionElementAttributes, AriaListBoxOptionElementEventMap } from '@aracna/web';
34
- import type { AriaListBoxElement, AriaListBoxOptionElement } from '@aracna/web-components/elements/aria/aria-list-box-element.js';
34
+ import type { AriaListBoxElement, AriaListBoxOptionElement } from '@aracna/web-components/elements/aria/aria-list-box-element';
35
35
  export type AriaListBoxProps = ElementComponentProps<AriaListBoxElement, AriaListBoxElementAttributes<AriaListBoxOptionElement>, AriaListBoxElementEventMap>;
36
36
  export type AriaListBoxOptionProps = ElementComponentProps<AriaListBoxOptionElement, AriaListBoxOptionElementAttributes, AriaListBoxOptionElementEventMap>;
37
37
  import type { AriaLinkElementAttributes, AriaLinkElementEventMap } from '@aracna/web';
38
- import type { AriaLinkElement } from '@aracna/web-components/elements/aria/aria-link-element.js';
38
+ import type { AriaLinkElement } from '@aracna/web-components/elements/aria/aria-link-element';
39
39
  export type AriaLinkProps = ElementComponentProps<AriaLinkElement, AriaLinkElementAttributes, AriaLinkElementEventMap>;
40
40
  import type { AriaFeedElementAttributes, AriaFeedElementEventMap, AriaFeedArticleElementAttributes, AriaFeedArticleElementEventMap, AriaFeedArticleDescriptionElementAttributes, AriaFeedArticleDescriptionElementEventMap, AriaFeedArticleLabelElementAttributes, AriaFeedArticleLabelElementEventMap } from '@aracna/web';
41
- import type { AriaFeedElement, AriaFeedArticleElement, AriaFeedArticleDescriptionElement, AriaFeedArticleLabelElement } from '@aracna/web-components/elements/aria/aria-feed-element.js';
41
+ import type { AriaFeedElement, AriaFeedArticleElement, AriaFeedArticleDescriptionElement, AriaFeedArticleLabelElement } from '@aracna/web-components/elements/aria/aria-feed-element';
42
42
  export type AriaFeedProps = ElementComponentProps<AriaFeedElement, AriaFeedElementAttributes, AriaFeedElementEventMap>;
43
43
  export type AriaFeedArticleProps = ElementComponentProps<AriaFeedArticleElement, AriaFeedArticleElementAttributes, AriaFeedArticleElementEventMap>;
44
44
  export type AriaFeedArticleDescriptionProps = ElementComponentProps<AriaFeedArticleDescriptionElement, AriaFeedArticleDescriptionElementAttributes, AriaFeedArticleDescriptionElementEventMap>;
45
45
  export type AriaFeedArticleLabelProps = ElementComponentProps<AriaFeedArticleLabelElement, AriaFeedArticleLabelElementAttributes, AriaFeedArticleLabelElementEventMap>;
46
46
  import type { AriaDisclosureElementAttributes, AriaDisclosureElementEventMap, AriaDisclosureButtonElementAttributes, AriaDisclosureButtonElementEventMap, AriaDisclosurePanelElementAttributes, AriaDisclosurePanelElementEventMap, AriaDisclosureSectionElementAttributes, AriaDisclosureSectionElementEventMap } from '@aracna/web';
47
- import type { AriaDisclosureElement, AriaDisclosureButtonElement, AriaDisclosurePanelElement, AriaDisclosureSectionElement } from '@aracna/web-components/elements/aria/aria-disclosure-element.js';
47
+ import type { AriaDisclosureElement, AriaDisclosureButtonElement, AriaDisclosurePanelElement, AriaDisclosureSectionElement } from '@aracna/web-components/elements/aria/aria-disclosure-element';
48
48
  export type AriaDisclosureProps = ElementComponentProps<AriaDisclosureElement, AriaDisclosureElementAttributes, AriaDisclosureElementEventMap>;
49
49
  export type AriaDisclosureButtonProps = ElementComponentProps<AriaDisclosureButtonElement, AriaDisclosureButtonElementAttributes, AriaDisclosureButtonElementEventMap>;
50
50
  export type AriaDisclosurePanelProps = ElementComponentProps<AriaDisclosurePanelElement, AriaDisclosurePanelElementAttributes, AriaDisclosurePanelElementEventMap>;
51
51
  export type AriaDisclosureSectionProps = ElementComponentProps<AriaDisclosureSectionElement, AriaDisclosureSectionElementAttributes, AriaDisclosureSectionElementEventMap>;
52
52
  import type { AriaDialogElementAttributes, AriaDialogElementEventMap, AriaDialogDescriptionElementAttributes, AriaDialogDescriptionElementEventMap, AriaDialogLabelElementAttributes, AriaDialogLabelElementEventMap } from '@aracna/web';
53
- import type { AriaDialogElement, AriaDialogDescriptionElement, AriaDialogLabelElement } from '@aracna/web-components/elements/aria/aria-dialog-element.js';
53
+ import type { AriaDialogElement, AriaDialogDescriptionElement, AriaDialogLabelElement } from '@aracna/web-components/elements/aria/aria-dialog-element';
54
54
  export type AriaDialogProps = ElementComponentProps<AriaDialogElement, AriaDialogElementAttributes, AriaDialogElementEventMap>;
55
55
  export type AriaDialogDescriptionProps = ElementComponentProps<AriaDialogDescriptionElement, AriaDialogDescriptionElementAttributes, AriaDialogDescriptionElementEventMap>;
56
56
  export type AriaDialogLabelProps = ElementComponentProps<AriaDialogLabelElement, AriaDialogLabelElementAttributes, AriaDialogLabelElementEventMap>;
57
57
  import type { AriaComboBoxElementAttributes, AriaComboBoxElementEventMap, AriaComboBoxButtonElementAttributes, AriaComboBoxButtonElementEventMap, AriaComboBoxGroupElementAttributes, AriaComboBoxGroupElementEventMap, AriaComboBoxInputElementAttributes, AriaComboBoxInputElementEventMap, AriaComboBoxListElementAttributes, AriaComboBoxListElementEventMap, AriaComboBoxOptionElementAttributes, AriaComboBoxOptionElementEventMap } from '@aracna/web';
58
- import type { AriaComboBoxElement, AriaComboBoxButtonElement, AriaComboBoxGroupElement, AriaComboBoxInputElement, AriaComboBoxListElement, AriaComboBoxOptionElement } from '@aracna/web-components/elements/aria/aria-combo-box-element.js';
58
+ import type { AriaComboBoxElement, AriaComboBoxButtonElement, AriaComboBoxGroupElement, AriaComboBoxInputElement, AriaComboBoxListElement, AriaComboBoxOptionElement } from '@aracna/web-components/elements/aria/aria-combo-box-element';
59
59
  export type AriaComboBoxProps = ElementComponentProps<AriaComboBoxElement, AriaComboBoxElementAttributes<AriaComboBoxOptionElement>, AriaComboBoxElementEventMap>;
60
60
  export type AriaComboBoxButtonProps = ElementComponentProps<AriaComboBoxButtonElement, AriaComboBoxButtonElementAttributes, AriaComboBoxButtonElementEventMap>;
61
61
  export type AriaComboBoxGroupProps = ElementComponentProps<AriaComboBoxGroupElement, AriaComboBoxGroupElementAttributes, AriaComboBoxGroupElementEventMap>;
@@ -63,10 +63,10 @@ export type AriaComboBoxInputProps = ElementComponentProps<AriaComboBoxInputElem
63
63
  export type AriaComboBoxListProps = ElementComponentProps<AriaComboBoxListElement, AriaComboBoxListElementAttributes, AriaComboBoxListElementEventMap>;
64
64
  export type AriaComboBoxOptionProps = ElementComponentProps<AriaComboBoxOptionElement, AriaComboBoxOptionElementAttributes, AriaComboBoxOptionElementEventMap>;
65
65
  import type { AriaCheckBoxElementAttributes, AriaCheckBoxElementEventMap } from '@aracna/web';
66
- import type { AriaCheckBoxElement } from '@aracna/web-components/elements/aria/aria-check-box-element.js';
66
+ import type { AriaCheckBoxElement } from '@aracna/web-components/elements/aria/aria-check-box-element';
67
67
  export type AriaCheckBoxProps = ElementComponentProps<AriaCheckBoxElement, AriaCheckBoxElementAttributes, AriaCheckBoxElementEventMap>;
68
68
  import type { AriaCarouselElementAttributes, AriaCarouselElementEventMap, AriaCarouselNextSlideControlElementAttributes, AriaCarouselNextSlideControlElementEventMap, AriaCarouselPreviousSlideControlElementAttributes, AriaCarouselPreviousSlideControlElementEventMap, AriaCarouselRotationControlElementAttributes, AriaCarouselRotationControlElementEventMap, AriaCarouselSlideElementAttributes, AriaCarouselSlideElementEventMap, AriaCarouselSlidesElementAttributes, AriaCarouselSlidesElementEventMap, AriaCarouselTabElementAttributes, AriaCarouselTabElementEventMap, AriaCarouselTabsElementAttributes, AriaCarouselTabsElementEventMap } from '@aracna/web';
69
- import type { AriaCarouselElement, AriaCarouselNextSlideControlElement, AriaCarouselPreviousSlideControlElement, AriaCarouselRotationControlElement, AriaCarouselSlideElement, AriaCarouselSlidesElement, AriaCarouselTabElement, AriaCarouselTabsElement } from '@aracna/web-components/elements/aria/aria-carousel-element.js';
69
+ import type { AriaCarouselElement, AriaCarouselNextSlideControlElement, AriaCarouselPreviousSlideControlElement, AriaCarouselRotationControlElement, AriaCarouselSlideElement, AriaCarouselSlidesElement, AriaCarouselTabElement, AriaCarouselTabsElement } from '@aracna/web-components/elements/aria/aria-carousel-element';
70
70
  export type AriaCarouselProps = ElementComponentProps<AriaCarouselElement, AriaCarouselElementAttributes, AriaCarouselElementEventMap>;
71
71
  export type AriaCarouselNextSlideControlProps = ElementComponentProps<AriaCarouselNextSlideControlElement, AriaCarouselNextSlideControlElementAttributes, AriaCarouselNextSlideControlElementEventMap>;
72
72
  export type AriaCarouselPreviousSlideControlProps = ElementComponentProps<AriaCarouselPreviousSlideControlElement, AriaCarouselPreviousSlideControlElementAttributes, AriaCarouselPreviousSlideControlElementEventMap>;
@@ -76,55 +76,55 @@ export type AriaCarouselSlidesProps = ElementComponentProps<AriaCarouselSlidesEl
76
76
  export type AriaCarouselTabProps = ElementComponentProps<AriaCarouselTabElement, AriaCarouselTabElementAttributes, AriaCarouselTabElementEventMap>;
77
77
  export type AriaCarouselTabsProps = ElementComponentProps<AriaCarouselTabsElement, AriaCarouselTabsElementAttributes, AriaCarouselTabsElementEventMap>;
78
78
  import type { AriaButtonElementAttributes, AriaButtonElementEventMap } from '@aracna/web';
79
- import type { AriaButtonElement } from '@aracna/web-components/elements/aria/aria-button-element.js';
79
+ import type { AriaButtonElement } from '@aracna/web-components/elements/aria/aria-button-element';
80
80
  export type AriaButtonProps = ElementComponentProps<AriaButtonElement, AriaButtonElementAttributes, AriaButtonElementEventMap>;
81
81
  import type { AriaBreadcrumbElementAttributes, AriaBreadcrumbElementEventMap, AriaBreadcrumbItemElementAttributes, AriaBreadcrumbItemElementEventMap, AriaBreadcrumbListElementAttributes, AriaBreadcrumbListElementEventMap } from '@aracna/web';
82
- import type { AriaBreadcrumbElement, AriaBreadcrumbItemElement, AriaBreadcrumbListElement } from '@aracna/web-components/elements/aria/aria-breadcrumb-element.js';
82
+ import type { AriaBreadcrumbElement, AriaBreadcrumbItemElement, AriaBreadcrumbListElement } from '@aracna/web-components/elements/aria/aria-breadcrumb-element';
83
83
  export type AriaBreadcrumbProps = ElementComponentProps<AriaBreadcrumbElement, AriaBreadcrumbElementAttributes, AriaBreadcrumbElementEventMap>;
84
84
  export type AriaBreadcrumbItemProps = ElementComponentProps<AriaBreadcrumbItemElement, AriaBreadcrumbItemElementAttributes, AriaBreadcrumbItemElementEventMap>;
85
85
  export type AriaBreadcrumbListProps = ElementComponentProps<AriaBreadcrumbListElement, AriaBreadcrumbListElementAttributes, AriaBreadcrumbListElementEventMap>;
86
86
  import type { AriaAlertElementAttributes, AriaAlertElementEventMap } from '@aracna/web';
87
- import type { AriaAlertElement } from '@aracna/web-components/elements/aria/aria-alert-element.js';
87
+ import type { AriaAlertElement } from '@aracna/web-components/elements/aria/aria-alert-element';
88
88
  export type AriaAlertProps = ElementComponentProps<AriaAlertElement, AriaAlertElementAttributes, AriaAlertElementEventMap>;
89
89
  import type { AriaAlertDialogElementAttributes, AriaAlertDialogElementEventMap, AriaAlertDialogDescriptionElementAttributes, AriaAlertDialogDescriptionElementEventMap, AriaAlertDialogLabelElementAttributes, AriaAlertDialogLabelElementEventMap } from '@aracna/web';
90
- import type { AriaAlertDialogElement, AriaAlertDialogDescriptionElement, AriaAlertDialogLabelElement } from '@aracna/web-components/elements/aria/aria-alert-dialog-element.js';
90
+ import type { AriaAlertDialogElement, AriaAlertDialogDescriptionElement, AriaAlertDialogLabelElement } from '@aracna/web-components/elements/aria/aria-alert-dialog-element';
91
91
  export type AriaAlertDialogProps = ElementComponentProps<AriaAlertDialogElement, AriaAlertDialogElementAttributes, AriaAlertDialogElementEventMap>;
92
92
  export type AriaAlertDialogDescriptionProps = ElementComponentProps<AriaAlertDialogDescriptionElement, AriaAlertDialogDescriptionElementAttributes, AriaAlertDialogDescriptionElementEventMap>;
93
93
  export type AriaAlertDialogLabelProps = ElementComponentProps<AriaAlertDialogLabelElement, AriaAlertDialogLabelElementAttributes, AriaAlertDialogLabelElementEventMap>;
94
94
  import type { AriaAccordionElementAttributes, AriaAccordionElementEventMap, AriaAccordionButtonElementAttributes, AriaAccordionButtonElementEventMap, AriaAccordionHeaderElementAttributes, AriaAccordionHeaderElementEventMap, AriaAccordionPanelElementAttributes, AriaAccordionPanelElementEventMap, AriaAccordionSectionElementAttributes, AriaAccordionSectionElementEventMap } from '@aracna/web';
95
- import type { AriaAccordionElement, AriaAccordionButtonElement, AriaAccordionHeaderElement, AriaAccordionPanelElement, AriaAccordionSectionElement } from '@aracna/web-components/elements/aria/aria-accordion-element.js';
95
+ import type { AriaAccordionElement, AriaAccordionButtonElement, AriaAccordionHeaderElement, AriaAccordionPanelElement, AriaAccordionSectionElement } from '@aracna/web-components/elements/aria/aria-accordion-element';
96
96
  export type AriaAccordionProps = ElementComponentProps<AriaAccordionElement, AriaAccordionElementAttributes, AriaAccordionElementEventMap>;
97
97
  export type AriaAccordionButtonProps = ElementComponentProps<AriaAccordionButtonElement, AriaAccordionButtonElementAttributes, AriaAccordionButtonElementEventMap>;
98
98
  export type AriaAccordionHeaderProps = ElementComponentProps<AriaAccordionHeaderElement, AriaAccordionHeaderElementAttributes, AriaAccordionHeaderElementEventMap>;
99
99
  export type AriaAccordionPanelProps = ElementComponentProps<AriaAccordionPanelElement, AriaAccordionPanelElementAttributes, AriaAccordionPanelElementEventMap>;
100
100
  export type AriaAccordionSectionProps = ElementComponentProps<AriaAccordionSectionElement, AriaAccordionSectionElementAttributes, AriaAccordionSectionElementEventMap>;
101
101
  import type { TooltipElementAttributes, TooltipElementEventMap, TooltipArrowElementAttributes, TooltipArrowElementEventMap, TooltipContentElementAttributes, TooltipContentElementEventMap, TooltipTriggerElementAttributes, TooltipTriggerElementEventMap } from '@aracna/web';
102
- import type { TooltipElement, TooltipArrowElement, TooltipContentElement, TooltipTriggerElement } from '@aracna/web-components/elements/data/tooltip-element.js';
102
+ import type { TooltipElement, TooltipArrowElement, TooltipContentElement, TooltipTriggerElement } from '@aracna/web-components/elements/data/tooltip-element';
103
103
  export type TooltipProps = ElementComponentProps<TooltipElement, TooltipElementAttributes, TooltipElementEventMap>;
104
104
  export type TooltipArrowProps = ElementComponentProps<TooltipArrowElement, TooltipArrowElementAttributes, TooltipArrowElementEventMap>;
105
105
  export type TooltipContentProps = ElementComponentProps<TooltipContentElement, TooltipContentElementAttributes, TooltipContentElementEventMap>;
106
106
  export type TooltipTriggerProps = ElementComponentProps<TooltipTriggerElement, TooltipTriggerElementAttributes, TooltipTriggerElementEventMap>;
107
107
  import type { ListElementAttributes, ListElementEventMap, ListItemElementAttributes, ListItemElementEventMap } from '@aracna/web';
108
- import type { ListElement, ListItemElement } from '@aracna/web-components/elements/data/list-element.js';
108
+ import type { ListElement, ListItemElement } from '@aracna/web-components/elements/data/list-element';
109
109
  export type ListProps = ElementComponentProps<ListElement, ListElementAttributes, ListElementEventMap>;
110
110
  export type ListItemProps = ElementComponentProps<ListItemElement, ListItemElementAttributes, ListItemElementEventMap>;
111
111
  import type { ImageElementAttributes, ImageElementEventMap } from '@aracna/web';
112
- import type { ImageElement } from '@aracna/web-components/elements/data/image-element.js';
112
+ import type { ImageElement } from '@aracna/web-components/elements/data/image-element';
113
113
  export type ImageProps = ElementComponentProps<ImageElement, ImageElementAttributes, ImageElementEventMap>;
114
114
  import type { IconElementAttributes, IconElementEventMap } from '@aracna/web';
115
- import type { IconElement } from '@aracna/web-components/elements/data/icon-element.js';
115
+ import type { IconElement } from '@aracna/web-components/elements/data/icon-element';
116
116
  export type IconProps = ElementComponentProps<IconElement, IconElementAttributes, IconElementEventMap>;
117
117
  import type { FeedElementAttributes, FeedElementEventMap, FeedArticleElementAttributes, FeedArticleElementEventMap, FeedArticleDescriptionElementAttributes, FeedArticleDescriptionElementEventMap, FeedArticleLabelElementAttributes, FeedArticleLabelElementEventMap } from '@aracna/web';
118
- import type { FeedElement, FeedArticleElement, FeedArticleDescriptionElement, FeedArticleLabelElement } from '@aracna/web-components/elements/data/feed-element.js';
118
+ import type { FeedElement, FeedArticleElement, FeedArticleDescriptionElement, FeedArticleLabelElement } from '@aracna/web-components/elements/data/feed-element';
119
119
  export type FeedProps = ElementComponentProps<FeedElement, FeedElementAttributes, FeedElementEventMap>;
120
120
  export type FeedArticleProps = ElementComponentProps<FeedArticleElement, FeedArticleElementAttributes, FeedArticleElementEventMap>;
121
121
  export type FeedArticleDescriptionProps = ElementComponentProps<FeedArticleDescriptionElement, FeedArticleDescriptionElementAttributes, FeedArticleDescriptionElementEventMap>;
122
122
  export type FeedArticleLabelProps = ElementComponentProps<FeedArticleLabelElement, FeedArticleLabelElementAttributes, FeedArticleLabelElementEventMap>;
123
123
  import type { ChipElementAttributes, ChipElementEventMap } from '@aracna/web';
124
- import type { ChipElement } from '@aracna/web-components/elements/data/chip-element.js';
124
+ import type { ChipElement } from '@aracna/web-components/elements/data/chip-element';
125
125
  export type ChipProps = ElementComponentProps<ChipElement, ChipElementAttributes, ChipElementEventMap>;
126
126
  import type { CarouselElementAttributes, CarouselElementEventMap, CarouselNextSlideControlElementAttributes, CarouselNextSlideControlElementEventMap, CarouselPreviousSlideControlElementAttributes, CarouselPreviousSlideControlElementEventMap, CarouselRotationControlElementAttributes, CarouselRotationControlElementEventMap, CarouselSlideElementAttributes, CarouselSlideElementEventMap, CarouselSlidesElementAttributes, CarouselSlidesElementEventMap, CarouselTabElementAttributes, CarouselTabElementEventMap, CarouselTabsElementAttributes, CarouselTabsElementEventMap } from '@aracna/web';
127
- import type { CarouselElement, CarouselNextSlideControlElement, CarouselPreviousSlideControlElement, CarouselRotationControlElement, CarouselSlideElement, CarouselSlidesElement, CarouselTabElement, CarouselTabsElement } from '@aracna/web-components/elements/data/carousel-element.js';
127
+ import type { CarouselElement, CarouselNextSlideControlElement, CarouselPreviousSlideControlElement, CarouselRotationControlElement, CarouselSlideElement, CarouselSlidesElement, CarouselTabElement, CarouselTabsElement } from '@aracna/web-components/elements/data/carousel-element';
128
128
  export type CarouselProps = ElementComponentProps<CarouselElement, CarouselElementAttributes, CarouselElementEventMap>;
129
129
  export type CarouselNextSlideControlProps = ElementComponentProps<CarouselNextSlideControlElement, CarouselNextSlideControlElementAttributes, CarouselNextSlideControlElementEventMap>;
130
130
  export type CarouselPreviousSlideControlProps = ElementComponentProps<CarouselPreviousSlideControlElement, CarouselPreviousSlideControlElementAttributes, CarouselPreviousSlideControlElementEventMap>;
@@ -134,39 +134,79 @@ export type CarouselSlidesProps = ElementComponentProps<CarouselSlidesElement, C
134
134
  export type CarouselTabProps = ElementComponentProps<CarouselTabElement, CarouselTabElementAttributes, CarouselTabElementEventMap>;
135
135
  export type CarouselTabsProps = ElementComponentProps<CarouselTabsElement, CarouselTabsElementAttributes, CarouselTabsElementEventMap>;
136
136
  import type { BadgeElementAttributes, BadgeElementEventMap } from '@aracna/web';
137
- import type { BadgeElement } from '@aracna/web-components/elements/data/badge-element.js';
137
+ import type { BadgeElement } from '@aracna/web-components/elements/data/badge-element';
138
138
  export type BadgeProps = ElementComponentProps<BadgeElement, BadgeElementAttributes, BadgeElementEventMap>;
139
139
  import type { AvatarElementAttributes, AvatarElementEventMap } from '@aracna/web';
140
- import type { AvatarElement } from '@aracna/web-components/elements/data/avatar-element.js';
140
+ import type { AvatarElement } from '@aracna/web-components/elements/data/avatar-element';
141
141
  export type AvatarProps = ElementComponentProps<AvatarElement, AvatarElementAttributes, AvatarElementEventMap>;
142
+ import type { DividerElementAttributes, DividerElementEventMap } from '@aracna/web';
143
+ import type { DividerElement } from '@aracna/web-components/elements/layout/divider-element';
144
+ export type DividerProps = ElementComponentProps<DividerElement, DividerElementAttributes, DividerElementEventMap>;
145
+ import type { TabsElementAttributes, TabsElementEventMap, TabsPanelElementAttributes, TabsPanelElementEventMap, TabsTabElementAttributes, TabsTabElementEventMap } from '@aracna/web';
146
+ import type { TabsElement, TabsPanelElement, TabsTabElement } from '@aracna/web-components/elements/navigation/tabs-element';
147
+ export type TabsProps = ElementComponentProps<TabsElement, TabsElementAttributes, TabsElementEventMap>;
148
+ export type TabsPanelProps = ElementComponentProps<TabsPanelElement, TabsPanelElementAttributes, TabsPanelElementEventMap>;
149
+ export type TabsTabProps = ElementComponentProps<TabsTabElement, TabsTabElementAttributes, TabsTabElementEventMap>;
150
+ import type { NavigationRailElementAttributes, NavigationRailElementEventMap, NavigationRailItemElementAttributes, NavigationRailItemElementEventMap } from '@aracna/web';
151
+ import type { NavigationRailElement, NavigationRailItemElement } from '@aracna/web-components/elements/navigation/navigation-rail-element';
152
+ export type NavigationRailProps<T extends NavigationRailItemElementAttributes = NavigationRailItemElementAttributes> = ElementComponentProps<NavigationRailElement, NavigationRailElementAttributes<T>, NavigationRailElementEventMap>;
153
+ export type NavigationRailItemProps = ElementComponentProps<NavigationRailItemElement, NavigationRailItemElementAttributes, NavigationRailItemElementEventMap>;
154
+ import type { NavigationBarElementAttributes, NavigationBarElementEventMap, NavigationBarItemElementAttributes, NavigationBarItemElementEventMap } from '@aracna/web';
155
+ import type { NavigationBarElement, NavigationBarItemElement } from '@aracna/web-components/elements/navigation/navigation-bar-element';
156
+ export type NavigationBarProps<T extends NavigationBarItemElementAttributes = NavigationBarItemElementAttributes> = ElementComponentProps<NavigationBarElement, NavigationBarElementAttributes<T>, NavigationBarElementEventMap>;
157
+ export type NavigationBarItemProps = ElementComponentProps<NavigationBarItemElement, NavigationBarItemElementAttributes, NavigationBarItemElementEventMap>;
158
+ import type { MenuElementAttributes, MenuElementEventMap, MenuButtonElementAttributes, MenuButtonElementEventMap, MenuItemElementAttributes, MenuItemElementEventMap, MenuSubMenuElementAttributes, MenuSubMenuElementEventMap } from '@aracna/web';
159
+ import type { MenuElement, MenuButtonElement, MenuItemElement, MenuSubMenuElement } from '@aracna/web-components/elements/navigation/menu-element';
160
+ export type MenuProps = ElementComponentProps<MenuElement, MenuElementAttributes<MenuItemElement>, MenuElementEventMap>;
161
+ export type MenuButtonProps = ElementComponentProps<MenuButtonElement, MenuButtonElementAttributes, MenuButtonElementEventMap>;
162
+ export type MenuItemProps = ElementComponentProps<MenuItemElement, MenuItemElementAttributes, MenuItemElementEventMap>;
163
+ export type MenuSubMenuProps = ElementComponentProps<MenuSubMenuElement, MenuSubMenuElementAttributes, MenuSubMenuElementEventMap>;
164
+ import type { BreadcrumbElementAttributes, BreadcrumbElementEventMap, BreadcrumbItemElementAttributes, BreadcrumbItemElementEventMap, BreadcrumbListElementAttributes, BreadcrumbListElementEventMap } from '@aracna/web';
165
+ import type { BreadcrumbElement, BreadcrumbItemElement, BreadcrumbListElement } from '@aracna/web-components/elements/navigation/breadcrumb-element';
166
+ export type BreadcrumbProps = ElementComponentProps<BreadcrumbElement, BreadcrumbElementAttributes, BreadcrumbElementEventMap>;
167
+ export type BreadcrumbItemProps = ElementComponentProps<BreadcrumbItemElement, BreadcrumbItemElementAttributes, BreadcrumbItemElementEventMap>;
168
+ export type BreadcrumbListProps = ElementComponentProps<BreadcrumbListElement, BreadcrumbListElementAttributes, BreadcrumbListElementEventMap>;
169
+ import type { DisclosureElementAttributes, DisclosureElementEventMap, DisclosureButtonElementAttributes, DisclosureButtonElementEventMap, DisclosurePanelElementAttributes, DisclosurePanelElementEventMap, DisclosureSectionElementAttributes, DisclosureSectionElementEventMap } from '@aracna/web';
170
+ import type { DisclosureElement, DisclosureButtonElement, DisclosurePanelElement, DisclosureSectionElement } from '@aracna/web-components/elements/surface/disclosure-element';
171
+ export type DisclosureProps = ElementComponentProps<DisclosureElement, DisclosureElementAttributes, DisclosureElementEventMap>;
172
+ export type DisclosureButtonProps = ElementComponentProps<DisclosureButtonElement, DisclosureButtonElementAttributes, DisclosureButtonElementEventMap>;
173
+ export type DisclosurePanelProps = ElementComponentProps<DisclosurePanelElement, DisclosurePanelElementAttributes, DisclosurePanelElementEventMap>;
174
+ export type DisclosureSectionProps = ElementComponentProps<DisclosureSectionElement, DisclosureSectionElementAttributes, DisclosureSectionElementEventMap>;
175
+ import type { AccordionElementAttributes, AccordionElementEventMap, AccordionButtonElementAttributes, AccordionButtonElementEventMap, AccordionHeaderElementAttributes, AccordionHeaderElementEventMap, AccordionPanelElementAttributes, AccordionPanelElementEventMap, AccordionSectionElementAttributes, AccordionSectionElementEventMap } from '@aracna/web';
176
+ import type { AccordionElement, AccordionButtonElement, AccordionHeaderElement, AccordionPanelElement, AccordionSectionElement } from '@aracna/web-components/elements/surface/accordion-element';
177
+ export type AccordionProps = ElementComponentProps<AccordionElement, AccordionElementAttributes, AccordionElementEventMap>;
178
+ export type AccordionButtonProps = ElementComponentProps<AccordionButtonElement, AccordionButtonElementAttributes, AccordionButtonElementEventMap>;
179
+ export type AccordionHeaderProps = ElementComponentProps<AccordionHeaderElement, AccordionHeaderElementAttributes, AccordionHeaderElementEventMap>;
180
+ export type AccordionPanelProps = ElementComponentProps<AccordionPanelElement, AccordionPanelElementAttributes, AccordionPanelElementEventMap>;
181
+ export type AccordionSectionProps = ElementComponentProps<AccordionSectionElement, AccordionSectionElementAttributes, AccordionSectionElementEventMap>;
142
182
  import type { MeterElementAttributes, MeterElementEventMap } from '@aracna/web';
143
- import type { MeterElement } from '@aracna/web-components/elements/feedback/meter-element.js';
183
+ import type { MeterElement } from '@aracna/web-components/elements/feedback/meter-element';
144
184
  export type MeterProps = ElementComponentProps<MeterElement, MeterElementAttributes, MeterElementEventMap>;
145
185
  import type { DialogElementAttributes, DialogElementEventMap, DialogDescriptionElementAttributes, DialogDescriptionElementEventMap, DialogLabelElementAttributes, DialogLabelElementEventMap } from '@aracna/web';
146
- import type { DialogElement, DialogDescriptionElement, DialogLabelElement } from '@aracna/web-components/elements/feedback/dialog-element.js';
186
+ import type { DialogElement, DialogDescriptionElement, DialogLabelElement } from '@aracna/web-components/elements/feedback/dialog-element';
147
187
  export type DialogProps = ElementComponentProps<DialogElement, DialogElementAttributes, DialogElementEventMap>;
148
188
  export type DialogDescriptionProps = ElementComponentProps<DialogDescriptionElement, DialogDescriptionElementAttributes, DialogDescriptionElementEventMap>;
149
189
  export type DialogLabelProps = ElementComponentProps<DialogLabelElement, DialogLabelElementAttributes, DialogLabelElementEventMap>;
150
190
  import type { AlertElementAttributes, AlertElementEventMap } from '@aracna/web';
151
- import type { AlertElement } from '@aracna/web-components/elements/feedback/alert-element.js';
191
+ import type { AlertElement } from '@aracna/web-components/elements/feedback/alert-element';
152
192
  export type AlertProps = ElementComponentProps<AlertElement, AlertElementAttributes, AlertElementEventMap>;
153
193
  import type { AlertDialogElementAttributes, AlertDialogElementEventMap, AlertDialogDescriptionElementAttributes, AlertDialogDescriptionElementEventMap, AlertDialogLabelElementAttributes, AlertDialogLabelElementEventMap } from '@aracna/web';
154
- import type { AlertDialogElement, AlertDialogDescriptionElement, AlertDialogLabelElement } from '@aracna/web-components/elements/feedback/alert-dialog-element.js';
194
+ import type { AlertDialogElement, AlertDialogDescriptionElement, AlertDialogLabelElement } from '@aracna/web-components/elements/feedback/alert-dialog-element';
155
195
  export type AlertDialogProps = ElementComponentProps<AlertDialogElement, AlertDialogElementAttributes, AlertDialogElementEventMap>;
156
196
  export type AlertDialogDescriptionProps = ElementComponentProps<AlertDialogDescriptionElement, AlertDialogDescriptionElementAttributes, AlertDialogDescriptionElementEventMap>;
157
197
  export type AlertDialogLabelProps = ElementComponentProps<AlertDialogLabelElement, AlertDialogLabelElementAttributes, AlertDialogLabelElementEventMap>;
158
198
  import type { TextAreaElementAttributes, TextAreaElementEventMap } from '@aracna/web';
159
- import type { TextAreaElement } from '@aracna/web-components/elements/input/text-area-element.js';
199
+ import type { TextAreaElement } from '@aracna/web-components/elements/input/text-area-element';
160
200
  export type TextAreaProps = ElementComponentProps<TextAreaElement, TextAreaElementAttributes, TextAreaElementEventMap>;
161
201
  import type { SwitchElementAttributes, SwitchElementEventMap } from '@aracna/web';
162
- import type { SwitchElement } from '@aracna/web-components/elements/input/switch-element.js';
202
+ import type { SwitchElement } from '@aracna/web-components/elements/input/switch-element';
163
203
  export type SwitchProps = ElementComponentProps<SwitchElement, SwitchElementAttributes, SwitchElementEventMap>;
164
204
  import type { SliderElementAttributes, SliderElementEventMap, SliderThumbElementAttributes, SliderThumbElementEventMap } from '@aracna/web';
165
- import type { SliderElement, SliderThumbElement } from '@aracna/web-components/elements/input/slider-element.js';
205
+ import type { SliderElement, SliderThumbElement } from '@aracna/web-components/elements/input/slider-element';
166
206
  export type SliderProps = ElementComponentProps<SliderElement, SliderElementAttributes, SliderElementEventMap>;
167
207
  export type SliderThumbProps = ElementComponentProps<SliderThumbElement, SliderThumbElementAttributes, SliderThumbElementEventMap>;
168
208
  import type { SelectElementAttributes, SelectElementEventMap, SelectButtonElementAttributes, SelectButtonElementEventMap, SelectGroupElementAttributes, SelectGroupElementEventMap, SelectInputElementAttributes, SelectInputElementEventMap, SelectListElementAttributes, SelectListElementEventMap, SelectOptionElementAttributes, SelectOptionElementEventMap } from '@aracna/web';
169
- import type { SelectElement, SelectButtonElement, SelectGroupElement, SelectInputElement, SelectListElement, SelectOptionElement } from '@aracna/web-components/elements/input/select-element.js';
209
+ import type { SelectElement, SelectButtonElement, SelectGroupElement, SelectInputElement, SelectListElement, SelectOptionElement } from '@aracna/web-components/elements/input/select-element';
170
210
  export type SelectProps = ElementComponentProps<SelectElement, SelectElementAttributes<SelectOptionElement>, SelectElementEventMap>;
171
211
  export type SelectButtonProps = ElementComponentProps<SelectButtonElement, SelectButtonElementAttributes, SelectButtonElementEventMap>;
172
212
  export type SelectGroupProps = ElementComponentProps<SelectGroupElement, SelectGroupElementAttributes, SelectGroupElementEventMap>;
@@ -174,64 +214,24 @@ export type SelectInputProps = ElementComponentProps<SelectInputElement, SelectI
174
214
  export type SelectListProps = ElementComponentProps<SelectListElement, SelectListElementAttributes, SelectListElementEventMap>;
175
215
  export type SelectOptionProps = ElementComponentProps<SelectOptionElement, SelectOptionElementAttributes, SelectOptionElementEventMap>;
176
216
  import type { RadioGroupElementAttributes, RadioGroupElementEventMap, RadioButtonElementAttributes, RadioButtonElementEventMap } from '@aracna/web';
177
- import type { RadioGroupElement, RadioButtonElement } from '@aracna/web-components/elements/input/radio-group-element.js';
217
+ import type { RadioGroupElement, RadioButtonElement } from '@aracna/web-components/elements/input/radio-group-element';
178
218
  export type RadioGroupProps = ElementComponentProps<RadioGroupElement, RadioGroupElementAttributes, RadioGroupElementEventMap>;
179
219
  export type RadioButtonProps = ElementComponentProps<RadioButtonElement, RadioButtonElementAttributes, RadioButtonElementEventMap>;
180
220
  import type { InputFileElementAttributes, InputFileElementEventMap } from '@aracna/web';
181
- import type { InputFileElement } from '@aracna/web-components/elements/input/input-file-element.js';
221
+ import type { InputFileElement } from '@aracna/web-components/elements/input/input-file-element';
182
222
  export type InputFileProps = ElementComponentProps<InputFileElement, InputFileElementAttributes, InputFileElementEventMap>;
183
223
  import type { InputElementAttributes, InputElementEventMap } from '@aracna/web';
184
- import type { InputElement } from '@aracna/web-components/elements/input/input-element.js';
224
+ import type { InputElement } from '@aracna/web-components/elements/input/input-element';
185
225
  export type InputProps = ElementComponentProps<InputElement, InputElementAttributes, InputElementEventMap>;
186
226
  import type { FormElementAttributes, FormElementEventMap } from '@aracna/web';
187
- import type { FormElement } from '@aracna/web-components/elements/input/form-element.js';
227
+ import type { FormElement } from '@aracna/web-components/elements/input/form-element';
188
228
  export type FormProps = ElementComponentProps<FormElement, FormElementAttributes, FormElementEventMap>;
189
229
  import type { CheckBoxElementAttributes, CheckBoxElementEventMap } from '@aracna/web';
190
- import type { CheckBoxElement } from '@aracna/web-components/elements/input/check-box-element.js';
230
+ import type { CheckBoxElement } from '@aracna/web-components/elements/input/check-box-element';
191
231
  export type CheckBoxProps = ElementComponentProps<CheckBoxElement, CheckBoxElementAttributes, CheckBoxElementEventMap>;
192
232
  import type { ButtonGroupElementAttributes, ButtonGroupElementEventMap } from '@aracna/web';
193
- import type { ButtonGroupElement } from '@aracna/web-components/elements/input/button-group-element.js';
233
+ import type { ButtonGroupElement } from '@aracna/web-components/elements/input/button-group-element';
194
234
  export type ButtonGroupProps<T extends ButtonElementAttributes = ButtonElementAttributes> = ElementComponentProps<ButtonGroupElement, ButtonGroupElementAttributes<T>, ButtonGroupElementEventMap>;
195
235
  import type { ButtonElementAttributes, ButtonElementEventMap } from '@aracna/web';
196
- import type { ButtonElement } from '@aracna/web-components/elements/input/button-element.js';
236
+ import type { ButtonElement } from '@aracna/web-components/elements/input/button-element';
197
237
  export type ButtonProps = ElementComponentProps<ButtonElement, ButtonElementAttributes, ButtonElementEventMap>;
198
- import type { DividerElementAttributes, DividerElementEventMap } from '@aracna/web';
199
- import type { DividerElement } from '@aracna/web-components/elements/layout/divider-element.js';
200
- export type DividerProps = ElementComponentProps<DividerElement, DividerElementAttributes, DividerElementEventMap>;
201
- import type { TabsElementAttributes, TabsElementEventMap, TabsPanelElementAttributes, TabsPanelElementEventMap, TabsTabElementAttributes, TabsTabElementEventMap } from '@aracna/web';
202
- import type { TabsElement, TabsPanelElement, TabsTabElement } from '@aracna/web-components/elements/navigation/tabs-element.js';
203
- export type TabsProps = ElementComponentProps<TabsElement, TabsElementAttributes, TabsElementEventMap>;
204
- export type TabsPanelProps = ElementComponentProps<TabsPanelElement, TabsPanelElementAttributes, TabsPanelElementEventMap>;
205
- export type TabsTabProps = ElementComponentProps<TabsTabElement, TabsTabElementAttributes, TabsTabElementEventMap>;
206
- import type { NavigationRailElementAttributes, NavigationRailElementEventMap, NavigationRailItemElementAttributes, NavigationRailItemElementEventMap } from '@aracna/web';
207
- import type { NavigationRailElement, NavigationRailItemElement } from '@aracna/web-components/elements/navigation/navigation-rail-element.js';
208
- export type NavigationRailProps<T extends NavigationRailItemElementAttributes = NavigationRailItemElementAttributes> = ElementComponentProps<NavigationRailElement, NavigationRailElementAttributes<T>, NavigationRailElementEventMap>;
209
- export type NavigationRailItemProps = ElementComponentProps<NavigationRailItemElement, NavigationRailItemElementAttributes, NavigationRailItemElementEventMap>;
210
- import type { NavigationBarElementAttributes, NavigationBarElementEventMap, NavigationBarItemElementAttributes, NavigationBarItemElementEventMap } from '@aracna/web';
211
- import type { NavigationBarElement, NavigationBarItemElement } from '@aracna/web-components/elements/navigation/navigation-bar-element.js';
212
- export type NavigationBarProps<T extends NavigationBarItemElementAttributes = NavigationBarItemElementAttributes> = ElementComponentProps<NavigationBarElement, NavigationBarElementAttributes<T>, NavigationBarElementEventMap>;
213
- export type NavigationBarItemProps = ElementComponentProps<NavigationBarItemElement, NavigationBarItemElementAttributes, NavigationBarItemElementEventMap>;
214
- import type { MenuElementAttributes, MenuElementEventMap, MenuButtonElementAttributes, MenuButtonElementEventMap, MenuItemElementAttributes, MenuItemElementEventMap, MenuSubMenuElementAttributes, MenuSubMenuElementEventMap } from '@aracna/web';
215
- import type { MenuElement, MenuButtonElement, MenuItemElement, MenuSubMenuElement } from '@aracna/web-components/elements/navigation/menu-element.js';
216
- export type MenuProps = ElementComponentProps<MenuElement, MenuElementAttributes<MenuItemElement>, MenuElementEventMap>;
217
- export type MenuButtonProps = ElementComponentProps<MenuButtonElement, MenuButtonElementAttributes, MenuButtonElementEventMap>;
218
- export type MenuItemProps = ElementComponentProps<MenuItemElement, MenuItemElementAttributes, MenuItemElementEventMap>;
219
- export type MenuSubMenuProps = ElementComponentProps<MenuSubMenuElement, MenuSubMenuElementAttributes, MenuSubMenuElementEventMap>;
220
- import type { BreadcrumbElementAttributes, BreadcrumbElementEventMap, BreadcrumbItemElementAttributes, BreadcrumbItemElementEventMap, BreadcrumbListElementAttributes, BreadcrumbListElementEventMap } from '@aracna/web';
221
- import type { BreadcrumbElement, BreadcrumbItemElement, BreadcrumbListElement } from '@aracna/web-components/elements/navigation/breadcrumb-element.js';
222
- export type BreadcrumbProps = ElementComponentProps<BreadcrumbElement, BreadcrumbElementAttributes, BreadcrumbElementEventMap>;
223
- export type BreadcrumbItemProps = ElementComponentProps<BreadcrumbItemElement, BreadcrumbItemElementAttributes, BreadcrumbItemElementEventMap>;
224
- export type BreadcrumbListProps = ElementComponentProps<BreadcrumbListElement, BreadcrumbListElementAttributes, BreadcrumbListElementEventMap>;
225
- import type { DisclosureElementAttributes, DisclosureElementEventMap, DisclosureButtonElementAttributes, DisclosureButtonElementEventMap, DisclosurePanelElementAttributes, DisclosurePanelElementEventMap, DisclosureSectionElementAttributes, DisclosureSectionElementEventMap } from '@aracna/web';
226
- import type { DisclosureElement, DisclosureButtonElement, DisclosurePanelElement, DisclosureSectionElement } from '@aracna/web-components/elements/surface/disclosure-element.js';
227
- export type DisclosureProps = ElementComponentProps<DisclosureElement, DisclosureElementAttributes, DisclosureElementEventMap>;
228
- export type DisclosureButtonProps = ElementComponentProps<DisclosureButtonElement, DisclosureButtonElementAttributes, DisclosureButtonElementEventMap>;
229
- export type DisclosurePanelProps = ElementComponentProps<DisclosurePanelElement, DisclosurePanelElementAttributes, DisclosurePanelElementEventMap>;
230
- export type DisclosureSectionProps = ElementComponentProps<DisclosureSectionElement, DisclosureSectionElementAttributes, DisclosureSectionElementEventMap>;
231
- import type { AccordionElementAttributes, AccordionElementEventMap, AccordionButtonElementAttributes, AccordionButtonElementEventMap, AccordionHeaderElementAttributes, AccordionHeaderElementEventMap, AccordionPanelElementAttributes, AccordionPanelElementEventMap, AccordionSectionElementAttributes, AccordionSectionElementEventMap } from '@aracna/web';
232
- import type { AccordionElement, AccordionButtonElement, AccordionHeaderElement, AccordionPanelElement, AccordionSectionElement } from '@aracna/web-components/elements/surface/accordion-element.js';
233
- export type AccordionProps = ElementComponentProps<AccordionElement, AccordionElementAttributes, AccordionElementEventMap>;
234
- export type AccordionButtonProps = ElementComponentProps<AccordionButtonElement, AccordionButtonElementAttributes, AccordionButtonElementEventMap>;
235
- export type AccordionHeaderProps = ElementComponentProps<AccordionHeaderElement, AccordionHeaderElementAttributes, AccordionHeaderElementEventMap>;
236
- export type AccordionPanelProps = ElementComponentProps<AccordionPanelElement, AccordionPanelElementAttributes, AccordionPanelElementEventMap>;
237
- export type AccordionSectionProps = ElementComponentProps<AccordionSectionElement, AccordionSectionElementAttributes, AccordionSectionElementEventMap>;
package/index.d.ts CHANGED
@@ -1,302 +1,302 @@
1
- import type { AccordionButtonElement } from '@aracna/web-components/elements/surface/accordion-element.js';
1
+ import type { AccordionButtonElement } from '@aracna/web-components/elements/surface/accordion-element';
2
2
  import type { AccordionButtonElementAttributes } from '@aracna/web';
3
3
  import type { AccordionButtonElementEventMap } from '@aracna/web';
4
- import type { AccordionElement } from '@aracna/web-components/elements/surface/accordion-element.js';
4
+ import type { AccordionElement } from '@aracna/web-components/elements/surface/accordion-element';
5
5
  import type { AccordionElementAttributes } from '@aracna/web';
6
6
  import type { AccordionElementEventMap } from '@aracna/web';
7
- import type { AccordionHeaderElement } from '@aracna/web-components/elements/surface/accordion-element.js';
7
+ import type { AccordionHeaderElement } from '@aracna/web-components/elements/surface/accordion-element';
8
8
  import type { AccordionHeaderElementAttributes } from '@aracna/web';
9
9
  import type { AccordionHeaderElementEventMap } from '@aracna/web';
10
- import type { AccordionPanelElement } from '@aracna/web-components/elements/surface/accordion-element.js';
10
+ import type { AccordionPanelElement } from '@aracna/web-components/elements/surface/accordion-element';
11
11
  import type { AccordionPanelElementAttributes } from '@aracna/web';
12
12
  import type { AccordionPanelElementEventMap } from '@aracna/web';
13
- import type { AccordionSectionElement } from '@aracna/web-components/elements/surface/accordion-element.js';
13
+ import type { AccordionSectionElement } from '@aracna/web-components/elements/surface/accordion-element';
14
14
  import type { AccordionSectionElementAttributes } from '@aracna/web';
15
15
  import type { AccordionSectionElementEventMap } from '@aracna/web';
16
- import type { AlertDialogDescriptionElement } from '@aracna/web-components/elements/feedback/alert-dialog-element.js';
16
+ import type { AlertDialogDescriptionElement } from '@aracna/web-components/elements/feedback/alert-dialog-element';
17
17
  import type { AlertDialogDescriptionElementAttributes } from '@aracna/web';
18
18
  import type { AlertDialogDescriptionElementEventMap } from '@aracna/web';
19
- import type { AlertDialogElement } from '@aracna/web-components/elements/feedback/alert-dialog-element.js';
19
+ import type { AlertDialogElement } from '@aracna/web-components/elements/feedback/alert-dialog-element';
20
20
  import type { AlertDialogElementAttributes } from '@aracna/web';
21
21
  import type { AlertDialogElementEventMap } from '@aracna/web';
22
- import type { AlertDialogLabelElement } from '@aracna/web-components/elements/feedback/alert-dialog-element.js';
22
+ import type { AlertDialogLabelElement } from '@aracna/web-components/elements/feedback/alert-dialog-element';
23
23
  import type { AlertDialogLabelElementAttributes } from '@aracna/web';
24
24
  import type { AlertDialogLabelElementEventMap } from '@aracna/web';
25
- import type { AlertElement } from '@aracna/web-components/elements/feedback/alert-element.js';
25
+ import type { AlertElement } from '@aracna/web-components/elements/feedback/alert-element';
26
26
  import type { AlertElementAttributes } from '@aracna/web';
27
27
  import type { AlertElementEventMap } from '@aracna/web';
28
- import type { AriaAccordionButtonElement } from '@aracna/web-components/elements/aria/aria-accordion-element.js';
28
+ import type { AriaAccordionButtonElement } from '@aracna/web-components/elements/aria/aria-accordion-element';
29
29
  import type { AriaAccordionButtonElementAttributes } from '@aracna/web';
30
30
  import type { AriaAccordionButtonElementEventMap } from '@aracna/web';
31
- import type { AriaAccordionElement } from '@aracna/web-components/elements/aria/aria-accordion-element.js';
31
+ import type { AriaAccordionElement } from '@aracna/web-components/elements/aria/aria-accordion-element';
32
32
  import type { AriaAccordionElementAttributes } from '@aracna/web';
33
33
  import type { AriaAccordionElementEventMap } from '@aracna/web';
34
- import type { AriaAccordionHeaderElement } from '@aracna/web-components/elements/aria/aria-accordion-element.js';
34
+ import type { AriaAccordionHeaderElement } from '@aracna/web-components/elements/aria/aria-accordion-element';
35
35
  import type { AriaAccordionHeaderElementAttributes } from '@aracna/web';
36
36
  import type { AriaAccordionHeaderElementEventMap } from '@aracna/web';
37
- import type { AriaAccordionPanelElement } from '@aracna/web-components/elements/aria/aria-accordion-element.js';
37
+ import type { AriaAccordionPanelElement } from '@aracna/web-components/elements/aria/aria-accordion-element';
38
38
  import type { AriaAccordionPanelElementAttributes } from '@aracna/web';
39
39
  import type { AriaAccordionPanelElementEventMap } from '@aracna/web';
40
- import type { AriaAccordionSectionElement } from '@aracna/web-components/elements/aria/aria-accordion-element.js';
40
+ import type { AriaAccordionSectionElement } from '@aracna/web-components/elements/aria/aria-accordion-element';
41
41
  import type { AriaAccordionSectionElementAttributes } from '@aracna/web';
42
42
  import type { AriaAccordionSectionElementEventMap } from '@aracna/web';
43
- import type { AriaAlertDialogDescriptionElement } from '@aracna/web-components/elements/aria/aria-alert-dialog-element.js';
43
+ import type { AriaAlertDialogDescriptionElement } from '@aracna/web-components/elements/aria/aria-alert-dialog-element';
44
44
  import type { AriaAlertDialogDescriptionElementAttributes } from '@aracna/web';
45
45
  import type { AriaAlertDialogDescriptionElementEventMap } from '@aracna/web';
46
- import type { AriaAlertDialogElement } from '@aracna/web-components/elements/aria/aria-alert-dialog-element.js';
46
+ import type { AriaAlertDialogElement } from '@aracna/web-components/elements/aria/aria-alert-dialog-element';
47
47
  import type { AriaAlertDialogElementAttributes } from '@aracna/web';
48
48
  import type { AriaAlertDialogElementEventMap } from '@aracna/web';
49
- import type { AriaAlertDialogLabelElement } from '@aracna/web-components/elements/aria/aria-alert-dialog-element.js';
49
+ import type { AriaAlertDialogLabelElement } from '@aracna/web-components/elements/aria/aria-alert-dialog-element';
50
50
  import type { AriaAlertDialogLabelElementAttributes } from '@aracna/web';
51
51
  import type { AriaAlertDialogLabelElementEventMap } from '@aracna/web';
52
- import type { AriaAlertElement } from '@aracna/web-components/elements/aria/aria-alert-element.js';
52
+ import type { AriaAlertElement } from '@aracna/web-components/elements/aria/aria-alert-element';
53
53
  import type { AriaAlertElementAttributes } from '@aracna/web';
54
54
  import type { AriaAlertElementEventMap } from '@aracna/web';
55
- import type { AriaBreadcrumbElement } from '@aracna/web-components/elements/aria/aria-breadcrumb-element.js';
55
+ import type { AriaBreadcrumbElement } from '@aracna/web-components/elements/aria/aria-breadcrumb-element';
56
56
  import type { AriaBreadcrumbElementAttributes } from '@aracna/web';
57
57
  import type { AriaBreadcrumbElementEventMap } from '@aracna/web';
58
- import type { AriaBreadcrumbItemElement } from '@aracna/web-components/elements/aria/aria-breadcrumb-element.js';
58
+ import type { AriaBreadcrumbItemElement } from '@aracna/web-components/elements/aria/aria-breadcrumb-element';
59
59
  import type { AriaBreadcrumbItemElementAttributes } from '@aracna/web';
60
60
  import type { AriaBreadcrumbItemElementEventMap } from '@aracna/web';
61
- import type { AriaBreadcrumbListElement } from '@aracna/web-components/elements/aria/aria-breadcrumb-element.js';
61
+ import type { AriaBreadcrumbListElement } from '@aracna/web-components/elements/aria/aria-breadcrumb-element';
62
62
  import type { AriaBreadcrumbListElementAttributes } from '@aracna/web';
63
63
  import type { AriaBreadcrumbListElementEventMap } from '@aracna/web';
64
- import type { AriaButtonElement } from '@aracna/web-components/elements/aria/aria-button-element.js';
64
+ import type { AriaButtonElement } from '@aracna/web-components/elements/aria/aria-button-element';
65
65
  import type { AriaButtonElementAttributes } from '@aracna/web';
66
66
  import type { AriaButtonElementEventMap } from '@aracna/web';
67
- import type { AriaCarouselElement } from '@aracna/web-components/elements/aria/aria-carousel-element.js';
67
+ import type { AriaCarouselElement } from '@aracna/web-components/elements/aria/aria-carousel-element';
68
68
  import type { AriaCarouselElementAttributes } from '@aracna/web';
69
69
  import type { AriaCarouselElementEventMap } from '@aracna/web';
70
- import type { AriaCarouselNextSlideControlElement } from '@aracna/web-components/elements/aria/aria-carousel-element.js';
70
+ import type { AriaCarouselNextSlideControlElement } from '@aracna/web-components/elements/aria/aria-carousel-element';
71
71
  import type { AriaCarouselNextSlideControlElementAttributes } from '@aracna/web';
72
72
  import type { AriaCarouselNextSlideControlElementEventMap } from '@aracna/web';
73
- import type { AriaCarouselPreviousSlideControlElement } from '@aracna/web-components/elements/aria/aria-carousel-element.js';
73
+ import type { AriaCarouselPreviousSlideControlElement } from '@aracna/web-components/elements/aria/aria-carousel-element';
74
74
  import type { AriaCarouselPreviousSlideControlElementAttributes } from '@aracna/web';
75
75
  import type { AriaCarouselPreviousSlideControlElementEventMap } from '@aracna/web';
76
- import type { AriaCarouselRotationControlElement } from '@aracna/web-components/elements/aria/aria-carousel-element.js';
76
+ import type { AriaCarouselRotationControlElement } from '@aracna/web-components/elements/aria/aria-carousel-element';
77
77
  import type { AriaCarouselRotationControlElementAttributes } from '@aracna/web';
78
78
  import type { AriaCarouselRotationControlElementEventMap } from '@aracna/web';
79
- import type { AriaCarouselSlideElement } from '@aracna/web-components/elements/aria/aria-carousel-element.js';
79
+ import type { AriaCarouselSlideElement } from '@aracna/web-components/elements/aria/aria-carousel-element';
80
80
  import type { AriaCarouselSlideElementAttributes } from '@aracna/web';
81
81
  import type { AriaCarouselSlideElementEventMap } from '@aracna/web';
82
- import type { AriaCarouselSlidesElement } from '@aracna/web-components/elements/aria/aria-carousel-element.js';
82
+ import type { AriaCarouselSlidesElement } from '@aracna/web-components/elements/aria/aria-carousel-element';
83
83
  import type { AriaCarouselSlidesElementAttributes } from '@aracna/web';
84
84
  import type { AriaCarouselSlidesElementEventMap } from '@aracna/web';
85
- import type { AriaCarouselTabElement } from '@aracna/web-components/elements/aria/aria-carousel-element.js';
85
+ import type { AriaCarouselTabElement } from '@aracna/web-components/elements/aria/aria-carousel-element';
86
86
  import type { AriaCarouselTabElementAttributes } from '@aracna/web';
87
87
  import type { AriaCarouselTabElementEventMap } from '@aracna/web';
88
- import type { AriaCarouselTabsElement } from '@aracna/web-components/elements/aria/aria-carousel-element.js';
88
+ import type { AriaCarouselTabsElement } from '@aracna/web-components/elements/aria/aria-carousel-element';
89
89
  import type { AriaCarouselTabsElementAttributes } from '@aracna/web';
90
90
  import type { AriaCarouselTabsElementEventMap } from '@aracna/web';
91
- import type { AriaCheckBoxElement } from '@aracna/web-components/elements/aria/aria-check-box-element.js';
91
+ import type { AriaCheckBoxElement } from '@aracna/web-components/elements/aria/aria-check-box-element';
92
92
  import type { AriaCheckBoxElementAttributes } from '@aracna/web';
93
93
  import type { AriaCheckBoxElementEventMap } from '@aracna/web';
94
- import type { AriaComboBoxButtonElement } from '@aracna/web-components/elements/aria/aria-combo-box-element.js';
94
+ import type { AriaComboBoxButtonElement } from '@aracna/web-components/elements/aria/aria-combo-box-element';
95
95
  import type { AriaComboBoxButtonElementAttributes } from '@aracna/web';
96
96
  import type { AriaComboBoxButtonElementEventMap } from '@aracna/web';
97
- import type { AriaComboBoxElement } from '@aracna/web-components/elements/aria/aria-combo-box-element.js';
97
+ import type { AriaComboBoxElement } from '@aracna/web-components/elements/aria/aria-combo-box-element';
98
98
  import type { AriaComboBoxElementAttributes } from '@aracna/web';
99
99
  import type { AriaComboBoxElementEventMap } from '@aracna/web';
100
- import type { AriaComboBoxGroupElement } from '@aracna/web-components/elements/aria/aria-combo-box-element.js';
100
+ import type { AriaComboBoxGroupElement } from '@aracna/web-components/elements/aria/aria-combo-box-element';
101
101
  import type { AriaComboBoxGroupElementAttributes } from '@aracna/web';
102
102
  import type { AriaComboBoxGroupElementEventMap } from '@aracna/web';
103
- import type { AriaComboBoxInputElement } from '@aracna/web-components/elements/aria/aria-combo-box-element.js';
103
+ import type { AriaComboBoxInputElement } from '@aracna/web-components/elements/aria/aria-combo-box-element';
104
104
  import type { AriaComboBoxInputElementAttributes } from '@aracna/web';
105
105
  import type { AriaComboBoxInputElementEventMap } from '@aracna/web';
106
- import type { AriaComboBoxListElement } from '@aracna/web-components/elements/aria/aria-combo-box-element.js';
106
+ import type { AriaComboBoxListElement } from '@aracna/web-components/elements/aria/aria-combo-box-element';
107
107
  import type { AriaComboBoxListElementAttributes } from '@aracna/web';
108
108
  import type { AriaComboBoxListElementEventMap } from '@aracna/web';
109
- import type { AriaComboBoxOptionElement } from '@aracna/web-components/elements/aria/aria-combo-box-element.js';
109
+ import type { AriaComboBoxOptionElement } from '@aracna/web-components/elements/aria/aria-combo-box-element';
110
110
  import type { AriaComboBoxOptionElementAttributes } from '@aracna/web';
111
111
  import type { AriaComboBoxOptionElementEventMap } from '@aracna/web';
112
- import type { AriaDialogDescriptionElement } from '@aracna/web-components/elements/aria/aria-dialog-element.js';
112
+ import type { AriaDialogDescriptionElement } from '@aracna/web-components/elements/aria/aria-dialog-element';
113
113
  import type { AriaDialogDescriptionElementAttributes } from '@aracna/web';
114
114
  import type { AriaDialogDescriptionElementEventMap } from '@aracna/web';
115
- import type { AriaDialogElement } from '@aracna/web-components/elements/aria/aria-dialog-element.js';
115
+ import type { AriaDialogElement } from '@aracna/web-components/elements/aria/aria-dialog-element';
116
116
  import type { AriaDialogElementAttributes } from '@aracna/web';
117
117
  import type { AriaDialogElementEventMap } from '@aracna/web';
118
- import type { AriaDialogLabelElement } from '@aracna/web-components/elements/aria/aria-dialog-element.js';
118
+ import type { AriaDialogLabelElement } from '@aracna/web-components/elements/aria/aria-dialog-element';
119
119
  import type { AriaDialogLabelElementAttributes } from '@aracna/web';
120
120
  import type { AriaDialogLabelElementEventMap } from '@aracna/web';
121
- import type { AriaDisclosureButtonElement } from '@aracna/web-components/elements/aria/aria-disclosure-element.js';
121
+ import type { AriaDisclosureButtonElement } from '@aracna/web-components/elements/aria/aria-disclosure-element';
122
122
  import type { AriaDisclosureButtonElementAttributes } from '@aracna/web';
123
123
  import type { AriaDisclosureButtonElementEventMap } from '@aracna/web';
124
- import type { AriaDisclosureElement } from '@aracna/web-components/elements/aria/aria-disclosure-element.js';
124
+ import type { AriaDisclosureElement } from '@aracna/web-components/elements/aria/aria-disclosure-element';
125
125
  import type { AriaDisclosureElementAttributes } from '@aracna/web';
126
126
  import type { AriaDisclosureElementEventMap } from '@aracna/web';
127
- import type { AriaDisclosurePanelElement } from '@aracna/web-components/elements/aria/aria-disclosure-element.js';
127
+ import type { AriaDisclosurePanelElement } from '@aracna/web-components/elements/aria/aria-disclosure-element';
128
128
  import type { AriaDisclosurePanelElementAttributes } from '@aracna/web';
129
129
  import type { AriaDisclosurePanelElementEventMap } from '@aracna/web';
130
- import type { AriaDisclosureSectionElement } from '@aracna/web-components/elements/aria/aria-disclosure-element.js';
130
+ import type { AriaDisclosureSectionElement } from '@aracna/web-components/elements/aria/aria-disclosure-element';
131
131
  import type { AriaDisclosureSectionElementAttributes } from '@aracna/web';
132
132
  import type { AriaDisclosureSectionElementEventMap } from '@aracna/web';
133
- import type { AriaFeedArticleDescriptionElement } from '@aracna/web-components/elements/aria/aria-feed-element.js';
133
+ import type { AriaFeedArticleDescriptionElement } from '@aracna/web-components/elements/aria/aria-feed-element';
134
134
  import type { AriaFeedArticleDescriptionElementAttributes } from '@aracna/web';
135
135
  import type { AriaFeedArticleDescriptionElementEventMap } from '@aracna/web';
136
- import type { AriaFeedArticleElement } from '@aracna/web-components/elements/aria/aria-feed-element.js';
136
+ import type { AriaFeedArticleElement } from '@aracna/web-components/elements/aria/aria-feed-element';
137
137
  import type { AriaFeedArticleElementAttributes } from '@aracna/web';
138
138
  import type { AriaFeedArticleElementEventMap } from '@aracna/web';
139
- import type { AriaFeedArticleLabelElement } from '@aracna/web-components/elements/aria/aria-feed-element.js';
139
+ import type { AriaFeedArticleLabelElement } from '@aracna/web-components/elements/aria/aria-feed-element';
140
140
  import type { AriaFeedArticleLabelElementAttributes } from '@aracna/web';
141
141
  import type { AriaFeedArticleLabelElementEventMap } from '@aracna/web';
142
- import type { AriaFeedElement } from '@aracna/web-components/elements/aria/aria-feed-element.js';
142
+ import type { AriaFeedElement } from '@aracna/web-components/elements/aria/aria-feed-element';
143
143
  import type { AriaFeedElementAttributes } from '@aracna/web';
144
144
  import type { AriaFeedElementEventMap } from '@aracna/web';
145
- import type { AriaLinkElement } from '@aracna/web-components/elements/aria/aria-link-element.js';
145
+ import type { AriaLinkElement } from '@aracna/web-components/elements/aria/aria-link-element';
146
146
  import type { AriaLinkElementAttributes } from '@aracna/web';
147
147
  import type { AriaLinkElementEventMap } from '@aracna/web';
148
- import type { AriaListBoxElement } from '@aracna/web-components/elements/aria/aria-list-box-element.js';
148
+ import type { AriaListBoxElement } from '@aracna/web-components/elements/aria/aria-list-box-element';
149
149
  import type { AriaListBoxElementAttributes } from '@aracna/web';
150
150
  import type { AriaListBoxElementEventMap } from '@aracna/web';
151
- import type { AriaListBoxOptionElement } from '@aracna/web-components/elements/aria/aria-list-box-element.js';
151
+ import type { AriaListBoxOptionElement } from '@aracna/web-components/elements/aria/aria-list-box-element';
152
152
  import type { AriaListBoxOptionElementAttributes } from '@aracna/web';
153
153
  import type { AriaListBoxOptionElementEventMap } from '@aracna/web';
154
- import type { AriaMenuButtonElement } from '@aracna/web-components/elements/aria/aria-menu-element.js';
154
+ import type { AriaMenuButtonElement } from '@aracna/web-components/elements/aria/aria-menu-element';
155
155
  import type { AriaMenuButtonElementAttributes } from '@aracna/web';
156
156
  import type { AriaMenuButtonElementEventMap } from '@aracna/web';
157
- import type { AriaMenuElement } from '@aracna/web-components/elements/aria/aria-menu-element.js';
157
+ import type { AriaMenuElement } from '@aracna/web-components/elements/aria/aria-menu-element';
158
158
  import type { AriaMenuElementAttributes } from '@aracna/web';
159
159
  import type { AriaMenuElementEventMap } from '@aracna/web';
160
- import type { AriaMenuItemElement } from '@aracna/web-components/elements/aria/aria-menu-element.js';
160
+ import type { AriaMenuItemElement } from '@aracna/web-components/elements/aria/aria-menu-element';
161
161
  import type { AriaMenuItemElementAttributes } from '@aracna/web';
162
162
  import type { AriaMenuItemElementEventMap } from '@aracna/web';
163
- import type { AriaMenuSubMenuElement } from '@aracna/web-components/elements/aria/aria-menu-element.js';
163
+ import type { AriaMenuSubMenuElement } from '@aracna/web-components/elements/aria/aria-menu-element';
164
164
  import type { AriaMenuSubMenuElementAttributes } from '@aracna/web';
165
165
  import type { AriaMenuSubMenuElementEventMap } from '@aracna/web';
166
- import type { AriaMeterElement } from '@aracna/web-components/elements/aria/aria-meter-element.js';
166
+ import type { AriaMeterElement } from '@aracna/web-components/elements/aria/aria-meter-element';
167
167
  import type { AriaMeterElementAttributes } from '@aracna/web';
168
168
  import type { AriaMeterElementEventMap } from '@aracna/web';
169
- import type { AriaRadioButtonElement } from '@aracna/web-components/elements/aria/aria-radio-group-element.js';
169
+ import type { AriaRadioButtonElement } from '@aracna/web-components/elements/aria/aria-radio-group-element';
170
170
  import type { AriaRadioButtonElementAttributes } from '@aracna/web';
171
171
  import type { AriaRadioButtonElementEventMap } from '@aracna/web';
172
- import type { AriaRadioGroupElement } from '@aracna/web-components/elements/aria/aria-radio-group-element.js';
172
+ import type { AriaRadioGroupElement } from '@aracna/web-components/elements/aria/aria-radio-group-element';
173
173
  import type { AriaRadioGroupElementAttributes } from '@aracna/web';
174
174
  import type { AriaRadioGroupElementEventMap } from '@aracna/web';
175
- import type { AriaSliderElement } from '@aracna/web-components/elements/aria/aria-slider-element.js';
175
+ import type { AriaSliderElement } from '@aracna/web-components/elements/aria/aria-slider-element';
176
176
  import type { AriaSliderElementAttributes } from '@aracna/web';
177
177
  import type { AriaSliderElementEventMap } from '@aracna/web';
178
- import type { AriaSliderThumbElement } from '@aracna/web-components/elements/aria/aria-slider-element.js';
178
+ import type { AriaSliderThumbElement } from '@aracna/web-components/elements/aria/aria-slider-element';
179
179
  import type { AriaSliderThumbElementAttributes } from '@aracna/web';
180
180
  import type { AriaSliderThumbElementEventMap } from '@aracna/web';
181
- import type { AriaSwitchElement } from '@aracna/web-components/elements/aria/aria-switch-element.js';
181
+ import type { AriaSwitchElement } from '@aracna/web-components/elements/aria/aria-switch-element';
182
182
  import type { AriaSwitchElementAttributes } from '@aracna/web';
183
183
  import type { AriaSwitchElementEventMap } from '@aracna/web';
184
- import type { AriaTabsElement } from '@aracna/web-components/elements/aria/aria-tabs-element.js';
184
+ import type { AriaTabsElement } from '@aracna/web-components/elements/aria/aria-tabs-element';
185
185
  import type { AriaTabsElementAttributes } from '@aracna/web';
186
186
  import type { AriaTabsElementEventMap } from '@aracna/web';
187
- import type { AriaTabsPanelElement } from '@aracna/web-components/elements/aria/aria-tabs-element.js';
187
+ import type { AriaTabsPanelElement } from '@aracna/web-components/elements/aria/aria-tabs-element';
188
188
  import type { AriaTabsPanelElementAttributes } from '@aracna/web';
189
189
  import type { AriaTabsPanelElementEventMap } from '@aracna/web';
190
- import type { AriaTabsTabElement } from '@aracna/web-components/elements/aria/aria-tabs-element.js';
190
+ import type { AriaTabsTabElement } from '@aracna/web-components/elements/aria/aria-tabs-element';
191
191
  import type { AriaTabsTabElementAttributes } from '@aracna/web';
192
192
  import type { AriaTabsTabElementEventMap } from '@aracna/web';
193
- import type { AriaTooltipArrowElement } from '@aracna/web-components/elements/aria/aria-tooltip-element.js';
193
+ import type { AriaTooltipArrowElement } from '@aracna/web-components/elements/aria/aria-tooltip-element';
194
194
  import type { AriaTooltipArrowElementAttributes } from '@aracna/web';
195
195
  import type { AriaTooltipArrowElementEventMap } from '@aracna/web';
196
- import type { AriaTooltipContentElement } from '@aracna/web-components/elements/aria/aria-tooltip-element.js';
196
+ import type { AriaTooltipContentElement } from '@aracna/web-components/elements/aria/aria-tooltip-element';
197
197
  import type { AriaTooltipContentElementAttributes } from '@aracna/web';
198
198
  import type { AriaTooltipContentElementEventMap } from '@aracna/web';
199
- import type { AriaTooltipElement } from '@aracna/web-components/elements/aria/aria-tooltip-element.js';
199
+ import type { AriaTooltipElement } from '@aracna/web-components/elements/aria/aria-tooltip-element';
200
200
  import type { AriaTooltipElementAttributes } from '@aracna/web';
201
201
  import type { AriaTooltipElementEventMap } from '@aracna/web';
202
- import type { AriaTooltipTriggerElement } from '@aracna/web-components/elements/aria/aria-tooltip-element.js';
202
+ import type { AriaTooltipTriggerElement } from '@aracna/web-components/elements/aria/aria-tooltip-element';
203
203
  import type { AriaTooltipTriggerElementAttributes } from '@aracna/web';
204
204
  import type { AriaTooltipTriggerElementEventMap } from '@aracna/web';
205
- import type { AvatarElement } from '@aracna/web-components/elements/data/avatar-element.js';
205
+ import type { AvatarElement } from '@aracna/web-components/elements/data/avatar-element';
206
206
  import type { AvatarElementAttributes } from '@aracna/web';
207
207
  import type { AvatarElementEventMap } from '@aracna/web';
208
- import type { BadgeElement } from '@aracna/web-components/elements/data/badge-element.js';
208
+ import type { BadgeElement } from '@aracna/web-components/elements/data/badge-element';
209
209
  import type { BadgeElementAttributes } from '@aracna/web';
210
210
  import type { BadgeElementEventMap } from '@aracna/web';
211
211
  import { BaseElementAttributes } from '@aracna/web';
212
212
  import { BaseElementEventMap } from '@aracna/web';
213
- import type { BreadcrumbElement } from '@aracna/web-components/elements/navigation/breadcrumb-element.js';
213
+ import type { BreadcrumbElement } from '@aracna/web-components/elements/navigation/breadcrumb-element';
214
214
  import type { BreadcrumbElementAttributes } from '@aracna/web';
215
215
  import type { BreadcrumbElementEventMap } from '@aracna/web';
216
- import type { BreadcrumbItemElement } from '@aracna/web-components/elements/navigation/breadcrumb-element.js';
216
+ import type { BreadcrumbItemElement } from '@aracna/web-components/elements/navigation/breadcrumb-element';
217
217
  import type { BreadcrumbItemElementAttributes } from '@aracna/web';
218
218
  import type { BreadcrumbItemElementEventMap } from '@aracna/web';
219
- import type { BreadcrumbListElement } from '@aracna/web-components/elements/navigation/breadcrumb-element.js';
219
+ import type { BreadcrumbListElement } from '@aracna/web-components/elements/navigation/breadcrumb-element';
220
220
  import type { BreadcrumbListElementAttributes } from '@aracna/web';
221
221
  import type { BreadcrumbListElementEventMap } from '@aracna/web';
222
- import type { ButtonElement } from '@aracna/web-components/elements/input/button-element.js';
222
+ import type { ButtonElement } from '@aracna/web-components/elements/input/button-element';
223
223
  import type { ButtonElementAttributes } from '@aracna/web';
224
224
  import type { ButtonElementEventMap } from '@aracna/web';
225
- import type { ButtonGroupElement } from '@aracna/web-components/elements/input/button-group-element.js';
225
+ import type { ButtonGroupElement } from '@aracna/web-components/elements/input/button-group-element';
226
226
  import type { ButtonGroupElementAttributes } from '@aracna/web';
227
227
  import type { ButtonGroupElementEventMap } from '@aracna/web';
228
- import type { CarouselElement } from '@aracna/web-components/elements/data/carousel-element.js';
228
+ import type { CarouselElement } from '@aracna/web-components/elements/data/carousel-element';
229
229
  import type { CarouselElementAttributes } from '@aracna/web';
230
230
  import type { CarouselElementEventMap } from '@aracna/web';
231
- import type { CarouselNextSlideControlElement } from '@aracna/web-components/elements/data/carousel-element.js';
231
+ import type { CarouselNextSlideControlElement } from '@aracna/web-components/elements/data/carousel-element';
232
232
  import type { CarouselNextSlideControlElementAttributes } from '@aracna/web';
233
233
  import type { CarouselNextSlideControlElementEventMap } from '@aracna/web';
234
- import type { CarouselPreviousSlideControlElement } from '@aracna/web-components/elements/data/carousel-element.js';
234
+ import type { CarouselPreviousSlideControlElement } from '@aracna/web-components/elements/data/carousel-element';
235
235
  import type { CarouselPreviousSlideControlElementAttributes } from '@aracna/web';
236
236
  import type { CarouselPreviousSlideControlElementEventMap } from '@aracna/web';
237
- import type { CarouselRotationControlElement } from '@aracna/web-components/elements/data/carousel-element.js';
237
+ import type { CarouselRotationControlElement } from '@aracna/web-components/elements/data/carousel-element';
238
238
  import type { CarouselRotationControlElementAttributes } from '@aracna/web';
239
239
  import type { CarouselRotationControlElementEventMap } from '@aracna/web';
240
- import type { CarouselSlideElement } from '@aracna/web-components/elements/data/carousel-element.js';
240
+ import type { CarouselSlideElement } from '@aracna/web-components/elements/data/carousel-element';
241
241
  import type { CarouselSlideElementAttributes } from '@aracna/web';
242
242
  import type { CarouselSlideElementEventMap } from '@aracna/web';
243
- import type { CarouselSlidesElement } from '@aracna/web-components/elements/data/carousel-element.js';
243
+ import type { CarouselSlidesElement } from '@aracna/web-components/elements/data/carousel-element';
244
244
  import type { CarouselSlidesElementAttributes } from '@aracna/web';
245
245
  import type { CarouselSlidesElementEventMap } from '@aracna/web';
246
- import type { CarouselTabElement } from '@aracna/web-components/elements/data/carousel-element.js';
246
+ import type { CarouselTabElement } from '@aracna/web-components/elements/data/carousel-element';
247
247
  import type { CarouselTabElementAttributes } from '@aracna/web';
248
248
  import type { CarouselTabElementEventMap } from '@aracna/web';
249
- import type { CarouselTabsElement } from '@aracna/web-components/elements/data/carousel-element.js';
249
+ import type { CarouselTabsElement } from '@aracna/web-components/elements/data/carousel-element';
250
250
  import type { CarouselTabsElementAttributes } from '@aracna/web';
251
251
  import type { CarouselTabsElementEventMap } from '@aracna/web';
252
- import type { CheckBoxElement } from '@aracna/web-components/elements/input/check-box-element.js';
252
+ import type { CheckBoxElement } from '@aracna/web-components/elements/input/check-box-element';
253
253
  import type { CheckBoxElementAttributes } from '@aracna/web';
254
254
  import type { CheckBoxElementEventMap } from '@aracna/web';
255
- import type { ChipElement } from '@aracna/web-components/elements/data/chip-element.js';
255
+ import type { ChipElement } from '@aracna/web-components/elements/data/chip-element';
256
256
  import type { ChipElementAttributes } from '@aracna/web';
257
257
  import type { ChipElementEventMap } from '@aracna/web';
258
258
  import { DependencyList } from 'react';
259
- import type { DialogDescriptionElement } from '@aracna/web-components/elements/feedback/dialog-element.js';
259
+ import type { DialogDescriptionElement } from '@aracna/web-components/elements/feedback/dialog-element';
260
260
  import type { DialogDescriptionElementAttributes } from '@aracna/web';
261
261
  import type { DialogDescriptionElementEventMap } from '@aracna/web';
262
- import type { DialogElement } from '@aracna/web-components/elements/feedback/dialog-element.js';
262
+ import type { DialogElement } from '@aracna/web-components/elements/feedback/dialog-element';
263
263
  import type { DialogElementAttributes } from '@aracna/web';
264
264
  import type { DialogElementEventMap } from '@aracna/web';
265
- import type { DialogLabelElement } from '@aracna/web-components/elements/feedback/dialog-element.js';
265
+ import type { DialogLabelElement } from '@aracna/web-components/elements/feedback/dialog-element';
266
266
  import type { DialogLabelElementAttributes } from '@aracna/web';
267
267
  import type { DialogLabelElementEventMap } from '@aracna/web';
268
- import type { DisclosureButtonElement } from '@aracna/web-components/elements/surface/disclosure-element.js';
268
+ import type { DisclosureButtonElement } from '@aracna/web-components/elements/surface/disclosure-element';
269
269
  import type { DisclosureButtonElementAttributes } from '@aracna/web';
270
270
  import type { DisclosureButtonElementEventMap } from '@aracna/web';
271
- import type { DisclosureElement } from '@aracna/web-components/elements/surface/disclosure-element.js';
271
+ import type { DisclosureElement } from '@aracna/web-components/elements/surface/disclosure-element';
272
272
  import type { DisclosureElementAttributes } from '@aracna/web';
273
273
  import type { DisclosureElementEventMap } from '@aracna/web';
274
- import type { DisclosurePanelElement } from '@aracna/web-components/elements/surface/disclosure-element.js';
274
+ import type { DisclosurePanelElement } from '@aracna/web-components/elements/surface/disclosure-element';
275
275
  import type { DisclosurePanelElementAttributes } from '@aracna/web';
276
276
  import type { DisclosurePanelElementEventMap } from '@aracna/web';
277
- import type { DisclosureSectionElement } from '@aracna/web-components/elements/surface/disclosure-element.js';
277
+ import type { DisclosureSectionElement } from '@aracna/web-components/elements/surface/disclosure-element';
278
278
  import type { DisclosureSectionElementAttributes } from '@aracna/web';
279
279
  import type { DisclosureSectionElementEventMap } from '@aracna/web';
280
- import type { DividerElement } from '@aracna/web-components/elements/layout/divider-element.js';
280
+ import type { DividerElement } from '@aracna/web-components/elements/layout/divider-element';
281
281
  import type { DividerElementAttributes } from '@aracna/web';
282
282
  import type { DividerElementEventMap } from '@aracna/web';
283
- import type { FeedArticleDescriptionElement } from '@aracna/web-components/elements/data/feed-element.js';
283
+ import type { FeedArticleDescriptionElement } from '@aracna/web-components/elements/data/feed-element';
284
284
  import type { FeedArticleDescriptionElementAttributes } from '@aracna/web';
285
285
  import type { FeedArticleDescriptionElementEventMap } from '@aracna/web';
286
- import type { FeedArticleElement } from '@aracna/web-components/elements/data/feed-element.js';
286
+ import type { FeedArticleElement } from '@aracna/web-components/elements/data/feed-element';
287
287
  import type { FeedArticleElementAttributes } from '@aracna/web';
288
288
  import type { FeedArticleElementEventMap } from '@aracna/web';
289
- import type { FeedArticleLabelElement } from '@aracna/web-components/elements/data/feed-element.js';
289
+ import type { FeedArticleLabelElement } from '@aracna/web-components/elements/data/feed-element';
290
290
  import type { FeedArticleLabelElementAttributes } from '@aracna/web';
291
291
  import type { FeedArticleLabelElementEventMap } from '@aracna/web';
292
- import type { FeedElement } from '@aracna/web-components/elements/data/feed-element.js';
292
+ import type { FeedElement } from '@aracna/web-components/elements/data/feed-element';
293
293
  import type { FeedElementAttributes } from '@aracna/web';
294
294
  import type { FeedElementEventMap } from '@aracna/web';
295
295
  import { FloatingElementAttributes } from '@aracna/web';
296
296
  import { FloatingElementEventMap } from '@aracna/web';
297
297
  import { FocusTrapElementAttributes } from '@aracna/web';
298
298
  import { FocusTrapElementEventMap } from '@aracna/web';
299
- import type { FormElement } from '@aracna/web-components/elements/input/form-element.js';
299
+ import type { FormElement } from '@aracna/web-components/elements/input/form-element';
300
300
  import type { FormElementAttributes } from '@aracna/web';
301
301
  import type { FormElementEventMap } from '@aracna/web';
302
302
  import { FormFieldElementAttributes } from '@aracna/web';
@@ -304,111 +304,111 @@ import { FormFieldElementEventMap } from '@aracna/web';
304
304
  import { ForwardedRef } from 'react';
305
305
  import type { ForwardRefExoticComponent } from 'react';
306
306
  import type { HTMLAttributes } from 'react';
307
- import type { IconElement } from '@aracna/web-components/elements/data/icon-element.js';
307
+ import type { IconElement } from '@aracna/web-components/elements/data/icon-element';
308
308
  import type { IconElementAttributes } from '@aracna/web';
309
309
  import type { IconElementEventMap } from '@aracna/web';
310
- import type { ImageElement } from '@aracna/web-components/elements/data/image-element.js';
310
+ import type { ImageElement } from '@aracna/web-components/elements/data/image-element';
311
311
  import type { ImageElementAttributes } from '@aracna/web';
312
312
  import type { ImageElementEventMap } from '@aracna/web';
313
- import type { InputElement } from '@aracna/web-components/elements/input/input-element.js';
313
+ import type { InputElement } from '@aracna/web-components/elements/input/input-element';
314
314
  import type { InputElementAttributes } from '@aracna/web';
315
315
  import type { InputElementEventMap } from '@aracna/web';
316
- import type { InputFileElement } from '@aracna/web-components/elements/input/input-file-element.js';
316
+ import type { InputFileElement } from '@aracna/web-components/elements/input/input-file-element';
317
317
  import type { InputFileElementAttributes } from '@aracna/web';
318
318
  import type { InputFileElementEventMap } from '@aracna/web';
319
319
  import { KeyOf } from '@aracna/core';
320
- import type { ListElement } from '@aracna/web-components/elements/data/list-element.js';
320
+ import type { ListElement } from '@aracna/web-components/elements/data/list-element';
321
321
  import type { ListElementAttributes } from '@aracna/web';
322
322
  import type { ListElementEventMap } from '@aracna/web';
323
- import type { ListItemElement } from '@aracna/web-components/elements/data/list-element.js';
323
+ import type { ListItemElement } from '@aracna/web-components/elements/data/list-element';
324
324
  import type { ListItemElementAttributes } from '@aracna/web';
325
325
  import type { ListItemElementEventMap } from '@aracna/web';
326
- import type { MenuButtonElement } from '@aracna/web-components/elements/navigation/menu-element.js';
326
+ import type { MenuButtonElement } from '@aracna/web-components/elements/navigation/menu-element';
327
327
  import type { MenuButtonElementAttributes } from '@aracna/web';
328
328
  import type { MenuButtonElementEventMap } from '@aracna/web';
329
- import type { MenuElement } from '@aracna/web-components/elements/navigation/menu-element.js';
329
+ import type { MenuElement } from '@aracna/web-components/elements/navigation/menu-element';
330
330
  import type { MenuElementAttributes } from '@aracna/web';
331
331
  import type { MenuElementEventMap } from '@aracna/web';
332
- import type { MenuItemElement } from '@aracna/web-components/elements/navigation/menu-element.js';
332
+ import type { MenuItemElement } from '@aracna/web-components/elements/navigation/menu-element';
333
333
  import type { MenuItemElementAttributes } from '@aracna/web';
334
334
  import type { MenuItemElementEventMap } from '@aracna/web';
335
- import type { MenuSubMenuElement } from '@aracna/web-components/elements/navigation/menu-element.js';
335
+ import type { MenuSubMenuElement } from '@aracna/web-components/elements/navigation/menu-element';
336
336
  import type { MenuSubMenuElementAttributes } from '@aracna/web';
337
337
  import type { MenuSubMenuElementEventMap } from '@aracna/web';
338
- import type { MeterElement } from '@aracna/web-components/elements/feedback/meter-element.js';
338
+ import type { MeterElement } from '@aracna/web-components/elements/feedback/meter-element';
339
339
  import type { MeterElementAttributes } from '@aracna/web';
340
340
  import type { MeterElementEventMap } from '@aracna/web';
341
341
  import { MutableRefObject } from 'react';
342
- import type { NavigationBarElement } from '@aracna/web-components/elements/navigation/navigation-bar-element.js';
342
+ import type { NavigationBarElement } from '@aracna/web-components/elements/navigation/navigation-bar-element';
343
343
  import type { NavigationBarElementAttributes } from '@aracna/web';
344
344
  import type { NavigationBarElementEventMap } from '@aracna/web';
345
- import type { NavigationBarItemElement } from '@aracna/web-components/elements/navigation/navigation-bar-element.js';
345
+ import type { NavigationBarItemElement } from '@aracna/web-components/elements/navigation/navigation-bar-element';
346
346
  import type { NavigationBarItemElementAttributes } from '@aracna/web';
347
347
  import type { NavigationBarItemElementEventMap } from '@aracna/web';
348
- import type { NavigationRailElement } from '@aracna/web-components/elements/navigation/navigation-rail-element.js';
348
+ import type { NavigationRailElement } from '@aracna/web-components/elements/navigation/navigation-rail-element';
349
349
  import type { NavigationRailElementAttributes } from '@aracna/web';
350
350
  import type { NavigationRailElementEventMap } from '@aracna/web';
351
- import type { NavigationRailItemElement } from '@aracna/web-components/elements/navigation/navigation-rail-element.js';
351
+ import type { NavigationRailItemElement } from '@aracna/web-components/elements/navigation/navigation-rail-element';
352
352
  import type { NavigationRailItemElementAttributes } from '@aracna/web';
353
353
  import type { NavigationRailItemElementEventMap } from '@aracna/web';
354
354
  import { PascalCase } from '@aracna/core';
355
- import type { RadioButtonElement } from '@aracna/web-components/elements/input/radio-group-element.js';
355
+ import type { RadioButtonElement } from '@aracna/web-components/elements/input/radio-group-element';
356
356
  import type { RadioButtonElementAttributes } from '@aracna/web';
357
357
  import type { RadioButtonElementEventMap } from '@aracna/web';
358
- import type { RadioGroupElement } from '@aracna/web-components/elements/input/radio-group-element.js';
358
+ import type { RadioGroupElement } from '@aracna/web-components/elements/input/radio-group-element';
359
359
  import type { RadioGroupElementAttributes } from '@aracna/web';
360
360
  import type { RadioGroupElementEventMap } from '@aracna/web';
361
361
  import { ReactElement } from 'react';
362
362
  import type { RefAttributes } from 'react';
363
- import type { SelectButtonElement } from '@aracna/web-components/elements/input/select-element.js';
363
+ import type { SelectButtonElement } from '@aracna/web-components/elements/input/select-element';
364
364
  import type { SelectButtonElementAttributes } from '@aracna/web';
365
365
  import type { SelectButtonElementEventMap } from '@aracna/web';
366
- import type { SelectElement } from '@aracna/web-components/elements/input/select-element.js';
366
+ import type { SelectElement } from '@aracna/web-components/elements/input/select-element';
367
367
  import type { SelectElementAttributes } from '@aracna/web';
368
368
  import type { SelectElementEventMap } from '@aracna/web';
369
- import type { SelectGroupElement } from '@aracna/web-components/elements/input/select-element.js';
369
+ import type { SelectGroupElement } from '@aracna/web-components/elements/input/select-element';
370
370
  import type { SelectGroupElementAttributes } from '@aracna/web';
371
371
  import type { SelectGroupElementEventMap } from '@aracna/web';
372
- import type { SelectInputElement } from '@aracna/web-components/elements/input/select-element.js';
372
+ import type { SelectInputElement } from '@aracna/web-components/elements/input/select-element';
373
373
  import type { SelectInputElementAttributes } from '@aracna/web';
374
374
  import type { SelectInputElementEventMap } from '@aracna/web';
375
- import type { SelectListElement } from '@aracna/web-components/elements/input/select-element.js';
375
+ import type { SelectListElement } from '@aracna/web-components/elements/input/select-element';
376
376
  import type { SelectListElementAttributes } from '@aracna/web';
377
377
  import type { SelectListElementEventMap } from '@aracna/web';
378
- import type { SelectOptionElement } from '@aracna/web-components/elements/input/select-element.js';
378
+ import type { SelectOptionElement } from '@aracna/web-components/elements/input/select-element';
379
379
  import type { SelectOptionElementAttributes } from '@aracna/web';
380
380
  import type { SelectOptionElementEventMap } from '@aracna/web';
381
- import type { SliderElement } from '@aracna/web-components/elements/input/slider-element.js';
381
+ import type { SliderElement } from '@aracna/web-components/elements/input/slider-element';
382
382
  import type { SliderElementAttributes } from '@aracna/web';
383
383
  import type { SliderElementEventMap } from '@aracna/web';
384
- import type { SliderThumbElement } from '@aracna/web-components/elements/input/slider-element.js';
384
+ import type { SliderThumbElement } from '@aracna/web-components/elements/input/slider-element';
385
385
  import type { SliderThumbElementAttributes } from '@aracna/web';
386
386
  import type { SliderThumbElementEventMap } from '@aracna/web';
387
- import type { SwitchElement } from '@aracna/web-components/elements/input/switch-element.js';
387
+ import type { SwitchElement } from '@aracna/web-components/elements/input/switch-element';
388
388
  import type { SwitchElementAttributes } from '@aracna/web';
389
389
  import type { SwitchElementEventMap } from '@aracna/web';
390
- import type { TabsElement } from '@aracna/web-components/elements/navigation/tabs-element.js';
390
+ import type { TabsElement } from '@aracna/web-components/elements/navigation/tabs-element';
391
391
  import type { TabsElementAttributes } from '@aracna/web';
392
392
  import type { TabsElementEventMap } from '@aracna/web';
393
- import type { TabsPanelElement } from '@aracna/web-components/elements/navigation/tabs-element.js';
393
+ import type { TabsPanelElement } from '@aracna/web-components/elements/navigation/tabs-element';
394
394
  import type { TabsPanelElementAttributes } from '@aracna/web';
395
395
  import type { TabsPanelElementEventMap } from '@aracna/web';
396
- import type { TabsTabElement } from '@aracna/web-components/elements/navigation/tabs-element.js';
396
+ import type { TabsTabElement } from '@aracna/web-components/elements/navigation/tabs-element';
397
397
  import type { TabsTabElementAttributes } from '@aracna/web';
398
398
  import type { TabsTabElementEventMap } from '@aracna/web';
399
- import type { TextAreaElement } from '@aracna/web-components/elements/input/text-area-element.js';
399
+ import type { TextAreaElement } from '@aracna/web-components/elements/input/text-area-element';
400
400
  import type { TextAreaElementAttributes } from '@aracna/web';
401
401
  import type { TextAreaElementEventMap } from '@aracna/web';
402
- import type { TooltipArrowElement } from '@aracna/web-components/elements/data/tooltip-element.js';
402
+ import type { TooltipArrowElement } from '@aracna/web-components/elements/data/tooltip-element';
403
403
  import type { TooltipArrowElementAttributes } from '@aracna/web';
404
404
  import type { TooltipArrowElementEventMap } from '@aracna/web';
405
- import type { TooltipContentElement } from '@aracna/web-components/elements/data/tooltip-element.js';
405
+ import type { TooltipContentElement } from '@aracna/web-components/elements/data/tooltip-element';
406
406
  import type { TooltipContentElementAttributes } from '@aracna/web';
407
407
  import type { TooltipContentElementEventMap } from '@aracna/web';
408
- import type { TooltipElement } from '@aracna/web-components/elements/data/tooltip-element.js';
408
+ import type { TooltipElement } from '@aracna/web-components/elements/data/tooltip-element';
409
409
  import type { TooltipElementAttributes } from '@aracna/web';
410
410
  import type { TooltipElementEventMap } from '@aracna/web';
411
- import type { TooltipTriggerElement } from '@aracna/web-components/elements/data/tooltip-element.js';
411
+ import type { TooltipTriggerElement } from '@aracna/web-components/elements/data/tooltip-element';
412
412
  import type { TooltipTriggerElementAttributes } from '@aracna/web';
413
413
  import type { TooltipTriggerElementEventMap } from '@aracna/web';
414
414
 
package/index.iife.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";var AracnaReact=(()=>{var de=Object.create;var b=Object.defineProperty;var ye=Object.getOwnPropertyDescriptor;var Te=Object.getOwnPropertyNames;var ve=Object.getPrototypeOf,ge=Object.prototype.hasOwnProperty;var G=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),_e=(e,t)=>{for(var n in t)b(e,n,{get:t[n],enumerable:!0})},V=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of Te(t))!ge.call(e,o)&&o!==n&&b(e,o,{get:()=>t[o],enumerable:!(r=ye(t,o))||r.enumerable});return e};var d=(e,t,n)=>(n=e!=null?de(ve(e)):{},V(t||!e||!e.__esModule?b(n,"default",{value:e,enumerable:!0}):n,e)),Re=e=>V(b({},"__esModule",{value:!0}),e);var ae=G(a=>{"use strict";var C=Symbol.for("react.element"),Ae=Symbol.for("react.portal"),Ne=Symbol.for("react.fragment"),Oe=Symbol.for("react.strict_mode"),Pe=Symbol.for("react.profiler"),he=Symbol.for("react.provider"),xe=Symbol.for("react.context"),De=Symbol.for("react.forward_ref"),we=Symbol.for("react.suspense"),Fe=Symbol.for("react.memo"),Ue=Symbol.for("react.lazy"),q=Symbol.iterator;function Ke(e){return e===null||typeof e!="object"?null:(e=q&&e[q]||e["@@iterator"],typeof e=="function"?e:null)}var Z={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},ee=Object.assign,te={};function g(e,t,n){this.props=e,this.context=t,this.refs=te,this.updater=n||Z}g.prototype.isReactComponent={};g.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function ne(){}ne.prototype=g.prototype;function U(e,t,n){this.props=e,this.context=t,this.refs=te,this.updater=n||Z}var K=U.prototype=new ne;K.constructor=U;ee(K,g.prototype);K.isPureReactComponent=!0;var Q=Array.isArray,re=Object.prototype.hasOwnProperty,I={current:null},oe={key:!0,ref:!0,__self:!0,__source:!0};function se(e,t,n){var r,o={},s=null,c=null;if(t!=null)for(r in t.ref!==void 0&&(c=t.ref),t.key!==void 0&&(s=""+t.key),t)re.call(t,r)&&!oe.hasOwnProperty(r)&&(o[r]=t[r]);var i=arguments.length-2;if(i===1)o.children=n;else if(1<i){for(var u=Array(i),l=0;l<i;l++)u[l]=arguments[l+2];o.children=u}if(e&&e.defaultProps)for(r in i=e.defaultProps,i)o[r]===void 0&&(o[r]=i[r]);return{$$typeof:C,type:e,key:s,ref:c,props:o,_owner:I.current}}function Ie(e,t){return{$$typeof:C,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}function k(e){return typeof e=="object"&&e!==null&&e.$$typeof===C}function ke(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,function(n){return t[n]})}var Y=/\/+/g;function F(e,t){return typeof e=="object"&&e!==null&&e.key!=null?ke(""+e.key):t.toString(36)}function A(e,t,n,r,o){var s=typeof e;(s==="undefined"||s==="boolean")&&(e=null);var c=!1;if(e===null)c=!0;else switch(s){case"string":case"number":c=!0;break;case"object":switch(e.$$typeof){case C:case Ae:c=!0}}if(c)return c=e,o=o(c),e=r===""?"."+F(c,0):r,Q(o)?(n="",e!=null&&(n=e.replace(Y,"$&/")+"/"),A(o,t,n,"",function(l){return l})):o!=null&&(k(o)&&(o=Ie(o,n+(!o.key||c&&c.key===o.key?"":(""+o.key).replace(Y,"$&/")+"/")+e)),t.push(o)),1;if(c=0,r=r===""?".":r+":",Q(e))for(var i=0;i<e.length;i++){s=e[i];var u=r+F(s,i);c+=A(s,t,n,u,o)}else if(u=Ke(e),typeof u=="function")for(e=u.call(e),i=0;!(s=e.next()).done;)s=s.value,u=r+F(s,i++),c+=A(s,t,n,u,o);else if(s==="object")throw t=String(e),Error("Objects are not valid as a React child (found: "+(t==="[object Object]"?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return c}function L(e,t,n){if(e==null)return e;var r=[],o=0;return A(e,r,"","",function(s){return t.call(n,s,o++)}),r}function He(e){if(e._status===-1){var t=e._result;t=t(),t.then(function(n){(e._status===0||e._status===-1)&&(e._status=1,e._result=n)},function(n){(e._status===0||e._status===-1)&&(e._status=2,e._result=n)}),e._status===-1&&(e._status=0,e._result=t)}if(e._status===1)return e._result.default;throw e._result}var p={current:null},N={transition:null},je={ReactCurrentDispatcher:p,ReactCurrentBatchConfig:N,ReactCurrentOwner:I};a.Children={map:L,forEach:function(e,t,n){L(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return L(e,function(){t++}),t},toArray:function(e){return L(e,function(t){return t})||[]},only:function(e){if(!k(e))throw Error("React.Children.only expected to receive a single React element child.");return e}};a.Component=g;a.Fragment=Ne;a.Profiler=Pe;a.PureComponent=U;a.StrictMode=Oe;a.Suspense=we;a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=je;a.cloneElement=function(e,t,n){if(e==null)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var r=ee({},e.props),o=e.key,s=e.ref,c=e._owner;if(t!=null){if(t.ref!==void 0&&(s=t.ref,c=I.current),t.key!==void 0&&(o=""+t.key),e.type&&e.type.defaultProps)var i=e.type.defaultProps;for(u in t)re.call(t,u)&&!oe.hasOwnProperty(u)&&(r[u]=t[u]===void 0&&i!==void 0?i[u]:t[u])}var u=arguments.length-2;if(u===1)r.children=n;else if(1<u){i=Array(u);for(var l=0;l<u;l++)i[l]=arguments[l+2];r.children=i}return{$$typeof:C,type:e.type,key:o,ref:s,props:r,_owner:c}};a.createContext=function(e){return e={$$typeof:xe,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},e.Provider={$$typeof:he,_context:e},e.Consumer=e};a.createElement=se;a.createFactory=function(e){var t=se.bind(null,e);return t.type=e,t};a.createRef=function(){return{current:null}};a.forwardRef=function(e){return{$$typeof:De,render:e}};a.isValidElement=k;a.lazy=function(e){return{$$typeof:Ue,_payload:{_status:-1,_result:e},_init:He}};a.memo=function(e,t){return{$$typeof:Fe,type:e,compare:t===void 0?null:t}};a.startTransition=function(e){var t=N.transition;N.transition={};try{e()}finally{N.transition=t}};a.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")};a.useCallback=function(e,t){return p.current.useCallback(e,t)};a.useContext=function(e){return p.current.useContext(e)};a.useDebugValue=function(){};a.useDeferredValue=function(e){return p.current.useDeferredValue(e)};a.useEffect=function(e,t){return p.current.useEffect(e,t)};a.useId=function(){return p.current.useId()};a.useImperativeHandle=function(e,t,n){return p.current.useImperativeHandle(e,t,n)};a.useInsertionEffect=function(e,t){return p.current.useInsertionEffect(e,t)};a.useLayoutEffect=function(e,t){return p.current.useLayoutEffect(e,t)};a.useMemo=function(e,t){return p.current.useMemo(e,t)};a.useReducer=function(e,t,n){return p.current.useReducer(e,t,n)};a.useRef=function(e){return p.current.useRef(e)};a.useState=function(e){return p.current.useState(e)};a.useSyncExternalStore=function(e,t,n){return p.current.useSyncExternalStore(e,t,n)};a.useTransition=function(){return p.current.useTransition()};a.version="18.2.0"});var m=G((_t,ie)=>{"use strict";ie.exports=ae()});var Qe={};_e(Qe,{ComponentLifeCycle:()=>W,createBaseElementComponent:()=>T,createElementComponent:()=>H,createFloatingElementComponent:()=>Be,createFocusTrapElementComponent:()=>Ge,createFormFieldElementComponent:()=>Ve,forwardRef:()=>We,useBaseElementComponent:()=>$e,useDispatch:()=>Xe,useEventListener:()=>O,useIntersectionObserver:()=>Je,useLifeCycle:()=>j,useSafeRef:()=>ze,useWindowEventListener:()=>qe});var W=(r=>(r.CONSTRUCTED="CONSTRUCTED",r.MOUNTED="MOUNTED",r.UNMOUNTED="UNMOUNTED",r))(W||{});function x(...e){}var $=()=>({tc:{log:!0,onCatch:x},tcp:{log:!0,onCatch:x}});var Ce="abcdefghijklmnopqrstuvwxyz";var D="0123456789",Se="ABCDEFGHIJKLMNOPQRSTUVWXYZ",nt=D+Ce+Se,rt=D+"abcdef",ot=D+"ABCDEF";var X=/[^a-zA-Z]/g;var R=class{static module=$()};function v(e,t=R.module.tc.log){try{return e()}catch(n){return t&&console.error(n),R.module.tc.onCatch(n,t),n}}var M=class{static get(t){let n;return n=v(()=>process.env[t],!1),n instanceof Error?"":n||""}static has(t){let n;return n=v(()=>process.env[t],!1),!(n instanceof Error||typeof n>"u")}static get isBlobDefined(){return typeof Blob<"u"}static get isBlobNotDefined(){return typeof Blob>"u"}static get isDevelopment(){return this.NODE_ENV==="development"}static get isNotDevelopment(){return this.NODE_ENV!=="development"}static get isDocumentDefined(){return typeof document<"u"}static get isDocumentNotDefined(){return typeof document>"u"}static get isFetchDefined(){return typeof fetch<"u"}static get isFetchNotDefined(){return typeof fetch>"u"}static get isFileDefined(){return typeof File<"u"}static get isFileNotDefined(){return typeof File>"u"}static get isFormDataDefined(){return typeof FormData<"u"}static get isFormDataNotDefined(){return typeof FormData>"u"}static get isJest(){return typeof v(()=>process.env.JEST_WORKER_ID,!1)=="string"}static get isNotJest(){return typeof v(()=>process.env.JEST_WORKER_ID,!1)!="string"}static get isProduction(){return this.NODE_ENV==="production"}static get isNotProduction(){return this.NODE_ENV!=="production"}static get isTest(){return this.NODE_ENV==="test"}static get isNotTest(){return this.NODE_ENV!=="test"}static get isProcessDefined(){return typeof process<"u"}static get isProcessNotDefined(){return typeof process>"u"}static get isWindowDefined(){return typeof window<"u"}static get isWindowNotDefined(){return typeof window>"u"}static get NODE_ENV(){let t;return t=v(()=>"production",!1),t instanceof Error?"":t||""}};function be(e,t=!1){return e.charAt(0).toUpperCase()+(t?e.slice(1).toLowerCase():e.slice(1))}function J(e){let t,n;t="",n=!1;for(let r of e){if(X.test(r)){n=!0;continue}if(n){t+=r.toUpperCase(),n=!1;continue}t+=r}return be(t)}var Me=new Set(["children","localName","ref","style","className"]),z=new WeakMap,Le=(e,t,n,r,o)=>{let s=o?.[t];s===void 0||n===r?(e[t]=n,n==null&&t in HTMLElement.prototype&&e.removeAttribute(t)):((c,i,u)=>{let l=z.get(c);l===void 0&&z.set(c,l=new Map);let f=l.get(i);u!==void 0?f===void 0?(l.set(i,f={handleEvent:u}),c.addEventListener(i,f)):f.handleEvent=u:f!==void 0&&(l.delete(i),c.removeEventListener(i,f))})(e,s,n)},w=({react:e,tagName:t,elementClass:n,events:r,displayName:o})=>{let s=new Set(Object.keys(r??{})),c=e.forwardRef((i,u)=>{let l=e.useRef(null),f=e.useRef(null),S={},B={};for(let[E,h]of Object.entries(i))Me.has(E)?S[E==="className"?"class":E]=h:s.has(E)||E in n.prototype?B[E]=h:S[E]=h;return e.useLayoutEffect(()=>{if(f.current!==null){for(let E in B)Le(f.current,E,i[E],l.current?l.current[E]:void 0,r);l.current=i}}),e.useLayoutEffect(()=>{var E;(E=f.current)===null||E===void 0||E.removeAttribute("defer-hydration")},[]),S.suppressHydrationWarning=!0,e.createElement(t,{...S,ref:E=>{f.current=E,typeof u=="function"?u(E):u!==null&&(u.current=E)}})});return c.displayName=o??n.name,c};var le=d(m(),1);var ue={onAbort:"abort",onAnimationEnd:"animationend",onAnimationIteration:"animationiteration",onAnimationStart:"animationstart",onAuxClick:"auxclick",onBeforeInput:"beforeinput",onBlur:"blur",onCanPlay:"canplay",onCanPlayThrough:"canplaythrough",onChange:"change",onClick:"click",onCompositionEnd:"compositionend",onCompositionStart:"compositionstart",onCompositionUpdate:"compositionupdate",onContextMenu:"contextmenu",onCopy:"copy",onCut:"cut",onDoubleClick:"doubleclick",onDrag:"drag",onDragEnd:"dragend",onDragEnter:"dragenter",onDragExit:"dragexit",onDragLeave:"dragleave",onDragOver:"dragover",onDragStart:"dragstart",onDrop:"drop",onDurationChange:"durationchange",onEmptied:"emptied",onEncrypted:"encrypted",onEnded:"ended",onError:"error",onEventHandler:"eventhandler",onFocus:"focus",onInput:"input",onInvalid:"invalid",onKeyDown:"keydown",onKeyPress:"keypress",onKeyUp:"keyup",onLoad:"load",onLoadStart:"loadstart",onLoadedData:"loadeddata",onLoadedMetadata:"loadedmetadata",onMouseDown:"mousedown",onMouseEnter:"mouseenter",onMouseLeave:"mouseleave",onMouseMove:"mousemove",onMouseOut:"mouseout",onMouseOver:"mouseover",onMouseUp:"mouseup",onPaste:"paste",onPause:"pause",onPlay:"play",onPlaying:"playing",onPointerCancel:"pointercancel",onPointerDown:"pointerdown",onPointerEnter:"pointerenter",onPointerLeave:"pointerleave",onPointerMove:"pointermove",onPointerOut:"pointerout",onPointerOver:"pointerover",onPointerUp:"pointerup",onProgress:"progress",onRateChange:"ratechange",onReset:"reset",onResize:"resize",onScroll:"scroll",onSeeked:"seeked",onSeeking:"seeking",onSelect:"select",onStalled:"stalled",onSubmit:"submit",onSuspend:"suspend",onTimeUpdate:"timeupdate",onTouchCancel:"touchcancel",onTouchEnd:"touchend",onTouchMove:"touchmove",onTouchStart:"touchstart",onTransitionEnd:"transitionend",onVolumeChange:"volumechange",onWaiting:"waiting",onWheel:"wheel"};function H(e,t,n=[]){return w({elementClass:t,events:{...ue,...n.reduce((r,o)=>({...r,["on"+J(String(o))]:o}),{})},react:le.default,tagName:e})}function T(e,t,n=[]){return H(e,t,["attribute-change","state-change",...n])}function Be(e,t,n){return T(e,t,n)}function Ge(e,t,n=[]){return T(e,t,["focus-trap-activate","focus-trap-deactivate","focus-trap-post-activate","focus-trap-post-deactivate",...n])}function Ve(e,t,n){return T(e,t,n)}var ce=d(m(),1);function We(...e){return(0,ce.forwardRef)(e[0])}var _=d(m(),1);var Ee=d(m(),1);function O(e,t,n,r=[]){(0,Ee.useEffect)(()=>(e.current?.addEventListener(t,n),()=>e.current?.removeEventListener(t,n)),r)}function $e(e){let t=(0,_.useRef)(null),[,n]=(0,_.useReducer)(()=>({}),{}),r=s=>{e?.attribute?.dispatch===!0&&s.detail&&(e.attribute.blacklist&&e.attribute.blacklist.includes(s.detail.name)||e.attribute.whitelist&&!e.attribute.whitelist.includes(s.detail.name)||n())},o=s=>{e?.state?.dispatch===!0&&s.detail&&(e.state.blacklist&&e.state.blacklist.includes(s.detail.name)||e.state.whitelist&&!e.state.whitelist.includes(s.detail.name)||n())};return O(t,"attribute-changed",r,[t.current]),O(t,"state-changed",o,[t.current]),(0,_.useEffect)(()=>n(),[t.current]),{element:t.current,ref:t}}var pe=d(m(),1);var P=d(m(),1);function j(){let e=(0,P.useRef)("CONSTRUCTED");return(0,P.useEffect)(()=>(e.current="MOUNTED",()=>{e.current="UNMOUNTED"})),e}function Xe(e){let t=j(),n=(0,pe.useReducer)(()=>({}),{});return()=>{switch(t.current){case"CONSTRUCTED":case"UNMOUNTED":break;case"MOUNTED":n[1](),e&&e();break}}}var y=d(m(),1);function Je(e,t){let n=(0,y.useRef)(),[r,o]=(0,y.useState)([]),s=(0,y.useMemo)(()=>r.some(l=>l.isIntersecting),[r]),c=(0,y.useMemo)(()=>r.every(l=>l.isIntersecting),[r]),i=s,u=l=>{o(l)};return(0,y.useEffect)(()=>{n.current=new IntersectionObserver(u,t);for(let l of e){if(!l.current)return;n.current.observe(l.current)}return()=>n.current?.disconnect()},[]),{entries:r,observer:n,areSomeIntersecting:s,isEveryIntersecting:c,isIntersecting:i}}var fe=d(m(),1);function ze(e,t){return(0,fe.useRef)(M.isWindowDefined?document.createElement(e,t):{current:{}})}var me=d(m(),1);function qe(e,t,n=[]){(0,me.useEffect)(()=>(window.addEventListener(e,t),()=>window.removeEventListener(e,t)),n)}return Re(Qe);})();
1
+ "use strict";var AracnaReact=(()=>{var de=Object.create;var M=Object.defineProperty;var ye=Object.getOwnPropertyDescriptor;var Te=Object.getOwnPropertyNames;var ve=Object.getPrototypeOf,_e=Object.prototype.hasOwnProperty;var G=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),Re=(e,t)=>{for(var n in t)M(e,n,{get:t[n],enumerable:!0})},V=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of Te(t))!_e.call(e,o)&&o!==n&&M(e,o,{get:()=>t[o],enumerable:!(r=ye(t,o))||r.enumerable});return e};var d=(e,t,n)=>(n=e!=null?de(ve(e)):{},V(t||!e||!e.__esModule?M(n,"default",{value:e,enumerable:!0}):n,e)),ge=e=>V(M({},"__esModule",{value:!0}),e);var ae=G(a=>{"use strict";var C=Symbol.for("react.element"),Ae=Symbol.for("react.portal"),Le=Symbol.for("react.fragment"),Oe=Symbol.for("react.strict_mode"),Pe=Symbol.for("react.profiler"),he=Symbol.for("react.provider"),De=Symbol.for("react.context"),xe=Symbol.for("react.forward_ref"),we=Symbol.for("react.suspense"),Fe=Symbol.for("react.memo"),Ue=Symbol.for("react.lazy"),q=Symbol.iterator;function Ke(e){return e===null||typeof e!="object"?null:(e=q&&e[q]||e["@@iterator"],typeof e=="function"?e:null)}var Z={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},ee=Object.assign,te={};function _(e,t,n){this.props=e,this.context=t,this.refs=te,this.updater=n||Z}_.prototype.isReactComponent={};_.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};_.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function ne(){}ne.prototype=_.prototype;function U(e,t,n){this.props=e,this.context=t,this.refs=te,this.updater=n||Z}var K=U.prototype=new ne;K.constructor=U;ee(K,_.prototype);K.isPureReactComponent=!0;var Q=Array.isArray,re=Object.prototype.hasOwnProperty,I={current:null},oe={key:!0,ref:!0,__self:!0,__source:!0};function se(e,t,n){var r,o={},s=null,c=null;if(t!=null)for(r in t.ref!==void 0&&(c=t.ref),t.key!==void 0&&(s=""+t.key),t)re.call(t,r)&&!oe.hasOwnProperty(r)&&(o[r]=t[r]);var i=arguments.length-2;if(i===1)o.children=n;else if(1<i){for(var u=Array(i),l=0;l<i;l++)u[l]=arguments[l+2];o.children=u}if(e&&e.defaultProps)for(r in i=e.defaultProps,i)o[r]===void 0&&(o[r]=i[r]);return{$$typeof:C,type:e,key:s,ref:c,props:o,_owner:I.current}}function Ie(e,t){return{$$typeof:C,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}function k(e){return typeof e=="object"&&e!==null&&e.$$typeof===C}function ke(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,function(n){return t[n]})}var Y=/\/+/g;function F(e,t){return typeof e=="object"&&e!==null&&e.key!=null?ke(""+e.key):t.toString(36)}function A(e,t,n,r,o){var s=typeof e;(s==="undefined"||s==="boolean")&&(e=null);var c=!1;if(e===null)c=!0;else switch(s){case"string":case"number":c=!0;break;case"object":switch(e.$$typeof){case C:case Ae:c=!0}}if(c)return c=e,o=o(c),e=r===""?"."+F(c,0):r,Q(o)?(n="",e!=null&&(n=e.replace(Y,"$&/")+"/"),A(o,t,n,"",function(l){return l})):o!=null&&(k(o)&&(o=Ie(o,n+(!o.key||c&&c.key===o.key?"":(""+o.key).replace(Y,"$&/")+"/")+e)),t.push(o)),1;if(c=0,r=r===""?".":r+":",Q(e))for(var i=0;i<e.length;i++){s=e[i];var u=r+F(s,i);c+=A(s,t,n,u,o)}else if(u=Ke(e),typeof u=="function")for(e=u.call(e),i=0;!(s=e.next()).done;)s=s.value,u=r+F(s,i++),c+=A(s,t,n,u,o);else if(s==="object")throw t=String(e),Error("Objects are not valid as a React child (found: "+(t==="[object Object]"?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return c}function N(e,t,n){if(e==null)return e;var r=[],o=0;return A(e,r,"","",function(s){return t.call(n,s,o++)}),r}function He(e){if(e._status===-1){var t=e._result;t=t(),t.then(function(n){(e._status===0||e._status===-1)&&(e._status=1,e._result=n)},function(n){(e._status===0||e._status===-1)&&(e._status=2,e._result=n)}),e._status===-1&&(e._status=0,e._result=t)}if(e._status===1)return e._result.default;throw e._result}var p={current:null},L={transition:null},Be={ReactCurrentDispatcher:p,ReactCurrentBatchConfig:L,ReactCurrentOwner:I};a.Children={map:N,forEach:function(e,t,n){N(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return N(e,function(){t++}),t},toArray:function(e){return N(e,function(t){return t})||[]},only:function(e){if(!k(e))throw Error("React.Children.only expected to receive a single React element child.");return e}};a.Component=_;a.Fragment=Le;a.Profiler=Pe;a.PureComponent=U;a.StrictMode=Oe;a.Suspense=we;a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Be;a.cloneElement=function(e,t,n){if(e==null)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var r=ee({},e.props),o=e.key,s=e.ref,c=e._owner;if(t!=null){if(t.ref!==void 0&&(s=t.ref,c=I.current),t.key!==void 0&&(o=""+t.key),e.type&&e.type.defaultProps)var i=e.type.defaultProps;for(u in t)re.call(t,u)&&!oe.hasOwnProperty(u)&&(r[u]=t[u]===void 0&&i!==void 0?i[u]:t[u])}var u=arguments.length-2;if(u===1)r.children=n;else if(1<u){i=Array(u);for(var l=0;l<u;l++)i[l]=arguments[l+2];r.children=i}return{$$typeof:C,type:e.type,key:o,ref:s,props:r,_owner:c}};a.createContext=function(e){return e={$$typeof:De,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},e.Provider={$$typeof:he,_context:e},e.Consumer=e};a.createElement=se;a.createFactory=function(e){var t=se.bind(null,e);return t.type=e,t};a.createRef=function(){return{current:null}};a.forwardRef=function(e){return{$$typeof:xe,render:e}};a.isValidElement=k;a.lazy=function(e){return{$$typeof:Ue,_payload:{_status:-1,_result:e},_init:He}};a.memo=function(e,t){return{$$typeof:Fe,type:e,compare:t===void 0?null:t}};a.startTransition=function(e){var t=L.transition;L.transition={};try{e()}finally{L.transition=t}};a.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")};a.useCallback=function(e,t){return p.current.useCallback(e,t)};a.useContext=function(e){return p.current.useContext(e)};a.useDebugValue=function(){};a.useDeferredValue=function(e){return p.current.useDeferredValue(e)};a.useEffect=function(e,t){return p.current.useEffect(e,t)};a.useId=function(){return p.current.useId()};a.useImperativeHandle=function(e,t,n){return p.current.useImperativeHandle(e,t,n)};a.useInsertionEffect=function(e,t){return p.current.useInsertionEffect(e,t)};a.useLayoutEffect=function(e,t){return p.current.useLayoutEffect(e,t)};a.useMemo=function(e,t){return p.current.useMemo(e,t)};a.useReducer=function(e,t,n){return p.current.useReducer(e,t,n)};a.useRef=function(e){return p.current.useRef(e)};a.useState=function(e){return p.current.useState(e)};a.useSyncExternalStore=function(e,t,n){return p.current.useSyncExternalStore(e,t,n)};a.useTransition=function(){return p.current.useTransition()};a.version="18.2.0"});var m=G((Rt,ie)=>{"use strict";ie.exports=ae()});var Qe={};Re(Qe,{ComponentLifeCycle:()=>W,createBaseElementComponent:()=>T,createElementComponent:()=>H,createFloatingElementComponent:()=>je,createFocusTrapElementComponent:()=>Ge,createFormFieldElementComponent:()=>Ve,forwardRef:()=>We,useBaseElementComponent:()=>$e,useDispatch:()=>Xe,useEventListener:()=>O,useIntersectionObserver:()=>Je,useLifeCycle:()=>B,useSafeRef:()=>ze,useWindowEventListener:()=>qe});var W=(r=>(r.CONSTRUCTED="CONSTRUCTED",r.MOUNTED="MOUNTED",r.UNMOUNTED="UNMOUNTED",r))(W||{});function D(...e){}var $=()=>({tc:{log:!0,onCatch:D},tcp:{log:!0,onCatch:D}});var Ce="abcdefghijklmnopqrstuvwxyz";var x="0123456789",Se="ABCDEFGHIJKLMNOPQRSTUVWXYZ",nt=x+Ce+Se,rt=x+"abcdef",ot=x+"ABCDEF";var X=/[^a-zA-Z0-9]/g;var g=class{static module=$()};function v(e,t=g.module.tc.log){try{return e()}catch(n){return t&&console.error(n),g.module.tc.onCatch(n,t),n}}var b=class{static get(t){let n;return n=v(()=>process.env[t],!1),n instanceof Error?"":n||""}static has(t){let n;return n=v(()=>process.env[t],!1),!(n instanceof Error||typeof n>"u")}static get isBlobDefined(){return typeof Blob<"u"}static get isBlobNotDefined(){return typeof Blob>"u"}static get isDevelopment(){return this.NODE_ENV==="development"}static get isNotDevelopment(){return this.NODE_ENV!=="development"}static get isDocumentDefined(){return typeof document<"u"}static get isDocumentNotDefined(){return typeof document>"u"}static get isFetchDefined(){return typeof fetch<"u"}static get isFetchNotDefined(){return typeof fetch>"u"}static get isFileDefined(){return typeof File<"u"}static get isFileNotDefined(){return typeof File>"u"}static get isFormDataDefined(){return typeof FormData<"u"}static get isFormDataNotDefined(){return typeof FormData>"u"}static get isJest(){return typeof v(()=>process.env.JEST_WORKER_ID,!1)=="string"}static get isNotJest(){return typeof v(()=>process.env.JEST_WORKER_ID,!1)!="string"}static get isProduction(){return this.NODE_ENV==="production"}static get isNotProduction(){return this.NODE_ENV!=="production"}static get isTest(){return this.NODE_ENV==="test"}static get isNotTest(){return this.NODE_ENV!=="test"}static get isProcessDefined(){return typeof process<"u"}static get isProcessNotDefined(){return typeof process>"u"}static get isWindowDefined(){return typeof window<"u"}static get isWindowNotDefined(){return typeof window>"u"}static get NODE_ENV(){let t;return t=v(()=>"production",!1),t instanceof Error?"":t||""}};function Me(e,t=!1){return e.charAt(0).toUpperCase()+(t?e.slice(1).toLowerCase():e.slice(1))}function J(e){let t,n;t="",n=!1;for(let r of e){if(X.test(r)){n=!0;continue}if(n){t+=r.toUpperCase(),n=!1;continue}t+=r}return Me(t)}var be=new Set(["children","localName","ref","style","className"]),z=new WeakMap,Ne=(e,t,n,r,o)=>{let s=o?.[t];s===void 0||n===r?(e[t]=n,n==null&&t in HTMLElement.prototype&&e.removeAttribute(t)):((c,i,u)=>{let l=z.get(c);l===void 0&&z.set(c,l=new Map);let f=l.get(i);u!==void 0?f===void 0?(l.set(i,f={handleEvent:u}),c.addEventListener(i,f)):f.handleEvent=u:f!==void 0&&(l.delete(i),c.removeEventListener(i,f))})(e,s,n)},w=({react:e,tagName:t,elementClass:n,events:r,displayName:o})=>{let s=new Set(Object.keys(r??{})),c=e.forwardRef((i,u)=>{let l=e.useRef(null),f=e.useRef(null),S={},j={};for(let[E,h]of Object.entries(i))be.has(E)?S[E==="className"?"class":E]=h:s.has(E)||E in n.prototype?j[E]=h:S[E]=h;return e.useLayoutEffect(()=>{if(f.current!==null){for(let E in j)Ne(f.current,E,i[E],l.current?l.current[E]:void 0,r);l.current=i}}),e.useLayoutEffect(()=>{var E;(E=f.current)===null||E===void 0||E.removeAttribute("defer-hydration")},[]),S.suppressHydrationWarning=!0,e.createElement(t,{...S,ref:E=>{f.current=E,typeof u=="function"?u(E):u!==null&&(u.current=E)}})});return c.displayName=o??n.name,c};var le=d(m(),1);var ue={onAbort:"abort",onAnimationEnd:"animationend",onAnimationIteration:"animationiteration",onAnimationStart:"animationstart",onAuxClick:"auxclick",onBeforeInput:"beforeinput",onBlur:"blur",onCanPlay:"canplay",onCanPlayThrough:"canplaythrough",onChange:"change",onClick:"click",onCompositionEnd:"compositionend",onCompositionStart:"compositionstart",onCompositionUpdate:"compositionupdate",onContextMenu:"contextmenu",onCopy:"copy",onCut:"cut",onDoubleClick:"doubleclick",onDrag:"drag",onDragEnd:"dragend",onDragEnter:"dragenter",onDragExit:"dragexit",onDragLeave:"dragleave",onDragOver:"dragover",onDragStart:"dragstart",onDrop:"drop",onDurationChange:"durationchange",onEmptied:"emptied",onEncrypted:"encrypted",onEnded:"ended",onError:"error",onEventHandler:"eventhandler",onFocus:"focus",onInput:"input",onInvalid:"invalid",onKeyDown:"keydown",onKeyPress:"keypress",onKeyUp:"keyup",onLoad:"load",onLoadStart:"loadstart",onLoadedData:"loadeddata",onLoadedMetadata:"loadedmetadata",onMouseDown:"mousedown",onMouseEnter:"mouseenter",onMouseLeave:"mouseleave",onMouseMove:"mousemove",onMouseOut:"mouseout",onMouseOver:"mouseover",onMouseUp:"mouseup",onPaste:"paste",onPause:"pause",onPlay:"play",onPlaying:"playing",onPointerCancel:"pointercancel",onPointerDown:"pointerdown",onPointerEnter:"pointerenter",onPointerLeave:"pointerleave",onPointerMove:"pointermove",onPointerOut:"pointerout",onPointerOver:"pointerover",onPointerUp:"pointerup",onProgress:"progress",onRateChange:"ratechange",onReset:"reset",onResize:"resize",onScroll:"scroll",onSeeked:"seeked",onSeeking:"seeking",onSelect:"select",onStalled:"stalled",onSubmit:"submit",onSuspend:"suspend",onTimeUpdate:"timeupdate",onTouchCancel:"touchcancel",onTouchEnd:"touchend",onTouchMove:"touchmove",onTouchStart:"touchstart",onTransitionEnd:"transitionend",onVolumeChange:"volumechange",onWaiting:"waiting",onWheel:"wheel"};function H(e,t,n=[]){return w({elementClass:t,events:{...ue,...n.reduce((r,o)=>({...r,["on"+J(String(o))]:o}),{})},react:le.default,tagName:e})}function T(e,t,n=[]){return H(e,t,["attribute-change","state-change",...n])}function je(e,t,n){return T(e,t,n)}function Ge(e,t,n=[]){return T(e,t,["focus-trap-activate","focus-trap-deactivate","focus-trap-post-activate","focus-trap-post-deactivate",...n])}function Ve(e,t,n){return T(e,t,n)}var ce=d(m(),1);function We(...e){return(0,ce.forwardRef)(e[0])}var R=d(m(),1);var Ee=d(m(),1);function O(e,t,n,r=[]){(0,Ee.useEffect)(()=>(e.current?.addEventListener(t,n),()=>e.current?.removeEventListener(t,n)),r)}function $e(e){let t=(0,R.useRef)(null),[,n]=(0,R.useReducer)(()=>({}),{}),r=s=>{e?.attribute?.dispatch===!0&&s.detail&&(e.attribute.blacklist&&e.attribute.blacklist.includes(s.detail.name)||e.attribute.whitelist&&!e.attribute.whitelist.includes(s.detail.name)||n())},o=s=>{e?.state?.dispatch===!0&&s.detail&&(e.state.blacklist&&e.state.blacklist.includes(s.detail.name)||e.state.whitelist&&!e.state.whitelist.includes(s.detail.name)||n())};return O(t,"attribute-changed",r,[t.current]),O(t,"state-changed",o,[t.current]),(0,R.useEffect)(()=>n(),[t.current]),{element:t.current,ref:t}}var pe=d(m(),1);var P=d(m(),1);function B(){let e=(0,P.useRef)("CONSTRUCTED");return(0,P.useEffect)(()=>(e.current="MOUNTED",()=>{e.current="UNMOUNTED"})),e}function Xe(e){let t=B(),n=(0,pe.useReducer)(()=>({}),{});return()=>{switch(t.current){case"CONSTRUCTED":case"UNMOUNTED":break;case"MOUNTED":n[1](),e&&e();break}}}var y=d(m(),1);function Je(e,t){let n=(0,y.useRef)(),[r,o]=(0,y.useState)([]),s=(0,y.useMemo)(()=>r.some(l=>l.isIntersecting),[r]),c=(0,y.useMemo)(()=>r.every(l=>l.isIntersecting),[r]),i=s,u=l=>{o(l)};return(0,y.useEffect)(()=>{n.current=new IntersectionObserver(u,t);for(let l of e){if(!l.current)return;n.current.observe(l.current)}return()=>n.current?.disconnect()},[]),{entries:r,observer:n,areSomeIntersecting:s,isEveryIntersecting:c,isIntersecting:i}}var fe=d(m(),1);function ze(e,t){return(0,fe.useRef)(b.isWindowDefined?document.createElement(e,t):{current:{}})}var me=d(m(),1);function qe(e,t,n=[]){(0,me.useEffect)(()=>(window.addEventListener(e,t),()=>window.removeEventListener(e,t)),n)}return ge(Qe);})();
2
2
  /*! Bundled license information:
3
3
 
4
4
  react/cjs/react.production.min.js:
package/package.json CHANGED
@@ -25,10 +25,8 @@
25
25
  },
26
26
  "exports": {
27
27
  "import": "./index.js",
28
- "require": {
29
- "default": "./index.cjs",
30
- "types": "./index.d.ts"
31
- }
28
+ "require": "./index.cjs",
29
+ "types": "./index.d.ts"
32
30
  },
33
31
  "license": "MIT",
34
32
  "main": "index.cjs",
@@ -48,7 +46,7 @@
48
46
  },
49
47
  "sideEffects": false,
50
48
  "type": "module",
51
- "version": "1.0.30",
49
+ "version": "1.0.31",
52
50
  "dependencies": {
53
51
  "@lit-labs/react": "^2.1.0"
54
52
  }