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

@@ -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',