valtech-components 2.0.96 → 2.0.98
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.
- package/esm2022/lib/components/molecules/search-selector-input/search-selector-input.component.mjs +47 -0
- package/esm2022/lib/components/organisms/form/form.component.mjs +6 -4
- package/esm2022/public-api.mjs +6 -5
- package/fesm2022/valtech-components.mjs +419 -377
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/search-selector-input/search-selector-input.component.d.ts +15 -0
- package/package.json +1 -1
- package/public-api.d.ts +5 -4
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { InputMetadata } from '../../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SearchSelectorComponent implements OnInit {
|
|
5
|
+
props: InputMetadata;
|
|
6
|
+
customModalOptions: {
|
|
7
|
+
header: string;
|
|
8
|
+
breakpoints: number[];
|
|
9
|
+
initialBreakpoint: number;
|
|
10
|
+
};
|
|
11
|
+
constructor();
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchSelectorComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchSelectorComponent, "val-search-selector-input", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -32,6 +32,8 @@ export * from './lib/components/molecules/content-loader/content-loader.componen
|
|
|
32
32
|
export * from './lib/components/molecules/content-loader/types';
|
|
33
33
|
export * from './lib/components/molecules/date-input/date-input.component';
|
|
34
34
|
export * from './lib/components/molecules/email-input/email-input.component';
|
|
35
|
+
export * from './lib/components/molecules/expandable-text/expandable-text.component';
|
|
36
|
+
export * from './lib/components/molecules/expandable-text/types';
|
|
35
37
|
export * from './lib/components/molecules/file-input/file-input.component';
|
|
36
38
|
export * from './lib/components/molecules/hint/hint.component';
|
|
37
39
|
export * from './lib/components/molecules/hour-input/hour-input.component';
|
|
@@ -49,12 +51,11 @@ export * from './lib/components/molecules/progress-status/types';
|
|
|
49
51
|
export * from './lib/components/molecules/prompter/prompter.component';
|
|
50
52
|
export * from './lib/components/molecules/prompter/types';
|
|
51
53
|
export * from './lib/components/molecules/radio-input/radio-input.component';
|
|
54
|
+
export * from './lib/components/molecules/search-selector-input/search-selector-input.component';
|
|
52
55
|
export * from './lib/components/molecules/searchbar/searchbar.component';
|
|
53
56
|
export * from './lib/components/molecules/text-input/text-input.component';
|
|
54
57
|
export * from './lib/components/molecules/title-block/title-block.component';
|
|
55
58
|
export * from './lib/components/molecules/title-block/types';
|
|
56
|
-
export * from './lib/components/molecules/expandable-text/expandable-text.component';
|
|
57
|
-
export * from './lib/components/molecules/expandable-text/types';
|
|
58
59
|
export * from './lib/components/organisms/banner/banner.component';
|
|
59
60
|
export * from './lib/components/organisms/banner/types';
|
|
60
61
|
export * from './lib/components/organisms/footer/footer.component';
|
|
@@ -63,6 +64,8 @@ export * from './lib/components/organisms/form/form-footer/form-footer.component
|
|
|
63
64
|
export * from './lib/components/organisms/form/form.component';
|
|
64
65
|
export * from './lib/components/organisms/header/header.component';
|
|
65
66
|
export * from './lib/components/organisms/header/types';
|
|
67
|
+
export * from './lib/components/organisms/item-list/item-list.component';
|
|
68
|
+
export * from './lib/components/organisms/item-list/types';
|
|
66
69
|
export * from './lib/components/organisms/no-content/no-content.component';
|
|
67
70
|
export * from './lib/components/organisms/no-content/types';
|
|
68
71
|
export * from './lib/components/organisms/toolbar/toolbar.component';
|
|
@@ -70,8 +73,6 @@ export * from './lib/components/organisms/toolbar/types';
|
|
|
70
73
|
export * from './lib/components/organisms/wizard/types';
|
|
71
74
|
export * from './lib/components/organisms/wizard/wizard-footer/wizard-footer.component';
|
|
72
75
|
export * from './lib/components/organisms/wizard/wizard.component';
|
|
73
|
-
export * from './lib/components/organisms/item-list/item-list.component';
|
|
74
|
-
export * from './lib/components/organisms/item-list/types';
|
|
75
76
|
export * from './lib/components/templates/layout/layout.component';
|
|
76
77
|
export * from './lib/components/templates/simple/simple.component';
|
|
77
78
|
export * from './lib/components/templates/simple/types';
|