sit-onyx 1.6.0-dev-20260109133051 → 1.6.0-dev-20260112070348
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/components/OnyxBasicDialog/OnyxBasicDialog.d.vue.ts +1 -0
- package/dist/components/OnyxBasicDialog/types.d.ts +5 -0
- package/dist/components/OnyxGlobalSearch/OnyxGlobalSearch.d.vue.ts +4 -1
- package/dist/components/OnyxSidebar/OnyxSidebar.d.vue.ts +2 -0
- package/dist/components/OnyxSidebar/types.d.ts +1 -1
- package/dist/index.esm-bundler.js +6 -2
- package/dist/index.esm-bundler.js.map +1 -1
- package/dist/index.js +6 -2
- package/dist/style.css +1 -1
- package/package.json +6 -6
- package/src/styles/root.scss +4 -0
- package/src/styles/variables/density-compact.css +1 -1
- package/src/styles/variables/density-cozy.css +1 -1
- package/src/styles/variables/density-default.css +1 -1
- package/src/styles/variables/spacing.css +1 -1
- package/src/styles/variables/themes/onyx.css +8 -4
- package/src/styles/variables/themes/value.css +5 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sit-onyx",
|
|
3
3
|
"description": "A design system and Vue.js component library created by Schwarz IT",
|
|
4
|
-
"version": "1.6.0-dev-
|
|
4
|
+
"version": "1.6.0-dev-20260112070348",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Schwarz IT KG",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"typescript": ">= 5.2.2",
|
|
42
42
|
"vue": ">= 3.5.0",
|
|
43
|
-
"@sit-onyx/icons": "^1.4.0-dev-
|
|
43
|
+
"@sit-onyx/icons": "^1.4.0-dev-20260112070348"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@axe-core/playwright": "^4.11.0",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
"vue-component-type-helpers": "^3.2.2",
|
|
59
59
|
"vue-i18n": "^11.2.8",
|
|
60
60
|
"vue-router": "^4.6.4",
|
|
61
|
-
"@sit-onyx/
|
|
62
|
-
"@sit-onyx/
|
|
63
|
-
"@sit-onyx/
|
|
61
|
+
"@sit-onyx/flags": "^1.0.0",
|
|
62
|
+
"@sit-onyx/headless": "^0.5.0-dev-20260112070348",
|
|
63
|
+
"@sit-onyx/playwright-utils": "^1.1.0-dev-20260112070348",
|
|
64
64
|
"@sit-onyx/shared": "^0.1.0",
|
|
65
|
-
"@sit-onyx/
|
|
65
|
+
"@sit-onyx/storybook-utils": "^1.1.0"
|
|
66
66
|
},
|
|
67
67
|
"scripts": {
|
|
68
68
|
"dev": "storybook dev -p 6006 --no-open",
|
package/src/styles/root.scss
CHANGED
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
--onyx-outline-width: 0.25rem;
|
|
24
24
|
|
|
25
25
|
--onyx-nav-bar-height: 3.5rem;
|
|
26
|
+
|
|
27
|
+
// TODO: Remove in v2
|
|
28
|
+
/** @deprecated Use --onyx-color-component-opacity-backdrop-soft instead */
|
|
29
|
+
--onyx-color-component-opacity-backdrop: var(--onyx-color-component-opacity-backdrop-soft);
|
|
26
30
|
}
|
|
27
31
|
|
|
28
32
|
:root {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly.
|
|
3
3
|
* This file contains the specific variables for the "compact" theme.
|
|
4
|
-
* Imported from Figma API on
|
|
4
|
+
* Imported from Figma API on Fri, 19 Dec 2025 11:05:01 GMT
|
|
5
5
|
*/
|
|
6
6
|
.onyx-density-compact {
|
|
7
7
|
--onyx-density-2xl: var(--onyx-number-spacing-600);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly.
|
|
3
3
|
* This file contains the specific variables for the "cozy" theme.
|
|
4
|
-
* Imported from Figma API on
|
|
4
|
+
* Imported from Figma API on Fri, 19 Dec 2025 11:05:01 GMT
|
|
5
5
|
*/
|
|
6
6
|
.onyx-density-cozy {
|
|
7
7
|
--onyx-density-2xl: var(--onyx-number-spacing-800);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly.
|
|
3
3
|
* This file contains the specific variables for the "default" theme.
|
|
4
|
-
* Imported from Figma API on
|
|
4
|
+
* Imported from Figma API on Fri, 19 Dec 2025 11:04:47 GMT
|
|
5
5
|
*/
|
|
6
6
|
:where(:root),
|
|
7
7
|
.onyx-density-default {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly.
|
|
3
3
|
* This file contains the specific variables for the "spacing" theme.
|
|
4
|
-
* Imported from Figma API on
|
|
4
|
+
* Imported from Figma API on Fri, 19 Dec 2025 11:04:35 GMT
|
|
5
5
|
*/
|
|
6
6
|
:where(:root) {
|
|
7
7
|
--onyx-spacing-2xl: var(--onyx-number-spacing-700);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly.
|
|
3
3
|
* This file contains the specific variables for the "onyx" theme.
|
|
4
|
-
* Imported from Figma API on
|
|
4
|
+
* Imported from Figma API on Fri, 19 Dec 2025 11:04:23 GMT
|
|
5
5
|
*/
|
|
6
6
|
:where(:root),
|
|
7
7
|
.onyx-theme-default {
|
|
@@ -306,9 +306,13 @@
|
|
|
306
306
|
var(--onyx-color-base-primary-500),
|
|
307
307
|
var(--onyx-color-base-primary-700)
|
|
308
308
|
);
|
|
309
|
-
--onyx-color-component-opacity-backdrop: light-dark(
|
|
310
|
-
var(--onyx-color-opacity-
|
|
311
|
-
var(--onyx-color-opacity-
|
|
309
|
+
--onyx-color-component-opacity-backdrop-medium: light-dark(
|
|
310
|
+
var(--onyx-color-opacity-backdrop-600),
|
|
311
|
+
var(--onyx-color-opacity-backdrop-800)
|
|
312
|
+
);
|
|
313
|
+
--onyx-color-component-opacity-backdrop-soft: light-dark(
|
|
314
|
+
var(--onyx-color-opacity-backdrop-250),
|
|
315
|
+
var(--onyx-color-opacity-backdrop-450)
|
|
312
316
|
);
|
|
313
317
|
--onyx-color-text-icons-danger-bold: light-dark(
|
|
314
318
|
var(--onyx-color-system-red-700),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly.
|
|
3
3
|
* This file contains the specific variables for the "value" theme.
|
|
4
|
-
* Imported from Figma API on
|
|
4
|
+
* Imported from Figma API on Fri, 19 Dec 2025 11:04:23 GMT
|
|
5
5
|
*/
|
|
6
6
|
:where(:root),
|
|
7
7
|
.onyx-theme-default {
|
|
@@ -103,8 +103,10 @@
|
|
|
103
103
|
--onyx-color-onyx-1000: #005356;
|
|
104
104
|
--onyx-color-onyx-1100: #003c3e;
|
|
105
105
|
--onyx-color-onyx-1200: #002626;
|
|
106
|
-
--onyx-color-opacity-
|
|
107
|
-
--onyx-color-opacity-
|
|
106
|
+
--onyx-color-opacity-backdrop-250: #0000003f;
|
|
107
|
+
--onyx-color-opacity-backdrop-450: #00000072;
|
|
108
|
+
--onyx-color-opacity-backdrop-600: #00000099;
|
|
109
|
+
--onyx-color-opacity-backdrop-800: #000000cc;
|
|
108
110
|
--onyx-color-prezero-green-100: #e8f3bd;
|
|
109
111
|
--onyx-color-prezero-green-200: #e2f593;
|
|
110
112
|
--onyx-color-prezero-green-300: #d3ed64;
|