@m3e/react 2.5.15 → 2.6.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.
package/dist/all.js CHANGED
@@ -54,6 +54,7 @@ import { M3eSwitchElement } from '@m3e/web/switch';
54
54
  import { M3eTabElement, M3eTabPanelElement, M3eTabsElement } from '@m3e/web/tabs';
55
55
  import { M3eTextareaAutosizeElement } from '@m3e/web/textarea-autosize';
56
56
  import { M3eThemeElement, M3eThemeIconElement } from '@m3e/web/theme';
57
+ import { M3eTimepickerElement, M3eTimepickerDialElement, M3eTimepickerInputElement, M3eTimepickerToggleElement } from '@m3e/web/timepicker';
57
58
  import { M3eTocElement } from '@m3e/web/toc';
58
59
  import { M3eToolbarElement } from '@m3e/web/toolbar';
59
60
  import { M3eRichTooltipElement, M3eRichTooltipActionElement, M3eTooltipElement } from '@m3e/web/tooltip';
@@ -837,7 +838,9 @@ const M3eDatepicker = o({
837
838
  elementClass: M3eDatepickerElement,
838
839
  react: React,
839
840
  events: {
840
- onChange: "change"
841
+ onChange: "change",
842
+ onBeforeToggle: "beforetoggle",
843
+ onToggle: "toggle"
841
844
  }
842
845
  });
843
846
 
@@ -2345,6 +2348,95 @@ const M3eThemeIcon = o({
2345
2348
  react: React
2346
2349
  });
2347
2350
 
