mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 21:48:24 +00:00
* Initial commit * Create LICENSE * readme updated * Major extensions (more web part properties, field ordering, adding, refactoring list form rendering...) * Updated to newest version of packages / support display field User & Lookup * Refactored rendering of SPFormField / support more field types / Check fro local environment and notify user / Added ConfigureWebPart / Introduced showSupportedFields option * Removed unused imports * Use of resource strings for localization / ListForm component now not relying on web part context (just spHttpClient) / added comments / fixed bug where old values were still shown after switching to other form type or item / Moved date picer strings to localized resources * Fixed bug where fields would not clear when switching formtype or id * Updated Readme and added overview clip gif
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [{
|
|
"name": "Local workbench",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"url": "https://localhost:4321/temp/workbench.html",
|
|
"webRoot": "${workspaceRoot}",
|
|
"sourceMaps": true,
|
|
"sourceMapPathOverrides": {
|
|
"webpack:///../../../src/*": "${webRoot}/src/*",
|
|
"webpack:///../../../../src/*": "${webRoot}/src/*",
|
|
"webpack:///../../../../../src/*": "${webRoot}/src/*"
|
|
},
|
|
"runtimeArgs": [
|
|
"--remote-debugging-port=9222"
|
|
]
|
|
},
|
|
{
|
|
"name": "Hosted workbench",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"url": "https://skybow.sharepoint.com/sites/test_dwy/_layouts/15/workbench.aspx",
|
|
"webRoot": "${workspaceRoot}",
|
|
"sourceMaps": true,
|
|
"sourceMapPathOverrides": {
|
|
"webpack:///../../../src/*": "${webRoot}/src/*",
|
|
"webpack:///../../../../src/*": "${webRoot}/src/*",
|
|
"webpack:///../../../../../src/*": "${webRoot}/src/*"
|
|
},
|
|
"runtimeArgs": [
|
|
"--remote-debugging-port=9222"
|
|
]
|
|
}
|
|
]
|
|
} |