@quartzds/core-vue 1.0.0-beta.132 → 1.0.0-beta.133
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/CHANGELOG.md +13 -0
- package/package.json +2 -2
- package/styles/core.css +7 -19
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,19 @@ SPDX-License-Identifier: Apache-2.0
|
|
|
11
11
|
|
|
12
12
|
> All notable changes to this project will be documented in this file
|
|
13
13
|
|
|
14
|
+
## @quartzds/core-vue 1.0.0-beta.133 (2026-07-29)
|
|
15
|
+
|
|
16
|
+
* Merge pull request #1375 from quartzds/renovate/vue-monorepo ([f38b0f4](https://github.com/quartzds/core-foundations/commit/f38b0f4)), closes [#1375](https://github.com/quartzds/core-foundations/issues/1375)
|
|
17
|
+
* chore(deps): update vue monorepo to v3.5.35 ([ed73cc8](https://github.com/quartzds/core-foundations/commit/ed73cc8))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
* **@quartzds/core:** upgraded to 1.0.0-beta.130
|
|
26
|
+
|
|
14
27
|
## @quartzds/core-vue 1.0.0-beta.132 (2026-07-02)
|
|
15
28
|
|
|
16
29
|
* fix(qds-tabbar): resolve tabbar issue when tab is selected programmatically ([bc213c2](https://github.com/quartzds/core-foundations/commit/bc213c2))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quartzds/core-vue",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.133",
|
|
4
4
|
"description": "Vue wrapper for @quartzds/core",
|
|
5
5
|
"homepage": "https://github.com/quartzds/core-foundations/tree/main/packages/vue",
|
|
6
6
|
"bugs": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"CHANGELOG.md"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quartzds/core": "1.0.0-beta.
|
|
28
|
+
"@quartzds/core": "1.0.0-beta.130",
|
|
29
29
|
"@stencil/vue-output-target": "^0.11.8"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
package/styles/core.css
CHANGED
|
@@ -203,10 +203,6 @@
|
|
|
203
203
|
gap: var(--qds-main-subsection-gap-children-unrelated);
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
-
.qds-main-subsection.qds-emphasized {
|
|
207
|
-
box-shadow: var(--qds-theme-main-subsection-emphasized);
|
|
208
|
-
}
|
|
209
|
-
|
|
210
206
|
.qds-main-subsection.qds-related,
|
|
211
207
|
.qds-main-subsection .qds-related {
|
|
212
208
|
gap: var(--qds-main-subsection-gap-children-related);
|
|
@@ -215,8 +211,9 @@
|
|
|
215
211
|
.qds-navigation {
|
|
216
212
|
background-color: var(--qds-theme-navigation-background);
|
|
217
213
|
border-radius: var(--qds-navigation-border-radius);
|
|
218
|
-
box-shadow: var(--qds-
|
|
219
|
-
padding: var(--qds-navigation-padding);
|
|
214
|
+
box-shadow: var(--qds-navigation-elevation);
|
|
215
|
+
padding-block: var(--qds-navigation-padding-vertical);
|
|
216
|
+
padding-inline: var(--qds-navigation-padding-horizontal);
|
|
220
217
|
}
|
|
221
218
|
|
|
222
219
|
.qds-navigation,
|
|
@@ -254,10 +251,6 @@
|
|
|
254
251
|
gap: var(--qds-navigation-subsection-gap-children-unrelated);
|
|
255
252
|
}
|
|
256
253
|
|
|
257
|
-
.qds-navigation-subsection.qds-emphasized {
|
|
258
|
-
box-shadow: var(--qds-theme-navigation-subsection-emphasized);
|
|
259
|
-
}
|
|
260
|
-
|
|
261
254
|
.qds-navigation-subsection.qds-related,
|
|
262
255
|
.qds-navigation-subsection .qds-related {
|
|
263
256
|
gap: var(--qds-navigation-subsection-gap-children-related);
|
|
@@ -297,7 +290,10 @@
|
|
|
297
290
|
.qds-panel-subsection {
|
|
298
291
|
background-color: var(--qds-theme-panel-subsection-standard-background);
|
|
299
292
|
border-radius: var(--qds-panel-subsection-border-radius);
|
|
300
|
-
padding: var(--qds-panel-subsection-padding)
|
|
293
|
+
padding: var(--qds-panel-subsection-padding-top)
|
|
294
|
+
var(--qds-panel-subsection-padding-end)
|
|
295
|
+
var(--qds-panel-subsection-padding-bottom)
|
|
296
|
+
var(--qds-panel-subsection-padding-start);
|
|
301
297
|
}
|
|
302
298
|
|
|
303
299
|
.qds-panel-subsection,
|
|
@@ -305,10 +301,6 @@
|
|
|
305
301
|
gap: var(--qds-panel-subsection-gap-children-unrelated);
|
|
306
302
|
}
|
|
307
303
|
|
|
308
|
-
.qds-panel-subsection.qds-emphasized {
|
|
309
|
-
box-shadow: var(--qds-theme-panel-subsection-emphasized);
|
|
310
|
-
}
|
|
311
|
-
|
|
312
304
|
.qds-panel-subsection.qds-related,
|
|
313
305
|
.qds-panel-subsection .qds-related {
|
|
314
306
|
gap: var(--qds-panel-subsection-gap-children-related);
|
|
@@ -355,10 +347,6 @@
|
|
|
355
347
|
gap: var(--qds-popup-subsection-gap-children-unrelated);
|
|
356
348
|
}
|
|
357
349
|
|
|
358
|
-
.qds-popup-subsection.qds-emphasized {
|
|
359
|
-
box-shadow: var(--qds-theme-popup-subsection-emphasized);
|
|
360
|
-
}
|
|
361
|
-
|
|
362
350
|
.qds-popup-subsection.qds-related,
|
|
363
351
|
.qds-popup-subsection .qds-related {
|
|
364
352
|
gap: var(--qds-popup-subsection-gap-children-related);
|