@budibase/bbui 2.3.0 → 2.3.1

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.0",
4
+ "version": "2.3.1",
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.0",
41
+ "@budibase/string-templates": "^2.3.1",
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": "3c9087240c5531c46849b9b070c946e511196dfd"
92
+ "gitHead": "452bf83150d1600bbe4c83a8e01706c086bc83dc"
93
93
  }
@@ -25,7 +25,7 @@
25
25
  let open = false
26
26
 
27
27
  //eslint-disable-next-line
28
- const STRIP_NAME_REGEX = /(?<=\.)(.*?)(?=\ })/g
28
+ const STRIP_NAME_REGEX = /(\w+?)(?=\ })/g
29
29
 
30
30
  // Strips the name out of the value which is {{ env.Variable }} resulting in an array like ["Variable"]
31
31
  $: hbsValue = String(value)?.match(STRIP_NAME_REGEX) || []