RELEASING: Releasing 1 package(s)
Releases: @warkypublic/oranguru@0.0.6 [skip ci]
This commit is contained in:
parent
182a5f8962
commit
9506d123f3
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'@warkypublic/oranguru': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Flex changes and event handlers
|
|
||||||
@ -1,5 +1,11 @@
|
|||||||
# @warkypublic/zustandsyncstore
|
# @warkypublic/zustandsyncstore
|
||||||
|
|
||||||
|
## 0.0.6
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 182a5f8: Flex changes and event handlers
|
||||||
|
|
||||||
## 0.0.5
|
## 0.0.5
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@warkypublic/oranguru",
|
"name": "@warkypublic/oranguru",
|
||||||
"author": "Warky Devs",
|
"author": "Warky Devs",
|
||||||
"version": "0.0.5",
|
"version": "0.0.6",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@ -6,7 +6,7 @@ import {
|
|||||||
type GridColumn,
|
type GridColumn,
|
||||||
} from '@glideapps/glide-data-grid';
|
} from '@glideapps/glide-data-grid';
|
||||||
import { Group, Stack } from '@mantine/core';
|
import { Group, Stack } from '@mantine/core';
|
||||||
import { useDebouncedValue, useElementSize, useMergedRef } from '@mantine/hooks';
|
import { useElementSize, useMergedRef } from '@mantine/hooks';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import { BottomBar } from './components/BottomBar';
|
import { BottomBar } from './components/BottomBar';
|
||||||
|
|||||||
@ -18,7 +18,7 @@ export const GridlerGoAPIExampleEventlog = () => {
|
|||||||
const [sections, setSections] = useState<Record<string, unknown> | undefined>(undefined);
|
const [sections, setSections] = useState<Record<string, unknown> | undefined>(undefined);
|
||||||
const columns: GridlerColumns = [
|
const columns: GridlerColumns = [
|
||||||
{
|
{
|
||||||
Cell: (row, col, colIndx, value, storeState) => {
|
Cell: (row) => {
|
||||||
const process = `${
|
const process = `${
|
||||||
row?.cql2?.length > 0
|
row?.cql2?.length > 0
|
||||||
? '🔖'
|
? '🔖'
|
||||||
@ -35,7 +35,7 @@ export const GridlerGoAPIExampleEventlog = () => {
|
|||||||
data: process,
|
data: process,
|
||||||
displayData: process,
|
displayData: process,
|
||||||
status: row?.status,
|
status: row?.status,
|
||||||
};
|
} as any;
|
||||||
},
|
},
|
||||||
id: 'id_process',
|
id: 'id_process',
|
||||||
title: 'RID',
|
title: 'RID',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user