@simpleangularcontrols/sac-bootstrap5 16.0.0-rc.2 → 16.0.0-rc.21

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 (148) hide show
  1. package/README.md +17 -17
  2. package/components/browser/browser.d.ts +6 -6
  3. package/controls/buttons/index.d.ts +1 -0
  4. package/controls/checkbox/checkbox.d.ts +5 -5
  5. package/controls/checkbox/radiobutton.d.ts +7 -3
  6. package/controls/checkbox/radiobuttons.d.ts +5 -5
  7. package/controls/confirm/confirm.service.d.ts +8 -8
  8. package/controls/contextmenu/contextmenu.d.ts +6 -6
  9. package/controls/contextmenu/contextmenuanchor.d.ts +2 -2
  10. package/controls/contextmenu/contextmenucontainer.d.ts +2 -2
  11. package/controls/contextmenu/contextmenuitembutton.d.ts +3 -4
  12. package/controls/datetime/date.d.ts +9 -8
  13. package/controls/datetime/datetime.d.ts +9 -8
  14. package/controls/datetime/time.d.ts +9 -8
  15. package/controls/dialog/dialog.d.ts +4 -4
  16. package/controls/dialog/index.d.ts +1 -0
  17. package/controls/form/form.d.ts +3 -11
  18. package/controls/form/inheritform.directive.d.ts +16 -39
  19. package/controls/grid/grid.d.ts +6 -6
  20. package/controls/grid/gridbutton.d.ts +5 -11
  21. package/controls/grid/gridimage.d.ts +0 -5
  22. package/controls/input/input.d.ts +5 -5
  23. package/controls/input/inputarea.d.ts +5 -5
  24. package/controls/input/inputcurrency.d.ts +5 -5
  25. package/controls/input/inputdecimal.d.ts +5 -5
  26. package/controls/input/inputemail.d.ts +5 -5
  27. package/controls/input/inputinteger.d.ts +5 -5
  28. package/controls/input/inputpassword.d.ts +5 -5
  29. package/controls/input/inputsearch.d.ts +5 -5
  30. package/controls/layout/formlayout.directive.d.ts +6 -0
  31. package/controls/layout/layout.module.d.ts +12 -0
  32. package/controls/layout/tocontrolheight.pipe.d.ts +12 -0
  33. package/controls/layout/tocontrolwidthcss.pipe.d.ts +19 -0
  34. package/controls/layout/tolabelheight.pipe.d.ts +12 -0
  35. package/controls/layout/tolabelwidthcss.pipe.d.ts +13 -0
  36. package/controls/list/dropdown.d.ts +19 -19
  37. package/controls/list/listbox.d.ts +17 -17
  38. package/controls/multilanguage/multilanguageinput.d.ts +5 -5
  39. package/controls/multilanguage/multilanguageinputarea.d.ts +5 -5
  40. package/controls/multilanguage/multilanguagemenu.d.ts +9 -9
  41. package/controls/multilanguage/multilanguagemenuanchor.d.ts +2 -2
  42. package/controls/multilanguage/multilanguagemenucontainer.d.ts +2 -2
  43. package/controls/multilanguage/multilanguagemenuitembutton.d.ts +3 -4
  44. package/controls/static/formcontainer.d.ts +7 -7
  45. package/controls/static/staticlabel.d.ts +5 -5
  46. package/controls/tabs/tab.d.ts +1 -1
  47. package/controls/tinymce/tinymce.d.ts +7 -7
  48. package/controls/tooltip/tooltip.d.ts +37 -0
  49. package/controls/tooltip/tooltip.module.d.ts +8 -0
  50. package/controls/treeview/treeview.d.ts +17 -0
  51. package/controls/treeview/treeview.module.d.ts +8 -0
  52. package/controls/upload/dropzonemultiple.d.ts +7 -7
  53. package/controls/upload/dropzonesingle.d.ts +7 -7
  54. package/controls/upload/upload.d.ts +7 -7
  55. package/controls/upload/uploadmultiple.d.ts +7 -7
  56. package/controls/validation/validationsummary.d.ts +5 -5
  57. package/esm2022/components/browser/browser.mjs +19 -15
  58. package/esm2022/components/browser/browser.module.mjs +1 -1
  59. package/esm2022/controls/buttons/button.mjs +5 -5
  60. package/esm2022/controls/buttons/button.module.mjs +5 -9
  61. package/esm2022/controls/buttons/index.mjs +2 -0
  62. package/esm2022/controls/checkbox/checkbox.mjs +27 -19
  63. package/esm2022/controls/checkbox/checkbox.module.mjs +1 -1
  64. package/esm2022/controls/checkbox/radiobutton.mjs +18 -9
  65. package/esm2022/controls/checkbox/radiobuttons.mjs +28 -20
  66. package/esm2022/controls/confirm/confirm.mjs +3 -3
  67. package/esm2022/controls/confirm/confirm.module.mjs +1 -1
  68. package/esm2022/controls/confirm/confirm.service.mjs +30 -15
  69. package/esm2022/controls/contextmenu/contextmenu.mjs +16 -24
  70. package/esm2022/controls/contextmenu/contextmenu.module.mjs +12 -8
  71. package/esm2022/controls/contextmenu/contextmenuanchor.mjs +5 -4
  72. package/esm2022/controls/contextmenu/contextmenucontainer.mjs +5 -4
  73. package/esm2022/controls/contextmenu/contextmenuitembutton.mjs +22 -13
  74. package/esm2022/controls/contextmenu/contextmenuitemsplitter.mjs +14 -4
  75. package/esm2022/controls/contextmenu/index.mjs +1 -1
  76. package/esm2022/controls/datetime/date.mjs +39 -18
  77. package/esm2022/controls/datetime/dateselector.mjs +5 -10
  78. package/esm2022/controls/datetime/datetime.mjs +36 -18
  79. package/esm2022/controls/datetime/datetime.module.mjs +1 -1
  80. package/esm2022/controls/datetime/time.mjs +36 -18
  81. package/esm2022/controls/dialog/dialog.mjs +16 -12
  82. package/esm2022/controls/dialog/dialog.module.mjs +1 -1
  83. package/esm2022/controls/dialog/index.mjs +2 -0
  84. package/esm2022/controls/form/form.mjs +6 -17
  85. package/esm2022/controls/form/form.module.mjs +1 -1
  86. package/esm2022/controls/form/inheritform.directive.mjs +46 -63
  87. package/esm2022/controls/grid/grid.mjs +14 -16
  88. package/esm2022/controls/grid/grid.module.mjs +2 -2
  89. package/esm2022/controls/grid/gridbutton.mjs +11 -35
  90. package/esm2022/controls/grid/gridcolumn.mjs +3 -3
  91. package/esm2022/controls/grid/gridcolumnaction.mjs +3 -3
  92. package/esm2022/controls/grid/gridimage.mjs +5 -17
  93. package/esm2022/controls/grid/paging.mjs +17 -14
  94. package/esm2022/controls/input/input.mjs +29 -14
  95. package/esm2022/controls/input/input.module.mjs +1 -1
  96. package/esm2022/controls/input/inputarea.mjs +30 -15
  97. package/esm2022/controls/input/inputcurrency.mjs +29 -14
  98. package/esm2022/controls/input/inputdecimal.mjs +30 -15
  99. package/esm2022/controls/input/inputemail.mjs +29 -14
  100. package/esm2022/controls/input/inputinteger.mjs +29 -14
  101. package/esm2022/controls/input/inputpassword.mjs +28 -14
  102. package/esm2022/controls/input/inputsearch.mjs +29 -14
  103. package/esm2022/controls/layout/formlayout.directive.mjs +16 -0
  104. package/esm2022/controls/layout/layout.module.mjs +44 -0
  105. package/esm2022/controls/layout/tocontrolheight.pipe.mjs +35 -0
  106. package/esm2022/controls/layout/tocontrolwidthcss.pipe.mjs +59 -0
  107. package/esm2022/controls/layout/tolabelheight.pipe.mjs +35 -0
  108. package/esm2022/controls/layout/tolabelwidthcss.pipe.mjs +43 -0
  109. package/esm2022/controls/list/dropdown.mjs +55 -44
  110. package/esm2022/controls/list/dropdown.module.mjs +1 -1
  111. package/esm2022/controls/list/list.module.mjs +1 -1
  112. package/esm2022/controls/list/listbox.mjs +54 -44
  113. package/esm2022/controls/multilanguage/multilanguage.module.mjs +1 -1
  114. package/esm2022/controls/multilanguage/multilanguageinput.mjs +30 -17
  115. package/esm2022/controls/multilanguage/multilanguageinputarea.mjs +30 -17
  116. package/esm2022/controls/multilanguage/multilanguagemenu.mjs +13 -11
  117. package/esm2022/controls/multilanguage/multilanguagemenuanchor.mjs +5 -4
  118. package/esm2022/controls/multilanguage/multilanguagemenucontainer.mjs +5 -4
  119. package/esm2022/controls/multilanguage/multilanguagemenuitembutton.mjs +21 -12
  120. package/esm2022/controls/static/formcontainer.mjs +29 -18
  121. package/esm2022/controls/static/staticlabel.mjs +29 -14
  122. package/esm2022/controls/static/staticlabel.module.mjs +1 -1
  123. package/esm2022/controls/tabs/tab.mjs +8 -10
  124. package/esm2022/controls/tabs/tabitem.mjs +3 -3
  125. package/esm2022/controls/tabs/tabs.module.mjs +1 -1
  126. package/esm2022/controls/tinymce/tinymce.mjs +34 -21
  127. package/esm2022/controls/tinymce/tinymce.module.mjs +1 -1
  128. package/esm2022/controls/tooltip/tooltip.mjs +51 -0
  129. package/esm2022/controls/tooltip/tooltip.module.mjs +18 -0
  130. package/esm2022/controls/treeview/treeview.mjs +71 -0
  131. package/esm2022/controls/treeview/treeview.module.mjs +18 -0
  132. package/esm2022/controls/upload/dropzonemultiple.mjs +34 -15
  133. package/esm2022/controls/upload/dropzonesingle.mjs +34 -15
  134. package/esm2022/controls/upload/upload.mjs +31 -15
  135. package/esm2022/controls/upload/upload.module.mjs +1 -1
  136. package/esm2022/controls/upload/uploadmultiple.mjs +32 -15
  137. package/esm2022/controls/validation/validationsummary.mjs +12 -19
  138. package/esm2022/controls/validation/validationsummary.module.mjs +1 -1
  139. package/esm2022/controls/wizard/wizard.mjs +3 -3
  140. package/esm2022/controls/wizard/wizard.module.mjs +1 -1
  141. package/esm2022/controls/wizard/wizarditem.mjs +1 -1
  142. package/esm2022/public-api.mjs +38 -26
  143. package/fesm2022/simpleangularcontrols-sac-bootstrap5.mjs +1226 -664
  144. package/fesm2022/simpleangularcontrols-sac-bootstrap5.mjs.map +1 -1
  145. package/package.json +37 -36
  146. package/public-api.d.ts +37 -25
  147. package/simpleangularcontrols-sac-bootstrap5-16.0.0-rc.21.tgz +0 -0
  148. package/simpleangularcontrols-sac-bootstrap5-16.0.0-rc.2.tgz +0 -0
