@masterteam/components 0.0.56 → 0.0.57
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.
|
@@ -12,19 +12,19 @@ class Page {
|
|
|
12
12
|
title = input.required(...(ngDevMode ? [{ debugName: "title" }] : []));
|
|
13
13
|
tabs = input([], ...(ngDevMode ? [{ debugName: "tabs" }] : []));
|
|
14
14
|
activeTab = input(...(ngDevMode ? [undefined, { debugName: "activeTab" }] : []));
|
|
15
|
+
contentClass = input('', ...(ngDevMode ? [{ debugName: "contentClass" }] : []));
|
|
16
|
+
contentId = input(...(ngDevMode ? [undefined, { debugName: "contentId" }] : []));
|
|
15
17
|
titleEnd = contentChild('titleEnd', ...(ngDevMode ? [{ debugName: "titleEnd" }] : []));
|
|
16
18
|
headerEnd = contentChild('headerEnd', ...(ngDevMode ? [{ debugName: "headerEnd" }] : []));
|
|
17
19
|
content = viewChild('content', ...(ngDevMode ? [{ debugName: "content" }] : []));
|
|
18
20
|
backButtonClick = output();
|
|
19
21
|
tabChange = output();
|
|
20
|
-
contentClass = input('', ...(ngDevMode ? [{ debugName: "contentClass" }] : []));
|
|
21
|
-
id = input('', ...(ngDevMode ? [{ debugName: "id" }] : []));
|
|
22
22
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: Page, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
23
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.3", type: Page, isStandalone: true, selector: "mt-page", inputs: { backButton: { classPropertyName: "backButton", publicName: "backButton", isSignal: true, isRequired: false, transformFunction: null }, backButtonIcon: { classPropertyName: "backButtonIcon", publicName: "backButtonIcon", isSignal: true, isRequired: false, transformFunction: null }, avatarIcon: { classPropertyName: "avatarIcon", publicName: "avatarIcon", isSignal: true, isRequired: false, transformFunction: null }, avatarStyle: { classPropertyName: "avatarStyle", publicName: "avatarStyle", isSignal: true, isRequired: false, transformFunction: null }, avatarShape: { classPropertyName: "avatarShape", publicName: "avatarShape", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: true, transformFunction: null }, tabs: { classPropertyName: "tabs", publicName: "tabs", isSignal: true, isRequired: false, transformFunction: null }, activeTab: { classPropertyName: "activeTab", publicName: "activeTab", isSignal: true, isRequired: false, transformFunction: null }, contentClass: { classPropertyName: "contentClass", publicName: "contentClass", isSignal: true, isRequired: false, transformFunction: null },
|
|
23
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.3", type: Page, isStandalone: true, selector: "mt-page", inputs: { backButton: { classPropertyName: "backButton", publicName: "backButton", isSignal: true, isRequired: false, transformFunction: null }, backButtonIcon: { classPropertyName: "backButtonIcon", publicName: "backButtonIcon", isSignal: true, isRequired: false, transformFunction: null }, avatarIcon: { classPropertyName: "avatarIcon", publicName: "avatarIcon", isSignal: true, isRequired: false, transformFunction: null }, avatarStyle: { classPropertyName: "avatarStyle", publicName: "avatarStyle", isSignal: true, isRequired: false, transformFunction: null }, avatarShape: { classPropertyName: "avatarShape", publicName: "avatarShape", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: true, transformFunction: null }, tabs: { classPropertyName: "tabs", publicName: "tabs", isSignal: true, isRequired: false, transformFunction: null }, activeTab: { classPropertyName: "activeTab", publicName: "activeTab", isSignal: true, isRequired: false, transformFunction: null }, contentClass: { classPropertyName: "contentClass", publicName: "contentClass", isSignal: true, isRequired: false, transformFunction: null }, contentId: { classPropertyName: "contentId", publicName: "contentId", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { backButtonClick: "backButtonClick", tabChange: "tabChange" }, queries: [{ propertyName: "titleEnd", first: true, predicate: ["titleEnd"], descendants: true, isSignal: true }, { propertyName: "headerEnd", first: true, predicate: ["headerEnd"], descendants: true, isSignal: true }], viewQueries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true, isSignal: true }], ngImport: i0, template: "<div class=\"page h-full flex flex-col\">\n <mt-page-header\n [backButton]=\"backButton()\"\n [backButtonIcon]=\"backButtonIcon()\"\n [avatarIcon]=\"avatarIcon()\"\n [avatarStyle]=\"avatarStyle()\"\n [avatarShape]=\"avatarShape()\"\n [title]=\"title()\"\n [tabs]=\"tabs()\"\n [activeTab]=\"activeTab()\"\n (backButtonClick)=\"backButtonClick.emit()\"\n (tabChange)=\"tabChange.emit($event)\"\n >\n @if (titleEnd(); as template) {\n <ng-template #titleEnd>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </ng-template>\n }\n\n @if (headerEnd(); as template) {\n <ng-template #headerEnd>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </ng-template>\n }\n </mt-page-header>\n\n <div\n [class]=\"'flex-1 overflow-y-auto p-5 relative ' + contentClass()\"\n [id]=\"contentId() ?? 'page-content'\"\n #content\n >\n <ng-content></ng-content>\n </div>\n</div>\n", dependencies: [{ kind: "component", type: PageHeader, selector: "mt-page-header", inputs: ["backButton", "backButtonIcon", "avatarIcon", "avatarStyle", "avatarShape", "title", "tabs", "activeTab"], outputs: ["backButtonClick", "tabChange"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
24
24
|
}
|
|
25
25
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: Page, decorators: [{
|
|
26
26
|
type: Component,
|
|
27
|
-
args: [{ selector: 'mt-page', standalone: true, imports: [PageHeader, NgTemplateOutlet], template: "<div class=\"page h-full flex flex-col\">\n <mt-page-header\n [backButton]=\"backButton()\"\n [backButtonIcon]=\"backButtonIcon()\"\n [avatarIcon]=\"avatarIcon()\"\n [avatarStyle]=\"avatarStyle()\"\n [avatarShape]=\"avatarShape()\"\n [title]=\"title()\"\n [tabs]=\"tabs()\"\n [activeTab]=\"activeTab()\"\n (backButtonClick)=\"backButtonClick.emit()\"\n (tabChange)=\"tabChange.emit($event)\"\n >\n @if (titleEnd(); as template) {\n <ng-template #titleEnd>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </ng-template>\n }\n\n @if (headerEnd(); as template) {\n <ng-template #headerEnd>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </ng-template>\n }\n </mt-page-header>\n\n <div\n [class]=\"'flex-1 overflow-y-auto p-5 ' + contentClass()\"\n [id]=\"
|
|
27
|
+
args: [{ selector: 'mt-page', standalone: true, imports: [PageHeader, NgTemplateOutlet], template: "<div class=\"page h-full flex flex-col\">\n <mt-page-header\n [backButton]=\"backButton()\"\n [backButtonIcon]=\"backButtonIcon()\"\n [avatarIcon]=\"avatarIcon()\"\n [avatarStyle]=\"avatarStyle()\"\n [avatarShape]=\"avatarShape()\"\n [title]=\"title()\"\n [tabs]=\"tabs()\"\n [activeTab]=\"activeTab()\"\n (backButtonClick)=\"backButtonClick.emit()\"\n (tabChange)=\"tabChange.emit($event)\"\n >\n @if (titleEnd(); as template) {\n <ng-template #titleEnd>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </ng-template>\n }\n\n @if (headerEnd(); as template) {\n <ng-template #headerEnd>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </ng-template>\n }\n </mt-page-header>\n\n <div\n [class]=\"'flex-1 overflow-y-auto p-5 relative ' + contentClass()\"\n [id]=\"contentId() ?? 'page-content'\"\n #content\n >\n <ng-content></ng-content>\n </div>\n</div>\n" }]
|
|
28
28
|
}] });
|
|
29
29
|
|
|
30
30
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"masterteam-components-page.mjs","sources":["../../../../packages/masterteam/components/page/page.ts","../../../../packages/masterteam/components/page/page.html","../../../../packages/masterteam/components/page/masterteam-components-page.ts"],"sourcesContent":["import {\n Component,\n input,\n output,\n contentChild,\n TemplateRef,\n viewChild,\n ElementRef,\n booleanAttribute,\n} from '@angular/core';\nimport { PageHeader, PageHeaderTab } from '@masterteam/components/page-header';\nimport { MTIcon } from '@masterteam/icons';\nimport { NgTemplateOutlet } from '@angular/common';\n\n@Component({\n selector: 'mt-page',\n standalone: true,\n imports: [PageHeader, NgTemplateOutlet],\n templateUrl: './page.html',\n})\nexport class Page {\n backButton = input<boolean, unknown>(false, { transform: booleanAttribute });\n backButtonIcon = input<'arrow' | 'close'>();\n avatarIcon = input<MTIcon>();\n avatarStyle = input<Record<string, string>>();\n avatarShape = input<'circle' | 'square'>();\n title = input.required<string>();\n tabs = input<PageHeaderTab[]>([]);\n activeTab = input<string | number>();\n\n titleEnd = contentChild<TemplateRef<any>>('titleEnd');\n headerEnd = contentChild<TemplateRef<any>>('headerEnd');\n content = viewChild<ElementRef<HTMLElement>>('content');\n\n backButtonClick = output<void>();\n tabChange = output<string | number>();\n
|
|
1
|
+
{"version":3,"file":"masterteam-components-page.mjs","sources":["../../../../packages/masterteam/components/page/page.ts","../../../../packages/masterteam/components/page/page.html","../../../../packages/masterteam/components/page/masterteam-components-page.ts"],"sourcesContent":["import {\n Component,\n input,\n output,\n contentChild,\n TemplateRef,\n viewChild,\n ElementRef,\n booleanAttribute,\n} from '@angular/core';\nimport { PageHeader, PageHeaderTab } from '@masterteam/components/page-header';\nimport { MTIcon } from '@masterteam/icons';\nimport { NgTemplateOutlet } from '@angular/common';\n\n@Component({\n selector: 'mt-page',\n standalone: true,\n imports: [PageHeader, NgTemplateOutlet],\n templateUrl: './page.html',\n})\nexport class Page {\n backButton = input<boolean, unknown>(false, { transform: booleanAttribute });\n backButtonIcon = input<'arrow' | 'close'>();\n avatarIcon = input<MTIcon>();\n avatarStyle = input<Record<string, string>>();\n avatarShape = input<'circle' | 'square'>();\n title = input.required<string>();\n tabs = input<PageHeaderTab[]>([]);\n activeTab = input<string | number>();\n contentClass = input<string>('');\n contentId = input<string>();\n\n titleEnd = contentChild<TemplateRef<any>>('titleEnd');\n headerEnd = contentChild<TemplateRef<any>>('headerEnd');\n content = viewChild<ElementRef<HTMLElement>>('content');\n\n backButtonClick = output<void>();\n tabChange = output<string | number>();\n}\n","<div class=\"page h-full flex flex-col\">\n <mt-page-header\n [backButton]=\"backButton()\"\n [backButtonIcon]=\"backButtonIcon()\"\n [avatarIcon]=\"avatarIcon()\"\n [avatarStyle]=\"avatarStyle()\"\n [avatarShape]=\"avatarShape()\"\n [title]=\"title()\"\n [tabs]=\"tabs()\"\n [activeTab]=\"activeTab()\"\n (backButtonClick)=\"backButtonClick.emit()\"\n (tabChange)=\"tabChange.emit($event)\"\n >\n @if (titleEnd(); as template) {\n <ng-template #titleEnd>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </ng-template>\n }\n\n @if (headerEnd(); as template) {\n <ng-template #headerEnd>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </ng-template>\n }\n </mt-page-header>\n\n <div\n [class]=\"'flex-1 overflow-y-auto p-5 relative ' + contentClass()\"\n [id]=\"contentId() ?? 'page-content'\"\n #content\n >\n <ng-content></ng-content>\n </div>\n</div>\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.57",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": ".",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"types": "./avatar/index.d.ts",
|
|
44
44
|
"default": "./fesm2022/masterteam-components-avatar.mjs"
|
|
45
45
|
},
|
|
46
|
-
"./breadcrumb": {
|
|
47
|
-
"types": "./breadcrumb/index.d.ts",
|
|
48
|
-
"default": "./fesm2022/masterteam-components-breadcrumb.mjs"
|
|
49
|
-
},
|
|
50
46
|
"./avatar-text": {
|
|
51
47
|
"types": "./avatar-text/index.d.ts",
|
|
52
48
|
"default": "./fesm2022/masterteam-components-avatar-text.mjs"
|
|
53
49
|
},
|
|
50
|
+
"./breadcrumb": {
|
|
51
|
+
"types": "./breadcrumb/index.d.ts",
|
|
52
|
+
"default": "./fesm2022/masterteam-components-breadcrumb.mjs"
|
|
53
|
+
},
|
|
54
54
|
"./button": {
|
|
55
55
|
"types": "./button/index.d.ts",
|
|
56
56
|
"default": "./fesm2022/masterteam-components-button.mjs"
|
|
@@ -63,34 +63,30 @@
|
|
|
63
63
|
"types": "./card/index.d.ts",
|
|
64
64
|
"default": "./fesm2022/masterteam-components-card.mjs"
|
|
65
65
|
},
|
|
66
|
-
"./checkbox-field": {
|
|
67
|
-
"types": "./checkbox-field/index.d.ts",
|
|
68
|
-
"default": "./fesm2022/masterteam-components-checkbox-field.mjs"
|
|
69
|
-
},
|
|
70
66
|
"./chip": {
|
|
71
67
|
"types": "./chip/index.d.ts",
|
|
72
68
|
"default": "./fesm2022/masterteam-components-chip.mjs"
|
|
73
69
|
},
|
|
70
|
+
"./checkbox-field": {
|
|
71
|
+
"types": "./checkbox-field/index.d.ts",
|
|
72
|
+
"default": "./fesm2022/masterteam-components-checkbox-field.mjs"
|
|
73
|
+
},
|
|
74
74
|
"./color-picker-field": {
|
|
75
75
|
"types": "./color-picker-field/index.d.ts",
|
|
76
76
|
"default": "./fesm2022/masterteam-components-color-picker-field.mjs"
|
|
77
77
|
},
|
|
78
|
-
"./confirmation": {
|
|
79
|
-
"types": "./confirmation/index.d.ts",
|
|
80
|
-
"default": "./fesm2022/masterteam-components-confirmation.mjs"
|
|
81
|
-
},
|
|
82
78
|
"./date-field": {
|
|
83
79
|
"types": "./date-field/index.d.ts",
|
|
84
80
|
"default": "./fesm2022/masterteam-components-date-field.mjs"
|
|
85
81
|
},
|
|
82
|
+
"./confirmation": {
|
|
83
|
+
"types": "./confirmation/index.d.ts",
|
|
84
|
+
"default": "./fesm2022/masterteam-components-confirmation.mjs"
|
|
85
|
+
},
|
|
86
86
|
"./dialog": {
|
|
87
87
|
"types": "./dialog/index.d.ts",
|
|
88
88
|
"default": "./fesm2022/masterteam-components-dialog.mjs"
|
|
89
89
|
},
|
|
90
|
-
"./dynamic-drawer": {
|
|
91
|
-
"types": "./dynamic-drawer/index.d.ts",
|
|
92
|
-
"default": "./fesm2022/masterteam-components-dynamic-drawer.mjs"
|
|
93
|
-
},
|
|
94
90
|
"./drawer": {
|
|
95
91
|
"types": "./drawer/index.d.ts",
|
|
96
92
|
"default": "./fesm2022/masterteam-components-drawer.mjs"
|
|
@@ -99,14 +95,18 @@
|
|
|
99
95
|
"types": "./editor-field/index.d.ts",
|
|
100
96
|
"default": "./fesm2022/masterteam-components-editor-field.mjs"
|
|
101
97
|
},
|
|
102
|
-
"./formula-builder": {
|
|
103
|
-
"types": "./formula-builder/index.d.ts",
|
|
104
|
-
"default": "./fesm2022/masterteam-components-formula-builder.mjs"
|
|
105
|
-
},
|
|
106
98
|
"./field-validation": {
|
|
107
99
|
"types": "./field-validation/index.d.ts",
|
|
108
100
|
"default": "./fesm2022/masterteam-components-field-validation.mjs"
|
|
109
101
|
},
|
|
102
|
+
"./dynamic-drawer": {
|
|
103
|
+
"types": "./dynamic-drawer/index.d.ts",
|
|
104
|
+
"default": "./fesm2022/masterteam-components-dynamic-drawer.mjs"
|
|
105
|
+
},
|
|
106
|
+
"./formula-builder": {
|
|
107
|
+
"types": "./formula-builder/index.d.ts",
|
|
108
|
+
"default": "./fesm2022/masterteam-components-formula-builder.mjs"
|
|
109
|
+
},
|
|
110
110
|
"./icon-field": {
|
|
111
111
|
"types": "./icon-field/index.d.ts",
|
|
112
112
|
"default": "./fesm2022/masterteam-components-icon-field.mjs"
|
|
@@ -115,6 +115,10 @@
|
|
|
115
115
|
"types": "./list/index.d.ts",
|
|
116
116
|
"default": "./fesm2022/masterteam-components-list.mjs"
|
|
117
117
|
},
|
|
118
|
+
"./menu": {
|
|
119
|
+
"types": "./menu/index.d.ts",
|
|
120
|
+
"default": "./fesm2022/masterteam-components-menu.mjs"
|
|
121
|
+
},
|
|
118
122
|
"./modal": {
|
|
119
123
|
"types": "./modal/index.d.ts",
|
|
120
124
|
"default": "./fesm2022/masterteam-components-modal.mjs"
|
|
@@ -123,30 +127,26 @@
|
|
|
123
127
|
"types": "./module-summary-card/index.d.ts",
|
|
124
128
|
"default": "./fesm2022/masterteam-components-module-summary-card.mjs"
|
|
125
129
|
},
|
|
126
|
-
"./menu": {
|
|
127
|
-
"types": "./menu/index.d.ts",
|
|
128
|
-
"default": "./fesm2022/masterteam-components-menu.mjs"
|
|
129
|
-
},
|
|
130
130
|
"./multi-select-field": {
|
|
131
131
|
"types": "./multi-select-field/index.d.ts",
|
|
132
132
|
"default": "./fesm2022/masterteam-components-multi-select-field.mjs"
|
|
133
133
|
},
|
|
134
|
-
"./
|
|
135
|
-
"types": "./
|
|
136
|
-
"default": "./fesm2022/masterteam-components-
|
|
134
|
+
"./number-field": {
|
|
135
|
+
"types": "./number-field/index.d.ts",
|
|
136
|
+
"default": "./fesm2022/masterteam-components-number-field.mjs"
|
|
137
137
|
},
|
|
138
138
|
"./paginator": {
|
|
139
139
|
"types": "./paginator/index.d.ts",
|
|
140
140
|
"default": "./fesm2022/masterteam-components-paginator.mjs"
|
|
141
141
|
},
|
|
142
|
-
"./number-field": {
|
|
143
|
-
"types": "./number-field/index.d.ts",
|
|
144
|
-
"default": "./fesm2022/masterteam-components-number-field.mjs"
|
|
145
|
-
},
|
|
146
142
|
"./page-header": {
|
|
147
143
|
"types": "./page-header/index.d.ts",
|
|
148
144
|
"default": "./fesm2022/masterteam-components-page-header.mjs"
|
|
149
145
|
},
|
|
146
|
+
"./page": {
|
|
147
|
+
"types": "./page/index.d.ts",
|
|
148
|
+
"default": "./fesm2022/masterteam-components-page.mjs"
|
|
149
|
+
},
|
|
150
150
|
"./pick-list-field": {
|
|
151
151
|
"types": "./pick-list-field/index.d.ts",
|
|
152
152
|
"default": "./fesm2022/masterteam-components-pick-list-field.mjs"
|
|
@@ -159,10 +159,6 @@
|
|
|
159
159
|
"types": "./radio-button-field/index.d.ts",
|
|
160
160
|
"default": "./fesm2022/masterteam-components-radio-button-field.mjs"
|
|
161
161
|
},
|
|
162
|
-
"./sidebar": {
|
|
163
|
-
"types": "./sidebar/index.d.ts",
|
|
164
|
-
"default": "./fesm2022/masterteam-components-sidebar.mjs"
|
|
165
|
-
},
|
|
166
162
|
"./select-field": {
|
|
167
163
|
"types": "./select-field/index.d.ts",
|
|
168
164
|
"default": "./fesm2022/masterteam-components-select-field.mjs"
|
|
@@ -171,14 +167,14 @@
|
|
|
171
167
|
"types": "./radio-cards-field/index.d.ts",
|
|
172
168
|
"default": "./fesm2022/masterteam-components-radio-cards-field.mjs"
|
|
173
169
|
},
|
|
170
|
+
"./sidebar": {
|
|
171
|
+
"types": "./sidebar/index.d.ts",
|
|
172
|
+
"default": "./fesm2022/masterteam-components-sidebar.mjs"
|
|
173
|
+
},
|
|
174
174
|
"./slider-field": {
|
|
175
175
|
"types": "./slider-field/index.d.ts",
|
|
176
176
|
"default": "./fesm2022/masterteam-components-slider-field.mjs"
|
|
177
177
|
},
|
|
178
|
-
"./tabs": {
|
|
179
|
-
"types": "./tabs/index.d.ts",
|
|
180
|
-
"default": "./fesm2022/masterteam-components-tabs.mjs"
|
|
181
|
-
},
|
|
182
178
|
"./table": {
|
|
183
179
|
"types": "./table/index.d.ts",
|
|
184
180
|
"default": "./fesm2022/masterteam-components-table.mjs"
|
|
@@ -187,9 +183,9 @@
|
|
|
187
183
|
"types": "./text-field/index.d.ts",
|
|
188
184
|
"default": "./fesm2022/masterteam-components-text-field.mjs"
|
|
189
185
|
},
|
|
190
|
-
"./
|
|
191
|
-
"types": "./
|
|
192
|
-
"default": "./fesm2022/masterteam-components-
|
|
186
|
+
"./tabs": {
|
|
187
|
+
"types": "./tabs/index.d.ts",
|
|
188
|
+
"default": "./fesm2022/masterteam-components-tabs.mjs"
|
|
193
189
|
},
|
|
194
190
|
"./toast": {
|
|
195
191
|
"types": "./toast/index.d.ts",
|
|
@@ -199,6 +195,10 @@
|
|
|
199
195
|
"types": "./textarea-field/index.d.ts",
|
|
200
196
|
"default": "./fesm2022/masterteam-components-textarea-field.mjs"
|
|
201
197
|
},
|
|
198
|
+
"./toggle-field": {
|
|
199
|
+
"types": "./toggle-field/index.d.ts",
|
|
200
|
+
"default": "./fesm2022/masterteam-components-toggle-field.mjs"
|
|
201
|
+
},
|
|
202
202
|
"./tooltip": {
|
|
203
203
|
"types": "./tooltip/index.d.ts",
|
|
204
204
|
"default": "./fesm2022/masterteam-components-tooltip.mjs"
|
package/page/index.d.ts
CHANGED
|
@@ -12,15 +12,15 @@ declare class Page {
|
|
|
12
12
|
title: _angular_core.InputSignal<string>;
|
|
13
13
|
tabs: _angular_core.InputSignal<PageHeaderTab[]>;
|
|
14
14
|
activeTab: _angular_core.InputSignal<string | number | undefined>;
|
|
15
|
+
contentClass: _angular_core.InputSignal<string>;
|
|
16
|
+
contentId: _angular_core.InputSignal<string | undefined>;
|
|
15
17
|
titleEnd: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
16
18
|
headerEnd: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
17
19
|
content: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
18
20
|
backButtonClick: _angular_core.OutputEmitterRef<void>;
|
|
19
21
|
tabChange: _angular_core.OutputEmitterRef<string | number>;
|
|
20
|
-
contentClass: _angular_core.InputSignal<string>;
|
|
21
|
-
id: _angular_core.InputSignal<string>;
|
|
22
22
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Page, never>;
|
|
23
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Page, "mt-page", never, { "backButton": { "alias": "backButton"; "required": false; "isSignal": true; }; "backButtonIcon": { "alias": "backButtonIcon"; "required": false; "isSignal": true; }; "avatarIcon": { "alias": "avatarIcon"; "required": false; "isSignal": true; }; "avatarStyle": { "alias": "avatarStyle"; "required": false; "isSignal": true; }; "avatarShape": { "alias": "avatarShape"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; "contentClass": { "alias": "contentClass"; "required": false; "isSignal": true; }; "
|
|
23
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Page, "mt-page", never, { "backButton": { "alias": "backButton"; "required": false; "isSignal": true; }; "backButtonIcon": { "alias": "backButtonIcon"; "required": false; "isSignal": true; }; "avatarIcon": { "alias": "avatarIcon"; "required": false; "isSignal": true; }; "avatarStyle": { "alias": "avatarStyle"; "required": false; "isSignal": true; }; "avatarShape": { "alias": "avatarShape"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; "contentClass": { "alias": "contentClass"; "required": false; "isSignal": true; }; "contentId": { "alias": "contentId"; "required": false; "isSignal": true; }; }, { "backButtonClick": "backButtonClick"; "tabChange": "tabChange"; }, ["titleEnd", "headerEnd"], ["*"], true, never>;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export { Page };
|