Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/tools/lib/cem/custom-elements-manifest.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,10 @@ const processPublicAPI = object => {
}
for (const key of keys) {
if ((key === "privacy" && object[key] !== "public") || (key === "_ui5privacy" && object[key] !== "public")) {
if (keys.includes("kind") && object["kind"] === "class") {
continue;
}

return true;
} else if (typeof object[key] === "object") {
if (key === "cssParts" || key === "attributes" || key === "_ui5implements") {
Expand Down
Loading