@simpleangularcontrols/sac-bootstrap3 16.0.0-rc.1 → 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.
Files changed (98) hide show
  1. package/README.md +13 -15
  2. package/controls/checkbox/checkbox.d.ts +7 -2
  3. package/controls/checkbox/checkbox.d.ts.map +1 -1
  4. package/controls/checkbox/radiobutton.d.ts.map +1 -1
  5. package/controls/checkbox/radiobuttons.d.ts +7 -2
  6. package/controls/checkbox/radiobuttons.d.ts.map +1 -1
  7. package/controls/datetime/date.d.ts +8 -2
  8. package/controls/datetime/date.d.ts.map +1 -1
  9. package/controls/datetime/dateselector.d.ts.map +1 -1
  10. package/controls/datetime/datetime.d.ts +8 -2
  11. package/controls/datetime/datetime.d.ts.map +1 -1
  12. package/controls/datetime/time.d.ts +8 -2
  13. package/controls/datetime/time.d.ts.map +1 -1
  14. package/controls/form/form.d.ts +4 -12
  15. package/controls/form/form.d.ts.map +1 -1
  16. package/controls/form/inheritform.directive.d.ts +11 -11
  17. package/controls/form/inheritform.directive.d.ts.map +1 -1
  18. package/controls/input/input.d.ts +7 -2
  19. package/controls/input/input.d.ts.map +1 -1
  20. package/controls/input/inputarea.d.ts +7 -2
  21. package/controls/input/inputarea.d.ts.map +1 -1
  22. package/controls/input/inputcurrency.d.ts +7 -2
  23. package/controls/input/inputcurrency.d.ts.map +1 -1
  24. package/controls/input/inputdecimal.d.ts +7 -2
  25. package/controls/input/inputdecimal.d.ts.map +1 -1
  26. package/controls/input/inputemail.d.ts +7 -2
  27. package/controls/input/inputemail.d.ts.map +1 -1
  28. package/controls/input/inputinteger.d.ts +7 -2
  29. package/controls/input/inputinteger.d.ts.map +1 -1
  30. package/controls/input/inputpassword.d.ts +7 -2
  31. package/controls/input/inputpassword.d.ts.map +1 -1
  32. package/controls/input/inputsearch.d.ts +7 -2
  33. package/controls/input/inputsearch.d.ts.map +1 -1
  34. package/controls/layout/formlayout.directive.d.ts +7 -0
  35. package/controls/layout/formlayout.directive.d.ts.map +1 -0
  36. package/controls/layout/layout.module.d.ts +11 -0
  37. package/controls/layout/layout.module.d.ts.map +1 -0
  38. package/controls/layout/tocontrolwidthcss.pipe.d.ts +20 -0
  39. package/controls/layout/tocontrolwidthcss.pipe.d.ts.map +1 -0
  40. package/controls/layout/tolabelwidthcss.pipe.d.ts +14 -0
  41. package/controls/layout/tolabelwidthcss.pipe.d.ts.map +1 -0
  42. package/controls/list/dropdown.d.ts +16 -3
  43. package/controls/list/dropdown.d.ts.map +1 -1
  44. package/controls/list/listbox.d.ts +7 -2
  45. package/controls/list/listbox.d.ts.map +1 -1
  46. package/controls/static/formcontainer.d.ts +5 -5
  47. package/controls/static/formcontainer.d.ts.map +1 -1
  48. package/controls/static/staticlabel.d.ts +7 -2
  49. package/controls/static/staticlabel.d.ts.map +1 -1
  50. package/controls/tinymce/tinymce.d.ts +6 -6
  51. package/controls/tinymce/tinymce.d.ts.map +1 -1
  52. package/controls/treeview/ngtreeitemaction.d.ts.map +1 -1
  53. package/controls/treeview/treeview.d.ts.map +1 -1
  54. package/controls/upload/upload.d.ts +10 -4
  55. package/controls/upload/upload.d.ts.map +1 -1
  56. package/controls/upload/uploadmultiple.d.ts +9 -2
  57. package/controls/upload/uploadmultiple.d.ts.map +1 -1
  58. package/controls/validation/validationsummary.d.ts +6 -1
  59. package/controls/validation/validationsummary.d.ts.map +1 -1
  60. package/esm2022/controls/checkbox/checkbox.mjs +39 -15
  61. package/esm2022/controls/checkbox/radiobutton.mjs +3 -2
  62. package/esm2022/controls/checkbox/radiobuttons.mjs +39 -15
  63. package/esm2022/controls/datetime/date.mjs +51 -18
  64. package/esm2022/controls/datetime/dateselector.mjs +3 -8
  65. package/esm2022/controls/datetime/datetime.mjs +49 -16
  66. package/esm2022/controls/datetime/time.mjs +49 -16
  67. package/esm2022/controls/form/form.mjs +7 -19
  68. package/esm2022/controls/form/inheritform.directive.mjs +31 -28
  69. package/esm2022/controls/input/input.mjs +35 -13
  70. package/esm2022/controls/input/inputarea.mjs +45 -15
  71. package/esm2022/controls/input/inputcurrency.mjs +45 -15
  72. package/esm2022/controls/input/inputdecimal.mjs +45 -15
  73. package/esm2022/controls/input/inputemail.mjs +45 -15
  74. package/esm2022/controls/input/inputinteger.mjs +45 -15
  75. package/esm2022/controls/input/inputpassword.mjs +45 -15
  76. package/esm2022/controls/input/inputsearch.mjs +39 -15
  77. package/esm2022/controls/layout/formlayout.directive.mjs +16 -0
  78. package/esm2022/controls/layout/layout.module.mjs +34 -0
  79. package/esm2022/controls/layout/tocontrolwidthcss.pipe.mjs +53 -0
  80. package/esm2022/controls/layout/tolabelwidthcss.pipe.mjs +37 -0
  81. package/esm2022/controls/list/dropdown.mjs +31 -14
  82. package/esm2022/controls/list/listbox.mjs +50 -15
  83. package/esm2022/controls/static/formcontainer.mjs +43 -18
  84. package/esm2022/controls/static/staticlabel.mjs +39 -15
  85. package/esm2022/controls/tinymce/tinymce.mjs +19 -12
  86. package/esm2022/controls/treeview/ngtreeitemaction.mjs +2 -1
  87. package/esm2022/controls/treeview/treeview.mjs +3 -9
  88. package/esm2022/controls/upload/upload.mjs +47 -15
  89. package/esm2022/controls/upload/uploadmultiple.mjs +21 -9
  90. package/esm2022/controls/validation/validationsummary.mjs +15 -11
  91. package/esm2022/public_api.mjs +34 -30
  92. package/fesm2022/simpleangularcontrols-sac-bootstrap3.mjs +1563 -965
  93. package/fesm2022/simpleangularcontrols-sac-bootstrap3.mjs.map +1 -1
  94. package/package.json +2 -2
  95. package/public_api.d.ts +33 -29
  96. package/public_api.d.ts.map +1 -1
  97. package/simpleangularcontrols-sac-bootstrap3-16.0.0-rc.3.tgz +0 -0
  98. package/simpleangularcontrols-sac-bootstrap3-16.0.0-rc.1.tgz +0 -0
