Skip to content

Commit 48eee8e

Browse files
committed
more fixes
1 parent c5ec563 commit 48eee8e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

packages/base/package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
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"
@@ -63,11 +64,14 @@
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": {

packages/base/src/internal/utils/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export function getUi5TagWithSuffix(baseTagName: string) {
6666

6767
export { debounce } from './debounce.js';
6868
export { 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
*/

packages/charts/src/internal/ChartContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { BusyIndicator, Label } from '@ui5/webcomponents-react';
22
import type { CommonProps } from '@ui5/webcomponents-react';
33
import { 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';
55
import { clsx } from 'clsx';
66
import type { ComponentType, ReactElement, ReactNode } from 'react';
77
import { Component, forwardRef } from 'react';

0 commit comments

Comments
 (0)