@bccampus/ui-components 0.5.7 → 0.5.8
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/package.json +2 -2
- package/src/styles/theme.css +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bccampus/ui-components",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "yarn@4.10.3",
|
|
6
6
|
"exports": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dev": "vite",
|
|
27
27
|
"build": "tsc -b && vite build",
|
|
28
28
|
"lint": "eslint .",
|
|
29
|
-
"publish": "yarn build && npm publish --access public",
|
|
29
|
+
"publish": "yarn build && npm publish --access public --scope=@bccampus",
|
|
30
30
|
"preview": "vite preview"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
package/src/styles/theme.css
CHANGED
|
@@ -168,9 +168,10 @@
|
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
+
/* prettier-ignore */
|
|
171
172
|
@utility areas-* {
|
|
172
|
-
grid-template-areas: --value(
|
|
173
|
-
grid-template-columns: --modifier(
|
|
173
|
+
grid-template-areas: --value([*]);
|
|
174
|
+
grid-template-columns: --modifier([*]);
|
|
174
175
|
}
|
|
175
176
|
|
|
176
177
|
@utility stick-to-page {
|