Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 2 additions & 5 deletions 16/umbraco-cms/fundamentals/code/umbraco-services.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,9 @@ public static class UmbracoBuilderServiceExtensions
{
public static IUmbracoBuilder AddCustomServices(this IUmbracoBuilder builder)
{
public static IUmbracoBuilder AddCustomServices(this IUmbracoBuilder builder)
{
builder.Services.AddScoped<ICustomNewsArticleService, CustomNewsArticleService>();
builder.Services.AddScoped<ICustomNewsArticleService, CustomNewsArticleService>();

return builder;
}
return builder;
}
}
```
Expand Down
1 change: 1 addition & 0 deletions 16/umbraco-cms/reference/umbraco-flavored-markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ If you wish to develop your own custom UFM component, you can use the `ufmCompon
The corresponding JavaScript/TypeScript API would contain a method to render the custom label/markup.

```js
import { Tokens } from '@umbraco-cms/backoffice/external/marked';
import { UmbUfmComponentBase } from '@umbraco-cms/backoffice/ufm';

export class MyCustomUfmComponentApi extends UmbUfmComponentBase {
Expand Down
10 changes: 10 additions & 0 deletions 16/umbraco-ui-builder/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ If you are upgrading to a new major version, check the breaking changes in the [

Below are the release notes for Umbraco UI Builder 15, detailing all changes in this version.

#### [**15.1.3**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.3) **(May 5th 2025)**

* Fixed actions notifications [#143](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/143) and [#161](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/161)
* Fixed default sorting for the `Name` column [#159](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/159)
* Fixed collection list view pagination [#133](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/133) and [#142](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/142)
* Fixed issues with the entity picker regarding the configuration of selected items - [#140](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/140), and the persisted value [#153](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/153)
* Fixed filterable properties that were using an `Integer` [#154](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/154)
* Update the filtering component to handle a persistence issue [#156](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/156)
* Fixed localization issues for fieldsets, tabs, properties, and context apps [#132](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/132), [#135](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/135), and [#152](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/152)

#### [**15.1.2**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.2) **(April 4th 2025)**

* Removed global registration of `UDI` converters [#144](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/144), [#136](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/136), and introduced new [Entity Identifier Converters](./collections/entity-identifier-converters.md).
Expand Down