Initial commit

This commit is contained in:
Torsten Brendgen
2026-04-13 10:59:34 +02:00
commit 0b3f831174
23 changed files with 18009 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
define([], function() {
return {
"PropertyPaneDescription": "Layout settings",
"BasicGroupName": "Spacing",
"HorizontalPaddingFieldLabel": "Horizontal padding (left/right, px)"
}
});

View File

@@ -0,0 +1,10 @@
declare interface IFullWidthSectionWebPartWebPartStrings {
PropertyPaneDescription: string;
BasicGroupName: string;
HorizontalPaddingFieldLabel: string;
}
declare module 'FullWidthSectionWebPartWebPartStrings' {
const strings: IFullWidthSectionWebPartWebPartStrings;
export = strings;
}