@@ -1,17 +1,17 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector } from '@angular/core';
2
3
  import { SacInputEmailCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
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
- * Konstruktor
11
- * @param parent Formular
12
- * @param injector Angular Dependency Injection Service
10
+ * Constructor
11
+ * @param formLayout SacFormLayout to define scoped layout settings
12
+ * @param injector Injector for injecting services
13
13
  */
14
- constructor(parent: SacFormDirective, injector: Injector);
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
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector } from '@angular/core';
2
3
  import { SacInputIntegerCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
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
- * Konstruktor
11
- * @param parent Formular
12
- * @param injector Angular Dependency Injection Service
10
+ * Constructor
11
+ * @param formLayout SacFormLayout to define scoped layout settings
12
+ * @param injector Injector for injecting services
13
13
  */
14
- constructor(parent: SacFormDirective, injector: Injector);
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
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector } from '@angular/core';
2
3
  import { SacInputPasswordCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
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
- * Konstruktor
11
- * @param parent Formular
12
- * @param injector Angular Dependency Injection Service
10
+ * Constructor
11
+ * @param formLayout SacFormLayout to define scoped layout settings
12
+ * @param injector Injector for injecting services
13
13
  */
14
- constructor(parent: SacFormDirective, injector: Injector);
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
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector } from '@angular/core';
2
3
  import { SacInputSearchCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
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
- * Konstruktor
11
- * @param parent Formular
12
- * @param injector Angular Dependency Injection Service
10
+ * Constructor
11
+ * @param formLayout SacFormLayout to define scoped layout settings
12
+ * @param injector Injector for injecting services
13
13
  */
14
- constructor(parent: SacFormDirective, injector: Injector);
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,12 @@
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 "./tocontrolheight.pipe";
5
+ import * as i4 from "./tocontrolwidthcss.pipe";
6
+ import * as i5 from "./tolabelheight.pipe";
7
+ import * as i6 from "./tolabelwidthcss.pipe";
8
+ export declare class SACBootstrap5LayoutModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5LayoutModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5LayoutModule, never, [typeof i1.CommonModule, typeof i2.SacFormLayoutDirective, typeof i3.SacToControlHeightPipe, typeof i4.SacToControlWidthCssPipe, typeof i5.SacToLabelHeightPipe, typeof i6.SacToLabelWidthCssPipe], [typeof i2.SacFormLayoutDirective, typeof i3.SacToControlHeightPipe, typeof i4.SacToControlWidthCssPipe, typeof i5.SacToLabelHeightPipe, typeof i6.SacToLabelWidthCssPipe]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5LayoutModule>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { ControlHeight } from '@simpleangularcontrols/sac-common';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SacToControlHeightPipe implements PipeTransform {
5
+ /**
6
+ * Returns the CSS class that defines the height for the control
7
+ * @param value ControlHeight value or null
8
+ */
9
+ transform(value: ControlHeight | null): string;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SacToControlHeightPipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<SacToControlHeightPipe, "toControlHeight", true>;
12
+ }
@@ -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,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { ControlHeight } from '@simpleangularcontrols/sac-common';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SacToLabelHeightPipe implements PipeTransform {
5
+ /**
6
+ * Returns the CSS class that defines the height for the control
7
+ * @param value ControlHeight value or null
8
+ */
9
+ transform(value: ControlHeight | null): string;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SacToLabelHeightPipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<SacToLabelHeightPipe, "toLabelHeight", true>;
12
+ }
@@ -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,33 +1,33 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { ElementRef, Injector, Renderer2 } from '@angular/core';
2
3
  import { SacDropdownCommon, SacDropdownOptionCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
4
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
5
  /**
21
6
  * Direktive für Dropdown Option List
22
7
  */
23
8
  export declare class SacDropdownOptionDirective extends SacDropdownOptionCommon {
24
9
  /**
25
10
  * Konstruktor
26
- * @param _elementRef Referenz auf HTML DOM Element
27
- * @param _renderer Angular Rendering Engine
11
+ * @param elementRef Referenz auf HTML DOM Element
12
+ * @param renderer Angular Rendering Engine
28
13
  * @param dropdownList Referenz auf DropDown Komponente
29
14
  */
30
- constructor(_elementRef: ElementRef, _renderer: Renderer2, dropdownList: SacDropdownComponent);
15
+ constructor(elementRef: ElementRef, renderer: Renderer2, dropdownList: SacDropdownComponent);
31
16
  static ɵfac: i0.ɵɵFactoryDeclaration<SacDropdownOptionDirective, [null, null, { optional: true; host: true; }]>;
32
17
  static ɵdir: i0.ɵɵDirectiveDeclaration<SacDropdownOptionDirective, "[sacOption],option", never, {}, {}, never, never, true, never>;
33
18
  }
19
+ /**
20
+ * Dropdown Komponente
21
+ */
22
+ export declare class SacDropdownComponent extends SacDropdownCommon {
23
+ /**
24
+ * Constructor
25
+ * @param formLayout SacFormLayout to define scoped layout settings
26
+ * @param injector Injector for injecting services
27
+ * @param renderer Angular rendering engine
28
+ * @param elementRef Reference to html dom element
29
+ */
30
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector, renderer: Renderer2, elementRef: ElementRef);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<SacDropdownComponent, [{ optional: true; host: true; }, null, null, null]>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<SacDropdownComponent, "sac-dropdown", never, {}, {}, never, ["*"], true, never>;
33
+ }
@@ -1,31 +1,31 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { ElementRef, Injector, Renderer2 } from '@angular/core';
2
3
  import { SacListboxCommon, SacListboxOptionCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
4
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
5
  /**
19
6
  * Option Item in Listbox
20
7
  */
21
8
  export declare class SacListboxOptionDirective extends SacListboxOptionCommon {
22
9
  /**
23
10
  * Konstruktor
24
- * @param _elementRef Referenz auf DOM Element
25
- * @param _renderer Angular Rendering Engine
11
+ * @param elementRef Referenz auf DOM Element
12
+ * @param renderer Angular Rendering Engine
26
13
  * @param listbox Referenz auf Listbox Komponente
27
14
  */
28
- constructor(_elementRef: ElementRef, _renderer: Renderer2, listbox: SacListboxComponent);
15
+ constructor(elementRef: ElementRef, renderer: Renderer2, listbox: SacListboxComponent);
29
16
  static ɵfac: i0.ɵɵFactoryDeclaration<SacListboxOptionDirective, [null, null, { optional: true; host: true; }]>;
30
17
  static ɵdir: i0.ɵɵDirectiveDeclaration<SacListboxOptionDirective, "[sacOption],option", never, {}, {}, never, never, true, never>;
31
18
  }
19
+ /**
20
+ * Listbox Komponente
21
+ */
22
+ export declare class SacListboxComponent extends SacListboxCommon {
23
+ /**
24
+ * Constructor
25
+ * @param formLayout SacFormLayout to define scoped layout settings
26
+ * @param injector Injector for injecting services
27
+ */
28
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<SacListboxComponent, [{ optional: true; host: true; }, null]>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<SacListboxComponent, "sac-listbox", never, {}, {}, never, ["*"], true, never>;
31
+ }
@@ -1,6 +1,6 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector } from '@angular/core';
2
3
  import { IconType, SacMultilanguageInputCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
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
- * Konstruktor
15
- * @param parent Formular Inject
16
- * @param injector Default Injector
14
+ * Constructor
15
+ * @param formLayout SacFormLayout to define scoped layout settings
16
+ * @param injector Injector for injecting services
17
17
  */
18
- constructor(parent: SacFormDirective, injector: Injector);
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
  }
@@ -1,6 +1,6 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector } from '@angular/core';
2
3
  import { IconType, SacMultilanguageInputAreaCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Componente für Mehrsprache Texte als mehrzeiliger Text
@@ -11,11 +11,11 @@ export declare class SacMultilanguageInputAreaComponent extends SacMultilanguage
11
11
  */
12
12
  IconType: typeof IconType;
13
13
  /**
14
- * Konstruktor
15
- * @param parent Formular Inject
16
- * @param injector Default Injector
14
+ * Constructor
15
+ * @param formLayout SacFormLayout to define scoped layout settings
16
+ * @param injector Injector for injecting services
17
17
  */
18
- constructor(parent: SacFormDirective, injector: Injector);
18
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguageInputAreaComponent, [{ optional: true; host: true; }, null]>;
20
20
  static ɵcmp: i0.ɵɵComponentDeclaration<SacMultilanguageInputAreaComponent, "sac-multilanguageinputarea", never, {}, {}, never, never, true, never>;
21
21
  }
