@simpleangularcontrols/sac-bootstrap5 16.0.0-rc.2 → 16.0.0-rc.3
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/components/browser/browser.d.ts +6 -6
- package/controls/buttons/index.d.ts +1 -0
- package/controls/checkbox/checkbox.d.ts +5 -5
- package/controls/checkbox/radiobuttons.d.ts +5 -5
- package/controls/contextmenu/contextmenu.d.ts +6 -6
- package/controls/contextmenu/contextmenuanchor.d.ts +2 -2
- package/controls/contextmenu/contextmenucontainer.d.ts +2 -2
- package/controls/datetime/date.d.ts +6 -6
- package/controls/datetime/datetime.d.ts +6 -6
- package/controls/datetime/time.d.ts +6 -6
- package/controls/dialog/index.d.ts +1 -0
- package/controls/form/form.d.ts +3 -11
- package/controls/form/inheritform.directive.d.ts +11 -11
- package/controls/input/input.d.ts +5 -5
- package/controls/input/inputarea.d.ts +5 -5
- package/controls/input/inputcurrency.d.ts +5 -5
- package/controls/input/inputdecimal.d.ts +5 -5
- package/controls/input/inputemail.d.ts +5 -5
- package/controls/input/inputinteger.d.ts +5 -5
- package/controls/input/inputpassword.d.ts +5 -5
- package/controls/input/inputsearch.d.ts +5 -5
- package/controls/layout/formlayout.directive.d.ts +6 -0
- package/controls/layout/layout.module.d.ts +10 -0
- package/controls/layout/tocontrolwidthcss.pipe.d.ts +19 -0
- package/controls/layout/tolabelwidthcss.pipe.d.ts +13 -0
- package/controls/list/dropdown.d.ts +10 -10
- package/controls/list/listbox.d.ts +8 -8
- package/controls/multilanguage/multilanguageinput.d.ts +5 -5
- package/controls/multilanguage/multilanguageinputarea.d.ts +5 -5
- package/controls/multilanguage/multilanguagemenu.d.ts +9 -9
- package/controls/multilanguage/multilanguagemenuanchor.d.ts +2 -2
- package/controls/multilanguage/multilanguagemenucontainer.d.ts +2 -2
- package/controls/static/formcontainer.d.ts +5 -5
- package/controls/static/staticlabel.d.ts +5 -5
- package/controls/tinymce/tinymce.d.ts +7 -7
- package/controls/upload/dropzonemultiple.d.ts +7 -7
- package/controls/upload/dropzonesingle.d.ts +7 -7
- package/controls/upload/upload.d.ts +7 -7
- package/controls/upload/uploadmultiple.d.ts +7 -7
- package/controls/validation/validationsummary.d.ts +4 -4
- package/esm2022/components/browser/browser.mjs +13 -9
- package/esm2022/controls/buttons/index.mjs +2 -0
- package/esm2022/controls/checkbox/checkbox.mjs +16 -18
- package/esm2022/controls/checkbox/radiobuttons.mjs +17 -19
- package/esm2022/controls/contextmenu/contextmenu.mjs +10 -9
- package/esm2022/controls/contextmenu/contextmenuanchor.mjs +5 -4
- package/esm2022/controls/contextmenu/contextmenucontainer.mjs +5 -4
- package/esm2022/controls/contextmenu/contextmenuitembutton.mjs +3 -2
- package/esm2022/controls/contextmenu/contextmenuitemsplitter.mjs +1 -1
- package/esm2022/controls/datetime/date.mjs +24 -14
- package/esm2022/controls/datetime/dateselector.mjs +3 -8
- package/esm2022/controls/datetime/datetime.mjs +25 -15
- package/esm2022/controls/datetime/time.mjs +26 -16
- package/esm2022/controls/dialog/index.mjs +2 -0
- package/esm2022/controls/form/form.mjs +6 -17
- package/esm2022/controls/form/inheritform.directive.mjs +31 -28
- package/esm2022/controls/grid/paging.mjs +13 -10
- package/esm2022/controls/input/input.mjs +22 -14
- package/esm2022/controls/input/inputarea.mjs +21 -13
- package/esm2022/controls/input/inputcurrency.mjs +21 -13
- package/esm2022/controls/input/inputdecimal.mjs +22 -14
- package/esm2022/controls/input/inputemail.mjs +22 -14
- package/esm2022/controls/input/inputinteger.mjs +21 -13
- package/esm2022/controls/input/inputpassword.mjs +22 -14
- package/esm2022/controls/input/inputsearch.mjs +16 -13
- package/esm2022/controls/layout/formlayout.directive.mjs +16 -0
- package/esm2022/controls/layout/layout.module.mjs +34 -0
- package/esm2022/controls/layout/tocontrolwidthcss.pipe.mjs +59 -0
- package/esm2022/controls/layout/tolabelwidthcss.pipe.mjs +43 -0
- package/esm2022/controls/list/dropdown.mjs +27 -23
- package/esm2022/controls/list/listbox.mjs +25 -22
- package/esm2022/controls/multilanguage/multilanguageinput.mjs +21 -15
- package/esm2022/controls/multilanguage/multilanguageinputarea.mjs +20 -14
- package/esm2022/controls/multilanguage/multilanguagemenu.mjs +11 -9
- package/esm2022/controls/multilanguage/multilanguagemenuanchor.mjs +5 -4
- package/esm2022/controls/multilanguage/multilanguagemenucontainer.mjs +5 -4
- package/esm2022/controls/multilanguage/multilanguagemenuitembutton.mjs +3 -2
- package/esm2022/controls/static/formcontainer.mjs +19 -14
- package/esm2022/controls/static/staticlabel.mjs +16 -13
- package/esm2022/controls/tinymce/tinymce.mjs +25 -19
- package/esm2022/controls/upload/dropzonemultiple.mjs +25 -13
- package/esm2022/controls/upload/dropzonesingle.mjs +26 -14
- package/esm2022/controls/upload/upload.mjs +22 -13
- package/esm2022/controls/upload/uploadmultiple.mjs +23 -13
- package/esm2022/controls/validation/validationsummary.mjs +10 -17
- package/esm2022/public-api.mjs +30 -25
- package/fesm2022/simpleangularcontrols-sac-bootstrap5.mjs +712 -450
- package/fesm2022/simpleangularcontrols-sac-bootstrap5.mjs.map +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +29 -24
- package/simpleangularcontrols-sac-bootstrap5-16.0.0-rc.3.tgz +0 -0
- package/simpleangularcontrols-sac-bootstrap5-16.0.0-rc.2.tgz +0 -0
|
@@ -20,12 +20,6 @@ export declare class SacBrowserComponent extends SacFileBrowserCommon {
|
|
|
20
20
|
* @param confirmService Confirm Service
|
|
21
21
|
*/
|
|
22
22
|
constructor(httpClient: HttpClient, injector: Injector, confirmService: ServiceConfirm);
|
|
23
|
-
/**
|
|
24
|
-
* Erzeugt ein Array von einer bestimmten grösse
|
|
25
|
-
* @param anzahl Grösse des Array
|
|
26
|
-
* @returns Array
|
|
27
|
-
*/
|
|
28
|
-
count(anzahl: number): Array<void>;
|
|
29
23
|
/**
|
|
30
24
|
* Confirm Action wenn ein File gelöscht werden soll
|
|
31
25
|
* @param file File das gelöscht werden soll.
|
|
@@ -38,6 +32,12 @@ export declare class SacBrowserComponent extends SacFileBrowserCommon {
|
|
|
38
32
|
* @returns Observable ob Ordner gelöscht kann.
|
|
39
33
|
*/
|
|
40
34
|
confirmDeleteNode(node: IBrowserNode): Observable<boolean>;
|
|
35
|
+
/**
|
|
36
|
+
* Erzeugt ein Array von einer bestimmten grösse
|
|
37
|
+
* @param anzahl Grösse des Array
|
|
38
|
+
* @returns Array
|
|
39
|
+
*/
|
|
40
|
+
count(anzahl: number): Array<void>;
|
|
41
41
|
/**
|
|
42
42
|
* Methode wird aufgerufen, wenn eine Datei verschoben wird
|
|
43
43
|
* @param uploadid Upload ID
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SacButtonComponent } from './button';
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacCheckboxCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Checkbox Kompontente
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacCheckboxComponent extends SacCheckboxCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacCheckboxComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacCheckboxComponent, "sac-checkbox", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacRadiobuttonsCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Radiobuttons Group Komponente
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacRadiobuttonsComponent extends SacRadiobuttonsCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacRadiobuttonsComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacRadiobuttonsComponent, "sac-radiobuttons", never, {}, {}, never, ["*"], true, never>;
|
|
17
17
|
}
|
|
@@ -7,13 +7,13 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class SacContextmenuComponent extends SacContextmenuCommon {
|
|
8
8
|
/**
|
|
9
9
|
* Constructor
|
|
10
|
-
* @param
|
|
11
|
-
* @param
|
|
12
|
-
* @param
|
|
13
|
-
* @param
|
|
14
|
-
* @param
|
|
10
|
+
* @param document Referenz auf HTML Document
|
|
11
|
+
* @param ngZone Angular Zone Service
|
|
12
|
+
* @param elementRef Referenz auf HTML Element der aktuellen Komponente
|
|
13
|
+
* @param renderer Render Service von Angular
|
|
14
|
+
* @param injector injector to resolve services
|
|
15
15
|
*/
|
|
16
|
-
constructor(
|
|
16
|
+
constructor(document: any, ngZone: NgZone, elementRef: ElementRef<HTMLElement>, renderer: Renderer2, injector: Injector);
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacContextmenuComponent, never>;
|
|
18
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacContextmenuComponent, "sac-contextmenu", never, {}, {}, never, ["*"], true, never>;
|
|
19
19
|
}
|
|
@@ -7,9 +7,9 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class SacContextmenuAnchorDirective extends SacContextmenuAnchorCommon {
|
|
8
8
|
/**
|
|
9
9
|
* Konstruktor
|
|
10
|
-
* @param
|
|
10
|
+
* @param elementRef HTML DOM Referenz
|
|
11
11
|
*/
|
|
12
|
-
constructor(
|
|
12
|
+
constructor(elementRef: ElementRef<HTMLElement>);
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacContextmenuAnchorDirective, never>;
|
|
14
14
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SacContextmenuAnchorDirective, "[sacContextMenuAnchor]", never, {}, {}, never, never, true, never>;
|
|
15
15
|
}
|
|
@@ -7,9 +7,9 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class SacContextmenuContainerDirective extends SacContextMenuContrainerCommon {
|
|
8
8
|
/**
|
|
9
9
|
* Konstruktor
|
|
10
|
-
* @param
|
|
10
|
+
* @param elementRef Referenz auf DOM Element
|
|
11
11
|
*/
|
|
12
|
-
constructor(
|
|
12
|
+
constructor(elementRef: ElementRef<HTMLElement>);
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacContextmenuContainerDirective, never>;
|
|
14
14
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SacContextmenuContainerDirective, "[sacContextMenuContainer]", never, {}, {}, never, never, true, never>;
|
|
15
15
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { ElementRef, Injector } from '@angular/core';
|
|
2
2
|
import { SacDateCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Komponente für Datumauswahl
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacDateComponent extends SacDateCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
13
|
-
* @param
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
|
+
* @param elementRef Reference to html dom element
|
|
14
14
|
*/
|
|
15
|
-
constructor(
|
|
15
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector, elementRef: ElementRef);
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacDateComponent, [{ optional: true; host: true; }, null, null]>;
|
|
17
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacDateComponent, "sac-date", never, {}, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { ElementRef, Injector } from '@angular/core';
|
|
2
2
|
import { SacDateTimeCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Date und Time Komponente
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacDateTimeComponent extends SacDateTimeCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
13
|
-
* @param
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
|
+
* @param elementRef Reference to html dom element
|
|
14
14
|
*/
|
|
15
|
-
constructor(
|
|
15
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector, elementRef: ElementRef);
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacDateTimeComponent, [{ optional: true; host: true; }, null, null]>;
|
|
17
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacDateTimeComponent, "sac-datetime", never, {}, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { ElementRef, Injector } from '@angular/core';
|
|
2
2
|
import { SacTimeCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Time Auswahl Komponente
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacTimeComponent extends SacTimeCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
13
|
-
* @param
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
|
+
* @param elementRef Reference to html dom element
|
|
14
14
|
*/
|
|
15
|
-
constructor(
|
|
15
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector, elementRef: ElementRef);
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacTimeComponent, [{ optional: true; host: true; }, null, null]>;
|
|
17
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacTimeComponent, "sac-time", never, {}, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SacDialogComponent } from './dialog';
|
package/controls/form/form.d.ts
CHANGED
|
@@ -14,23 +14,15 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
16
|
export declare class SacFormDirective extends SacFormCommon {
|
|
17
|
-
/**
|
|
18
|
-
* Konstruktor
|
|
19
|
-
* @param form Instanz von NgForm für eigene automatische Formular Logik
|
|
20
|
-
*/
|
|
21
|
-
constructor(form: NgForm);
|
|
22
17
|
/**
|
|
23
18
|
* Setzt die Standard CSS Klasse für auf dem Form Container
|
|
24
19
|
*/
|
|
25
20
|
cssClassForm: boolean;
|
|
26
21
|
/**
|
|
27
|
-
*
|
|
28
|
-
|
|
29
|
-
get orientientationHorizontal(): boolean;
|
|
30
|
-
/**
|
|
31
|
-
* Setzt die CSS Klasse 'form-vertical' wenn die Orientation auf Vertical eingestellt ist
|
|
22
|
+
* Konstruktor
|
|
23
|
+
* @param form Instanz von NgForm für eigene automatische Formular Logik
|
|
32
24
|
*/
|
|
33
|
-
|
|
25
|
+
constructor(form: NgForm);
|
|
34
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacFormDirective, never>;
|
|
35
27
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SacFormDirective, "form:not([ngNoForm]):not([formGroup]),[ngForm]", ["sacform"], {}, {}, never, never, true, never>;
|
|
36
28
|
}
|
|
@@ -1,16 +1,6 @@
|
|
|
1
|
-
import { SacFormDirective } from './form';
|
|
2
1
|
import { NgForm } from '@angular/forms';
|
|
2
|
+
import { SacFormDirective } from './form';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
/**
|
|
5
|
-
* Factory Methode für SacForm
|
|
6
|
-
* @param form SacFormular
|
|
7
|
-
*/
|
|
8
|
-
export declare function SACFORM_FACTORY(form: SacFormDirective): SacFormDirective;
|
|
9
|
-
/**
|
|
10
|
-
* Factory Methode für NgForm
|
|
11
|
-
* @param form NgForm
|
|
12
|
-
*/
|
|
13
|
-
export declare function NGFORM_FACTORY(form: NgForm): NgForm;
|
|
14
4
|
/**
|
|
15
5
|
* Directive zum erben eines NgForm/NgFormular einer übergeordneten Komponente
|
|
16
6
|
*
|
|
@@ -48,3 +38,13 @@ export declare class SacInheritFormDirective {
|
|
|
48
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInheritFormDirective, never>;
|
|
49
39
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SacInheritFormDirective, "[sacInheritForm]", never, {}, {}, never, never, true, never>;
|
|
50
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* Factory Methode für NgForm
|
|
43
|
+
* @param form NgForm
|
|
44
|
+
*/
|
|
45
|
+
export declare function NGFORM_FACTORY(form: NgForm): NgForm;
|
|
46
|
+
/**
|
|
47
|
+
* Factory Methode für SacForm
|
|
48
|
+
* @param form SacFormular
|
|
49
|
+
*/
|
|
50
|
+
export declare function SACFORM_FACTORY(form: SacFormDirective): SacFormDirective;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacInputCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Input Komponente
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacInputComponent extends SacInputCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputComponent, "sac-input", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacInputAreaCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Input Box für lange Texte
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacInputAreaComponent extends SacInputAreaCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputAreaComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputAreaComponent, "sac-inputarea", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacInputCurrencyCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Input Control für Währungen
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacInputCurrencyComponent extends SacInputCurrencyCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputCurrencyComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputCurrencyComponent, "sac-inputcurrency", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacInputDecimalCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Input Komponente für Zahlen
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacInputDecimalComponent extends SacInputDecimalCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputDecimalComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputDecimalComponent, "sac-inputdecimal", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacInputEmailCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Input Box für E-Mail Adressen
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacInputEmailComponent extends SacInputEmailCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputEmailComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputEmailComponent, "sac-inputemail", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacInputIntegerCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Input Komponten für Ganzzahlen
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacInputIntegerComponent extends SacInputIntegerCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputIntegerComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputIntegerComponent, "sac-inputinteger", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacInputPasswordCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Input Box für Passwörter
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacInputPasswordComponent extends SacInputPasswordCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputPasswordComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputPasswordComponent, "sac-inputpassword", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { SacInputSearchCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Input Box für Suche
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacInputSearchComponent extends SacInputSearchCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputSearchComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputSearchComponent, "sac-inputsearch", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { SacFormLayoutCommon } from '@simpleangularcontrols/sac-common';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SacFormLayoutDirective extends SacFormLayoutCommon {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacFormLayoutDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SacFormLayoutDirective, "[sacFormLayout]", never, {}, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./formlayout.directive";
|
|
4
|
+
import * as i3 from "./tocontrolwidthcss.pipe";
|
|
5
|
+
import * as i4 from "./tolabelwidthcss.pipe";
|
|
6
|
+
export declare class SACBootstrap5LayoutModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5LayoutModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5LayoutModule, never, [typeof i1.CommonModule, typeof i2.SacFormLayoutDirective, typeof i3.SacToControlWidthCssPipe, typeof i4.SacToLabelWidthCssPipe], [typeof i2.SacFormLayoutDirective, typeof i3.SacToControlWidthCssPipe, typeof i4.SacToLabelWidthCssPipe]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5LayoutModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { ISacLabelSizes } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SacToControlWidthCssPipe implements PipeTransform {
|
|
5
|
+
/**
|
|
6
|
+
* Get CSS classes from label width configuration to set control size
|
|
7
|
+
* @param value Configuration with grid columns for different viewports
|
|
8
|
+
* @returns string with css classe for bootstrap3
|
|
9
|
+
*/
|
|
10
|
+
transform(value: ISacLabelSizes): string;
|
|
11
|
+
/**
|
|
12
|
+
* calculate the control size
|
|
13
|
+
* @param labelsize grid size of label
|
|
14
|
+
* @returns grid size for control. should be between 1 and 12
|
|
15
|
+
*/
|
|
16
|
+
private calcControlSize;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacToControlWidthCssPipe, never>;
|
|
18
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SacToControlWidthCssPipe, "toControlWidthCss", true>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { ISacLabelSizes } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SacToLabelWidthCssPipe implements PipeTransform {
|
|
5
|
+
/**
|
|
6
|
+
* Get CSS classes from label width configuration to set label size
|
|
7
|
+
* @param value Configuration with grid columns for different viewports
|
|
8
|
+
* @returns string with css classe for bootstrap3
|
|
9
|
+
*/
|
|
10
|
+
transform(value: ISacLabelSizes): string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacToLabelWidthCssPipe, never>;
|
|
12
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SacToLabelWidthCssPipe, "toLabelWidthCss", true>;
|
|
13
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { ElementRef, Injector, Renderer2 } from '@angular/core';
|
|
2
2
|
import { SacDropdownCommon, SacDropdownOptionCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Dropdown Komponente
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacDropdownComponent extends SacDropdownCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
13
|
-
* @param
|
|
14
|
-
* @param
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
|
+
* @param renderer Angular rendering engine
|
|
14
|
+
* @param elementRef Reference to html dom element
|
|
15
15
|
*/
|
|
16
|
-
constructor(
|
|
16
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector, renderer: Renderer2, elementRef: ElementRef);
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacDropdownComponent, [{ optional: true; host: true; }, null, null, null]>;
|
|
18
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacDropdownComponent, "sac-dropdown", never, {}, {}, never, ["*"], true, never>;
|
|
19
19
|
}
|
|
@@ -23,11 +23,11 @@ export declare class SacDropdownComponent extends SacDropdownCommon {
|
|
|
23
23
|
export declare class SacDropdownOptionDirective extends SacDropdownOptionCommon {
|
|
24
24
|
/**
|
|
25
25
|
* Konstruktor
|
|
26
|
-
* @param
|
|
27
|
-
* @param
|
|
26
|
+
* @param elementRef Referenz auf HTML DOM Element
|
|
27
|
+
* @param renderer Angular Rendering Engine
|
|
28
28
|
* @param dropdownList Referenz auf DropDown Komponente
|
|
29
29
|
*/
|
|
30
|
-
constructor(
|
|
30
|
+
constructor(elementRef: ElementRef, renderer: Renderer2, dropdownList: SacDropdownComponent);
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacDropdownOptionDirective, [null, null, { optional: true; host: true; }]>;
|
|
32
32
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SacDropdownOptionDirective, "[sacOption],option", never, {}, {}, never, never, true, never>;
|
|
33
33
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { ElementRef, Injector, Renderer2 } from '@angular/core';
|
|
2
2
|
import { SacListboxCommon, SacListboxOptionCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Listbox Komponente
|
|
7
7
|
*/
|
|
8
8
|
export declare class SacListboxComponent extends SacListboxCommon {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
* @param
|
|
12
|
-
* @param injector
|
|
10
|
+
* Constructor
|
|
11
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
12
|
+
* @param injector Injector for injecting services
|
|
13
13
|
*/
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacListboxComponent, [{ optional: true; host: true; }, null]>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacListboxComponent, "sac-listbox", never, {}, {}, never, ["*"], true, never>;
|
|
17
17
|
}
|
|
@@ -21,11 +21,11 @@ export declare class SacListboxComponent extends SacListboxCommon {
|
|
|
21
21
|
export declare class SacListboxOptionDirective extends SacListboxOptionCommon {
|
|
22
22
|
/**
|
|
23
23
|
* Konstruktor
|
|
24
|
-
* @param
|
|
25
|
-
* @param
|
|
24
|
+
* @param elementRef Referenz auf DOM Element
|
|
25
|
+
* @param renderer Angular Rendering Engine
|
|
26
26
|
* @param listbox Referenz auf Listbox Komponente
|
|
27
27
|
*/
|
|
28
|
-
constructor(
|
|
28
|
+
constructor(elementRef: ElementRef, renderer: Renderer2, listbox: SacListboxComponent);
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacListboxOptionDirective, [null, null, { optional: true; host: true; }]>;
|
|
30
30
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SacListboxOptionDirective, "[sacOption],option", never, {}, {}, never, never, true, never>;
|
|
31
31
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { IconType, SacMultilanguageInputCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
-
import {
|
|
3
|
+
import { SacFormLayoutDirective } from '../layout/formlayout.directive';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Componente für Mehrsprache Texte
|
|
@@ -11,11 +11,11 @@ export declare class SacMultilanguageInputComponent extends SacMultilanguageInpu
|
|
|
11
11
|
*/
|
|
12
12
|
IconType: typeof IconType;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
15
|
-
* @param
|
|
16
|
-
* @param injector
|
|
14
|
+
* Constructor
|
|
15
|
+
* @param formLayout SacFormLayout to define scoped layout settings
|
|
16
|
+
* @param injector Injector for injecting services
|
|
17
17
|
*/
|
|
18
|
-
constructor(
|
|
18
|
+
constructor(formLayout: SacFormLayoutDirective, injector: Injector);
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguageInputComponent, [{ optional: true; host: true; }, null]>;
|
|
20
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<SacMultilanguageInputComponent, "sac-multilanguageinput", never, {}, {}, never, never, true, never>;
|
|
21
21
|
}
|