@desynth/web-components-react 25.2.7-alpha.1 → 25.4.11-alpha.1
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.
- package/dist/components.d.ts +2 -0
- package/dist/components.js +4 -0
- package/package.json +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -28,3 +28,5 @@ export declare const DesynthTable: import("react").ForwardRefExoticComponent<JSX
|
|
|
28
28
|
export declare const DesynthTextArea: import("react").ForwardRefExoticComponent<JSX.DesynthTextArea & Omit<import("react").HTMLAttributes<HTMLDesynthTextAreaElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLDesynthTextAreaElement>>;
|
|
29
29
|
export declare const DesynthTextInput: import("react").ForwardRefExoticComponent<JSX.DesynthTextInput & Omit<import("react").HTMLAttributes<HTMLDesynthTextInputElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLDesynthTextInputElement>>;
|
|
30
30
|
export declare const DesynthTooltip: import("react").ForwardRefExoticComponent<JSX.DesynthTooltip & Omit<import("react").HTMLAttributes<HTMLDesynthTooltipElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLDesynthTooltipElement>>;
|
|
31
|
+
export declare const HorizontalCards: import("react").ForwardRefExoticComponent<JSX.HorizontalCards & Omit<import("react").HTMLAttributes<HTMLHorizontalCardsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLHorizontalCardsElement>>;
|
|
32
|
+
export declare const HtmlEditor: import("react").ForwardRefExoticComponent<JSX.HtmlEditor & Omit<import("react").HTMLAttributes<HTMLHtmlEditorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLHtmlEditorElement>>;
|
package/dist/components.js
CHANGED
|
@@ -30,6 +30,8 @@ import { defineCustomElement as defineDesynthTable } from '@desynth/web-componen
|
|
|
30
30
|
import { defineCustomElement as defineDesynthTextArea } from '@desynth/web-components/dist/desynth-text-area.js';
|
|
31
31
|
import { defineCustomElement as defineDesynthTextInput } from '@desynth/web-components/dist/desynth-text-input.js';
|
|
32
32
|
import { defineCustomElement as defineDesynthTooltip } from '@desynth/web-components/dist/desynth-tooltip.js';
|
|
33
|
+
import { defineCustomElement as defineHorizontalCards } from '@desynth/web-components/dist/horizontal-cards.js';
|
|
34
|
+
import { defineCustomElement as defineHtmlEditor } from '@desynth/web-components/dist/html-editor.js';
|
|
33
35
|
export const DesynthAccordion = /*@__PURE__*/ createReactComponent('desynth-accordion', undefined, undefined, defineDesynthAccordion);
|
|
34
36
|
export const DesynthAlert = /*@__PURE__*/ createReactComponent('desynth-alert', undefined, undefined, defineDesynthAlert);
|
|
35
37
|
export const DesynthBreadcrumb = /*@__PURE__*/ createReactComponent('desynth-breadcrumb', undefined, undefined, defineDesynthBreadcrumb);
|
|
@@ -58,3 +60,5 @@ export const DesynthTable = /*@__PURE__*/ createReactComponent('desynth-table',
|
|
|
58
60
|
export const DesynthTextArea = /*@__PURE__*/ createReactComponent('desynth-text-area', undefined, undefined, defineDesynthTextArea);
|
|
59
61
|
export const DesynthTextInput = /*@__PURE__*/ createReactComponent('desynth-text-input', undefined, undefined, defineDesynthTextInput);
|
|
60
62
|
export const DesynthTooltip = /*@__PURE__*/ createReactComponent('desynth-tooltip', undefined, undefined, defineDesynthTooltip);
|
|
63
|
+
export const HorizontalCards = /*@__PURE__*/ createReactComponent('horizontal-cards', undefined, undefined, defineHorizontalCards);
|
|
64
|
+
export const HtmlEditor = /*@__PURE__*/ createReactComponent('html-editor', undefined, undefined, defineHtmlEditor);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@desynth/web-components-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "25.
|
|
4
|
+
"version": "25.04.11-alpha.1",
|
|
5
5
|
"description": "React proxy for @desynth/web-components",
|
|
6
6
|
"license": "MPL-2.0",
|
|
7
7
|
"homepage": "https://github.com/desynth/desynth-web-components#readme",
|