2351
+ /**
2352
+ * React binding for the `m3e-timepicker` Web Component from `@m3e/web/timepicker`.
2353
+ *
2354
+ * This component renders the underlying `<m3e-timepicker>` element and exposes its
2355
+ * properties, attributes, and events through an idiomatic React interface.
2356
+ *
2357
+ * Props map directly to element properties, and event handlers receive the
2358
+ * native DOM events dispatched by the component. Refs are forwarded to the
2359
+ * underlying `<m3e-timepicker>` instance for imperative access.
2360
+ *
2361
+ * See the `m3e-timepicker` documentation for full details on behavior,
2362
+ * styling, accessibility, and supported events.
2363
+ */
2364
+ const M3eTimepicker = o({
2365
+ tagName: "m3e-timepicker",
2366
+ elementClass: M3eTimepickerElement,
2367
+ react: React,
2368
+ events: {
2369
+ onChange: "change",
2370
+ onBeforeToggle: "beforetoggle",
2371
+ onToggle: "toggle"
2372
+ }
2373
+ });
2374
+
2375
+ /**
2376
+ * React binding for the `m3e-timepicker-dial` Web Component from `@m3e/web/timepicker`.
2377
+ *
2378
+ * This component renders the underlying `<m3e-timepicker-dial>` element and exposes its
2379
+ * properties, attributes, and events through an idiomatic React interface.
2380
+ *
2381
+ * Props map directly to element properties, and event handlers receive the
2382
+ * native DOM events dispatched by the component. Refs are forwarded to the
2383
+ * underlying `<m3e-timepicker-dial>` instance for imperative access.
2384
+ *
2385
+ * See the `m3e-timepicker-dial` documentation for full details on behavior,
2386
+ * styling, accessibility, and supported events.
2387
+ */
2388
+ const M3eTimepickerDial = o({
2389
+ tagName: "m3e-timepicker-dial",
2390
+ elementClass: M3eTimepickerDialElement,
2391
+ react: React,
2392
+ events: {
2393
+ onChange: "change",
2394
+ OnViewChange: "view-change"
2395
+ }
2396
+ });
2397
+
2398
+ /**
2399
+ * React binding for the `m3e-timepicker-input` Web Component from `@m3e/web/timepicker`.
2400
+ *
2401
+ * This component renders the underlying `<m3e-timepicker-input>` element and exposes its
2402
+ * properties, attributes, and events through an idiomatic React interface.
2403
+ *
2404
+ * Props map directly to element properties, and event handlers receive the
2405
+ * native DOM events dispatched by the component. Refs are forwarded to the
2406
+ * underlying `<m3e-timepicker-input>` instance for imperative access.
2407
+ *
2408
+ * See the `m3e-timepicker-input` documentation for full details on behavior,
2409
+ * styling, accessibility, and supported events.
2410
+ */
2411
+ const M3eTimepickerInput = o({
2412
+ tagName: "m3e-timepicker-input",
2413
+ elementClass: M3eTimepickerInputElement,
2414
+ react: React,
2415
+ events: {
2416
+ onChange: "change",
2417
+ OnViewChange: "view-change"
2418
+ }
2419
+ });
2420
+
2421
+ /**
2422
+ * React binding for the `m3e-timepicker-toggle` Web Component from `@m3e/web/timepicker`.
2423
+ *
2424
+ * This component renders the underlying `<m3e-timepicker-toggle>` element and exposes its
2425
+ * properties, attributes, and events through an idiomatic React interface.
2426
+ *
2427
+ * Props map directly to element properties, and event handlers receive the
2428
+ * native DOM events dispatched by the component. Refs are forwarded to the
2429
+ * underlying `<m3e-timepicker-toggle>` instance for imperative access.
2430
+ *
2431
+ * See the `m3e-timepicker-toggle` for full details on behavior,
2432
+ * styling, accessibility, and supported events.
2433
+ */
2434
+ const M3eTimepickerToggle = o({
2435
+ tagName: "m3e-timepicker-toggle",
2436
+ elementClass: M3eTimepickerToggleElement,
2437
+ react: React
2438
+ });
2439
+
2348
2440
  /**
2349
2441
  * React binding for the `m3e-toc` Web Component from `@m3e/web/toc`.
2350
2442
  *
@@ -2492,5 +2584,5 @@ const M3eTreeItem = o({
2492
2584
  }
2493
2585
  });
2494
2586
 
2495
- export { M3eAccordion, M3eActionList, M3eAppBar, M3eAssistChip, M3eAutocomplete, M3eAvatar, M3eBadge, M3eBottomSheet, M3eBottomSheetAction, M3eBottomSheetTrigger, M3eBreadcrumb, M3eBreadcrumbItem, M3eButton, M3eButtonGroup, M3eButtonSegment, M3eCalendar, M3eCard, M3eCheckbox, M3eChip, M3eChipSet, M3eCircularProgressIndicator, M3eCollapsible, M3eContentPane, 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, M3eSkeleton, M3eSlide, M3eSlideGroup, M3eSlider, M3eSliderThumb, M3eSplitButton, M3eSplitPane, M3eStateLayer, M3eStep, M3eStepPanel, M3eStepper, M3eStepperNext, M3eStepperPrevious, M3eStepperReset, M3eSuggestionChip, M3eSwitch, M3eTab, M3eTabPanel, M3eTabs, M3eTextHighlight, M3eTextOverflow, M3eTextareaAutosize, M3eTheme, M3eThemeIcon, M3eToc, M3eToolbar, M3eTooltip, M3eTree, M3eTreeItem };
2587
+ export { M3eAccordion, M3eActionList, M3eAppBar, M3eAssistChip, M3eAutocomplete, M3eAvatar, M3eBadge, M3eBottomSheet, M3eBottomSheetAction, M3eBottomSheetTrigger, M3eBreadcrumb, M3eBreadcrumbItem, M3eButton, M3eButtonGroup, M3eButtonSegment, M3eCalendar, M3eCard, M3eCheckbox, M3eChip, M3eChipSet, M3eCircularProgressIndicator, M3eCollapsible, M3eContentPane, 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, M3eSkeleton, M3eSlide, M3eSlideGroup, M3eSlider, M3eSliderThumb, M3eSplitButton, M3eSplitPane, M3eStateLayer, M3eStep, M3eStepPanel, M3eStepper, M3eStepperNext, M3eStepperPrevious, M3eStepperReset, M3eSuggestionChip, M3eSwitch, M3eTab, M3eTabPanel, M3eTabs, M3eTextHighlight, M3eTextOverflow, M3eTextareaAutosize, M3eTheme, M3eThemeIcon, M3eTimepicker, M3eTimepickerDial, M3eTimepickerInput, M3eTimepickerToggle, M3eToc, M3eToolbar, M3eTooltip, M3eTree, M3eTreeItem };
2496
2588
  //# sourceMappingURL=all.js.map