@codecademy/gamut-patterns 0.10.20-alpha.f03f14.0 → 0.10.20-alpha.fb9da9.0

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.
Files changed (2) hide show
  1. package/dist/props.d.ts +10 -2
  2. package/package.json +4 -4
package/dist/props.d.ts CHANGED
@@ -172,12 +172,20 @@ declare const patternStyles: import("@codecademy/variance/dist/types/config").Pa
172
172
  readonly scale: "spacing";
173
173
  };
174
174
  readonly mr: {
175
- readonly property: "marginRight";
175
+ readonly property: {
176
+ readonly physical: "marginRight";
177
+ readonly logical: "marginInlineEnd";
178
+ };
176
179
  readonly scale: "spacing";
180
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
177
181
  };
178
182
  readonly ml: {
179
- readonly property: "marginLeft";
183
+ readonly property: {
184
+ readonly physical: "marginLeft";
185
+ readonly logical: "marginInlineStart";
186
+ };
180
187
  readonly scale: "spacing";
188
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
181
189
  };
182
190
  }>>]>>;
183
191
  export type PatternStyleProps = StyleProps<typeof patternStyles>;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@codecademy/gamut-patterns",
3
3
  "description": "Pattern library for Codecademy",
4
- "version": "0.10.20-alpha.f03f14.0",
4
+ "version": "0.10.20-alpha.fb9da9.0",
5
5
  "author": "Codecademy Engineering <dev@codecademy.com>",
6
6
  "bugs": "https://github.com/Codecademy/gamut/issues",
7
7
  "dependencies": {
8
- "@codecademy/gamut-styles": "17.11.1-alpha.f03f14.0",
9
- "@codecademy/variance": "0.25.1-alpha.f03f14.0",
8
+ "@codecademy/gamut-styles": "17.11.1-alpha.fb9da9.0",
9
+ "@codecademy/variance": "0.25.1-alpha.fb9da9.0",
10
10
  "classnames": "^2.2.5"
11
11
  },
12
12
  "files": [
@@ -32,5 +32,5 @@
32
32
  },
33
33
  "sideEffects": false,
34
34
  "types": "dist/index.d.ts",
35
- "gitHead": "feb192c5ea19fd0c702a59d2f00c3a78533f1ca5"
35
+ "gitHead": "4d8170b39849e26fa1cb3d1ab5bbe9135e8a87b0"
36
36
  }