@six-group/ui-library-angular 0.0.0-insider.6705a47 → 0.0.0-insider.6bc986d

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 (45) hide show
  1. package/README.md +2 -1
  2. package/fesm2022/six-group-ui-library-angular.mjs +1462 -416
  3. package/fesm2022/six-group-ui-library-angular.mjs.map +1 -1
  4. package/package.json +18 -11
  5. package/types/six-group-ui-library-angular.d.ts +1385 -0
  6. package/esm2022/lib/control-value-accessors/checkbox-value-accessor.mjs +0 -41
  7. package/esm2022/lib/control-value-accessors/datepicker-value-accessor.mjs +0 -37
  8. package/esm2022/lib/control-value-accessors/numeric-value-accessor.mjs +0 -42
  9. package/esm2022/lib/control-value-accessors/radio-value-accessor.mjs +0 -62
  10. package/esm2022/lib/control-value-accessors/range-value-accessor.mjs +0 -42
  11. package/esm2022/lib/control-value-accessors/select-value-accessor.mjs +0 -37
  12. package/esm2022/lib/control-value-accessors/switch-value-accessor.mjs +0 -41
  13. package/esm2022/lib/control-value-accessors/text-value-accessor.mjs +0 -37
  14. package/esm2022/lib/control-value-accessors/timepicker-value-accessor.mjs +0 -37
  15. package/esm2022/lib/control-value-accessors/value-accessor.mjs +0 -145
  16. package/esm2022/lib/form/six-form.directive.mjs +0 -134
  17. package/esm2022/lib/link/six-router-link.directive.mjs +0 -56
  18. package/esm2022/lib/services/validation-messages.service.mjs +0 -15
  19. package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +0 -59
  20. package/esm2022/lib/stencil-generated/components.mjs +0 -1319
  21. package/esm2022/lib/stencil-generated/index.mjs +0 -57
  22. package/esm2022/lib/ui-library-angular.module.mjs +0 -135
  23. package/esm2022/lib/validators/six-ui-library-validators.mjs +0 -122
  24. package/esm2022/public-api.mjs +0 -27
  25. package/esm2022/six-group-ui-library-angular.mjs +0 -5
  26. package/index.d.ts +0 -5
  27. package/lib/control-value-accessors/checkbox-value-accessor.d.ts +0 -10
  28. package/lib/control-value-accessors/datepicker-value-accessor.d.ts +0 -9
  29. package/lib/control-value-accessors/numeric-value-accessor.d.ts +0 -10
  30. package/lib/control-value-accessors/radio-value-accessor.d.ts +0 -15
  31. package/lib/control-value-accessors/range-value-accessor.d.ts +0 -10
  32. package/lib/control-value-accessors/select-value-accessor.d.ts +0 -9
  33. package/lib/control-value-accessors/switch-value-accessor.d.ts +0 -10
  34. package/lib/control-value-accessors/text-value-accessor.d.ts +0 -9
  35. package/lib/control-value-accessors/timepicker-value-accessor.d.ts +0 -9
  36. package/lib/control-value-accessors/value-accessor.d.ts +0 -39
  37. package/lib/form/six-form.directive.d.ts +0 -71
  38. package/lib/link/six-router-link.directive.d.ts +0 -26
  39. package/lib/services/validation-messages.service.d.ts +0 -7
  40. package/lib/stencil-generated/angular-component-lib/utils.d.ts +0 -9
  41. package/lib/stencil-generated/components.d.ts +0 -884
  42. package/lib/stencil-generated/index.d.ts +0 -2
  43. package/lib/ui-library-angular.module.d.ts +0 -22
  44. package/lib/validators/six-ui-library-validators.d.ts +0 -47
  45. package/public-api.d.ts +0 -17
@@ -1,26 +0,0 @@
1
- import { ElementRef, OnChanges, OnInit, Renderer2 } from '@angular/core';
2
- import { Router, RouterLink } from '@angular/router';
3
- import { LocationStrategy } from '@angular/common';
4
- import * as i0 from "@angular/core";
5
- /**
6
- * Forked from https://github.com/ionic-team/ionic-framework/blob/main/packages/angular/common/src/directives/navigation/router-link-delegate.ts.
7
- */
8
- export declare class SixRouterLinkDirective implements OnInit, OnChanges {
9
- private locationStrategy;
10
- private elementRef;
11
- private router;
12
- private renderer;
13
- private routerLinkDirective?;
14
- constructor(locationStrategy: LocationStrategy, elementRef: ElementRef, router: Router, renderer: Renderer2, routerLinkDirective?: RouterLink | undefined);
15
- onClick(event: UIEvent): void;
16
- routerLink?: any;
17
- queryParams?: any;
18
- fragment?: any;
19
- queryParamsHandling?: any;
20
- relativeTo?: any;
21
- ngOnInit(): void;
22
- ngOnChanges(): void;
23
- private updateTargetUrlAndHref;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<SixRouterLinkDirective, [null, null, null, null, { optional: true; }]>;
25
- static ɵdir: i0.ɵɵDirectiveDeclaration<SixRouterLinkDirective, "six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink]", never, { "routerLink": { "alias": "routerLink"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "fragment": { "alias": "fragment"; "required": false; }; "queryParamsHandling": { "alias": "queryParamsHandling"; "required": false; }; "relativeTo": { "alias": "relativeTo"; "required": false; }; }, {}, never, never, false, never>;
26
- }
@@ -1,7 +0,0 @@
1
- import { Language, ValidationError } from '@six-group/ui-library';
2
- import * as i0 from "@angular/core";
3
- export declare class ValidationMessagesService {
4
- getErrorMessage(language: Language, error: ValidationError): string | undefined;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<ValidationMessagesService, never>;
6
- static ɵprov: i0.ɵɵInjectableDeclaration<ValidationMessagesService>;
7
- }
@@ -1,9 +0,0 @@
1
- export declare const proxyInputs: (Cmp: any, inputs: string[]) => void;
2
- export declare const proxyMethods: (Cmp: any, methods: string[]) => void;
3
- export declare const proxyOutputs: (instance: any, el: any, events: string[]) => void;
4
- export declare const defineCustomElement: (tagName: string, customElement: any) => void;
5
- export declare function ProxyCmp(opts: {
6
- defineCustomElementFn?: () => void;
7
- inputs?: any;
8
- methods?: any;
9
- }): (cls: any) => any;