@messaia/cdk 17.1.0-rc33 → 17.1.2

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.
@@ -221,6 +221,11 @@ export declare class FormFieldDefinition<TEntity = any, TProperty = any> {
221
221
  * @property
222
222
  */
223
223
  multiple: boolean;
224
+ /**
225
+ * Flag indicating if only numbers are allowed in the input field.
226
+ * @property {boolean} numbersOnly - Flag indicating if only numbers are allowed in the input field.
227
+ */
228
+ numbersOnly?: boolean;
224
229
  /**
225
230
  * Indicates whether the first option should be automatically selected.
226
231
  * @property
@@ -267,6 +272,11 @@ export declare class FormFieldDefinition<TEntity = any, TProperty = any> {
267
272
  * @property
268
273
  */
269
274
  params?: ((x: TEntity, f?: FormGroup, ctx?: IGenericFormBaseComponent<TEntity>) => any) | {};
275
+ /**
276
+ * Regular expression pattern for input validation.
277
+ * @property {RegExp} pattern - Regular expression pattern for input validation.
278
+ */
279
+ pattern?: RegExp | string;
270
280
  /**
271
281
  * Projection for data retrieval.
272
282
  * @property
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@messaia/cdk",
3
- "version": "17.1.0-rc33",
3
+ "version": "17.1.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.5",
6
6
  "@angular/core": "^17.3.5"