@desynth/web-components-react 25.4.1-alpha.10 → 25.4.20-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 +3 -1
- package/dist/components.js +60 -28
- package/package.json +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { JSX } from '@desynth/web-components';
|
|
2
|
+
import type { JSX } from '@desynth/web-components/dist';
|
|
3
3
|
export declare const DesynthAccordion: import("react").ForwardRefExoticComponent<JSX.DesynthAccordion & Omit<import("react").HTMLAttributes<HTMLDesynthAccordionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLDesynthAccordionElement>>;
|
|
4
4
|
export declare const DesynthAlert: import("react").ForwardRefExoticComponent<JSX.DesynthAlert & Omit<import("react").HTMLAttributes<HTMLDesynthAlertElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLDesynthAlertElement>>;
|
|
5
5
|
export declare const DesynthBreadcrumb: import("react").ForwardRefExoticComponent<JSX.DesynthBreadcrumb & Omit<import("react").HTMLAttributes<HTMLDesynthBreadcrumbElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLDesynthBreadcrumbElement>>;
|
|
@@ -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
|
@@ -2,31 +2,63 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* auto-generated react proxies */
|
|
4
4
|
import { createReactComponent } from './react-component-lib';
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
5
|
+
import { defineCustomElement as defineDesynthAccordion } from '@desynth/web-components/dist/desynth-accordion.js';
|
|
6
|
+
import { defineCustomElement as defineDesynthAlert } from '@desynth/web-components/dist/desynth-alert.js';
|
|
7
|
+
import { defineCustomElement as defineDesynthBreadcrumb } from '@desynth/web-components/dist/desynth-breadcrumb.js';
|
|
8
|
+
import { defineCustomElement as defineDesynthButton } from '@desynth/web-components/dist/desynth-button.js';
|
|
9
|
+
import { defineCustomElement as defineDesynthButtonSlider } from '@desynth/web-components/dist/desynth-button-slider.js';
|
|
10
|
+
import { defineCustomElement as defineDesynthCard } from '@desynth/web-components/dist/desynth-card.js';
|
|
11
|
+
import { defineCustomElement as defineDesynthCheckbox } from '@desynth/web-components/dist/desynth-checkbox.js';
|
|
12
|
+
import { defineCustomElement as defineDesynthDatePicker } from '@desynth/web-components/dist/desynth-date-picker.js';
|
|
13
|
+
import { defineCustomElement as defineDesynthDivider } from '@desynth/web-components/dist/desynth-divider.js';
|
|
14
|
+
import { defineCustomElement as defineDesynthDrawer } from '@desynth/web-components/dist/desynth-drawer.js';
|
|
15
|
+
import { defineCustomElement as defineDesynthDropFile } from '@desynth/web-components/dist/desynth-drop-file.js';
|
|
16
|
+
import { defineCustomElement as defineDesynthForm } from '@desynth/web-components/dist/desynth-form.js';
|
|
17
|
+
import { defineCustomElement as defineDesynthGrid } from '@desynth/web-components/dist/desynth-grid.js';
|
|
18
|
+
import { defineCustomElement as defineDesynthHeader } from '@desynth/web-components/dist/desynth-header.js';
|
|
19
|
+
import { defineCustomElement as defineDesynthList } from '@desynth/web-components/dist/desynth-list.js';
|
|
20
|
+
import { defineCustomElement as defineDesynthLoader } from '@desynth/web-components/dist/desynth-loader.js';
|
|
21
|
+
import { defineCustomElement as defineDesynthModal } from '@desynth/web-components/dist/desynth-modal.js';
|
|
22
|
+
import { defineCustomElement as defineDesynthMultiStepper } from '@desynth/web-components/dist/desynth-multi-stepper.js';
|
|
23
|
+
import { defineCustomElement as defineDesynthPaper } from '@desynth/web-components/dist/desynth-paper.js';
|
|
24
|
+
import { defineCustomElement as defineDesynthRating } from '@desynth/web-components/dist/desynth-rating.js';
|
|
25
|
+
import { defineCustomElement as defineDesynthRenderer } from '@desynth/web-components/dist/desynth-renderer.js';
|
|
26
|
+
import { defineCustomElement as defineDesynthSelect } from '@desynth/web-components/dist/desynth-select.js';
|
|
27
|
+
import { defineCustomElement as defineDesynthStepStepper } from '@desynth/web-components/dist/desynth-step-stepper.js';
|
|
28
|
+
import { defineCustomElement as defineDesynthSwitch } from '@desynth/web-components/dist/desynth-switch.js';
|
|
29
|
+
import { defineCustomElement as defineDesynthTable } from '@desynth/web-components/dist/desynth-table.js';
|
|
30
|
+
import { defineCustomElement as defineDesynthTextArea } from '@desynth/web-components/dist/desynth-text-area.js';
|
|
31
|
+
import { defineCustomElement as defineDesynthTextInput } from '@desynth/web-components/dist/desynth-text-input.js';
|
|
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';
|
|
35
|
+
export const DesynthAccordion = /*@__PURE__*/ createReactComponent('desynth-accordion', undefined, undefined, defineDesynthAccordion);
|
|
36
|
+
export const DesynthAlert = /*@__PURE__*/ createReactComponent('desynth-alert', undefined, undefined, defineDesynthAlert);
|
|
37
|
+
export const DesynthBreadcrumb = /*@__PURE__*/ createReactComponent('desynth-breadcrumb', undefined, undefined, defineDesynthBreadcrumb);
|
|
38
|
+
export const DesynthButton = /*@__PURE__*/ createReactComponent('desynth-button', undefined, undefined, defineDesynthButton);
|
|
39
|
+
export const DesynthButtonSlider = /*@__PURE__*/ createReactComponent('desynth-button-slider', undefined, undefined, defineDesynthButtonSlider);
|
|
40
|
+
export const DesynthCard = /*@__PURE__*/ createReactComponent('desynth-card', undefined, undefined, defineDesynthCard);
|
|
41
|
+
export const DesynthCheckbox = /*@__PURE__*/ createReactComponent('desynth-checkbox', undefined, undefined, defineDesynthCheckbox);
|
|
42
|
+
export const DesynthDatePicker = /*@__PURE__*/ createReactComponent('desynth-date-picker', undefined, undefined, defineDesynthDatePicker);
|
|
43
|
+
export const DesynthDivider = /*@__PURE__*/ createReactComponent('desynth-divider', undefined, undefined, defineDesynthDivider);
|
|
44
|
+
export const DesynthDrawer = /*@__PURE__*/ createReactComponent('desynth-drawer', undefined, undefined, defineDesynthDrawer);
|
|
45
|
+
export const DesynthDropFile = /*@__PURE__*/ createReactComponent('desynth-drop-file', undefined, undefined, defineDesynthDropFile);
|
|
46
|
+
export const DesynthForm = /*@__PURE__*/ createReactComponent('desynth-form', undefined, undefined, defineDesynthForm);
|
|
47
|
+
export const DesynthGrid = /*@__PURE__*/ createReactComponent('desynth-grid', undefined, undefined, defineDesynthGrid);
|
|
48
|
+
export const DesynthHeader = /*@__PURE__*/ createReactComponent('desynth-header', undefined, undefined, defineDesynthHeader);
|
|
49
|
+
export const DesynthList = /*@__PURE__*/ createReactComponent('desynth-list', undefined, undefined, defineDesynthList);
|
|
50
|
+
export const DesynthLoader = /*@__PURE__*/ createReactComponent('desynth-loader', undefined, undefined, defineDesynthLoader);
|
|
51
|
+
export const DesynthModal = /*@__PURE__*/ createReactComponent('desynth-modal', undefined, undefined, defineDesynthModal);
|
|
52
|
+
export const DesynthMultiStepper = /*@__PURE__*/ createReactComponent('desynth-multi-stepper', undefined, undefined, defineDesynthMultiStepper);
|
|
53
|
+
export const DesynthPaper = /*@__PURE__*/ createReactComponent('desynth-paper', undefined, undefined, defineDesynthPaper);
|
|
54
|
+
export const DesynthRating = /*@__PURE__*/ createReactComponent('desynth-rating', undefined, undefined, defineDesynthRating);
|
|
55
|
+
export const DesynthRenderer = /*@__PURE__*/ createReactComponent('desynth-renderer', undefined, undefined, defineDesynthRenderer);
|
|
56
|
+
export const DesynthSelect = /*@__PURE__*/ createReactComponent('desynth-select', undefined, undefined, defineDesynthSelect);
|
|
57
|
+
export const DesynthStepStepper = /*@__PURE__*/ createReactComponent('desynth-step-stepper', undefined, undefined, defineDesynthStepStepper);
|
|
58
|
+
export const DesynthSwitch = /*@__PURE__*/ createReactComponent('desynth-switch', undefined, undefined, defineDesynthSwitch);
|
|
59
|
+
export const DesynthTable = /*@__PURE__*/ createReactComponent('desynth-table', undefined, undefined, defineDesynthTable);
|
|
60
|
+
export const DesynthTextArea = /*@__PURE__*/ createReactComponent('desynth-text-area', undefined, undefined, defineDesynthTextArea);
|
|
61
|
+
export const DesynthTextInput = /*@__PURE__*/ createReactComponent('desynth-text-input', undefined, undefined, defineDesynthTextInput);
|
|
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.20-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",
|