@@ -5,15 +5,6 @@ import * as i0 from "@angular/core";
5
5
  * Component für Contextmenü
6
6
  */
7
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
8
  /**
18
9
  * template with input box for multilangauge component
19
10
  */
@@ -22,6 +13,15 @@ export declare class SacMultilanguagemenuComponent extends SacContextmenuCommon
22
13
  * template with markup for inline validation messages in component
23
14
  */
24
15
  validationtemplate: TemplateRef<any>;
16
+ /**
17
+ * Constructor
18
+ * @param document Referenz auf HTML Document
19
+ * @param ngZone Angular Zone Service
20
+ * @param elementRef Referenz auf HTML Element der aktuellen Komponente
21
+ * @param renderer Render Service von Angular
22
+ * @param injector injector to resolve services in base component
23
+ */
24
+ constructor(document: any, ngZone: NgZone, elementRef: ElementRef<HTMLElement>, renderer: Renderer2, injector: Injector);
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguagemenuComponent, never>;
26
26
  static ɵcmp: i0.ɵɵComponentDeclaration<SacMultilanguagemenuComponent, "[sac-multilanguagemenu]", never, { "inputtemplate": { "alias": "inputtemplate"; "required": false; }; "validationtemplate": { "alias": "validationtemplate"; "required": false; }; }, {}, never, ["*"], true, never>;
