@desynth/web-components-react 14.9.26-alpha.4 → 14.9.26-alpha.5
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 +6 -1
- package/dist/components.js +10 -1
- package/package.json +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ import { DesynthStatGrid as DesynthStatGridElement } from "@desynth/web-componen
|
|
|
76
76
|
import { DesynthStats as DesynthStatsElement } from "@desynth/web-components/dist/desynth-stats.js";
|
|
77
77
|
import { DesynthStatusPill as DesynthStatusPillElement } from "@desynth/web-components/dist/desynth-status-pill.js";
|
|
78
78
|
import { DesynthStepStepper as DesynthStepStepperElement } from "@desynth/web-components/dist/desynth-step-stepper.js";
|
|
79
|
+
import { DesynthStickyStack as DesynthStickyStackElement } from "@desynth/web-components/dist/desynth-sticky-stack.js";
|
|
79
80
|
import { DesynthSwitch as DesynthSwitchElement } from "@desynth/web-components/dist/desynth-switch.js";
|
|
80
81
|
import { DesynthTable as DesynthTableElement } from "@desynth/web-components/dist/desynth-table.js";
|
|
81
82
|
import { DesynthTabs as DesynthTabsElement } from "@desynth/web-components/dist/desynth-tabs.js";
|
|
@@ -326,7 +327,9 @@ export type DesynthNavEvents = {
|
|
|
326
327
|
}>>;
|
|
327
328
|
};
|
|
328
329
|
export declare const DesynthNav: StencilReactComponent<DesynthNavElement, DesynthNavEvents>;
|
|
329
|
-
export type DesynthPageEvents =
|
|
330
|
+
export type DesynthPageEvents = {
|
|
331
|
+
onHandleNavigate: EventName<CustomEvent<string>>;
|
|
332
|
+
};
|
|
330
333
|
export declare const DesynthPage: StencilReactComponent<DesynthPageElement, DesynthPageEvents>;
|
|
331
334
|
export type DesynthPanelEvents = NonNullable<unknown>;
|
|
332
335
|
export declare const DesynthPanel: StencilReactComponent<DesynthPanelElement, DesynthPanelEvents>;
|
|
@@ -394,6 +397,8 @@ export type DesynthStatusPillEvents = NonNullable<unknown>;
|
|
|
394
397
|
export declare const DesynthStatusPill: StencilReactComponent<DesynthStatusPillElement, DesynthStatusPillEvents>;
|
|
395
398
|
export type DesynthStepStepperEvents = NonNullable<unknown>;
|
|
396
399
|
export declare const DesynthStepStepper: StencilReactComponent<DesynthStepStepperElement, DesynthStepStepperEvents>;
|
|
400
|
+
export type DesynthStickyStackEvents = NonNullable<unknown>;
|
|
401
|
+
export declare const DesynthStickyStack: StencilReactComponent<DesynthStickyStackElement, DesynthStickyStackEvents>;
|
|
397
402
|
export type DesynthSwitchEvents = {
|
|
398
403
|
onHandleClick: EventName<DesynthSwitchCustomEvent<SwitchChangeEventValue>>;
|
|
399
404
|
onHandleInput: EventName<DesynthSwitchCustomEvent<HTMLInputElement>>;
|
package/dist/components.js
CHANGED
|
@@ -72,6 +72,7 @@ import { DesynthStatGrid as DesynthStatGridElement, defineCustomElement as defin
|
|
|
72
72
|
import { DesynthStats as DesynthStatsElement, defineCustomElement as defineDesynthStats } from "@desynth/web-components/dist/desynth-stats.js";
|
|
73
73
|
import { DesynthStatusPill as DesynthStatusPillElement, defineCustomElement as defineDesynthStatusPill } from "@desynth/web-components/dist/desynth-status-pill.js";
|
|
74
74
|
import { DesynthStepStepper as DesynthStepStepperElement, defineCustomElement as defineDesynthStepStepper } from "@desynth/web-components/dist/desynth-step-stepper.js";
|
|
75
|
+
import { DesynthStickyStack as DesynthStickyStackElement, defineCustomElement as defineDesynthStickyStack } from "@desynth/web-components/dist/desynth-sticky-stack.js";
|
|
75
76
|
import { DesynthSwitch as DesynthSwitchElement, defineCustomElement as defineDesynthSwitch } from "@desynth/web-components/dist/desynth-switch.js";
|
|
76
77
|
import { DesynthTable as DesynthTableElement, defineCustomElement as defineDesynthTable } from "@desynth/web-components/dist/desynth-table.js";
|
|
77
78
|
import { DesynthTabs as DesynthTabsElement, defineCustomElement as defineDesynthTabs } from "@desynth/web-components/dist/desynth-tabs.js";
|
|
@@ -582,7 +583,7 @@ export const DesynthPage = /*@__PURE__*/ createComponent({
|
|
|
582
583
|
elementClass: DesynthPageElement,
|
|
583
584
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
584
585
|
react: React,
|
|
585
|
-
events: {},
|
|
586
|
+
events: { onHandleNavigate: 'handleNavigate' },
|
|
586
587
|
defineCustomElement: defineDesynthPage
|
|
587
588
|
});
|
|
588
589
|
export const DesynthPanel = /*@__PURE__*/ createComponent({
|
|
@@ -745,6 +746,14 @@ export const DesynthStepStepper = /*@__PURE__*/ createComponent({
|
|
|
745
746
|
events: {},
|
|
746
747
|
defineCustomElement: defineDesynthStepStepper
|
|
747
748
|
});
|
|
749
|
+
export const DesynthStickyStack = /*@__PURE__*/ createComponent({
|
|
750
|
+
tagName: 'desynth-sticky-stack',
|
|
751
|
+
elementClass: DesynthStickyStackElement,
|
|
752
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
753
|
+
react: React,
|
|
754
|
+
events: {},
|
|
755
|
+
defineCustomElement: defineDesynthStickyStack
|
|
756
|
+
});
|
|
748
757
|
export const DesynthSwitch = /*@__PURE__*/ createComponent({
|
|
749
758
|
tagName: 'desynth-switch',
|
|
750
759
|
elementClass: DesynthSwitchElement,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@desynth/web-components-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "14.09.26-alpha.
|
|
4
|
+
"version": "14.09.26-alpha.05",
|
|
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",
|