@crowdstrike/tailwind-toucan-base 3.3.0 → 3.4.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.
- package/index.css +51 -734
- package/package.json +15 -15
- package/src/tailwind.config.js +2 -0
- package/toucan.css +51 -734
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@crowdstrike/tailwind-toucan-base",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.4.0",
|
4
4
|
"private": false,
|
5
5
|
"description": "Tailwind preset for CrowdStrike's Toucan design system",
|
6
6
|
"repository": "https://github.com/CrowdStrike/tailwind-toucan-base",
|
@@ -54,24 +54,24 @@
|
|
54
54
|
"tailwindcss": "^2.2.15"
|
55
55
|
},
|
56
56
|
"devDependencies": {
|
57
|
-
"@figma-export/cli": "4.
|
58
|
-
"@nullvoxpopuli/eslint-configs": "2.2.
|
57
|
+
"@figma-export/cli": "4.5.0",
|
58
|
+
"@nullvoxpopuli/eslint-configs": "2.2.62",
|
59
59
|
"@semantic-release/changelog": "^6.0.1",
|
60
60
|
"@semantic-release/git": "^10.0.1",
|
61
61
|
"@types/fs-extra": "^9.0.13",
|
62
|
-
"autoprefixer": "^10.4.
|
63
|
-
"c8": "^7.
|
62
|
+
"autoprefixer": "^10.4.12",
|
63
|
+
"c8": "^7.12.0",
|
64
64
|
"common-tags": "^1.8.2",
|
65
|
-
"eslint": "^8.
|
65
|
+
"eslint": "^8.25.0",
|
66
66
|
"execa": "^6.1.0",
|
67
67
|
"fs-extra": "^10.1.0",
|
68
68
|
"npm-run-all": "^4.1.5",
|
69
|
-
"pnpm": "^7.5
|
70
|
-
"postcss": "^8.4.
|
71
|
-
"semantic-release": "^19.0.
|
72
|
-
"tailwind-config-viewer": "^1.7.
|
73
|
-
"typescript": "^4.
|
74
|
-
"vitest": "0.
|
69
|
+
"pnpm": "^7.13.5",
|
70
|
+
"postcss": "^8.4.18",
|
71
|
+
"semantic-release": "^19.0.5",
|
72
|
+
"tailwind-config-viewer": "^1.7.2",
|
73
|
+
"typescript": "^4.8.4",
|
74
|
+
"vitest": "0.24.3"
|
75
75
|
},
|
76
76
|
"engines": {
|
77
77
|
"node": ">=14.15.0"
|
@@ -93,10 +93,10 @@
|
|
93
93
|
"@semantic-release/git"
|
94
94
|
]
|
95
95
|
},
|
96
|
-
"packageManager": "pnpm@7.5
|
96
|
+
"packageManager": "pnpm@7.13.5",
|
97
97
|
"volta": {
|
98
|
-
"node": "16.
|
98
|
+
"node": "16.18.0",
|
99
99
|
"yarn": "1.22.19",
|
100
|
-
"npm": "8.
|
100
|
+
"npm": "8.19.2"
|
101
101
|
}
|
102
102
|
}
|
package/src/tailwind.config.js
CHANGED
@@ -37,6 +37,8 @@ module.exports = {
|
|
37
37
|
'focus-outline': 'inset 0 0 0 2px var(--focus)',
|
38
38
|
'error-outline': 'inset 0 0 0 2px var(--critical)',
|
39
39
|
'search-input': 'inset 0 0 0 1px var(--nav-text-secondary)',
|
40
|
+
'error-focus-outline':
|
41
|
+
'inset 0 0 0 2px var(--critical), 0 0 0 2px var(--surface-base), 0 0 0 4px var(--focus)',
|
40
42
|
...boxShadow,
|
41
43
|
},
|
42
44
|
|