Skip to content
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

Office UI fabric react v5.79.1 #1

Merged
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
110 changes: 2 additions & 108 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,108 +1,2 @@
# This is a comment.
# Each line is a file pattern followed by one or more owners.

# These owners will be the default owners for everything in the repo.
# Unless a later match takes precedence, @global-owner1 and @global-owner2
# will be requested for review when someone opens a pull request.
# * @global-owner1 @global-owner2

# Order is important; the last matching pattern takes the most precedence.
# When someone opens a pull request that only modifies JS files, only @js-owner
# and not the global owner(s) will be requested for a review.
# *.js@js-owner

# You can also use email addresses if you prefer. They'll be used to look up
# users just like we do for commit author emails.
# docs/ [email protected]

#### Core build stuff
scripts/ @dzearing

#### Apps
# component-demo/
# fabric-website/
# ssr-tests/
# test-bundle-button/ @dzearing
# todo-app/

#### Packages
# packages/example-app-base/
packages/file-type-icons/ @KatherineThayerMicrosoft @jahnp @bigbadcapers
# packages/icons/
# packages/jest-serializer-merge-styles/
# packages/merge-styles/
# packages/office-ui-fabric-react-tslint/
packages/styling/ @dzearing
packages/styling/src/interfaces/ @phkuo
packages/styling/src/styles/ @phkuo
# packages/utilities/
packages/utilities/positioning/ @joschect

### Fabric
# common/
common/_semanticSlots.scss @phkuo
common/_themeOverrides.scss @phkuo
common/_common.scss @phkuo

### Utilities
dateMath/ @lorejoh12 @sathi23
dateValues/ @lorejoh12 @sathi23

## Components
# ActivityItem/
# Breadcrumb/
# Button/
Calendar/ @lorejoh12 @sathi23
Callout/ @joschect
# Check/
# Checkbox/
ChoiceGroup/ @srideshpande
# ColorPicker/
# ComboBox/
CommandBar/ @micahgodbolt
ContextualMenu/ @joschect
DatePicker/ @lorejoh12 @sathi23
# DetailsList/
# Dialog/
DocumentCard/ @yiminwu @mikewheaton
# Dropdown/
# Fabric/
# FacePile/
# FocusTrapZone/
# FocusZone/
GroupedList/ @aditima
HoverCard/ @atneik @Jahnp
# Icon/
# Image/
# Label/
Layer/ @ThomasMichon
# Link/
List/ @cschleiden
# MarqueeSelection/
# MessageBar/
# Modal/
# Nav/
OverflowSet/ @micahgodbolt
# Overlay/
# Panel/
# Persona/
Persona/PersonaCoin.tsx @mtennoe @jakob101
Persona/PersonaConsts.tsx @mtennoe @jakob101
pickers/ @joschect
# Pivot/
# Popup/
# ProgressIndicator/
Rating/ @cschleiden
ResizeGroup/ @micahgodbolt
# SearchBox/
# Slider/
# SpinButton/
# Spinner/
# SwatchColorPicker/
TeachingBubble/ @micahgodbolt
# TextField/
# Theme/
Toggle/ @phkuo
Tooltip/ @micahgodbolt


# This branch is owned by the SP 2019 on-prem team (plus joschect as point of contact)
* @Phoebe-0319 @Liuqingbo @TimKaibingchen @joschect
49 changes: 49 additions & 0 deletions azure-pipelines.hotfix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
pr: none

trigger: none

name: '$(targetNpmVersion) ($(Rev:r))'

variables:
- group: 'Github and NPM secrets'

pool:
vmImage: 'Ubuntu 16.04'

steps:
- task: NodeTool@0
displayName: 'Use Node 8.x'
inputs:
versionSpec: 8.x

- script: |
node -e "if('$(targetNpmVersion)' === '') throw new Error('targetNpmVersion is not specified');"
displayName: 'Checking for targetNpmVersion variable'

- script: |
npm install semver
node -e "let semver = require('semver');if(semver.valid('$(targetNpmVersion)') === null){ throw new Error('Invalid version specified'); }"
displayName: 'Check targetNpmVersion is valid semver'

- script: |
npm install --ignore-scripts
node node_modules/@microsoft/rush/bin/rush install --bypass-policy
displayName: rush install

