@budibase/bbui 2.11.43 → 2.11.44
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/dist/bbui.es.js +1 -1
- package/dist/bbui.es.js.map +1 -1
- package/package.json +4 -4
- package/src/Table/Table.svelte +7 -0
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.11.
|
|
4
|
+
"version": "2.11.44",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"svelte": "src/index.js",
|
|
7
7
|
"module": "dist/bbui.es.js",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@adobe/spectrum-css-workflow-icons": "1.2.1",
|
|
39
|
-
"@budibase/shared-core": "2.11.
|
|
40
|
-
"@budibase/string-templates": "2.11.
|
|
39
|
+
"@budibase/shared-core": "2.11.44",
|
|
40
|
+
"@budibase/string-templates": "2.11.44",
|
|
41
41
|
"@spectrum-css/accordion": "3.0.24",
|
|
42
42
|
"@spectrum-css/actionbutton": "1.0.1",
|
|
43
43
|
"@spectrum-css/actiongroup": "1.0.1",
|
|
@@ -104,5 +104,5 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
},
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "49232b33cbfc480cb28d5210b71b43cdcf2e50dc"
|
|
108
108
|
}
|
package/src/Table/Table.svelte
CHANGED
|
@@ -106,6 +106,13 @@
|
|
|
106
106
|
name: fieldName,
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
|
+
|
|
110
|
+
// Delete numeric only widths as these are grid widths and should be
|
|
111
|
+
// ignored
|
|
112
|
+
const width = fixedSchema[fieldName].width
|
|
113
|
+
if (width != null && `${width}`.trim().match(/^[0-9]+$/)) {
|
|
114
|
+
delete fixedSchema[fieldName].width
|
|
115
|
+
}
|
|
109
116
|
})
|
|
110
117
|
return fixedSchema
|
|
111
118
|
}
|