27
27
  }
@@ -7,9 +7,9 @@ import * as i0 from "@angular/core";
7
7
  export declare class SacMultilanguagemenuAnchorDirective extends SacContextmenuAnchorCommon {
8
8
  /**
9
9
  * Konstruktor
10
- * @param _elementRef HTML DOM Referenz
10
+ * @param elementRef HTML DOM Referenz
11
11
  */
12
- constructor(_elementRef: ElementRef<HTMLElement>);
12
+ constructor(elementRef: ElementRef<HTMLElement>);
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguagemenuAnchorDirective, never>;
14
14
  static ɵdir: i0.ɵɵDirectiveDeclaration<SacMultilanguagemenuAnchorDirective, "[sacMultilanguageMenuAnchor]", never, {}, {}, never, never, true, never>;
15
15
  }
@@ -7,9 +7,9 @@ import * as i0 from "@angular/core";
7
7
  export declare class SacMultilanguagemenuContainerDirective extends SacContextMenuContrainerCommon {
8
8
  /**
9
9
  * Konstruktor
10
- * @param _elementRef Referenz auf DOM Element
10
+ * @param elementRef Referenz auf DOM Element
11
11
  */
12
- constructor(_elementRef: ElementRef<HTMLElement>);
12
+ constructor(elementRef: ElementRef<HTMLElement>);
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguagemenuContainerDirective, never>;
14
14
  static ɵdir: i0.ɵɵDirectiveDeclaration<SacMultilanguagemenuContainerDirective, "[sacMultilanguageMenuContainer]", never, {}, {}, never, never, true, never>;
15
15
  }
