@baloise/ds-react 19.2.0 → 19.3.0-nightly.20250627

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/index.esm.js CHANGED
@@ -994,7 +994,9 @@ var BalNavMenuFlyout = /*@__PURE__*/ r({
994
994
  elementClass: BalNavMenuFlyout$1,
995
995
  // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
996
996
  react: React,
997
- events: {},
997
+ events: {
998
+ onBalFocusOut: 'balFocusOut'
999
+ },
998
1000
  defineCustomElement: defineCustomElement$14
999
1001
  });
1000
1002
  var BalNavMetaBar = /*@__PURE__*/ r({
@@ -1348,7 +1350,8 @@ var BalTabItem = /*@__PURE__*/ r({
1348
1350
  // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
1349
1351
  react: React,
1350
1352
  events: {
1351
- onBalNavigate: 'balNavigate'
1353
+ onBalNavigate: 'balNavigate',
1354
+ onBalKeyDown: 'balKeyDown'
1352
1355
  },
1353
1356
  defineCustomElement: defineCustomElement$1G
1354
1357
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baloise/ds-react",
3
- "version": "19.2.0",
3
+ "version": "19.3.0-nightly.20250627",
4
4
  "description": "The Baloise Design-System is an open source project for styling awesome web applications that follow the Baloise corporate styling guidelines.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,9 +12,10 @@
12
12
  "homepage": "https://design.baloise.dev",
13
13
  "license": "Apache-2.0",
14
14
  "dependencies": {
15
- "@baloise/ds-core": "19.2.0"
15
+ "@baloise/ds-core": "19.3.0-nightly.20250627"
16
16
  },
17
17
  "module": "./index.esm.js",
18
- "main": "./index.cjs.js",
18
+ "type": "module",
19
+ "main": "./index.esm.js",
19
20
  "types": "./index.esm.d.ts"
20
21
  }
@@ -2,7 +2,7 @@
2
2
  * This file was automatically generated by the Stencil React Output Target.
3
3
  * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
4
  */
5
- import { type BalAccordionCustomEvent, type BalButtonCustomEvent, type BalCarouselCustomEvent, type BalCarouselItemCustomEvent, type BalCheckboxCustomEvent, type BalCheckboxGroupCustomEvent, type BalDataValueCustomEvent, type BalDateCalendarCellCustomEvent, type BalDateCalendarCustomEvent, type BalDateCustomEvent, type BalDropdownCustomEvent, type BalFieldCustomEvent, type BalFileUploadCustomEvent, type BalInputCustomEvent, type BalInputDateCustomEvent, type BalInputSliderCustomEvent, type BalInputStepperCustomEvent, type BalListItemAccordionHeadCustomEvent, type BalListItemCustomEvent, type BalModalCustomEvent, type BalNavCustomEvent, type BalNavbarBrandCustomEvent, type BalNumberInputCustomEvent, type BalOptionCustomEvent, type BalPaginationCustomEvent, type BalPopoverCustomEvent, type BalPopupCustomEvent, type BalRadioCustomEvent, type BalRadioGroupCustomEvent, type BalSegmentCustomEvent, type BalSelectCustomEvent, type BalSnackbarCustomEvent, type BalStepItemCustomEvent, type BalStepsCustomEvent, type BalTabItemCustomEvent, type BalTabsCustomEvent, type BalTagCustomEvent, type BalTextareaCustomEvent, type BalTimeInputCustomEvent, type BalToastCustomEvent, type BalTooltipCustomEvent } from "@baloise/ds-core";
5
+ import { type BalAccordionCustomEvent, type BalButtonCustomEvent, type BalCarouselCustomEvent, type BalCarouselItemCustomEvent, type BalCheckboxCustomEvent, type BalCheckboxGroupCustomEvent, type BalDataValueCustomEvent, type BalDateCalendarCellCustomEvent, type BalDateCalendarCustomEvent, type BalDateCustomEvent, type BalDropdownCustomEvent, type BalFieldCustomEvent, type BalFileUploadCustomEvent, type BalInputCustomEvent, type BalInputDateCustomEvent, type BalInputSliderCustomEvent, type BalInputStepperCustomEvent, type BalListItemAccordionHeadCustomEvent, type BalListItemCustomEvent, type BalModalCustomEvent, type BalNavCustomEvent, type BalNavMenuFlyoutCustomEvent, type BalNavbarBrandCustomEvent, type BalNumberInputCustomEvent, type BalOptionCustomEvent, type BalPaginationCustomEvent, type BalPopoverCustomEvent, type BalPopupCustomEvent, type BalRadioCustomEvent, type BalRadioGroupCustomEvent, type BalSegmentCustomEvent, type BalSelectCustomEvent, type BalSnackbarCustomEvent, type BalStepItemCustomEvent, type BalStepsCustomEvent, type BalTabItemCustomEvent, type BalTabsCustomEvent, type BalTagCustomEvent, type BalTextareaCustomEvent, type BalTimeInputCustomEvent, type BalToastCustomEvent, type BalTooltipCustomEvent } from "@baloise/ds-core";
6
6
  import { BalAccordionDetails as BalAccordionDetailsElement } from "@baloise/ds-core/components/bal-accordion-details.js";
7
7
  import { BalAccordionSummary as BalAccordionSummaryElement } from "@baloise/ds-core/components/bal-accordion-summary.js";
8
8
  import { BalAccordionTrigger as BalAccordionTriggerElement } from "@baloise/ds-core/components/bal-accordion-trigger.js";
@@ -353,7 +353,9 @@ export type BalNavLinkGroupEvents = NonNullable<unknown>;
353
353
  export declare const BalNavLinkGroup: StencilReactComponent<BalNavLinkGroupElement, BalNavLinkGroupEvents>;
354
354
  export type BalNavMenuBarEvents = NonNullable<unknown>;
355
355
  export declare const BalNavMenuBar: StencilReactComponent<BalNavMenuBarElement, BalNavMenuBarEvents>;
356
- export type BalNavMenuFlyoutEvents = NonNullable<unknown>;
356
+ export type BalNavMenuFlyoutEvents = {
357
+ onBalFocusOut: EventName<BalNavMenuFlyoutCustomEvent<BalEvents.BalNavFlyoutFocusOutDetail>>;
358
+ };
357
359
  export declare const BalNavMenuFlyout: StencilReactComponent<BalNavMenuFlyoutElement, BalNavMenuFlyoutEvents>;
358
360
  export type BalNavMetaBarEvents = NonNullable<unknown>;
359
361
  export declare const BalNavMetaBar: StencilReactComponent<BalNavMetaBarElement, BalNavMetaBarEvents>;
@@ -480,6 +482,7 @@ export type BalSwitchEvents = NonNullable<unknown>;
480
482
  export declare const BalSwitch: StencilReactComponent<BalSwitchElement, BalSwitchEvents>;
481
483
  export type BalTabItemEvents = {
482
484
  onBalNavigate: EventName<BalTabItemCustomEvent<BalEvents.BalTabItemNavigateDetail>>;
485
+ onBalKeyDown: EventName<BalTabItemCustomEvent<BalEvents.BalTabItemKeyDownDetail>>;
483
486
  };
484
487
  export declare const BalTabItem: StencilReactComponent<BalTabItemElement, BalTabItemEvents>;
485
488
  export type BalTableEvents = NonNullable<unknown>;
package/index.cjs.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from "./src/index";