ics-ui-kit 0.1.0-alpha.5 → 0.1.0-alpha.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.
- package/dist/styles-scoped.css +3 -5
- package/package.json +3 -2
package/dist/styles-scoped.css
CHANGED
|
@@ -594,15 +594,13 @@
|
|
|
594
594
|
[hidden]:where(:not([hidden="until-found"])) {
|
|
595
595
|
display: none;
|
|
596
596
|
}
|
|
597
|
+
font-family: Inter, sans-serif;
|
|
598
|
+
color: hsl(var(--foreground));
|
|
599
|
+
|
|
597
600
|
* {
|
|
598
601
|
border-color: hsl(var(--border));
|
|
599
602
|
}
|
|
600
603
|
}
|
|
601
|
-
body.ui-kit-body {
|
|
602
|
-
background-color: hsl(var(--background));
|
|
603
|
-
font-family: Inter, sans-serif;
|
|
604
|
-
color: hsl(var(--foreground));
|
|
605
|
-
}
|
|
606
604
|
.ui-kit .container {
|
|
607
605
|
width: 100%;
|
|
608
606
|
margin-left: auto;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ics-ui-kit",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.6",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://gitlab.ics-it.ru/ics/ui-kit"
|
|
@@ -47,7 +47,8 @@
|
|
|
47
47
|
"release:patch:alpha": "npm run check-build && npm version prepatch --preid alpha && npm publish --tag alpha",
|
|
48
48
|
"release:patch": "npm run check-build && npm version patch && npm publish",
|
|
49
49
|
"release:minor": "npm run check-build && npm version minor && npm publish",
|
|
50
|
-
"release:major": "npm run check-build && npm version major && npm publish"
|
|
50
|
+
"release:major": "npm run check-build && npm version major && npm publish",
|
|
51
|
+
"postversion": "git push && git push --tags"
|
|
51
52
|
},
|
|
52
53
|
"dependencies": {
|
|
53
54
|
"@dnd-kit/core": "^6.2.0",
|