@@ -1,14 +1,13 @@
1
- import { SacContextmenuCommon, SacContextmenuItemButtonCommon } from '@simpleangularcontrols/sac-common';
1
+ import { SacContextmenuItemButtonCommon } from '@simpleangularcontrols/sac-common';
2
2
  import * as i0 from "@angular/core";
3
3
  /**
4
- * Component für Menü Eintrag in Context Menü
4
+ * Component for menu entry in context menu
5
5
  */
6
6
  export declare class SacMultilanguagemenuItemButtonComponent extends SacContextmenuItemButtonCommon {
7
7
  /**
8
8
  * Constructor
9
- * @param contextmenu Instance von Context Menü
10
9
  */
11
- constructor(contextmenu: SacContextmenuCommon);
10
+ constructor();
12
11
  static ɵfac: i0.ɵɵFactoryDeclaration<SacMultilanguagemenuItemButtonComponent, never>;
13
12
  static ɵcmp: i0.ɵɵComponentDeclaration<SacMultilanguagemenuItemButtonComponent, "sac-multilanguagemenubutton", never, {}, {}, never, never, true, never>;
14
13
  }
@@ -1,5 +1,5 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
3
  import { SacStaticFormContainerCommon } from '@simpleangularcontrols/sac-common';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
@@ -7,22 +7,22 @@ import * as i0 from "@angular/core";
7
7
  *
