commons-shared-web-ui 0.0.40 → 0.0.42

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/index.d.ts CHANGED
@@ -89,6 +89,12 @@ interface FormLabels {
89
89
  previousLabel?: string;
90
90
  addLabel?: string;
91
91
  removeLabel?: string;
92
+ /** File upload error messages. Supports placeholders: {fileName}, {maxSizeMB}, {maxFiles} */
93
+ fileTypeError?: string;
94
+ fileSizeError?: string;
95
+ maxFilesError?: string;
96
+ fileUploadFailed?: string;
97
+ fileDeleteFailed?: string;
92
98
  }
93
99
  interface SubmitConfig {
94
100
  apiUrl: string;
@@ -310,6 +316,10 @@ interface DateConfig {
310
316
  allowFuture?: boolean;
311
317
  minDate?: string;
312
318
  maxDate?: string;
319
+ /** When true, the text input is readonly (picker-only, no keyboard entry). */
320
+ inputReadonly?: boolean;
321
+ /** Name of a sibling field whose value is used as the dynamic minimum date. */
322
+ minDateField?: string;
313
323
  }
314
324
  interface OptionConfig$1 {
315
325
  optionClass?: string;
@@ -887,6 +897,12 @@ declare class FieldConfiguratorComponent implements OnChanges {
887
897
  * Defaults to true (show everything).
888
898
  */
889
899
  showOptionConfig: boolean;
900
+ /**
901
+ * Field names that must always remain enabled and cannot be toggled off.
902
+ * When a locked field is selected, the IS ENABLED / READ ONLY / DISABLED
903
+ * controls are hidden so the user cannot accidentally disable the field.
904
+ */
905
+ lockedFieldNames: string[];
890
906
  readonly store: FieldConfiguratorService;
891
907
  private readonly cdr;
892
908
  private readonly schemaMapOverride;
@@ -903,7 +919,7 @@ declare class FieldConfiguratorComponent implements OnChanges {
903
919
  onTypeChange(builderType: string): void;
904
920
  private _emitChange;
905
921
  static ɵfac: i0.ɵɵFactoryDeclaration<FieldConfiguratorComponent, never>;
906
- static ɵcmp: i0.ɵɵComponentDeclaration<FieldConfiguratorComponent, "lib-field-configurator", never, { "schema": { "alias": "schema"; "required": true; }; "showOptionConfig": { "alias": "showOptionConfig"; "required": false; }; }, { "schemaChange": "schemaChange"; }, never, never, false, never>;
922
+ static ɵcmp: i0.ɵɵComponentDeclaration<FieldConfiguratorComponent, "lib-field-configurator", never, { "schema": { "alias": "schema"; "required": true; }; "showOptionConfig": { "alias": "showOptionConfig"; "required": false; }; "lockedFieldNames": { "alias": "lockedFieldNames"; "required": false; }; }, { "schemaChange": "schemaChange"; }, never, never, false, never>;
907
923
  }
908
924
 
909
925
  declare class GroupNodeComponent {
@@ -1027,6 +1043,12 @@ declare class ConfiguratorConfigPanelComponent implements OnChanges {
1027
1043
  * option URLs — these are pre-filled by the developer in the master JSON.
1028
1044
  */
1029
1045
  showOptionConfig: boolean;
1046
+ /**
1047
+ * Field names that are mandatory and cannot be disabled.
1048
+ * When the currently selected field is in this list, IS ENABLED / READ ONLY /
1049
+ * DISABLED controls are hidden from the Field State step.
1050
+ */
1051
+ lockedFieldNames: string[];
1030
1052
  /** Exposed to the template for the native type-switcher select */
1031
1053
  readonly switchableFieldTypes: {
1032
1054
  label: string;
@@ -1073,10 +1095,15 @@ declare class ConfiguratorConfigPanelComponent implements OnChanges {
1073
1095
  * Also removes entire sections that become empty after filtering.
1074
1096
  */
1075
1097
  private _filterSchemaForOptionConfig;
1098
+ /**
1099
+ * Remove IS ENABLED, READ ONLY, and DISABLED controls from the config schema
1100
+ * when the selected field is a mandatory/locked field.
1101
+ */
1102
+ private _filterSchemaForLockedField;
1076
1103
  private _extractInitialValuesFromField;
1077
1104
  private _buildPatchFromFormData;
1078
1105
  static ɵfac: i0.ɵɵFactoryDeclaration<ConfiguratorConfigPanelComponent, never>;
1079
- static ɵcmp: i0.ɵɵComponentDeclaration<ConfiguratorConfigPanelComponent, "lib-configurator-config-panel", never, { "selectedField": { "alias": "selectedField"; "required": false; }; "selectedFieldInfo": { "alias": "selectedFieldInfo"; "required": false; }; "builderFieldType": { "alias": "builderFieldType"; "required": false; }; "fieldTypeSchemaMap": { "alias": "fieldTypeSchemaMap"; "required": false; }; "showOptionConfig": { "alias": "showOptionConfig"; "required": false; }; }, { "configChange": "configChange"; "typeChange": "typeChange"; }, never, never, false, never>;
1106
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfiguratorConfigPanelComponent, "lib-configurator-config-panel", never, { "selectedField": { "alias": "selectedField"; "required": false; }; "selectedFieldInfo": { "alias": "selectedFieldInfo"; "required": false; }; "builderFieldType": { "alias": "builderFieldType"; "required": false; }; "fieldTypeSchemaMap": { "alias": "fieldTypeSchemaMap"; "required": false; }; "showOptionConfig": { "alias": "showOptionConfig"; "required": false; }; "lockedFieldNames": { "alias": "lockedFieldNames"; "required": false; }; }, { "configChange": "configChange"; "typeChange": "typeChange"; }, never, never, false, never>;
1080
1107
  }
1081
1108
 
1082
1109
  declare class SmartFormController {
@@ -1207,7 +1234,10 @@ declare class SmartFormComponent implements OnInit, OnChanges, OnDestroy {
1207
1234
  private _markReady;
1208
1235
  ngOnChanges(changes: SimpleChanges): void;
1209
1236
  ngOnDestroy(): void;
1237
+ /** Public backward-compatible entry point — delegates to _startForm. */
1210
1238
  parseFormJson(): void;
1239
+ private _startForm;
1240
+ private _applySchema;
1211
1241
  initializeForm(): void;
1212
1242
  collectFields(fields: FieldConfig[]): void;
1213
1243
  handleSubmit(): void;
@@ -1272,6 +1302,16 @@ declare class SmartFormComponent implements OnInit, OnChanges, OnDestroy {
1272
1302
  isButtonDisabled(btn: ActionButtonConfig): boolean;
1273
1303
  private getButtonByActionKind;
1274
1304
  private navigateTo;
1305
+ private _hasHierarchyDynamic;
1306
+ private _expandHierarchyNodes;
1307
+ private _expandNodeRecursive;
1308
+ private _expandSingleNode;
1309
+ private _normalizeHierarchyCfg;
1310
+ private _fetchHierarchyTemplate;
1311
+ private _buildHierarchyFields;
1312
+ private _getPathValue;
1313
+ private _codeToFieldName;
1314
+ private _codeToLabel;
1275
1315
  static ɵfac: i0.ɵɵFactoryDeclaration<SmartFormComponent, never>;
1276
1316
  static ɵcmp: i0.ɵɵComponentDeclaration<SmartFormComponent, "lib-smart-form", never, { "formJson": { "alias": "formJson"; "required": false; }; "initialValues": { "alias": "initialValues"; "required": false; }; "enableDraftAutoSave": { "alias": "enableDraftAutoSave"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "submit": "submit"; "draftSave": "draftSave"; "actionClick": "actionClick"; "valueChange": "valueChange"; "fileAdded": "fileAdded"; "fileUploadFinished": "fileUploadFinished"; "fileRemoved": "fileRemoved"; "stepChange": "stepChange"; }, never, never, false, never>;
1277
1317
  }
@@ -1388,6 +1428,7 @@ declare class FormFieldComponent implements OnInit, OnDestroy {
1388
1428
  value: any;
1389
1429
  isVisible: boolean;
1390
1430
  showPassword: boolean;
1431
+ dynamicMinDate: string | null;
1391
1432
  isMultiDropdownOpen: boolean;
1392
1433
  isDragOver: boolean;
1393
1434
  fileUploadError: string;
@@ -1430,6 +1471,12 @@ declare class FormFieldComponent implements OnInit, OnDestroy {
1430
1471
  label: string;
1431
1472
  code: any;
1432
1473
  }[];
1474
+ /**
1475
+ * Component-local option list for DROPDOWN/RADIO/CHECKBOX/CHIP fields.
1476
+ * Using a local copy prevents shared-config mutation when the same field config
1477
+ * object is reused across multiple allowMulti repeater instances.
1478
+ */
1479
+ localOptionList: any[];
1433
1480
  /** Cache of the latest dependency parameters for server-side autocomplete filtering */
1434
1481
  private _latestDependencyValues;
1435
1482
  /** For GROUP fields with allowMulti = true */
@@ -1443,6 +1490,8 @@ declare class FormFieldComponent implements OnInit, OnDestroy {
1443
1490
  * cached values from bleeding into new instances.
1444
1491
  *
1445
1492
  * Enhanced with isEditing and isSaved flags for the 'multiSave' card UI.
1493
+ * Each instance gets its own rowController so cascading dropdowns work
1494
+ * independently within each repeater row.
1446
1495
  */
1447
1496
  instanceList: {
1448
1497
  id: number;
@@ -1451,6 +1500,7 @@ declare class FormFieldComponent implements OnInit, OnDestroy {
1451
1500
  isEditing?: boolean;
1452
1501
  isSaved?: boolean;
1453
1502
  isExpanded?: boolean;
1503
+ rowController: SmartFormController;
1454
1504
  }[];
1455
1505
  private _nextInstanceId;
1456
1506
  /** Tracks open accordion panels for standard (non-multiSave) GROUP repeaters. */
@@ -1504,6 +1554,7 @@ declare class FormFieldComponent implements OnInit, OnDestroy {
1504
1554
  */
1505
1555
  setupMatchValidation(): void;
1506
1556
  setupVisibility(): void;
1557
+ setupMinDateField(): void;
1507
1558
  setupGeneratedField(): void;
1508
1559
  evaluateFormula(context: {
1509
1560
  [key: string]: any;
@@ -1517,6 +1568,7 @@ declare class FormFieldComponent implements OnInit, OnDestroy {
1517
1568
  /** Builds HttpHeaders using the token stored in the SmartFormController (sourced from configJSON)
1518
1569
  * merged with any custom headers declared in optionConfig.headers.
1519
1570
  */
1571
+ private _fileLabel;
1520
1572
  private getHeaders;
1521
1573
  updateValue(newValue: any): void;
1522
1574
  onCheckboxListChange(code: string, checked: boolean): void;
@@ -1941,9 +1993,11 @@ interface DropdownConfig {
1941
1993
  }
1942
1994
 
1943
1995
  declare class DropdownComponent implements ControlValueAccessor, OnInit, OnChanges {
1996
+ private el;
1944
1997
  config?: DropdownConfig;
1945
1998
  labels?: DropdownLabels;
1946
1999
  options: DropdownOption[];
2000
+ selectedValue?: any;
1947
2001
  placeholder: string;
1948
2002
  label: string;
1949
2003
  multiple: boolean;
@@ -1976,13 +2030,20 @@ declare class DropdownComponent implements ControlValueAccessor, OnInit, OnChang
1976
2030
  selectionChange: EventEmitter<any>;
1977
2031
  viewport?: CdkVirtualScrollViewport;
1978
2032
  searchInput?: ElementRef;
2033
+ triggerEl?: ElementRef;
1979
2034
  filteredOptions: DropdownOption[];
1980
2035
  searchTerm: string;
1981
2036
  value: any;
1982
2037
  isOpen: boolean;
1983
2038
  focusedIndex: number;
2039
+ menuPosition: {
2040
+ top: number;
2041
+ left: number;
2042
+ width: number;
2043
+ };
1984
2044
  onChange: (value: any) => void;
1985
2045
  onTouched: () => void;
2046
+ constructor(el: ElementRef);
1986
2047
  ngOnInit(): void;
1987
2048
  ngOnChanges(changes: SimpleChanges): void;
1988
2049
  private get validOptions();
@@ -2022,7 +2083,7 @@ declare class DropdownComponent implements ControlValueAccessor, OnInit, OnChang
2022
2083
  [key: string]: string | undefined;
2023
2084
  };
2024
2085
  static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
2025
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "lib-dropdown", never, { "config": { "alias": "config"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "options": { "alias": "options"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "fontFamily": { "alias": "fontFamily"; "required": false; }; "labelColor": { "alias": "labelColor"; "required": false; }; "labelFontSize": { "alias": "labelFontSize"; "required": false; }; "labelFontWeight": { "alias": "labelFontWeight"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; "borderWidth": { "alias": "borderWidth"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "fontWeight": { "alias": "fontWeight"; "required": false; }; "color": { "alias": "color"; "required": false; }; "placeholderColor": { "alias": "placeholderColor"; "required": false; }; "focusBorderColor": { "alias": "focusBorderColor"; "required": false; }; "errorColor": { "alias": "errorColor"; "required": false; }; "disabledBackgroundColor": { "alias": "disabledBackgroundColor"; "required": false; }; "disabledColor": { "alias": "disabledColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; }, { "selectionChange": "selectionChange"; }, never, never, false, never>;
2086
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "lib-dropdown", never, { "config": { "alias": "config"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "options": { "alias": "options"; "required": false; }; "selectedValue": { "alias": "selectedValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "fontFamily": { "alias": "fontFamily"; "required": false; }; "labelColor": { "alias": "labelColor"; "required": false; }; "labelFontSize": { "alias": "labelFontSize"; "required": false; }; "labelFontWeight": { "alias": "labelFontWeight"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; "borderWidth": { "alias": "borderWidth"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "fontWeight": { "alias": "fontWeight"; "required": false; }; "color": { "alias": "color"; "required": false; }; "placeholderColor": { "alias": "placeholderColor"; "required": false; }; "focusBorderColor": { "alias": "focusBorderColor"; "required": false; }; "errorColor": { "alias": "errorColor"; "required": false; }; "disabledBackgroundColor": { "alias": "disabledBackgroundColor"; "required": false; }; "disabledColor": { "alias": "disabledColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; }, { "selectionChange": "selectionChange"; }, never, never, false, never>;
2026
2087
  }
2027
2088
 
2028
2089
  interface CheckboxOption {
@@ -3210,6 +3271,7 @@ interface TableColumn {
3210
3271
  headerClass?: string;
3211
3272
  sticky?: boolean;
3212
3273
  labelPath?: string;
3274
+ emptyValue?: string;
3213
3275
  dateFormat?: string;
3214
3276
  clickAction?: 'route' | 'callback';
3215
3277
  clickRoute?: string;
@@ -3326,6 +3388,9 @@ interface TableConfig {
3326
3388
  token?: string;
3327
3389
  tokenHeader?: string;
3328
3390
  editingRowClass?: string;
3391
+ /** Fallback text for any cell whose value is null, undefined, or empty string.
3392
+ * Overridden per-column via TableColumn.emptyValue. Library default: '-' */
3393
+ emptyValue?: string;
3329
3394
  }
3330
3395
  interface SearchConfig {
3331
3396
  enabled: boolean;
@@ -3918,6 +3983,28 @@ declare const DEFAULT_SIDE_NAV_TOOLTIP_POSITION = "right";
3918
3983
 
3919
3984
  declare function appendBaseUrlRecursively(obj: any, baseURL: string): void;
3920
3985
 
3986
+ interface HierarchyCfg {
3987
+ templateApiUrl: string;
3988
+ templateListPath: string | null;
3989
+ templateSelect: 'default' | 'first' | 'byCode';
3990
+ templateSelectField: string;
3991
+ templateSelectCode?: string;
3992
+ rootCodePath: string;
3993
+ templateCodePath: string;
3994
+ hierarchyListPath: string;
3995
+ parentField: string;
3996
+ childField: string;
3997
+ dataApiUrl: string;
3998
+ dataPath: string;
3999
+ labelPath: string;
4000
+ valuePath: string;
4001
+ colSpan: number;
4002
+ payloadPrefix: string;
4003
+ dependencyParam: string;
4004
+ nodes: Record<string, any>;
4005
+ branchSubType: string;
4006
+ }
4007
+
3921
4008
  declare class ValidationUtils {
3922
4009
  static email(): ValidatorFn;
3923
4010
  static phone(): ValidatorFn;
@@ -3966,4 +4053,4 @@ declare class SnackbarModule {
3966
4053
  }
3967
4054
 
3968
4055
  export { AlertComponent, AlertModule, ButtonComponent, ButtonDropdownComponent, ButtonDropdownModule, ButtonModule, CheckboxComponent, ConfigurableFormComponent, configurableForm_examples_d as ConfigurableFormExamples, ConfigurableFormModule, ConfirmationModalComponent, ConfirmationModalModule, DEFAULT_ITEMS_PER_PAGE, DEFAULT_PAGE_SIZE_OPTIONS, DEFAULT_SIDE_NAV_TOOLTIP_POSITION, DatepickerComponent, DropdownComponent, ExpressionService, FieldConfiguratorComponent, FieldSelectionComponent, FilterComponent, FilterModule, FilterSidebarComponent, FilterSidebarModule, FilterTableSelectorComponent, FilterTableSelectorModule, FormBuilderModule, FormComponentsModule, InputComponent, MaterialModule, NAV_ORIENTATION_DEFAULT, NAV_VARIANT_DEFAULT, NavComponent, NavModule, PAGINATION_THEME_DARK, PAGINATION_THEME_DEFAULT, PaginationComponent, PaginationModule, RadioComponent, SearchComponent, SharedUiModule, SideNavComponent, SideNavModule, SmartFormComponent, SmartFormController, smartForm_examples_d as SmartFormExamples, SmartFormModule, SmartTableComponent, SmartTableModule, SnackbarComponent, SnackbarModule, SnackbarService, StringUtils, SummaryCardComponent, SummaryCardModule, ToggleComponent, ValidationUtils, appendBaseUrlRecursively, clearLocalStorage, clearSessionStorage, getLocalStorageItem, getSessionStorageItem, removeLocalStorageItem, removeSessionStorageItem, setLocalStorageItem, setSessionStorageItem, translateConfig };
3969
- export type { AlertLabels, AlertVariant, AttachmentConfig, ButtonLabels, ButtonVariant, CheckboxConfig, CheckboxLabels, CheckboxOption, ConfirmationModalConfig, DateConfig, DatePickerConfig, DatepickerLabels, DropdownAction, DropdownConfig, DropdownLabels, DropdownOption, EmailConfig, FieldConfig, FieldType, FilterChangeEvent, FilterConfig, FilterItem, FilterItemType, FilterOutput, FilterPanelConfig, FilterParamMap, FilterSearchConfig, FilterSidebarChangeEvent, FilterSidebarConfig, FilterSidebarOutput, FilterTableConfig, FilterTableSelectorConfig, FormConfig, FormField, FormOption, FormSchema, FormSection, GeneratedConfig, IconInput, InputConfig, InputLabels, InputType, JsonFieldConfig, JsonFormConfig, KeyType, LengthConstraint, LocationConfig, NavItem, NavStyleConfig, NestedStringConfig, NumberConfig, OptionConfig, OptionDTO, OptionItem, PaginationConfig, PaginationLabels, PhoneConfig, QueryParamsConfig, RadioConfig, RadioLabels, RadioOption, RangeConfig, RatingConfig, SearchConfig, SearchLabels, SectionConfig, SelectionConfig, SideNavItem, SideNavSection, SideNavStyleConfig, SnackbarConfig, SnackbarVariant, StepperConfig, SubmitConfig, SummaryCardConfig, SummaryCardLabels, SummaryCardMeta, TableAction, TableActionItem, TableColumn, TableColumnSubField, TableConfig, TableDataChangeEvent, TableFilter, TableFilterChangeEvent, TableFilterColumn, TableFilterConfig, TableFilterItem, TableFilterLabels, TableFilterOutput, TableLabels, TableOption, TableRowSaveEvent, TableTheme, TextConfig, ToggleConfig, ToggleLabels, UIConfig, UISubType, UIType, UploadedFile, ValidationResult, ValidationRules };
4056
+ export type { AlertLabels, AlertVariant, AttachmentConfig, ButtonLabels, ButtonVariant, CheckboxConfig, CheckboxLabels, CheckboxOption, ConfirmationModalConfig, DateConfig, DatePickerConfig, DatepickerLabels, DropdownAction, DropdownConfig, DropdownLabels, DropdownOption, EmailConfig, FieldConfig, FieldType, FilterChangeEvent, FilterConfig, FilterItem, FilterItemType, FilterOutput, FilterPanelConfig, FilterParamMap, FilterSearchConfig, FilterSidebarChangeEvent, FilterSidebarConfig, FilterSidebarOutput, FilterTableConfig, FilterTableSelectorConfig, FormConfig, FormField, FormOption, FormSchema, FormSection, GeneratedConfig, HierarchyCfg, IconInput, InputConfig, InputLabels, InputType, JsonFieldConfig, JsonFormConfig, KeyType, LengthConstraint, LocationConfig, NavItem, NavStyleConfig, NestedStringConfig, NumberConfig, OptionConfig, OptionDTO, OptionItem, PaginationConfig, PaginationLabels, PhoneConfig, QueryParamsConfig, RadioConfig, RadioLabels, RadioOption, RangeConfig, RatingConfig, SearchConfig, SearchLabels, SectionConfig, SelectionConfig, SideNavItem, SideNavSection, SideNavStyleConfig, SnackbarConfig, SnackbarVariant, StepperConfig, SubmitConfig, SummaryCardConfig, SummaryCardLabels, SummaryCardMeta, TableAction, TableActionItem, TableColumn, TableColumnSubField, TableConfig, TableDataChangeEvent, TableFilter, TableFilterChangeEvent, TableFilterColumn, TableFilterConfig, TableFilterItem, TableFilterLabels, TableFilterOutput, TableLabels, TableOption, TableRowSaveEvent, TableTheme, TextConfig, ToggleConfig, ToggleLabels, UIConfig, UISubType, UIType, UploadedFile, ValidationResult, ValidationRules };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commons-shared-web-ui",
3
- "version": "0.0.40",
3
+ "version": "0.0.42",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "20.3.15",
6
6
  "@angular/cdk": "20.2.14",