@descope-ui/descope-collapsible-container 0.0.4 → 0.0.6
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 +10 -0
- package/package.json +5 -5
- package/src/component/CollapsibleContainerClass.js +1 -1
- package/src/theme.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.0.6](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-collapsible-container-0.0.5...@descope-ui/descope-collapsible-container-0.0.6) (2025-04-29)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@descope-ui/common` updated to version `0.0.11`
|
|
10
|
+
* `@descope-ui/theme-globals` updated to version `0.0.11`
|
|
11
|
+
* `@descope-ui/descope-text` updated to version `0.0.11`
|
|
12
|
+
* `@descope-ui/descope-icon` updated to version `0.0.6`
|
|
13
|
+
## [0.0.5](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-collapsible-container-0.0.4...@descope-ui/descope-collapsible-container-0.0.5) (2025-04-23)
|
|
14
|
+
|
|
5
15
|
## [0.0.4](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-collapsible-container-0.0.3...@descope-ui/descope-collapsible-container-0.0.4) (2025-04-22)
|
|
6
16
|
|
|
7
17
|
## [0.0.3](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-collapsible-container-0.0.2...@descope-ui/descope-collapsible-container-0.0.3) (2025-04-21)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope-ui/descope-collapsible-container",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./src/component/index.js"
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"test-drivers": "0.0.1"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@descope-ui/common": "0.0.
|
|
22
|
-
"@descope-ui/theme-globals": "0.0.
|
|
23
|
-
"@descope-ui/descope-text": "0.0.
|
|
24
|
-
"@descope-ui/descope-icon": "0.0.
|
|
21
|
+
"@descope-ui/common": "0.0.11",
|
|
22
|
+
"@descope-ui/theme-globals": "0.0.11",
|
|
23
|
+
"@descope-ui/descope-text": "0.0.11",
|
|
24
|
+
"@descope-ui/descope-icon": "0.0.6"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"link-workspace-packages": false
|
|
@@ -206,9 +206,9 @@ export const CollapsibleContainerClass = compose(
|
|
|
206
206
|
boxShadow: { selector: selectors.wrapper },
|
|
207
207
|
|
|
208
208
|
headerIconOrder: { selector: selectors.icon, property: 'order' },
|
|
209
|
-
headerJustifyContent: { selector: selectors.header, property: 'justify-content' },
|
|
210
209
|
headerCursor: { selector: selectors.header, property: 'cursor' },
|
|
211
210
|
headerGap: { selector: selectors.header, property: 'gap' },
|
|
211
|
+
textGrow: { selector: selectors.text, property: 'flex-grow' },
|
|
212
212
|
textDirection: { selector: selectors.text, property: 'direction' },
|
|
213
213
|
iconAnimationDuration: { selector: selectors.icon, property: 'transition-duration' },
|
|
214
214
|
contentAnimationDuration: { selector: selectors.content, property: 'transition-duration' },
|
package/src/theme.js
CHANGED
|
@@ -43,7 +43,7 @@ const collapsibleContainer = {
|
|
|
43
43
|
[compVars.contentAnimationDuration]: '0.1s',
|
|
44
44
|
|
|
45
45
|
[compVars.borderWidth]: '0px',
|
|
46
|
-
[compVars.
|
|
46
|
+
[compVars.textGrow]: '0',
|
|
47
47
|
|
|
48
48
|
verticalPadding: {
|
|
49
49
|
sm: { [compVars.verticalPadding]: '5px' },
|
|
@@ -97,7 +97,7 @@ const collapsibleContainer = {
|
|
|
97
97
|
},
|
|
98
98
|
|
|
99
99
|
_fillTitle: {
|
|
100
|
-
[compVars.
|
|
100
|
+
[compVars.textGrow]: '1',
|
|
101
101
|
},
|
|
102
102
|
|
|
103
103
|
_border: {
|