Initial commit

This commit is contained in:
Torsten Brendgen
2026-04-13 10:24:29 +02:00
commit 0e32b831bd
24 changed files with 18584 additions and 0 deletions

169
config/serve.json Normal file
View File

@@ -0,0 +1,169 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
"port": 4321,
"https": true,
"serveConfigurations": {
"default": {
"pageUrl": "http://clshp001/",
"customActions": {
"035ba968-6488-4d42-86b3-0470ffcc95b9": {
"location": "ClientSideExtension.ApplicationCustomizer",
"properties": {
"elements": [
{
"type": "div",
"styles": {
"background-color": "#0078d4",
"color": "white",
"padding": "15px 20px",
"text-align": "center",
"font-family": "Segoe UI, sans-serif",
"font-size": "14px"
},
"content": "Willkommen auf unserem SharePoint Portal!"
}
]
}
}
}
},
"warning": {
"pageUrl": "http://clshp001/",
"customActions": {
"035ba968-6488-4d42-86b3-0470ffcc95b9": {
"location": "ClientSideExtension.ApplicationCustomizer",
"properties": {
"elements": [
{
"type": "div",
"styles": {
"background-color": "#d83b01",
"color": "white",
"padding": "15px",
"text-align": "center",
"font-weight": "bold"
},
"content": "⚠️ Achtung: Wartungsarbeiten am Wochenende"
}
]
}
}
}
},
"withLink": {
"pageUrl": "http://clshp001/",
"customActions": {
"035ba968-6488-4d42-86b3-0470ffcc95b9": {
"location": "ClientSideExtension.ApplicationCustomizer",
"properties": {
"elements": [
{
"type": "div",
"styles": {
"background-color": "#0078d4",
"color": "white",
"padding": "12px 20px",
"text-align": "center"
},
"children": [
{
"type": "span",
"content": "Wichtige Mitteilung: Systemwartung geplant. ",
"styles": {
"font-weight": "bold"
}
},
{
"type": "a",
"content": "Mehr Informationen",
"attributes": {
"href": "/sites/it/SitePages/Wartung.aspx",
"target": "_blank"
},
"styles": {
"color": "white",
"text-decoration": "underline",
"margin-left": "5px"
}
}
]
}
]
}
}
}
},
"gradient": {
"pageUrl": "http://clshp001/",
"customActions": {
"035ba968-6488-4d42-86b3-0470ffcc95b9": {
"location": "ClientSideExtension.ApplicationCustomizer",
"properties": {
"elements": [
{
"type": "div",
"styles": {
"background": "linear-gradient(135deg, #667eea 0%, #764ba2 100%)",
"color": "white",
"padding": "20px"
},
"children": [
{
"type": "div",
"styles": {
"display": "flex",
"justify-content": "space-between",
"align-items": "center",
"max-width": "1200px",
"margin": "0 auto"
},
"children": [
{
"type": "div",
"children": [
{
"type": "p",
"styles": {
"margin": "0",
"font-size": "18px",
"font-weight": "bold"
},
"content": "Neue Funktionen verfügbar!"
},
{
"type": "p",
"styles": {
"margin": "5px 0 0 0",
"font-size": "14px"
},
"content": "Entdecken Sie die neuesten Updates"
}
]
},
{
"type": "button",
"content": "Mehr erfahren",
"attributes": {
"onclick": "window.location.href='/sites/news/SitePages/Updates.aspx'"
},
"styles": {
"background-color": "white",
"color": "#667eea",
"border": "none",
"padding": "10px 20px",
"border-radius": "5px",
"cursor": "pointer",
"font-weight": "bold"
}
}
]
}
]
}
]
}
}
}
}
}
}