@m3e/react 2.1.3 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/all.js +114 -1
  2. package/dist/all.js.map +1 -1
  3. package/dist/all.min.js +1 -1
  4. package/dist/all.min.js.map +1 -1
  5. package/dist/autocomplete.js.map +1 -1
  6. package/dist/autocomplete.min.js.map +1 -1
  7. package/dist/calendar.js +33 -0
  8. package/dist/calendar.js.map +1 -0
  9. package/dist/calendar.min.js +7 -0
  10. package/dist/calendar.min.js.map +1 -0
  11. package/dist/datepicker.js +52 -0
  12. package/dist/datepicker.js.map +1 -0
  13. package/dist/datepicker.min.js +7 -0
  14. package/dist/datepicker.min.js.map +1 -0
  15. package/dist/paginator.js.map +1 -1
  16. package/dist/paginator.min.js.map +1 -1
  17. package/dist/search.js +58 -0
  18. package/dist/search.js.map +1 -0
  19. package/dist/search.min.js +7 -0
  20. package/dist/search.min.js.map +1 -0
  21. package/dist/src/all.d.ts +3 -0
  22. package/dist/src/all.d.ts.map +1 -1
  23. package/dist/src/autocomplete/Autocomplete.d.ts +3 -3
  24. package/dist/src/autocomplete/Autocomplete.d.ts.map +1 -1
  25. package/dist/src/calendar/Calendar.d.ts +19 -0
  26. package/dist/src/calendar/Calendar.d.ts.map +1 -0
  27. package/dist/src/calendar/index.d.ts +2 -0
  28. package/dist/src/calendar/index.d.ts.map +1 -0
  29. package/dist/src/datepicker/Datepicker.d.ts +19 -0
  30. package/dist/src/datepicker/Datepicker.d.ts.map +1 -0
  31. package/dist/src/datepicker/DatepickerToggle.d.ts +17 -0
  32. package/dist/src/datepicker/DatepickerToggle.d.ts.map +1 -0
  33. package/dist/src/datepicker/index.d.ts +3 -0
  34. package/dist/src/datepicker/index.d.ts.map +1 -0
  35. package/dist/src/paginator/Paginator.d.ts +3 -3
  36. package/dist/src/paginator/Paginator.d.ts.map +1 -1
  37. package/dist/src/search/SearchBar.d.ts +19 -0
  38. package/dist/src/search/SearchBar.d.ts.map +1 -0
  39. package/dist/src/search/SearchView.d.ts +23 -0
  40. package/dist/src/search/SearchView.d.ts.map +1 -0
  41. package/dist/src/search/index.d.ts +3 -0
  42. package/dist/src/search/index.d.ts.map +1 -0
  43. package/package.json +14 -2
package/dist/all.js CHANGED
@@ -12,10 +12,12 @@ import { M3eBadgeElement } from '@m3e/web/badge';
12
12
  import { M3eBottomSheetElement, M3eBottomSheetActionElement, M3eBottomSheetTriggerElement } from '@m3e/web/bottom-sheet';
13
13
  import { M3eButtonElement } from '@m3e/web/button';
14
14
  import { M3eButtonGroupElement } from '@m3e/web/button-group';
15
+ import { M3eCalendarElement } from '@m3e/web/calendar';
15
16
  import { M3eCardElement } from '@m3e/web/card';
16
17
  import { M3eCheckboxElement } from '@m3e/web/checkbox';
17
18
  import { M3eAssistChipElement, M3eChipElement, M3eChipSetElement, M3eFilterChipElement, M3eFilterChipSetElement, M3eInputChipElement, M3eInputChipSetElement, M3eSuggestionChipElement } from '@m3e/web/chips';
18
19
  import { M3eCollapsibleElement, M3eElevationElement, M3eFocusRingElement, M3ePseudoCheckboxElement, M3ePseudoRadioElement, M3eRippleElement, M3eScrollContainerElement, M3eSlideElement, M3eStateLayerElement, M3eTextHighlightElement, M3eTextOverflowElement } from '@m3e/web/core';
