@yuuvis/client-framework 3.20.0 → 3.20.1

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.
@@ -53,7 +53,7 @@
53
53
  "yuv.form.element.datetime.calendar.today": "Today",
54
54
  "yuv.form.element.organization-set.classify.icon.title": "Group",
55
55
  "yuv.form.element.organization.classify.icon.title": "User",
56
- "yuv.form.element.organization.freetext.tooltip": "Free text – not a resolved user or group",
56
+ "yuv.form.element.organization.freetext.tooltip": "Free text – no resolved user or group",
57
57
  "yuv.form.element.range-select-date.custom.overlay.button.apply": "Apply",
58
58
  "yuv.form.element.range-select-date.custom.overlay.title": "User-defined time period",
59
59
  "yuv.form.element.range-select-date.option.any": "Any date",
@@ -92,7 +92,7 @@
92
92
  "yuv.object-metadata.tabs.indexdata.title": "Metadata",
93
93
  "yuv.object-flavor.apply-flavor.button.apply": "Apply",
94
94
  "yuv.object-flavor.apply-flavor.button.cancel": "Cancel",
95
- "yuv.object-flavor.apply-flavor.error": "The type could not be added.",
95
+ "yuv.object-flavor.apply-flavor.error": "Unable to add type.",
96
96
  "yuv.object-flavor.apply-flavor.headline": "Add type '{{name}}'",
97
97
  "yuv.object-flavor.button.add": "Add type",
98
98
  "yuv.object-flavor.button.clear-selection": "Unselect",
@@ -195,7 +195,7 @@
195
195
  "yuv.smart-search.fulltext.types.all": "All types",
196
196
  "yuv.smart-search.fulltext.types.label": "Limit to types",
197
197
  "yuv.smart-search.mode.empty": "No input fields available. Mark conditions with the lightning icon to add them here.",
198
- "yuv.smart-search.mode.essentials": "Essentials",
198
+ "yuv.smart-search.mode.essentials": "Compact",
199
199
  "yuv.smart-search.mode.full": "Full search",
200
200
  "yuv.smart-search.mode.label": "Search mode",
201
201
  "yuv.smart-search.operator.change": "Modify operator",
@@ -217,7 +217,7 @@
217
217
  "yuv.tile-config.button.close": "Close",
218
218
  "yuv.tile-config.button.reset": "Reset",
219
219
  "yuv.tile-config.button.save": "Save changes",
220
- "yuv.tile-config.error.title-required": "A title attribute is required. Select an attribute for the title slot.",
220
+ "yuv.tile-config.error.title-required": "A title attribute is required. Select an attribute for the title.",
221
221
  "yuv.tile-config.icon-select.pick": "Select icon",
222
222
  "yuv.tile-config.icon-select.reset": "Reset",
223
223
  "yuv.tile-config.slot.action.headline": "Actions",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuuvis/client-framework",
3
- "version": "3.20.0",
3
+ "version": "3.20.1",
4
4
  "author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
5
5
  "license": "MIT",
6
6
  "peerDependencies": {
@@ -8,17 +8,17 @@
8
8
  "@angular/common": "^21.2.19",
9
9
  "@angular/core": "^21.2.19",
10
10
  "angular-gridster2": "^21.0.1",
11
- "@yuuvis/client-core": "^3.20.0",
12
- "@yuuvis/client-shell-core": "^3.20.0",
13
- "@yuuvis/client-components": "^3.20.0",
11
+ "@yuuvis/client-core": "^3.20.1",
12
+ "@yuuvis/client-shell-core": "^3.20.1",
13
+ "@yuuvis/client-components": "^3.20.1",
14
14
  "ng-dynamic-component": "^10.8.2",
15
15
  "modern-normalize": "^3.0.1"
16
16
  },
17
17
  "dependencies": {
18
18
  "@angular/material": "^21.2.14",
19
19
  "@ngrx/signals": "^21.1.0",
20
- "@yuuvis/material": "^3.20.0",
21
- "@yuuvis/media-viewer": "^4.0.0",
20
+ "@yuuvis/material": "^3.20.1",
21
+ "@yuuvis/media-viewer": "^4.1.0",
22
22
  "angular-split": "^20.0.0",
23
23
  "vis-network": "^10.0.2",
24
24
  "tslib": "^2.3.0"
@@ -172,6 +172,7 @@ declare class DateInputComponent implements OnInit, OnDestroy {
172
172
  set disabled(d: boolean);
173
173
  private _disabled;
174
174
  invalid: _angular_core.WritableSignal<boolean>;
175
+ private _dateInvalid;
175
176
  private _refreshPlaceholder;
176
177
  _placeholder?: string;
177
178
  set placeholder(p: string);
@@ -189,9 +190,23 @@ declare class DateInputComponent implements OnInit, OnDestroy {
189
190
  dayPeriodLabels: DayPeriodLabels;
190
191
  constructor(datepickerService: DatepickerService, fb: FormBuilder, elRef: ElementRef);
191
192
  private _setupForm;
192
- private _setInvalidInputError;
193
+ /**
194
+ * Reflects both sources of invalidity: a structurally incomplete/invalid form
195
+ * (missing or out of range parts) and input that does not describe a real
196
+ * calendar date (e.g. 31st of February). Both have to be taken into account
197
+ * here because the form group may well be VALID while the entered parts still
198
+ * do not add up to an existing date.
199
+ */
200
+ private _updateInvalidState;
193
201
  private _checkAndPropagateForm;
194
202
  private _formToDate;
203
+ private _formToTime;
204
+ /**
205
+ * Strict integer parse - unlike parseInt it rejects values with trailing
206
+ * garbage ('1x') so those cannot slip through as a valid date part.
207
+ */
208
+ private _toInt;
209
+ private _daysInMonth;
195
210
  private _focusInput;
196
211
  onFormClick(event: MouseEvent): void;
197
212
  onDateInputBlur(): void;