Skip to content

Commit

Permalink
Fixed casing, added sample.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Bernier committed Oct 14, 2024
1 parent 7169f6d commit 10ba076
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
58 changes: 58 additions & 0 deletions samples/react-application-quick-create/assets/sample.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
[
{
"name": "pnp-sp-dev-spfx-extensions-react-application-quick-create",
"source": "pnp",
"title": "Application Customizer Quick Create",
"shortDescription": "Injects a button to the command bar which shows all the lists in the site and have the ability to quickly create an item by showing the NewForm.aspx inside a panel.",
"url": "https://github.com/pnp/sp-dev-fx-extensions/tree/main/samples/react-application-quick-create",
"longDescription": [
"SharePoint Framework Application Customizer that injects a button to the command bar which shows all the lists in the site and have the ability to quickly create an item by showing the NewForm.aspx inside a panel. Inspired by Quick Create functionality by popular CRMs."
],
"creationDateTime": "2023-12-25",
"updateDateTime": "2024-09-30",
"products": [
"SharePoint"
],
"metadata": [
{
"key": "CLIENT-SIDE-DEV",
"value": "React"
},
{
"key": "SPFX-VERSION",
"value": "1.18.2"
}
],
"tags": [],
"categories": [
"SPFX-APPLICATION-EXTENSION"
],
"thumbnails": [
{
"type": "image",
"order": 100,
"url": "https://github.com/pnp/sp-dev-fx-extensions/raw/main/samples/react-application-quick-create/assets/QuickCreateDemo.gif",
"alt": "Preview"
}
],
"authors": [
{
"gitHubAccount": "alecwantstobattle",
"pictureUrl": "https://github.com/alecwantstobattle.png",
"name": "Alec Tecson"
}
],
"references": [
{
"name": "Overview of SharePoint Framework Extensions",
"description": "You can use SharePoint Framework (SPFx) Extensions to extend the SharePoint user experience. With SPFx Extensions, you can customize more facets of the SharePoint experience, including notification areas, toolbars, and list data views. SPFx Extensions are available in all Microsoft 365 subscriptions for production usage.",
"url": "https://docs.microsoft.com/sharepoint/dev/spfx/extensions/overview-extensions?WT.mc_id=m365-15741-cxa"
},
{
"name": "Use page placeholders from Application Customizer",
"description": "Application Customizers provide access to well-known locations on SharePoint pages that you can modify based on your business and functional requirements. For example, you can create dynamic header and footer experiences that render across all the pages in SharePoint Online.",
"url": "https://docs.microsoft.com/sharepoint/dev/spfx/extensions/get-started/using-page-placeholder-with-extensions?WT.mc_id=m365-15741-cxa"
}
]
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { ApplicationCustomizerContext } from "@microsoft/sp-application-base";
import { useBoolean } from "@fluentui/react-hooks";

import { iconProps, panelProps } from "./QuickCreateButton.styles";
import styles from "./QUickCreateButton.module.scss";
import styles from "./QuickCreateButton.module.scss";

const QuickCreateButton: React.FC<{ context: ApplicationCustomizerContext }> = (
props
Expand Down

0 comments on commit 10ba076

Please sign in to comment.