Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Apr 17, 2017
1 parent abafcf7 commit 5f61c5f
Show file tree
Hide file tree
Showing 26 changed files with 82 additions and 82 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPFx Fantastic 40 Web Parts

![release](https://img.shields.io/badge/release-v1.0.2-blue.svg)
![release](https://img.shields.io/badge/release-v1.0.3-blue.svg)
![status](https://img.shields.io/badge/status-stable-green.svg)
![mit](https://img.shields.io/badge/license-MIT-yellow.svg)

Expand All @@ -13,7 +13,7 @@ These webparts are available: **English, French, Spanish, German**.

**IMPORTANT NOTE: These web parts are not officially supported by Microsoft. Please use the "Issues" tab on this site to report bug or requests for development.**

**Current Version**: v1.0.2 - [Click here to download and install](https://github.com/OlivierCC/spfx-40-fantastics/wiki/Installation-process)
**Current Version**: v1.0.3 - [Click here to download and install](https://github.com/OlivierCC/spfx-40-fantastics/wiki/Installation-process)

**Current SPFx Release support** - ![GA](https://img.shields.io/badge/SPFx-General%20Availability-red.svg) - [Release Note](https://github.com/SharePoint/sp-dev-docs/wiki/Release-Notes-GA)

Expand Down
6 changes: 3 additions & 3 deletions src/webparts/animatedText/AnimatedTextWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import * as strings from 'AnimatedTextStrings';
import { IAnimatedTextWebPartProps } from './IAnimatedTextWebPartProps';

//Imports the property pane custom fields
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';
import { PropertyFieldFontPicker } from 'sp-client-custom-fields/lib/PropertyFieldFontPicker';
import { PropertyFieldFontSizePicker } from 'sp-client-custom-fields/lib/PropertyFieldFontSizePicker';
import { PropertyFieldAlignPicker } from 'sp-client-custom-fields/lib/PropertyFieldAlignPicker';
Expand Down Expand Up @@ -224,14 +224,14 @@ export default class AnimatedTextWebPart extends BaseClientSideWebPart<IAnimated
properties: this.properties,
key: "animatedTextFontSizeField"
}),
PropertyFieldColorPicker('fontColor', {
PropertyFieldColorPickerMini('fontColor', {
label: strings.FontColor,
initialColor: this.properties.fontColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: "animatedTextFontColorField"
}),
PropertyFieldColorPicker('backgroundColor', {
PropertyFieldColorPickerMini('backgroundColor', {
label: strings.BackgroundColor,
initialColor: this.properties.backgroundColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
8 changes: 4 additions & 4 deletions src/webparts/audioEqualizer/AudioEqualizerWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import * as strings from 'AudioEqualizerStrings';
import { IAudioEqualizerWebPartProps } from './IAudioEqualizerWebPartProps';

//Imports the property pane custom fields
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';
import { PropertyFieldDimensionPicker } from 'sp-client-custom-fields/lib/PropertyFieldDimensionPicker';

//Loads JQuery, Reverseorder & equalizer JavaScript libs
Expand Down Expand Up @@ -197,21 +197,21 @@ export default class AudioEqualizerWebPart extends BaseClientSideWebPart<IAudioE
max: 1000,
step: 10
}),
PropertyFieldColorPicker('color', {
PropertyFieldColorPickerMini('color', {
label: strings.color,
initialColor: this.properties.color,
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: "audioEqualizerColorField"
}),
PropertyFieldColorPicker('color1', {
PropertyFieldColorPickerMini('color1', {
label: strings.color1,
initialColor: this.properties.color1,
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: "audioEqualizerColor1Field"
}),
PropertyFieldColorPicker('color2', {
PropertyFieldColorPickerMini('color2', {
label: strings.color2,
initialColor: this.properties.color2,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
4 changes: 2 additions & 2 deletions src/webparts/barChart/BarChartWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { IBarChartWebPartProps } from './IBarChartWebPartProps';

//Imports the property pane custom fields
import { PropertyFieldCustomList, CustomListFieldType } from 'sp-client-custom-fields/lib/PropertyFieldCustomList';
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';
import { PropertyFieldFontPicker } from 'sp-client-custom-fields/lib/PropertyFieldFontPicker';
import { PropertyFieldFontSizePicker } from 'sp-client-custom-fields/lib/PropertyFieldFontSizePicker';
import { PropertyFieldDimensionPicker } from 'sp-client-custom-fields/lib/PropertyFieldDimensionPicker';
Expand Down Expand Up @@ -251,7 +251,7 @@ export default class BarChartWebPart extends BaseClientSideWebPart<IBarChartWebP
properties: this.properties,
key: "barChartTitleSizeField"
}),
PropertyFieldColorPicker('titleColor', {
PropertyFieldColorPickerMini('titleColor', {
label: strings.TitleColor,
initialColor: this.properties.titleColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
4 changes: 2 additions & 2 deletions src/webparts/carousel3D/Carousel3DWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { ICarousel3DWebPartProps } from './ICarousel3DWebPartProps';
import { PropertyFieldCustomList, CustomListFieldType } from 'sp-client-custom-fields/lib/PropertyFieldCustomList';
import { PropertyFieldFontPicker } from 'sp-client-custom-fields/lib/PropertyFieldFontPicker';
import { PropertyFieldFontSizePicker } from 'sp-client-custom-fields/lib/PropertyFieldFontSizePicker';
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';

//Loads external JS libs
import * as $ from 'jquery';
Expand Down Expand Up @@ -367,7 +367,7 @@ export default class Carousel3DWebPart extends BaseClientSideWebPart<ICarousel3D
properties: this.properties,
key: "carousel3DFontSizeField"
}),
PropertyFieldColorPicker('fontColor', {
PropertyFieldColorPickerMini('fontColor', {
label: strings.ColorFieldLabel,
initialColor: this.properties.fontColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
6 changes: 3 additions & 3 deletions src/webparts/coverflow/DockMenuWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { IDockMenuWebPartProps } from './IDockMenuWebPartProps';
import { PropertyFieldCustomList, CustomListFieldType } from 'sp-client-custom-fields/lib/PropertyFieldCustomList';
import { PropertyFieldFontPicker } from 'sp-client-custom-fields/lib/PropertyFieldFontPicker';
import { PropertyFieldFontSizePicker } from 'sp-client-custom-fields/lib/PropertyFieldFontSizePicker';
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';
import { PropertyFieldAlignPicker } from 'sp-client-custom-fields/lib/PropertyFieldAlignPicker';

//Loads external CSS
Expand Down Expand Up @@ -301,14 +301,14 @@ export default class DockMenuWebPart extends BaseClientSideWebPart<IDockMenuWebP
properties: this.properties,
key: "coverflowFontSizeField"
}),
PropertyFieldColorPicker('textPanelFontColor', {
PropertyFieldColorPickerMini('textPanelFontColor', {
label: strings.TextPanelFontColorFieldLabel,
initialColor: this.properties.textPanelFontColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: "coverflowFontColorField"
}),
PropertyFieldColorPicker('textPanelBackgroundColor', {
PropertyFieldColorPickerMini('textPanelBackgroundColor', {
label: strings.TextPanelBackgroundColorFieldLabel,
initialColor: this.properties.textPanelBackgroundColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
8 changes: 4 additions & 4 deletions src/webparts/gridGallery/GridGalleryWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { ISPListItem } from './ISPList';

//Imports property pane custom fields
import { PropertyFieldSPListQuery, PropertyFieldSPListQueryOrderBy } from 'sp-client-custom-fields/lib/PropertyFieldSPListQuery';
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';
import { PropertyFieldFontPicker } from 'sp-client-custom-fields/lib/PropertyFieldFontPicker';
import { PropertyFieldFontSizePicker } from 'sp-client-custom-fields/lib/PropertyFieldFontSizePicker';
import { PropertyFieldAlignPicker } from 'sp-client-custom-fields/lib/PropertyFieldAlignPicker';
Expand Down Expand Up @@ -323,14 +323,14 @@ export default class GridGalleryWebPart extends BaseClientSideWebPart<IGridGalle
properties: this.properties,
key: "gridGalleryFontSizeField"
}),
PropertyFieldColorPicker('textPanelFontColor', {
PropertyFieldColorPickerMini('textPanelFontColor', {
label: strings.TextPanelFontColorFieldLabel,
initialColor: this.properties.textPanelFontColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: "gridGalleryFontColorField"
}),
PropertyFieldColorPicker('textPanelBackgroundColor', {
PropertyFieldColorPickerMini('textPanelBackgroundColor', {
label: strings.TextPanelBackgroundColorFieldLabel,
initialColor: this.properties.textPanelBackgroundColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down Expand Up @@ -358,7 +358,7 @@ export default class GridGalleryWebPart extends BaseClientSideWebPart<IGridGalle
max: 50,
step: 1
}),
PropertyFieldColorPicker('borderColor', {
PropertyFieldColorPickerMini('borderColor', {
label: strings.BorderColorFieldLabel,
initialColor: this.properties.borderColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
6 changes: 3 additions & 3 deletions src/webparts/lineChart/LineChartWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { ILineChartWebPartProps } from './ILineChartWebPartProps';

//Imports property pane custom fields
import { PropertyFieldCustomList, CustomListFieldType } from 'sp-client-custom-fields/lib/PropertyFieldCustomList';
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';
import { PropertyFieldFontPicker } from 'sp-client-custom-fields/lib/PropertyFieldFontPicker';
import { PropertyFieldFontSizePicker } from 'sp-client-custom-fields/lib/PropertyFieldFontSizePicker';
import { PropertyFieldDimensionPicker } from 'sp-client-custom-fields/lib/PropertyFieldDimensionPicker';
Expand Down Expand Up @@ -230,7 +230,7 @@ export default class LineChartWebPart extends BaseClientSideWebPart<ILineChartWe
{key: 'dash', text: 'dash'}
]
}),
PropertyFieldColorPicker('fillColor', {
PropertyFieldColorPickerMini('fillColor', {
label: strings.FillColor,
initialColor: this.properties.fillColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down Expand Up @@ -275,7 +275,7 @@ export default class LineChartWebPart extends BaseClientSideWebPart<ILineChartWe
properties: this.properties,
key: 'lineChartTitleSizeField'
}),
PropertyFieldColorPicker('titleColor', {
PropertyFieldColorPickerMini('titleColor', {
label: strings.TitleColor,
initialColor: this.properties.titleColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
6 changes: 3 additions & 3 deletions src/webparts/messageBar/MessageBarWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import * as strings from 'MessageBarStrings';
import { IMessageBarWebPartProps } from './IMessageBarWebPartProps';

//Imports property pane custom fields
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';
import { PropertyFieldFontPicker } from 'sp-client-custom-fields/lib/PropertyFieldFontPicker';
import { PropertyFieldFontSizePicker } from 'sp-client-custom-fields/lib/PropertyFieldFontSizePicker';
import { PropertyFieldIconPicker } from 'sp-client-custom-fields/lib/PropertyFieldIconPicker';
Expand Down Expand Up @@ -140,14 +140,14 @@ export default class MessageBarWebPart extends BaseClientSideWebPart<IMessageBar
properties: this.properties,
key: 'messageBarFontSizeField'
}),
PropertyFieldColorPicker('fontColor', {
PropertyFieldColorPickerMini('fontColor', {
label: strings.FontColor,
initialColor: this.properties.fontColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: 'messageBarFontColorField'
}),
PropertyFieldColorPicker('backgroundColor', {
PropertyFieldColorPickerMini('backgroundColor', {
label: strings.BackgroundColor,
initialColor: this.properties.backgroundColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
6 changes: 3 additions & 3 deletions src/webparts/newsCarousel/NewsCarouselWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { INewsCarouselWebPartProps } from './INewsCarouselWebPartProps';

//Imports property pane custom fields
import { PropertyFieldCustomList, CustomListFieldType } from 'sp-client-custom-fields/lib/PropertyFieldCustomList';
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';
import { PropertyFieldFontPicker } from 'sp-client-custom-fields/lib/PropertyFieldFontPicker';
import { PropertyFieldFontSizePicker } from 'sp-client-custom-fields/lib/PropertyFieldFontSizePicker';
import { PropertyFieldAlignPicker } from 'sp-client-custom-fields/lib/PropertyFieldAlignPicker';
Expand Down Expand Up @@ -296,14 +296,14 @@ export default class NewsCarouselWebPart extends BaseClientSideWebPart<INewsCaro
properties: this.properties,
key: 'newsCarouselFontSizeField'
}),
PropertyFieldColorPicker('textPanelFontColor', {
PropertyFieldColorPickerMini('textPanelFontColor', {
label: strings.TextPanelFontColorFieldLabel,
initialColor: this.properties.textPanelFontColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: 'newsCarouselFontColorField'
}),
PropertyFieldColorPicker('textPanelBackgroundColor', {
PropertyFieldColorPickerMini('textPanelBackgroundColor', {
label: strings.TextPanelBackgroundColorFieldLabel,
initialColor: this.properties.textPanelBackgroundColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
8 changes: 4 additions & 4 deletions src/webparts/newsSlider/NewsSliderWebPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { INewsSliderWebPartProps } from './INewsSliderWebPartProps';

//Imports property pane custom fields
import { PropertyFieldCustomList, CustomListFieldType } from 'sp-client-custom-fields/lib/PropertyFieldCustomList';
import { PropertyFieldColorPicker } from 'sp-client-custom-fields/lib/PropertyFieldColorPicker';
import { PropertyFieldColorPickerMini } from 'sp-client-custom-fields/lib/PropertyFieldColorPickerMini';
import { PropertyFieldFontPicker } from 'sp-client-custom-fields/lib/PropertyFieldFontPicker';
import { PropertyFieldFontSizePicker } from 'sp-client-custom-fields/lib/PropertyFieldFontSizePicker';
import { PropertyFieldAlignPicker } from 'sp-client-custom-fields/lib/PropertyFieldAlignPicker';
Expand Down Expand Up @@ -277,14 +277,14 @@ export default class NewsSliderWebPart extends BaseClientSideWebPart<INewsSlider
properties: this.properties,
key: 'newsSliderFontSizeField'
}),
PropertyFieldColorPicker('textPanelFontColor', {
PropertyFieldColorPickerMini('textPanelFontColor', {
label: strings.TextPanelFontColorFieldLabel,
initialColor: this.properties.textPanelFontColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
properties: this.properties,
key: 'newsSliderFontColorField'
}),
PropertyFieldColorPicker('textPanelBackgroundColor', {
PropertyFieldColorPickerMini('textPanelBackgroundColor', {
label: strings.TextPanelBackgroundColorFieldLabel,
initialColor: this.properties.textPanelBackgroundColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down Expand Up @@ -312,7 +312,7 @@ export default class NewsSliderWebPart extends BaseClientSideWebPart<INewsSlider
max: 50,
step: 1
}),
PropertyFieldColorPicker('borderColor', {
PropertyFieldColorPickerMini('borderColor', {
label: strings.BorderColorFieldLabel,
initialColor: this.properties.borderColor,
onPropertyChange: this.onPropertyPaneFieldChanged,
Expand Down
Loading

0 comments on commit 5f61c5f

Please sign in to comment.