Commit 1754f5d 1 parent 0a5452e commit 1754f5d Copy full SHA for 1754f5d
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import ResizeHandler from "@ui5/webcomponents-base/dist/delegate/ResizeHandler.j
18
18
import type { ResizeObserverCallback } from "@ui5/webcomponents-base/dist/delegate/ResizeHandler.js" ;
19
19
import NavigationMode from "@ui5/webcomponents-base/dist/types/NavigationMode.js" ;
20
20
import BreadcrumbsDesign from "./types/BreadcrumbsDesign.js" ;
21
- import BreadcrumbsSeparatorStyle from "./types/BreadcrumbsSeparatorStyle .js" ;
21
+ import BreadcrumbsSeparator from "./types/BreadcrumbsSeparator .js" ;
22
22
import BreadcrumbsItem from "./BreadcrumbsItem.js" ;
23
23
import {
24
24
BREADCRUMB_ITEM_POS ,
@@ -153,8 +153,8 @@ class Breadcrumbs extends UI5Element {
153
153
* @default "Slash"
154
154
* @public
155
155
*/
156
- @property ( { type : BreadcrumbsSeparatorStyle , defaultValue : BreadcrumbsSeparatorStyle . Slash } )
157
- separators ! : `${BreadcrumbsSeparatorStyle } `;
156
+ @property ( { type : BreadcrumbsSeparator , defaultValue : BreadcrumbsSeparator . Slash } )
157
+ separators ! : `${BreadcrumbsSeparator } `;
158
158
159
159
/**
160
160
* Holds the number of items in the overflow.
Original file line number Diff line number Diff line change 1
1
/**
2
- * Different Breadcrumbs separator styles .
2
+ * Different Breadcrumbs separators .
3
3
* @public
4
4
*/
5
- enum BreadcrumbsSeparatorStyle {
5
+ enum BreadcrumbsSeparator {
6
6
7
7
/**
8
8
* The separator appears as "/".
@@ -41,4 +41,4 @@ enum BreadcrumbsSeparatorStyle {
41
41
GreaterThan = "GreaterThan" ,
42
42
}
43
43
44
- export default BreadcrumbsSeparatorStyle ;
44
+ export default BreadcrumbsSeparator ;
You can’t perform that action at this time.
0 commit comments