@andespindola/ui-react 0.1.1 → 0.2.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.
- package/dist/components.d.ts +39 -1
- package/dist/components.js +91 -1
- package/package.json +9 -4
package/dist/components.d.ts
CHANGED
|
@@ -4,30 +4,40 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { UiAccordionItem as UiAccordionItemElement } from "@andespindola/ui-core/dist/components/ui-accordion-item.js";
|
|
6
6
|
import { UiAccordion as UiAccordionElement } from "@andespindola/ui-core/dist/components/ui-accordion.js";
|
|
7
|
+
import { UiAlert as UiAlertElement } from "@andespindola/ui-core/dist/components/ui-alert.js";
|
|
8
|
+
import { UiAvatarGroup as UiAvatarGroupElement } from "@andespindola/ui-core/dist/components/ui-avatar-group.js";
|
|
7
9
|
import { UiAvatar as UiAvatarElement } from "@andespindola/ui-core/dist/components/ui-avatar.js";
|
|
8
10
|
import { UiBadge as UiBadgeElement } from "@andespindola/ui-core/dist/components/ui-badge.js";
|
|
11
|
+
import { UiBreadcrumbItem as UiBreadcrumbItemElement } from "@andespindola/ui-core/dist/components/ui-breadcrumb-item.js";
|
|
12
|
+
import { UiBreadcrumb as UiBreadcrumbElement } from "@andespindola/ui-core/dist/components/ui-breadcrumb.js";
|
|
9
13
|
import { UiButton as UiButtonElement } from "@andespindola/ui-core/dist/components/ui-button.js";
|
|
10
14
|
import { UiCard as UiCardElement } from "@andespindola/ui-core/dist/components/ui-card.js";
|
|
11
15
|
import { UiCheckbox as UiCheckboxElement } from "@andespindola/ui-core/dist/components/ui-checkbox.js";
|
|
16
|
+
import { UiContainer as UiContainerElement } from "@andespindola/ui-core/dist/components/ui-container.js";
|
|
12
17
|
import { UiDialog as UiDialogElement } from "@andespindola/ui-core/dist/components/ui-dialog.js";
|
|
13
18
|
import { UiDrawer as UiDrawerElement } from "@andespindola/ui-core/dist/components/ui-drawer.js";
|
|
14
19
|
import { UiDropdownItem as UiDropdownItemElement } from "@andespindola/ui-core/dist/components/ui-dropdown-item.js";
|
|
15
20
|
import { UiDropdownMenu as UiDropdownMenuElement } from "@andespindola/ui-core/dist/components/ui-dropdown-menu.js";
|
|
16
21
|
import { UiField as UiFieldElement } from "@andespindola/ui-core/dist/components/ui-field.js";
|
|
22
|
+
import { UiGrid as UiGridElement } from "@andespindola/ui-core/dist/components/ui-grid.js";
|
|
17
23
|
import { UiInput as UiInputElement } from "@andespindola/ui-core/dist/components/ui-input.js";
|
|
18
24
|
import { UiLabel as UiLabelElement } from "@andespindola/ui-core/dist/components/ui-label.js";
|
|
19
25
|
import { UiLoadingOverlay as UiLoadingOverlayElement } from "@andespindola/ui-core/dist/components/ui-loading-overlay.js";
|
|
26
|
+
import { UiPagination as UiPaginationElement } from "@andespindola/ui-core/dist/components/ui-pagination.js";
|
|
20
27
|
import { UiPopover as UiPopoverElement } from "@andespindola/ui-core/dist/components/ui-popover.js";
|
|
21
28
|
import { UiProgress as UiProgressElement } from "@andespindola/ui-core/dist/components/ui-progress.js";
|
|
22
29
|
import { UiRadioGroup as UiRadioGroupElement } from "@andespindola/ui-core/dist/components/ui-radio-group.js";
|
|
23
30
|
import { UiReveal as UiRevealElement } from "@andespindola/ui-core/dist/components/ui-reveal.js";
|
|
24
31
|
import { UiScrollProgress as UiScrollProgressElement } from "@andespindola/ui-core/dist/components/ui-scroll-progress.js";
|
|
25
32
|
import { UiSection as UiSectionElement } from "@andespindola/ui-core/dist/components/ui-section.js";
|
|
33
|
+
import { UiSegmented as UiSegmentedElement } from "@andespindola/ui-core/dist/components/ui-segmented.js";
|
|
26
34
|
import { UiSelect as UiSelectElement } from "@andespindola/ui-core/dist/components/ui-select.js";
|
|
27
35
|
import { UiSeparator as UiSeparatorElement } from "@andespindola/ui-core/dist/components/ui-separator.js";
|
|
28
36
|
import { UiSkeleton as UiSkeletonElement } from "@andespindola/ui-core/dist/components/ui-skeleton.js";
|
|
29
37
|
import { UiSlider as UiSliderElement } from "@andespindola/ui-core/dist/components/ui-slider.js";
|
|
30
38
|
import { UiSpinner as UiSpinnerElement } from "@andespindola/ui-core/dist/components/ui-spinner.js";
|
|
39
|
+
import { UiStack as UiStackElement } from "@andespindola/ui-core/dist/components/ui-stack.js";
|
|
40
|
+
import { UiStat as UiStatElement } from "@andespindola/ui-core/dist/components/ui-stat.js";
|
|
31
41
|
import { UiSwitch as UiSwitchElement } from "@andespindola/ui-core/dist/components/ui-switch.js";
|
|
32
42
|
import { UiTabs as UiTabsElement } from "@andespindola/ui-core/dist/components/ui-tabs.js";
|
|
33
43
|
import { UiTextarea as UiTextareaElement } from "@andespindola/ui-core/dist/components/ui-textarea.js";
|
|
@@ -42,10 +52,22 @@ type UiAccordionItemEvents = {
|
|
|
42
52
|
onUiToggle: EventName<CustomEvent<boolean>>;
|
|
43
53
|
};
|
|
44
54
|
export declare const UiAccordionItem: StencilReactComponent<UiAccordionItemElement, UiAccordionItemEvents>;
|
|
55
|
+
type UiAlertEvents = {
|
|
56
|
+
onUiClose: EventName<CustomEvent<void>>;
|
|
57
|
+
};
|
|
58
|
+
export declare const UiAlert: StencilReactComponent<UiAlertElement, UiAlertEvents>;
|
|
45
59
|
type UiAvatarEvents = NonNullable<unknown>;
|
|
46
60
|
export declare const UiAvatar: StencilReactComponent<UiAvatarElement, UiAvatarEvents>;
|
|
47
|
-
type
|
|
61
|
+
type UiAvatarGroupEvents = NonNullable<unknown>;
|
|
62
|
+
export declare const UiAvatarGroup: StencilReactComponent<UiAvatarGroupElement, UiAvatarGroupEvents>;
|
|
63
|
+
type UiBadgeEvents = {
|
|
64
|
+
onUiRemove: EventName<CustomEvent<void>>;
|
|
65
|
+
};
|
|
48
66
|
export declare const UiBadge: StencilReactComponent<UiBadgeElement, UiBadgeEvents>;
|
|
67
|
+
type UiBreadcrumbEvents = NonNullable<unknown>;
|
|
68
|
+
export declare const UiBreadcrumb: StencilReactComponent<UiBreadcrumbElement, UiBreadcrumbEvents>;
|
|
69
|
+
type UiBreadcrumbItemEvents = NonNullable<unknown>;
|
|
70
|
+
export declare const UiBreadcrumbItem: StencilReactComponent<UiBreadcrumbItemElement, UiBreadcrumbItemEvents>;
|
|
49
71
|
type UiButtonEvents = NonNullable<unknown>;
|
|
50
72
|
export declare const UiButton: StencilReactComponent<UiButtonElement, UiButtonEvents>;
|
|
51
73
|
type UiCardEvents = NonNullable<unknown>;
|
|
@@ -54,6 +76,8 @@ type UiCheckboxEvents = {
|
|
|
54
76
|
onUiChange: EventName<CustomEvent<boolean>>;
|
|
55
77
|
};
|
|
56
78
|
export declare const UiCheckbox: StencilReactComponent<UiCheckboxElement, UiCheckboxEvents>;
|
|
79
|
+
type UiContainerEvents = NonNullable<unknown>;
|
|
80
|
+
export declare const UiContainer: StencilReactComponent<UiContainerElement, UiContainerEvents>;
|
|
57
81
|
type UiDialogEvents = {
|
|
58
82
|
onUiClose: EventName<CustomEvent<void>>;
|
|
59
83
|
};
|
|
@@ -72,6 +96,8 @@ type UiDropdownMenuEvents = {
|
|
|
72
96
|
export declare const UiDropdownMenu: StencilReactComponent<UiDropdownMenuElement, UiDropdownMenuEvents>;
|
|
73
97
|
type UiFieldEvents = NonNullable<unknown>;
|
|
74
98
|
export declare const UiField: StencilReactComponent<UiFieldElement, UiFieldEvents>;
|
|
99
|
+
type UiGridEvents = NonNullable<unknown>;
|
|
100
|
+
export declare const UiGrid: StencilReactComponent<UiGridElement, UiGridEvents>;
|
|
75
101
|
type UiInputEvents = {
|
|
76
102
|
onUiInput: EventName<CustomEvent<string>>;
|
|
77
103
|
onUiChange: EventName<CustomEvent<string>>;
|
|
@@ -81,6 +107,10 @@ type UiLabelEvents = NonNullable<unknown>;
|
|
|
81
107
|
export declare const UiLabel: StencilReactComponent<UiLabelElement, UiLabelEvents>;
|
|
82
108
|
type UiLoadingOverlayEvents = NonNullable<unknown>;
|
|
83
109
|
export declare const UiLoadingOverlay: StencilReactComponent<UiLoadingOverlayElement, UiLoadingOverlayEvents>;
|
|
110
|
+
type UiPaginationEvents = {
|
|
111
|
+
onUiChange: EventName<CustomEvent<number>>;
|
|
112
|
+
};
|
|
113
|
+
export declare const UiPagination: StencilReactComponent<UiPaginationElement, UiPaginationEvents>;
|
|
84
114
|
type UiPopoverEvents = {
|
|
85
115
|
onUiOpenChange: EventName<CustomEvent<boolean>>;
|
|
86
116
|
};
|
|
@@ -97,6 +127,10 @@ type UiScrollProgressEvents = NonNullable<unknown>;
|
|
|
97
127
|
export declare const UiScrollProgress: StencilReactComponent<UiScrollProgressElement, UiScrollProgressEvents>;
|
|
98
128
|
type UiSectionEvents = NonNullable<unknown>;
|
|
99
129
|
export declare const UiSection: StencilReactComponent<UiSectionElement, UiSectionEvents>;
|
|
130
|
+
type UiSegmentedEvents = {
|
|
131
|
+
onUiChange: EventName<CustomEvent<string>>;
|
|
132
|
+
};
|
|
133
|
+
export declare const UiSegmented: StencilReactComponent<UiSegmentedElement, UiSegmentedEvents>;
|
|
100
134
|
type UiSelectEvents = {
|
|
101
135
|
onUiChange: EventName<CustomEvent<string>>;
|
|
102
136
|
};
|
|
@@ -112,6 +146,10 @@ type UiSliderEvents = {
|
|
|
112
146
|
export declare const UiSlider: StencilReactComponent<UiSliderElement, UiSliderEvents>;
|
|
113
147
|
type UiSpinnerEvents = NonNullable<unknown>;
|
|
114
148
|
export declare const UiSpinner: StencilReactComponent<UiSpinnerElement, UiSpinnerEvents>;
|
|
149
|
+
type UiStackEvents = NonNullable<unknown>;
|
|
150
|
+
export declare const UiStack: StencilReactComponent<UiStackElement, UiStackEvents>;
|
|
151
|
+
type UiStatEvents = NonNullable<unknown>;
|
|
152
|
+
export declare const UiStat: StencilReactComponent<UiStatElement, UiStatEvents>;
|
|
115
153
|
type UiSwitchEvents = {
|
|
116
154
|
onUiChange: EventName<CustomEvent<boolean>>;
|
|
117
155
|
};
|
package/dist/components.js
CHANGED
|
@@ -6,30 +6,40 @@
|
|
|
6
6
|
/* eslint-disable */
|
|
7
7
|
import { UiAccordionItem as UiAccordionItemElement, defineCustomElement as defineUiAccordionItem } from "@andespindola/ui-core/dist/components/ui-accordion-item.js";
|
|
8
8
|
import { UiAccordion as UiAccordionElement, defineCustomElement as defineUiAccordion } from "@andespindola/ui-core/dist/components/ui-accordion.js";
|
|
9
|
+
import { UiAlert as UiAlertElement, defineCustomElement as defineUiAlert } from "@andespindola/ui-core/dist/components/ui-alert.js";
|
|
10
|
+
import { UiAvatarGroup as UiAvatarGroupElement, defineCustomElement as defineUiAvatarGroup } from "@andespindola/ui-core/dist/components/ui-avatar-group.js";
|
|
9
11
|
import { UiAvatar as UiAvatarElement, defineCustomElement as defineUiAvatar } from "@andespindola/ui-core/dist/components/ui-avatar.js";
|
|
10
12
|
import { UiBadge as UiBadgeElement, defineCustomElement as defineUiBadge } from "@andespindola/ui-core/dist/components/ui-badge.js";
|
|
13
|
+
import { UiBreadcrumbItem as UiBreadcrumbItemElement, defineCustomElement as defineUiBreadcrumbItem } from "@andespindola/ui-core/dist/components/ui-breadcrumb-item.js";
|
|
14
|
+
import { UiBreadcrumb as UiBreadcrumbElement, defineCustomElement as defineUiBreadcrumb } from "@andespindola/ui-core/dist/components/ui-breadcrumb.js";
|
|
11
15
|
import { UiButton as UiButtonElement, defineCustomElement as defineUiButton } from "@andespindola/ui-core/dist/components/ui-button.js";
|
|
12
16
|
import { UiCard as UiCardElement, defineCustomElement as defineUiCard } from "@andespindola/ui-core/dist/components/ui-card.js";
|
|
13
17
|
import { UiCheckbox as UiCheckboxElement, defineCustomElement as defineUiCheckbox } from "@andespindola/ui-core/dist/components/ui-checkbox.js";
|
|
18
|
+
import { UiContainer as UiContainerElement, defineCustomElement as defineUiContainer } from "@andespindola/ui-core/dist/components/ui-container.js";
|
|
14
19
|
import { UiDialog as UiDialogElement, defineCustomElement as defineUiDialog } from "@andespindola/ui-core/dist/components/ui-dialog.js";
|
|
15
20
|
import { UiDrawer as UiDrawerElement, defineCustomElement as defineUiDrawer } from "@andespindola/ui-core/dist/components/ui-drawer.js";
|
|
16
21
|
import { UiDropdownItem as UiDropdownItemElement, defineCustomElement as defineUiDropdownItem } from "@andespindola/ui-core/dist/components/ui-dropdown-item.js";
|
|
17
22
|
import { UiDropdownMenu as UiDropdownMenuElement, defineCustomElement as defineUiDropdownMenu } from "@andespindola/ui-core/dist/components/ui-dropdown-menu.js";
|
|
18
23
|
import { UiField as UiFieldElement, defineCustomElement as defineUiField } from "@andespindola/ui-core/dist/components/ui-field.js";
|
|
24
|
+
import { UiGrid as UiGridElement, defineCustomElement as defineUiGrid } from "@andespindola/ui-core/dist/components/ui-grid.js";
|
|
19
25
|
import { UiInput as UiInputElement, defineCustomElement as defineUiInput } from "@andespindola/ui-core/dist/components/ui-input.js";
|
|
20
26
|
import { UiLabel as UiLabelElement, defineCustomElement as defineUiLabel } from "@andespindola/ui-core/dist/components/ui-label.js";
|
|
21
27
|
import { UiLoadingOverlay as UiLoadingOverlayElement, defineCustomElement as defineUiLoadingOverlay } from "@andespindola/ui-core/dist/components/ui-loading-overlay.js";
|
|
28
|
+
import { UiPagination as UiPaginationElement, defineCustomElement as defineUiPagination } from "@andespindola/ui-core/dist/components/ui-pagination.js";
|
|
22
29
|
import { UiPopover as UiPopoverElement, defineCustomElement as defineUiPopover } from "@andespindola/ui-core/dist/components/ui-popover.js";
|
|
23
30
|
import { UiProgress as UiProgressElement, defineCustomElement as defineUiProgress } from "@andespindola/ui-core/dist/components/ui-progress.js";
|
|
24
31
|
import { UiRadioGroup as UiRadioGroupElement, defineCustomElement as defineUiRadioGroup } from "@andespindola/ui-core/dist/components/ui-radio-group.js";
|
|
25
32
|
import { UiReveal as UiRevealElement, defineCustomElement as defineUiReveal } from "@andespindola/ui-core/dist/components/ui-reveal.js";
|
|
26
33
|
import { UiScrollProgress as UiScrollProgressElement, defineCustomElement as defineUiScrollProgress } from "@andespindola/ui-core/dist/components/ui-scroll-progress.js";
|
|
27
34
|
import { UiSection as UiSectionElement, defineCustomElement as defineUiSection } from "@andespindola/ui-core/dist/components/ui-section.js";
|
|
35
|
+
import { UiSegmented as UiSegmentedElement, defineCustomElement as defineUiSegmented } from "@andespindola/ui-core/dist/components/ui-segmented.js";
|
|
28
36
|
import { UiSelect as UiSelectElement, defineCustomElement as defineUiSelect } from "@andespindola/ui-core/dist/components/ui-select.js";
|
|
29
37
|
import { UiSeparator as UiSeparatorElement, defineCustomElement as defineUiSeparator } from "@andespindola/ui-core/dist/components/ui-separator.js";
|
|
30
38
|
import { UiSkeleton as UiSkeletonElement, defineCustomElement as defineUiSkeleton } from "@andespindola/ui-core/dist/components/ui-skeleton.js";
|
|
31
39
|
import { UiSlider as UiSliderElement, defineCustomElement as defineUiSlider } from "@andespindola/ui-core/dist/components/ui-slider.js";
|
|
32
40
|
import { UiSpinner as UiSpinnerElement, defineCustomElement as defineUiSpinner } from "@andespindola/ui-core/dist/components/ui-spinner.js";
|
|
41
|
+
import { UiStack as UiStackElement, defineCustomElement as defineUiStack } from "@andespindola/ui-core/dist/components/ui-stack.js";
|
|
42
|
+
import { UiStat as UiStatElement, defineCustomElement as defineUiStat } from "@andespindola/ui-core/dist/components/ui-stat.js";
|
|
33
43
|
import { UiSwitch as UiSwitchElement, defineCustomElement as defineUiSwitch } from "@andespindola/ui-core/dist/components/ui-switch.js";
|
|
34
44
|
import { UiTabs as UiTabsElement, defineCustomElement as defineUiTabs } from "@andespindola/ui-core/dist/components/ui-tabs.js";
|
|
35
45
|
import { UiTextarea as UiTextareaElement, defineCustomElement as defineUiTextarea } from "@andespindola/ui-core/dist/components/ui-textarea.js";
|
|
@@ -55,6 +65,14 @@ export const UiAccordionItem = /*@__PURE__*/ createComponent({
|
|
|
55
65
|
events: { onUiToggle: 'uiToggle' },
|
|
56
66
|
defineCustomElement: defineUiAccordionItem
|
|
57
67
|
});
|
|
68
|
+
export const UiAlert = /*@__PURE__*/ createComponent({
|
|
69
|
+
tagName: 'ui-alert',
|
|
70
|
+
elementClass: UiAlertElement,
|
|
71
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
72
|
+
react: React,
|
|
73
|
+
events: { onUiClose: 'uiClose' },
|
|
74
|
+
defineCustomElement: defineUiAlert
|
|
75
|
+
});
|
|
58
76
|
export const UiAvatar = /*@__PURE__*/ createComponent({
|
|
59
77
|
tagName: 'ui-avatar',
|
|
60
78
|
elementClass: UiAvatarElement,
|
|
@@ -63,14 +81,38 @@ export const UiAvatar = /*@__PURE__*/ createComponent({
|
|
|
63
81
|
events: {},
|
|
64
82
|
defineCustomElement: defineUiAvatar
|
|
65
83
|
});
|
|
84
|
+
export const UiAvatarGroup = /*@__PURE__*/ createComponent({
|
|
85
|
+
tagName: 'ui-avatar-group',
|
|
86
|
+
elementClass: UiAvatarGroupElement,
|
|
87
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
88
|
+
react: React,
|
|
89
|
+
events: {},
|
|
90
|
+
defineCustomElement: defineUiAvatarGroup
|
|
91
|
+
});
|
|
66
92
|
export const UiBadge = /*@__PURE__*/ createComponent({
|
|
67
93
|
tagName: 'ui-badge',
|
|
68
94
|
elementClass: UiBadgeElement,
|
|
69
95
|
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
70
96
|
react: React,
|
|
71
|
-
events: {},
|
|
97
|
+
events: { onUiRemove: 'uiRemove' },
|
|
72
98
|
defineCustomElement: defineUiBadge
|
|
73
99
|
});
|
|
100
|
+
export const UiBreadcrumb = /*@__PURE__*/ createComponent({
|
|
101
|
+
tagName: 'ui-breadcrumb',
|
|
102
|
+
elementClass: UiBreadcrumbElement,
|
|
103
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
104
|
+
react: React,
|
|
105
|
+
events: {},
|
|
106
|
+
defineCustomElement: defineUiBreadcrumb
|
|
107
|
+
});
|
|
108
|
+
export const UiBreadcrumbItem = /*@__PURE__*/ createComponent({
|
|
109
|
+
tagName: 'ui-breadcrumb-item',
|
|
110
|
+
elementClass: UiBreadcrumbItemElement,
|
|
111
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
112
|
+
react: React,
|
|
113
|
+
events: {},
|
|
114
|
+
defineCustomElement: defineUiBreadcrumbItem
|
|
115
|
+
});
|
|
74
116
|
export const UiButton = /*@__PURE__*/ createComponent({
|
|
75
117
|
tagName: 'ui-button',
|
|
76
118
|
elementClass: UiButtonElement,
|
|
@@ -95,6 +137,14 @@ export const UiCheckbox = /*@__PURE__*/ createComponent({
|
|
|
95
137
|
events: { onUiChange: 'uiChange' },
|
|
96
138
|
defineCustomElement: defineUiCheckbox
|
|
97
139
|
});
|
|
140
|
+
export const UiContainer = /*@__PURE__*/ createComponent({
|
|
141
|
+
tagName: 'ui-container',
|
|
142
|
+
elementClass: UiContainerElement,
|
|
143
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
144
|
+
react: React,
|
|
145
|
+
events: {},
|
|
146
|
+
defineCustomElement: defineUiContainer
|
|
147
|
+
});
|
|
98
148
|
export const UiDialog = /*@__PURE__*/ createComponent({
|
|
99
149
|
tagName: 'ui-dialog',
|
|
100
150
|
elementClass: UiDialogElement,
|
|
@@ -135,6 +185,14 @@ export const UiField = /*@__PURE__*/ createComponent({
|
|
|
135
185
|
events: {},
|
|
136
186
|
defineCustomElement: defineUiField
|
|
137
187
|
});
|
|
188
|
+
export const UiGrid = /*@__PURE__*/ createComponent({
|
|
189
|
+
tagName: 'ui-grid',
|
|
190
|
+
elementClass: UiGridElement,
|
|
191
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
192
|
+
react: React,
|
|
193
|
+
events: {},
|
|
194
|
+
defineCustomElement: defineUiGrid
|
|
195
|
+
});
|
|
138
196
|
export const UiInput = /*@__PURE__*/ createComponent({
|
|
139
197
|
tagName: 'ui-input',
|
|
140
198
|
elementClass: UiInputElement,
|
|
@@ -162,6 +220,14 @@ export const UiLoadingOverlay = /*@__PURE__*/ createComponent({
|
|
|
162
220
|
events: {},
|
|
163
221
|
defineCustomElement: defineUiLoadingOverlay
|
|
164
222
|
});
|
|
223
|
+
export const UiPagination = /*@__PURE__*/ createComponent({
|
|
224
|
+
tagName: 'ui-pagination',
|
|
225
|
+
elementClass: UiPaginationElement,
|
|
226
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
227
|
+
react: React,
|
|
228
|
+
events: { onUiChange: 'uiChange' },
|
|
229
|
+
defineCustomElement: defineUiPagination
|
|
230
|
+
});
|
|
165
231
|
export const UiPopover = /*@__PURE__*/ createComponent({
|
|
166
232
|
tagName: 'ui-popover',
|
|
167
233
|
elementClass: UiPopoverElement,
|
|
@@ -210,6 +276,14 @@ export const UiSection = /*@__PURE__*/ createComponent({
|
|
|
210
276
|
events: {},
|
|
211
277
|
defineCustomElement: defineUiSection
|
|
212
278
|
});
|
|
279
|
+
export const UiSegmented = /*@__PURE__*/ createComponent({
|
|
280
|
+
tagName: 'ui-segmented',
|
|
281
|
+
elementClass: UiSegmentedElement,
|
|
282
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
283
|
+
react: React,
|
|
284
|
+
events: { onUiChange: 'uiChange' },
|
|
285
|
+
defineCustomElement: defineUiSegmented
|
|
286
|
+
});
|
|
213
287
|
export const UiSelect = /*@__PURE__*/ createComponent({
|
|
214
288
|
tagName: 'ui-select',
|
|
215
289
|
elementClass: UiSelectElement,
|
|
@@ -253,6 +327,22 @@ export const UiSpinner = /*@__PURE__*/ createComponent({
|
|
|
253
327
|
events: {},
|
|
254
328
|
defineCustomElement: defineUiSpinner
|
|
255
329
|
});
|
|
330
|
+
export const UiStack = /*@__PURE__*/ createComponent({
|
|
331
|
+
tagName: 'ui-stack',
|
|
332
|
+
elementClass: UiStackElement,
|
|
333
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
334
|
+
react: React,
|
|
335
|
+
events: {},
|
|
336
|
+
defineCustomElement: defineUiStack
|
|
337
|
+
});
|
|
338
|
+
export const UiStat = /*@__PURE__*/ createComponent({
|
|
339
|
+
tagName: 'ui-stat',
|
|
340
|
+
elementClass: UiStatElement,
|
|
341
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
342
|
+
react: React,
|
|
343
|
+
events: {},
|
|
344
|
+
defineCustomElement: defineUiStat
|
|
345
|
+
});
|
|
256
346
|
export const UiSwitch = /*@__PURE__*/ createComponent({
|
|
257
347
|
tagName: 'ui-switch',
|
|
258
348
|
elementClass: UiSwitchElement,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@andespindola/ui-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Wrappers React (e Next.js) para os Web Components do design system @andespindola/ui-core.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Anderson Espindola <andersonfaustinolima@gmail.com>",
|
|
@@ -8,8 +8,13 @@
|
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"module": "dist/index.js",
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
11
|
-
"files": [
|
|
12
|
-
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
13
18
|
"scripts": {
|
|
14
19
|
"build": "tsc -p tsconfig.json"
|
|
15
20
|
},
|
|
@@ -18,7 +23,7 @@
|
|
|
18
23
|
"react-dom": ">=18"
|
|
19
24
|
},
|
|
20
25
|
"dependencies": {
|
|
21
|
-
"@andespindola/ui-core": "0.
|
|
26
|
+
"@andespindola/ui-core": "0.2.0",
|
|
22
27
|
"@stencil/react-output-target": "^0.8.1"
|
|
23
28
|
},
|
|
24
29
|
"devDependencies": {
|