@soleil-se/config-svelte 1.8.3 → 1.8.4
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
CHANGED
|
@@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.8.4] - 2021-12-03
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Removable prop was not working on NodeSelector
|
|
13
|
+
|
|
8
14
|
## [1.8.3] - 2021-12-01
|
|
9
15
|
|
|
10
16
|
### Fixed
|
|
11
17
|
|
|
12
|
-
- Remove hidden input for LinkSelector to fix bug with trashed / removed pages and files introduced in Sitevision 9.
|
|
18
|
+
- Remove hidden input for LinkSelector to fix bug with trashed / removed pages and files introduced in Sitevision 9.1.
|
|
13
19
|
|
|
14
20
|
## [1.8.2] - 2021-11-26
|
|
15
21
|
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
export let required = false;
|
|
14
14
|
export let disabled = false;
|
|
15
15
|
export let readonly = false;
|
|
16
|
-
export let removable =
|
|
16
|
+
export let removable = true;
|
|
17
17
|
export let selectable = [];
|
|
18
18
|
export let value = '';
|
|
19
19
|
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
{required}
|
|
71
71
|
{disabled}
|
|
72
72
|
{readonly}
|
|
73
|
-
data-removable={removable}
|
|
73
|
+
data-removable={removable ? '' : undefined}
|
|
74
74
|
data-component={component}
|
|
75
75
|
data-types={selectable}
|
|
76
76
|
value={displayName}
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
width: 100%;
|
|
90
90
|
height: 34px;
|
|
91
91
|
margin-top: -34px;
|
|
92
|
-
background-color:
|
|
92
|
+
background-color: rgb(255 255 255 / 30%);
|
|
93
93
|
cursor: not-allowed;
|
|
94
94
|
}
|
|
95
95
|
</style>
|