select option type

This commit is contained in:
AntoXa PRO 2023-09-20 10:25:01 +03:00
parent 20c21ea73d
commit 13e639fa8d
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "axp-ts",
"version": "1.9.9",
"version": "1.9.10",
"description": "TypeScript helper library",
"author": "AntoXa PRO <info@antoxa.pro>",
"homepage": "https://antoxahub.ru/antoxa/axp-ts",

View File

@ -12,6 +12,11 @@ import {
} from './helpers'
import { FormSchemaCtrl } from './ctrl'
export type TUiFieldSelectOption = {
text: string
value: string
}
/**
* Create field schema.
*/