Vipul Kelkar 13954cc7bc Redux-Form sample webpart (#503)
* Redux-Form sample SPFx webpart added.

New SPFx webpart sample added that uses redux-form library. Sample is a data entry form with dynamic grid built using typescript, react, redux and redux-form library.

* Readme file updated.

Readme file updated with correct webpart demo gif file path.
2018-05-12 04:57:03 +03:00

27 lines
1.1 KiB
JSON

{
"$schema": "https://dev.office.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
"id": "5eae71fd-ab9e-4c89-ac18-24d2e19e9e79",
"alias": "DynamicGridWebpartWebPart",
"componentType": "WebPart",
// The "*" signifies that the version should be taken from the package.json
"version": "*",
"manifestVersion": 2,
// If true, the component can only be installed on sites where Custom Script is allowed.
// Components that allow authors to embed arbitrary script code should set this to true.
// https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f
"requiresCustomScript": false,
"preconfiguredEntries": [{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
"group": { "default": "Other" },
"title": { "default": "ReduxFormWebpart" },
"description": { "default": "Sample webpart using redux-form library in SPFx." },
"officeFabricIconFontName": "Page",
"properties": {
"description": "Sample webpart using redux-form library in SPFx."
}
}]
}