File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 5555 "types" : " ./dist/types/index.d.ts" ,
5656 "default" : " ./dist/types/index.js"
5757 },
58+ "./internal/addCustomCSSWithScoping.js" : " ./dist/internal/utils/addCustomCSSWithScoping.js" ,
5859 "./internal/hooks" : {
5960 "types" : " ./dist/internal/hooks/index.d.ts" ,
6061 "default" : " ./dist/internal/hooks/index.js"
6364 "types" : " ./dist/internal/types/index.d.ts" ,
6465 "default" : " ./dist/internal/types/index.js"
6566 },
67+ "./internal/utils" : {
68+ "types" : " ./dist/internal/utils/index.d.ts" ,
69+ "default" : " ./dist/internal/utils/index.js"
70+ },
6671 "./internal/*" : {
6772 "types" : " ./dist/internal/*.d.ts" ,
6873 "default" : " ./dist/internal/*.js"
69- },
70- "./internal/addCustomCSSWithScoping.js" : " ./dist/utils/addCustomCSSWithScoping.js"
74+ }
7175 },
7276 "homepage" : " https://ui5.github.io/webcomponents-react" ,
7377 "repository" : {
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ export function getUi5TagWithSuffix(baseTagName: string) {
6666
6767export { debounce } from './debounce.js' ;
6868export { throttle } from './throttle.js' ;
69+ export { addCustomCSSWithScoping } from './addCustomCSSWithScoping.js' ;
6970/**
7071 * ⚠️ __INTERNAL__ use only! This function is not part of the public API.
7172 */
Original file line number Diff line number Diff line change 11import { BusyIndicator , Label } from '@ui5/webcomponents-react' ;
22import type { CommonProps } from '@ui5/webcomponents-react' ;
33import { useStylesheet } from '@ui5/webcomponents-react-base' ;
4- import { addCustomCSSWithScoping } from '@ui5/webcomponents-react-base/dist/ internal/utils/addCustomCSSWithScoping.js ' ;
4+ import { addCustomCSSWithScoping } from '@ui5/webcomponents-react-base/internal/utils' ;
55import { clsx } from 'clsx' ;
66import type { ComponentType , ReactElement , ReactNode } from 'react' ;
77import { Component , forwardRef } from 'react' ;
You can’t perform that action at this time.
0 commit comments