@dile/ui 2.10.4 → 2.11.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.
@@ -46,6 +46,7 @@ export class DileConfirm extends LitElement {
46
46
  acceptLabel: { type: String },
47
47
  cancelLabel: { type: String },
48
48
  blocking: { type: Boolean },
49
+ dontCloseOnAccept: { type: Boolean },
49
50
  };
50
51
  }
51
52
 
@@ -100,7 +101,9 @@ export class DileConfirm extends LitElement {
100
101
  }
101
102
 
102
103
  accept() {
103
- this.close();
104
+ if(!this.dontCloseOnAccept) {
105
+ this.close();
106
+ }
104
107
  this.dispatchEvent(
105
108
  new CustomEvent("dile-confirm-accepted", {
106
109
  bubbles: true,
@@ -119,6 +119,7 @@ export class DileHamburger extends LitElement {
119
119
  <button
120
120
  class="hamburger hamburger--squeeze ${this.active ? "is-active" : ""}"
121
121
  type="button"
122
+ aria-label="Open navigation menu"
122
123
  >
123
124
  <span class="hamburger-box">
124
125
  <span class="hamburger-inner"></span>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/ui",
3
- "version": "2.10.4",
3
+ "version": "2.11.0",
4
4
  "description": "UI Core components from dile-components.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "b3d745d5c2f638f3f38b6f573353ed48fca9f4fd"
29
+ "gitHead": "0ffe79bf145624b0a861b9b450a94546358a72ba"
30
30
  }