@pnp/spfx-controls-react 3.18.0-beta.8148100 → 3.18.0-beta.8148163
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.json
CHANGED
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"`DynamicField`: Added orderBy to DynamicField props for lookup fields [#1747](https://github.com/pnp/sp-dev-fx-controls-react/pull/1747)",
|
|
9
9
|
"`DateTimePicker`: disable array of dates [#516](https://github.com/pnp/sp-dev-fx-controls-react/issues/516)",
|
|
10
10
|
"`DynamicForm`: new `customIcons` property to allow custom icons for the form [#1745](https://github.com/pnp/sp-dev-fx-controls-react/pull/1745)",
|
|
11
|
-
"`RichText`: Added style property to Rich text control [#1773](https://github.com/pnp/sp-dev-fx-controls-react/pull/1773)"
|
|
11
|
+
"`RichText`: Added style property to Rich text control [#1773](https://github.com/pnp/sp-dev-fx-controls-react/pull/1773)",
|
|
12
|
+
"`fast-serve`: Fast-serve update to match the most recent changes. [#1782](https://github.com/pnp/sp-dev-fx-controls-react/pull/1782)"
|
|
12
13
|
],
|
|
13
14
|
"fixes": [
|
|
14
15
|
"`FolderPicker`: Update documentation on how to use the control with siteAbsoluteUrl property [#1743](https://github.com/pnp/sp-dev-fx-controls-react/pull/1743)",
|
|
@@ -22,6 +23,7 @@
|
|
|
22
23
|
"[Harminder Singh](https://github.com/HarminderSethi)",
|
|
23
24
|
"[IRRDC](https://github.com/IRRDC)",
|
|
24
25
|
"[Nishkalank Bezawada](https://github.com/NishkalankBezawada)",
|
|
26
|
+
"[Sergei Sergeev](https://github.com/s-KaiNet)",
|
|
25
27
|
"[srpmtt](https://github.com/srpmtt)"
|
|
26
28
|
]
|
|
27
29
|
},
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export var version = "3.18.0-beta.
|
|
1
|
+
export var version = "3.18.0-beta.8148163";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/spfx-controls-react",
|
|
3
3
|
"description": "Reusable React controls for SharePoint Framework solutions",
|
|
4
|
-
"version": "3.18.0-beta.
|
|
4
|
+
"version": "3.18.0-beta.8148163",
|
|
5
5
|
"node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "gulp build",
|
|
8
8
|
"clean": "gulp clean",
|
|
9
9
|
"test": "gulp test",
|
|
10
10
|
"test:unit": "npx jest --silent --maxWorkers=4",
|
|
11
|
-
"serve": "
|
|
11
|
+
"serve": "fast-serve",
|
|
12
12
|
"prepublishOnly": "gulp",
|
|
13
13
|
"versionUpdater": "gulp versionUpdater",
|
|
14
14
|
"karma": "karma start --circle true",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"react-test-renderer": "17.0.1",
|
|
126
126
|
"request-promise": "4.2.5",
|
|
127
127
|
"sonarqube-scanner": "2.8.2",
|
|
128
|
-
"spfx-fast-serve-helpers": "1.18.
|
|
128
|
+
"spfx-fast-serve-helpers": "1.18.11",
|
|
129
129
|
"ts-jest": "^29.1.1",
|
|
130
130
|
"tslib": "2.3.1",
|
|
131
131
|
"typescript": "4.7.4",
|
package/fast-serve/config.json
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* User webpack settings file. You can add your own settings here.
|
|
3
|
-
* Changes from this file will be merged into the base webpack configuration file.
|
|
4
|
-
* This file will not be overwritten by the subsequent spfx-fast-serve calls.
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
// you can add your project related webpack configuration here, it will be merged using webpack-merge module
|
|
8
|
-
// i.e. plugins: [new webpack.Plugin()]
|
|
9
|
-
const webpackConfig = {
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
// for even more fine-grained control, you can apply custom webpack settings using below function
|
|
14
|
-
const transformConfig = function (initialWebpackConfig) {
|
|
15
|
-
// transform the initial webpack config here, i.e.
|
|
16
|
-
// initialWebpackConfig.plugins.push(new webpack.Plugin()); etc.
|
|
17
|
-
|
|
18
|
-
return initialWebpackConfig;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
module.exports = {
|
|
22
|
-
webpackConfig,
|
|
23
|
-
transformConfig
|
|
24
|
-
}
|