@asaleh37/ui-base 25.9.5-4 → 25.9.5-5

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 CHANGED
@@ -143,7 +143,11 @@ interface ComboBoxProps {
143
143
  label: string;
144
144
  disabled?: boolean;
145
145
  required?: boolean;
146
- options: Array<any>;
146
+ commonStoreKey?: string;
147
+ dataQueryId?: number;
148
+ storeUrl?: string;
149
+ storeLoadParam?: any;
150
+ options?: Array<any>;
147
151
  errorMessage?: any;
148
152
  hidden?: boolean;
149
153
  displayField: string;
@@ -357,6 +361,10 @@ type RecordFieldProps = {
357
361
  fieldType: "text" | "number" | "date" | "datetime" | "combobox" | "checkbox" | "html" | "lookup" | "custom";
358
362
  lookupType?: string;
359
363
  comboboxValueDataType?: "number" | "string";
364
+ commonStoreKey?: string;
365
+ dataQueryId?: number;
366
+ storeUrl?: string;
367
+ storeLoadParam?: any;
360
368
  required?: boolean;
361
369
  disabled?: boolean;
362
370
  hidden?: boolean;