@budibase/frontend-core 3.13.14 → 3.13.16

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.13.14",
3
+ "version": "3.13.16",
4
4
  "description": "Budibase frontend core libraries used in builder and client",
5
5
  "author": "Budibase",
6
6
  "license": "MPL-2.0",
@@ -17,5 +17,5 @@
17
17
  "shortid": "2.2.15",
18
18
  "socket.io-client": "^4.7.5"
19
19
  },
20
- "gitHead": "81fb74bfa8468ff60261bf0ac54d46625e16d565"
20
+ "gitHead": "e7934b7332a032106b7581fbfc887b47557aa9f4"
21
21
  }
@@ -218,7 +218,7 @@
218
218
  /* Variables */
219
219
  --accent-color: var(--primaryColor, var(--spectrum-global-color-blue-400));
220
220
  --grid-background: var(--spectrum-global-color-gray-50);
221
- --grid-background-alt: var(--background);
221
+ --grid-background-alt: var(--spectrum-global-color-gray-100);
222
222
  --header-cell-background: var(
223
223
  --custom-header-cell-background,
224
224
  var(--spectrum-global-color-gray-100)
@@ -230,7 +230,7 @@
230
230
  --cell-spacing: 4px;
231
231
  --cell-border: 1px solid var(--spectrum-global-color-gray-200);
232
232
  --cell-font-size: 14px;
233
- --cell-font-color: var(--spectrum-global-color-gray-900);
233
+ --cell-font-color: var(--spectrum-global-color-gray-800);
234
234
  flex: 1 1 auto;
235
235
  display: flex;
236
236
  flex-direction: column;
@@ -171,9 +171,6 @@ export const initialise = (context: StoreContext) => {
171
171
  primaryDisplay = candidatePD
172
172
  }
173
173
 
174
- const anyVisibilitySet = Object.values($enrichedSchema).find(
175
- (col: any) => col.visible != undefined
176
- )
177
174
  // Update columns, removing extraneous columns and adding missing ones
178
175
  columns.set(
179
176
  Object.keys($enrichedSchema)
@@ -185,7 +182,7 @@ export const initialise = (context: StoreContext) => {
185
182
  label: fieldSchema.displayName || field,
186
183
  schema: fieldSchema,
187
184
  width: fieldSchema.width || DefaultColumnWidth,
188
- visible: fieldSchema.visible ?? !anyVisibilitySet,
185
+ visible: fieldSchema.visible ?? true,
189
186
  readonly: fieldSchema.readonly,
190
187
  order: fieldSchema.order,
191
188
  conditions: fieldSchema.conditions,