@fluid-topics/ft-modal 2.0.3 → 2.0.4

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.
@@ -20,7 +20,7 @@ export const FtModalCssVariables = {
20
20
  overlayBackgroundColor: FtCssVariableFactory.create("--ft-modal-overlay-background-color", "", "COLOR", "rgb(10, 10, 13)"),
21
21
  overlayOpacity: FtCssVariableFactory.create("--ft-modal-overlay-opacity", "", "NUMBER", "0.4"),
22
22
  closingButtonColor: FtCssVariableFactory.extend("--ft-modal-closing-button-color", "", designSystemVariables.colorOnSurfaceMedium),
23
- contentOverflow: FtCssVariableFactory.create("--ft-modal-content-overflow", "", "UNKNOWN", "visible"),
23
+ contentOverflow: FtCssVariableFactory.create("--ft-modal-content-overflow", "", "UNKNOWN", "auto"),
24
24
  };
25
25
  // language=CSS
26
26
  export const ftmodalStyles = css `
@@ -118,7 +118,7 @@ export const ftmodalStyles = css `
118
118
  color: ${FtModalCssVariables.contentColor};
119
119
  background-color: ${FtModalCssVariables.contentBackgroundColor};
120
120
  border-radius: 0px 0px ${FtModalCssVariables.borderRadius} ${FtModalCssVariables.borderRadius};
121
- overflow: ${FtModalCssVariables.contentOverflow};
121
+ overflow: hidden;
122
122
  }
123
123
 
124
124
  [part=content] {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-modal",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Modal for Design System V2",
5
5
  "keywords": [
6
6
  "Lit"
@@ -19,11 +19,11 @@
19
19
  "url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
20
20
  },
21
21
  "dependencies": {
22
- "@fluid-topics/ft-wc-utils": "2.0.3",
22
+ "@fluid-topics/ft-wc-utils": "2.0.4",
23
23
  "lit": "3.1.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@fluid-topics/ft-wc-test-utils": "2.0.3"
26
+ "@fluid-topics/ft-wc-test-utils": "2.0.4"
27
27
  },
28
- "gitHead": "0f2fb13480a71c2957ef7c69492140ea685ba87e"
28
+ "gitHead": "bc275bc44bc77b2e5802f2da9e92a0aca4479155"
29
29
  }