@yuuvis/app-drive 0.7.3 → 0.8.0

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.
Files changed (23) hide show
  1. package/esm2022/lib/components/add-button/add-button-overlay/add-button-overlay.component.mjs +2 -2
  2. package/esm2022/lib/components/drive-search/drive-search-overlay/drive-search-overlay.component.mjs +343 -0
  3. package/esm2022/lib/components/drive-search/drive-search.component.mjs +83 -0
  4. package/esm2022/lib/components/index.mjs +2 -2
  5. package/esm2022/lib/components/search-filter/search-filter.component.mjs +14 -330
  6. package/esm2022/lib/drive.icons.mjs +5 -2
  7. package/esm2022/lib/pages/files/files.component.mjs +24 -24
  8. package/esm2022/lib/services/drive/drive.interface.mjs +1 -1
  9. package/esm2022/lib/services/drive/drive.service.mjs +9 -4
  10. package/fesm2022/yuuvis-app-drive.mjs +490 -438
  11. package/fesm2022/yuuvis-app-drive.mjs.map +1 -1
  12. package/lib/components/drive-search/drive-search-overlay/drive-search-overlay.component.d.ts +52 -0
  13. package/lib/components/drive-search/drive-search.component.d.ts +21 -0
  14. package/lib/components/index.d.ts +1 -0
  15. package/lib/components/search-filter/search-filter.component.d.ts +0 -2
  16. package/lib/container/drive/drive.component.d.ts +3 -0
  17. package/lib/drive.icons.d.ts +3 -0
  18. package/lib/pages/files/files.component.d.ts +10 -7
  19. package/lib/services/drive/drive.interface.d.ts +1 -0
  20. package/lib/services/drive/drive.service.d.ts +1 -1
  21. package/package.json +2 -2
  22. package/esm2022/lib/components/search-filter/date-range-picker/date-range-picker.component.mjs +0 -38
  23. package/lib/components/search-filter/date-range-picker/date-range-picker.component.d.ts +0 -13
@@ -0,0 +1,52 @@
1
+ import { TranslateService } from '@ngx-translate/core';
2
+ import { FormStatusChangedEvent, ObjectFormComponent, ObjectFormOptions } from '@yuuvis/client-framework/object-form';
3
+ import { ObjectFlavor } from '@yuuvis/client-shell-core';
4
+ import { DropdownOption } from '@yuuvis/components/dropdown';
5
+ import * as i0 from "@angular/core";
6
+ interface SearchToken {
7
+ fromControlName: string;
8
+ label: string;
9
+ }
10
+ export declare class DriveSearchOverlayComponent {
11
+ #private;
12
+ readonly translate: TranslateService;
13
+ objectForms: import("@angular/core").Signal<readonly ObjectFormComponent[]>;
14
+ ANY_OPTION: string;
15
+ icons: {
16
+ arrow: string;
17
+ remove: string;
18
+ unchecked: string;
19
+ checked: string;
20
+ };
21
+ selectedFlavorsRec: Record<string, ObjectFlavor>;
22
+ combinedFormState?: FormStatusChangedEvent;
23
+ formStates: Record<string, FormStatusChangedEvent>;
24
+ flavorFormOptions: import("@angular/core").WritableSignal<Record<string, ObjectFormOptions>>;
25
+ flavorForms: import("@angular/core").Signal<{
26
+ id: string;
27
+ icon?: string | undefined;
28
+ label: string;
29
+ formOptions: ObjectFormOptions;
30
+ }[]>;
31
+ scopeOptions: import("@angular/core").WritableSignal<DropdownOption[]>;
32
+ filterForm: import("@angular/forms").FormGroup<{
33
+ term: import("@angular/forms").FormControl<any>;
34
+ scope: import("@angular/forms").FormControl<string>;
35
+ modified: import("@angular/forms").FormControl<never>;
36
+ created: import("@angular/forms").FormControl<never>;
37
+ contentlength: import("@angular/forms").FormControl<never>;
38
+ }>;
39
+ searchTokens: SearchToken[];
40
+ flavors: (ObjectFlavor & {
41
+ label: string;
42
+ })[];
43
+ constructor();
44
+ typeSelected(idx: number[]): void;
45
+ onFormStatusChanged(formId: string, evt: FormStatusChangedEvent): void;
46
+ removeSearchToken(t: SearchToken): void;
47
+ cancel(): void;
48
+ submit(): void;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<DriveSearchOverlayComponent, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<DriveSearchOverlayComponent, "ymd-drive-search-overlay", never, {}, {}, never, never, true, never>;
51
+ }
52
+ export {};
@@ -0,0 +1,21 @@
1
+ import { TranslateService } from '@ngx-translate/core';
2
+ import { SearchQuery } from '@yuuvis/client-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DriveSearchComponent {
5
+ #private;
6
+ readonly translate: TranslateService;
7
+ icons: {
8
+ extendedSearch: string;
9
+ clear: string;
10
+ };
11
+ query: import("@ngrx/signals/src/deep-signal").Signal<SearchQuery | null>;
12
+ extendedQuery: import("@ngrx/signals/src/deep-signal").Signal<boolean>;
13
+ currentFolder: import("@ngrx/signals/src/deep-signal").Signal<string | null>;
14
+ term: string;
15
+ openModal(event: MouseEvent | KeyboardEvent): void;
16
+ clear(): void;
17
+ onQueryChange(q: SearchQuery): void;
18
+ onQuerySubmit(q: SearchQuery, ext?: boolean): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DriveSearchComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<DriveSearchComponent, "ymd-drive-search", never, {}, {}, never, never, true, never>;
21
+ }
@@ -6,3 +6,4 @@ export * from './paste-from-clipboard/paste-from-clipboard.component';
6
6
  export * from './overlay/create-folder/create-folder.component';
