lupine.components 1.0.24 → 1.0.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lupine.components",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "license": "MIT",
5
5
  "author": "uuware.com",
6
6
  "homepage": "https://github.com/uuware/lupine.js",
@@ -46,7 +46,7 @@ export class FloatWindow {
46
46
  handleClicked,
47
47
  closeWhenClickOutside = false,
48
48
  zIndex,
49
- contentOverflowY = 'auto',
49
+ contentOverflowY = 'auto', // set to unset for having popup menu inside
50
50
  }: FloatWindowShowProps): Promise<FloatWindowCloseProps> {
51
51
  const onClickContainer = (event: any) => {
52
52
  if (closeWhenClickOutside !== false && event.target.className === 'fwin-box') {
@@ -13,6 +13,7 @@ export class ModalWindow {
13
13
  handleClicked,
14
14
  closeWhenClickOutside = true,
15
15
  zIndex,
16
+ contentOverflowY,
16
17
  }: FloatWindowShowProps): Promise<FloatWindowCloseProps> {
17
18
  return FloatWindow.show({
18
19
  title,
@@ -26,6 +27,7 @@ export class ModalWindow {
26
27
  handleClicked,
27
28
  closeWhenClickOutside,
28
29
  zIndex,
30
+ contentOverflowY,
29
31
  });
30
32
  }
31
33
  }