@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
@@ -1,4 +1,9 @@
1
1
  # bexis-core-ui
2
+ ## v0.1.7
3
+ ### update
4
+ - MultiSelect
5
+ - remove skeleton css classes from svelte select input
6
+
2
7
  ## v0.1.6
3
8
 
4
9
  - remove massive console.logs
@@ -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
- class="select variant-form-material"
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>
@@ -7,4 +7,8 @@ h1{
7
7
 
8
8
  :root {
9
9
  --background:rgb(var(--color-surface-200))
10
- }
10
+ }
11
+
12
+ [type='text']:focus{
13
+ --tw-ring-color:#00000;
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -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
- class="select variant-form-material"
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>
@@ -7,4 +7,8 @@ h1{
7
7
 
8
8
  :root {
9
9
  --background:rgb(var(--color-surface-200))
10
- }
10
+ }
11
+
12
+ [type='text']:focus{
13
+ --tw-ring-color:#00000;
14
+ }