- script: |
npm run build
displayName: rush build (Create production build)

- script: |
npm version $(targetNpmVersion)
workingDirectory: 'packages/office-ui-fabric-react'
displayName: 'Manually set package version'

- script: |
npm pack
displayName: 'Create tarball'
workingDirectory: 'packages/office-ui-fabric-react'

- script: |
npm publish packages/office-ui-fabric-react/office-ui-fabric-react-$(targetNpmVersion).tgz --tag hf5 --//registry.npmjs.org/:_authToken=$(npmToken)
displayName: Publish new version
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "@uifabric/styling",
"comment": "Semantic slots: add bodyBackgroundHovered and bodyBackgroundSelected",
"type": "minor"
}
],
"packageName": "@uifabric/styling",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Fix typo in role attribute in DocumentCardActivity",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Add aria-level = 1 in Dialog/Panel",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Added the title attribute for the cancel icon in the Panel which is same as aira-label",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Update color changes to PersonaInitialColors",
"type": "minor"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "DocumentCard: add optional aria role property to allow override the default aria role.",
"type": "minor"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Ensures nav links are announced once",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "FocusZone: Remove role=presentation",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Commandbar: remove invalid aria-posinset and aria-setsize attributes",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Nav: update to latest redlines",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "fix nav in high contrast according the changes in master branch",
"type": "minor"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ exports[`ActivityItem renders compact with a single persona correctly 1`] = `
className=
ms-Persona-initials
{
background-color: #2D89EF;
background-color: #0078D4;
}
style={undefined}
>
Expand Down Expand Up @@ -305,7 +305,7 @@ exports[`ActivityItem renders compact with multiple personas correctly 1`] = `
className=
ms-Persona-initials
{
background-color: #2D89EF;
background-color: #0078D4;
}
style={undefined}
>
Expand Down Expand Up @@ -432,7 +432,7 @@ exports[`ActivityItem renders compact with multiple personas correctly 1`] = `
className=
ms-Persona-initials
{
background-color: #00ABA9;
background-color: #038387;
}
style={undefined}
>
Expand Down Expand Up @@ -566,7 +566,7 @@ exports[`ActivityItem renders with a single persona correctly 1`] = `
className=
ms-Persona-initials
{
background-color: #2D89EF;
background-color: #0078D4;
}
style={undefined}
>
Expand Down Expand Up @@ -811,7 +811,7 @@ exports[`ActivityItem renders with multiple personas correctly 1`] = `
className=
ms-Persona-initials
{
background-color: #2D89EF;
background-color: #0078D4;
}
style={undefined}
>
Expand Down Expand Up @@ -924,7 +924,7 @@ exports[`ActivityItem renders with multiple personas correctly 1`] = `
className=
ms-Persona-initials
{
background-color: #00ABA9;
background-color: #038387;
}
style={undefined}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ exports[`Breadcrumb renders breadcumb correctly 1`] = `
onFocus={[Function]}
onKeyDown={[Function]}
onMouseDownCapture={[Function]}
role="presentation"
>
<ol
className="ms-Breadcrumb-list"
Expand Down Expand Up @@ -174,7 +173,6 @@ exports[`Breadcrumb renders breadcumb correctly 2`] = `
onFocus={[Function]}
onKeyDown={[Function]}
onMouseDownCapture={[Function]}
role="presentation"
>
<ol
className="ms-Breadcrumb-list"
Expand Down Expand Up @@ -383,7 +381,6 @@ exports[`Breadcrumb renders breadcumb correctly 3`] = `
onFocus={[Function]}
onKeyDown={[Function]}
onMouseDownCapture={[Function]}
role="presentation"
>
<ol
className="ms-Breadcrumb-list"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ exports[`Calendar Test rendering simplest calendar Renders simple calendar corre
onFocus={[Function]}
onKeyDown={[Function]}
onMouseDownCapture={[Function]}
role="presentation"
>
<table
aria-activedescendant="DatePickerDay-active9"
Expand Down Expand Up @@ -961,7 +960,6 @@ exports[`Calendar Test rendering simplest calendar Renders simple calendar corre
onFocus={[Function]}
onKeyDown={[Function]}
onMouseDownCapture={[Function]}
role="presentation"
>
<div
className="ms-DatePicker-optionGrid"
Expand Down
Loading