Aktualisiere README.md und Konfigurationsdateien für Version 1.0.4; füge Elemente für Custom Branding Application Customizer hinzu

This commit is contained in:
Torsten Brendgen
2026-07-19 21:32:59 +02:00
parent 606e84c575
commit b99ac31f4d
7 changed files with 67 additions and 26 deletions

View File

@@ -1,4 +1,7 @@
import { override } from '@microsoft/decorators';
// Legacy SPFx 1.4 implementation; incremental modernization is tracked separately.
// tslint:disable:max-line-length no-consecutive-blank-lines no-function-expression no-trailing-whitespace typedef
import { Log } from '@microsoft/sp-core-library';
import {
BaseApplicationCustomizer,
@@ -6,8 +9,6 @@ import {
PlaceholderName
} from '@microsoft/sp-application-base';
import * as strings from 'CustomBrandingApplicationCustomizerStrings';
const LOG_SOURCE: string = 'CustomBrandingApplicationCustomizer';
/**

View File

@@ -4,5 +4,6 @@ declare interface ICustomBrandingApplicationCustomizerStrings {
declare module 'CustomBrandingApplicationCustomizerStrings' {
const strings: ICustomBrandingApplicationCustomizerStrings;
// tslint:disable-next-line:export-name
export = strings;
}