Skip to content

Commit b798a96

Browse files
committed
merge with latest dev (1.20.0 beta)
2 parents f4691a9 + c8634be commit b798a96

File tree

214 files changed

+31804
-1770
lines changed

Some content is hidden

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

214 files changed

+31804
-1770
lines changed

.circleci/config.yml

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
deploy_docs:
100100
working_directory: ~/sp-dev-fx-controls-react/docs/documentation
101101
docker:
102-
- image: circleci/python:2.7-jessie-node
102+
- image: circleci/python:3.6.6-jessie-node
103103
steps:
104104
- attach_workspace:
105105
at: ~/sp-dev-fx-controls-react
@@ -111,7 +111,7 @@ jobs:
111111
command: sudo pip install mkdocs
112112
- run:
113113
name: Install MkDocs theme
114-
command: sudo pip install mkdocs-material
114+
command: sudo pip install mkdocs-material==3.1.0
115115
- run:
116116
name: Avoid hosts unknown for github
117117
command: echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config
@@ -127,12 +127,6 @@ workflows:
127127
filters:
128128
branches:
129129
ignore: /^(dev|master)/
130-
- test:
131-
requires:
132-
- build
133-
filters:
134-
branches:
135-
ignore: /^(dev|master)/
136130
release_next:
137131
jobs:
138132
- build:
@@ -145,15 +139,9 @@ workflows:
145139
filters:
146140
branches:
147141
only: dev
148-
- test:
149-
requires:
150-
- build_next
151-
filters:
152-
branches:
153-
only: dev
154142
- publish_next:
155143
requires:
156-
- test
144+
- build_next
157145
filters:
158146
branches:
159147
only: dev
@@ -165,17 +153,9 @@ workflows:
165153
only: /^v[0-9]+\.[0-9]+\.[0-9]+/
166154
branches:
167155
ignore: /.*/
168-
- test:
169-
requires:
170-
- build
171-
filters:
172-
tags:
173-
only: /^v[0-9]+\.[0-9]+\.[0-9]+/
174-
branches:
175-
ignore: /.*/
176156
- publish:
177157
requires:
178-
- test
158+
- build
179159
filters:
180160
tags:
181161
only: /^v[0-9]+\.[0-9]+\.[0-9]+/

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Thank you for reporting an issue, suggesting an enhancement, or asking a question. We appreciate your feedback - to help the team understand your
22
needs please complete the below template to ensure we have the details to help. Thanks!
33

4-
**Please check out the [documentation](https://sharepoint.github.io/sp-dev-fx-controls-react/) to see if your question is already addressed there. This will help us ensure our documentation is up to date.**
4+
**Please check out the [documentation](https://pnp.github.io/sp-dev-fx-controls-react/) to see if your question is already addressed there. This will help us ensure our documentation is up to date.**
55

66
#### Category
77
[ ] Enhancement

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ src
77
temp
88
config
99
typings
10+
lib/extensions
1011
lib/webparts
1112
assets
1213
dist

CHANGELOG.JSON

Lines changed: 322 additions & 156 deletions
Large diffs are not rendered by default.

CHANGELOG.md

Lines changed: 231 additions & 137 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,24 @@
44

55
This is a open source library that shares a set of reusable React control that can be used in your SharePoint Framework solutions.
66

7-
> If you are looking for web part property controls, please check following repository for those - [https://github.com/SharePoint/sp-dev-fx-property-controls](https://github.com/SharePoint/sp-dev-fx-property-controls)
7+
> If you are looking for web part property controls, please check following repository for those - [https://github.com/pnp/sp-dev-fx-property-controls](https://github.com/pnp/sp-dev-fx-property-controls)
88
99
## Get Started
1010

11-
More information to get started can be found documentation of this repository: [documentation](https://sharepoint.github.io/sp-dev-fx-controls-react/).
11+
More information to get started can be found documentation of this repository: [documentation](https://pnp.github.io/sp-dev-fx-controls-react/).
1212

1313
# Have issues or questions?
1414

1515
Please use following logic on submitting your questions or issues to right location to ensure that they are noticed and addressed as soon as possible.
1616

17-
* You have general question or challenge with SPFx - use [sp-dev-docs repository issue list](https://github.com/SharePoint/sp-dev-docs/issues).
18-
* You have issue on specific controls in this package - use [issue list in this repository](https://github.com/SharePoint/sp-dev-fx-controls-react/issues).
17+
* You have general question or challenge with SPFx - use [sp-dev-docs repository issue list](https://github.com/sharepoint/sp-dev-docs/issues).
18+
* You have issue on specific controls in this package - use [issue list in this repository](https://github.com/pnp/sp-dev-fx-controls-react/issues).
1919

2020

2121
## Contributing
2222

23+
We'd love your help! If you have ideas for new features or feedback, let us know by creating an issue in the [issues list](https://github.com/pnp/sp-dev-fx-controls-react/issues). Before you submit a PR with your improvements, please review our [project guides](https://pnp.github.io/sp-dev-fx-controls-react/guides).
24+
2325
This project welcomes contributions and suggestions. Most contributions require you to agree to a
2426
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
2527
the rights to use your contribution. For details, visit https://cla.microsoft.com.

config/karma.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ module.exports = function (config) {
2020
};
2121
config.plugins.push(htmlReporter);
2222

23+
config.set({
24+
framework: ['jasmine']
25+
})
2326
// Add the remap-coverage - code coverage for the original files
2427
config.reporters.push('remap-coverage');
2528
config.coverageReporter = {

0 commit comments

Comments
 (0)