rads-db 3.0.83 → 3.0.84
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
|
@@ -153,6 +153,10 @@ interface UiFieldDecoratorArgs {
|
|
|
153
153
|
hint?: string;
|
|
154
154
|
/** If true, field is hidden from the rads-ui */
|
|
155
155
|
isHidden?: boolean;
|
|
156
|
+
/** If true, field is readonly in the rads-ui */
|
|
157
|
+
isReadonly?: boolean;
|
|
158
|
+
/** If true, field can be edited only during creation */
|
|
159
|
+
isImmutable?: boolean;
|
|
156
160
|
/** TODO: Preferred component to display or edit this value */
|
|
157
161
|
component?: string;
|
|
158
162
|
}
|