@public-ui/react-standalone 2.0.10 → 2.0.12-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.mjs +9 -1
  2. package/package.json +7 -4
package/dist/index.mjs CHANGED
@@ -228,4 +228,12 @@ const KolTreeItemWc = /* @__PURE__ */ createReactComponent("kol-tree-item-wc");
228
228
  const KolTreeWc = /* @__PURE__ */ createReactComponent("kol-tree-wc");
229
229
  const KolVersion = /* @__PURE__ */ createReactComponent("kol-version");
230
230
 
231
- export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
231
+ function createReactRenderElement(hostElement) {
232
+ const renderElement = document.createElement("div");
233
+ renderElement.setAttribute("role", "presentation");
234
+ hostElement.innerHTML = "";
235
+ hostElement.appendChild(renderElement);
236
+ return renderElement;
237
+ }
238
+
239
+ export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, createReactRenderElement, setTagNameTransformer };
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@public-ui/react-standalone",
3
- "version": "2.0.10",
3
+ "version": "2.0.12-rc.0",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
- "repository": "https://github.com/public-ui/kolibri",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/public-ui/kolibri"
9
+ },
7
10
  "bugs": {
8
11
  "url": "https://github.com/public-ui/kolibri/issues",
9
12
  "email": "kolibri@itzbund.de"
@@ -42,12 +45,12 @@
42
45
  "react"
43
46
  ],
44
47
  "devDependencies": {
45
- "@public-ui/react": "2.0.10",
48
+ "@public-ui/react": "2.0.12-rc.0",
46
49
  "cpy-cli": "5.0.0",
47
50
  "rimraf": "5.0.5"
48
51
  },
49
52
  "peerDependencies": {
50
- "@public-ui/components": "2.0.10",
53
+ "@public-ui/components": "2.0.12-rc.0",
51
54
  "react": ">=16.14.0",
52
55
  "react-dom": ">=16.14.0"
53
56
  },