20
+ import { M3eDatepickerElement, M3eDatepickerToggleElement } from '@m3e/web/datepicker';
19
21
  import { M3eDialogElement, M3eDialogActionElement, M3eDialogTriggerElement } from '@m3e/web/dialog';
20
22
  import { M3eDividerElement } from '@m3e/web/divider';
21
23
  import { M3eDrawerContainerElement, M3eDrawerToggleElement } from '@m3e/web/drawer-container';
@@ -36,6 +38,7 @@ import { M3eOptionElement, M3eOptGroupElement } from '@m3e/web/option';
36
38
  import { M3ePaginatorElement } from '@m3e/web/paginator';
37
39
  import { M3eCircularProgressIndicatorElement, M3eLinearProgressIndicatorElement } from '@m3e/web/progress-indicator';
38
40
  import { M3eRadioElement, M3eRadioGroupElement } from '@m3e/web/radio-group';
41
+ import { M3eSearchBarElement, M3eSearchViewElement } from '@m3e/web/search';
39
42
  import { M3eSegmentedButtonElement, M3eButtonSegmentElement } from '@m3e/web/segmented-button';
40
43
  import { M3eSelectElement } from '@m3e/web/select';
41
44
  import { M3eShapeElement } from '@m3e/web/shape';
@@ -239,6 +242,28 @@ const M3eButtonGroup = createComponent({
239
242
  react: React
240
243
  });
241
244
 
