arthurnassar
09/17/2025, 6:12 PMLuuk Peters (Proud Nerds)
09/17/2025, 6:14 PMarthurnassar
09/17/2025, 6:21 PMPatrick de Mooij
09/22/2025, 3:26 PMMatt Wise
09/22/2025, 3:29 PMPatrick de Mooij
09/22/2025, 3:57 PMBen
09/24/2025, 2:56 PMBen
09/26/2025, 10:28 AM// Recalculate the sections after all have been rendered
// DEV NOTE: This is to prevent multi-step styling being off
private async _recalculateTabGroupLayout()
{
await this.updateComplete;
const tabGroup = this.shadowRoot?.querySelector('uui-tab-group') as any;
if (tabGroup)
{
if (typeof tabGroup.requestUpdate === 'function')
{
tabGroup.requestUpdate();
}
}
}
Warren Buckley
09/27/2025, 4:49 PMOwain
09/29/2025, 9:37 AMLuuk Peters (Proud Nerds)
09/29/2025, 9:44 AMOwain
09/29/2025, 9:45 AMOwain
09/29/2025, 9:45 AMOwain
09/29/2025, 9:48 AMOwain
09/29/2025, 4:12 PMRichard Soeteman
10/02/2025, 11:58 AMGotchaman
10/07/2025, 10:21 PMskttl
10/08/2025, 6:01 AMGotchaman
10/08/2025, 11:06 AMhollystyles
10/10/2025, 8:23 AMhollystyles
10/10/2025, 8:23 AMleekelleher
10/10/2025, 8:26 AMsecurity
options:
await tryExecute(this, umbHttpClient.get({ security: [{ scheme: 'bearer', type: 'http' }], url }))
https://github.com/leekelleher/umbraco-contentment/blob/dev/v6.x/src/Umbraco.Community.Contentment.Client/src/property-editor-ui/data-list/data-list.repository.ts#L91Jacob Overgaard
10/10/2025, 8:30 AMcsharp
// Enable Umbraco authentication for the "Example" Swagger document
// PR: https://github.com/umbraco/Umbraco-CMS/pull/15699
opt.OperationFilter<ServerVariablesOperationSecurityFilter>();
https://github.com/iOvergaard/umbraco-servervariables/blob/69e78747e24897341802d1b2a1d544ed320e24ce/src/ServerVariables/Composers/ApiComposer.cs#L45Jacob Overgaard
10/10/2025, 8:31 AMcsharp
private class ServerVariablesOperationSecurityFilter : BackOfficeSecurityRequirementsOperationFilterBase
{
protected override string ApiName => Constants.ApiName;
}
leekelleher
10/10/2025, 8:35 AMhollystyles
10/10/2025, 9:39 AMhollystyles
10/10/2025, 9:48 AMLuuk Peters (Proud Nerds)
10/10/2025, 9:49 AMhollystyles
10/10/2025, 10:08 AMhollystyles
10/10/2025, 10:09 AM