@masterteam/components 0.0.86 → 0.0.88
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/assets/common.css +1 -1
- package/assets/i18n/ar.json +6 -2
- package/assets/i18n/en.json +6 -2
- package/fesm2022/masterteam-components-client-page-menu.mjs +28 -0
- package/fesm2022/masterteam-components-client-page-menu.mjs.map +1 -0
- package/fesm2022/masterteam-components-client-page.mjs +50 -0
- package/fesm2022/masterteam-components-client-page.mjs.map +1 -0
- package/fesm2022/masterteam-components-confirmation.mjs +4 -4
- package/fesm2022/masterteam-components-confirmation.mjs.map +1 -1
- package/fesm2022/masterteam-components-formula.mjs +2 -2
- package/fesm2022/masterteam-components-formula.mjs.map +1 -1
- package/fesm2022/masterteam-components-pick-list-field.mjs +1 -1
- package/fesm2022/masterteam-components-pick-list-field.mjs.map +1 -1
- package/fesm2022/masterteam-components-sidebar.mjs +14 -4
- package/fesm2022/masterteam-components-sidebar.mjs.map +1 -1
- package/fesm2022/masterteam-components-statistic-card.mjs +21 -0
- package/fesm2022/masterteam-components-statistic-card.mjs.map +1 -0
- package/fesm2022/masterteam-components-table.mjs +2 -2
- package/fesm2022/masterteam-components-table.mjs.map +1 -1
- package/fesm2022/masterteam-components-topbar.mjs +4 -3
- package/fesm2022/masterteam-components-topbar.mjs.map +1 -1
- package/fesm2022/masterteam-components.mjs +4 -1
- package/fesm2022/masterteam-components.mjs.map +1 -1
- package/package.json +13 -1
- package/types/masterteam-components-client-page-menu.d.ts +24 -0
- package/types/masterteam-components-client-page.d.ts +27 -0
- package/types/masterteam-components-sidebar.d.ts +8 -1
- package/types/masterteam-components-statistic-card.d.ts +17 -0
- package/types/masterteam-components-topbar.d.ts +2 -1
|
@@ -9,12 +9,19 @@ interface SidebarItem {
|
|
|
9
9
|
}
|
|
10
10
|
declare class Sidebar {
|
|
11
11
|
items: _angular_core.InputSignal<SidebarItem[]>;
|
|
12
|
+
logo: _angular_core.InputSignal<string | undefined>;
|
|
13
|
+
logoLink: _angular_core.InputSignal<string | any[] | undefined>;
|
|
14
|
+
title: _angular_core.InputSignal<string | undefined>;
|
|
15
|
+
subTitle: _angular_core.InputSignal<string | undefined>;
|
|
12
16
|
bgColor: _angular_core.InputSignal<string | undefined>;
|
|
13
17
|
bgImage: _angular_core.InputSignal<string | undefined>;
|
|
14
18
|
bgRepeat: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
15
19
|
iconsColor: _angular_core.InputSignal<string>;
|
|
20
|
+
expanded: _angular_core.WritableSignal<boolean>;
|
|
21
|
+
expandedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
22
|
+
toggleSidebar(): void;
|
|
16
23
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Sidebar, never>;
|
|
17
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Sidebar, "mt-sidebar", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "bgColor": { "alias": "bgColor"; "required": false; "isSignal": true; }; "bgImage": { "alias": "bgImage"; "required": false; "isSignal": true; }; "bgRepeat": { "alias": "bgRepeat"; "required": false; "isSignal": true; }; "iconsColor": { "alias": "iconsColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
24
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Sidebar, "mt-sidebar", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "logo": { "alias": "logo"; "required": false; "isSignal": true; }; "logoLink": { "alias": "logoLink"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subTitle": { "alias": "subTitle"; "required": false; "isSignal": true; }; "bgColor": { "alias": "bgColor"; "required": false; "isSignal": true; }; "bgImage": { "alias": "bgImage"; "required": false; "isSignal": true; }; "bgRepeat": { "alias": "bgRepeat"; "required": false; "isSignal": true; }; "iconsColor": { "alias": "iconsColor"; "required": false; "isSignal": true; }; }, { "expandedChange": "expandedChange"; }, never, never, true, never>;
|
|
18
25
|
}
|
|
19
26
|
|
|
20
27
|
export { Sidebar };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { MTIcon } from '@masterteam/icons';
|
|
3
|
+
|
|
4
|
+
interface StatisticCardData {
|
|
5
|
+
title: string;
|
|
6
|
+
subTitle: string;
|
|
7
|
+
icon: MTIcon;
|
|
8
|
+
color: string;
|
|
9
|
+
}
|
|
10
|
+
declare class StatisticCard {
|
|
11
|
+
readonly data: i0.InputSignal<StatisticCardData>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StatisticCard, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StatisticCard, "mt-statistic-card", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export { StatisticCard };
|
|
17
|
+
export type { StatisticCardData };
|
|
@@ -9,8 +9,9 @@ declare class Topbar {
|
|
|
9
9
|
textColor: _angular_core.InputSignal<string>;
|
|
10
10
|
title: _angular_core.InputSignal<string | undefined>;
|
|
11
11
|
subTitle: _angular_core.InputSignal<string | undefined>;
|
|
12
|
+
showBranding: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
12
13
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Topbar, never>;
|
|
13
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Topbar, "mt-topbar", never, { "logo": { "alias": "logo"; "required": false; "isSignal": true; }; "logoLink": { "alias": "logoLink"; "required": false; "isSignal": true; }; "bgColor": { "alias": "bgColor"; "required": false; "isSignal": true; }; "bgImage": { "alias": "bgImage"; "required": false; "isSignal": true; }; "bgRepeat": { "alias": "bgRepeat"; "required": false; "isSignal": true; }; "textColor": { "alias": "textColor"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subTitle": { "alias": "subTitle"; "required": false; "isSignal": true; }; }, {}, never, ["[actions]"], true, never>;
|
|
14
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Topbar, "mt-topbar", never, { "logo": { "alias": "logo"; "required": false; "isSignal": true; }; "logoLink": { "alias": "logoLink"; "required": false; "isSignal": true; }; "bgColor": { "alias": "bgColor"; "required": false; "isSignal": true; }; "bgImage": { "alias": "bgImage"; "required": false; "isSignal": true; }; "bgRepeat": { "alias": "bgRepeat"; "required": false; "isSignal": true; }; "textColor": { "alias": "textColor"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subTitle": { "alias": "subTitle"; "required": false; "isSignal": true; }; "showBranding": { "alias": "showBranding"; "required": false; "isSignal": true; }; }, {}, never, ["[actions]"], true, never>;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
export { Topbar };
|