@jobber/design 0.31.1 → 0.31.2-pre.6

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.
@@ -111,12 +111,12 @@ export declare const iconStyles: {
111
111
  height: number;
112
112
  };
113
113
  base: {
114
- width: number;
115
- height: number;
114
+ width: string;
115
+ height: string;
116
116
  };
117
117
  large: {
118
- width: number;
119
- height: number;
118
+ width: string;
119
+ height: string;
120
120
  };
121
121
  white: {
122
122
  fill: string;
package/dist/index.js CHANGED
@@ -685,12 +685,12 @@ const iconStyles = {
685
685
  "height": 16
686
686
  },
687
687
  "base": {
688
- "width": 24,
689
- "height": 24
688
+ "width": "calc(16px*1.5)",
689
+ "height": "calc(16px*1.5)"
690
690
  },
691
691
  "large": {
692
- "width": 32,
693
- "height": 32
692
+ "width": "calc(16px*2)",
693
+ "height": "calc(16px*2)"
694
694
  },
695
695
  "white": {
696
696
  "fill": "rgba(255, 255, 255, 1)"
package/foundation.js CHANGED
@@ -170,8 +170,8 @@ export const JobberStyle = {
170
170
  "typography--fontFamily-normal": "\"Inter\", Helvetica, Arial, sans-serif",
171
171
  "typography--fontFamily-display": "\"Jobber Pro\", \"Poppins\", Helvetica, Arial,\n sans-serif",
172
172
  "typography--fontSize-extravagant": 16,
173
- "typography--fontSize-jumbo": 36,
174
- "typography--fontSize-largest": 24,
173
+ "typography--fontSize-jumbo": 16,
174
+ "typography--fontSize-largest": 16,
175
175
  "typography--fontSize-larger": 20,
176
176
  "typography--fontSize-large": 16,
177
177
  "typography--fontSize-base": 14,
package/foundation.scss CHANGED
@@ -174,9 +174,9 @@ $typography--letterSpacing-loose: 0.4px;
174
174
  $typography--fontFamily-normal: "Inter", Helvetica, Arial, sans-serif;
175
175
  $typography--fontFamily-display: "Jobber Pro", "Poppins", Helvetica, Arial,
176
176
  sans-serif;
177
- $typography--fontSize-extravagant: 48px;
178
- $typography--fontSize-jumbo: 36px;
179
- $typography--fontSize-largest: 24px;
177
+ $typography--fontSize-extravagant: 40px;
178
+ $typography--fontSize-jumbo: 28px;
179
+ $typography--fontSize-largest: 22px;
180
180
  $typography--fontSize-larger: 20px;
181
181
  $typography--fontSize-large: 16px;
182
182
  $typography--fontSize-base: 14px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/design",
3
- "version": "0.31.1",
3
+ "version": "0.31.2-pre.6+c7bfdd42",
4
4
  "description": "Design foundation for the Jobber Atlantis Design System",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -12,6 +12,7 @@
12
12
  "icons/*"
13
13
  ],
14
14
  "scripts": {
15
+ "_build": "npm run build:css && npm run build:css:icons && npm run build:colors && npm run build:cssTypes && npm run build:foundation",
15
16
  "build": "npm run build:css && npm run build:css:icons && npm run build:colors && npm run build:cssTypes && npm run build:foundation && npm run build:iconCssStyle && npm run build:rollup",
16
17
  "build:rollup": "rollup --config",
17
18
  "build:css": "postcss src/foundation.css --output foundation.css --use postcss-import",
@@ -33,15 +34,16 @@
33
34
  "classnames": "^2.3.2"
34
35
  },
35
36
  "devDependencies": {
37
+ "@csstools/postcss-extract": "^2.0.1",
36
38
  "@rollup/plugin-commonjs": "^24.0.1",
37
39
  "@types/node": "^18.15.7",
38
40
  "autoprefixer": "^9.5.1",
39
41
  "css-to-react-native-transform": "^2.0.0",
40
42
  "postcss": "^8.4.21",
41
43
  "postcss-calc": "7.0.2",
42
- "postcss-cli": "^6.1.2",
43
- "postcss-custom-properties": "^8.0.10",
44
- "postcss-import": "^12.0.1",
44
+ "postcss-cli": "^10.1.0",
45
+ "postcss-custom-properties": "^13.1.4",
46
+ "postcss-import": "^15.1.0",
45
47
  "postcss-preset-env": "^6.6.0",
46
48
  "rollup": "^1.11.3",
47
49
  "rollup-plugin-copy": "^3.4.0",
@@ -51,5 +53,5 @@
51
53
  "typed-css-modules": "^0.7.0",
52
54
  "typescript": "^4.9.5"
53
55
  },
54
- "gitHead": "f164bf5420fb0073954c04f759e32e23c409108a"
56
+ "gitHead": "c7bfdd42f139fe92b4f79e1a0aabfbabd7c1e40a"
55
57
  }
File without changes