build(deps): bumps @umbraco-ui/uui from 1.15.0 to 1.16.0-rc.0 (#20402)

This commit is contained in:
Jacob Overgaard
2025-10-08 06:29:03 +02:00
committed by GitHub
parent df81264794
commit 4197ca637b
4 changed files with 488 additions and 487 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6,7 +6,7 @@
"build": "vite build"
},
"dependencies": {
"@umbraco-ui/uui": "^1.15.0",
"@umbraco-ui/uui-css": "^1.15.0"
"@umbraco-ui/uui": "^1.16.0-rc.0",
"@umbraco-ui/uui-css": "^1.16.0-rc.0"
}
}

View File

@@ -94,7 +94,7 @@ test('can update property value nested in a block grid area with an RTE with a b
await umbracoUi.content.clickSelectBlockElementWithName(areaElementTypeName);
await umbracoUi.content.clickAddBlockGridElementWithName(richTextEditorElementTypeName);
await umbracoUi.content.clickExactLinkWithName(richTextEditorElementTypeName);
await umbracoUi.content.clickInsertBlockButton();
await umbracoUi.content.clickTipTapToolbarIconWithTitle('Insert Block');
await umbracoUi.content.clickExactLinkWithName(blockListElementTypeName, true);
await umbracoUi.content.clickAddBlockGridElementWithName(textStringElementTypeName);
await umbracoUi.content.clickExactLinkWithName(textStringElementTypeName);

View File

@@ -63,6 +63,7 @@ test('can publish content with the image cropper data type', {tag: '@smoke'}, as
await umbracoUi.content.clickSaveAndPublishButton();
// Assert
await umbracoUi.content.waitForContentToBePublished();
await umbracoUi.content.isSuccessStateVisibleForSaveAndPublishButton();
expect(await umbracoApi.document.doesNameExist(contentName)).toBeTruthy();
const contentData = await umbracoApi.document.getByName(contentName);