@simpleangularcontrols/sac-bootstrap5 16.0.0-rc.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.
- package/README.md +24 -0
- package/components/browser/browser.d.ts +48 -0
- package/components/browser/browser.module.d.ts +7 -0
- package/controls/buttons/button.d.ts +11 -0
- package/controls/buttons/button.module.d.ts +8 -0
- package/controls/checkbox/checkbox.d.ts +17 -0
- package/controls/checkbox/checkbox.module.d.ts +10 -0
- package/controls/checkbox/radiobutton.d.ts +15 -0
- package/controls/checkbox/radiobuttons.d.ts +17 -0
- package/controls/confirm/confirm.d.ts +9 -0
- package/controls/confirm/confirm.module.d.ts +16 -0
- package/controls/confirm/confirm.service.d.ts +57 -0
- package/controls/contextmenu/contextmenu.d.ts +19 -0
- package/controls/contextmenu/contextmenu.module.d.ts +12 -0
- package/controls/contextmenu/contextmenuanchor.d.ts +15 -0
- package/controls/contextmenu/contextmenucontainer.d.ts +15 -0
- package/controls/contextmenu/contextmenuitembutton.d.ts +14 -0
- package/controls/contextmenu/contextmenuitemsplitter.d.ts +9 -0
- package/controls/contextmenu/index.d.ts +1 -0
- package/controls/datetime/date.d.ts +18 -0
- package/controls/datetime/dateselector.d.ts +9 -0
- package/controls/datetime/datetime.d.ts +18 -0
- package/controls/datetime/datetime.module.d.ts +12 -0
- package/controls/datetime/time.d.ts +18 -0
- package/controls/dialog/dialog.d.ts +28 -0
- package/controls/dialog/dialog.module.d.ts +8 -0
- package/controls/form/form.d.ts +36 -0
- package/controls/form/form.module.d.ts +10 -0
- package/controls/form/inheritform.directive.d.ts +50 -0
- package/controls/grid/grid.d.ts +23 -0
- package/controls/grid/grid.module.d.ts +14 -0
- package/controls/grid/gridbutton.d.ts +22 -0
- package/controls/grid/gridcolumn.d.ts +17 -0
- package/controls/grid/gridcolumnaction.d.ts +17 -0
- package/controls/grid/gridimage.d.ts +14 -0
- package/controls/grid/paging.d.ts +15 -0
- package/controls/input/input.d.ts +17 -0
- package/controls/input/input.module.d.ts +15 -0
- package/controls/input/inputarea.d.ts +17 -0
- package/controls/input/inputcurrency.d.ts +17 -0
- package/controls/input/inputdecimal.d.ts +17 -0
- package/controls/input/inputemail.d.ts +17 -0
- package/controls/input/inputinteger.d.ts +17 -0
- package/controls/input/inputpassword.d.ts +17 -0
- package/controls/input/inputsearch.d.ts +17 -0
- package/controls/list/dropdown.d.ts +33 -0
- package/controls/list/dropdown.module.d.ts +8 -0
- package/controls/list/list.module.d.ts +8 -0
- package/controls/list/listbox.d.ts +31 -0
- package/controls/multilanguage/multilanguage.module.d.ts +13 -0
- package/controls/multilanguage/multilanguageinput.d.ts +21 -0
- package/controls/multilanguage/multilanguageinputarea.d.ts +21 -0
- package/controls/multilanguage/multilanguagemenu.d.ts +23 -0
- package/controls/multilanguage/multilanguagemenuanchor.d.ts +15 -0
- package/controls/multilanguage/multilanguagemenucontainer.d.ts +15 -0
- package/controls/multilanguage/multilanguagemenuitembutton.d.ts +14 -0
- package/controls/static/formcontainer.d.ts +28 -0
- package/controls/static/staticlabel.d.ts +17 -0
- package/controls/static/staticlabel.module.d.ts +9 -0
- package/controls/tabs/tab.d.ts +20 -0
- package/controls/tabs/tabitem.d.ts +9 -0
- package/controls/tabs/tabs.module.d.ts +9 -0
- package/controls/tinymce/tinymce.d.ts +23 -0
- package/controls/tinymce/tinymce.module.d.ts +7 -0
- package/controls/upload/dropzonemultiple.d.ts +24 -0
- package/controls/upload/dropzonesingle.d.ts +24 -0
- package/controls/upload/upload.d.ts +20 -0
- package/controls/upload/upload.module.d.ts +12 -0
- package/controls/upload/uploadmultiple.d.ts +20 -0
- package/controls/validation/validationsummary.d.ts +17 -0
- package/controls/validation/validationsummary.module.d.ts +8 -0
- package/controls/wizard/wizard.d.ts +20 -0
- package/controls/wizard/wizard.module.d.ts +9 -0
- package/controls/wizard/wizarditem.d.ts +9 -0
- package/esm2022/components/browser/browser.mjs +121 -0
- package/esm2022/components/browser/browser.module.mjs +18 -0
- package/esm2022/controls/buttons/button.mjs +19 -0
- package/esm2022/controls/buttons/button.module.mjs +22 -0
- package/esm2022/controls/checkbox/checkbox.mjs +59 -0
- package/esm2022/controls/checkbox/checkbox.module.mjs +24 -0
- package/esm2022/controls/checkbox/radiobutton.mjs +27 -0
- package/esm2022/controls/checkbox/radiobuttons.mjs +58 -0
- package/esm2022/controls/confirm/confirm.mjs +24 -0
- package/esm2022/controls/confirm/confirm.module.mjs +31 -0
- package/esm2022/controls/confirm/confirm.service.mjs +89 -0
- package/esm2022/controls/contextmenu/contextmenu.mjs +48 -0
- package/esm2022/controls/contextmenu/contextmenu.module.mjs +38 -0
- package/esm2022/controls/contextmenu/contextmenuanchor.mjs +37 -0
- package/esm2022/controls/contextmenu/contextmenucontainer.mjs +37 -0
- package/esm2022/controls/contextmenu/contextmenuitembutton.mjs +25 -0
- package/esm2022/controls/contextmenu/contextmenuitemsplitter.mjs +16 -0
- package/esm2022/controls/contextmenu/index.mjs +2 -0
- package/esm2022/controls/datetime/date.mjs +72 -0
- package/esm2022/controls/datetime/dateselector.mjs +22 -0
- package/esm2022/controls/datetime/datetime.mjs +66 -0
- package/esm2022/controls/datetime/datetime.module.mjs +26 -0
- package/esm2022/controls/datetime/time.mjs +66 -0
- package/esm2022/controls/dialog/dialog.mjs +43 -0
- package/esm2022/controls/dialog/dialog.module.mjs +22 -0
- package/esm2022/controls/form/form.mjs +58 -0
- package/esm2022/controls/form/form.module.mjs +29 -0
- package/esm2022/controls/form/inheritform.directive.mjs +87 -0
- package/esm2022/controls/grid/grid.mjs +52 -0
- package/esm2022/controls/grid/grid.module.mjs +29 -0
- package/esm2022/controls/grid/gridbutton.mjs +49 -0
- package/esm2022/controls/grid/gridcolumn.mjs +36 -0
- package/esm2022/controls/grid/gridcolumnaction.mjs +37 -0
- package/esm2022/controls/grid/gridimage.mjs +30 -0
- package/esm2022/controls/grid/paging.mjs +46 -0
- package/esm2022/controls/input/input.mjs +46 -0
- package/esm2022/controls/input/input.module.mjs +29 -0
- package/esm2022/controls/input/inputarea.mjs +58 -0
- package/esm2022/controls/input/inputcurrency.mjs +58 -0
- package/esm2022/controls/input/inputdecimal.mjs +58 -0
- package/esm2022/controls/input/inputemail.mjs +58 -0
- package/esm2022/controls/input/inputinteger.mjs +58 -0
- package/esm2022/controls/input/inputpassword.mjs +58 -0
- package/esm2022/controls/input/inputsearch.mjs +53 -0
- package/esm2022/controls/list/dropdown.mjs +90 -0
- package/esm2022/controls/list/dropdown.module.mjs +24 -0
- package/esm2022/controls/list/list.module.mjs +18 -0
- package/esm2022/controls/list/listbox.mjs +91 -0
- package/esm2022/controls/multilanguage/multilanguage.module.mjs +33 -0
- package/esm2022/controls/multilanguage/multilanguageinput.mjs +72 -0
- package/esm2022/controls/multilanguage/multilanguageinputarea.mjs +72 -0
- package/esm2022/controls/multilanguage/multilanguagemenu.mjs +49 -0
- package/esm2022/controls/multilanguage/multilanguagemenuanchor.mjs +37 -0
- package/esm2022/controls/multilanguage/multilanguagemenucontainer.mjs +37 -0
- package/esm2022/controls/multilanguage/multilanguagemenuitembutton.mjs +25 -0
- package/esm2022/controls/static/formcontainer.mjs +68 -0
- package/esm2022/controls/static/staticlabel.mjs +53 -0
- package/esm2022/controls/static/staticlabel.module.mjs +23 -0
- package/esm2022/controls/tabs/tab.mjs +32 -0
- package/esm2022/controls/tabs/tabitem.mjs +17 -0
- package/esm2022/controls/tabs/tabs.module.mjs +23 -0
- package/esm2022/controls/tinymce/tinymce.mjs +76 -0
- package/esm2022/controls/tinymce/tinymce.module.mjs +17 -0
- package/esm2022/controls/upload/dropzonemultiple.mjs +66 -0
- package/esm2022/controls/upload/dropzonesingle.mjs +66 -0
- package/esm2022/controls/upload/upload.mjs +52 -0
- package/esm2022/controls/upload/upload.module.mjs +36 -0
- package/esm2022/controls/upload/uploadmultiple.mjs +61 -0
- package/esm2022/controls/validation/validationsummary.mjs +52 -0
- package/esm2022/controls/validation/validationsummary.module.mjs +22 -0
- package/esm2022/controls/wizard/wizard.mjs +37 -0
- package/esm2022/controls/wizard/wizard.module.mjs +23 -0
- package/esm2022/controls/wizard/wizarditem.mjs +16 -0
- package/esm2022/public-api.mjs +73 -0
- package/esm2022/simpleangularcontrols-sac-bootstrap5.mjs +5 -0
- package/fesm2022/simpleangularcontrols-sac-bootstrap5.mjs +2743 -0
- package/fesm2022/simpleangularcontrols-sac-bootstrap5.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/package.json +37 -0
- package/public-api.d.ts +67 -0
- package/simpleangularcontrols-sac-bootstrap5-16.0.0-rc.1.tgz +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, Injector } from '@angular/core';
|
|
2
|
+
import { SacGridColumnCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacGridComponent } from './grid';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Grid Column Komponente
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacGridColumnComponent extends SacGridColumnCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param grid Grid Referenz
|
|
12
|
+
* @param el HTML DOM Element
|
|
13
|
+
*/
|
|
14
|
+
constructor(grid: SacGridComponent, injector: Injector, el: ElementRef);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacGridColumnComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacGridColumnComponent, "sac-gridcolumn", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, Injector } from '@angular/core';
|
|
2
|
+
import { SacGridColumnActionCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacGridComponent } from './grid';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Grid Action Komponent
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacGridColumnActionComponent extends SacGridColumnActionCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param grid Referenz auf Grid
|
|
12
|
+
* @param el HTML Element Referenz
|
|
13
|
+
*/
|
|
14
|
+
constructor(grid: SacGridComponent, injector: Injector, el: ElementRef);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacGridColumnActionComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacGridColumnActionComponent, "sac-gridcolumnaction", never, {}, {}, never, ["*"], true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SacGridImageCommon } from '@simpleangularcontrols/sac-common';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Image Item für Grid
|
|
5
|
+
*/
|
|
6
|
+
export declare class SacGridImageComponent extends SacGridImageCommon {
|
|
7
|
+
/**
|
|
8
|
+
* Gibt die CSS Klassen für Sprite Images zurück
|
|
9
|
+
* @returns CSS Klasse
|
|
10
|
+
*/
|
|
11
|
+
getIconClass(): string;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacGridImageComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacGridImageComponent, "sac-gridimage", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacPagingCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Paging Komponente
|
|
6
|
+
*/
|
|
7
|
+
export declare class SacPagingComponent extends SacPagingCommon {
|
|
8
|
+
/**
|
|
9
|
+
* Konstruktor
|
|
10
|
+
* @param injector Angular Dependency Injection Service
|
|
11
|
+
*/
|
|
12
|
+
constructor(injector: Injector);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacPagingComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacPagingComponent, "sac-paging", never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacInputCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Input Komponente
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacInputComponent extends SacInputCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputComponent, "sac-input", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./input";
|
|
4
|
+
import * as i3 from "./inputarea";
|
|
5
|
+
import * as i4 from "./inputcurrency";
|
|
6
|
+
import * as i5 from "./inputdecimal";
|
|
7
|
+
import * as i6 from "./inputemail";
|
|
8
|
+
import * as i7 from "./inputinteger";
|
|
9
|
+
import * as i8 from "./inputpassword";
|
|
10
|
+
import * as i9 from "./inputsearch";
|
|
11
|
+
export declare class SACBootstrap5InputModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5InputModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5InputModule, never, [typeof i1.CommonModule, typeof i2.SacInputComponent, typeof i3.SacInputAreaComponent, typeof i4.SacInputCurrencyComponent, typeof i5.SacInputDecimalComponent, typeof i6.SacInputEmailComponent, typeof i7.SacInputIntegerComponent, typeof i8.SacInputPasswordComponent, typeof i9.SacInputSearchComponent], [typeof i2.SacInputComponent, typeof i3.SacInputAreaComponent, typeof i4.SacInputCurrencyComponent, typeof i5.SacInputDecimalComponent, typeof i6.SacInputEmailComponent, typeof i7.SacInputIntegerComponent, typeof i8.SacInputPasswordComponent, typeof i9.SacInputSearchComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5InputModule>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacInputAreaCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Input Box für lange Texte
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacInputAreaComponent extends SacInputAreaCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputAreaComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputAreaComponent, "sac-inputarea", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacInputCurrencyCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Input Control für Währungen
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacInputCurrencyComponent extends SacInputCurrencyCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputCurrencyComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputCurrencyComponent, "sac-inputcurrency", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacInputDecimalCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Input Komponente für Zahlen
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacInputDecimalComponent extends SacInputDecimalCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputDecimalComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputDecimalComponent, "sac-inputdecimal", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacInputEmailCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Input Box für E-Mail Adressen
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacInputEmailComponent extends SacInputEmailCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputEmailComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputEmailComponent, "sac-inputemail", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacInputIntegerCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Input Komponten für Ganzzahlen
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacInputIntegerComponent extends SacInputIntegerCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputIntegerComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputIntegerComponent, "sac-inputinteger", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacInputPasswordCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Input Box für Passwörter
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacInputPasswordComponent extends SacInputPasswordCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputPasswordComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputPasswordComponent, "sac-inputpassword", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacInputSearchCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Input Box für Suche
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacInputSearchComponent extends SacInputSearchCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacInputSearchComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacInputSearchComponent, "sac-inputsearch", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ElementRef, Injector, Renderer2 } from '@angular/core';
|
|
2
|
+
import { SacDropdownCommon, SacDropdownOptionCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Dropdown Komponente
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacDropdownComponent extends SacDropdownCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Dependency Injection Service
|
|
13
|
+
* @param _renderer Angular Rendering Engine
|
|
14
|
+
* @param _elementRef Referenz auf HTML DOM Element
|
|
15
|
+
*/
|
|
16
|
+
constructor(parent: SacFormDirective, injector: Injector, _renderer: Renderer2, _elementRef: ElementRef);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacDropdownComponent, [{ optional: true; host: true; }, null, null, null]>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacDropdownComponent, "sac-dropdown", never, {}, {}, never, ["*"], true, never>;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Direktive für Dropdown Option List
|
|
22
|
+
*/
|
|
23
|
+
export declare class SacDropdownOptionDirective extends SacDropdownOptionCommon {
|
|
24
|
+
/**
|
|
25
|
+
* Konstruktor
|
|
26
|
+
* @param _elementRef Referenz auf HTML DOM Element
|
|
27
|
+
* @param _renderer Angular Rendering Engine
|
|
28
|
+
* @param dropdownList Referenz auf DropDown Komponente
|
|
29
|
+
*/
|
|
30
|
+
constructor(_elementRef: ElementRef, _renderer: Renderer2, dropdownList: SacDropdownComponent);
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacDropdownOptionDirective, [null, null, { optional: true; host: true; }]>;
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SacDropdownOptionDirective, "[sacOption],option", never, {}, {}, never, never, true, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./dropdown";
|
|
4
|
+
export declare class SACBootstrap5DropdownModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5DropdownModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5DropdownModule, never, [typeof i1.CommonModule, typeof i2.SacDropdownComponent, typeof i2.SacDropdownOptionDirective], [typeof i2.SacDropdownComponent, typeof i2.SacDropdownOptionDirective]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5DropdownModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./listbox";
|
|
4
|
+
export declare class SACBootstrap5ListModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5ListModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5ListModule, never, [typeof i1.CommonModule, typeof i2.SacListboxComponent, typeof i2.SacListboxOptionDirective], [typeof i2.SacListboxComponent, typeof i2.SacListboxOptionDirective]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5ListModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Injector, Renderer2, ElementRef } from '@angular/core';
|
|
2
|
+
import { SacFormDirective } from '../form/form';
|
|
3
|
+
import { SacListboxCommon, SacListboxOptionCommon } from '@simpleangularcontrols/sac-common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Listbox Komponente
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacListboxComponent extends SacListboxCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependiency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacListboxComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacListboxComponent, "sac-listbox", never, {}, {}, never, ["*"], true, never>;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Option Item in Listbox
|
|
20
|
+
*/
|
|
21
|
+
export declare class SacListboxOptionDirective extends SacListboxOptionCommon {
|
|
22
|
+
/**
|
|
23
|
+
* Konstruktor
|
|
24
|
+
* @param _elementRef Referenz auf DOM Element
|
|
25
|
+
* @param _renderer Angular Rendering Engine
|
|
26
|
+
* @param listbox Referenz auf Listbox Komponente
|
|
27
|
+
*/
|
|
28
|
+
constructor(_elementRef: ElementRef, _renderer: Renderer2, listbox: SacListboxComponent);
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacListboxOptionDirective, [null, null, { optional: true; host: true; }]>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SacListboxOptionDirective, "[sacOption],option", never, {}, {}, never, never, true, never>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./multilanguageinput";
|
|
4
|
+
import * as i3 from "./multilanguageinputarea";
|
|
5
|
+
import * as i4 from "./multilanguagemenu";
|
|
6
|
+
import * as i5 from "./multilanguagemenuanchor";
|
|
7
|
+
import * as i6 from "./multilanguagemenucontainer";
|
|
8
|
+
import * as i7 from "./multilanguagemenuitembutton";
|
|
9
|
+
export declare class SACBootstrap5MultilanguageModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5MultilanguageModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5MultilanguageModule, never, [typeof i1.CommonModule, typeof i2.SacMultilanguageInputComponent, typeof i3.SacMultilanguageInputAreaComponent, typeof i4.SacMultilanguagemenuComponent, typeof i5.SacMultilanguagemenuAnchorDirective, typeof i6.SacMultilanguagemenuContainerDirective, typeof i7.SacMultilanguagemenuItemButtonComponent], [typeof i2.SacMultilanguageInputComponent, typeof i3.SacMultilanguageInputAreaComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5MultilanguageModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { IconType, SacMultilanguageInputCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Componente für Mehrsprache Texte
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacMultilanguageInputComponent extends SacMultilanguageInputCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Enum für IconType in HTML Template
|
|
11
|
+
*/
|
|
12
|
+
IconType: typeof IconType;
|
|
13
|
+
/**
|
|
14
|
+
* Konstruktor
|
|
15
|
+
* @param parent Formular Inject
|
|
16
|
+
* @param injector Default Injector
|
|
17
|
+
*/
|
|
18
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguageInputComponent, [{ optional: true; host: true; }, null]>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacMultilanguageInputComponent, "sac-multilanguageinput", never, {}, {}, never, never, true, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { IconType, SacMultilanguageInputAreaCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Componente für Mehrsprache Texte als mehrzeiliger Text
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacMultilanguageInputAreaComponent extends SacMultilanguageInputAreaCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Enum für IconType in HTML Template
|
|
11
|
+
*/
|
|
12
|
+
IconType: typeof IconType;
|
|
13
|
+
/**
|
|
14
|
+
* Konstruktor
|
|
15
|
+
* @param parent Formular Inject
|
|
16
|
+
* @param injector Default Injector
|
|
17
|
+
*/
|
|
18
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguageInputAreaComponent, [{ optional: true; host: true; }, null]>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacMultilanguageInputAreaComponent, "sac-multilanguageinputarea", never, {}, {}, never, never, true, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ElementRef, Injector, NgZone, Renderer2, TemplateRef } from '@angular/core';
|
|
2
|
+
import { SacContextmenuCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Component für Contextmenü
|
|
6
|
+
*/
|
|
7
|
+
export declare class SacMultilanguagemenuComponent extends SacContextmenuCommon {
|
|
8
|
+
/**
|
|
9
|
+
* Constructor
|
|
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 in base component
|
|
15
|
+
*/
|
|
16
|
+
constructor(_document: any, _ngZone: NgZone, _elementRef: ElementRef<HTMLElement>, _renderer: Renderer2, _injector: Injector);
|
|
17
|
+
/**
|
|
18
|
+
* template with input box for multilangauge component
|
|
19
|
+
*/
|
|
20
|
+
inputtemplate: TemplateRef<any>;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguagemenuComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacMultilanguagemenuComponent, "[sac-multilanguagemenu]", never, { "inputtemplate": { "alias": "inputtemplate"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { SacContextmenuAnchorCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Anker Komponente für Context Menü. Wird zum positionieren des Context Menü in der Page benötigt.
|
|
6
|
+
*/
|
|
7
|
+
export declare class SacMultilanguagemenuAnchorDirective extends SacContextmenuAnchorCommon {
|
|
8
|
+
/**
|
|
9
|
+
* Konstruktor
|
|
10
|
+
* @param _elementRef HTML DOM Referenz
|
|
11
|
+
*/
|
|
12
|
+
constructor(_elementRef: ElementRef<HTMLElement>);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguagemenuAnchorDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SacMultilanguagemenuAnchorDirective, "[sacMultilanguageMenuAnchor]", never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { SacContextMenuContrainerCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Marker Komponente für Context Menü
|
|
6
|
+
*/
|
|
7
|
+
export declare class SacMultilanguagemenuContainerDirective extends SacContextMenuContrainerCommon {
|
|
8
|
+
/**
|
|
9
|
+
* Konstruktor
|
|
10
|
+
* @param _elementRef Referenz auf DOM Element
|
|
11
|
+
*/
|
|
12
|
+
constructor(_elementRef: ElementRef<HTMLElement>);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguagemenuContainerDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SacMultilanguagemenuContainerDirective, "[sacMultilanguageMenuContainer]", never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SacContextmenuCommon, SacContextmenuItemButtonCommon } from '@simpleangularcontrols/sac-common';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Component für Menü Eintrag in Context Menü
|
|
5
|
+
*/
|
|
6
|
+
export declare class SacMultilanguagemenuItemButtonComponent extends SacContextmenuItemButtonCommon {
|
|
7
|
+
/**
|
|
8
|
+
* Constructor
|
|
9
|
+
* @param contextmenu Instance von Context Menü
|
|
10
|
+
*/
|
|
11
|
+
constructor(contextmenu: SacContextmenuCommon);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguagemenuItemButtonComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacMultilanguagemenuItemButtonComponent, "sac-multilanguagemenubutton", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacFormDirective } from '../form/form';
|
|
3
|
+
import { SacStaticFormContainerCommon } from '@simpleangularcontrols/sac-common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Component für einbindung eines beliebigen Controls in die Form Struktur
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* <ngStaticFormContainer name='myformcontainer' label="My Custom Form Control" [isrequired]='false'>
|
|
10
|
+
* <input type="range" class="form-control form-control-sm" />
|
|
11
|
+
* </ngStaticFormContainer>
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* <ngStaticFormContainer name='myformcintainer' label="My Custom Form Control" [isrequired]='false' tooltiptext="Dies ist ein Tooltip Text">
|
|
15
|
+
* <input type="range" class="form-control form-control-sm" />
|
|
16
|
+
* </ngStaticFormContainer>
|
|
17
|
+
*
|
|
18
|
+
**/
|
|
19
|
+
export declare class SacStaticFormContainerComponent extends SacStaticFormContainerCommon {
|
|
20
|
+
/**
|
|
21
|
+
* Konsturktor
|
|
22
|
+
* @param parent Parent SacFormular Instanz
|
|
23
|
+
* @param injector Injector Instanz
|
|
24
|
+
*/
|
|
25
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacStaticFormContainerComponent, [{ optional: true; host: true; }, null]>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacStaticFormContainerComponent, "sac-staticformcontainer", never, {}, {}, never, ["*"], true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { SacStaticLabelCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Komponente für statischen Text in einem Formular
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacStaticLabelComponent extends SacStaticLabelCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
*/
|
|
14
|
+
constructor(parent: SacFormDirective, injector: Injector);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacStaticLabelComponent, [{ optional: true; host: true; }, null]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacStaticLabelComponent, "sac-staticlabel", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./staticlabel";
|
|
4
|
+
import * as i3 from "./formcontainer";
|
|
5
|
+
export declare class SACBootstrap5StaticLabelModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5StaticLabelModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5StaticLabelModule, never, [typeof i1.CommonModule, typeof i2.SacStaticLabelComponent, typeof i3.SacStaticFormContainerComponent], [typeof i2.SacStaticLabelComponent, typeof i3.SacStaticFormContainerComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5StaticLabelModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { QueryList } from '@angular/core';
|
|
2
|
+
import { SacTabCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacTabItemComponent } from './tabitem';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Komponente für Tabs
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacTabComponent extends SacTabCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Collection von TabItems
|
|
11
|
+
*/
|
|
12
|
+
_tabItems: QueryList<SacTabItemComponent>;
|
|
13
|
+
/**
|
|
14
|
+
* Gibt die TabItems zurück
|
|
15
|
+
* @returns Array von TabItems
|
|
16
|
+
*/
|
|
17
|
+
tabItems(): SacTabItemComponent[];
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacTabComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacTabComponent, "sac-tab", never, {}, {}, ["_tabItems"], ["*"], true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SacTabItemCommon } from '@simpleangularcontrols/sac-common';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Tab Item Komponente
|
|
5
|
+
*/
|
|
6
|
+
export declare class SacTabItemComponent extends SacTabItemCommon {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacTabItemComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacTabItemComponent, "sac-tabitem", never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./tab";
|
|
4
|
+
import * as i3 from "./tabitem";
|
|
5
|
+
export declare class SACBootstrap5TabsModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5TabsModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5TabsModule, never, [typeof i1.CommonModule, typeof i2.SacTabComponent, typeof i3.SacTabItemComponent], [typeof i2.SacTabComponent, typeof i3.SacTabItemComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5TabsModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Injector, NgZone } from '@angular/core';
|
|
2
|
+
import { SacTinyMceCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* TinyMCE Komponente
|
|
7
|
+
*/
|
|
8
|
+
export declare class SacTinyMceComponent extends SacTinyMceCommon {
|
|
9
|
+
/**
|
|
10
|
+
* Konstruktor
|
|
11
|
+
* @param parent Formular
|
|
12
|
+
* @param injector Angular Dependency Injection Service
|
|
13
|
+
* @param ngZone ngZone
|
|
14
|
+
*/
|
|
15
|
+
constructor(parent: SacFormDirective, injector: Injector, ngZone: NgZone);
|
|
16
|
+
/**
|
|
17
|
+
* overwrite tinymce defaults
|
|
18
|
+
* @returns boostrap4 has no overwrites
|
|
19
|
+
*/
|
|
20
|
+
overwriteDefaultSettings(): {};
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacTinyMceComponent, [{ optional: true; host: true; }, null, null]>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacTinyMceComponent, "sac-tinymce", never, {}, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tinymce";
|
|
3
|
+
export declare class SACBootstrap5TinyMceModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5TinyMceModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5TinyMceModule, never, [typeof i1.SacTinyMceComponent], [typeof i1.SacTinyMceComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5TinyMceModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Injector, NgZone, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { SacDropzoneMultipleCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Dropzone Komponente für mehrere Uploads
|
|
7
|
+
* @see https://github.com/kukhariev/ngx-uploadx/
|
|
8
|
+
*/
|
|
9
|
+
export declare class SacDropzoneMultipleComponent extends SacDropzoneMultipleCommon implements OnInit {
|
|
10
|
+
/**
|
|
11
|
+
* Konstruktor
|
|
12
|
+
* @param parent Formular
|
|
13
|
+
* @param injector Angular Dependency Injection Service
|
|
14
|
+
* @param renderer Angular Rendering Engine
|
|
15
|
+
* @param ngZone ngZone
|
|
16
|
+
*/
|
|
17
|
+
constructor(parent: SacFormDirective, injector: Injector, renderer: Renderer2, ngZone: NgZone);
|
|
18
|
+
/**
|
|
19
|
+
* Initialisiert das Control
|
|
20
|
+
*/
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacDropzoneMultipleComponent, [{ optional: true; host: true; }, null, null, null]>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacDropzoneMultipleComponent, "sac-dropzonemultiple", never, {}, {}, never, ["*"], true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Injector, NgZone, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { SacDropzoneSingleCommon } from '@simpleangularcontrols/sac-common';
|
|
3
|
+
import { SacFormDirective } from '../form/form';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Dropzone Komponente für den Upload eines Files
|
|
7
|
+
* @see https://github.com/kukhariev/ngx-uploadx/
|
|
8
|
+
*/
|
|
9
|
+
export declare class SacDropzoneSingleComponent extends SacDropzoneSingleCommon implements OnInit {
|
|
10
|
+
/**
|
|
11
|
+
* Konstruktor
|
|
12
|
+
* @param parent Formular
|
|
13
|
+
* @param injector Angular Dependency Injection Service
|
|
14
|
+
* @param renderer Angular Rendering Engine
|
|
15
|
+
* @param ngZone ngZone
|
|
16
|
+
*/
|
|
17
|
+
constructor(parent: SacFormDirective, injector: Injector, renderer: Renderer2, ngZone: NgZone);
|
|
18
|
+
/**
|
|
19
|
+
* Initialisiert das Control
|
|
20
|
+
*/
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SacDropzoneSingleComponent, [{ optional: true; host: true; }, null, null, null]>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SacDropzoneSingleComponent, "sac-dropzonesingle", never, {}, {}, never, ["*"], true, never>;
|
|
24
|
+
}
|