@bexis2/bexis2-core-ui 0.2.30 → 0.2.32
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 +10 -1
- package/dist/TableView.svelte +1 -1
- package/dist/components/CodeEditor/CodeEditor.svelte +32 -8
- package/dist/components/CodeEditor/CodeEditor.svelte.d.ts +1 -0
- package/dist/components/File/FileIcon.svelte +45 -45
- package/dist/components/File/FileInfo.svelte +13 -13
- package/dist/components/ListView.svelte +5 -5
- package/dist/components/Table/Table.svelte +87 -25
- package/dist/components/Table/TableFilter.svelte +1 -1
- package/dist/components/form/Checkbox.svelte +13 -13
- package/dist/components/form/CheckboxKvPList.svelte +16 -16
- package/dist/components/form/CheckboxList.svelte +10 -10
- package/dist/components/form/DateInput.svelte +14 -14
- package/dist/components/form/DropdownKvP.svelte +54 -54
- package/dist/components/form/MultiSelect.svelte +181 -181
- package/dist/components/form/NumberInput.svelte +15 -15
- package/dist/components/form/TextArea.svelte +14 -14
- package/dist/components/form/TextInput.svelte +15 -15
- package/dist/components/page/Alert.svelte +28 -28
- package/dist/components/page/BackToTop.svelte +30 -30
- package/dist/components/page/Docs.svelte +22 -22
- package/dist/components/page/ErrorMessage.svelte +8 -8
- package/dist/components/page/Footer.svelte +5 -5
- package/dist/components/page/Header.svelte +5 -5
- package/dist/components/page/HelpPopUp.svelte +30 -30
- package/dist/components/page/PageCaller.js +19 -19
- package/dist/components/page/Spinner.svelte +14 -14
- package/dist/components/page/breadcrumb/Breadcrumb.svelte +19 -19
- package/dist/components/page/menu/MenuDataCaller.js +10 -10
- package/dist/css/core.ui.postcss +17 -17
- package/dist/css/themes/theme-bexis2.css +96 -96
- package/dist/css/themes/theme-crimson.css +101 -101
- package/dist/css/themes/theme-gold-nouveau.css +140 -140
- package/dist/css/themes/theme-hamlindigo.css +112 -112
- package/dist/css/themes/theme-modern.css +127 -127
- package/dist/css/themes/theme-rocket.css +119 -119
- package/dist/css/themes/theme-sahara.css +128 -128
- package/dist/css/themes/theme-seafoam.css +122 -122
- package/dist/css/themes/theme-seasonal.css +115 -115
- package/dist/css/themes/theme-skeleton.css +118 -118
- package/dist/css/themes/theme-vintage.css +125 -125
- package/dist/models/Models.d.ts +3 -0
- package/dist/services/BaseCaller.js +16 -16
- package/package.json +3 -1
- package/src/lib/TableView.svelte +1 -1
- package/src/lib/components/CodeEditor/CodeEditor.svelte +43 -9
- package/src/lib/components/ListView.svelte +11 -11
- package/src/lib/components/Table/Table.svelte +107 -26
- package/src/lib/components/Table/TableFilter.svelte +2 -1
- package/src/lib/components/Table/filter.ts +141 -141
- package/src/lib/components/{File → file}/FileIcon.svelte +45 -45
- package/src/lib/components/{File → file}/FileInfo.svelte +13 -13
- package/src/lib/components/form/Checkbox.svelte +24 -24
- package/src/lib/components/form/CheckboxKvPList.svelte +29 -29
- package/src/lib/components/form/CheckboxList.svelte +21 -21
- package/src/lib/components/form/DateInput.svelte +27 -27
- package/src/lib/components/form/DropdownKvP.svelte +54 -54
- package/src/lib/components/form/MultiSelect.svelte +181 -181
- package/src/lib/components/form/NumberInput.svelte +30 -30
- package/src/lib/components/form/TextArea.svelte +28 -28
- package/src/lib/components/form/TextInput.svelte +28 -28
- package/src/lib/components/page/Alert.svelte +41 -41
- package/src/lib/components/page/BackToTop.svelte +30 -30
- package/src/lib/components/page/Docs.svelte +46 -46
- package/src/lib/components/page/ErrorMessage.svelte +10 -10
- package/src/lib/components/page/Footer.svelte +18 -18
- package/src/lib/components/page/Header.svelte +18 -18
- package/src/lib/components/page/HelpPopUp.svelte +72 -72
- package/src/lib/components/page/PageCaller.js +19 -19
- package/src/lib/components/page/Spinner.svelte +20 -20
- package/src/lib/components/page/breadcrumb/Breadcrumb.svelte +39 -39
- package/src/lib/components/page/menu/MenuDataCaller.js +10 -10
- package/src/lib/css/core.ui.postcss +17 -17
- package/src/lib/css/themes/theme-bexis2.css +96 -96
- package/src/lib/css/themes/theme-crimson.css +101 -101
- package/src/lib/css/themes/theme-gold-nouveau.css +140 -140
- package/src/lib/css/themes/theme-hamlindigo.css +112 -112
- package/src/lib/css/themes/theme-modern.css +127 -127
- package/src/lib/css/themes/theme-rocket.css +119 -119
- package/src/lib/css/themes/theme-sahara.css +128 -128
- package/src/lib/css/themes/theme-seafoam.css +122 -122
- package/src/lib/css/themes/theme-seasonal.css +115 -115
- package/src/lib/css/themes/theme-skeleton.css +118 -118
- package/src/lib/css/themes/theme-vintage.css +125 -125
- package/src/lib/models/Models.ts +10 -7
- package/src/lib/models/Page.ts +40 -40
- package/src/lib/services/Api.ts +55 -55
- package/src/lib/services/BaseCaller.js +16 -16
- package/src/lib/stores/apiStores.ts +31 -31
- /package/src/lib/components/{File → file}/FileUploader.svelte +0 -0
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import InputContainer from './InputContainer.svelte';
|
|
3
|
-
|
|
4
|
-
export let id;
|
|
5
|
-
export let source;
|
|
6
|
-
export let target;
|
|
7
|
-
export let title;
|
|
8
|
-
export let valid = false;
|
|
9
|
-
export let invalid = false;
|
|
10
|
-
export let feedback = [''];
|
|
11
|
-
export let required = false;
|
|
12
|
-
export let complexTarget = false;
|
|
13
|
-
export let help = false;
|
|
14
|
-
|
|
15
|
-
$: selected = null;
|
|
16
|
-
|
|
17
|
-
$: updatedSelectedValue(target);
|
|
18
|
-
$: updatedTarget(selected);
|
|
19
|
-
|
|
20
|
-
function updatedSelectedValue(selection) {
|
|
21
|
-
if (selection != null) {
|
|
22
|
-
if (complexTarget) {
|
|
23
|
-
selected = selection.id;
|
|
24
|
-
} else {
|
|
25
|
-
selected = selection;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
function updatedTarget(id) {
|
|
31
|
-
if (complexTarget) {
|
|
32
|
-
target = source.find((opt) => opt.id === id);
|
|
33
|
-
} else {
|
|
34
|
-
target = id;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
</script>
|
|
38
|
-
|
|
39
|
-
<InputContainer {id} label={title} {feedback} {required} {help}>
|
|
40
|
-
<select
|
|
41
|
-
{id}
|
|
42
|
-
class="select variant-form-material"
|
|
43
|
-
class:input-success={valid}
|
|
44
|
-
class:input-error={invalid}
|
|
45
|
-
bind:value={selected}
|
|
46
|
-
on:change
|
|
47
|
-
on:select
|
|
48
|
-
>
|
|
49
|
-
<option value={null}>-- Please select --</option>
|
|
50
|
-
{#each source as e}
|
|
51
|
-
<option value={e.id}>{e.text}</option>
|
|
52
|
-
{/each}
|
|
53
|
-
</select>
|
|
54
|
-
</InputContainer>
|
|
1
|
+
<script>
|
|
2
|
+
import InputContainer from './InputContainer.svelte';
|
|
3
|
+
|
|
4
|
+
export let id;
|
|
5
|
+
export let source;
|
|
6
|
+
export let target;
|
|
7
|
+
export let title;
|
|
8
|
+
export let valid = false;
|
|
9
|
+
export let invalid = false;
|
|
10
|
+
export let feedback = [''];
|
|
11
|
+
export let required = false;
|
|
12
|
+
export let complexTarget = false;
|
|
13
|
+
export let help = false;
|
|
14
|
+
|
|
15
|
+
$: selected = null;
|
|
16
|
+
|
|
17
|
+
$: updatedSelectedValue(target);
|
|
18
|
+
$: updatedTarget(selected);
|
|
19
|
+
|
|
20
|
+
function updatedSelectedValue(selection) {
|
|
21
|
+
if (selection != null) {
|
|
22
|
+
if (complexTarget) {
|
|
23
|
+
selected = selection.id;
|
|
24
|
+
} else {
|
|
25
|
+
selected = selection;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function updatedTarget(id) {
|
|
31
|
+
if (complexTarget) {
|
|
32
|
+
target = source.find((opt) => opt.id === id);
|
|
33
|
+
} else {
|
|
34
|
+
target = id;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
</script>
|
|
38
|
+
|
|
39
|
+
<InputContainer {id} label={title} {feedback} {required} {help}>
|
|
40
|
+
<select
|
|
41
|
+
{id}
|
|
42
|
+
class="select variant-form-material"
|
|
43
|
+
class:input-success={valid}
|
|
44
|
+
class:input-error={invalid}
|
|
45
|
+
bind:value={selected}
|
|
46
|
+
on:change
|
|
47
|
+
on:select
|
|
48
|
+
>
|
|
49
|
+
<option value={null}>-- Please select --</option>
|
|
50
|
+
{#each source as e}
|
|
51
|
+
<option value={e.id}>{e.text}</option>
|
|
52
|
+
{/each}
|
|
53
|
+
</select>
|
|
54
|
+
</InputContainer>
|
|
@@ -1,181 +1,181 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import InputContainer from './InputContainer.svelte';
|
|
3
|
-
|
|
4
|
-
import Select from 'svelte-select';
|
|
5
|
-
import { onMount } from 'svelte';
|
|
6
|
-
|
|
7
|
-
export let source;
|
|
8
|
-
export let target;
|
|
9
|
-
export let id;
|
|
10
|
-
export let title;
|
|
11
|
-
export let itemId = 'value';
|
|
12
|
-
export let itemLabel = 'label';
|
|
13
|
-
export let itemGroup = 'group';
|
|
14
|
-
export let isMulti = true;
|
|
15
|
-
export let complexSource = false;
|
|
16
|
-
export let complexTarget = false;
|
|
17
|
-
export let required = false;
|
|
18
|
-
export let feedback = [''];
|
|
19
|
-
export let placeholder = '-- Please select --';
|
|
20
|
-
export let invalid = false;
|
|
21
|
-
export let loading = false;
|
|
22
|
-
export let help = false;
|
|
23
|
-
export let clearable = true;
|
|
24
|
-
export let disabled = false;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
let isLoaded = false;
|
|
28
|
-
|
|
29
|
-
$: value = null;
|
|
30
|
-
$: updateTarget(value);
|
|
31
|
-
$: target, setValue(target);
|
|
32
|
-
|
|
33
|
-
let groupBy;
|
|
34
|
-
$: groupBy;
|
|
35
|
-
|
|
36
|
-
function updateTarget(selection) {
|
|
37
|
-
//console.log("UPDATE target",selection);
|
|
38
|
-
//different cases
|
|
39
|
-
//a) source is complex model is simple return array
|
|
40
|
-
if (complexSource && !complexTarget && isLoaded && isMulti) {
|
|
41
|
-
//console.log('a) source is complex model is simple');
|
|
42
|
-
|
|
43
|
-
target = [];
|
|
44
|
-
for (let i in selection) {
|
|
45
|
-
let item = selection[i];
|
|
46
|
-
target.push(item[itemId]);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
if (!complexSource && !complexTarget && isLoaded && isMulti) {
|
|
51
|
-
target = [];
|
|
52
|
-
|
|
53
|
-
for (let i in selection) {
|
|
54
|
-
target.push(selection[i].value);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
if (complexSource && complexTarget && isLoaded && isMulti) {
|
|
59
|
-
//console.log("both complex",selection);
|
|
60
|
-
target = selection;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
if (complexSource && complexTarget && isLoaded && !isMulti) {
|
|
64
|
-
target = selection;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
if (!complexSource && !complexTarget && isLoaded && !isMulti) {
|
|
68
|
-
target = selection.value;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
if (complexSource && !complexTarget && isLoaded && !isMulti) {
|
|
72
|
-
target = selection[itemLabel];
|
|
73
|
-
//console.log('selection', selection);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
//console.log('selection ' + title, selection);
|
|
77
|
-
//console.log('target ' + title, target);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
onMount(async () => {
|
|
81
|
-
//console.log("OnMount", target)
|
|
82
|
-
if(complexSource && complexTarget) // after on mount a setValue is needed when data is complex
|
|
83
|
-
{
|
|
84
|
-
setValue(target);
|
|
85
|
-
}
|
|
86
|
-
});
|
|
87
|
-
|
|
88
|
-
function setValue(t) {
|
|
89
|
-
//console.log("Set Value",t);
|
|
90
|
-
//a) source is complex model is simple
|
|
91
|
-
if (complexSource && !complexTarget && isMulti) {
|
|
92
|
-
let items = [];
|
|
93
|
-
// event.detail will be null unless isMulti is true and user has removed a single item
|
|
94
|
-
for (let i in t) {
|
|
95
|
-
let t = target[i];
|
|
96
|
-
items.push(source.find((item) => item[itemId] === t));
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
isLoaded = true;
|
|
100
|
-
if (items.length > 0) {
|
|
101
|
-
value = items;
|
|
102
|
-
}
|
|
103
|
-
////console.log(value);
|
|
104
|
-
groupBy = (item) => item[itemGroup];
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
if (complexSource && complexTarget && isMulti) {
|
|
108
|
-
value = t;
|
|
109
|
-
isLoaded = true;
|
|
110
|
-
groupBy = (item) => item[itemGroup];
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
//b) simple liust and simple model
|
|
114
|
-
if (!complexSource && !complexTarget && isMulti) {
|
|
115
|
-
//console.log('b) simple liust and simple model');
|
|
116
|
-
//console.log('source', source);
|
|
117
|
-
//console.log("target",t);
|
|
118
|
-
isLoaded = true;
|
|
119
|
-
//set target only if its nit empty
|
|
120
|
-
if (t != null && t !== undefined && t != '') {
|
|
121
|
-
//console.log('target', t);
|
|
122
|
-
value = t;
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
if (!isMulti) {
|
|
127
|
-
//console.log("onmount",complexSource,complexTarget,value,target)
|
|
128
|
-
if (!complexSource && !complexTarget) {
|
|
129
|
-
value = {
|
|
130
|
-
value: t,
|
|
131
|
-
label: t
|
|
132
|
-
};
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
if (complexSource && complexTarget) {
|
|
136
|
-
value = t;
|
|
137
|
-
groupBy = (item) => item[itemGroup];
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
if (complexSource && !complexTarget) {
|
|
141
|
-
//value = target
|
|
142
|
-
console.log(
|
|
143
|
-
'this case is currently not supported (complexSource,complexTarget,isMulti)',
|
|
144
|
-
complexSource,
|
|
145
|
-
complexTarget,
|
|
146
|
-
isMulti
|
|
147
|
-
);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
isLoaded = true;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
//console.log(t,value)
|
|
154
|
-
}
|
|
155
|
-
</script>
|
|
156
|
-
|
|
157
|
-
<InputContainer {id} label={title} {feedback} {required} {help}>
|
|
158
|
-
<Select
|
|
159
|
-
{id}
|
|
160
|
-
items={source}
|
|
161
|
-
{groupBy}
|
|
162
|
-
{itemId}
|
|
163
|
-
label={itemLabel}
|
|
164
|
-
multiple={isMulti}
|
|
165
|
-
bind:value
|
|
166
|
-
{placeholder}
|
|
167
|
-
hasError={invalid}
|
|
168
|
-
{loading}
|
|
169
|
-
{clearable}
|
|
170
|
-
{disabled}
|
|
171
|
-
on:change
|
|
172
|
-
on:input
|
|
173
|
-
on:focus
|
|
174
|
-
on:blur
|
|
175
|
-
on:clear
|
|
176
|
-
on:loaded
|
|
177
|
-
on:error
|
|
178
|
-
on:filter
|
|
179
|
-
on:hoverItem
|
|
180
|
-
/>
|
|
181
|
-
</InputContainer>
|
|
1
|
+
<script>
|
|
2
|
+
import InputContainer from './InputContainer.svelte';
|
|
3
|
+
|
|
4
|
+
import Select from 'svelte-select';
|
|
5
|
+
import { onMount } from 'svelte';
|
|
6
|
+
|
|
7
|
+
export let source;
|
|
8
|
+
export let target;
|
|
9
|
+
export let id;
|
|
10
|
+
export let title;
|
|
11
|
+
export let itemId = 'value';
|
|
12
|
+
export let itemLabel = 'label';
|
|
13
|
+
export let itemGroup = 'group';
|
|
14
|
+
export let isMulti = true;
|
|
15
|
+
export let complexSource = false;
|
|
16
|
+
export let complexTarget = false;
|
|
17
|
+
export let required = false;
|
|
18
|
+
export let feedback = [''];
|
|
19
|
+
export let placeholder = '-- Please select --';
|
|
20
|
+
export let invalid = false;
|
|
21
|
+
export let loading = false;
|
|
22
|
+
export let help = false;
|
|
23
|
+
export let clearable = true;
|
|
24
|
+
export let disabled = false;
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
let isLoaded = false;
|
|
28
|
+
|
|
29
|
+
$: value = null;
|
|
30
|
+
$: updateTarget(value);
|
|
31
|
+
$: target, setValue(target);
|
|
32
|
+
|
|
33
|
+
let groupBy;
|
|
34
|
+
$: groupBy;
|
|
35
|
+
|
|
36
|
+
function updateTarget(selection) {
|
|
37
|
+
//console.log("UPDATE target",selection);
|
|
38
|
+
//different cases
|
|
39
|
+
//a) source is complex model is simple return array
|
|
40
|
+
if (complexSource && !complexTarget && isLoaded && isMulti) {
|
|
41
|
+
//console.log('a) source is complex model is simple');
|
|
42
|
+
|
|
43
|
+
target = [];
|
|
44
|
+
for (let i in selection) {
|
|
45
|
+
let item = selection[i];
|
|
46
|
+
target.push(item[itemId]);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
if (!complexSource && !complexTarget && isLoaded && isMulti) {
|
|
51
|
+
target = [];
|
|
52
|
+
|
|
53
|
+
for (let i in selection) {
|
|
54
|
+
target.push(selection[i].value);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
if (complexSource && complexTarget && isLoaded && isMulti) {
|
|
59
|
+
//console.log("both complex",selection);
|
|
60
|
+
target = selection;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (complexSource && complexTarget && isLoaded && !isMulti) {
|
|
64
|
+
target = selection;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if (!complexSource && !complexTarget && isLoaded && !isMulti) {
|
|
68
|
+
target = selection.value;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (complexSource && !complexTarget && isLoaded && !isMulti) {
|
|
72
|
+
target = selection[itemLabel];
|
|
73
|
+
//console.log('selection', selection);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
//console.log('selection ' + title, selection);
|
|
77
|
+
//console.log('target ' + title, target);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
onMount(async () => {
|
|
81
|
+
//console.log("OnMount", target)
|
|
82
|
+
if(complexSource && complexTarget) // after on mount a setValue is needed when data is complex
|
|
83
|
+
{
|
|
84
|
+
setValue(target);
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
function setValue(t) {
|
|
89
|
+
//console.log("Set Value",t);
|
|
90
|
+
//a) source is complex model is simple
|
|
91
|
+
if (complexSource && !complexTarget && isMulti) {
|
|
92
|
+
let items = [];
|
|
93
|
+
// event.detail will be null unless isMulti is true and user has removed a single item
|
|
94
|
+
for (let i in t) {
|
|
95
|
+
let t = target[i];
|
|
96
|
+
items.push(source.find((item) => item[itemId] === t));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
isLoaded = true;
|
|
100
|
+
if (items.length > 0) {
|
|
101
|
+
value = items;
|
|
102
|
+
}
|
|
103
|
+
////console.log(value);
|
|
104
|
+
groupBy = (item) => item[itemGroup];
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
if (complexSource && complexTarget && isMulti) {
|
|
108
|
+
value = t;
|
|
109
|
+
isLoaded = true;
|
|
110
|
+
groupBy = (item) => item[itemGroup];
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
//b) simple liust and simple model
|
|
114
|
+
if (!complexSource && !complexTarget && isMulti) {
|
|
115
|
+
//console.log('b) simple liust and simple model');
|
|
116
|
+
//console.log('source', source);
|
|
117
|
+
//console.log("target",t);
|
|
118
|
+
isLoaded = true;
|
|
119
|
+
//set target only if its nit empty
|
|
120
|
+
if (t != null && t !== undefined && t != '') {
|
|
121
|
+
//console.log('target', t);
|
|
122
|
+
value = t;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
if (!isMulti) {
|
|
127
|
+
//console.log("onmount",complexSource,complexTarget,value,target)
|
|
128
|
+
if (!complexSource && !complexTarget) {
|
|
129
|
+
value = {
|
|
130
|
+
value: t,
|
|
131
|
+
label: t
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
if (complexSource && complexTarget) {
|
|
136
|
+
value = t;
|
|
137
|
+
groupBy = (item) => item[itemGroup];
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
if (complexSource && !complexTarget) {
|
|
141
|
+
//value = target
|
|
142
|
+
console.log(
|
|
143
|
+
'this case is currently not supported (complexSource,complexTarget,isMulti)',
|
|
144
|
+
complexSource,
|
|
145
|
+
complexTarget,
|
|
146
|
+
isMulti
|
|
147
|
+
);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
isLoaded = true;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
//console.log(t,value)
|
|
154
|
+
}
|
|
155
|
+
</script>
|
|
156
|
+
|
|
157
|
+
<InputContainer {id} label={title} {feedback} {required} {help}>
|
|
158
|
+
<Select
|
|
159
|
+
{id}
|
|
160
|
+
items={source}
|
|
161
|
+
{groupBy}
|
|
162
|
+
{itemId}
|
|
163
|
+
label={itemLabel}
|
|
164
|
+
multiple={isMulti}
|
|
165
|
+
bind:value
|
|
166
|
+
{placeholder}
|
|
167
|
+
hasError={invalid}
|
|
168
|
+
{loading}
|
|
169
|
+
{clearable}
|
|
170
|
+
{disabled}
|
|
171
|
+
on:change
|
|
172
|
+
on:input
|
|
173
|
+
on:focus
|
|
174
|
+
on:blur
|
|
175
|
+
on:clear
|
|
176
|
+
on:loaded
|
|
177
|
+
on:error
|
|
178
|
+
on:filter
|
|
179
|
+
on:hoverItem
|
|
180
|
+
/>
|
|
181
|
+
</InputContainer>
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
<script lang="ts">
|
|
2
|
-
import InputContainer from './InputContainer.svelte';
|
|
3
|
-
import { helpStore } from '$store/pageStores';
|
|
4
|
-
|
|
5
|
-
export let id: string = '';
|
|
6
|
-
export let label: string = '';
|
|
7
|
-
export let value: string = '';
|
|
8
|
-
|
|
9
|
-
export let valid: boolean = false;
|
|
10
|
-
export let invalid: boolean = false;
|
|
11
|
-
export let required: boolean = false;
|
|
12
|
-
export let feedback: string[] = [''];
|
|
13
|
-
export let placeholder: string = '';
|
|
14
|
-
export let help: boolean = false;
|
|
15
|
-
export let disabled: boolean = false;
|
|
16
|
-
</script>
|
|
17
|
-
|
|
18
|
-
<InputContainer {id} {label} {feedback} {required} {help}>
|
|
19
|
-
<input
|
|
20
|
-
{id}
|
|
21
|
-
class="input variant-form-material"
|
|
22
|
-
type="number"
|
|
23
|
-
class:input-success={valid}
|
|
24
|
-
class:input-error={invalid}
|
|
25
|
-
bind:value
|
|
26
|
-
on:input
|
|
27
|
-
{placeholder}
|
|
28
|
-
{disabled}
|
|
29
|
-
/>
|
|
30
|
-
</InputContainer>
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import InputContainer from './InputContainer.svelte';
|
|
3
|
+
import { helpStore } from '$store/pageStores';
|
|
4
|
+
|
|
5
|
+
export let id: string = '';
|
|
6
|
+
export let label: string = '';
|
|
7
|
+
export let value: string = '';
|
|
8
|
+
|
|
9
|
+
export let valid: boolean = false;
|
|
10
|
+
export let invalid: boolean = false;
|
|
11
|
+
export let required: boolean = false;
|
|
12
|
+
export let feedback: string[] = [''];
|
|
13
|
+
export let placeholder: string = '';
|
|
14
|
+
export let help: boolean = false;
|
|
15
|
+
export let disabled: boolean = false;
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<InputContainer {id} {label} {feedback} {required} {help}>
|
|
19
|
+
<input
|
|
20
|
+
{id}
|
|
21
|
+
class="input variant-form-material"
|
|
22
|
+
type="number"
|
|
23
|
+
class:input-success={valid}
|
|
24
|
+
class:input-error={invalid}
|
|
25
|
+
bind:value
|
|
26
|
+
on:input
|
|
27
|
+
{placeholder}
|
|
28
|
+
{disabled}
|
|
29
|
+
/>
|
|
30
|
+
</InputContainer>
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
<script lang="ts">
|
|
2
|
-
import InputContainer from './InputContainer.svelte';
|
|
3
|
-
|
|
4
|
-
export let id: string = '';
|
|
5
|
-
export let label: string = '';
|
|
6
|
-
export let value: string = '';
|
|
7
|
-
|
|
8
|
-
export let valid: boolean = false;
|
|
9
|
-
export let invalid: boolean = false;
|
|
10
|
-
export let required: boolean = false;
|
|
11
|
-
export let feedback: string[] = [''];
|
|
12
|
-
export let placeholder: string = '';
|
|
13
|
-
export let help: boolean = false;
|
|
14
|
-
export let disabled: boolean = false;
|
|
15
|
-
</script>
|
|
16
|
-
|
|
17
|
-
<InputContainer {id} {label} {feedback} {required} {help}>
|
|
18
|
-
<textarea
|
|
19
|
-
{id}
|
|
20
|
-
class="textarea variant-form-material"
|
|
21
|
-
class:input-success={valid}
|
|
22
|
-
class:input-error={invalid}
|
|
23
|
-
bind:value
|
|
24
|
-
on:input
|
|
25
|
-
{placeholder}
|
|
26
|
-
{disabled}
|
|
27
|
-
/>
|
|
28
|
-
</InputContainer>
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import InputContainer from './InputContainer.svelte';
|
|
3
|
+
|
|
4
|
+
export let id: string = '';
|
|
5
|
+
export let label: string = '';
|
|
6
|
+
export let value: string = '';
|
|
7
|
+
|
|
8
|
+
export let valid: boolean = false;
|
|
9
|
+
export let invalid: boolean = false;
|
|
10
|
+
export let required: boolean = false;
|
|
11
|
+
export let feedback: string[] = [''];
|
|
12
|
+
export let placeholder: string = '';
|
|
13
|
+
export let help: boolean = false;
|
|
14
|
+
export let disabled: boolean = false;
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<InputContainer {id} {label} {feedback} {required} {help}>
|
|
18
|
+
<textarea
|
|
19
|
+
{id}
|
|
20
|
+
class="textarea variant-form-material"
|
|
21
|
+
class:input-success={valid}
|
|
22
|
+
class:input-error={invalid}
|
|
23
|
+
bind:value
|
|
24
|
+
on:input
|
|
25
|
+
{placeholder}
|
|
26
|
+
{disabled}
|
|
27
|
+
/>
|
|
28
|
+
</InputContainer>
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
<script lang="ts">
|
|
2
|
-
import InputContainer from './InputContainer.svelte';
|
|
3
|
-
|
|
4
|
-
export let id: string = '';
|
|
5
|
-
export let label: string = '';
|
|
6
|
-
export let value: string = '';
|
|
7
|
-
export let valid: boolean = false;
|
|
8
|
-
export let invalid: boolean = false;
|
|
9
|
-
export let required: boolean = false;
|
|
10
|
-
export let feedback: string[] = [''];
|
|
11
|
-
export let placeholder: string = '';
|
|
12
|
-
export let help: boolean = false;
|
|
13
|
-
export let disabled: boolean = false;
|
|
14
|
-
</script>
|
|
15
|
-
|
|
16
|
-
<InputContainer {id} {label} {feedback} {required} {help}>
|
|
17
|
-
<input
|
|
18
|
-
{id}
|
|
19
|
-
class="input variant-form-material"
|
|
20
|
-
type="text"
|
|
21
|
-
class:input-success={valid}
|
|
22
|
-
class:input-error={invalid}
|
|
23
|
-
bind:value
|
|
24
|
-
on:input
|
|
25
|
-
{placeholder}
|
|
26
|
-
{disabled}
|
|
27
|
-
/>
|
|
28
|
-
</InputContainer>
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import InputContainer from './InputContainer.svelte';
|
|
3
|
+
|
|
4
|
+
export let id: string = '';
|
|
5
|
+
export let label: string = '';
|
|
6
|
+
export let value: string = '';
|
|
7
|
+
export let valid: boolean = false;
|
|
8
|
+
export let invalid: boolean = false;
|
|
9
|
+
export let required: boolean = false;
|
|
10
|
+
export let feedback: string[] = [''];
|
|
11
|
+
export let placeholder: string = '';
|
|
12
|
+
export let help: boolean = false;
|
|
13
|
+
export let disabled: boolean = false;
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<InputContainer {id} {label} {feedback} {required} {help}>
|
|
17
|
+
<input
|
|
18
|
+
{id}
|
|
19
|
+
class="input variant-form-material"
|
|
20
|
+
type="text"
|
|
21
|
+
class:input-success={valid}
|
|
22
|
+
class:input-error={invalid}
|
|
23
|
+
bind:value
|
|
24
|
+
on:input
|
|
25
|
+
{placeholder}
|
|
26
|
+
{disabled}
|
|
27
|
+
/>
|
|
28
|
+
</InputContainer>
|