https://www.eliostruyf.com/demystifying-the-mystery-behind-the-ui-language-in-sharepoint/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| export let total = 0; | |
| export let startpage; | |
| export let pagesize = 0; | |
| export let onPageChange; | |
| let currentpage = startpage || 0; | |
| $: totalpages = Math.ceil(total / pagesize); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| import Check from "../Misc/Icons/general/check-24px.svelte"; | |
| export let checked; | |
| export let defaultChecked = false; | |
| export let value; | |
| export let onChange; | |
| $: _checked = checked != null ? checked : defaultChecked; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {IDatePickerStrings} from "office-ui-fabric-react"; | |
| export const DayPickerStrings: IDatePickerStrings = { | |
| months: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], | |
| shortMonths: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], | |
| days: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"], | |
| shortDays: ["S", "M", "T", "W", "T", "F", "S"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as React from "react"; | |
| export interface IMessageProps {} | |
| export interface IMessageState {} | |
| export default class Message extends React.Component<IMessageProps,IMessageState> { | |
| constructor(props: IMessageProps) { | |
| super(props); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "useTabs": true, | |
| "tabWidth": 4, | |
| "semi": true, | |
| "singleQuote": true, | |
| "quoteProps": "as-needed", | |
| "trailingComma": "none", | |
| "bracketSpacing": true, | |
| "arrowParens": "avoid", | |
| "endOfLine": "lf" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <Request xmlns="http://schemas.microsoft.com/sharepoint/clientquery/2009" AddExpandoFieldTypeSuffix="true" SchemaVersion="15.0.0.0" LibraryVersion="16.0.0.0" ApplicationName=".NET Library"> | |
| <Actions> | |
| <ObjectPath Id="8" ObjectPathId="7" /> | |
| <ObjectIdentityQuery Id="9" ObjectPathId="7" /> | |
| <ObjectPath Id="11" ObjectPathId="10" /> | |
| <ObjectIdentityQuery Id="12" ObjectPathId="10" /> | |
| <ObjectPath Id="14" ObjectPathId="13" /> | |
| <ObjectIdentityQuery Id="15" ObjectPathId="13" /> | |
| <Query Id="16" ObjectPathId="13"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { SPHttpClient, SPHttpClientResponse, ISPHttpClientOptions } from '@microsoft/sp-http'; | |
| import { IWebPartContext } from "@microsoft/sp-webpart-base"; | |
| export class TaxonomySvcService { | |
| private clientServiceUrl: string; | |
| private context: IWebPartContext; | |
| constructor(context:IWebPartContext) { | |
| this.context = context; |
PNP Sharepoint Picker: Termstore Service:
https://github.com/SharePoint/sp-dev-fx-controls-react/blob/master/src/services/SPTermStorePickerService.ts