RELEASING: Releasing 1 package(s)

Releases:
  @warkypublic/oranguru@0.0.6

[skip ci]
This commit is contained in:
Hein 2025-10-22 17:07:56 +02:00
parent 182a5f8962
commit 9506d123f3
5 changed files with 10 additions and 9 deletions

View File

@ -1,5 +0,0 @@
---
'@warkypublic/oranguru': patch
---
Flex changes and event handlers

View File

@ -1,5 +1,11 @@
# @warkypublic/zustandsyncstore
## 0.0.6
### Patch Changes
- 182a5f8: Flex changes and event handlers
## 0.0.5
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"name": "@warkypublic/oranguru",
"author": "Warky Devs",
"version": "0.0.5",
"version": "0.0.6",
"type": "module",
"scripts": {
"dev": "vite",

View File

@ -6,7 +6,7 @@ import {
type GridColumn,
} from '@glideapps/glide-data-grid';
import { Group, Stack } from '@mantine/core';
import { useDebouncedValue, useElementSize, useMergedRef } from '@mantine/hooks';
import { useElementSize, useMergedRef } from '@mantine/hooks';
import React from 'react';
import { BottomBar } from './components/BottomBar';

View File

@ -18,7 +18,7 @@ export const GridlerGoAPIExampleEventlog = () => {
const [sections, setSections] = useState<Record<string, unknown> | undefined>(undefined);
const columns: GridlerColumns = [
{
Cell: (row, col, colIndx, value, storeState) => {
Cell: (row) => {
const process = `${
row?.cql2?.length > 0
? '🔖'
@ -35,7 +35,7 @@ export const GridlerGoAPIExampleEventlog = () => {
data: process,
displayData: process,
status: row?.status,
};
} as any;
},
id: 'id_process',
title: 'RID',