@axdspub/axiom-ui-forms 0.3.14 → 0.3.15
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.
|
@@ -100,9 +100,6 @@ interface IJSONField extends IFormFieldRoot {
|
|
|
100
100
|
allowEmpty?: boolean;
|
|
101
101
|
};
|
|
102
102
|
}
|
|
103
|
-
interface ICustomField extends IFormFieldRoot {
|
|
104
|
-
type: `custom:${string}`;
|
|
105
|
-
}
|
|
106
103
|
interface ISelectOption {
|
|
107
104
|
label: string;
|
|
108
105
|
value: string | number;
|
|
@@ -120,6 +117,9 @@ interface ISelectableInput extends IFormFieldRoot {
|
|
|
120
117
|
label_key: string;
|
|
121
118
|
};
|
|
122
119
|
}
|
|
120
|
+
interface ICustomField extends IFormFieldRoot, ISelectableInput {
|
|
121
|
+
type: `custom:${string}`;
|
|
122
|
+
}
|
|
123
123
|
interface ISingleSelectableInput extends ISelectableInput {
|
|
124
124
|
}
|
|
125
125
|
interface IMultiSelectableInput extends ISelectableInput {
|