Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
46f81fe
Adding beak and transfering beak functionality from Callout.
gokunymbus Dec 10, 2017
5e55dde
Beak updates
gokunymbus Jan 10, 2018
707c57a
Removing junk and fixing getClassNames function.
gokunymbus Jan 19, 2018
3e0d094
beak updates
gokunymbus Jan 23, 2018
1ac99f1
Adding the beak page and example page
Jan 30, 2018
c6d1edd
Adding canvas
Jan 30, 2018
f45098d
Adding new props to coachmark and beak as well as adding a definition.
gokunymbus Feb 2, 2018
b28f518
resolving conflicts
Feb 2, 2018
5d0b8a4
Moved beak to the Coachmark directory, started fixing the beak space …
gokunymbus Feb 2, 2018
92b29f4
Fixing comment typo
gokunymbus Feb 2, 2018
b17ae37
Updating the opacity
gokunymbus Feb 2, 2018
fe086a5
Merge branch 'component/beak' of github.com:battletoilet/office-ui-fa…
Feb 2, 2018
46c579c
Fixing the beak and element proximity
Feb 3, 2018
da2f669
updating element target
Feb 5, 2018
28fc1ee
Moving all folders and files over to the main package.
gokunymbus Feb 6, 2018
f4a5c06
Adding MouseEventType
gokunymbus Feb 7, 2018
ced7cf7
Adding additional beak properties
gokunymbus Feb 8, 2018
75d7ebf
Fixing some nits
gokunymbus Feb 8, 2018
39aa810
Updating styles to accept colors
gokunymbus Feb 8, 2018
232face
Removing random MouseEvent import and adding width height and color o…
gokunymbus Feb 8, 2018
2da7c31
Refactoring Beak a bit.
gokunymbus Feb 8, 2018
e5f5990
Adding more styling functionality to beak.
gokunymbus Feb 8, 2018
f0dd2a3
updating props for beak.
gokunymbus Feb 8, 2018
c1eb544
Adding mergeStyles to the coachmark example.
gokunymbus Feb 8, 2018
7d33cf4
Updating positioning container with latest bits from Callout.
gokunymbus Feb 8, 2018
d5acbd0
fixing some linting errors.
gokunymbus Feb 8, 2018
c2531ee
Committing rush change files
gokunymbus Feb 8, 2018
7f5710a
Merging with hopefully properly resolved conflicts
gokunymbus Feb 8, 2018
ecdcbbd
Removing coachmark types as it doesnt exist anymore.
gokunymbus Feb 8, 2018
ee6cf3a
Removing Callout sass, its no longer needed.
gokunymbus Feb 8, 2018
c72b95d
Removing positioning container page.
gokunymbus Feb 8, 2018
7a59c10
fixing some nits
gokunymbus Feb 8, 2018
e80faeb
Fixing pr comments.
gokunymbus Feb 9, 2018
e0df127
Making properties read only.
gokunymbus Feb 9, 2018
d5f444b
Fixing gapspace/offset from target
gokunymbus Feb 9, 2018
85cba8d
Removing beak positioning bits to coachmark and out form beak.
gokunymbus Feb 9, 2018
7354e1f
Adding back isMouseInProximity state
gokunymbus Feb 13, 2018
613eb37
Removing mouseInProximity
gokunymbus Feb 13, 2018
acdc584
Adding a clarifying comment and fixing opacity bug.
gokunymbus Feb 14, 2018
1edeb8f
Adding clarifying comment
gokunymbus Feb 14, 2018
8dda598
Adding Basic tab Support.
gokunymbus Feb 14, 2018
70e2629
Removing console log
gokunymbus Feb 14, 2018
67dd69e
Fixed animation bug with the innerHost
gokunymbus Feb 14, 2018
70f778d
Fixing nit
gokunymbus Feb 14, 2018
18f6805
nit
gokunymbus Feb 14, 2018
e9aff05
Removing unsuded library triangle
Feb 14, 2018
298ae83
Fixing PR comments.
Feb 14, 2018
12e24d4
Adding space for test
gokunymbus Feb 15, 2018
f591605
Adding coachmark to the public website.
gokunymbus Feb 15, 2018
ca00000
updating casing
Feb 15, 2018
a11de41
Merge branch 'component/beak' of github.com:battletoilet/office-ui-fa…
Feb 15, 2018
143c7e7
Fixing a couple PR nits
Feb 16, 2018
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
6 changes: 6 additions & 0 deletions apps/fabric-website/src/components/App/AppState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ export const AppState: IAppState = {
component: () => <LoadingComponent title='Checkbox' />,
getComponent: cb => require.ensure([], (require) => cb(require<any>('../../pages/Components/CheckboxComponentPage').CheckboxComponentPage))
},
{
title: 'Coachmark',
url: '#/components/coachmark',
component: () => <LoadingComponent title='Coachmark' />,
getComponent: cb => require.ensure([], (require) => cb(require<any>('../../pages/Components/CoachmarkComponentPage').CoachmarkComponentPage))
},
{
title: 'ChoiceGroup',
url: '#/components/choicegroup',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import * as React from 'react';
import { CoachmarkPage } from 'office-ui-fabric-react/lib/components/Coachmark/CoachmarkPage';
import { PageHeader } from '../../components/PageHeader/PageHeader';
import { ComponentPage } from '../../components/ComponentPage/ComponentPage';
const pageStyles: any = require('../PageStyles.module.scss');

export class CoachmarkComponentPage extends React.Component<any, any> {
public render() {
return (
<div ref='pageElement' className={ pageStyles.basePage }>
<ComponentPage>
<PageHeader pageTitle='Coachmark' backgroundColor='#038387'
links={
[
{
'text': 'Overview',
'location': 'Overview'
},
{
'text': 'Best Practices',
'location': 'BestPractices'
},
{
'text': 'Variants',
'location': 'Variants'
},
{
'text': 'Implementation',
'location': 'Implementation'
}
]
} />
<CoachmarkPage isHeaderVisible={ false } />
</ComponentPage>
</div>
);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "@uifabric/experiments",
"comment": "Removing Coachmark",
"type": "minor"
}
],
"packageName": "@uifabric/experiments",
"email": "miljo@microsoft.com"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "@uifabric/utilities",
"comment": "Added a triangle abstraction class",
"type": "minor"
}
],
"packageName": "@uifabric/utilities",
"email": "miljo@microsoft.com"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Migrating Coachmark to main office-ui-fabrc-react package and adding a beak compoentn as well as updating the experimental component PositioningContainer to reflect some of the latest bits in Callout",
"type": "minor"
}
],
"packageName": "office-ui-fabric-react",
"email": "miljo@microsoft.com"
}
1 change: 0 additions & 1 deletion packages/experiments/src/PositioningContainer.ts

This file was deleted.

230 changes: 0 additions & 230 deletions packages/experiments/src/components/Coachmark/Coachmark.tsx

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions packages/experiments/src/demo/AppDefinition.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,6 @@ export const AppDefinition: IAppDefinition = {
examplePages: [
{
links: [
{
component: require<any>('../components/PositioningContainer/PositioningContainerPage').PositioningContainerPage,
key: 'PositioningContainer',
name: 'PositioningContainer',
url: '#/examples/PositioningContainer'
},
{
component: require<any>('../components/Coachmark/CoachmarkPage').CoachmarkPage,
key: 'Coachmark',
name: 'Coachmark',
url: '#/examples/coachmark'
},
{
component: require<any>('../components/CommandBar/CommandBarPage').CommandBarPage,
key: 'CommandBar',
Expand Down
Loading