7
7
  export * from './paste-from-clipboard/paste-from-clipboard.component';
8
8
  export * from './versions-list/versions-list.component';
9
+ export * from './drive-search/drive-search.component';
@@ -6,8 +6,6 @@ export declare class SearchFilterComponent {
6
6
  private translate;
7
7
  ANY_OPTION: string;
8
8
  typeOptions: import("@angular/core").WritableSignal<DropdownOption[]>;
9
- dateOptions: import("@angular/core").WritableSignal<DropdownOption[]>;
10
- sizeOptions: import("@angular/core").WritableSignal<DropdownOption[]>;
11
9
  query: import("@angular/core").InputSignal<SearchQuery | null>;
12
10
  queryChange: import("@angular/core").OutputEmitterRef<SearchQuery>;
13
11
  filtersActive: import("@angular/core").WritableSignal<boolean>;
@@ -25,6 +25,9 @@ export declare class DriveFrameComponent implements OnInit, OnDestroy {
25
25
  addCircle: string;
26
26
  createFolder: string;
27
27
  createFile: string;
28
+ unchecked: string;
29
+ checked: string;
30
+ extendedSearch: string;
28
31
  };
29
32
  headerNavItems: MenuItem[];
30
33
  constructor();
@@ -12,4 +12,7 @@ export declare const APP_DRIVE_ICONS: {
12
12
  addCircle: string;
13
13
  createFolder: string;
14
14
  createFile: string;
15
+ unchecked: string;
16
+ checked: string;
17
+ extendedSearch: string;
15
18
  };
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, OnDestroy, Signal } from '@angular/core';
1
+ import { AfterViewInit, OnDestroy } from '@angular/core';
2
2
  import { ConfigTypeOption, DmsObject, SearchQuery } from '@yuuvis/client-core';
3
3
  import { Action } from '@yuuvis/client-framework/actions';
4
4
  import { TileData, TileListComponent, TileListConfigOptions, TileListHighlight } from '@yuuvis/client-framework/tile-list';
@@ -9,7 +9,7 @@ import { DriveFolderId } from '../../services/drive/drive.interface';
9
9
  import * as i0 from "@angular/core";
