suis 0.28.0 → 0.29.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,6 +11,7 @@ export * from './suis-icon';
11
11
  export * from './suis-input';
12
12
  export * from './suis-input-checkbox';
13
13
  export * from './suis-input-chips';
14
+ export * from './suis-input-image';
14
15
  export * from './suis-input-number';
15
16
  export * from './suis-input-radio';
16
17
  export * from './suis-label';
@@ -29,6 +30,7 @@ export * from './suis-spinner';
29
30
  export * from './suis-spinner-container';
30
31
  export * from './suis-table';
31
32
  export * from './suis-tabs';
33
+ export * from './suis-text-area';
32
34
  export * from './suis-title';
33
35
  export * from './suis-toggle';
34
36
  export * from './suis-toolbar';
@@ -0,0 +1 @@
1
+ export * from './suis-input-image.component';
@@ -0,0 +1,19 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { SuisInputBase } from '../../shared/classes/suis-input.base';
3
+ import { SuisIconType } from '../suis-icon/suis-icon.enums';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SuisInputImageComponent extends SuisInputBase {
6
+ /** @internal */
7
+ fileInput?: ElementRef;
8
+ /** @internal */
9
+ readonly SuisIconType: typeof SuisIconType;
10
+ /** @internal */
11
+ value: FileList | null;
12
+ /** @internal */
13
+ imageUrl: string | null;
14
+ writeValue(obj: FormData | string): void;
15
+ onChange(event: Event): void;
16
+ onRemove(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SuisInputImageComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisInputImageComponent, "suis-input-image", never, {}, {}, never, never, true, never>;
19
+ }
@@ -0,0 +1 @@
1
+ export * from './suis-text-area.component';
@@ -0,0 +1,14 @@
1
+ import { SuisInputBase } from '../../shared/classes/suis-input.base';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SuisTextAreaComponent extends SuisInputBase {
4
+ /**
5
+ * Placeholder text displayed in input. By default set to empty string.
6
+ */
7
+ placeholder: string;
8
+ /** @internal */
9
+ value: string;
10
+ writeValue(obj: string): void;
11
+ onChange(event: Event): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SuisTextAreaComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisTextAreaComponent, "suis-text-area", never, { "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, never>;
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suis",
3
- "version": "0.28.0",
3
+ "version": "0.29.0",
4
4
  "main": "src/index.ts",
5
5
  "author": "Karol Jaskółka",
6
6
  "description": "Angular 16+ Component Library",