@budibase/bbui 2.2.17 → 2.2.19

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.2.17",
4
+ "version": "2.2.19",
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.2.17",
41
+ "@budibase/string-templates": "^2.2.19",
42
42
  "@spectrum-css/actionbutton": "1.0.1",
43
43
  "@spectrum-css/actiongroup": "1.0.1",
44
44
  "@spectrum-css/avatar": "3.0.2",
@@ -88,5 +88,5 @@
88
88
  "resolutions": {
89
89
  "loader-utils": "1.4.1"
90
90
  },
91
- "gitHead": "471a769cf49ee8a1c14ff0af6101df82448d4832"
91
+ "gitHead": "8bbb891771ed95f06e2207a57029fe87f447f8f3"
92
92
  }
@@ -76,13 +76,6 @@
76
76
  }
77
77
  // If time only set date component to 2000-01-01
78
78
  if (timeOnly) {
79
- // Classic flackpickr causing issues.
80
- // When selecting a value for the first time for a "time only" field,
81
- // the time is always offset by 1 hour for some reason (regardless of time
82
- // zone) so we need to correct it.
83
- if (!value && newValue) {
84
- newValue = new Date(dates[0].getTime() + 60 * 60 * 1000).toISOString()
85
- }
86
79
  newValue = `2000-01-01T${newValue.split("T")[1]}`
87
80
  }
88
81