@globalbrain/sefirot 3.2.0 → 3.2.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.
@@ -206,7 +206,11 @@ const resizeObserver = useResizeObserver(head, handleResize)
206
206
 
207
207
  function stopObserving() {
208
208
  const orders = ordersToShow.value
209
- colWidths[orders[orders.length - 1]] = 'auto'
209
+ const lastOrder
210
+ = orders[orders.length - 1] === 'actions'
211
+ ? orders[orders.length - 2]
212
+ : orders[orders.length - 1]
213
+ colWidths[lastOrder] = 'auto'
210
214
  resizeObserver.stop()
211
215
  }
212
216
 
@@ -228,9 +228,9 @@
228
228
 
229
229
  :root {
230
230
  --c-bg-elv-1: #ffffff;
231
- --c-bg-elv-2: #f9f9f9;
231
+ --c-bg-elv-2: #f5f5f7;
232
232
  --c-bg-elv-3: #ffffff;
233
- --c-bg-elv-4: #f9f9f9;
233
+ --c-bg-elv-4: #fafafa;
234
234
 
235
235
  --c-bg-mute-1: var(--c-gray-4);
236
236
  --c-bg-mute-2: var(--c-gray-5);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globalbrain/sefirot",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "packageManager": "pnpm@8.8.0",
5
5
  "description": "Vue Components for Global Brain Design System.",
6
6
  "author": "Kia Ishii <ka.ishii@globalbrains.com>",