@sebgroup/green-core 1.90.0 → 1.90.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.
@@ -110,7 +110,7 @@ let GdsPopover = class extends GdsElement {
110
110
  }
111
111
  });
112
112
  __privateAdd(this, _handlePageScroll, () => {
113
- if (this.open && __privateGet(this, _dispatchUiStateEvent).call(this, "close")) {
113
+ if (this.open && window.innerWidth > 767 && __privateGet(this, _dispatchUiStateEvent).call(this, "close")) {
114
114
  this.open = false;
115
115
  }
116
116
  });
@@ -33,6 +33,7 @@ const style = css`
33
33
  0 1rem 28px rgba(0, 0, 0, 0.15);
34
34
  border-width: 0;
35
35
  border-radius: 0.5rem;
36
+ overscroll-behavior: contain;
36
37
  }
37
38
 
38
39
  :host([nonmodal]) dialog {
@@ -11,8 +11,8 @@ export * from './container/index.js';
11
11
  export * from './context-menu/index.js';
12
12
  export * from './datepicker/index.js';
13
13
  export * from './details/index.js';
14
- export * from './dialog/index.js';
15
14
  export * from './div/index.js';
15
+ export * from './dialog/index.js';
16
16
  export * from './divider/index.js';
17
17
  export * from './dropdown/index.js';
18
18
  export * from './fab/index.js';
@@ -39,8 +39,8 @@ export * from './spacer/index.js';
39
39
  export * from './spinner/index.js';
40
40
  export * from './text/index.js';
41
41
  export * from './textarea/index.js';
42
- export * from './theme/index.js';
43
42
  export * from './video/index.js';
43
+ export * from './theme/index.js';
44
44
  export * from './form-control-footer/index.js';
45
45
  export * from './form-control-header/index.js';
46
46
  export * from './option/index.js';
@@ -51,6 +51,11 @@ export * from './filter-chip/index.js';
51
51
  export * from './formatted-account/index.js';
52
52
  export * from './formatted-date/index.js';
53
53
  export * from './formatted-number/index.js';
54
+ export * from './radio-group/index.js';
55
+ export * from './segment/index.js';
56
+ export * from './sensitive-account/index.js';
57
+ export * from './sensitive-number/index.js';
58
+ export * from './sensitive-date/index.js';
54
59
  export * from './icons/icon-ai/index.js';
55
60
  export * from './icons/icon-airplane-up/index.js';
56
61
  export * from './icons/icon-archive/index.js';
@@ -343,8 +348,3 @@ export * from './icons/icon-youtube/index.js';
343
348
  export * from './icons/icon-zap/index.js';
344
349
  export * from './icons/icon-zoom-in/index.js';
345
350
  export * from './icons/icon-zoom-out/index.js';
346
- export * from './radio-group/index.js';
347
- export * from './segment/index.js';
348
- export * from './sensitive-account/index.js';
349
- export * from './sensitive-date/index.js';
350
- export * from './sensitive-number/index.js';
@@ -11,8 +11,8 @@ export * from "./container/index.js";
11
11
  export * from "./context-menu/index.js";
12
12
  export * from "./datepicker/index.js";
13
13
  export * from "./details/index.js";
14
- export * from "./dialog/index.js";
15
14
  export * from "./div/index.js";
15
+ export * from "./dialog/index.js";
16
16
  export * from "./divider/index.js";
17
17
  export * from "./dropdown/index.js";
18
18
  export * from "./fab/index.js";
@@ -39,8 +39,8 @@ export * from "./spacer/index.js";
39
39
  export * from "./spinner/index.js";
40
40
  export * from "./text/index.js";
41
41
  export * from "./textarea/index.js";
42
- export * from "./theme/index.js";
43
42
  export * from "./video/index.js";
43
+ export * from "./theme/index.js";
44
44
  export * from "./form-control-footer/index.js";
45
45
  export * from "./form-control-header/index.js";
46
46
  export * from "./option/index.js";
@@ -51,6 +51,11 @@ export * from "./filter-chip/index.js";
51
51
  export * from "./formatted-account/index.js";
52
52
  export * from "./formatted-date/index.js";
53
53
  export * from "./formatted-number/index.js";
54
+ export * from "./radio-group/index.js";
55
+ export * from "./segment/index.js";
56
+ export * from "./sensitive-account/index.js";
57
+ export * from "./sensitive-number/index.js";
58
+ export * from "./sensitive-date/index.js";
54
59
  export * from "./icons/icon-ai/index.js";
55
60
  export * from "./icons/icon-airplane-up/index.js";
56
61
  export * from "./icons/icon-archive/index.js";
@@ -343,8 +348,3 @@ export * from "./icons/icon-youtube/index.js";
343
348
  export * from "./icons/icon-zap/index.js";
344
349
  export * from "./icons/icon-zoom-in/index.js";
345
350
  export * from "./icons/icon-zoom-out/index.js";
346
- export * from "./radio-group/index.js";
347
- export * from "./segment/index.js";
348
- export * from "./sensitive-account/index.js";
349
- export * from "./sensitive-date/index.js";
350
- export * from "./sensitive-number/index.js";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sebgroup/green-core",
3
3
  "description": "A carefully crafted set of Web Components, laying the foundation of the Green Design System.",
4
- "version": "1.90.0",
4
+ "version": "1.90.1",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
7
7
  "type": "module",
@@ -7,6 +7,7 @@ const style = css`
7
7
  display: flex;
8
8
  flex-direction: column;
9
9
  overflow: auto;
10
+ overscroll-behavior: contain;
10
11
  }
11
12
  }
12
13
  `;
@@ -1,6 +1,6 @@
1
1
  import "../../chunks/chunk.QTSIPXV3.js";
2
2
  import { html as litHtml } from "lit";
3
- const VER_SUFFIX = "-839476";
3
+ const VER_SUFFIX = "-d527d2";
4
4
  class ScopedElementRegistry {
5
5
  static get instance() {
6
6
  if (!globalThis.__gdsElementLookupTable?.[VER_SUFFIX])