valtech-components 2.0.19 → 2.0.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 (153) hide show
  1. package/esm2022/lib/components/atoms/avatar/types.mjs +1 -1
  2. package/esm2022/lib/components/atoms/box/box.component.mjs +47 -0
  3. package/esm2022/lib/components/atoms/box/types.mjs +2 -0
  4. package/esm2022/lib/components/atoms/button/button.component.mjs +1 -1
  5. package/esm2022/lib/components/atoms/button/factory.mjs +1 -1
  6. package/esm2022/lib/components/atoms/display/display.component.mjs +28 -0
  7. package/esm2022/lib/components/atoms/display/types.mjs +2 -0
  8. package/esm2022/lib/components/atoms/divider/divider.component.mjs +17 -0
  9. package/esm2022/lib/components/atoms/divider/types.mjs +2 -0
  10. package/esm2022/lib/components/atoms/href/href.component.mjs +51 -0
  11. package/esm2022/lib/components/atoms/href/types.mjs +2 -0
  12. package/esm2022/lib/components/atoms/icon/icon.component.mjs +18 -0
  13. package/esm2022/lib/components/atoms/icon/types.mjs +2 -0
  14. package/esm2022/lib/components/atoms/image/image.component.mjs +50 -0
  15. package/esm2022/lib/components/atoms/image/types.mjs +2 -0
  16. package/esm2022/lib/components/atoms/progress-bar/progress-bar.component.mjs +36 -0
  17. package/esm2022/lib/components/atoms/progress-bar/types.mjs +2 -0
  18. package/esm2022/lib/components/atoms/text/text.component.mjs +24 -0
  19. package/esm2022/lib/components/atoms/text/types.mjs +2 -0
  20. package/esm2022/lib/components/atoms/title/title.component.mjs +31 -0
  21. package/esm2022/lib/components/atoms/title/types.mjs +2 -0
  22. package/esm2022/lib/components/molecules/alert-box/alert-box.component.mjs +32 -0
  23. package/esm2022/lib/components/molecules/alert-box/types.mjs +2 -0
  24. package/esm2022/lib/components/molecules/button-group/button-group.component.mjs +49 -0
  25. package/esm2022/lib/components/molecules/button-group/types.mjs +2 -0
  26. package/esm2022/lib/components/molecules/card/card.component.mjs +369 -0
  27. package/esm2022/lib/components/molecules/card/types.mjs +16 -0
  28. package/esm2022/lib/components/molecules/check-input/check-input.component.mjs +15 -0
  29. package/esm2022/lib/components/molecules/comment-input/comment-input.component.mjs +23 -0
  30. package/esm2022/lib/components/molecules/content-loader/content-loader.component.mjs +32 -0
  31. package/esm2022/lib/components/molecules/content-loader/types.mjs +2 -0
  32. package/esm2022/lib/components/molecules/date-input/date-input.component.mjs +73 -0
  33. package/esm2022/lib/components/molecules/email-input/email-input.component.mjs +19 -0
  34. package/esm2022/lib/components/molecules/file-input/file-input.component.mjs +69 -0
  35. package/esm2022/lib/components/molecules/hint/hint.component.mjs +52 -0
  36. package/esm2022/lib/components/molecules/hour-input/hour-input.component.mjs +18 -0
  37. package/esm2022/lib/components/molecules/link/link.component.mjs +37 -0
  38. package/esm2022/lib/components/molecules/link/types.mjs +2 -0
  39. package/esm2022/lib/components/molecules/links-cake/links-cake.component.mjs +37 -0
  40. package/esm2022/lib/components/molecules/links-cake/types.mjs +2 -0
  41. package/esm2022/lib/components/molecules/notes-box/notes-box.component.mjs +33 -0
  42. package/esm2022/lib/components/molecules/notes-box/types.mjs +2 -0
  43. package/esm2022/lib/components/molecules/number-input/number-input.component.mjs +18 -0
  44. package/esm2022/lib/components/molecules/password-input/password-input.component.mjs +44 -0
  45. package/esm2022/lib/components/molecules/pin-input/pin-input.component.mjs +45 -0
  46. package/esm2022/lib/components/molecules/progress-status/progress-status.component.mjs +94 -0
  47. package/esm2022/lib/components/molecules/progress-status/types.mjs +2 -0
  48. package/esm2022/lib/components/molecules/prompter/prompter.component.mjs +84 -0
  49. package/esm2022/lib/components/molecules/prompter/types.mjs +2 -0
  50. package/esm2022/lib/components/molecules/radio-input/radio-input.component.mjs +33 -0
  51. package/esm2022/lib/components/molecules/searchbar/searchbar.component.mjs +61 -0
  52. package/esm2022/lib/components/molecules/text-input/text-input.component.mjs +18 -0
  53. package/esm2022/lib/components/molecules/title-block/title-block.component.mjs +77 -0
  54. package/esm2022/lib/components/molecules/title-block/types.mjs +2 -0
  55. package/esm2022/lib/components/organisms/banner/banner.component.mjs +75 -0
  56. package/esm2022/lib/components/organisms/banner/types.mjs +2 -0
  57. package/esm2022/lib/components/organisms/footer/footer.component.mjs +50 -0
  58. package/esm2022/lib/components/organisms/footer/types.mjs +2 -0
  59. package/esm2022/lib/components/organisms/form/factory.mjs +8 -0
  60. package/esm2022/lib/components/organisms/form/form-footer/form-footer.component.mjs +76 -0
  61. package/esm2022/lib/components/organisms/form/form.component.mjs +230 -0
  62. package/esm2022/lib/components/organisms/header/header.component.mjs +33 -0
  63. package/esm2022/lib/components/organisms/header/types.mjs +2 -0
  64. package/esm2022/lib/components/organisms/no-content/no-content.component.mjs +34 -0
  65. package/esm2022/lib/components/organisms/no-content/types.mjs +2 -0
  66. package/esm2022/lib/components/organisms/toolbar/toolbar.component.mjs +168 -0
  67. package/esm2022/lib/components/organisms/toolbar/types.mjs +2 -0
  68. package/esm2022/lib/components/organisms/wizard/types.mjs +7 -0
  69. package/esm2022/lib/components/organisms/wizard/wizard-footer/wizard-footer.component.mjs +107 -0
  70. package/esm2022/lib/components/organisms/wizard/wizard.component.mjs +103 -0
  71. package/esm2022/lib/components/templates/simple/simple.component.mjs +64 -0
  72. package/esm2022/lib/components/templates/simple/types.mjs +2 -0
  73. package/esm2022/lib/components/types.mjs +8 -1
  74. package/esm2022/public-api.mjs +71 -4
  75. package/fesm2022/valtech-components.mjs +2529 -159
  76. package/fesm2022/valtech-components.mjs.map +1 -1
  77. package/lib/components/atoms/avatar/types.d.ts +1 -1
  78. package/lib/components/atoms/box/box.component.d.ts +12 -0
  79. package/lib/components/atoms/box/types.d.ts +7 -0
  80. package/lib/components/atoms/button/button.component.d.ts +1 -1
  81. package/lib/components/atoms/button/factory.d.ts +1 -1
  82. package/lib/components/atoms/display/display.component.d.ts +10 -0
  83. package/lib/components/atoms/display/types.d.ts +6 -0
  84. package/lib/components/atoms/divider/divider.component.d.ts +10 -0
  85. package/lib/components/atoms/divider/types.d.ts +5 -0
  86. package/lib/components/atoms/href/href.component.d.ts +15 -0
  87. package/lib/components/atoms/href/types.d.ts +9 -0
  88. package/lib/components/atoms/icon/icon.component.d.ts +10 -0
  89. package/lib/components/atoms/icon/types.d.ts +6 -0
  90. package/lib/components/atoms/image/image.component.d.ts +12 -0
  91. package/lib/components/atoms/image/types.d.ts +11 -0
  92. package/lib/components/atoms/progress-bar/progress-bar.component.d.ts +10 -0
  93. package/lib/components/atoms/progress-bar/types.d.ts +9 -0
  94. package/lib/components/atoms/text/text.component.d.ts +10 -0
  95. package/lib/components/atoms/text/types.d.ts +7 -0
  96. package/lib/components/atoms/title/title.component.d.ts +10 -0
  97. package/lib/components/atoms/title/types.d.ts +7 -0
  98. package/lib/components/molecules/alert-box/alert-box.component.d.ts +10 -0
  99. package/lib/components/molecules/alert-box/types.d.ts +8 -0
  100. package/lib/components/molecules/button-group/button-group.component.d.ts +13 -0
  101. package/lib/components/molecules/button-group/types.d.ts +6 -0
  102. package/lib/components/molecules/card/card.component.d.ts +16 -0
  103. package/lib/components/molecules/card/types.d.ts +33 -0
  104. package/lib/components/molecules/check-input/check-input.component.d.ts +8 -0
  105. package/lib/components/molecules/comment-input/comment-input.component.d.ts +10 -0
  106. package/lib/components/molecules/content-loader/content-loader.component.d.ts +10 -0
  107. package/lib/components/molecules/content-loader/types.d.ts +7 -0
  108. package/lib/components/molecules/date-input/date-input.component.d.ts +10 -0
  109. package/lib/components/molecules/email-input/email-input.component.d.ts +10 -0
  110. package/lib/components/molecules/file-input/file-input.component.d.ts +15 -0
  111. package/lib/components/molecules/hint/hint.component.d.ts +11 -0
  112. package/lib/components/molecules/hour-input/hour-input.component.d.ts +10 -0
  113. package/lib/components/molecules/link/link.component.d.ts +12 -0
  114. package/lib/components/molecules/link/types.d.ts +6 -0
  115. package/lib/components/molecules/links-cake/links-cake.component.d.ts +10 -0
  116. package/lib/components/molecules/links-cake/types.d.ts +6 -0
  117. package/lib/components/molecules/notes-box/notes-box.component.d.ts +10 -0
  118. package/lib/components/molecules/notes-box/types.d.ts +8 -0
  119. package/lib/components/molecules/number-input/number-input.component.d.ts +10 -0
  120. package/lib/components/molecules/password-input/password-input.component.d.ts +11 -0
  121. package/lib/components/molecules/pin-input/pin-input.component.d.ts +15 -0
  122. package/lib/components/molecules/progress-status/progress-status.component.d.ts +14 -0
  123. package/lib/components/molecules/progress-status/types.d.ts +10 -0
  124. package/lib/components/molecules/prompter/prompter.component.d.ts +12 -0
  125. package/lib/components/molecules/prompter/types.d.ts +11 -0
  126. package/lib/components/molecules/radio-input/radio-input.component.d.ts +10 -0
  127. package/lib/components/molecules/searchbar/searchbar.component.d.ts +14 -0
  128. package/lib/components/molecules/text-input/text-input.component.d.ts +10 -0
  129. package/lib/components/molecules/title-block/title-block.component.d.ts +10 -0
  130. package/lib/components/molecules/title-block/types.d.ts +12 -0
  131. package/lib/components/organisms/banner/banner.component.d.ts +14 -0
  132. package/lib/components/organisms/banner/types.d.ts +11 -0
  133. package/lib/components/organisms/footer/footer.component.d.ts +12 -0
  134. package/lib/components/organisms/footer/types.d.ts +6 -0
  135. package/lib/components/organisms/form/factory.d.ts +5 -0
  136. package/lib/components/organisms/form/form-footer/form-footer.component.d.ts +15 -0
  137. package/lib/components/organisms/form/form.component.d.ts +23 -0
  138. package/lib/components/organisms/header/header.component.d.ts +12 -0
  139. package/lib/components/organisms/header/types.d.ts +6 -0
  140. package/lib/components/organisms/no-content/no-content.component.d.ts +12 -0
  141. package/lib/components/organisms/no-content/types.d.ts +6 -0
  142. package/lib/components/organisms/toolbar/toolbar.component.d.ts +21 -0
  143. package/lib/components/organisms/toolbar/types.d.ts +11 -0
  144. package/lib/components/organisms/wizard/types.d.ts +20 -0
  145. package/lib/components/organisms/wizard/wizard-footer/wizard-footer.component.d.ts +21 -0
  146. package/lib/components/organisms/wizard/wizard.component.d.ts +22 -0
  147. package/lib/components/templates/simple/simple.component.d.ts +7 -0
  148. package/lib/components/templates/simple/types.d.ts +7 -0
  149. package/lib/components/types.d.ts +37 -2
  150. package/package.json +1 -1
  151. package/public-api.d.ts +70 -3
  152. package/esm2022/lib/components/atoms/button/types.mjs +0 -2
  153. package/lib/components/atoms/button/types.d.ts +0 -22
