@fluid-topics/ft-modal 1.3.55 → 1.3.56

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.
@@ -1,5 +1,5 @@
1
1
  import { css } from "lit";
2
- import { designSystemVariables, FtCssVariableFactory } from "@fluid-topics/ft-wc-utils";
2
+ import { designSystemVariables, FtCssVariableFactory, } from "@fluid-topics/ft-wc-utils";
3
3
  export const FtModalCssVariables = {
4
4
  shadow: FtCssVariableFactory.extend("--ft-modal-shadow", "", designSystemVariables.elevation03),
5
5
  borderRadius: FtCssVariableFactory.extend("--ft-modal-border-radius", "", designSystemVariables.borderRadiusM),
@@ -25,16 +25,6 @@ export const FtModalCssVariables = {
25
25
  // language=CSS
26
26
  export const ftmodalStyles = css `
27
27
 
28
- @keyframes slide-in-from-right {
29
- 0% {
30
- transform: translateX(100%);
31
- }
32
-
33
- 100% {
34
- transform: translateX(0%);
35
- }
36
- }
37
-
38
28
  @keyframes fade-in {
39
29
  0% {
40
30
  opacity: 0;
@@ -153,25 +143,4 @@ export const ftmodalStyles = css `
153
143
  }
154
144
  }
155
145
 
156
- [part=inner-container].drawer {
157
- top: 0;
158
- right: 0;
159
- bottom: 0;
160
- margin-right: 0;
161
- max-height: 100%;
162
-
163
- animation-duration: 0.2s;
164
- animation-name: slide-in-from-right;
165
- animation-timing-function: cubic-bezier(.46,0,.31,.95);
166
-
167
- @media (min-width: 768px) {
168
- transform: none;
169
- height: 100%;
170
- }
171
- }
172
-
173
- .drawer [part=header],
174
- .drawer [part=body] {
175
- border-radius: 0;
176
- }
177
146
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-modal",
3
- "version": "1.3.55",
3
+ "version": "1.3.56",
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": "1.3.55",
22
+ "@fluid-topics/ft-wc-utils": "1.3.56",
23
23
  "lit": "3.1.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@fluid-topics/ft-wc-test-utils": "1.3.55"
26
+ "@fluid-topics/ft-wc-test-utils": "1.3.56"
27
27
  },
28
- "gitHead": "4b1a60c10c8b8d68e0b9075038c0508a94ff7d38"
28
+ "gitHead": "01868f9694982c27cc22b788567208da17c855e2"
29
29
  }