@bexis2/bexis2-core-ui 0.1.6 → 0.1.7
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/README.md
CHANGED
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
$: value = null;
|
|
21
21
|
$: updateTarget(value);
|
|
22
22
|
|
|
23
|
+
let container;
|
|
24
|
+
|
|
23
25
|
function updateTarget(selection) {
|
|
24
26
|
//diffrent cases
|
|
25
27
|
//console.log('------');
|
|
@@ -95,9 +97,10 @@
|
|
|
95
97
|
});
|
|
96
98
|
</script>
|
|
97
99
|
|
|
100
|
+
|
|
98
101
|
<InputContainer label={title} {feedback} {required}>
|
|
99
102
|
<Select
|
|
100
|
-
|
|
103
|
+
id={title}
|
|
101
104
|
items={source}
|
|
102
105
|
{itemId}
|
|
103
106
|
label = {itemLabel}
|
|
@@ -106,3 +109,9 @@
|
|
|
106
109
|
placeholder="-- Please select --"
|
|
107
110
|
/>
|
|
108
111
|
</InputContainer>
|
|
112
|
+
|
|
113
|
+
<span class="svelte-select-list"/>
|
|
114
|
+
|
|
115
|
+
<style>
|
|
116
|
+
.svelte-select-list{color:green}
|
|
117
|
+
</style>
|
package/dist/css/core.ui.postcss
CHANGED
package/package.json
CHANGED
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
$: value = null;
|
|
21
21
|
$: updateTarget(value);
|
|
22
22
|
|
|
23
|
+
let container;
|
|
24
|
+
|
|
23
25
|
function updateTarget(selection) {
|
|
24
26
|
//diffrent cases
|
|
25
27
|
//console.log('------');
|
|
@@ -95,9 +97,10 @@
|
|
|
95
97
|
});
|
|
96
98
|
</script>
|
|
97
99
|
|
|
100
|
+
|
|
98
101
|
<InputContainer label={title} {feedback} {required}>
|
|
99
102
|
<Select
|
|
100
|
-
|
|
103
|
+
id={title}
|
|
101
104
|
items={source}
|
|
102
105
|
{itemId}
|
|
103
106
|
label = {itemLabel}
|
|
@@ -106,3 +109,9 @@
|
|
|
106
109
|
placeholder="-- Please select --"
|
|
107
110
|
/>
|
|
108
111
|
</InputContainer>
|
|
112
|
+
|
|
113
|
+
<span class="svelte-select-list"/>
|
|
114
|
+
|
|
115
|
+
<style>
|
|
116
|
+
.svelte-select-list{color:green}
|
|
117
|
+
</style>
|