File tree Expand file tree Collapse file tree
packages/base/src/internal/utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { attachBoot } from '@ui5/webcomponents-base/dist/Boot.js' ;
22import { addCustomCSS } from '@ui5/webcomponents-base/dist/Theming.js' ;
3- import { getUi5TagWithSuffix } from './index .js' ;
3+ import { getUi5TagWithSuffix } from './getUi5TagWithSuffix .js' ;
44
55/**
66 * ⚠️ __INTERNAL__ use only! This function is not part of the public API.
Original file line number Diff line number Diff line change 1+ import { getEffectiveScopingSuffixForTag } from '@ui5/webcomponents-base/dist/CustomElementsScope.js' ;
2+
3+ /**
4+ * ⚠️ __INTERNAL__ use only! This function is not part of the public API.
5+ */
6+ export function getUi5TagWithSuffix ( baseTagName : string ) {
7+ const tagNameSuffix : string | undefined = getEffectiveScopingSuffixForTag ( baseTagName ) ;
8+ return tagNameSuffix ? `${ baseTagName } -${ tagNameSuffix } ` : baseTagName ;
9+ }
Original file line number Diff line number Diff line change 1- import { getEffectiveScopingSuffixForTag } from '@ui5/webcomponents-base/dist/CustomElementsScope .js' ;
1+ export { getUi5TagWithSuffix } from './getUi5TagWithSuffix .js' ;
22
33/**
44 * ⚠️ __INTERNAL__ use only! This function is not part of the public API.
@@ -56,14 +56,6 @@ export const enrichEventWithDetails = <
5656 return event as EnrichedEventType < Event , Detail > ;
5757} ;
5858
59- /**
60- * ⚠️ __INTERNAL__ use only! This function is not part of the public API.
61- */
62- export function getUi5TagWithSuffix ( baseTagName : string ) {
63- const tagNameSuffix : string | undefined = getEffectiveScopingSuffixForTag ( baseTagName ) ;
64- return tagNameSuffix ? `${ baseTagName } -${ tagNameSuffix } ` : baseTagName ;
65- }
66-
6759export { debounce } from './debounce.js' ;
6860export { throttle } from './throttle.js' ;
6961export { addCustomCSSWithScoping } from './addCustomCSSWithScoping.js' ;
You can’t perform that action at this time.
0 commit comments