@festo-ui/angular 7.0.0-dev.393 → 7.0.0-dev.395
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/esm2022/lib/forms/select/select.component.mjs +42 -44
- package/esm2022/lib/forms/text-editor/text-editor.component.mjs +2 -2
- package/fesm2022/festo-ui-angular.mjs +41 -41
- package/fesm2022/festo-ui-angular.mjs.map +1 -1
- package/lib/forms/select/select.component.d.ts +7 -10
- package/package.json +3 -3
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, DestroyRef, ElementRef, EventEmitter, OnInit, QueryList, Renderer2 } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { FngSelectOptionComponent } from './select-option/select-option.component';
|
|
4
|
-
import { Subject } from 'rxjs';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export interface FngSelectOption {
|
|
7
6
|
value: any;
|
|
8
7
|
text: string;
|
|
9
8
|
}
|
|
10
9
|
export declare class FngSelectComponent implements ControlValueAccessor, OnInit, AfterViewInit, AfterContentInit {
|
|
11
|
-
protected document: any;
|
|
12
|
-
protected renderer: Renderer2;
|
|
13
10
|
cd: ChangeDetectorRef;
|
|
11
|
+
protected document: Document;
|
|
12
|
+
protected renderer: Renderer2;
|
|
13
|
+
protected destroy: DestroyRef;
|
|
14
14
|
static nextId: number;
|
|
15
15
|
protected _disabled: boolean;
|
|
16
16
|
protected _required: boolean;
|
|
@@ -22,9 +22,8 @@ export declare class FngSelectComponent implements ControlValueAccessor, OnInit,
|
|
|
22
22
|
set required(value: boolean);
|
|
23
23
|
get value(): any;
|
|
24
24
|
set value(value: any);
|
|
25
|
-
onChange: (
|
|
26
|
-
onTouched: (
|
|
27
|
-
touched: boolean;
|
|
25
|
+
onChange: (value: any) => void;
|
|
26
|
+
onTouched: () => void;
|
|
28
27
|
id: string;
|
|
29
28
|
multiple: boolean;
|
|
30
29
|
size: number;
|
|
@@ -47,12 +46,10 @@ export declare class FngSelectComponent implements ControlValueAccessor, OnInit,
|
|
|
47
46
|
checked: Map<any, any>;
|
|
48
47
|
hasProjectedOptions: boolean;
|
|
49
48
|
projectedHtml: any[];
|
|
50
|
-
|
|
51
|
-
constructor(document: any, renderer: Renderer2, cd: ChangeDetectorRef);
|
|
49
|
+
constructor(cd: ChangeDetectorRef, document: Document, renderer: Renderer2, destroy: DestroyRef);
|
|
52
50
|
ngAfterContentInit(): void;
|
|
53
51
|
ngOnInit(): void;
|
|
54
52
|
ngAfterViewInit(): void;
|
|
55
|
-
ngOnDestroy(): void;
|
|
56
53
|
registerOnChange(fn: any): void;
|
|
57
54
|
registerOnTouched(fn: any): void;
|
|
58
55
|
setDisabledState(shouldDisable: boolean): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@festo-ui/angular",
|
|
3
|
-
"version": "7.0.0-dev.
|
|
3
|
+
"version": "7.0.0-dev.395",
|
|
4
4
|
"author": "Festo UI (styleguide@festo.com)",
|
|
5
5
|
"license": "apache-2.0",
|
|
6
6
|
"description": "CSS framework and utils to build FESTO web applications",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"@festo-ui/web-essentials": "*"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"tslib": "^2.3.0"
|
|
21
|
-
"@types/quill": "2.0.10"
|
|
20
|
+
"tslib": "^2.3.0"
|
|
22
21
|
},
|
|
23
22
|
"optionalDependencies": {
|
|
24
23
|
"flatpickr": "4.6.13",
|
|
25
24
|
"quill": "1.3.7",
|
|
25
|
+
"quill-delta": "^5.1.0",
|
|
26
26
|
"simplebar": "^6.2.7",
|
|
27
27
|
"swiper": "^8.4.6"
|
|
28
28
|
},
|