@tedi-design-system/angular 4.1.1-rc.2 → 4.2.0-rc.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/community/components/buttons/floating-button/floating-button.component.d.ts +30 -0
- package/community/components/buttons/floating-button/floating-button.component.d.ts.map +1 -0
- package/community/components/buttons/floating-button/index.d.ts +2 -0
- package/community/components/buttons/floating-button/index.d.ts.map +1 -0
- package/community/components/buttons/index.d.ts +2 -0
- package/community/components/buttons/index.d.ts.map +1 -0
- package/community/components/overlay/modal/modal.component.d.ts +1 -1
- package/community/index.d.ts +1 -0
- package/community/index.d.ts.map +1 -1
- package/fesm2022/tedi-design-system-angular-community.mjs +57 -13
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +52 -25
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/package.json +1 -1
- package/tedi/components/buttons/button/base-button.directive.d.ts +17 -0
- package/tedi/components/buttons/button/base-button.directive.d.ts.map +1 -0
- package/tedi/components/buttons/button/button.component.d.ts +3 -8
- package/tedi/components/buttons/button/button.component.d.ts.map +1 -1
- package/tedi/components/buttons/index.d.ts +1 -0
- package/tedi/components/buttons/index.d.ts.map +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { BaseButtonDirective } from "@tedi-design-system/angular/tedi";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@tedi-design-system/angular/tedi";
|
|
5
|
+
export type FloatingButtonVariant = "primary" | "secondary";
|
|
6
|
+
export type FloatingButtonSize = "default" | "large";
|
|
7
|
+
export type FloatingButtonAxis = "horizontal" | "vertical";
|
|
8
|
+
export declare class FloatingButtonComponent implements OnInit {
|
|
9
|
+
/**
|
|
10
|
+
* Specifies the color theme of the button. The color should meet accessibility standards for color contrast.
|
|
11
|
+
* @default primary
|
|
12
|
+
*/
|
|
13
|
+
variant: import("@angular/core").InputSignal<FloatingButtonVariant>;
|
|
14
|
+
/**
|
|
15
|
+
* Defines the size of the button.
|
|
16
|
+
* @default default
|
|
17
|
+
*/
|
|
18
|
+
size: import("@angular/core").InputSignal<FloatingButtonSize>;
|
|
19
|
+
/**
|
|
20
|
+
* Button axis
|
|
21
|
+
* @default horizontal
|
|
22
|
+
*/
|
|
23
|
+
axis: import("@angular/core").InputSignal<FloatingButtonAxis>;
|
|
24
|
+
buttonDirective: BaseButtonDirective;
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
floatClasses: import("@angular/core").Signal<string>;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FloatingButtonComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FloatingButtonComponent, "[tedi-floating-button]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "axis": { "alias": "axis"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.BaseButtonDirective; inputs: {}; outputs: {}; }]>;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=floating-button.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"floating-button.component.d.ts","sourceRoot":"","sources":["../../../../../community/components/buttons/floating-button/floating-button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;;;AAEvE,MAAM,MAAM,qBAAqB,GAAG,SAAS,GAAG,WAAW,CAAC;AAE5D,MAAM,MAAM,kBAAkB,GAAG,SAAS,GAAG,OAAO,CAAC;AACrD,MAAM,MAAM,kBAAkB,GAAG,YAAY,GAAG,UAAU,CAAC;AAE3D,qBAca,uBAAwB,YAAW,MAAM;IACpD;;;OAGG;IACH,OAAO,6DAA2C;IAClD;;;OAGG;IACH,IAAI,0DAAwC;IAC5C;;;OAGG;IACH,IAAI,0DAA2C;IAE/C,eAAe,sBAA+B;IAE9C,QAAQ;IAIR,YAAY,yCAQT;yCA/BQ,uBAAuB;2CAAvB,uBAAuB;CAgCnC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../community/components/buttons/floating-button/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../community/components/buttons/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"}
|
|
@@ -12,7 +12,7 @@ export declare const modalBreakpoints: readonly ["xs", "sm", "md", "lg", "xl"];
|
|
|
12
12
|
export type ModalBreakpoint = "xs" | "sm" | "md" | "lg" | "xl";
|
|
13
13
|
export declare class ModalComponent implements OnInit {
|
|
14
14
|
readonly maxWidth: import("@angular/core").ModelSignal<ModalBreakpoint>;
|
|
15
|
-
readonly variant: import("@angular/core").ModelSignal<"
|
|
15
|
+
readonly variant: import("@angular/core").ModelSignal<"default" | "small">;
|
|
16
16
|
readonly dialogRef: DialogRef<any, any> | null;
|
|
17
17
|
readonly dialogData: any;
|
|
18
18
|
readonly hostClasses: import("@angular/core").Signal<string>;
|
package/community/index.d.ts
CHANGED
package/community/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../community/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../community/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC"}
|