diff --git a/16/umbraco-cms/.gitbook/assets/ContentPicker-data-type-definition.png b/16/umbraco-cms/.gitbook/assets/ContentPicker-data-type-definition.png index 59b364cbe99..4079d60ffc6 100644 Binary files a/16/umbraco-cms/.gitbook/assets/ContentPicker-data-type-definition.png and b/16/umbraco-cms/.gitbook/assets/ContentPicker-data-type-definition.png differ diff --git a/16/umbraco-cms/fundamentals/code/umbraco-services.md b/16/umbraco-cms/fundamentals/code/umbraco-services.md index 9c2535c8b88..6dec1faf221 100644 --- a/16/umbraco-cms/fundamentals/code/umbraco-services.md +++ b/16/umbraco-cms/fundamentals/code/umbraco-services.md @@ -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(); + builder.Services.AddScoped(); - return builder; - } + return builder; } } ``` diff --git a/16/umbraco-cms/reference/umbraco-flavored-markdown.md b/16/umbraco-cms/reference/umbraco-flavored-markdown.md index 7bb6f77394d..f55ee17e8f5 100644 --- a/16/umbraco-cms/reference/umbraco-flavored-markdown.md +++ b/16/umbraco-cms/reference/umbraco-flavored-markdown.md @@ -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 { diff --git a/16/umbraco-ui-builder/release-notes.md b/16/umbraco-ui-builder/release-notes.md index dc416a01410..6018828aeb4 100644 --- a/16/umbraco-ui-builder/release-notes.md +++ b/16/umbraco-ui-builder/release-notes.md @@ -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).