package/README.md CHANGED
@@ -1,24 +1,22 @@
1
- # SimpleAngularControls - Bootstrap3
1
+ # SimpleAngularControls - Common
2
2
 
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.0.
3
+ ## End of Support
4
4
 
5
- ## Code scaffolding
5
+ > No more controls and extensions are actively being developed for this Bootstrap version.
6
6
 
7
- Run `ng generate component component-name --project sac-bootstrap3` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project sac-bootstrap3`.
8
- > Note: Don't forget to add `--project sac-bootstrap3` or else it will be added to the default project in your `angular.json` file.
7
+ ## Documentation
9
8
 
10
- ## Build
9
+ The package provides the controls for Bootstrap 3. The `sac-common` is also required.
11
10
 
12
- Run `ng build sac-bootstrap3` to build the project. The build artifacts will be stored in the `dist/` directory.
11
+ ## Installation
13
12
 
14
- ## Publishing
13
+ Do the follow steps to add
15
14
 
16
- After building your library with `ng build sac-bootstrap3`, go to the dist folder `cd dist/sac-bootstrap3` and run `npm publish`.
15
+ * add `@simpleangularcontrols/sac-bootstrap3` dependencies from npm
16
+ * add `@simpleangularcontrols/sac-common` dependencies from npm
17
+ * add Bootstrap 3 CSS/SCSS to your project
18
+ * import the module to your components and modules
17
19
 
18
- ## Running unit tests
20
+ ## Project
19
21
 
20
- Run `ng test sac-bootstrap3` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
22
+ For more information, follow us on GitHub: https://github.com/simpleangularcontrols
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
2
  import { SacCheckboxCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacCheckboxComponent extends SacCheckboxCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacCheckboxComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacCheckboxComponent, "sac-checkbox", never, {}, {}, never, never, true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/checkbox/checkbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAC,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACrE,OAAO,EAAC,gBAAgB,EAAE,MAAM,cAAc,CAAC;;AAI/C,qBAWa,oBAAqB,SAAQ,iBAAiB;gBACzB,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCADjE,oBAAoB;2CAApB,oBAAoB;CAIhC"}
1
+ {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/checkbox/checkbox.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE,qBAmBa,oBAAqB,SAAQ,iBAAiB;IAGzD;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,oBAAoB;2CAApB,oBAAoB;CAgBhC"}
@@ -1 +1 @@
1
- {"version":3,"file":"radiobutton.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/checkbox/radiobutton.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;;AAI1D,qBAMa,uBAAwB,SAAQ,oBAAoB;gBAE3C,eAAe,EAAE,wBAAwB;yCAFlD,uBAAuB;2CAAvB,uBAAuB;CAMnC"}
1
+ {"version":3,"file":"radiobutton.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/checkbox/radiobutton.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;;AAE1D,qBAMa,uBAAwB,SAAQ,oBAAoB;gBAG3C,eAAe,EAAE,wBAAwB;yCAHlD,uBAAuB;2CAAvB,uBAAuB;CAQnC"}
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
2
  import { SacRadiobuttonsCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacRadiobuttonsComponent extends SacRadiobuttonsCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacRadiobuttonsComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacRadiobuttonsComponent, "sac-radiobuttons", never, {}, {}, never, ["*"], true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"radiobuttons.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/checkbox/radiobuttons.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAC1E,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;;AAGhD,qBAWa,wBAAyB,SAAQ,qBAAqB;gBAEjC,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCAFjE,wBAAwB;2CAAxB,wBAAwB;CAMpC"}
1
+ {"version":3,"file":"radiobuttons.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/checkbox/radiobuttons.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAC1E,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE,qBAmBa,wBAAyB,SAAQ,qBAAqB;IAGjE;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,wBAAwB;2CAAxB,wBAAwB;CAgBpC"}
@@ -1,9 +1,15 @@
1
1
  import { ElementRef, Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacDateCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacDateComponent extends SacDateCommon {
6
- constructor(parent: SacFormDirective, injector: Injector, _elementRef: ElementRef);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ * @param elementRef Reference to html dom element
11
+ */
12
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector, elementRef: ElementRef);
7
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SacDateComponent, [{ optional: true; host: true; }, null, null]>;
8
14
  static ɵcmp: i0.ɵɵComponentDeclaration<SacDateComponent, "sac-date", never, {}, {}, never, never, true, never>;
9
15
  }
@@ -1 +1 @@
1
- {"version":3,"file":"date.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/datetime/date.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+B,UAAU,EAAE,QAAQ,EAAY,MAAM,eAAe,CAAC;AAE5F,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGhD,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;;AAOlE,qBAYa,gBAAiB,SAAQ,aAAa;gBAChB,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,UAAU;yCAD3F,gBAAgB;2CAAhB,gBAAgB;CAI5B"}
1
+ {"version":3,"file":"date.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/datetime/date.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAEV,QAAQ,EAGT,MAAM,eAAe,CAAC;AAIvB,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;AAGlE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAMxE,qBA2Ba,gBAAiB,SAAQ,aAAa;IAGjD;;;;;OAKG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ,EAClB,UAAU,EAAE,UAAU;yCAZb,gBAAgB;2CAAhB,gBAAgB;CAkB5B"}
@@ -1 +1 @@
1
- {"version":3,"file":"dateselector.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/datetime/dateselector.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;;AAI1E,qBAWa,wBAAyB,SAAQ,qBAAqB;yCAAtD,wBAAwB;2CAAxB,wBAAwB;CAEpC"}
1
+ {"version":3,"file":"dateselector.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/datetime/dateselector.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;;AAE1E,qBAMa,wBAAyB,SAAQ,qBAAqB;yCAAtD,wBAAwB;2CAAxB,wBAAwB;CAAiC"}
@@ -1,9 +1,15 @@
1
1
  import { ElementRef, Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacDateTimeCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacDateTimeComponent extends SacDateTimeCommon {
6
- constructor(parent: SacFormDirective, injector: Injector, _elementRef: ElementRef);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ * @param elementRef Reference to html dom element
11
+ */
12
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector, elementRef: ElementRef);
7
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SacDateTimeComponent, [{ optional: true; host: true; }, null, null]>;
8
14
  static ɵcmp: i0.ɵɵComponentDeclaration<SacDateTimeComponent, "sac-datetime", never, {}, {}, never, never, true, never>;
9
15
  }
@@ -1 +1 @@
1
- {"version":3,"file":"datetime.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/datetime/datetime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,UAAU,EAAQ,QAAQ,EAAY,MAAM,eAAe,CAAC;AAE5F,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;;AAMtE,qBAYa,oBAAqB,SAAQ,iBAAiB;gBACxB,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,UAAU;yCAD3F,oBAAoB;2CAApB,oBAAoB;CAIhC"}
1
+ {"version":3,"file":"datetime.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/datetime/datetime.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,UAAU,EAEV,QAAQ,EAGT,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AAEtE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAKxE,qBA2Ba,oBAAqB,SAAQ,iBAAiB;IAGzD;;;;;OAKG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ,EAClB,UAAU,EAAE,UAAU;yCAZb,oBAAoB;2CAApB,oBAAoB;CAkBhC"}
@@ -1,9 +1,15 @@
1
1
  import { ElementRef, Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacTimeCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacTimeComponent extends SacTimeCommon {
6
- constructor(parent: SacFormDirective, injector: Injector, _elementRef: ElementRef);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ * @param elementRef Reference to html dom element
11
+ */
12
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector, elementRef: ElementRef);
7
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SacTimeComponent, [{ optional: true; host: true; }, null, null]>;
8
14
  static ɵcmp: i0.ɵɵComponentDeclaration<SacTimeComponent, "sac-time", never, {}, {}, never, never, true, never>;
9
15
  }
@@ -1 +1 @@
1
- {"version":3,"file":"time.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/datetime/time.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,UAAU,EAAQ,QAAQ,EAAY,MAAM,eAAe,CAAC;AAE5F,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;;AAKlE,qBAYa,gBAAiB,SAAQ,aAAa;gBAChB,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,UAAU;yCAD3F,gBAAgB;2CAAhB,gBAAgB;CAI5B"}
1
+ {"version":3,"file":"time.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/datetime/time.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,UAAU,EAEV,QAAQ,EAGT,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;AAElE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAKxE,qBA2Ba,gBAAiB,SAAQ,aAAa;IAGjD;;;;;OAKG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ,EAClB,UAAU,EAAE,UAAU;yCAZb,gBAAgB;2CAAhB,gBAAgB;CAkB5B"}
@@ -1,5 +1,5 @@
1
- import { SacFormCommon } from '@simpleangularcontrols/sac-common';
2
1
  import { NgForm } from '@angular/forms';
2
+ import { SacFormCommon } from '@simpleangularcontrols/sac-common';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
5
5
  * Erweiterung / Hooking für automatismen in Formular. Wird als Container für alle Controls benötigt.
@@ -13,23 +13,15 @@ import * as i0 from "@angular/core";
13
13
  * <form></form>
14
14
  */
15
15
  export declare class SacFormDirective extends SacFormCommon {
16
- /**
17
- * Konstruktor
18
- * @param form Instanz von NgForm für eigene automatische Formular Logik
19
- */
20
- constructor(form: NgForm);
21
16
  /**
22
17
  * Setzt die Standard CSS Klasse für auf dem Form Container
23
18
  */
24
19
  cssClassForm: boolean;
25
20
  /**
26
- * Setzt die CSS Klasse 'form-horizontal' wenn die Orientation auf Horizontal eingestellt ist
27
- */
28
- get orientientationHorizontal(): boolean;
29
- /**
30
- * Setzt die CSS Klasse 'form-vertical' wenn die Orientation auf Vertical eingestellt ist
21
+ * Konstruktor
22
+ * @param form Instanz von NgForm für eigene automatische Formular Logik
31
23
  */
32
- get orientientationVertical(): boolean;
24
+ constructor(form: NgForm);
33
25
  static ɵfac: i0.ɵɵFactoryDeclaration<SacFormDirective, never>;
34
26
  static ɵdir: i0.ɵɵDirectiveDeclaration<SacFormDirective, "form:not([ngNoForm]):not([formGroup]),[ngForm]", ["sacform"], {}, {}, never, never, true, never>;
35
27
  }
@@ -1 +1 @@
1
- {"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/form/form.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;AAClE,OAAO,EAAoB,MAAM,EAAE,MAAM,gBAAgB,CAAC;;AAG1D;;;;;;;;;;GAUG;AAEH,qBAKa,gBAAiB,SAAQ,aAAa;IAEjD;;;OAGG;gBACS,IAAI,EAAE,MAAM;IAIxB;;OAEG;IAEH,YAAY,EAAE,OAAO,CAAQ;IAE7B;;OAEG;IACH,IACI,yBAAyB,IAAI,OAAO,CAAmD;IAE3F;;OAEG;IACH,IACI,uBAAuB,IAAI,OAAO,CAAiD;yCA1B5E,gBAAgB;2CAAhB,gBAAgB;CA4B5B"}
1
+ {"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/form/form.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;;AAElE;;;;;;;;;;GAUG;AAEH,qBAKa,gBAAiB,SAAQ,aAAa;IAGjD;;OAEG;IAEI,YAAY,EAAE,OAAO,CAAQ;IAMpC;;;OAGG;gBACS,IAAI,EAAE,MAAM;yCAjBb,gBAAgB;2CAAhB,gBAAgB;CAsB5B"}
@@ -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 NgFormular
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,4 +38,14 @@ 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 NgFormular
49
+ */
50
+ export declare function SACFORM_FACTORY(form: SacFormDirective): SacFormDirective;
51
51
  //# sourceMappingURL=inheritform.directive.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"inheritform.directive.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/form/inheritform.directive.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAE1C,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;;AAGxC;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,gBAAgB,oBAErD;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,MAAM,UAE1C;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,qBAea,uBAAuB;yCAAvB,uBAAuB;2CAAvB,uBAAuB;CAAI"}
1
+ {"version":3,"file":"inheritform.directive.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/form/inheritform.directive.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;;AAI1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,qBAgBa,uBAAuB;yCAAvB,uBAAuB;2CAAvB,uBAAuB;CAAG;AAMvC;;;GAGG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,MAAM,UAE1C;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,gBAAgB,oBAErD"}
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacInputCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacInputComponent extends SacInputCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacInputComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacInputComponent, "sac-input", never, {}, {}, never, never, true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/input.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;;AAInE,qBAYa,iBAAkB,SAAQ,cAAc;gBAElB,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCAFlE,iBAAiB;2CAAjB,iBAAiB;CAK7B"}
1
+ {"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/input.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AACnE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE,qBAqBa,iBAAkB,SAAQ,cAAc;IAGnD;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,iBAAiB;2CAAjB,iBAAiB;CAgB7B"}
@@ -1,6 +1,6 @@
1
- import { SacFormDirective } from '../form/form';
2
1
  import { Injector } from '@angular/core';
3
2
  import { SacInputAreaCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Komponente für TextArea
@@ -15,7 +15,12 @@ import * as i0 from "@angular/core";
15
15
  *
16
16
  */
17
17
  export declare class SacInputAreaComponent extends SacInputAreaCommon {
18
- constructor(parent: SacFormDirective, injector: Injector);
18
+ /**
19
+ * Constructor
20
+ * @param formLayout SacFormLayout to define scoped layout settings
21
+ * @param injector Injector for injecting services
22
+ */
23
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
19
24
  static ɵfac: i0.ɵɵFactoryDeclaration<SacInputAreaComponent, [{ optional: true; host: true; }, null]>;
20
25
  static ɵcmp: i0.ɵɵComponentDeclaration<SacInputAreaComponent, "sac-inputarea", never, {}, {}, never, never, true, never>;
21
26
  }
@@ -1 +1 @@
1
- {"version":3,"file":"inputarea.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputarea.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAChF,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;;AAGvE;;;;;;;;;;;GAWG;AACH,qBAYa,qBAAsB,SAAQ,kBAAkB;gBAE1B,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCAFlE,qBAAqB;2CAArB,qBAAqB;CAMjC"}
1
+ {"version":3,"file":"inputarea.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputarea.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE;;;;;;;;;;;GAWG;AACH,qBAyBa,qBAAsB,SAAQ,kBAAkB;IAG3D;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,qBAAqB;2CAArB,qBAAqB;CAgBjC"}
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacInputCurrencyCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacInputCurrencyComponent extends SacInputCurrencyCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacInputCurrencyComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacInputCurrencyComponent, "sac-inputcurrency", never, {}, {}, never, never, true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"inputcurrency.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputcurrency.ts"],"names":[],"mappings":"AACA,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;;AAI3E,qBAWa,yBAA0B,SAAQ,sBAAsB;gBACnC,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCADjE,yBAAyB;2CAAzB,yBAAyB;CAIrC"}
1
+ {"version":3,"file":"inputcurrency.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputcurrency.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE,qBAyBa,yBAA0B,SAAQ,sBAAsB;IAGnE;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,yBAAyB;2CAAzB,yBAAyB;CAgBrC"}
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacInputDecimalCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacInputDecimalComponent extends SacInputDecimalCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacInputDecimalComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacInputDecimalComponent, "sac-inputdecimal", never, {}, {}, never, never, true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"inputdecimal.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputdecimal.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;;AAG1E,qBAWa,wBAAyB,SAAQ,qBAAqB;gBACjC,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCADjE,wBAAwB;2CAAxB,wBAAwB;CAIpC"}
1
+ {"version":3,"file":"inputdecimal.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputdecimal.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAC1E,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE,qBAyBa,wBAAyB,SAAQ,qBAAqB;IAGjE;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,wBAAwB;2CAAxB,wBAAwB;CAgBpC"}
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacInputEmailCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacInputEmailComponent extends SacInputEmailCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacInputEmailComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacInputEmailComponent, "sac-inputemail", never, {}, {}, never, never, true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"inputemail.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputemail.ts"],"names":[],"mappings":"AACA,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;;AAIxE,qBAWa,sBAAuB,SAAQ,mBAAmB;gBAC7B,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCADjE,sBAAsB;2CAAtB,sBAAsB;CAIlC"}
1
+ {"version":3,"file":"inputemail.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputemail.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AACxE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE,qBAyBa,sBAAuB,SAAQ,mBAAmB;IAG7D;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,sBAAsB;2CAAtB,sBAAsB;CAgBlC"}
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacInputIntegerCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacInputIntegerComponent extends SacInputIntegerCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacInputIntegerComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacInputIntegerComponent, "sac-inputinteger", never, {}, {}, never, never, true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"inputinteger.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputinteger.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;;AAG1E,qBAWa,wBAAyB,SAAQ,qBAAqB;gBAChC,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCADlE,wBAAwB;2CAAxB,wBAAwB;CAIpC"}
1
+ {"version":3,"file":"inputinteger.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputinteger.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAC1E,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE,qBAyBa,wBAAyB,SAAQ,qBAAqB;IAGjE;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,wBAAwB;2CAAxB,wBAAwB;CAgBpC"}
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacInputPasswordCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacInputPasswordComponent extends SacInputPasswordCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacInputPasswordComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacInputPasswordComponent, "sac-inputpassword", never, {}, {}, never, never, true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"inputpassword.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputpassword.ts"],"names":[],"mappings":"AACA,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;;AAI3E,qBAWa,yBAA0B,SAAQ,sBAAsB;gBACnC,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCADjE,yBAAyB;2CAAzB,yBAAyB;CAIrC"}
1
+ {"version":3,"file":"inputpassword.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputpassword.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE,qBAyBa,yBAA0B,SAAQ,sBAAsB;IAGnE;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,yBAAyB;2CAAzB,yBAAyB;CAgBrC"}
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
2
  import { SacInputSearchCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacInputSearchComponent extends SacInputSearchCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacInputSearchComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacInputSearchComponent, "sac-inputsearch", never, {}, {}, never, never, true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"inputsearch.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputsearch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,QAAQ,EAAqD,MAAM,eAAe,CAAC;AAC7G,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;;AAKhD,qBAYa,uBAAwB,SAAQ,oBAAoB;gBAE/B,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCAFjE,uBAAuB;2CAAvB,uBAAuB;CAOnC"}
1
+ {"version":3,"file":"inputsearch.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/input/inputsearch.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAEhF,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAIxE,qBAmBa,uBAAwB,SAAQ,oBAAoB;IAG/D;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,uBAAuB;2CAAvB,uBAAuB;CAgBnC"}
@@ -0,0 +1,7 @@
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
+ }
7
+ //# sourceMappingURL=formlayout.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"formlayout.directive.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/layout/formlayout.directive.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;;AAExE,qBAIa,sBAAuB,SAAQ,mBAAmB;yCAAlD,sBAAsB;2CAAtB,sBAAsB;CAA+B"}
@@ -0,0 +1,11 @@
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 SACBootstrap3LayoutModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SACBootstrap3LayoutModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SACBootstrap3LayoutModule, 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<SACBootstrap3LayoutModule>;
10
+ }
11
+ //# sourceMappingURL=layout.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"layout.module.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/layout/layout.module.ts"],"names":[],"mappings":";;;;;AAMA,qBAaa,yBAAyB;yCAAzB,yBAAyB;0CAAzB,yBAAyB;0CAAzB,yBAAyB;CAAG"}
@@ -0,0 +1,20 @@
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
+ }
20
+ //# sourceMappingURL=tocontrolwidthcss.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tocontrolwidthcss.pipe.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/layout/tocontrolwidthcss.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;;AAEnE,qBAIa,wBAAyB,YAAW,aAAa;IAG5D;;;;OAIG;IACI,SAAS,CAAC,KAAK,EAAE,cAAc,GAAG,MAAM;IA0B/C;;;;OAIG;IACH,OAAO,CAAC,eAAe;yCAvCZ,wBAAwB;uCAAxB,wBAAwB;CAoDpC"}
@@ -0,0 +1,14 @@
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
+ }
14
+ //# sourceMappingURL=tolabelwidthcss.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tolabelwidthcss.pipe.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/layout/tolabelwidthcss.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;;AAEnE,qBAIa,sBAAuB,YAAW,aAAa;IAG1D;;;;OAIG;IACI,SAAS,CAAC,KAAK,EAAE,cAAc,GAAG,MAAM;yCARpC,sBAAsB;uCAAtB,sBAAsB;CA+BlC"}
@@ -1,14 +1,27 @@
1
1
  import { ElementRef, Injector, Renderer2 } from '@angular/core';
2
2
  import { SacDropdownCommon, SacDropdownOptionCommon } from '@simpleangularcontrols/sac-common';
3
- import { SacFormDirective } from '../form/form';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacDropdownComponent extends SacDropdownCommon {
6
- constructor(parent: SacFormDirective, injector: Injector, _renderer: Renderer2, _elementRef: ElementRef);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ * @param renderer Angular rendering engine
11
+ * @param elementRef Reference to html dom element
12
+ */
13
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector, renderer: Renderer2, elementRef: ElementRef);
7
14
  static ɵfac: i0.ɵɵFactoryDeclaration<SacDropdownComponent, [{ optional: true; host: true; }, null, null, null]>;
8
15
  static ɵcmp: i0.ɵɵComponentDeclaration<SacDropdownComponent, "sac-dropdown", never, {}, {}, never, ["*"], true, never>;
9
16
  }
10
17
  export declare class SacDropdownOptionDirective extends SacDropdownOptionCommon {
11
- constructor(_elementRef: ElementRef, _renderer: Renderer2, dropdownList: SacDropdownComponent);
18
+ /**
19
+ * Konstruktor
20
+ * @param elementRef Referenz auf HTML DOM Element
21
+ * @param renderer Angular Rendering Engine
22
+ * @param dropdownList Referenz auf DropDown Komponente
23
+ */
24
+ constructor(elementRef: ElementRef, renderer: Renderer2, dropdownList: SacDropdownComponent);
12
25
  static ɵfac: i0.ɵɵFactoryDeclaration<SacDropdownOptionDirective, [null, null, { optional: true; host: true; }]>;
13
26
  static ɵdir: i0.ɵɵDirectiveDeclaration<SacDropdownOptionDirective, "option,[sacOption]", never, {}, {}, never, never, true, never>;
14
27
  }
@@ -1 +1 @@
1
- {"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/list/dropdown.ts"],"names":[],"mappings":"AAOA,OAAO,EAGL,UAAU,EAEV,QAAQ,EAER,SAAS,EAEV,MAAM,eAAe,CAAC;AAMvB,OAAO,EACL,iBAAiB,EACjB,uBAAuB,EACxB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;;AAEhD,qBA2Ba,oBAAqB,SAAQ,iBAAiB;gBAEnC,MAAM,EAAE,gBAAgB,EAC5C,QAAQ,EAAE,QAAQ,EAClB,SAAS,EAAE,SAAS,EACpB,WAAW,EAAE,UAAU;yCALd,oBAAoB;2CAApB,oBAAoB;CAShC;AAED,qBAIa,0BAA2B,SAAQ,uBAAuB;gBAEnE,WAAW,EAAE,UAAU,EACvB,SAAS,EAAE,SAAS,EACA,YAAY,EAAE,oBAAoB;yCAJ7C,0BAA0B;2CAA1B,0BAA0B;CAQtC"}
1
+ {"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/list/dropdown.ts"],"names":[],"mappings":"AAOA,OAAO,EAGL,UAAU,EAEV,QAAQ,EAER,SAAS,EAEV,MAAM,eAAe,CAAC;AAEvB,OAAO,EACL,iBAAiB,EACjB,uBAAuB,EACxB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAMxE,qBA6Ba,oBAAqB,SAAQ,iBAAiB;IAGzD;;;;;;OAMG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,SAAS,EACnB,UAAU,EAAE,UAAU;yCAdb,oBAAoB;2CAApB,oBAAoB;CAoBhC;AAED,qBACa,0BAA2B,SAAQ,uBAAuB;IAGrE;;;;;OAKG;gBAED,UAAU,EAAE,UAAU,EACtB,QAAQ,EAAE,SAAS,EACC,YAAY,EAAE,oBAAoB;yCAZ7C,0BAA0B;2CAA1B,0BAA0B;CAkBtC"}
@@ -1,9 +1,14 @@
1
1
  import { Injector } from '@angular/core';
2
- import { SacFormDirective } from '../form/form';
3
2
  import { SacListboxCommon } from '@simpleangularcontrols/sac-common';
3
+ import { SacFormLayoutDirective } from '../layout/formlayout.directive';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class SacListboxComponent extends SacListboxCommon {
6
- constructor(parent: SacFormDirective, injector: Injector);
6
+ /**
7
+ * Constructor
8
+ * @param formLayout SacFormLayout to define scoped layout settings
9
+ * @param injector Injector for injecting services
10
+ */
11
+ constructor(formLayout: SacFormLayoutDirective, injector: Injector);
7
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SacListboxComponent, [{ optional: true; host: true; }, null]>;
8
13
  static ɵcmp: i0.ɵɵComponentDeclaration<SacListboxComponent, "sac-listbox", never, {}, {}, never, ["*"], true, never>;
9
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"listbox.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/list/listbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+B,QAAQ,EAAY,MAAM,eAAe,CAAC;AAGhF,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAEhD,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;;AAKrE,qBAWa,mBAAoB,SAAQ,gBAAgB;gBACtB,MAAM,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ;yCADlE,mBAAmB;2CAAnB,mBAAmB;CAI/B"}
1
+ {"version":3,"file":"listbox.d.ts","sourceRoot":"","sources":["../../../../projects/sac-bootstrap3/src/controls/list/listbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAWhF,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;;AAKxE,qBA6Ba,mBAAoB,SAAQ,gBAAgB;IAGvD;;;;OAIG;gBAEmB,UAAU,EAAE,sBAAsB,EACtD,QAAQ,EAAE,QAAQ;yCAVT,mBAAmB;2CAAnB,mBAAmB;CAgB/B"}