Skip to content

Commit

Permalink
[48] VLCrudInput: add string[] to VLCrudInputValueType (#49)
Browse files Browse the repository at this point in the history
add string[] to VLCrudInputValueType
  • Loading branch information
AAndonio authored Oct 3, 2024
1 parent 945e97a commit bd26f81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@skillbill/vuelace-3",
"version": "1.1.7",
"version": "1.1.8",
"private": false,
"author": "skillbill",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/components/VLCrudInput/types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { VLFileInputErrorEvent, VLInputRuleType } from '..'
import { VLSelectOptionType } from '../VLSelect'

export type VLCrudInputValueType = string | boolean | Date | number | undefined
export type VLCrudInputValueType = string | string[] | boolean | Date | number | undefined
export type VLCrudInputFieldType =
| 'text'
| 'checkbox'
Expand Down

0 comments on commit bd26f81

Please sign in to comment.