8
8
  * @example
9
9
  * <ngStaticFormContainer name='myformcontainer' label="My Custom Form Control" [isrequired]='false'>
10
- * <input type="range" class="form-control form-control-sm" />
10
+ * <input type="range" class="form-control" />
11
11
  * </ngStaticFormContainer>
12
12
  *
13
13
  * @example
14
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" />
15
+ * <input type="range" class="form-control" />
16
16
  * </ngStaticFormContainer>
17
17
  *
18
18
  **/
19
19
  export declare class SacStaticFormContainerComponent extends SacStaticFormContainerCommon {
20
20
  /**
21
- * Konsturktor
22
- * @param parent Parent SacFormular Instanz
23
- * @param injector Injector Instanz
21
+ * Constructor
22
+ * @param formLayout SacFormLayout to define scoped layout settings
23
+ * @param injector Injector for injecting services
24
24
  */
25
- constructor(parent: SacFormDirective, injector: Injector);
25
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
26
26
  static ɵfac: i0.ɵɵFactoryDeclaration<SacStaticFormContainerComponent, [{ optional: true; host: true; }, null]>;
27
27
  static ɵcmp: i0.ɵɵComponentDeclaration<SacStaticFormContainerComponent, "sac-staticformcontainer", never, {}, {}, never, ["*"], true, never>;
28
28
  }
