@zendeskgarden/react-theming 9.0.0-next.25 → 9.0.0-next.26

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.
@@ -23,7 +23,7 @@ const animationStyles = (position, options) => {
23
23
  } else {
24
24
  transformFunction = 'translateX';
25
25
  }
26
- const animationName = keyframes(["0%{transform:", "(", ");}"], transformFunction, translateValue);
26
+ const animationName = keyframes(["0%{transform:", "(", ");pointer-events:none;}100%{pointer-events:auto;}"], transformFunction, translateValue);
27
27
  return css(["&", " ", "{animation:0.2s cubic-bezier(0.15,0.85,0.35,1.2) ", ";}"], options.animationModifier, options.childSelector || '> *', animationName);
28
28
  };
29
29
  const colorStyles = theme => {
package/dist/index.cjs.js CHANGED
@@ -1268,7 +1268,7 @@ const animationStyles = (position, options) => {
1268
1268
  } else {
1269
1269
  transformFunction = 'translateX';
1270
1270
  }
1271
- const animationName = styled.keyframes(["0%{transform:", "(", ");}"], transformFunction, translateValue);
1271
+ const animationName = styled.keyframes(["0%{transform:", "(", ");pointer-events:none;}100%{pointer-events:auto;}"], transformFunction, translateValue);
1272
1272
  return styled.css(["&", " ", "{animation:0.2s cubic-bezier(0.15,0.85,0.35,1.2) ", ";}"], options.animationModifier, options.childSelector || '> *', animationName);
1273
1273
  };
1274
1274
  const colorStyles = theme => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendeskgarden/react-theming",
3
- "version": "9.0.0-next.25",
3
+ "version": "9.0.0-next.26",
4
4
  "description": "Theming utilities and components within the Garden Design System",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Zendesk Garden <garden@zendesk.com>",
@@ -47,5 +47,5 @@
47
47
  "access": "public"
48
48
  },
49
49
  "zendeskgarden:src": "src/index.ts",
50
- "gitHead": "460751d630ab1c46e11810d60e4d7701b9d30b8f"
50
+ "gitHead": "049dd7bd143029147de333f78bd879dc7d7251f2"
51
51
  }