@randstad-uca/design-system 1.0.68 → 1.0.69

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.
@@ -1,12 +1,18 @@
1
1
  import { TemplateResult } from 'lit';
2
2
  import { BaseUpload } from '../helpers/BaseUpload';
3
3
  import '../components/Button';
4
+ import '../components/Icon';
5
+ import '../components/Popup';
4
6
  export declare class UploadFile extends BaseUpload {
5
7
  width?: string;
6
8
  maxFiles: number;
7
9
  acceptedFileTypes: string[];
8
10
  maxFileSize: number;
9
11
  buttonText: string;
12
+ showDeleteConfirmation: boolean;
13
+ private isRemovePopupOpen;
14
+ private fileIndexToRemove;
15
+ private fileNameToRemove;
10
16
  static styles: import("lit").CSSResult;
11
17
  private getFileConfig;
12
18
  private getTextAcceptedFileTypes;
@@ -15,5 +21,8 @@ export declare class UploadFile extends BaseUpload {
15
21
  private applyWidth;
16
22
  private onFileInputChange;
17
23
  willUpdate(changedProperties: Map<string | number | symbol, unknown>): void;
24
+ private handleRemoveFile;
25
+ private confirmRemoveFile;
26
+ private handlePopupClose;
18
27
  render(): TemplateResult<1>;
19
28
  }
@@ -12,6 +12,8 @@ export declare class FilterableSelect extends BaseControl {
12
12
  options: SelectOption[];
13
13
  filterable: boolean;
14
14
  maxLength?: number;
15
+ textLabelFilterNotResult?: string;
16
+ textLabelMobileSearch: string;
15
17
  isRenderClearButton: boolean;
16
18
  private isMobile;
17
19
  private highlightedIndex;
@@ -21,8 +23,10 @@ export declare class FilterableSelect extends BaseControl {
21
23
  isOpen: boolean;
22
24
  mobileFilterValue: string;
23
25
  private debounceTimeout;
26
+ private mobileInputRef;
24
27
  static styles: (import("lit").CSSResult | CSSStyleSheet)[];
25
28
  update(changedProperties: Map<string, any>): void;
29
+ protected updated(changedProperties: Map<string | number | symbol, unknown>): void;
26
30
  connectedCallback(): void;
27
31
  disconnectedCallback(): void;
28
32
  private updateResponsiveModeBound;