@@ -1,17 +1,17 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector } from '@angular/core';
2
3
  import { SacStaticLabelCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Komponente für statischen Text in einem Formular
7
7
  */
8
8
  export declare class SacStaticLabelComponent extends SacStaticLabelCommon {
9
9
  /**
10
- * Konstruktor
11
- * @param parent Formular
12
- * @param injector Angular Dependency Injection Service
10
+ * Constructor
11
+ * @param formLayout SacFormLayout to define scoped layout settings
12
+ * @param injector Injector for injecting services
13
13
  */
14
- constructor(parent: SacFormDirective, injector: Injector);
14
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<SacStaticLabelComponent, [{ optional: true; host: true; }, null]>;
16
16
  static ɵcmp: i0.ɵɵComponentDeclaration<SacStaticLabelComponent, "sac-staticlabel", never, {}, {}, never, never, true, never>;
17
17
  }
@@ -1,6 +1,6 @@
1
+ import { SacTabItemComponent } from './tabitem';
1
2
  import { QueryList } from '@angular/core';
2
3
  import { SacTabCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacTabItemComponent } from './tabitem';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Komponente für Tabs
@@ -1,21 +1,21 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector, NgZone } from '@angular/core';
2
3
  import { SacTinyMceCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * TinyMCE Komponente
7
7
  */
8
8
  export declare class SacTinyMceComponent extends SacTinyMceCommon {
9
9
  /**
10
- * Konstruktor
11
- * @param parent Formular
12
- * @param injector Angular Dependency Injection Service
13
- * @param ngZone ngZone
10
+ * Constructor
11
+ * @param formLayout SacFormLayout to define scoped layout settings
12
+ * @param injector Injector for injecting services
13
+ * @param ngZone ngZone to manage external javascripts
14
14
  */
15
- constructor(parent: SacFormDirective, injector: Injector, ngZone: NgZone);
15
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector, ngZone: NgZone);
16
16
  /**
17
17
  * overwrite tinymce defaults
18
- * @returns boostrap4 has no overwrites
18
+ * @returns boostrap5 has no overwrites
19
19
  */
20
20
  overwriteDefaultSettings(): {};
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<SacTinyMceComponent, [{ optional: true; host: true; }, null, null]>;
@@ -0,0 +1,37 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
+ import { SacTooltipCommon } from '@simpleangularcontrols/sac-common';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Tooltip Komponente
6
+ *
7
+ * @example ToolTip Control
8
+ *
9
+ * <ngTooltip tooltiptext="Mein Tooltip" [inlinemode]="true">
10
+ * <i class="tooltip"></i>
11
+ * </ngTooltip>
12
+ *
13
+ * @example ToolTip Control im Inline Mode. Style auf Icon kann auch in Klasse ausgelagert werden.
14
+ *
15
+ * <div class="form-inline">
16
+ * <ngInputSearch iconname="Suchen"></ngInputSearch>
17
+ * <ngTooltip tooltiptext="Mein Tooltip" [inlinemode]="true">
18
+ * <i class="tooltip" style="position: relative; left: 0; top: 3px; display: inline-block; margin-right: 10px;"></i>
19
+ * </ngTooltip>
20
+ * </div>
21
+ *
22
+ */
23
+ export declare class SacTooltipComponent extends SacTooltipCommon {
24
+ /**
25
+ * Konstrukor
26
+ * @param parent SacFormular Instanz
27
+ * @param injector Component Injector
28
+ */
29
+ constructor(cdRef: ChangeDetectorRef, ref: ElementRef);
30
+ /**
31
+ * Padding Value for Bootstrap5 Tooltip Padding
32
+ * @returns Static Padding Value for BS5
33
+ */
34
+ protected getTooltipOffset(): number;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<SacTooltipComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<SacTooltipComponent, "sac-tooltip", never, {}, {}, never, ["*"], true, never>;
37
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./tooltip";
4
+ export declare class SACBootstrap5TooltipModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5TooltipModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5TooltipModule, never, [typeof i1.CommonModule, typeof i2.SacTooltipComponent], [typeof i2.SacTooltipComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5TooltipModule>;
8
+ }
@@ -0,0 +1,17 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
2
+ import { Injector } from '@angular/core';
3
+ import { SacTreeviewCommon } from '@simpleangularcontrols/sac-common';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * Treeview Compomnent
7
+ */
8
+ export declare class SacTreeviewComponent extends SacTreeviewCommon {
9
+ /**
10
+ * Constructor
11
+ * @param formLayout SacFormLayout to define scoped layout settings
12
+ * @param injector Component Injector
13
+ */
14
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<SacTreeviewComponent, [{ optional: true; host: true; }, null]>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<SacTreeviewComponent, "sac-treeview", never, {}, {}, never, never, true, never>;
17
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./treeview";
4
+ export declare class SACBootstrap5TreeviewModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap5TreeviewModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap5TreeviewModule, never, [typeof i1.CommonModule, typeof i2.SacTreeviewComponent], [typeof i2.SacTreeviewComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<SACBootstrap5TreeviewModule>;
8
+ }
@@ -1,6 +1,6 @@
1
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
1
2
  import { Injector, NgZone, OnInit, Renderer2 } from '@angular/core';
2
3
  import { SacDropzoneMultipleCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Dropzone Komponente für mehrere Uploads
@@ -8,13 +8,13 @@ import * as i0 from "@angular/core";
8
8
  */
9
9
  export declare class SacDropzoneMultipleComponent extends SacDropzoneMultipleCommon implements OnInit {
10
10
  /**
11
- * Konstruktor
12
- * @param parent Formular
13
- * @param injector Angular Dependency Injection Service
14
- * @param renderer Angular Rendering Engine
15
- * @param ngZone ngZone
11
+ * Constructor
12
+ * @param formLayout SacFormLayout to define scoped layout settings
13
+ * @param injector Injector for injecting services
14
+ * @param renderer Angular rendering engine
15
+ * @param ngZone ngZone to manage external javascripts
16
16
  */
17
- constructor(parent: SacFormDirective, injector: Injector, renderer: Renderer2, ngZone: NgZone);
17
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector, renderer: Renderer2, ngZone: NgZone);
18
18
  /**
19
19
  * Initialisiert das Control
20
20
  */