@payfit/unity-themes 1.1.1-beta.1 → 1.2.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.
@@ -208,6 +208,10 @@
208
208
  --container-app-menu: 296px; /** Width of the main menu in global App layout */
209
209
  --container-lg: 984px; /** Maximum width for layout containers at large resolutions */
210
210
  --container-xl: 1144px; /** Maximum width for layout containers at extra-large resolutions */
211
+ --container-content: 523px; /** Maximum width for content containers */
212
+ --container-section: 703px; /** Maximum width for section containers */
213
+ --container-page: 1063px; /** Maximum width for page containers */
214
+ --container-app: 1439px; /** Maximum width for app containers */
211
215
  --spacing-0: 0;
212
216
  --spacing-25: 2px;
213
217
  --spacing-50: 4px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payfit/unity-themes",
3
- "version": "1.1.1-beta.1",
3
+ "version": "1.2.0",
4
4
  "main": "./dist/esm/index.js",
5
5
  "types": "./dist/esm/index.d.ts",
6
6
  "style": "./dist/css/unity.css",
@@ -10,6 +10,9 @@
10
10
  "tokens",
11
11
  "src"
12
12
  ],
13
+ "storybook": {
14
+ "url": "https://unity-theme.payfit.io/"
15
+ },
13
16
  "exports": {
14
17
  ".": {
15
18
  "import": {
@@ -24,9 +27,6 @@
24
27
  },
25
28
  "./package.json": "./package.json"
26
29
  },
27
- "storybook": {
28
- "url": "https://unity-theme.payfit.io/"
29
- },
30
30
  "devDependencies": {
31
31
  "@fontsource/inter": "5.0.19",
32
32
  "@fontsource/roboto-mono": "5.2.7",
@@ -35,11 +35,11 @@
35
35
  "@payfit/hr-app-eslint": "0.0.0-use.local",
36
36
  "@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
37
37
  "@payfit/vite-configs": "0.0.0-use.local",
38
- "@storybook/addon-a11y": "9.1.5",
39
- "@storybook/addon-docs": "9.1.5",
40
- "@storybook/addon-links": "9.1.5",
41
- "@storybook/addon-vitest": "9.1.5",
42
- "@storybook/react-vite": "9.1.5",
38
+ "@storybook/addon-a11y": "9.1.7",
39
+ "@storybook/addon-docs": "9.1.7",
40
+ "@storybook/addon-links": "9.1.7",
41
+ "@storybook/addon-vitest": "9.1.7",
42
+ "@storybook/react-vite": "9.1.7",
43
43
  "@storybook/test-runner": "0.23.0",
44
44
  "@tailwindcss/vite": "4.1.11",
45
45
  "@types/lodash": "4.14.202",
@@ -55,10 +55,10 @@
55
55
  "prettier": "3.1.0",
56
56
  "react": "18.3.1",
57
57
  "react-dom": "18.3.1",
58
- "storybook": "9.1.5",
58
+ "storybook": "9.1.7",
59
59
  "tsx": "4.17.0",
60
60
  "typescript": "5.9.2",
61
- "vite": "6.3.5",
61
+ "vite": "7.1.6",
62
62
  "vitest": "3.2.4"
63
63
  },
64
64
  "peerDependencies": {
package/tokens/sizes.json CHANGED
@@ -21,6 +21,34 @@
21
21
  "$extensions": {
22
22
  "com.payfit.unity.only": ["maxWidth"]
23
23
  }
24
+ },
25
+ "content": {
26
+ "$value": "523px",
27
+ "$description": "Maximum width for content containers",
28
+ "$extensions": {
29
+ "com.payfit.unity.only": ["maxWidth"]
30
+ }
31
+ },
32
+ "section": {
33
+ "$value": "703px",
34
+ "$description": "Maximum width for section containers",
35
+ "$extensions": {
36
+ "com.payfit.unity.only": ["maxWidth"]
37
+ }
38
+ },
39
+ "page": {
40
+ "$value": "1063px",
41
+ "$description": "Maximum width for page containers",
42
+ "$extensions": {
43
+ "com.payfit.unity.only": ["maxWidth"]
44
+ }
45
+ },
46
+ "app": {
47
+ "$value": "1439px",
48
+ "$description": "Maximum width for app containers",
49
+ "$extensions": {
50
+ "com.payfit.unity.only": ["maxWidth"]
51
+ }
24
52
  }
25
53
  }
26
54
  }