@iamgld/ui 1.17.6 → 1.18.6
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/fesm2022/iamgld-ui.mjs +99 -21
- package/fesm2022/iamgld-ui.mjs.map +1 -1
- package/lib/components/buttons/button/button.component.d.ts +2 -2
- package/lib/components/buttons/icon-button/icon-button.component.d.ts +1 -1
- package/lib/components/buttons/link/link.component.d.ts +1 -1
- package/lib/components/buttons/toggle-button/toggle-button.component.d.ts +17 -0
- package/lib/components/buttons/toggle-group/toggle-group.component.d.ts +19 -0
- package/lib/components/icon/icon.component.d.ts +1 -1
- package/lib/components/index.d.ts +2 -0
- package/lib/components/tile/tile.component.d.ts +1 -1
- package/package.json +1 -1
- package/public/styles/layers/_setting.scss +1 -0
|
@@ -3,9 +3,9 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ButtonComponent {
|
|
4
4
|
name: import("@angular/core").InputSignal<string>;
|
|
5
5
|
color: import("@angular/core").InputSignal<"pink" | "purple" | "mustard" | "orange" | "red" | "blue" | "green">;
|
|
6
|
-
size: import("@angular/core").InputSignal<"
|
|
6
|
+
size: import("@angular/core").InputSignal<"small" | "tiny" | "normal" | "medium" | "large">;
|
|
7
7
|
icon: import("@angular/core").InputSignal<Icons | null>;
|
|
8
|
-
iconSize: import("@angular/core").InputSignal<"
|
|
8
|
+
iconSize: import("@angular/core").InputSignal<"small" | "tiny" | "normal" | "medium" | "large" | undefined>;
|
|
9
9
|
moveTopToBottom: import("@angular/core").InputSignalWithTransform<number, string | number>;
|
|
10
10
|
moveLeftToRight: import("@angular/core").InputSignalWithTransform<number, string | number>;
|
|
11
11
|
disabled: import("@angular/core").InputSignalWithTransform<boolean, string | boolean>;
|
|
@@ -3,7 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class IconButtonComponent {
|
|
4
4
|
icon: import("@angular/core").InputSignal<Icons>;
|
|
5
5
|
name: import("@angular/core").InputSignal<string>;
|
|
6
|
-
iconSize: import("@angular/core").InputSignal<"
|
|
6
|
+
iconSize: import("@angular/core").InputSignal<"small" | "tiny" | "normal" | "medium" | "large">;
|
|
7
7
|
space: import("@angular/core").InputSignal<"left" | "right" | "none">;
|
|
8
8
|
moveTopToBottom: import("@angular/core").InputSignalWithTransform<number, string | number>;
|
|
9
9
|
moveLeftToRight: import("@angular/core").InputSignalWithTransform<number, string | number>;
|
|
@@ -7,7 +7,7 @@ export declare class LinkComponent {
|
|
|
7
7
|
active: import("@angular/core").InputSignalWithTransform<boolean, string | boolean>;
|
|
8
8
|
external: import("@angular/core").InputSignalWithTransform<boolean, string | boolean>;
|
|
9
9
|
type: import("@angular/core").InputSignal<"default">;
|
|
10
|
-
align: import("@angular/core").InputSignal<"
|
|
10
|
+
align: import("@angular/core").InputSignal<"center" | "left" | "right">;
|
|
11
11
|
clicked: import("@angular/core").OutputEmitterRef<void>;
|
|
12
12
|
emitClick(): void;
|
|
13
13
|
keyup(): void;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { InputValue } from '../../../models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ToggleButtonComponent {
|
|
4
|
+
value: import("@angular/core").InputSignal<InputValue>;
|
|
5
|
+
changeValue: import("@angular/core").OutputEmitterRef<InputValue>;
|
|
6
|
+
changeFocus: import("@angular/core").OutputEmitterRef<boolean>;
|
|
7
|
+
current: import("@angular/core").WritableSignal<InputValue>;
|
|
8
|
+
disabled: import("@angular/core").WritableSignal<boolean>;
|
|
9
|
+
error: import("@angular/core").WritableSignal<boolean>;
|
|
10
|
+
selected: import("@angular/core").Signal<boolean>;
|
|
11
|
+
select(value: InputValue): void;
|
|
12
|
+
keyup(value: InputValue): void;
|
|
13
|
+
onFocus(): void;
|
|
14
|
+
onBlur(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent, "gld-toggle-button", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; }, { "changeValue": "changeValue"; "changeFocus": "changeFocus"; }, never, ["*"], true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AfterContentInit } from '@angular/core';
|
|
2
|
+
import { InputValue } from '../../../models';
|
|
3
|
+
import { ToggleButtonComponent } from './../toggle-button/toggle-button.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ToggleGroupComponent implements AfterContentInit {
|
|
6
|
+
#private;
|
|
7
|
+
name: import("@angular/core").InputSignal<string>;
|
|
8
|
+
initialValue: import("@angular/core").InputSignal<InputValue>;
|
|
9
|
+
changeValue: import("@angular/core").OutputEmitterRef<InputValue>;
|
|
10
|
+
changeFocus: import("@angular/core").OutputEmitterRef<boolean>;
|
|
11
|
+
toggleButtonChildren: import("@angular/core").Signal<readonly ToggleButtonComponent[]>;
|
|
12
|
+
constructor();
|
|
13
|
+
ngAfterContentInit(): void;
|
|
14
|
+
updateCurrentInChildren(value: InputValue): void;
|
|
15
|
+
updateErrorInChildren(error: boolean): void;
|
|
16
|
+
setDisabledState(disabled: boolean): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleGroupComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleGroupComponent, "gld-toggle-group", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "initialValue": { "alias": "initialValue"; "required": false; "isSignal": true; }; }, { "changeValue": "changeValue"; "changeFocus": "changeFocus"; }, ["toggleButtonChildren"], ["gld-toggle-button"], true, never>;
|
|
19
|
+
}
|
|
@@ -4,7 +4,7 @@ export declare class IconComponent {
|
|
|
4
4
|
readonly IconsSpace: typeof IconsSpace;
|
|
5
5
|
readonly Icons: typeof Icons;
|
|
6
6
|
icon: import("@angular/core").InputSignal<Icons>;
|
|
7
|
-
size: import("@angular/core").InputSignal<"
|
|
7
|
+
size: import("@angular/core").InputSignal<"small" | "tiny" | "normal" | "medium" | "large">;
|
|
8
8
|
space: import("@angular/core").InputSignal<"left" | "right" | "none">;
|
|
9
9
|
moveTopToBottom: import("@angular/core").InputSignalWithTransform<number, string | number>;
|
|
10
10
|
moveLeftToRight: import("@angular/core").InputSignalWithTransform<number, string | number>;
|
|
@@ -4,6 +4,8 @@ export * from './loaders/loader/loader.component';
|
|
|
4
4
|
export * from './buttons/button/button.component';
|
|
5
5
|
export * from './buttons/link/link.component';
|
|
6
6
|
export * from './buttons/icon-button/icon-button.component';
|
|
7
|
+
export * from './buttons/toggle-group/toggle-group.component';
|
|
8
|
+
export * from './buttons/toggle-button/toggle-button.component';
|
|
7
9
|
export * from './controls/input-date/input-date.component';
|
|
8
10
|
export * from './controls/input-error/input-error.component';
|
|
9
11
|
export * from './controls/input-hint/input-hint.component';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class TileComponent {
|
|
3
3
|
color: import("@angular/core").InputSignal<"pink" | "purple" | "mustard" | "orange" | "red" | "blue" | "green" | "default">;
|
|
4
|
-
paddingSize: import("@angular/core").InputSignal<"
|
|
4
|
+
paddingSize: import("@angular/core").InputSignal<"small" | "tiny" | "normal" | "medium" | "large" | "zero">;
|
|
5
5
|
background: import("@angular/core").InputSignalWithTransform<boolean, string | boolean>;
|
|
6
6
|
hover: import("@angular/core").InputSignalWithTransform<boolean, string | boolean>;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<TileComponent, never>;
|
package/package.json
CHANGED