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/dist/index.js
CHANGED
|
@@ -1337,7 +1337,8 @@ const Fs = Qe((n) => {
|
|
|
1337
1337
|
modal: { type: Boolean, default: !1 },
|
|
1338
1338
|
nonDismissible: { type: Boolean, default: !1 },
|
|
1339
1339
|
alert: { type: Boolean, default: !1 },
|
|
1340
|
-
alignment: { default: "center" }
|
|
1340
|
+
alignment: { default: "center" },
|
|
1341
|
+
backdrop: { default: "soft" }
|
|
1341
1342
|
},
|
|
1342
1343
|
emits: ["update:open"],
|
|
1343
1344
|
setup(n, { expose: t, emit: e }) {
|
|
@@ -1378,6 +1379,7 @@ const Fs = Qe((n) => {
|
|
|
1378
1379
|
l(i),
|
|
1379
1380
|
"onyx-truncation-multiline",
|
|
1380
1381
|
"onyx-basic-dialog",
|
|
1382
|
+
{ "onyx-basic-dialog__backdrop--medium": o.backdrop === "medium" },
|
|
1381
1383
|
{ [`onyx-basic-dialog--${o.alignment}`]: o.alignment !== "center" }
|
|
1382
1384
|
]),
|
|
1383
1385
|
"aria-modal": o.modal,
|
|
@@ -7953,6 +7955,7 @@ const Ic = (n, t) => {
|
|
|
7953
7955
|
open: { type: [Boolean, null] },
|
|
7954
7956
|
nonDismissible: { type: Boolean },
|
|
7955
7957
|
alert: { type: Boolean },
|
|
7958
|
+
backdrop: {},
|
|
7956
7959
|
modelValue: {},
|
|
7957
7960
|
loading: { type: Boolean }
|
|
7958
7961
|
},
|
|
@@ -8419,7 +8422,8 @@ const Ic = (n, t) => {
|
|
|
8419
8422
|
label: {},
|
|
8420
8423
|
open: { type: [Boolean, null] },
|
|
8421
8424
|
nonDismissible: { type: Boolean },
|
|
8422
|
-
alert: { type: Boolean }
|
|
8425
|
+
alert: { type: Boolean },
|
|
8426
|
+
backdrop: {}
|
|
8423
8427
|
},
|
|
8424
8428
|
emits: ["update:open"],
|
|
8425
8429
|
setup(n, { emit: t }) {
|