Skip to content

Test/pr validate #383

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: beta
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
`${process.env.GITHUB_WORKSPACE}/DonutChart/DonutChart`,
`${process.env.GITHUB_WORKSPACE}/Elevation/Elevation`,
`${process.env.GITHUB_WORKSPACE}/Facepile/Facepile`,
`${process.env.GITHUB_WORKSPACE}/FluentMessageBar/FluentMessageBar`,
`${process.env.GITHUB_WORKSPACE}/GaugeChart/GaugeChart`,
`${process.env.GITHUB_WORKSPACE}/HorizontalBarChart/HorizontalBarChart`,
`${process.env.GITHUB_WORKSPACE}/Icon/Icon`,
Expand Down Expand Up @@ -142,6 +143,12 @@ jobs:
cd ./Facepile
npm install
npm ci

- name: Install Dependencies in FluentMessageBar
run: |
cd ./FluentMessageBar
npm install
npm ci

- name: Install Dependencies in GaugeChart
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr_validate_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- "./DonutChart"
- "./Elevation"
- "./Facepile"
- "./FluentMessageBar"
- "./GaugeChart"
- "./HorizontalBarChart"
- "./Icon"
Expand Down
1 change: 1 addition & 0 deletions FluentMessageBar/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
out/
1 change: 1 addition & 0 deletions FluentMessageBar/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

# output directory
/out
/coverage

# msbuild output directories
/bin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FluentMessageBar } from '..';
import { MockContext, MockState } from '../__mocks__/mock-context';
import { MockDataSet, MockEntityRecord } from '../__mocks__/mock-datasets';
import { getMockParameters } from '../__mocks__/mock-parameters';
import { IInputs, IOutputs } from '../generated/ManifestTypes';
import { IInputs } from '../generated/ManifestTypes';
import { ItemColumns } from '../ManifestConstant';

describe('FluentMessageBar', () => {
Expand Down
2,459 changes: 1,275 additions & 1,184 deletions FluentMessageBar/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion FluentMessageBar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"build": "pcf-scripts build",
"clean": "pcf-scripts clean",
"lint": "eslint FluentMessageBar --ext .ts,.tsx",
"lint": "eslint FluentMessageBar/**/*.ts FluentMessageBar/**/*.tsx",
"lint:fix": "npm run lint -- --fix",
"rebuild": "pcf-scripts rebuild",
"start": "pcf-scripts start",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The following table provides an index to the code components in this repository:
| [DetailsList](DetailsList) | User Interface | The DetailsList code component allows using of the [Fluent UI DetailsList component](https://developer.microsoft.com/en-us/fluentui#/controls/web/detailslist) from inside canvas apps and custom pages. | **✅** | **✅** | **✅** | ⬜ | ⬜ |
| [Elevation](Elevation) | User Interface | Fluent UI elevation support with mouse hover events. | **✅** | **✅** | **✅** | ⬜ | ⬜ |
| [Facepile](Facepile) | User interface | This code component provides a wrapper around the [Fluent UI Facepile](https://developer.microsoft.com/en-us/fluentui#/controls/web/facepile) control for use in canvas & custom pages. | **✅** | **✅** | **✅** | ⬜ | ⬜ |
| [FluentMessageBar](FluentMessageBar) | User interface | This code component provides a wrapper around the [Fluent UI Messagebar](https://react.fluentui.dev/?path=/docs/components-messagebar--docs) control for use in canvas & custom pages. | **✅** | **✅** | **✅** | ⬜ | ⬜ |
| [Icon](Icon) | User Interface | Fluent UI [Font Icon](https://developer.microsoft.com/en-us/fluentui#/controls/web/icon)/ Icon Button & Action Button with custom styling. | ✅ | ✅ | ✅ | ⬜ | ⬜ |
| [Keyboard shortcuts](KeyboardShortcuts) | Utility | Registers key press event handlers to allow keyboard short cuts to be used inside canvas apps. | ⬜ | **✅** | ⬜ | ⬜ | ⬜ |
| [Masked TextField](MaskedTextField) | User Interface | This code component provides a wrapper around the [Fluent UI Customizable Masked TextField](https://developer.microsoft.com/en-us/fluentui#/controls/web/textfield) control for use in canvas & custom pages. | **✅** | **✅** | **✅** | ⬜ | ⬜ |
Expand Down
1 change: 1 addition & 0 deletions Solution/Solution.cdsproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<ProjectReference Include="..\DonutChart\DonutChart.pcfproj" />
<ProjectReference Include="..\Elevation\Elevation.pcfproj" />
<ProjectReference Include="..\Facepile\Facepile.pcfproj" />
<ProjectReference Include="..\FluentMessageBar\FluentMessageBar.pcfproj" />
<ProjectReference Include="..\GaugeChart\GaugeChart.pcfproj" />
<ProjectReference Include="..\HorizontalBarChart\HorizontalBarChart.pcfproj" />
<ProjectReference Include="..\Icon\Icon.pcfproj" />
Expand Down
Loading