@budibase/frontend-core 3.4.11 → 3.4.13

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/frontend-core",
3
- "version": "3.4.11",
3
+ "version": "3.4.13",
4
4
  "description": "Budibase frontend core libraries used in builder and client",
5
5
  "author": "Budibase",
6
6
  "license": "MPL-2.0",
@@ -20,5 +20,5 @@
20
20
  "devDependencies": {
21
21
  "svelte-check": "^4.1.0"
22
22
  },
23
- "gitHead": "f29da76d472126c681c45fd5f59cde1b45cd0fda"
23
+ "gitHead": "e2369c1039767e60669f4588cd69524a954814ff"
24
24
  }
@@ -31,7 +31,7 @@ export const deriveStores = (context: StoreContext): ConditionDerivedStore => {
31
31
  // Derive and memoize the cell conditions present in our columns so that we
32
32
  // only recompute condition metadata when absolutely necessary
33
33
  const conditions = derivedMemo(columns, $columns => {
34
- let newConditions = []
34
+ let newConditions: UICondition[] = []
35
35
  for (let column of $columns) {
36
36
  for (let condition of column.conditions || []) {
37
37
  newConditions.push({
package/src/constants.ts CHANGED
@@ -112,10 +112,7 @@ export const EventPublishType = {
112
112
  ENV_VAR_UPGRADE_PANEL_OPENED: "environment_variable_upgrade_panel_opened",
113
113
  }
114
114
 
115
- export const ContextScopes = {
116
- Local: "local",
117
- Global: "global",
118
- }
115
+ export { ComponentContextScopes as ContextScopes } from "@budibase/types"
119
116
 
120
117
  export const TypeIconMap = {
121
118
  [FieldType.STRING]: "Text",