10
10
  export declare class FilesPageComponent implements AfterViewInit, OnDestroy {
11
11
  #private;
12
- tileList: Signal<TileListComponent | undefined>;
12
+ tileList: import("@angular/core").Signal<TileListComponent | undefined>;
13
13
  private shellService;
14
14
  private dmsService;
15
15
  private drive;
@@ -24,23 +24,23 @@ export declare class FilesPageComponent implements AfterViewInit, OnDestroy {
24
24
  INVALID_ID: string;
25
25
  };
26
26
  objectConfigBucket: string;
27
- splitViewCmp: Signal<SplitViewComponent>;
27
+ splitViewCmp: import("@angular/core").Signal<SplitViewComponent>;
28
28
  selected: import("@angular/core").WritableSignal<DmsObject | undefined>;
29
- fileDropSummaryDisabled: Signal<boolean>;
29
+ fileDropSummaryDisabled: import("@angular/core").Signal<boolean>;
30
30
  disableCreate: boolean;
31
31
  actions: import("@ngrx/signals/src/deep-signal").Signal<Action[]>;
32
32
  selection: import("@ngrx/signals/src/deep-signal").Signal<DmsObject[]>;
33
+ extendedQuery: import("@ngrx/signals/src/deep-signal").Signal<boolean>;
33
34
  busy: import("@ngrx/signals/src/deep-signal").Signal<boolean>;
34
35
  flavorChips: ObjectFlavor[];
35
36
  appliedFlavor?: ObjectFlavor;
36
- selectionActions: Signal<{
37
+ selectionActions: import("@angular/core").Signal<{
37
38
  selection: DmsObject[];
38
39
  actions: Action[];
39
40
  }>;
40
41
  emptyMode: import("@angular/core").WritableSignal<DriveFolderId | null>;
41
42
  error: import("@angular/core").WritableSignal<string | undefined>;
42
43
  configTypeOptions: Record<string, ConfigTypeOption>;
43
- searchFocused: boolean;
44
44
  currentFolderID?: string;
45
45
  currentFolder?: DmsObject;
46
46
  enableDetails: import("@angular/core").WritableSignal<boolean>;
@@ -48,6 +48,7 @@ export declare class FilesPageComponent implements AfterViewInit, OnDestroy {
48
48
  tileConfigBucketLabel: any;
49
49
  smallScreenLayout: import("@angular/core").WritableSignal<boolean>;
50
50
  sortOptionsAvailable: import("@angular/core").WritableSignal<boolean>;
51
+ extendedSearch: import("@angular/core").WritableSignal<boolean>;
51
52
  id: import("@angular/core").InputSignal<string | null>;
52
53
  highlightStyles$: Observable<TileListHighlight[]>;
53
54
  tileListOptions: TileListConfigOptions;
@@ -71,6 +72,9 @@ export declare class FilesPageComponent implements AfterViewInit, OnDestroy {
71
72
  addCircle: string;
72
73
  createFolder: string;
73
74
  createFile: string;
75
+ unchecked: string;
76
+ checked: string;
77
+ extendedSearch: string;
74
78
  };
75
79
  constructor();
76
80
  onFilterQueryChange(q: SearchQuery): void;
@@ -85,7 +89,6 @@ export declare class FilesPageComponent implements AfterViewInit, OnDestroy {
85
89
  itemClicked(tile: TileData): void;
86
90
  onCopy(tiles: TileData[]): void;
87
91
  onCut(tiles: TileData[]): void;
88
- onQuerySubmit(q: SearchQuery): void;
89
92
  selectionChanged(tiles: TileData[]): void;
90
93
  itemDoubleClicked(tile: TileData): void;
91
94
  loadDetails(id: string): void;
@@ -9,6 +9,7 @@ export interface DriveState {
9
9
  currentFolder: string | null;
10
10
  query: SearchQuery | null;
11
11
  queryTitle: string | null;
12
+ extendedQuery: boolean;
12
13
  selection: DmsObject[];
13
14
  actions: Action[];
14
15
  busy: boolean;
@@ -22,7 +22,7 @@ export declare class DriveService {
22
22
  emitEvent(evt: string): void;
23
23
  setBusy(busy: boolean): void;
24
24
  setSelection(o: DmsObject[]): void;
25
- updateQuery(query: SearchQuery, queryTitle?: string | null): void;
25
+ updateQuery(query: SearchQuery, queryTitle?: string | null, extendedQuery?: boolean): void;
26
26
  setSort(property: string, order: 'asc' | 'desc'): void;
27
27
  updateCurrentFolder(currentFolderID: string | null | undefined): void;
28
28
  copyToCurrentFolder(objects: DmsObject[], validateNames?: boolean): Observable<any>;
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@yuuvis/app-drive",
3
- "version": "0.7.3",
3
+ "version": "0.8.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0",
7
7
  "@colsen1991/ngx-translate-extract-marker": "^2.0.8",
8
- "@yuuvis/media-viewer": "0.9.2"
8
+ "@yuuvis/media-viewer": "0.10.0"
9
9
  },
10
10
  "allowedNonPeerDependencies": {
11
11
  "@yuuvis/client-framework": "latest",
@@ -1,38 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { Component, effect, inject, input, output } from '@angular/core';
3
- import { FormBuilder, ReactiveFormsModule, Validators } from '@angular/forms';
4
- import { TranslateModule } from '@yuuvis/client-core';
5
- import { DatetimeRangeComponent } from '@yuuvis/client-framework/forms';
6
- import { YvcOverlayRef } from '@yuuvis/components/overlay';
7
- import * as i0 from "@angular/core";
8
- import * as i1 from "@angular/forms";
9
- import * as i2 from "@yuuvis/client-core";
10
- export class DateRangePickerComponent {
11
- constructor() {
12
- this.#oRef = inject(YvcOverlayRef);
13
- this.#fb = inject(FormBuilder);
14
- this.form = this.#fb.group({
15
- range: this.#fb.control(undefined, Validators.required)
16
- });
17
- this.range = input(this.#oRef.data.range);
18
- this.rangeChange = output();
19
- this.#rangeEffect = effect(() => {
20
- const range = this.range();
21
- this.form.patchValue({ range });
22
- });
23
- }
24
- #oRef;
25
- #fb;
26
- #rangeEffect;
27
- apply() {
28
- this.rangeChange.emit(this.form.value.range || undefined);
29
- this.#oRef?.close(this.form.value.range);
30
- }
31
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateRangePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
32
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: DateRangePickerComponent, isStandalone: true, selector: "ymd-date-range-picker", inputs: { range: { classPropertyName: "range", publicName: "range", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { rangeChange: "rangeChange" }, ngImport: i0, template: "<form [formGroup]=\"form\" (ngSubmit)=\"apply()\">\n <h2>{{ 'yuv.app.drive.search.filter.option.date.custom.overlay.title' | translate }}</h2>\n <yuv-datetime-range [withTime]=\"false\" formControlName=\"range\"></yuv-datetime-range>\n <button class=\"primary\" [disabled]=\"form.invalid\">{{ 'yuv.app.drive.search.filter.option.date.custom.overlay.button.apply' | translate }}</button>\n</form>\n", styles: [":host{--form-element-border-color: transparent;--yvc-form-element-border-color: transparent}:host form{display:grid;grid-template-columns:1fr auto;grid-template-rows:repeat(3,auto);grid-template-areas:\"title title\" \"input input\" \". button\";gap:var(--app-pane-padding);padding:var(--app-pane-padding)}:host form h2{grid-area:title;margin:0}:host form yuv-datetime-range{grid-area:input;border:1px solid var(--text-color-hint);padding:1px 2px;border-radius:2px}:host form button{grid-area:button}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i2.TranslatePipe, name: "translate" }, { kind: "component", type: DatetimeRangeComponent, selector: "yuv-datetime-range", inputs: ["withTime", "readonly", "operator"] }] }); }
33
- }
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateRangePickerComponent, decorators: [{
35
- type: Component,
36
- args: [{ selector: 'ymd-date-range-picker', standalone: true, imports: [CommonModule, ReactiveFormsModule, TranslateModule, DatetimeRangeComponent], template: "<form [formGroup]=\"form\" (ngSubmit)=\"apply()\">\n <h2>{{ 'yuv.app.drive.search.filter.option.date.custom.overlay.title' | translate }}</h2>\n <yuv-datetime-range [withTime]=\"false\" formControlName=\"range\"></yuv-datetime-range>\n <button class=\"primary\" [disabled]=\"form.invalid\">{{ 'yuv.app.drive.search.filter.option.date.custom.overlay.button.apply' | translate }}</button>\n</form>\n", styles: [":host{--form-element-border-color: transparent;--yvc-form-element-border-color: transparent}:host form{display:grid;grid-template-columns:1fr auto;grid-template-rows:repeat(3,auto);grid-template-areas:\"title title\" \"input input\" \". button\";gap:var(--app-pane-padding);padding:var(--app-pane-padding)}:host form h2{grid-area:title;margin:0}:host form yuv-datetime-range{grid-area:input;border:1px solid var(--text-color-hint);padding:1px 2px;border-radius:2px}:host form button{grid-area:button}\n"] }]
37
- }] });
38
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1yYW5nZS1waWNrZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hcHBzL2RyaXZlL3NyYy9saWIvY29tcG9uZW50cy9zZWFyY2gtZmlsdGVyL2RhdGUtcmFuZ2UtcGlja2VyL2RhdGUtcmFuZ2UtcGlja2VyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYXBwcy9kcml2ZS9zcmMvbGliL2NvbXBvbmVudHMvc2VhcmNoLWZpbHRlci9kYXRlLXJhbmdlLXBpY2tlci9kYXRlLXJhbmdlLXBpY2tlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekUsT0FBTyxFQUFFLFdBQVcsRUFBRSxtQkFBbUIsRUFBRSxVQUFVLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM5RSxPQUFPLEVBQWMsZUFBZSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDbEUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFDeEUsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDRCQUE0QixDQUFDOzs7O0FBUzNELE1BQU0sT0FBTyx3QkFBd0I7SUFQckM7UUFRRSxVQUFLLEdBQUcsTUFBTSxDQUFDLGFBQWEsQ0FBQyxDQUFDO1FBQzlCLFFBQUcsR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDLENBQUM7UUFFMUIsU0FBSSxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDO1lBQ3BCLEtBQUssRUFBRSxJQUFJLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBeUIsU0FBUyxFQUFFLFVBQVUsQ0FBQyxRQUFRLENBQUM7U0FDaEYsQ0FBQyxDQUFDO1FBRUgsVUFBSyxHQUFHLEtBQUssQ0FBeUIsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDN0QsZ0JBQVcsR0FBRyxNQUFNLEVBQTBCLENBQUM7UUFDL0MsaUJBQVksR0FBRyxNQUFNLENBQUMsR0FBRyxFQUFFO1lBQ3pCLE1BQU0sS0FBSyxHQUFHLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUMzQixJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUM7UUFDbEMsQ0FBQyxDQUFDLENBQUM7S0FNSjtJQWxCQyxLQUFLLENBQXlCO0lBQzlCLEdBQUcsQ0FBdUI7SUFRMUIsWUFBWSxDQUdUO0lBRUgsS0FBSztRQUNILElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssSUFBSSxTQUFTLENBQUMsQ0FBQztRQUMxRCxJQUFJLENBQUMsS0FBSyxFQUFFLEtBQUssQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMzQyxDQUFDOytHQWxCVSx3QkFBd0I7bUdBQXhCLHdCQUF3Qiw4UENkckMsa1pBS0EsK2lCREtZLFlBQVksOEJBQUUsbUJBQW1CLDRyQkFBRSxlQUFlLDRGQUFFLHNCQUFzQjs7NEZBSXpFLHdCQUF3QjtrQkFQcEMsU0FBUzsrQkFDRSx1QkFBdUIsY0FDckIsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLG1CQUFtQixFQUFFLGVBQWUsRUFBRSxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDb21wb25lbnQsIGVmZmVjdCwgaW5qZWN0LCBpbnB1dCwgb3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtQnVpbGRlciwgUmVhY3RpdmVGb3Jtc01vZHVsZSwgVmFsaWRhdG9ycyB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IFJhbmdlVmFsdWUsIFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0B5dXV2aXMvY2xpZW50LWNvcmUnO1xuaW1wb3J0IHsgRGF0ZXRpbWVSYW5nZUNvbXBvbmVudCB9IGZyb20gJ0B5dXV2aXMvY2xpZW50LWZyYW1ld29yay9mb3Jtcyc7XG5pbXBvcnQgeyBZdmNPdmVybGF5UmVmIH0gZnJvbSAnQHl1dXZpcy9jb21wb25lbnRzL292ZXJsYXknO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICd5bWQtZGF0ZS1yYW5nZS1waWNrZXInLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBSZWFjdGl2ZUZvcm1zTW9kdWxlLCBUcmFuc2xhdGVNb2R1bGUsIERhdGV0aW1lUmFuZ2VDb21wb25lbnRdLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0ZS1yYW5nZS1waWNrZXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybDogJy4vZGF0ZS1yYW5nZS1waWNrZXIuY29tcG9uZW50LnNjc3MnXG59KVxuZXhwb3J0IGNsYXNzIERhdGVSYW5nZVBpY2tlckNvbXBvbmVudCB7XG4gICNvUmVmID0gaW5qZWN0KFl2Y092ZXJsYXlSZWYpO1xuICAjZmIgPSBpbmplY3QoRm9ybUJ1aWxkZXIpO1xuXG4gIGZvcm0gPSB0aGlzLiNmYi5ncm91cCh7XG4gICAgcmFuZ2U6IHRoaXMuI2ZiLmNvbnRyb2w8UmFuZ2VWYWx1ZSB8IHVuZGVmaW5lZD4odW5kZWZpbmVkLCBWYWxpZGF0b3JzLnJlcXVpcmVkKVxuICB9KTtcbiAgXG4gIHJhbmdlID0gaW5wdXQ8UmFuZ2VWYWx1ZSB8IHVuZGVmaW5lZD4odGhpcy4jb1JlZi5kYXRhLnJhbmdlKTtcbiAgcmFuZ2VDaGFuZ2UgPSBvdXRwdXQ8UmFuZ2VWYWx1ZSB8IHVuZGVmaW5lZD4oKTtcbiAgI3JhbmdlRWZmZWN0ID0gZWZmZWN0KCgpID0+IHtcbiAgICBjb25zdCByYW5nZSA9IHRoaXMucmFuZ2UoKTtcbiAgICB0aGlzLmZvcm0ucGF0Y2hWYWx1ZSh7IHJhbmdlIH0pO1xuICB9KTtcblxuICBhcHBseSgpIHtcbiAgICB0aGlzLnJhbmdlQ2hhbmdlLmVtaXQodGhpcy5mb3JtLnZhbHVlLnJhbmdlIHx8IHVuZGVmaW5lZCk7XG4gICAgdGhpcy4jb1JlZj8uY2xvc2UodGhpcy5mb3JtLnZhbHVlLnJhbmdlKTtcbiAgfVxufVxuIiwiPGZvcm0gW2Zvcm1Hcm91cF09XCJmb3JtXCIgKG5nU3VibWl0KT1cImFwcGx5KClcIj5cbiAgPGgyPnt7ICd5dXYuYXBwLmRyaXZlLnNlYXJjaC5maWx0ZXIub3B0aW9uLmRhdGUuY3VzdG9tLm92ZXJsYXkudGl0bGUnIHwgdHJhbnNsYXRlIH19PC9oMj5cbiAgPHl1di1kYXRldGltZS1yYW5nZSBbd2l0aFRpbWVdPVwiZmFsc2VcIiBmb3JtQ29udHJvbE5hbWU9XCJyYW5nZVwiPjwveXV2LWRhdGV0aW1lLXJhbmdlPlxuICA8YnV0dG9uIGNsYXNzPVwicHJpbWFyeVwiIFtkaXNhYmxlZF09XCJmb3JtLmludmFsaWRcIj57eyAneXV2LmFwcC5kcml2ZS5zZWFyY2guZmlsdGVyLm9wdGlvbi5kYXRlLmN1c3RvbS5vdmVybGF5LmJ1dHRvbi5hcHBseScgfCB0cmFuc2xhdGUgfX08L2J1dHRvbj5cbjwvZm9ybT5cbiJdfQ==
@@ -1,13 +0,0 @@
1
- import { RangeValue } from '@yuuvis/client-core';
2
- import * as i0 from "@angular/core";
3
- export declare class DateRangePickerComponent {
4
- #private;
5
- form: import("@angular/forms").FormGroup<{
6
- range: import("@angular/forms").FormControl<RangeValue | null | undefined>;
7
- }>;
8
- range: import("@angular/core").InputSignal<RangeValue | undefined>;
9
- rangeChange: import("@angular/core").OutputEmitterRef<RangeValue | undefined>;
10
- apply(): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePickerComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "ymd-date-range-picker", never, { "range": { "alias": "range"; "required": false; "isSignal": true; }; }, { "rangeChange": "rangeChange"; }, never, never, true, never>;
13
- }