@soleil-se/config-svelte 1.0.1 → 1.0.2
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
|
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
## [1.0.2] - 2020-12-08
|
|
7
|
+
### Fixed
|
|
8
|
+
- Array destructuring not working in TextList for IE11.
|
|
9
|
+
- RadioGroup value not working in IE11.
|
|
10
|
+
- Added missing polyfills for IE11 in docs and demo.
|
|
6
11
|
|
|
7
12
|
## [1.0.1] - 2020-12-08
|
|
8
13
|
### Fixed
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
onMount(() => {
|
|
28
|
-
const
|
|
28
|
+
const element = setupComponent(id)[0];
|
|
29
29
|
|
|
30
30
|
// SiteVision doesn't provide any change or update events, MutationObserver workaround.
|
|
31
31
|
const observer = new MutationObserver(([{ attributeName, target }]) => {
|
|
@@ -25,14 +25,15 @@
|
|
|
25
25
|
</script>
|
|
26
26
|
|
|
27
27
|
<template>
|
|
28
|
+
{value}
|
|
28
29
|
<fieldset class="form-group">
|
|
29
30
|
<legend>{legend}</legend>
|
|
30
31
|
{#each options as option, index}
|
|
31
32
|
<input
|
|
32
33
|
id={`${id}_${index}`}
|
|
33
|
-
{name}
|
|
34
34
|
bind:group={value}
|
|
35
35
|
value={option.value || option}
|
|
36
|
+
checked={option.value || option}
|
|
36
37
|
disabled={isDisabled(option)}
|
|
37
38
|
type="radio"
|
|
38
39
|
class="sr-only"
|
|
@@ -43,6 +44,7 @@
|
|
|
43
44
|
</label>
|
|
44
45
|
{/each}
|
|
45
46
|
</fieldset>
|
|
47
|
+
<input type="hidden" {value} {name} />
|
|
46
48
|
</template>
|
|
47
49
|
|
|
48
50
|
<style lang="scss">
|