@ardium-ui/ui 3.0.0 → 3.1.1
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/inputs/_simple-input-base.mjs +2 -2
- package/esm2022/lib/text-list/index.mjs +4 -0
- package/esm2022/lib/text-list/text-list.component.mjs +18 -0
- package/esm2022/lib/text-list/text-list.module.mjs +19 -0
- package/esm2022/lib/text-list/text-list.pipe.mjs +16 -0
- package/esm2022/public-api.mjs +25 -24
- package/fesm2022/ardium-ui-ui.mjs +7968 -7926
- package/fesm2022/ardium-ui-ui.mjs.map +1 -1
- package/lib/inputs/_simple-input-base.d.ts +1 -1
- package/lib/text-list/index.d.ts +3 -0
- package/lib/text-list/text-list.component.d.ts +8 -0
- package/lib/text-list/text-list.module.d.ts +9 -0
- package/lib/text-list/text-list.pipe.d.ts +7 -0
- package/package.json +1 -1
- package/public-api.d.ts +24 -23
|
@@ -4,7 +4,7 @@ import { SimpleOneAxisAlignment } from './../types/alignment.types';
|
|
|
4
4
|
import { FormElementAppearance, FormElementVariant } from './../types/theming.types';
|
|
5
5
|
import { Nullable } from './../types/utility.types';
|
|
6
6
|
import { SimpleInputModel } from './input-utils';
|
|
7
|
-
import { ArdSimpleInputPlaceholderTemplateDirective, ArdSimpleInputPrefixTemplateDirective, ArdSimpleInputSuffixTemplateDirective } from './simple-input';
|
|
7
|
+
import { ArdSimpleInputPlaceholderTemplateDirective, ArdSimpleInputPrefixTemplateDirective, ArdSimpleInputSuffixTemplateDirective } from './simple-input/simple-input.directives';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export interface _SimpleInputComponentDefaults extends _NgModelComponentDefaults {
|
|
10
10
|
appearance: FormElementAppearance;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ArdiumTextListComponent {
|
|
3
|
+
readonly values: import("@angular/core").InputSignal<any[]>;
|
|
4
|
+
readonly separator: import("@angular/core").InputSignal<string>;
|
|
5
|
+
readonly filter: import("@angular/core").InputSignalWithTransform<boolean, any>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumTextListComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArdiumTextListComponent, "ard-text-list", never, { "values": { "alias": "values"; "required": true; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "filter": { "alias": "filter"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./text-list.component";
|
|
3
|
+
import * as i2 from "./text-list.pipe";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
export declare class ArdiumTextListModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumTextListModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ArdiumTextListModule, [typeof i1.ArdiumTextListComponent, typeof i2.ArdiumTextListPipe], [typeof i3.CommonModule], [typeof i1.ArdiumTextListComponent, typeof i2.ArdiumTextListPipe]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ArdiumTextListModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ArdiumTextListPipe implements PipeTransform {
|
|
4
|
+
transform(value: any[], separator?: string, filter?: boolean): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumTextListPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ArdiumTextListPipe, "ardTextList", false>;
|
|
7
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,52 +1,53 @@
|
|
|
1
1
|
import 'first-last';
|
|
2
|
-
export * from './lib/select';
|
|
3
|
-
export * from './lib/option';
|
|
4
|
-
export * from './lib/inputs/simple-input';
|
|
5
|
-
export * from './lib/inputs/input';
|
|
6
2
|
export * from './lib/inputs/digit-input';
|
|
3
|
+
export * from './lib/inputs/input';
|
|
7
4
|
export * from './lib/inputs/password-input';
|
|
8
|
-
export * from './lib/inputs/
|
|
5
|
+
export * from './lib/inputs/simple-input';
|
|
6
|
+
export * from './lib/option';
|
|
7
|
+
export * from './lib/select';
|
|
9
8
|
export * from './lib/file-inputs/file-drop-area';
|
|
10
9
|
export * from './lib/file-inputs/file-input';
|
|
11
10
|
export * from './lib/inputs/hex-input';
|
|
11
|
+
export * from './lib/inputs/number-input';
|
|
12
|
+
export * from './lib/buttons/button';
|
|
13
|
+
export * from './lib/buttons/fab';
|
|
14
|
+
export * from './lib/buttons/general-button.types';
|
|
15
|
+
export * from './lib/buttons/icon-button';
|
|
16
|
+
export * from './lib/checkbox';
|
|
17
|
+
export * from './lib/chip';
|
|
12
18
|
export * from './lib/radio';
|
|
13
19
|
export * from './lib/segment';
|
|
20
|
+
export * from './lib/slide-toggle';
|
|
14
21
|
export * from './lib/slider';
|
|
15
22
|
export * from './lib/star/star-button';
|
|
16
23
|
export * from './lib/star/star-input';
|
|
17
24
|
export * from './lib/statebox';
|
|
18
|
-
export * from './lib/slide-toggle';
|
|
19
|
-
export * from './lib/checkbox';
|
|
20
|
-
export * from './lib/buttons/general-button.types';
|
|
21
|
-
export * from './lib/buttons/button';
|
|
22
|
-
export * from './lib/buttons/fab';
|
|
23
|
-
export * from './lib/buttons/icon-button';
|
|
24
|
-
export * from './lib/chip';
|
|
25
25
|
export * from './lib/checkbox-list';
|
|
26
|
-
export * from './lib/
|
|
26
|
+
export * from './lib/badge';
|
|
27
27
|
export * from './lib/progress-bar';
|
|
28
28
|
export * from './lib/progress-circle';
|
|
29
|
-
export * from './lib/
|
|
30
|
-
export * from './lib/form-field-frame';
|
|
31
|
-
export * from './lib/dropdown-panel';
|
|
29
|
+
export * from './lib/spinner';
|
|
32
30
|
export * from './lib/color/color-display';
|
|
31
|
+
export * from './lib/dropdown-panel';
|
|
32
|
+
export * from './lib/form-field-frame';
|
|
33
33
|
export * from './lib/kbd';
|
|
34
34
|
export * from './lib/kbd-shortcut';
|
|
35
|
-
export * from './lib/table';
|
|
36
|
-
export * from './lib/table-pagination';
|
|
37
|
-
export * from './lib/table-from-csv';
|
|
38
35
|
export * from './lib/star';
|
|
39
36
|
export * from './lib/star/star-display';
|
|
40
|
-
export * from './lib/
|
|
37
|
+
export * from './lib/table';
|
|
38
|
+
export * from './lib/table-from-csv';
|
|
39
|
+
export * from './lib/table-pagination';
|
|
40
|
+
export * from './lib/text-list';
|
|
41
41
|
export * from './lib/card';
|
|
42
42
|
export * from './lib/divider';
|
|
43
|
-
export * from './lib/
|
|
43
|
+
export * from './lib/tabber';
|
|
44
44
|
export * from './lib/dialog';
|
|
45
|
+
export * from './lib/modal';
|
|
45
46
|
export * from './lib/snackbar';
|
|
46
47
|
export * from './lib/icon';
|
|
47
48
|
export * from './lib/types/alignment.types';
|
|
48
49
|
export * from './lib/types/colors.types';
|
|
50
|
+
export * from './lib/types/item-storage.types';
|
|
49
51
|
export * from './lib/types/theming.types';
|
|
50
52
|
export * from './lib/types/utility.types';
|
|
51
|
-
export
|
|
52
|
-
export { searchInString, searchFunctions as ArdSearchFunction } from './lib/search-functions';
|
|
53
|
+
export { searchFunctions as ArdSearchFunction, searchInString } from './lib/search-functions';
|