@quartzds/core-react 1.0.0-beta.104 → 1.0.0-beta.105
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 +11 -0
- package/package.json +2 -2
- package/styles/core.css +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,17 @@ 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-react 1.0.0-beta.105 (2025-09-02)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* **@quartzds/core:** upgraded to 1.0.0-beta.106
|
|
24
|
+
|
|
14
25
|
## @quartzds/core-react 1.0.0-beta.104 (2025-08-29)
|
|
15
26
|
|
|
16
27
|
* feat!: update react bindings ([6c3c6b9](https://github.com/quartzds/core-foundations/commit/6c3c6b9))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quartzds/core-react",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.105",
|
|
4
4
|
"description": "React wrapper for @quartzds/core",
|
|
5
5
|
"homepage": "https://github.com/quartzds/core-foundations/tree/main/packages/react",
|
|
6
6
|
"bugs": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"CHANGELOG.md"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@quartzds/core": "1.0.0-beta.
|
|
32
|
+
"@quartzds/core": "1.0.0-beta.106",
|
|
33
33
|
"@stencil/core": "^4.35.2",
|
|
34
34
|
"@stencil/react-output-target": "^1.2.0",
|
|
35
35
|
"@stencil/ssr": "^0.1.1"
|
package/styles/core.css
CHANGED
|
@@ -192,7 +192,10 @@
|
|
|
192
192
|
.qds-main-subsection {
|
|
193
193
|
background-color: var(--qds-theme-main-subsection-standard-background);
|
|
194
194
|
border-radius: var(--qds-main-subsection-border-radius);
|
|
195
|
-
padding: var(--qds-main-subsection-padding)
|
|
195
|
+
padding: var(--qds-main-subsection-padding-top)
|
|
196
|
+
var(--qds-main-subsection-padding-end)
|
|
197
|
+
var(--qds-main-subsection-padding-bottom)
|
|
198
|
+
var(--qds-main-subsection-padding-start);
|
|
196
199
|
}
|
|
197
200
|
|
|
198
201
|
.qds-main-subsection,
|
|
@@ -361,8 +364,9 @@
|
|
|
361
364
|
.qds-accessory {
|
|
362
365
|
background-color: var(--qds-theme-accessory-background);
|
|
363
366
|
border-radius: var(--qds-accessory-border-radius);
|
|
364
|
-
box-shadow: var(--qds-
|
|
365
|
-
padding: var(--qds-accessory-padding)
|
|
367
|
+
box-shadow: var(--qds-platform-accessory-elevation);
|
|
368
|
+
padding: var(--qds-accessory-padding-top) var(--qds-accessory-padding-end)
|
|
369
|
+
var(--qds-accessory-padding-bottom) var(--qds-accessory-padding-start);
|
|
366
370
|
}
|
|
367
371
|
|
|
368
372
|
.qds-accessory,
|