@desynth/web-components-react 13.11.25-alpha.5 → 18.11.25-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.
@@ -30,6 +30,7 @@ import { DesynthSwitch as DesynthSwitchElement } from "@desynth/web-components/d
30
30
  import { DesynthTable as DesynthTableElement } from "@desynth/web-components/dist/desynth-table.js";
31
31
  import { DesynthTextArea as DesynthTextAreaElement } from "@desynth/web-components/dist/desynth-text-area.js";
32
32
  import { DesynthTextInput as DesynthTextInputElement } from "@desynth/web-components/dist/desynth-text-input.js";
33
+ import { DesynthText as DesynthTextElement } from "@desynth/web-components/dist/desynth-text.js";
33
34
  import { DesynthTooltip as DesynthTooltipElement } from "@desynth/web-components/dist/desynth-tooltip.js";
34
35
  import { HorizontalCards as HorizontalCardsElement } from "@desynth/web-components/dist/horizontal-cards.js";
35
36
  import { HtmlEditor as HtmlEditorElement } from "@desynth/web-components/dist/html-editor.js";
@@ -86,11 +87,7 @@ export type DesynthFormEvents = {
86
87
  export declare const DesynthForm: StencilReactComponent<DesynthFormElement, DesynthFormEvents>;
87
88
  export type DesynthGridEvents = NonNullable<unknown>;
88
89
  export declare const DesynthGrid: StencilReactComponent<DesynthGridElement, DesynthGridEvents>;
89
- export type DesynthHeaderEvents = {
90
- onHandleClick: EventName<CustomEvent<void>>;
91
- onHandleFocus: EventName<CustomEvent<void>>;
92
- onHandleBlur: EventName<CustomEvent<void>>;
93
- };
90
+ export type DesynthHeaderEvents = NonNullable<unknown>;
94
91
  export declare const DesynthHeader: StencilReactComponent<DesynthHeaderElement, DesynthHeaderEvents>;
95
92
  export type DesynthListEvents = {
96
93
  onItemClicked: EventName<DesynthListCustomEvent<ListItem>>;
@@ -138,6 +135,8 @@ export type DesynthTableEvents = {
138
135
  onDropEvent: EventName<CustomEvent<any>>;
139
136
  };
140
137
  export declare const DesynthTable: StencilReactComponent<DesynthTableElement, DesynthTableEvents>;
138
+ export type DesynthTextEvents = NonNullable<unknown>;
139
+ export declare const DesynthText: StencilReactComponent<DesynthTextElement, DesynthTextEvents>;
141
140
  export type DesynthTextAreaEvents = {
142
141
  onHandleChange: EventName<DesynthTextAreaCustomEvent<InputChangeEventValue>>;
143
142
  onHandleInput: EventName<DesynthTextAreaCustomEvent<HTMLInputElement>>;
@@ -26,6 +26,7 @@ import { DesynthSwitch as DesynthSwitchElement, defineCustomElement as defineDes
26
26
  import { DesynthTable as DesynthTableElement, defineCustomElement as defineDesynthTable } from "@desynth/web-components/dist/desynth-table.js";
27
27
  import { DesynthTextArea as DesynthTextAreaElement, defineCustomElement as defineDesynthTextArea } from "@desynth/web-components/dist/desynth-text-area.js";
28
28
  import { DesynthTextInput as DesynthTextInputElement, defineCustomElement as defineDesynthTextInput } from "@desynth/web-components/dist/desynth-text-input.js";
29
+ import { DesynthText as DesynthTextElement, defineCustomElement as defineDesynthText } from "@desynth/web-components/dist/desynth-text.js";
29
30
  import { DesynthTooltip as DesynthTooltipElement, defineCustomElement as defineDesynthTooltip } from "@desynth/web-components/dist/desynth-tooltip.js";
30
31
  import { HorizontalCards as HorizontalCardsElement, defineCustomElement as defineHorizontalCards } from "@desynth/web-components/dist/horizontal-cards.js";
31
32
  import { HtmlEditor as HtmlEditorElement, defineCustomElement as defineHtmlEditor } from "@desynth/web-components/dist/html-editor.js";
@@ -160,11 +161,7 @@ export const DesynthHeader = /*@__PURE__*/ createComponent({
160
161
  elementClass: DesynthHeaderElement,
161
162
  // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
162
163
  react: React,
163
- events: {
164
- onHandleClick: 'handleClick',
165
- onHandleFocus: 'handleFocus',
166
- onHandleBlur: 'handleBlur'
167
- },
164
+ events: {},
168
165
  defineCustomElement: defineDesynthHeader
169
166
  });
170
167
  export const DesynthList = /*@__PURE__*/ createComponent({
@@ -273,6 +270,14 @@ export const DesynthTable = /*@__PURE__*/ createComponent({
273
270
  },
274
271
  defineCustomElement: defineDesynthTable
275
272
  });
273
+ export const DesynthText = /*@__PURE__*/ createComponent({
274
+ tagName: 'desynth-text',
275
+ elementClass: DesynthTextElement,
276
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
277
+ react: React,
278
+ events: {},
279
+ defineCustomElement: defineDesynthText
280
+ });
276
281
  export const DesynthTextArea = /*@__PURE__*/ createComponent({
277
282
  tagName: 'desynth-text-area',
278
283
  elementClass: DesynthTextAreaElement,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@desynth/web-components-react",
3
3
  "sideEffects": false,
4
- "version": "13.11.25-alpha.5",
4
+ "version": "18.11.25-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",