@nordhealth/components 4.26.0 → 4.26.1

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.
@@ -29,6 +29,12 @@ declare const Button_base: (new (...args: any[]) => import("../common/mixins/Inp
29
29
  * @cssprop [--n-button-user-select=none] - Controls the text selection behavior of the button text.
30
30
  */
31
31
  export default class Button extends Button_base {
32
+ static shadowRootOptions: {
33
+ delegatesFocus: boolean;
34
+ mode: ShadowRootMode;
35
+ serializable?: boolean;
36
+ slotAssignment?: SlotAssignmentMode;
37
+ };
32
38
  static styles: import("lit").CSSResult[];
33
39
  private defaultSlot;
34
40
  private buttonRef;
@@ -3,7 +3,7 @@ import { LitElement } from 'lit';
3
3
  import '../nav-toggle/NavToggle.js';
4
4
  import '../tooltip/Tooltip.js';
5
5
  declare const navMachine: {
6
- transition(currentState: "closed" | "opened" | "peek" | "unpeek" | "wait" | "blocked", event: "click" | "close" | "focusin" | "focusout" | "pointerenter" | "pointerleave" | "toggle" | "transitionend" | "timeout" | "open" | "dropdownOpen" | "dropdownClose"): "closed" | "opened" | "peek" | "unpeek" | "wait" | "blocked";
6
+ transition(currentState: "closed" | "opened" | "peek" | "unpeek" | "wait" | "blocked", event: "click" | "close" | "focusin" | "focusout" | "pointerenter" | "pointerleave" | "toggle" | "transitionend" | "open" | "timeout" | "dropdownOpen" | "dropdownClose"): "closed" | "opened" | "peek" | "unpeek" | "wait" | "blocked";
7
7
  };
8
8
  type NavState = States<typeof navMachine>;
9
9
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nordhealth/components",
3
3
  "type": "module",
4
- "version": "4.26.0",
4
+ "version": "4.26.1",
5
5
  "description": "This package includes Nord Design System Web Components",
6
6
  "author": "Nordhealth <support@nordhealth.design>",
7
7
  "license": "SEE LICENSE IN LICENSE.md",
@@ -91,5 +91,5 @@
91
91
  "rollup": "~4.21.3"
92
92
  }
93
93
  },
94
- "gitHead": "2d2cccb47ced684b6d9e7bafa8d8f15cc62e6bd7"
94
+ "gitHead": "3272c5a5ce2ab73418a95d0ff94c694e6e779129"
95
95
  }