@@ -2,5 +2,5 @@ export interface AvatarMetadata {
2
2
  image: string;
3
3
  default: string;
4
4
  size: 'small' | 'medium' | 'large';
5
- box: boolean;
5
+ box?: boolean;
6
6
  }
@@ -0,0 +1,12 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BoxMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BoxComponent implements OnInit {
5
+ props: BoxMetadata;
6
+ onClick: EventEmitter<any>;
7
+ constructor();
8
+ ngOnInit(): void;
9
+ clickHandler(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<BoxComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<BoxComponent, "val-box", never, { "props": { "alias": "props"; "required": false; }; }, { "onClick": "onClick"; }, never, ["[body]"], true, never>;
12
+ }
@@ -0,0 +1,7 @@
1
+ import { Color } from '@ionic/core';
2
+ export interface BoxMetadata {
3
+ color: Color;
4
+ icon: string;
5
+ bordered?: boolean;
6
+ leftBorder?: boolean;
7
+ }
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { DownloadService } from '../../../services/download.service';
3
- import { ButtonMetadata } from './types';
3
+ import { ButtonMetadata } from '../../types';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class ButtonComponent {
6
6
  private download;
@@ -1,4 +1,4 @@
1
- import { ButtonMetadata, IconMetada } from './types';
1
+ import { ButtonMetadata, IconMetada } from "../../types";
2
2
  export declare const Icon: (name: string, slot: 'start' | 'end') => IconMetada;
3
3
  export declare const BaseDefault: (text: string, type: 'button' | 'submit' | 'reset') => ButtonMetadata;
4
4
  export declare const ClearDefault: (text: string, type: 'button' | 'submit' | 'reset') => ButtonMetadata;
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DisplayMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DisplayComponent implements OnInit {
5
+ props: DisplayMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DisplayComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<DisplayComponent, "val-display", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,6 @@
1
+ import { Color } from '@ionic/core';
2
+ export interface DisplayMetadata {
3
+ size: 'small' | 'medium' | 'large' | 'xlarge';
4
+ color: Color;
5
+ content: string;
6
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DividerMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DividerComponent implements OnInit {
5
+ props: DividerMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DividerComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "val-divider", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,5 @@
1
+ export interface DividerMetadata {
2
+ size: 'small' | 'medium' | 'large';
3
+ color: 'primary' | 'secondary' | 'dark' | 'light' | 'medium';
4
+ fill: 'solid' | 'gradient';
5
+ }
@@ -0,0 +1,15 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { DownloadService } from '../../../services/download.service';
3
+ import { HrefMetadata } from './types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class HrefComponent implements OnInit {
6
+ private downloadService;
7
+ props: HrefMetadata;
8
+ onClick: EventEmitter<string>;
9
+ constructor(downloadService: DownloadService);
10
+ ngOnInit(): void;
11
+ getFileName(): string;
12
+ onClickHandler(event: MouseEvent): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<HrefComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<HrefComponent, "val-href", never, { "props": { "alias": "props"; "required": false; }; }, { "onClick": "onClick"; }, never, never, true, never>;
15
+ }
@@ -0,0 +1,9 @@
1
+ import { Color } from '@ionic/core';
2
+ export type HrefMetadata = {
3
+ url: string;
4
+ token: string;
5
+ text: string;
6
+ color: Color;
7
+ download: boolean;
8
+ hoverable: boolean;
9
+ };
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { IconMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class IconComponent implements OnInit {
5
+ props: IconMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "val-icon", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,6 @@
1
+ import { Color } from '@ionic/core';
2
+ export interface IconMetadata {
3
+ size: 'small' | 'medium' | 'large' | 'xlarge';
4
+ color: Color;
5
+ name: string;
6
+ }
@@ -0,0 +1,12 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ImageMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ImageComponent implements OnInit {
5
+ props: ImageMetadata;
6
+ available: boolean;
7
+ constructor();
8
+ ngOnInit(): void;
9
+ changeToVisible(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageComponent, "val-image", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,11 @@
1
+ export type ImageMetadata = {
2
+ src: string;
3
+ alt: string;
4
+ mode: 'rounded' | 'circular' | 'box';
5
+ shaded: boolean;
6
+ bordered: boolean;
7
+ limited?: boolean;
8
+ size: 'small' | 'medium' | 'large' | 'xlarge';
9
+ width?: number;
10
+ height?: number;
11
+ };
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ProgressBarMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ProgressBarComponent implements OnInit {
5
+ props: ProgressBarMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "val-progress-bar", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import { Color } from '@ionic/core';
2
+ export interface ProgressBarMetadata {
3
+ progress: number;
4
+ size: 'small' | 'medium' | 'large' | 'xlarge';
5
+ color: Color;
6
+ buffer: number;
7
+ type: 'determinate' | 'indeterminate';
8
+ rounded: boolean;
9
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { TextMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TextComponent implements OnInit {
5
+ props: TextMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "val-text", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,7 @@
1
+ import { Color } from '@ionic/core';
2
+ export interface TextMetadata {
3
+ size: 'small' | 'medium' | 'large' | 'xlarge';
4
+ color: Color;
5
+ content: string;
6
+ bold: boolean;
7
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { TitleMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TitleComponent implements OnInit {
5
+ props: TitleMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TitleComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<TitleComponent, "val-title", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,7 @@
1
+ import { Color } from '@ionic/core';
2
+ export interface TitleMetadata {
3
+ size: 'small' | 'medium' | 'large' | 'xlarge';
4
+ color: Color;
5
+ content: string;
6
+ bold: boolean;
7
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { AlertBoxMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AlertBoxComponent implements OnInit {
5
+ props: AlertBoxMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AlertBoxComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<AlertBoxComponent, "val-alert-box", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { BoxMetadata } from '../../atoms/box/types';
2
+ import { IconMetadata } from '../../atoms/icon/types';
3
+ import { TextMetadata } from '../../atoms/text/types';
4
+ export interface AlertBoxMetadata {
5
+ box: BoxMetadata;
6
+ icon: IconMetadata;
7
+ text: TextMetadata;
8
+ }
@@ -0,0 +1,13 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ButtonGroupMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ButtonGroupComponent implements OnInit {
5
+ props: ButtonGroupMetadata;
6
+ onClick: EventEmitter<string>;
7
+ constructor();
8
+ ngOnInit(): void;
9
+ clickHandler(token?: string): void;
10
+ get Position(): string;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonGroupComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonGroupComponent, "val-button-group", never, { "props": { "alias": "props"; "required": false; }; }, { "onClick": "onClick"; }, never, never, true, never>;
13
+ }
@@ -0,0 +1,6 @@
1
+ import { ButtonMetadata } from "../../types";
2
+ export interface ButtonGroupMetadata {
3
+ buttons: ButtonMetadata[];
4
+ position: 'center' | 'left' | 'right' | 'spaced';
5
+ columned: boolean;
6
+ }
@@ -0,0 +1,16 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ToolbarActionType } from '../../types';
3
+ import { CardClickEvent, CardMetada, CardSection, CardType } from './types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CardComponent implements OnInit {
6
+ metadata: CardMetada;
7
+ onClick: EventEmitter<CardClickEvent>;
8
+ types: typeof CardType;
9
+ actionTypes: typeof ToolbarActionType;
10
+ sections: typeof CardSection;
11
+ constructor();
12
+ ngOnInit(): void;
13
+ clickHandler(section: CardSection, token?: string): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "val-card", never, { "metadata": { "alias": "metadata"; "required": false; }; }, { "onClick": "onClick"; }, never, never, true, never>;
16
+ }
@@ -0,0 +1,33 @@
1
+ import { ButtonMetadata } from '../../types';
2
+ import { ToolbarAction } from '../../types';
3
+ export declare enum CardType {
4
+ native = "native",
5
+ checker = "checker",
6
+ tappable = "tappable",
7
+ complex = "complex"
8
+ }
9
+ export interface CardClickEvent {
10
+ section: CardSection;
11
+ token?: string;
12
+ }
13
+ export declare enum CardSection {
14
+ headerLeft = 0,
15
+ headerRight = 1,
16
+ content = 2,
17
+ footer = 3,
18
+ footerExtra = 4
19
+ }
20
+ export interface CardMetada {
21
+ token?: string;
22
+ type: CardType;
23
+ title?: string;
24
+ overtitle?: string;
25
+ content?: string;
26
+ image?: string;
27
+ footerActions: ButtonMetadata[];
28
+ footerComplexActions: ToolbarAction[];
29
+ leftActions: ToolbarAction[];
30
+ rightActions: ToolbarAction[];
31
+ selected: boolean;
32
+ headerText?: string;
33
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CheckInputComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckInputComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckInputComponent, "val-check-input", never, {}, {}, never, never, true, never>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CommentInputComponent implements OnInit {
5
+ props: InputMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommentInputComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CommentInputComponent, "val-comment-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ContentLoaderMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ContentLoaderComponent implements OnInit {
5
+ props: ContentLoaderMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContentLoaderComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContentLoaderComponent, "val-content-loader", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,7 @@
1
+ import { Color } from '@ionic/core';
2
+ export interface ContentLoaderMetadata {
3
+ color: Color;
4
+ size: 'small' | 'medium' | 'large';
5
+ name: 'circular' | 'crescent' | 'dots' | 'lines-sharp';
6
+ text: string;
7
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DateInputComponent implements OnInit {
5
+ props: InputMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "val-date-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class EmailInputComponent implements OnInit {
5
+ props: InputMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<EmailInputComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<EmailInputComponent, "val-email-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,15 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ButtonMetadata, InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FileInputComponent implements OnInit {
5
+ fileInput: any;
6
+ props: InputMetadata;
7
+ contrastButton: ButtonMetadata;
8
+ selectedFile: File;
9
+ constructor();
10
+ ngOnInit(): void;
11
+ onFileSelected(event: any): void;
12
+ reset(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileInputComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileInputComponent, "val-file-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
15
+ }
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class HintComponent implements OnInit {
5
+ props: InputMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ get Errors(): string[];
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<HintComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<HintComponent, "val-hint", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class HourInputComponent implements OnInit {
5
+ props: InputMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<HourInputComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<HourInputComponent, "val-hour-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,12 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { LinkMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LinkComponent implements OnInit {
5
+ props: LinkMetadata;
6
+ onClick: EventEmitter<any>;
7
+ constructor();
8
+ ngOnInit(): void;
9
+ onClickHandler(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<LinkComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "val-link", never, { "props": { "alias": "props"; "required": false; }; }, { "onClick": "onClick"; }, never, never, true, never>;
12
+ }
@@ -0,0 +1,6 @@
1
+ import { Color } from '@ionic/core';
2
+ export interface LinkMetadata {
3
+ text: string;
4
+ size: 'small' | 'default' | 'large';
5
+ color: Color;
6
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { LinkCakeMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LinksCakeComponent implements OnInit {
5
+ props: LinkCakeMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<LinksCakeComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<LinksCakeComponent, "val-links-cake", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,6 @@
1
+ import { HrefMetadata } from '../../atoms/href/types';
2
+ export interface LinkCakeMetadata {
3
+ title: string;
4
+ links: HrefMetadata[];
5
+ size: 'small' | 'medium' | 'large';
6
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { NotesBoxMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NotesBoxComponent implements OnInit {
5
+ props: NotesBoxMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotesBoxComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotesBoxComponent, "val-notes-box", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { Color } from '@ionic/core';
2
+ export interface NotesBoxMetadata {
3
+ color: Color;
4
+ textColor: Color;
5
+ prefix: string;
6
+ text: string;
7
+ size: 'small' | 'medium' | 'large' | 'xlarge';
8
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NumberInputComponent implements OnInit {
5
+ props: InputMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumberInputComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<NumberInputComponent, "val-number-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PasswordInputComponent implements OnInit {
5
+ props: InputMetadata;
6
+ hidePassword: boolean;
7
+ constructor();
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<PasswordInputComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<PasswordInputComponent, "val-password-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,15 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { NgOtpInputComponent, NgOtpInputConfig } from 'ng-otp-input';
3
+ import { InputMetadata } from '../../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class PinInputComponent implements OnInit {
6
+ pinCode: NgOtpInputComponent | undefined;
7
+ props: InputMetadata;
8
+ codeLength: number;
9
+ otpInputConfig: NgOtpInputConfig;
10
+ constructor();
11
+ ngOnInit(): void;
12
+ reset(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<PinInputComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<PinInputComponent, "val-pin-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
15
+ }
@@ -0,0 +1,14 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ProgressStatusMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ProgressStatusComponent implements OnInit {
5
+ props: ProgressStatusMetadata;
6
+ currentIndex: number;
7
+ blinking: boolean;
8
+ constructor();
9
+ ngOnInit(): void;
10
+ get Content(): string;
11
+ getNextMessage(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressStatusComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressStatusComponent, "val-progress-status", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
14
+ }
@@ -0,0 +1,10 @@
1
+ import { Color } from '@ionic/core';
2
+ import { TitleBlockMetada } from '../title-block/types';
3
+ export type ProgressStatusMetadata = {
4
+ progress: number;
5
+ titles: TitleBlockMetada;
6
+ color: Color;
7
+ size?: 'small' | 'medium' | 'large' | 'xlarge';
8
+ type?: 'determinate' | 'indeterminate';
9
+ messages: string[];
10
+ };
@@ -0,0 +1,12 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { PrompterMetadata } from './types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PrompterComponent implements OnInit {
5
+ props: PrompterMetadata;
6
+ onClick: EventEmitter<string>;
7
+ constructor();
8
+ ngOnInit(): void;
9
+ clickHandler(token?: string): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<PrompterComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<PrompterComponent, "val-prompter", never, { "props": { "alias": "props"; "required": false; }; }, { "onClick": "onClick"; }, never, never, true, never>;
12
+ }
@@ -0,0 +1,11 @@
1
+ import { Color } from '@ionic/core';
2
+ import { HrefMetadata } from '../../atoms/href/types';
3
+ import { ButtonMetadata } from '../../types';
4
+ export type PrompterMetadata = {
5
+ teleprompter: boolean;
6
+ bordered: boolean;
7
+ color?: Color;
8
+ content: string;
9
+ buttons?: ButtonMetadata[];
10
+ hrefs?: HrefMetadata[];
11
+ };
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class RadioInputComponent implements OnInit {
5
+ props: InputMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioInputComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioInputComponent, "val-radio-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,14 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SearchbarComponent {
4
+ disabled: boolean;
5
+ focusEvent: EventEmitter<void>;
6
+ blurEvent: EventEmitter<void>;
7
+ filterEvent: EventEmitter<string>;
8
+ constructor();
9
+ onSearch($event: any): void;
10
+ onFocus(): void;
11
+ onBlur(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchbarComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchbarComponent, "app-searchbar", never, { "disabled": { "alias": "disabled"; "required": false; }; }, { "focusEvent": "focusEvent"; "blurEvent": "blurEvent"; "filterEvent": "filterEvent"; }, never, never, true, never>;
14
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { InputMetadata } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TextInputComponent implements OnInit {
5
+ props: InputMetadata;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "val-text-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
10
+ }