@budibase/bbui 2.3.2 → 2.3.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/bbui",
|
|
3
3
|
"description": "A UI solution used in the different Budibase projects.",
|
|
4
|
-
"version": "2.3.
|
|
4
|
+
"version": "2.3.4",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"svelte": "src/index.js",
|
|
7
7
|
"module": "dist/bbui.es.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@adobe/spectrum-css-workflow-icons": "1.2.1",
|
|
41
|
-
"@budibase/string-templates": "^2.3.
|
|
41
|
+
"@budibase/string-templates": "^2.3.4",
|
|
42
42
|
"@spectrum-css/accordion": "3.0.24",
|
|
43
43
|
"@spectrum-css/actionbutton": "1.0.1",
|
|
44
44
|
"@spectrum-css/actiongroup": "1.0.1",
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
"resolutions": {
|
|
90
90
|
"loader-utils": "1.4.1"
|
|
91
91
|
},
|
|
92
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "d21ee4eefb890a4cf848aa027bc8ebbbaca37645"
|
|
93
93
|
}
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
export let quiet = false
|
|
14
14
|
export let align
|
|
15
15
|
export let autofocus = false
|
|
16
|
+
export let autocomplete = null
|
|
16
17
|
|
|
17
18
|
const dispatch = createEventDispatcher()
|
|
18
19
|
|
|
@@ -103,6 +104,7 @@
|
|
|
103
104
|
class="spectrum-Textfield-input"
|
|
104
105
|
style={align ? `text-align: ${align};` : ""}
|
|
105
106
|
inputmode={type === "number" ? "decimal" : "text"}
|
|
107
|
+
{autocomplete}
|
|
106
108
|
/>
|
|
107
109
|
</div>
|
|
108
110
|
|
package/src/Form/Input.svelte
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
export let updateOnChange = true
|
|
15
15
|
export let quiet = false
|
|
16
16
|
export let autofocus
|
|
17
|
+
export let autocomplete
|
|
17
18
|
|
|
18
19
|
const dispatch = createEventDispatcher()
|
|
19
20
|
const onChange = e => {
|
|
@@ -33,6 +34,7 @@
|
|
|
33
34
|
{type}
|
|
34
35
|
{quiet}
|
|
35
36
|
{autofocus}
|
|
37
|
+
{autocomplete}
|
|
36
38
|
on:change={onChange}
|
|
37
39
|
on:click
|
|
38
40
|
on:input
|