@zanichelli/albe-web-components 21.0.0-RC2 → 21.0.0-RC3
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/package.json +3 -3
- package/react/components.js +64 -132
- package/react/index.d.ts +1 -1
- package/react/index.js +1 -17
- package/react/package.json +3 -0
- package/react/z-accordion.js +7 -13
- package/react/z-anchor-navigation.js +7 -13
- package/react/z-app-header.js +7 -13
- package/react/z-aria-alert.js +7 -13
- package/react/z-avatar.js +7 -13
- package/react/z-book-card-app.js +7 -13
- package/react/z-book-card.js +7 -13
- package/react/z-book-cover.js +7 -13
- package/react/z-breadcrumb.js +7 -13
- package/react/z-button-sort.js +7 -13
- package/react/z-button.js +7 -13
- package/react/z-card.js +7 -13
- package/react/z-carousel.js +7 -13
- package/react/z-chip.js +7 -13
- package/react/z-color-picker.js +7 -13
- package/react/z-combobox.js +7 -13
- package/react/z-cover-hero.js +7 -13
- package/react/z-date-picker.js +7 -13
- package/react/z-divider.js +7 -13
- package/react/z-dragdrop-area.js +7 -13
- package/react/z-file-upload.js +7 -13
- package/react/z-file.js +7 -13
- package/react/z-ghost-loading.js +7 -13
- package/react/z-icon.js +7 -13
- package/react/z-info-box.js +7 -13
- package/react/z-info-reveal.js +7 -13
- package/react/z-input-message.js +7 -13
- package/react/z-input-range.js +7 -13
- package/react/z-input.js +7 -13
- package/react/z-list-element.js +7 -13
- package/react/z-list-group.js +7 -13
- package/react/z-list.js +7 -13
- package/react/z-logo.js +7 -13
- package/react/z-menu-section.js +7 -13
- package/react/z-menu.js +7 -13
- package/react/z-modal.js +7 -13
- package/react/z-navigation-tabs.js +7 -13
- package/react/z-notification.js +7 -13
- package/react/z-offcanvas.js +7 -13
- package/react/z-pagination.js +7 -13
- package/react/z-popover.js +7 -13
- package/react/z-range-picker.js +7 -13
- package/react/z-result-card.js +7 -13
- package/react/z-searchbar.js +7 -13
- package/react/z-select.js +7 -13
- package/react/z-skip-to-content.js +7 -13
- package/react/z-stepper-item.js +7 -13
- package/react/z-stepper.js +7 -13
- package/react/z-table.js +7 -13
- package/react/z-tag.js +7 -13
- package/react/z-tbody.js +7 -13
- package/react/z-td.js +7 -13
- package/react/z-tfoot.js +7 -13
- package/react/z-th.js +7 -13
- package/react/z-thead.js +7 -13
- package/react/z-toast-notification-list.js +7 -13
- package/react/z-toast-notification.js +7 -13
- package/react/z-toggle-switch.js +7 -13
- package/react/z-tool.js +7 -13
- package/react/z-toolbar.js +7 -13
- package/react/z-tooltip.js +7 -13
- package/react/z-tr.js +7 -13
- package/react/z-tree-list.js +7 -13
- package/react/z-visually-hidden.js +7 -13
package/react/z-menu.js
CHANGED
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZMenu = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_menu_js_1 = require("@zanichelli/albe-web-components/dist/components/z-menu.js");
|
|
11
|
-
exports.ZMenu = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZMenu as ZMenuElement, defineCustomElement as defineZMenu } from "@zanichelli/albe-web-components/dist/components/z-menu.js";
|
|
5
|
+
export const ZMenu = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-menu',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZMenuElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {
|
|
17
11
|
onOpened: 'opened',
|
|
18
12
|
onClosed: 'closed'
|
|
19
13
|
},
|
|
20
|
-
defineCustomElement:
|
|
14
|
+
defineCustomElement: defineZMenu
|
|
21
15
|
});
|
package/react/z-modal.js
CHANGED
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZModal = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_modal_js_1 = require("@zanichelli/albe-web-components/dist/components/z-modal.js");
|
|
11
|
-
exports.ZModal = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZModal as ZModalElement, defineCustomElement as defineZModal } from "@zanichelli/albe-web-components/dist/components/z-modal.js";
|
|
5
|
+
export const ZModal = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-modal',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZModalElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {
|
|
17
11
|
onModalClose: 'modalClose',
|
|
18
12
|
onModalHeaderActive: 'modalHeaderActive',
|
|
19
13
|
onModalBackgroundClick: 'modalBackgroundClick'
|
|
20
14
|
},
|
|
21
|
-
defineCustomElement:
|
|
15
|
+
defineCustomElement: defineZModal
|
|
22
16
|
});
|
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZNavigationTabs = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_navigation_tabs_js_1 = require("@zanichelli/albe-web-components/dist/components/z-navigation-tabs.js");
|
|
11
|
-
exports.ZNavigationTabs = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZNavigationTabs as ZNavigationTabsElement, defineCustomElement as defineZNavigationTabs } from "@zanichelli/albe-web-components/dist/components/z-navigation-tabs.js";
|
|
5
|
+
export const ZNavigationTabs = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-navigation-tabs',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZNavigationTabsElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: { onSelected: 'selected' },
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZNavigationTabs
|
|
18
12
|
});
|
package/react/z-notification.js
CHANGED
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZNotification = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_notification_js_1 = require("@zanichelli/albe-web-components/dist/components/z-notification.js");
|
|
11
|
-
exports.ZNotification = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZNotification as ZNotificationElement, defineCustomElement as defineZNotification } from "@zanichelli/albe-web-components/dist/components/z-notification.js";
|
|
5
|
+
export const ZNotification = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-notification',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZNotificationElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {
|
|
17
11
|
onNotificationAction: 'notificationAction',
|
|
18
12
|
onNotificationClose: 'notificationClose'
|
|
19
13
|
},
|
|
20
|
-
defineCustomElement:
|
|
14
|
+
defineCustomElement: defineZNotification
|
|
21
15
|
});
|
package/react/z-offcanvas.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZOffcanvas = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_offcanvas_js_1 = require("@zanichelli/albe-web-components/dist/components/z-offcanvas.js");
|
|
11
|
-
exports.ZOffcanvas = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZOffcanvas as ZOffcanvasElement, defineCustomElement as defineZOffcanvas } from "@zanichelli/albe-web-components/dist/components/z-offcanvas.js";
|
|
5
|
+
export const ZOffcanvas = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-offcanvas',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZOffcanvasElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: { onCanvasOpenStatusChanged: 'canvasOpenStatusChanged' },
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZOffcanvas
|
|
18
12
|
});
|
package/react/z-pagination.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZPagination = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_pagination_js_1 = require("@zanichelli/albe-web-components/dist/components/z-pagination.js");
|
|
11
|
-
exports.ZPagination = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZPagination as ZPaginationElement, defineCustomElement as defineZPagination } from "@zanichelli/albe-web-components/dist/components/z-pagination.js";
|
|
5
|
+
export const ZPagination = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-pagination',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZPaginationElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: { onPageChanged: 'pageChanged' },
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZPagination
|
|
18
12
|
});
|
package/react/z-popover.js
CHANGED
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZPopover = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_popover_js_1 = require("@zanichelli/albe-web-components/dist/components/z-popover.js");
|
|
11
|
-
exports.ZPopover = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZPopover as ZPopoverElement, defineCustomElement as defineZPopover } from "@zanichelli/albe-web-components/dist/components/z-popover.js";
|
|
5
|
+
export const ZPopover = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-popover',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZPopoverElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {
|
|
17
11
|
onPositionChange: 'positionChange',
|
|
18
12
|
onOpenChange: 'openChange'
|
|
19
13
|
},
|
|
20
|
-
defineCustomElement:
|
|
14
|
+
defineCustomElement: defineZPopover
|
|
21
15
|
});
|
package/react/z-range-picker.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZRangePicker = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_range_picker_js_1 = require("@zanichelli/albe-web-components/dist/components/z-range-picker.js");
|
|
11
|
-
exports.ZRangePicker = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZRangePicker as ZRangePickerElement, defineCustomElement as defineZRangePicker } from "@zanichelli/albe-web-components/dist/components/z-range-picker.js";
|
|
5
|
+
export const ZRangePicker = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-range-picker',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZRangePickerElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: { onDateSelect: 'dateSelect' },
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZRangePicker
|
|
18
12
|
});
|
package/react/z-result-card.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZResultCard = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_result_card_js_1 = require("@zanichelli/albe-web-components/dist/components/z-result-card.js");
|
|
11
|
-
exports.ZResultCard = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZResultCard as ZResultCardElement, defineCustomElement as defineZResultCard } from "@zanichelli/albe-web-components/dist/components/z-result-card.js";
|
|
5
|
+
export const ZResultCard = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-result-card',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZResultCardElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZResultCard
|
|
18
12
|
});
|
package/react/z-searchbar.js
CHANGED
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZSearchbar = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_searchbar_js_1 = require("@zanichelli/albe-web-components/dist/components/z-searchbar.js");
|
|
11
|
-
exports.ZSearchbar = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZSearchbar as ZSearchbarElement, defineCustomElement as defineZSearchbar } from "@zanichelli/albe-web-components/dist/components/z-searchbar.js";
|
|
5
|
+
export const ZSearchbar = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-searchbar',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZSearchbarElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {
|
|
17
11
|
onSearchSubmit: 'searchSubmit',
|
|
18
12
|
onSearchTyping: 'searchTyping',
|
|
19
13
|
onSearchItemClick: 'searchItemClick'
|
|
20
14
|
},
|
|
21
|
-
defineCustomElement:
|
|
15
|
+
defineCustomElement: defineZSearchbar
|
|
22
16
|
});
|
package/react/z-select.js
CHANGED
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZSelect = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_select_js_1 = require("@zanichelli/albe-web-components/dist/components/z-select.js");
|
|
11
|
-
exports.ZSelect = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZSelect as ZSelectElement, defineCustomElement as defineZSelect } from "@zanichelli/albe-web-components/dist/components/z-select.js";
|
|
5
|
+
export const ZSelect = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-select',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZSelectElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {
|
|
17
11
|
onOptionSelect: 'optionSelect',
|
|
18
12
|
onResetSelect: 'resetSelect'
|
|
19
13
|
},
|
|
20
|
-
defineCustomElement:
|
|
14
|
+
defineCustomElement: defineZSelect
|
|
21
15
|
});
|
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZSkipToContent = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_skip_to_content_js_1 = require("@zanichelli/albe-web-components/dist/components/z-skip-to-content.js");
|
|
11
|
-
exports.ZSkipToContent = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZSkipToContent as ZSkipToContentElement, defineCustomElement as defineZSkipToContent } from "@zanichelli/albe-web-components/dist/components/z-skip-to-content.js";
|
|
5
|
+
export const ZSkipToContent = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-skip-to-content',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZSkipToContentElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZSkipToContent
|
|
18
12
|
});
|
package/react/z-stepper-item.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZStepperItem = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_stepper_item_js_1 = require("@zanichelli/albe-web-components/dist/components/z-stepper-item.js");
|
|
11
|
-
exports.ZStepperItem = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZStepperItem as ZStepperItemElement, defineCustomElement as defineZStepperItem } from "@zanichelli/albe-web-components/dist/components/z-stepper-item.js";
|
|
5
|
+
export const ZStepperItem = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-stepper-item',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZStepperItemElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZStepperItem
|
|
18
12
|
});
|
package/react/z-stepper.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZStepper = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_stepper_js_1 = require("@zanichelli/albe-web-components/dist/components/z-stepper.js");
|
|
11
|
-
exports.ZStepper = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZStepper as ZStepperElement, defineCustomElement as defineZStepper } from "@zanichelli/albe-web-components/dist/components/z-stepper.js";
|
|
5
|
+
export const ZStepper = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-stepper',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZStepperElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZStepper
|
|
18
12
|
});
|
package/react/z-table.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZTable = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_table_js_1 = require("@zanichelli/albe-web-components/dist/components/z-table.js");
|
|
11
|
-
exports.ZTable = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZTable as ZTableElement, defineCustomElement as defineZTable } from "@zanichelli/albe-web-components/dist/components/z-table.js";
|
|
5
|
+
export const ZTable = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-table',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZTableElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZTable
|
|
18
12
|
});
|
package/react/z-tag.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZTag = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_tag_js_1 = require("@zanichelli/albe-web-components/dist/components/z-tag.js");
|
|
11
|
-
exports.ZTag = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZTag as ZTagElement, defineCustomElement as defineZTag } from "@zanichelli/albe-web-components/dist/components/z-tag.js";
|
|
5
|
+
export const ZTag = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-tag',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZTagElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZTag
|
|
18
12
|
});
|
package/react/z-tbody.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZTbody = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_tbody_js_1 = require("@zanichelli/albe-web-components/dist/components/z-tbody.js");
|
|
11
|
-
exports.ZTbody = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZTbody as ZTbodyElement, defineCustomElement as defineZTbody } from "@zanichelli/albe-web-components/dist/components/z-tbody.js";
|
|
5
|
+
export const ZTbody = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-tbody',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZTbodyElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZTbody
|
|
18
12
|
});
|
package/react/z-td.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZTd = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_td_js_1 = require("@zanichelli/albe-web-components/dist/components/z-td.js");
|
|
11
|
-
exports.ZTd = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZTd as ZTdElement, defineCustomElement as defineZTd } from "@zanichelli/albe-web-components/dist/components/z-td.js";
|
|
5
|
+
export const ZTd = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-td',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZTdElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: { onColspanChange: 'colspanChange' },
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZTd
|
|
18
12
|
});
|
package/react/z-tfoot.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZTfoot = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_tfoot_js_1 = require("@zanichelli/albe-web-components/dist/components/z-tfoot.js");
|
|
11
|
-
exports.ZTfoot = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZTfoot as ZTfootElement, defineCustomElement as defineZTfoot } from "@zanichelli/albe-web-components/dist/components/z-tfoot.js";
|
|
5
|
+
export const ZTfoot = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-tfoot',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZTfootElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZTfoot
|
|
18
12
|
});
|
package/react/z-th.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZTh = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_th_js_1 = require("@zanichelli/albe-web-components/dist/components/z-th.js");
|
|
11
|
-
exports.ZTh = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZTh as ZThElement, defineCustomElement as defineZTh } from "@zanichelli/albe-web-components/dist/components/z-th.js";
|
|
5
|
+
export const ZTh = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-th',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZThElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: { onSort: 'sort' },
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZTh
|
|
18
12
|
});
|
package/react/z-thead.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZThead = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_thead_js_1 = require("@zanichelli/albe-web-components/dist/components/z-thead.js");
|
|
11
|
-
exports.ZThead = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZThead as ZTheadElement, defineCustomElement as defineZThead } from "@zanichelli/albe-web-components/dist/components/z-thead.js";
|
|
5
|
+
export const ZThead = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-thead',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZTheadElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZThead
|
|
18
12
|
});
|
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.ZToastNotificationList = void 0;
|
|
8
|
-
const runtime_1 = require("@stencil/react-output-target/runtime");
|
|
9
|
-
const react_1 = __importDefault(require("react"));
|
|
10
|
-
const z_toast_notification_list_js_1 = require("@zanichelli/albe-web-components/dist/components/z-toast-notification-list.js");
|
|
11
|
-
exports.ZToastNotificationList = (0, runtime_1.createComponent)({
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { ZToastNotificationList as ZToastNotificationListElement, defineCustomElement as defineZToastNotificationList } from "@zanichelli/albe-web-components/dist/components/z-toast-notification-list.js";
|
|
5
|
+
export const ZToastNotificationList = /*@__PURE__*/ createComponent({
|
|
12
6
|
tagName: 'z-toast-notification-list',
|
|
13
|
-
elementClass:
|
|
7
|
+
elementClass: ZToastNotificationListElement,
|
|
14
8
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
15
|
-
react:
|
|
9
|
+
react: React,
|
|
16
10
|
events: {},
|
|
17
|
-
defineCustomElement:
|
|
11
|
+
defineCustomElement: defineZToastNotificationList
|
|
18
12
|
});
|