@dfds-ui/spacing 2.2.0-alpha.b94ad8b5 → 2.2.0-alpha.c2f773c5

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/cjs/spacing.d.ts CHANGED
@@ -14,7 +14,7 @@ declare const spacing: {
14
14
  /** 4rem (64px) */
15
15
  xxl: string;
16
16
  };
17
- declare type ValueOf<T> = T[keyof T];
18
- export declare type SpacingValue = ValueOf<typeof spacing>;
19
- export declare type SpacingKey = keyof typeof spacing;
17
+ type ValueOf<T> = T[keyof T];
18
+ export type SpacingValue = ValueOf<typeof spacing>;
19
+ export type SpacingKey = keyof typeof spacing;
20
20
  export default spacing;
package/cjs/spacing.js CHANGED
@@ -20,5 +20,4 @@ const spacing = {
20
20
  /** 4rem (64px) */
21
21
  xxl: '4rem'
22
22
  };
23
- var _default = spacing;
24
- exports.default = _default;
23
+ var _default = exports.default = spacing;
package/package.json CHANGED
@@ -3,12 +3,12 @@
3
3
  "description": "Defines spacing",
4
4
  "license": "MIT",
5
5
  "private": false,
6
- "version": "2.2.0-alpha.b94ad8b5",
6
+ "version": "2.2.0-alpha.c2f773c5",
7
7
  "sideEffects": false,
8
8
  "main": "./cjs/index.js",
9
9
  "module": "./index.js",
10
10
  "typings": "./index.d.ts",
11
- "gitHead": "b94ad8b5312373842721f20f5ba7fa2bcea5ee80",
11
+ "gitHead": "c2f773c5e158ea1a17a9a46fd9e3d41adda1dc5f",
12
12
  "esnext": "",
13
13
  "publishConfig": {
14
14
  "access": "public"
package/spacing.d.ts CHANGED
@@ -14,7 +14,7 @@ declare const spacing: {
14
14
  /** 4rem (64px) */
15
15
  xxl: string;
16
16
  };
17
- declare type ValueOf<T> = T[keyof T];
18
- export declare type SpacingValue = ValueOf<typeof spacing>;
19
- export declare type SpacingKey = keyof typeof spacing;
17
+ type ValueOf<T> = T[keyof T];
18
+ export type SpacingValue = ValueOf<typeof spacing>;
19
+ export type SpacingKey = keyof typeof spacing;
20
20
  export default spacing;