Skip to content

Commit 30c62c0

Browse files
authored
Merge branch 'main' into fix/email-hash
2 parents 077093f + e49591d commit 30c62c0

File tree

79 files changed

+741
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+741
-76
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ jobs:
9090
path: coverage/
9191

9292
- name: Run sonar cloud analysis
93-
uses: SonarSource/sonarcloud-github-action@master
93+
uses: SonarSource/sonarqube-scan-action@v5
9494
env:
95-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
9695
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
-18.6 KB
Binary file not shown.
18.9 KB
Binary file not shown.
-47 KB
Binary file not shown.
33.9 KB
Binary file not shown.
746 KB
Binary file not shown.
-742 KB
Binary file not shown.

packages/mgt-components/src/components/mgt-agenda/mgt-agenda.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import { registerComponent } from '@microsoft/mgt-element';
2727
* @class MgtAgenda
2828
* @extends {MgtTemplatedComponent}
2929
*
30+
* @fires {CustomEvent<undefined>} updated - Fired when the component is updated
3031
* @fires {CustomEvent<MicrosoftGraph.Event>} eventClick - Fired when user click an event
3132
*
3233
* @cssprop --event-box-shadow - {String} Event box shadow color and size

packages/mgt-components/src/components/mgt-file-list/mgt-file-list.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ const isSharedInsight = (sharedInsightFile: SharedInsight): sharedInsightFile is
7171
* @export
7272
* @class MgtFileList
7373
*
74+
* @fires {CustomEvent<undefined>} updated - Fired when the component is updated
7475
* @fires {CustomEvent<MicrosoftGraph.DriveItem>} itemClick - Fired when a user clicks on a file.
7576
* it returns the file (DriveItem) details.
7677
*

packages/mgt-components/src/components/mgt-file/mgt-file.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ export const registerMgtFileComponent = () => registerComponent('file', MgtFile)
4242
* @class MgtFile
4343
* @extends {MgtTemplatedComponent}
4444
*
45+
* @fires {CustomEvent<undefined>} updated - Fired when the component is updated
46+
*
4547
* @cssprop --file-type-icon-height - {Length} file type icon height. Default value is 28px.
4648
* @cssprop --file-border - {String} file item border style. Default value is "1px solid transparent".
4749
* @cssprop --file-border-radius - {String} the border radius of the file component. Default value is 4px.

0 commit comments

Comments
 (0)