@descope-ui/descope-anchored 3.7.1 → 3.7.3
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 +4 -0
- package/package.json +6 -6
- package/src/component/AnchoredClass.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [3.7.3](https://github.com/descope/web-components-ui/compare/web-components-ui-3.7.2...web-components-ui-3.7.3) (2026-05-12)
|
|
6
|
+
|
|
7
|
+
## [3.7.2](https://github.com/descope/web-components-ui/compare/web-components-ui-3.7.1...web-components-ui-3.7.2) (2026-05-11)
|
|
8
|
+
|
|
5
9
|
## [3.7.1](https://github.com/descope/web-components-ui/compare/web-components-ui-3.7.0...web-components-ui-3.7.1) (2026-05-11)
|
|
6
10
|
|
|
7
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope-ui/descope-anchored",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.3",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./src/component/index.js"
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@playwright/test": "1.58.2",
|
|
14
|
-
"e2e-utils": "3.7.
|
|
15
|
-
"test-assets": "3.7.
|
|
16
|
-
"test-drivers": "3.7.
|
|
14
|
+
"e2e-utils": "3.7.3",
|
|
15
|
+
"test-assets": "3.7.3",
|
|
16
|
+
"test-drivers": "3.7.3"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@descope-ui/
|
|
20
|
-
"@descope-ui/
|
|
19
|
+
"@descope-ui/theme-globals": "3.7.3",
|
|
20
|
+
"@descope-ui/common": "3.7.3"
|
|
21
21
|
},
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"link-workspace-packages": false
|
|
@@ -128,7 +128,7 @@ class RawAnchored extends createBaseClass({
|
|
|
128
128
|
width: 100%; /* fill non-flex parents */
|
|
129
129
|
flex-grow: 1; /* absorb extra space in flex parents */
|
|
130
130
|
flex-shrink: 0; /* hold full width — shrink:1 would let siblings squeeze it below 100% */
|
|
131
|
-
flex-basis:
|
|
131
|
+
flex-basis: auto; /* defer to width:100% on the main axis; avoids forcing 100% height in column-flex parents */
|
|
132
132
|
min-width: 0; /* prevent overflow when the outer host is itself inside a constrained flex row */
|
|
133
133
|
}
|
|
134
134
|
`;
|