@skysoftware-co/bayan-core-widgets-ui 0.0.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/README.md +336 -0
- package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs +966 -0
- package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/lib/shared/common-methods/navigation.utils.d.ts +4 -0
- package/lib/shared/common-methods/navigation.utils.d.ts.map +1 -0
- package/lib/shared/menu.dtos.d.ts +91 -0
- package/lib/shared/menu.dtos.d.ts.map +1 -0
- package/lib/shared/menu.service.d.ts +24 -0
- package/lib/shared/menu.service.d.ts.map +1 -0
- package/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.d.ts +18 -0
- package/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.d.ts.map +1 -0
- package/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.d.ts +30 -0
- package/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.d.ts.map +1 -0
- package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts +47 -0
- package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts.map +1 -0
- package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts +22 -0
- package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts.map +1 -0
- package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts +24 -0
- package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts.map +1 -0
- package/lib/top-menu-widget/components/settings-widget/settings-widget.component.d.ts +35 -0
- package/lib/top-menu-widget/components/settings-widget/settings-widget.component.d.ts.map +1 -0
- package/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.d.ts +29 -0
- package/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.d.ts.map +1 -0
- package/lib/top-menu-widget/top-menu-widget.component.d.ts +72 -0
- package/lib/top-menu-widget/top-menu-widget.component.d.ts.map +1 -0
- package/lib/top-menu-widget/top-menu-widget.models.d.ts +63 -0
- package/lib/top-menu-widget/top-menu-widget.models.d.ts.map +1 -0
- package/package.json +47 -0
- package/public-api.d.ts +4 -0
- package/public-api.d.ts.map +1 -0
- package/skysoftware-co-bayan-core-widgets-ui.d.ts.map +1 -0
package/README.md
ADDED
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
# @skysoftware-co/bayan-core-widgets-ui
|
|
2
|
+
|
|
3
|
+
Reusable Angular widgets for Bayan top-menu scenarios.
|
|
4
|
+
|
|
5
|
+
## Package Surface
|
|
6
|
+
|
|
7
|
+
This package currently exports:
|
|
8
|
+
|
|
9
|
+
- `BayanCoreTopMenuWidgetComponent`
|
|
10
|
+
- `BayanCoreTopMenuService`
|
|
11
|
+
- shared DTOs from `menu.dtos`
|
|
12
|
+
|
|
13
|
+
The child widgets are documented below because they make up the top-menu contract, but they are currently intended for internal composition rather than direct package consumption.
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install @skysoftware-co/bayan-core-widgets-ui
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Basic Usage
|
|
22
|
+
|
|
23
|
+
```html
|
|
24
|
+
<bayan-core-top-menu-widget
|
|
25
|
+
[baseUrl]="appBaseUrl"
|
|
26
|
+
[sidebarCollapsed]="sidebarCollapsed"
|
|
27
|
+
[homeUrl]="homeUrl"
|
|
28
|
+
[logoUrl]="logoUrl"
|
|
29
|
+
[collapsedLogoUrl]="collapsedLogoUrl"
|
|
30
|
+
[menuItems]="menuItems"
|
|
31
|
+
[searchItems]="searchItems"
|
|
32
|
+
[userPanel]="userPanel"
|
|
33
|
+
[nameModeItems]="nameModeItems"
|
|
34
|
+
[showGlobalSearch]="true"
|
|
35
|
+
[showUserPanel]="true"
|
|
36
|
+
[showSettings]="true"
|
|
37
|
+
[showNotifications]="true"
|
|
38
|
+
[showHelp]="true"
|
|
39
|
+
[useInternalDialogs]="true"
|
|
40
|
+
[aboutDialog]="aboutDialog"
|
|
41
|
+
[changePasswordDialog]="changePasswordDialog"
|
|
42
|
+
(menuItemClick)="onMenuItemClick($event)"
|
|
43
|
+
(searchSubmit)="onSearchSubmit($event)"
|
|
44
|
+
(searchItemNavigate)="onSearchItemNavigate($event)"
|
|
45
|
+
(propertyChange)="onPropertyChange($event)"
|
|
46
|
+
(signOutClick)="onSignOut()"
|
|
47
|
+
(submitPasswordChange)="onSubmitPasswordChange($event)">
|
|
48
|
+
</bayan-core-top-menu-widget>
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Models
|
|
52
|
+
|
|
53
|
+
```ts
|
|
54
|
+
interface TopMenuWidgetItem {
|
|
55
|
+
id?: string | number;
|
|
56
|
+
menuName: string;
|
|
57
|
+
menuUrl?: string | null;
|
|
58
|
+
children?: TopMenuWidgetItem[];
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
interface TopMenuWidgetSearchItem {
|
|
62
|
+
id?: string | number;
|
|
63
|
+
menuTitle: string;
|
|
64
|
+
menuSubTitle: string;
|
|
65
|
+
menuUrl?: string | null;
|
|
66
|
+
iconClass?: string | null;
|
|
67
|
+
isTranslatable?: boolean;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
interface TopMenuWidgetPropertyOption {
|
|
71
|
+
propertyId: number;
|
|
72
|
+
propertyName: string;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
interface TopMenuWidgetUserPanel {
|
|
76
|
+
userDisplayName: string;
|
|
77
|
+
activePropertyId: number | null;
|
|
78
|
+
activePropertyName: string;
|
|
79
|
+
properties: TopMenuWidgetPropertyOption[];
|
|
80
|
+
isSsoLogin?: boolean;
|
|
81
|
+
photoPath?: string | null;
|
|
82
|
+
nameInitials?: string | null;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
interface TopMenuWidgetNameModeItem {
|
|
86
|
+
id: string;
|
|
87
|
+
text: string;
|
|
88
|
+
selected: boolean;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
interface TopMenuWidgetAboutDialogConfig {
|
|
92
|
+
title?: string;
|
|
93
|
+
logoUrl?: string;
|
|
94
|
+
version?: string;
|
|
95
|
+
versionLabel?: string;
|
|
96
|
+
copyright?: string;
|
|
97
|
+
statusLabel?: string;
|
|
98
|
+
licenseButtonLabel?: string;
|
|
99
|
+
releaseNotesButtonLabel?: string;
|
|
100
|
+
supportButtonLabel?: string;
|
|
101
|
+
closeButtonLabel?: string;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
interface TopMenuWidgetChangePasswordDialogConfig {
|
|
105
|
+
title: string;
|
|
106
|
+
currentPasswordLabel: string;
|
|
107
|
+
newPasswordLabel: string;
|
|
108
|
+
confirmNewPasswordLabel: string;
|
|
109
|
+
primaryButtonText: string;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
interface TopMenuWidgetChangePasswordPayload {
|
|
113
|
+
currentPassword: string;
|
|
114
|
+
newPassword: string;
|
|
115
|
+
confirmNewPassword: string;
|
|
116
|
+
}
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## Top Menu Widget
|
|
120
|
+
|
|
121
|
+
Selector: `bayan-core-top-menu-widget`
|
|
122
|
+
|
|
123
|
+
### Inputs
|
|
124
|
+
|
|
125
|
+
| Name | Type | Default | Description |
|
|
126
|
+
|---|---|---|---|
|
|
127
|
+
| `baseUrl` | `string` | `''` | Base URL used to resolve internal and external navigation targets. |
|
|
128
|
+
| `sidebarCollapsed` | `boolean` | `false` | Switches the brand area to the collapsed logo state. |
|
|
129
|
+
| `homeUrl` | `string \| null` | `null` | Brand navigation target. |
|
|
130
|
+
| `logoUrl` | `string` | Bayan CDN URL | Expanded logo source. |
|
|
131
|
+
| `collapsedLogoUrl` | `string` | Bayan CDN URL | Collapsed logo source. |
|
|
132
|
+
| `searchPlaceholder` | `string` | `'TopMenu.SearchPlaceholder'` | Search placeholder text or translation key. |
|
|
133
|
+
| `menuItems` | `TopMenuWidgetItem[]` | `[]` | Top-level navigation items. |
|
|
134
|
+
| `searchItems` | `TopMenuWidgetSearchItem[]` | `[]` | Autocomplete items for global search. |
|
|
135
|
+
| `userPanel` | `TopMenuWidgetUserPanel \| null` | `null` | Current user data and available properties. |
|
|
136
|
+
| `isSsoLogin` | `boolean` | `false` | Fallback SSO flag when the user panel does not provide one. |
|
|
137
|
+
| `useAlternateNames` | `boolean` | `false` | Enables alternate-names behavior in settings. |
|
|
138
|
+
| `displayAlternateNames` | `boolean` | `false` | Marks alternate names as active. |
|
|
139
|
+
| `hrBlocked` | `boolean` | `false` | Current HR block state. |
|
|
140
|
+
| `hrCanBlock` | `boolean` | `false` | Enables HR block and release actions. |
|
|
141
|
+
| `tkBlocked` | `boolean` | `false` | Current Timekeeping block state. |
|
|
142
|
+
| `tkCanBlock` | `boolean` | `false` | Enables Timekeeping block and release actions. |
|
|
143
|
+
| `nameModeItems` | `TopMenuWidgetNameModeItem[]` | `[]` | Name display mode options. |
|
|
144
|
+
| `settingsEnabled` | `boolean` | `true` | Enables settings interactions. |
|
|
145
|
+
| `useInternalDialogs` | `boolean` | `false` | Shows built-in About and Change Password dialogs. |
|
|
146
|
+
| `changePasswordLoading` | `boolean` | `false` | Loading state for the built-in Change Password dialog. |
|
|
147
|
+
| `changePasswordDialog` | `TopMenuWidgetChangePasswordDialogConfig` | default labels | Built-in Change Password dialog labels. |
|
|
148
|
+
| `aboutDialog` | `TopMenuWidgetAboutDialogConfig` | default labels | Built-in About dialog content and labels. |
|
|
149
|
+
| `showGlobalSearch` | `boolean` | `false` | Shows the global search widget. |
|
|
150
|
+
| `showUserPanel` | `boolean` | `false` | Shows the user panel widget. |
|
|
151
|
+
| `showSettings` | `boolean` | `false` | Shows the settings widget. |
|
|
152
|
+
| `showNotifications` | `boolean` | `true` | Shows the notifications widget. |
|
|
153
|
+
| `notificationsTitle` | `string` | `'Notifications'` | Notification link title text or translation key. |
|
|
154
|
+
| `showHelp` | `boolean` | `true` | Shows the help action. |
|
|
155
|
+
| `helpTitle` | `string` | `'Help'` | Help link title text or translation key. |
|
|
156
|
+
| `helpUrl` | `string \| null` | `null` | Help navigation target. |
|
|
157
|
+
| `helpIcon` | `IconDefinition` | `faQuestionCircle` | Help icon. |
|
|
158
|
+
| `helpAnchorClass` | `string` | `'menu-icon-btn top-menu-widget__help-link'` | CSS classes for the help anchor. |
|
|
159
|
+
| `helpUrlTarget` | `'_self' \| '_blank' \| string` | `'_blank'` | Anchor target for the help action. |
|
|
160
|
+
|
|
161
|
+
### Outputs
|
|
162
|
+
|
|
163
|
+
| Name | Type | Description |
|
|
164
|
+
|---|---|---|
|
|
165
|
+
| `logoClick` | `EventEmitter<void>` | Fired when the brand link is clicked. |
|
|
166
|
+
| `helpClick` | `EventEmitter<void>` | Fired when the help action is clicked. |
|
|
167
|
+
| `menuItemClick` | `EventEmitter<TopMenuWidgetItem>` | Fired when a leaf menu item is activated. |
|
|
168
|
+
| `searchSubmit` | `EventEmitter<string>` | Fired when free-text search is submitted. |
|
|
169
|
+
| `searchItemNavigate` | `EventEmitter<TopMenuWidgetSearchItem>` | Fired when an autocomplete result is chosen. |
|
|
170
|
+
| `propertyChange` | `EventEmitter<TopMenuWidgetPropertyOption>` | Fired when the active property changes. |
|
|
171
|
+
| `signOutClick` | `EventEmitter<void>` | Fired when sign out is requested. |
|
|
172
|
+
| `alternateNamesChange` | `EventEmitter<void>` | Fired when alternate names are toggled. |
|
|
173
|
+
| `nameModeChange` | `EventEmitter<number>` | Fired when a name mode item is selected. |
|
|
174
|
+
| `blockHrClick` | `EventEmitter<void>` | Fired when HR block is requested. |
|
|
175
|
+
| `releaseHrClick` | `EventEmitter<void>` | Fired when HR release is requested. |
|
|
176
|
+
| `blockTkClick` | `EventEmitter<void>` | Fired when Timekeeping block is requested. |
|
|
177
|
+
| `releaseTkClick` | `EventEmitter<void>` | Fired when Timekeeping release is requested. |
|
|
178
|
+
| `changePasswordClick` | `EventEmitter<void>` | Fired when Change Password is requested from settings. |
|
|
179
|
+
| `openAboutClick` | `EventEmitter<void>` | Fired when About is requested from settings. |
|
|
180
|
+
| `aboutLicenseClick` | `EventEmitter<void>` | Fired when the About dialog license action is clicked. |
|
|
181
|
+
| `aboutReleaseNotesClick` | `EventEmitter<void>` | Fired when the About dialog release-notes action is clicked. |
|
|
182
|
+
| `aboutSupportClick` | `EventEmitter<void>` | Fired when the About dialog support action is clicked. |
|
|
183
|
+
| `submitPasswordChange` | `EventEmitter<TopMenuWidgetChangePasswordPayload>` | Fired when the built-in Change Password dialog is submitted. |
|
|
184
|
+
|
|
185
|
+
## Internal Composition Widgets
|
|
186
|
+
|
|
187
|
+
These widgets are used by the top-menu component and are documented here so the full contract is visible.
|
|
188
|
+
|
|
189
|
+
### Global Search Widget
|
|
190
|
+
|
|
191
|
+
Selector: `bayan-core-global-search-widget`
|
|
192
|
+
|
|
193
|
+
Inputs:
|
|
194
|
+
|
|
195
|
+
| Name | Type | Default | Description |
|
|
196
|
+
|---|---|---|---|
|
|
197
|
+
| `baseUrl` | `string` | `''` | Base URL used to resolve selected item URLs. |
|
|
198
|
+
| `placeholder` | `string` | `'TopMenu.SearchPlaceholder'` | Placeholder text or translation key. |
|
|
199
|
+
| `dataSource` | `TopMenuWidgetSearchItem[]` | `[]` | Search results shown in the autocomplete. |
|
|
200
|
+
|
|
201
|
+
Outputs:
|
|
202
|
+
|
|
203
|
+
| Name | Type | Description |
|
|
204
|
+
|---|---|---|
|
|
205
|
+
| `search` | `EventEmitter<string>` | Fired when the user submits free-text search with Enter. |
|
|
206
|
+
| `itemNavigate` | `EventEmitter<TopMenuWidgetSearchItem>` | Fired when the user selects a result item. |
|
|
207
|
+
|
|
208
|
+
### Item Widget
|
|
209
|
+
|
|
210
|
+
Selector: `bayan-core-item-widget`
|
|
211
|
+
|
|
212
|
+
Inputs:
|
|
213
|
+
|
|
214
|
+
| Name | Type | Default | Description |
|
|
215
|
+
|---|---|---|---|
|
|
216
|
+
| `baseUrl` | `string` | `''` | Base URL used to resolve item URLs. |
|
|
217
|
+
| `item` | `TopMenuWidgetItem` | required | Menu item to render. |
|
|
218
|
+
|
|
219
|
+
Outputs:
|
|
220
|
+
|
|
221
|
+
| Name | Type | Description |
|
|
222
|
+
|---|---|---|
|
|
223
|
+
| `itemClick` | `EventEmitter<TopMenuWidgetItem>` | Fired when a leaf menu item is activated. |
|
|
224
|
+
|
|
225
|
+
### Notifications Widget
|
|
226
|
+
|
|
227
|
+
Selector: `bayan-core-notifications-widget`
|
|
228
|
+
|
|
229
|
+
Inputs:
|
|
230
|
+
|
|
231
|
+
| Name | Type | Default | Description |
|
|
232
|
+
|---|---|---|---|
|
|
233
|
+
| `baseUrl` | `string` | `''` | Base URL used to load the notifications summary and resolve its navigation URL. |
|
|
234
|
+
| `title` | `string` | `'Notifications'` | Link title text or translation key. |
|
|
235
|
+
| `wrapperClass` | `string` | `'notifications-icon-wrap menu-dropdown-host'` | Wrapper CSS classes. |
|
|
236
|
+
| `linkClass` | `string` | `'menu-icon-btn cursor-pointer top-menu-widget__notification-btn'` | Anchor CSS classes. |
|
|
237
|
+
| `iconClass` | `string` | `'fs-6'` | Bell icon CSS classes. |
|
|
238
|
+
| `badgeClass` | `string` | `'top-menu-widget__notification-badge'` | Badge CSS classes. |
|
|
239
|
+
|
|
240
|
+
Outputs: none.
|
|
241
|
+
|
|
242
|
+
### Settings Widget
|
|
243
|
+
|
|
244
|
+
Selector: `bayan-core-settings-widget`
|
|
245
|
+
|
|
246
|
+
Inputs:
|
|
247
|
+
|
|
248
|
+
| Name | Type | Default | Description |
|
|
249
|
+
|---|---|---|---|
|
|
250
|
+
| `useAlternateNames` | `boolean` | `false` | Enables alternate names behavior. |
|
|
251
|
+
| `displayAlternateNames` | `boolean` | `false` | Marks alternate names as active. |
|
|
252
|
+
| `hrBlocked` | `boolean` | `false` | Current HR block state. |
|
|
253
|
+
| `hrCanBlock` | `boolean` | `false` | Enables HR block and release actions. |
|
|
254
|
+
| `tkBlocked` | `boolean` | `false` | Current Timekeeping block state. |
|
|
255
|
+
| `tkCanBlock` | `boolean` | `false` | Enables Timekeeping block and release actions. |
|
|
256
|
+
| `nameModeItems` | `TopMenuWidgetNameModeItem[]` | `[]` | Name mode options. |
|
|
257
|
+
| `settingsEnabled` | `boolean` | `true` | Enables settings interactions. |
|
|
258
|
+
|
|
259
|
+
Outputs:
|
|
260
|
+
|
|
261
|
+
| Name | Type | Description |
|
|
262
|
+
|---|---|---|
|
|
263
|
+
| `alternateNamesChange` | `EventEmitter<void>` | Fired when alternate names are toggled. |
|
|
264
|
+
| `nameModeChange` | `EventEmitter<number>` | Fired when a name mode item is selected. |
|
|
265
|
+
| `blockHrClick` | `EventEmitter<void>` | Fired when HR block is requested. |
|
|
266
|
+
| `releaseHrClick` | `EventEmitter<void>` | Fired when HR release is requested. |
|
|
267
|
+
| `blockTkClick` | `EventEmitter<void>` | Fired when Timekeeping block is requested. |
|
|
268
|
+
| `releaseTkClick` | `EventEmitter<void>` | Fired when Timekeeping release is requested. |
|
|
269
|
+
| `changePasswordClick` | `EventEmitter<void>` | Fired when Change Password is requested. |
|
|
270
|
+
| `openAboutClick` | `EventEmitter<void>` | Fired when About is requested. |
|
|
271
|
+
|
|
272
|
+
### User Panel Widget
|
|
273
|
+
|
|
274
|
+
Selector: `bayan-core-user-panel-widget`
|
|
275
|
+
|
|
276
|
+
Inputs:
|
|
277
|
+
|
|
278
|
+
| Name | Type | Default | Description |
|
|
279
|
+
|---|---|---|---|
|
|
280
|
+
| `baseUrl` | `string` | `''` | Reserved for consistency with the top-menu contract. |
|
|
281
|
+
| `userPanel` | `TopMenuWidgetUserPanel \| null` | `null` | Current user and property data. |
|
|
282
|
+
| `isSsoLogin` | `boolean` | `false` | Fallback SSO flag when `userPanel.isSsoLogin` is not present. |
|
|
283
|
+
|
|
284
|
+
Outputs:
|
|
285
|
+
|
|
286
|
+
| Name | Type | Description |
|
|
287
|
+
|---|---|---|
|
|
288
|
+
| `propertyChange` | `EventEmitter<TopMenuWidgetPropertyOption>` | Fired when the active property changes. |
|
|
289
|
+
| `signOutClick` | `EventEmitter<void>` | Fired when sign out is requested. |
|
|
290
|
+
|
|
291
|
+
### Change Password Widget
|
|
292
|
+
|
|
293
|
+
Selector: `bayan-core-change-password-widget`
|
|
294
|
+
|
|
295
|
+
Inputs:
|
|
296
|
+
|
|
297
|
+
| Name | Type | Default | Description |
|
|
298
|
+
|---|---|---|---|
|
|
299
|
+
| `baseUrl` | `string` | `''` | Reserved for dialog-level extensibility. |
|
|
300
|
+
| `visible` | `boolean` | `false` | Controls popup visibility. |
|
|
301
|
+
| `config` | `TopMenuWidgetChangePasswordDialogConfig` | required | Dialog labels and title. |
|
|
302
|
+
| `isSubmitting` | `boolean` | `false` | Disables editing while submission is in progress. |
|
|
303
|
+
|
|
304
|
+
Outputs:
|
|
305
|
+
|
|
306
|
+
| Name | Type | Description |
|
|
307
|
+
|---|---|---|
|
|
308
|
+
| `visibleChange` | `EventEmitter<boolean>` | Fired when the dialog requests a visibility change. |
|
|
309
|
+
| `submitPasswordChange` | `EventEmitter<TopMenuWidgetChangePasswordPayload>` | Fired with the form payload when save succeeds validation. |
|
|
310
|
+
|
|
311
|
+
### About Dialog Widget
|
|
312
|
+
|
|
313
|
+
Selector: `bayan-core-about-dialog-widget`
|
|
314
|
+
|
|
315
|
+
Inputs:
|
|
316
|
+
|
|
317
|
+
| Name | Type | Default | Description |
|
|
318
|
+
|---|---|---|---|
|
|
319
|
+
| `baseUrl` | `string` | `''` | Reserved for dialog-level extensibility. |
|
|
320
|
+
| `visible` | `boolean` | `false` | Controls dialog visibility. |
|
|
321
|
+
| `config` | `TopMenuWidgetAboutDialogConfig` | required | Dialog content and action labels. |
|
|
322
|
+
|
|
323
|
+
Outputs:
|
|
324
|
+
|
|
325
|
+
| Name | Type | Description |
|
|
326
|
+
|---|---|---|
|
|
327
|
+
| `visibleChange` | `EventEmitter<boolean>` | Fired when the dialog requests to close. |
|
|
328
|
+
| `licenseClick` | `EventEmitter<void>` | Fired when the license action is clicked. |
|
|
329
|
+
| `releaseNotesClick` | `EventEmitter<void>` | Fired when the release-notes action is clicked. |
|
|
330
|
+
| `supportClick` | `EventEmitter<void>` | Fired when the support action is clicked. |
|
|
331
|
+
|
|
332
|
+
## Build
|
|
333
|
+
|
|
334
|
+
```bash
|
|
335
|
+
npm run build -- --project BayanCoreComponents --configuration development
|
|
336
|
+
```
|