@dataloop-ai/components 0.20.234 → 0.20.236

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": "@dataloop-ai/components",
3
- "version": "0.20.234",
3
+ "version": "0.20.236",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -23,7 +23,7 @@
23
23
  "check-only": "if grep -E -H -r --exclude-dir=.git --exclude-dir=node_modules --exclude=*.json --exclude=*.yml '^(describe|it).only' .; then echo 'Found only in test files' && exit 1; fi"
24
24
  },
25
25
  "dependencies": {
26
- "@dataloop-ai/icons": "^3.1.67",
26
+ "@dataloop-ai/icons": "^3.1.68",
27
27
  "@monaco-editor/loader": "^1.4.0",
28
28
  "@types/flat": "^5.0.2",
29
29
  "@types/lodash": "^4.14.184",
@@ -30,7 +30,7 @@ export type DlTableFilter = string | Record<string, any>
30
30
  export type DlTableColumn = {
31
31
  name: string
32
32
  label: string
33
- field?: string | ((row: DlTableRow) => string)
33
+ field?: string | ((row: DlTableRow) => string | number)
34
34
  required?: boolean
35
35
  align?: 'right' | 'left' | 'center'
36
36
  sortable?: boolean