@quartzds/core-react 1.0.0-beta.114 → 1.0.0-beta.115
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 +2 -1
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.115 (2025-12-30)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* **@quartzds/core:** upgraded to 1.0.0-beta.116
|
|
24
|
+
|
|
14
25
|
## @quartzds/core-react 1.0.0-beta.114 (2025-12-18)
|
|
15
26
|
|
|
16
27
|
* fix!: remove unused nav-list-item component from core package ([7b2e9e6](https://github.com/quartzds/core-foundations/commit/7b2e9e6))
|
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.115",
|
|
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.116",
|
|
33
33
|
"@stencil/core": "^4.37.0",
|
|
34
34
|
"@stencil/react-output-target": "^1.2.0",
|
|
35
35
|
"@stencil/ssr": "^0.1.1"
|
package/styles/core.css
CHANGED
|
@@ -318,7 +318,8 @@
|
|
|
318
318
|
background-color: var(--qds-theme-popup-background);
|
|
319
319
|
border-radius: var(--qds-popup-border-radius);
|
|
320
320
|
box-shadow: var(--qds-popup-elevation);
|
|
321
|
-
padding: var(--qds-popup-padding)
|
|
321
|
+
padding: var(--qds-popup-padding-top) var(--qds-popup-padding-end)
|
|
322
|
+
var(--qds-popup-padding-bottom) var(--qds-popup-padding-start);
|
|
322
323
|
}
|
|
323
324
|
|
|
324
325
|
.qds-popup,
|