rads-db 3.0.11 → 3.0.12
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/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -112,6 +112,8 @@ interface UiFieldDecoratorArgs {
|
|
|
112
112
|
icon?: string;
|
|
113
113
|
/** Free text - hint to display under editor field in UI */
|
|
114
114
|
hint?: string;
|
|
115
|
+
/** If true, field is hidden from the rads-ui */
|
|
116
|
+
isHidden?: boolean;
|
|
115
117
|
/** TODO: Preferred component to display or edit this value */
|
|
116
118
|
component?: string;
|
|
117
119
|
}
|
|
@@ -142,6 +144,8 @@ interface UiDecoratorArgs<T = any> {
|
|
|
142
144
|
searchOperator?: 'startsWith' | 'istartsWith' | 'contains' | 'icontains';
|
|
143
145
|
/** Defines section name in rads-ui where this entity will be grouped under */
|
|
144
146
|
group?: string;
|
|
147
|
+
/** If true, field is hidden from the rads-ui */
|
|
148
|
+
isHidden?: boolean;
|
|
145
149
|
}
|
|
146
150
|
interface EntityDecoratorArgs {
|
|
147
151
|
driver?: string;
|