245
+ /**
246
+ * React binding for the `m3e-calendar` Web Component from `@m3e/web/calendar`.
247
+ *
248
+ * This component renders the underlying `<m3e-calendar>` element and exposes its
249
+ * properties, attributes, and events through an idiomatic React interface.
250
+ *
251
+ * Props map directly to element properties, and event handlers receive the
252
+ * native DOM events dispatched by the component. Refs are forwarded to the
253
+ * underlying `<m3e-calendar>` instance for imperative access.
254
+ *
255
+ * See the `m3e-calendar` documentation for full details on behavior,
256
+ * styling, accessibility, and supported events.
257
+ */
258
+ const M3eCalendar = createComponent({
259
+ tagName: "m3e-calendar",
260
+ elementClass: M3eCalendarElement,
261
+ react: React,
262
+ events: {
263
+ onChange: "change"
264
+ }
265
+ });
266
+
242
267
  /**
243
268
  * React binding for the `m3e-card` Web Component from `@m3e/web/card`.
244
269
  *
@@ -675,6 +700,47 @@ const M3eTextOverflow = createComponent({
675
700
  react: React
676
701
  });
677
702
 
703
+ /**
704
+ * React binding for the `m3e-datepicker` Web Component from `@m3e/web/datepicker`.
705
+ *
706
+ * This component renders the underlying `<m3e-datepicker>` element and exposes its
707
+ * properties, attributes, and events through an idiomatic React interface.
708
+ *
709
+ * Props map directly to element properties, and event handlers receive the
710
+ * native DOM events dispatched by the component. Refs are forwarded to the
711
+ * underlying `<m3e-datepicker>` instance for imperative access.
712
+ *
713
+ * See the `m3e-datepicker` documentation for full details on behavior,
714
+ * styling, accessibility, and supported events.
715
+ */
716
+ const M3eDatepicker = createComponent({
717
+ tagName: "m3e-datepicker",
718
+ elementClass: M3eDatepickerElement,
719
+ react: React,
720
+ events: {
721
+ onChange: "change"
722
+ }
723
+ });
724
+
725
+ /**
726
+ * React binding for the `m3e-datepicker-toggle` Web Component from `@m3e/web/datepicker`.
727
+ *
728
+ * This component renders the underlying `<m3e-datepicker-toggle>` element and exposes its
729
+ * properties, attributes, and events through an idiomatic React interface.
730
+ *
731
+ * Props map directly to element properties, and event handlers receive the
732
+ * native DOM events dispatched by the component. Refs are forwarded to the
733
+ * underlying `<m3e-datepicker-toggle>` instance for imperative access.
734
+ *
735
+ * See the `m3e-datepicker-toggle` for full details on behavior,
736
+ * styling, accessibility, and supported events.
737
+ */
738
+ const M3eDatepickerToggle = createComponent({
739
+ tagName: "m3e-datepicker-toggle",
740
+ elementClass: M3eDatepickerToggleElement,
741
+ react: React
742
+ });
743
+
678
744
  /**
679
745
  * React binding for the `m3e-dialog` Web Component from `@m3e/web/dialog`.
680
746
  *
@@ -1602,6 +1668,53 @@ const M3eRadioGroup = createComponent({
1602
1668
  }
1603
1669
  });
1604
1670
 
1671
+ /**
1672
+ * React binding for the `m3e-search-bar` Web Component from `@m3e/web/search`.
1673
+ *
1674
+ * This component renders the underlying `<m3e-search-bar>` element and exposes its
1675
+ * properties, attributes, and events through an idiomatic React interface.
1676
+ *
1677
+ * Props map directly to element properties, and event handlers receive the
1678
+ * native DOM events dispatched by the component. Refs are forwarded to the
1679
+ * underlying `<m3e-search-bar>` instance for imperative access.
1680
+ *
1681
+ * See the `m3e-search-bar` documentation for full details on behavior, styling,
1682
+ * accessibility, and supported events.
1683
+ */
1684
+ const M3eSearchBar = createComponent({
1685
+ tagName: "m3e-search-bar",
1686
+ elementClass: M3eSearchBarElement,
1687
+ react: React,
1688
+ events: {
1689
+ onClear: "clear"
1690
+ }
1691
+ });
1692
+
1693
+ /**
1694
+ * React binding for the `m3e-search-view` Web Component from `@m3e/web/search`.
1695
+ *
1696
+ * This component renders the underlying `<m3e-search-view>` element and exposes its
1697
+ * properties, attributes, and events through an idiomatic React interface.
1698
+ *
1699
+ * Props map directly to element properties, and event handlers receive the
1700
+ * native DOM events dispatched by the component. Refs are forwarded to the
1701
+ * underlying `<m3e-search-view>` instance for imperative access.
1702
+ *
1703
+ * See the `m3e-search-view` documentation for full details on behavior, styling,
1704
+ * accessibility, and supported events.
1705
+ */
1706
+ const M3eSearchView = createComponent({
1707
+ tagName: "m3e-search-view",
1708
+ elementClass: M3eSearchViewElement,
1709
+ react: React,
1710
+ events: {
1711
+ onClear: "clear",
1712
+ onQuery: "query",
1713
+ onBeforeToggle: "beforetoggle",
1714
+ onToggle: "toggle"
1715
+ }
1716
+ });
1717
+
1605
1718
  /**
1606
1719
  * React binding for the `m3e-segmented-button` Web Component from `@m3e/web/segmented-button`.
1607
1720
  *
@@ -2123,5 +2236,5 @@ const M3eTooltip = createComponent({
2123
2236
  react: React
2124
2237
  });
2125
2238
 
2126
- export { M3eAccordion, M3eActionList, M3eAppBar, M3eAssistChip, M3eAutocomplete, M3eAvatar, M3eBadge, M3eBottomSheet, M3eBottomSheetAction, M3eBottomSheetTrigger, M3eButton, M3eButtonGroup, M3eButtonSegment, M3eCard, M3eCheckbox, M3eChip, M3eChipSet, M3eCircularProgressIndicator, M3eCollapsible, M3eDialog, M3eDialogAction, M3eDialogTrigger, M3eDivider, M3eDrawerContainer, M3eDrawerToggle, M3eElevation, M3eExpandableListItem, M3eExpansionPanel, M3eFab, M3eFabMenu, M3eFabMenuItem, M3eFabMenuTrigger, M3eFilterChip, M3eFilterChipSet, M3eFocusRing, M3eFormField, M3eHeading, M3eIcon, M3eIconButton, M3eInputChip, M3eInputChipSet, M3eLinearProgressIndicator, M3eList, M3eListAction, M3eListItem, M3eListOption, M3eLoadingIndicator, M3eMenu, M3eMenuItem, M3eMenuItemCheckbox, M3eMenuItemGroup, M3eMenuItemRadio, M3eMenuTrigger, M3eNavBar, M3eNavItem, M3eNavMenu, M3eNavMenuItem, M3eNavMenuItemGroup, M3eNavRail, M3eNavRailToggle, M3eOptGroup, M3eOption, M3ePaginator, M3ePseudoCheckbox, M3ePseudoRadio, M3eRadio, M3eRadioGroup, M3eRichTooltip, M3eRichTooltipAction, M3eRipple, M3eScrollContainer, M3eSegmentedButton, M3eSelect, M3eSelectionList, M3eShape, M3eSlide, M3eSlideGroup, M3eSlider, M3eSliderThumb, M3eSplitButton, M3eStateLayer, M3eStep, M3eStepPanel, M3eStepper, M3eStepperNext, M3eStepperPrevious, M3eStepperReset, M3eSuggestionChip, M3eSwitch, M3eTab, M3eTabPanel, M3eTabs, M3eTextHighlight, M3eTextOverflow, M3eTextareaAutosize, M3eTheme, M3eToc, M3eToolbar, M3eTooltip };
2239
+ export { M3eAccordion, M3eActionList, M3eAppBar, M3eAssistChip, M3eAutocomplete, M3eAvatar, M3eBadge, M3eBottomSheet, M3eBottomSheetAction, M3eBottomSheetTrigger, M3eButton, M3eButtonGroup, M3eButtonSegment, M3eCalendar, M3eCard, M3eCheckbox, M3eChip, M3eChipSet, M3eCircularProgressIndicator, M3eCollapsible, M3eDatepicker, M3eDatepickerToggle, M3eDialog, M3eDialogAction, M3eDialogTrigger, M3eDivider, M3eDrawerContainer, M3eDrawerToggle, M3eElevation, M3eExpandableListItem, M3eExpansionPanel, M3eFab, M3eFabMenu, M3eFabMenuItem, M3eFabMenuTrigger, M3eFilterChip, M3eFilterChipSet, M3eFocusRing, M3eFormField, M3eHeading, M3eIcon, M3eIconButton, M3eInputChip, M3eInputChipSet, M3eLinearProgressIndicator, M3eList, M3eListAction, M3eListItem, M3eListOption, M3eLoadingIndicator, M3eMenu, M3eMenuItem, M3eMenuItemCheckbox, M3eMenuItemGroup, M3eMenuItemRadio, M3eMenuTrigger, M3eNavBar, M3eNavItem, M3eNavMenu, M3eNavMenuItem, M3eNavMenuItemGroup, M3eNavRail, M3eNavRailToggle, M3eOptGroup, M3eOption, M3ePaginator, M3ePseudoCheckbox, M3ePseudoRadio, M3eRadio, M3eRadioGroup, M3eRichTooltip, M3eRichTooltipAction, M3eRipple, M3eScrollContainer, M3eSearchBar, M3eSearchView, M3eSegmentedButton, M3eSelect, M3eSelectionList, M3eShape, M3eSlide, M3eSlideGroup, M3eSlider, M3eSliderThumb, M3eSplitButton, M3eStateLayer, M3eStep, M3eStepPanel, M3eStepper, M3eStepperNext, M3eStepperPrevious, M3eStepperReset, M3eSuggestionChip, M3eSwitch, M3eTab, M3eTabPanel, M3eTabs, M3eTextHighlight, M3eTextOverflow, M3eTextareaAutosize, M3eTheme, M3eToc, M3eToolbar, M3eTooltip };
2127
2240
  //# sourceMappingURL=all.js.map