@andespindola/ui-core 0.1.0 → 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/cjs/loader.cjs.js +1 -1
- package/dist/cjs/ui-accordion-item.cjs.entry.js +2 -2
- package/dist/cjs/ui-accordion.cjs.entry.js +1 -1
- package/dist/cjs/ui-alert.cjs.entry.js +40 -0
- package/dist/cjs/ui-avatar-group.cjs.entry.js +17 -0
- package/dist/cjs/ui-avatar.cjs.entry.js +2 -2
- package/dist/cjs/ui-badge.cjs.entry.js +7 -2
- package/dist/cjs/ui-breadcrumb-item.cjs.entry.js +23 -0
- package/dist/cjs/ui-breadcrumb.cjs.entry.js +17 -0
- package/dist/cjs/ui-button.cjs.entry.js +5 -3
- package/dist/cjs/ui-card.cjs.entry.js +2 -2
- package/dist/cjs/ui-checkbox.cjs.entry.js +2 -2
- package/dist/cjs/ui-container.cjs.entry.js +26 -0
- package/dist/cjs/ui-dialog.cjs.entry.js +1 -1
- package/dist/cjs/ui-drawer.cjs.entry.js +1 -1
- package/dist/cjs/ui-dropdown-item.cjs.entry.js +1 -1
- package/dist/cjs/ui-dropdown-menu.cjs.entry.js +1 -1
- package/dist/cjs/ui-field.cjs.entry.js +1 -1
- package/dist/cjs/ui-grid.cjs.entry.js +34 -0
- package/dist/cjs/ui-input.cjs.entry.js +10 -2
- package/dist/cjs/ui-label.cjs.entry.js +1 -1
- package/dist/cjs/ui-pagination.cjs.entry.js +63 -0
- package/dist/cjs/ui-popover.cjs.entry.js +1 -1
- package/dist/cjs/ui-progress.cjs.entry.js +2 -2
- package/dist/cjs/ui-radio-group.cjs.entry.js +1 -1
- package/dist/cjs/ui-reveal.cjs.entry.js +1 -1
- package/dist/cjs/ui-scroll-progress.cjs.entry.js +1 -1
- package/dist/cjs/ui-section.cjs.entry.js +2 -2
- package/dist/cjs/ui-segmented.cjs.entry.js +31 -0
- package/dist/cjs/ui-select.cjs.entry.js +2 -2
- package/dist/cjs/ui-separator.cjs.entry.js +1 -1
- package/dist/cjs/ui-skeleton.cjs.entry.js +2 -2
- package/dist/cjs/ui-slider.cjs.entry.js +1 -1
- package/dist/cjs/ui-spinner.cjs.entry.js +1 -1
- package/dist/cjs/ui-stack.cjs.entry.js +53 -0
- package/dist/cjs/ui-stat.cjs.entry.js +28 -0
- package/dist/cjs/ui-switch.cjs.entry.js +1 -1
- package/dist/cjs/ui-tabs.cjs.entry.js +3 -3
- package/dist/cjs/ui-textarea.cjs.entry.js +2 -2
- package/dist/cjs/ui-theme-toggle.cjs.entry.js +1 -1
- package/dist/cjs/ui-toast.cjs.entry.js +1 -1
- package/dist/cjs/ui-toaster.cjs.entry.js +1 -1
- package/dist/cjs/ui-tooltip.cjs.entry.js +2 -2
- package/dist/cjs/uikit.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +10 -0
- package/dist/collection/components/ui-accordion/ui-accordion.js +1 -1
- package/dist/collection/components/ui-accordion-item/ui-accordion-item.css +8 -0
- package/dist/collection/components/ui-accordion-item/ui-accordion-item.js +1 -1
- package/dist/collection/components/ui-alert/ui-alert.css +95 -0
- package/dist/collection/components/ui-alert/ui-alert.js +134 -0
- package/dist/collection/components/ui-avatar/ui-avatar.css +31 -0
- package/dist/collection/components/ui-avatar/ui-avatar.js +20 -1
- package/dist/collection/components/ui-avatar-group/ui-avatar-group.css +22 -0
- package/dist/collection/components/ui-avatar-group/ui-avatar-group.js +21 -0
- package/dist/collection/components/ui-badge/ui-badge.css +26 -0
- package/dist/collection/components/ui-badge/ui-badge.js +63 -1
- package/dist/collection/components/ui-breadcrumb/ui-breadcrumb.css +15 -0
- package/dist/collection/components/ui-breadcrumb/ui-breadcrumb.js +18 -0
- package/dist/collection/components/ui-breadcrumb-item/ui-breadcrumb-item.css +30 -0
- package/dist/collection/components/ui-breadcrumb-item/ui-breadcrumb-item.js +69 -0
- package/dist/collection/components/ui-button/ui-button.css +11 -1
- package/dist/collection/components/ui-button/ui-button.js +24 -2
- package/dist/collection/components/ui-card/ui-card.css +17 -3
- package/dist/collection/components/ui-card/ui-card.js +1 -1
- package/dist/collection/components/ui-checkbox/ui-checkbox.css +6 -2
- package/dist/collection/components/ui-checkbox/ui-checkbox.js +1 -1
- package/dist/collection/components/ui-container/ui-container.css +38 -0
- package/dist/collection/components/ui-container/ui-container.js +79 -0
- package/dist/collection/components/ui-dialog/ui-dialog.js +1 -1
- package/dist/collection/components/ui-drawer/ui-drawer.js +1 -1
- package/dist/collection/components/ui-dropdown-item/ui-dropdown-item.js +1 -1
- package/dist/collection/components/ui-dropdown-menu/ui-dropdown-menu.js +1 -1
- package/dist/collection/components/ui-field/ui-field.js +1 -1
- package/dist/collection/components/ui-grid/ui-grid.css +8 -0
- package/dist/collection/components/ui-grid/ui-grid.js +106 -0
- package/dist/collection/components/ui-input/ui-input.css +65 -14
- package/dist/collection/components/ui-input/ui-input.js +29 -1
- package/dist/collection/components/ui-label/ui-label.js +1 -1
- package/dist/collection/components/ui-pagination/ui-pagination.css +59 -0
- package/dist/collection/components/ui-pagination/ui-pagination.js +147 -0
- package/dist/collection/components/ui-popover/ui-popover.js +1 -1
- package/dist/collection/components/ui-progress/ui-progress.css +9 -4
- package/dist/collection/components/ui-progress/ui-progress.js +1 -1
- package/dist/collection/components/ui-radio-group/ui-radio-group.js +1 -1
- package/dist/collection/components/ui-reveal/ui-reveal.js +1 -1
- package/dist/collection/components/ui-scroll-progress/ui-scroll-progress.js +1 -1
- package/dist/collection/components/ui-section/ui-section.css +12 -5
- package/dist/collection/components/ui-section/ui-section.js +1 -1
- package/dist/collection/components/ui-segmented/ui-segmented.css +46 -0
- package/dist/collection/components/ui-segmented/ui-segmented.js +99 -0
- package/dist/collection/components/ui-select/ui-select.css +4 -0
- package/dist/collection/components/ui-select/ui-select.js +1 -1
- package/dist/collection/components/ui-separator/ui-separator.js +1 -1
- package/dist/collection/components/ui-skeleton/ui-skeleton.css +9 -6
- package/dist/collection/components/ui-skeleton/ui-skeleton.js +1 -1
- package/dist/collection/components/ui-slider/ui-slider.js +1 -1
- package/dist/collection/components/ui-spinner/ui-spinner.js +1 -1
- package/dist/collection/components/ui-stack/ui-stack.css +8 -0
- package/dist/collection/components/ui-stack/ui-stack.js +184 -0
- package/dist/collection/components/ui-stat/ui-stat.css +69 -0
- package/dist/collection/components/ui-stat/ui-stat.js +118 -0
- package/dist/collection/components/ui-switch/ui-switch.js +1 -1
- package/dist/collection/components/ui-tabs/ui-tabs.css +12 -0
- package/dist/collection/components/ui-tabs/ui-tabs.js +2 -2
- package/dist/collection/components/ui-textarea/ui-textarea.css +4 -0
- package/dist/collection/components/ui-textarea/ui-textarea.js +1 -1
- package/dist/collection/components/ui-theme-toggle/ui-theme-toggle.js +1 -1
- package/dist/collection/components/ui-toast/ui-toast.js +1 -1
- package/dist/collection/components/ui-toaster/ui-toaster.js +1 -1
- package/dist/collection/components/ui-tooltip/ui-tooltip.css +5 -4
- package/dist/collection/components/ui-tooltip/ui-tooltip.js +1 -1
- package/dist/components/{p-Bz9HyboB.js → p-BwNtNvTb.js} +1 -1
- package/dist/components/{p-C8ePpPG3.js → p-CgsjJD8o.js} +1 -1
- package/dist/components/ui-accordion-item.js +1 -1
- package/dist/components/ui-accordion.js +1 -1
- package/dist/components/ui-alert.d.ts +11 -0
- package/dist/components/ui-alert.js +1 -0
- package/dist/components/ui-avatar-group.d.ts +11 -0
- package/dist/components/ui-avatar-group.js +1 -0
- package/dist/components/ui-avatar.js +1 -1
- package/dist/components/ui-badge.js +1 -1
- package/dist/components/ui-breadcrumb-item.d.ts +11 -0
- package/dist/components/ui-breadcrumb-item.js +1 -0
- package/dist/components/ui-breadcrumb.d.ts +11 -0
- package/dist/components/ui-breadcrumb.js +1 -0
- package/dist/components/ui-button.js +1 -1
- package/dist/components/ui-card.js +1 -1
- package/dist/components/ui-checkbox.js +1 -1
- package/dist/components/ui-container.d.ts +11 -0
- package/dist/components/ui-container.js +1 -0
- package/dist/components/ui-dialog.js +1 -1
- package/dist/components/ui-drawer.js +1 -1
- package/dist/components/ui-dropdown-item.js +1 -1
- package/dist/components/ui-dropdown-menu.js +1 -1
- package/dist/components/ui-field.js +1 -1
- package/dist/components/ui-grid.d.ts +11 -0
- package/dist/components/ui-grid.js +1 -0
- package/dist/components/ui-input.js +1 -1
- package/dist/components/ui-label.js +1 -1
- package/dist/components/ui-loading-overlay.js +1 -1
- package/dist/components/ui-pagination.d.ts +11 -0
- package/dist/components/ui-pagination.js +1 -0
- package/dist/components/ui-popover.js +1 -1
- package/dist/components/ui-progress.js +1 -1
- package/dist/components/ui-radio-group.js +1 -1
- package/dist/components/ui-reveal.js +1 -1
- package/dist/components/ui-scroll-progress.js +1 -1
- package/dist/components/ui-section.js +1 -1
- package/dist/components/ui-segmented.d.ts +11 -0
- package/dist/components/ui-segmented.js +1 -0
- package/dist/components/ui-select.js +1 -1
- package/dist/components/ui-separator.js +1 -1
- package/dist/components/ui-skeleton.js +1 -1
- package/dist/components/ui-slider.js +1 -1
- package/dist/components/ui-spinner.js +1 -1
- package/dist/components/ui-stack.d.ts +11 -0
- package/dist/components/ui-stack.js +1 -0
- package/dist/components/ui-stat.d.ts +11 -0
- package/dist/components/ui-stat.js +1 -0
- package/dist/components/ui-switch.js +1 -1
- package/dist/components/ui-tabs.js +1 -1
- package/dist/components/ui-textarea.js +1 -1
- package/dist/components/ui-theme-toggle.js +1 -1
- package/dist/components/ui-toast.js +1 -1
- package/dist/components/ui-toaster.js +1 -1
- package/dist/components/ui-tooltip.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/ui-accordion-item.entry.js +2 -2
- package/dist/esm/ui-accordion.entry.js +1 -1
- package/dist/esm/ui-alert.entry.js +38 -0
- package/dist/esm/ui-avatar-group.entry.js +15 -0
- package/dist/esm/ui-avatar.entry.js +2 -2
- package/dist/esm/ui-badge.entry.js +8 -3
- package/dist/esm/ui-breadcrumb-item.entry.js +21 -0
- package/dist/esm/ui-breadcrumb.entry.js +15 -0
- package/dist/esm/ui-button.entry.js +5 -3
- package/dist/esm/ui-card.entry.js +2 -2
- package/dist/esm/ui-checkbox.entry.js +2 -2
- package/dist/esm/ui-container.entry.js +24 -0
- package/dist/esm/ui-dialog.entry.js +1 -1
- package/dist/esm/ui-drawer.entry.js +1 -1
- package/dist/esm/ui-dropdown-item.entry.js +1 -1
- package/dist/esm/ui-dropdown-menu.entry.js +1 -1
- package/dist/esm/ui-field.entry.js +1 -1
- package/dist/esm/ui-grid.entry.js +32 -0
- package/dist/esm/ui-input.entry.js +10 -2
- package/dist/esm/ui-label.entry.js +1 -1
- package/dist/esm/ui-pagination.entry.js +61 -0
- package/dist/esm/ui-popover.entry.js +1 -1
- package/dist/esm/ui-progress.entry.js +2 -2
- package/dist/esm/ui-radio-group.entry.js +1 -1
- package/dist/esm/ui-reveal.entry.js +1 -1
- package/dist/esm/ui-scroll-progress.entry.js +1 -1
- package/dist/esm/ui-section.entry.js +2 -2
- package/dist/esm/ui-segmented.entry.js +29 -0
- package/dist/esm/ui-select.entry.js +2 -2
- package/dist/esm/ui-separator.entry.js +1 -1
- package/dist/esm/ui-skeleton.entry.js +2 -2
- package/dist/esm/ui-slider.entry.js +1 -1
- package/dist/esm/ui-spinner.entry.js +1 -1
- package/dist/esm/ui-stack.entry.js +51 -0
- package/dist/esm/ui-stat.entry.js +26 -0
- package/dist/esm/ui-switch.entry.js +1 -1
- package/dist/esm/ui-tabs.entry.js +3 -3
- package/dist/esm/ui-textarea.entry.js +2 -2
- package/dist/esm/ui-theme-toggle.entry.js +1 -1
- package/dist/esm/ui-toast.entry.js +1 -1
- package/dist/esm/ui-toaster.entry.js +1 -1
- package/dist/esm/ui-tooltip.entry.js +2 -2
- package/dist/esm/uikit.js +1 -1
- package/dist/types/components/ui-alert/ui-alert.d.ts +17 -0
- package/dist/types/components/ui-avatar/ui-avatar.d.ts +2 -0
- package/dist/types/components/ui-avatar-group/ui-avatar-group.d.ts +6 -0
- package/dist/types/components/ui-badge/ui-badge.d.ts +7 -0
- package/dist/types/components/ui-breadcrumb/ui-breadcrumb.d.ts +3 -0
- package/dist/types/components/ui-breadcrumb-item/ui-breadcrumb-item.d.ts +8 -0
- package/dist/types/components/ui-button/ui-button.d.ts +2 -0
- package/dist/types/components/ui-container/ui-container.d.ts +8 -0
- package/dist/types/components/ui-grid/ui-grid.d.ts +10 -0
- package/dist/types/components/ui-input/ui-input.d.ts +3 -0
- package/dist/types/components/ui-pagination/ui-pagination.d.ts +15 -0
- package/dist/types/components/ui-segmented/ui-segmented.d.ts +15 -0
- package/dist/types/components/ui-stack/ui-stack.d.ts +17 -0
- package/dist/types/components/ui-stat/ui-stat.d.ts +13 -0
- package/dist/types/components.d.ts +552 -0
- package/dist/uikit/{p-8cebbe65.entry.js → p-09895cd0.entry.js} +1 -1
- package/dist/uikit/p-0cba0d11.entry.js +1 -0
- package/dist/uikit/p-12db6a6e.entry.js +1 -0
- package/dist/uikit/{p-4a1abc1c.entry.js → p-1d016ea4.entry.js} +1 -1
- package/dist/uikit/{p-19b81437.entry.js → p-25637424.entry.js} +1 -1
- package/dist/uikit/p-2601d8b6.entry.js +1 -0
- package/dist/uikit/p-2de05aac.entry.js +1 -0
- package/dist/uikit/{p-3d30bc7a.entry.js → p-3996590f.entry.js} +1 -1
- package/dist/uikit/p-3fc062a6.entry.js +1 -0
- package/dist/uikit/p-45e80e73.entry.js +1 -0
- package/dist/uikit/{p-b61e3df4.entry.js → p-55a23f91.entry.js} +1 -1
- package/dist/uikit/p-567f7496.entry.js +1 -0
- package/dist/uikit/p-5951a496.entry.js +1 -0
- package/dist/uikit/{p-9aa557d1.entry.js → p-595e146f.entry.js} +1 -1
- package/dist/uikit/p-635862e6.entry.js +1 -0
- package/dist/uikit/{p-c72ed105.entry.js → p-67963692.entry.js} +1 -1
- package/dist/uikit/p-6c0e9809.entry.js +1 -0
- package/dist/uikit/p-74b60a60.entry.js +1 -0
- package/dist/uikit/p-7a3d85da.entry.js +1 -0
- package/dist/uikit/{p-f7402442.entry.js → p-7f2c2924.entry.js} +1 -1
- package/dist/uikit/{p-5df32809.entry.js → p-81b45a43.entry.js} +1 -1
- package/dist/uikit/p-86ed6154.entry.js +1 -0
- package/dist/uikit/p-94ad46a5.entry.js +1 -0
- package/dist/uikit/{p-e410c789.entry.js → p-95cd976e.entry.js} +1 -1
- package/dist/uikit/{p-4382718f.entry.js → p-979f6178.entry.js} +1 -1
- package/dist/uikit/p-97d4dbf4.entry.js +1 -0
- package/dist/uikit/p-9a4dc343.entry.js +1 -0
- package/dist/uikit/p-9a9590b9.entry.js +1 -0
- package/dist/uikit/p-a01305a5.entry.js +1 -0
- package/dist/uikit/p-a080f46a.entry.js +1 -0
- package/dist/uikit/p-a92a7b19.entry.js +1 -0
- package/dist/uikit/p-a977a0db.entry.js +1 -0
- package/dist/uikit/p-b2df8437.entry.js +1 -0
- package/dist/uikit/{p-9e7b81ef.entry.js → p-c73c1009.entry.js} +1 -1
- package/dist/uikit/{p-83159bfc.entry.js → p-cd0ec835.entry.js} +1 -1
- package/dist/uikit/p-d20452b4.entry.js +1 -0
- package/dist/uikit/p-d7021157.entry.js +1 -0
- package/dist/uikit/p-db07f9c5.entry.js +1 -0
- package/dist/uikit/p-dca9f6f9.entry.js +1 -0
- package/dist/uikit/p-ddd70374.entry.js +1 -0
- package/dist/uikit/{p-629c1728.entry.js → p-faa98928.entry.js} +1 -1
- package/dist/uikit/p-fd832f52.entry.js +1 -0
- package/dist/uikit/uikit.esm.js +1 -1
- package/package.json +8 -3
- package/dist/uikit/p-06d6d907.entry.js +0 -1
- package/dist/uikit/p-0fb4949b.entry.js +0 -1
- package/dist/uikit/p-162302d1.entry.js +0 -1
- package/dist/uikit/p-24edfe3e.entry.js +0 -1
- package/dist/uikit/p-57058c30.entry.js +0 -1
- package/dist/uikit/p-5ea42ee5.entry.js +0 -1
- package/dist/uikit/p-76f0f79f.entry.js +0 -1
- package/dist/uikit/p-8bcd423c.entry.js +0 -1
- package/dist/uikit/p-90d49509.entry.js +0 -1
- package/dist/uikit/p-94fb298e.entry.js +0 -1
- package/dist/uikit/p-9c57cf57.entry.js +0 -1
- package/dist/uikit/p-9d784b04.entry.js +0 -1
- package/dist/uikit/p-9f7c6ca8.entry.js +0 -1
- package/dist/uikit/p-a7be1c69.entry.js +0 -1
- package/dist/uikit/p-b30aa6a6.entry.js +0 -1
- package/dist/uikit/p-cb2adfb7.entry.js +0 -1
- package/dist/uikit/p-cf10ca3b.entry.js +0 -1
- package/dist/uikit/p-fd1648bf.entry.js +0 -1
|
@@ -5,25 +5,37 @@
|
|
|
5
5
|
* It contains typing information for all components that exist in this project.
|
|
6
6
|
*/
|
|
7
7
|
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
import { UiAlertVariant } from "./components/ui-alert/ui-alert";
|
|
8
9
|
import { UiBadgeVariant } from "./components/ui-badge/ui-badge";
|
|
9
10
|
import { UiButtonSize, UiButtonVariant } from "./components/ui-button/ui-button";
|
|
11
|
+
import { UiContainerSize } from "./components/ui-container/ui-container";
|
|
10
12
|
import { Placement } from "@floating-ui/dom";
|
|
13
|
+
import { UiGridGap } from "./components/ui-grid/ui-grid";
|
|
11
14
|
import { UiSpinnerSize } from "./components/ui-spinner/ui-spinner";
|
|
12
15
|
import { UiRadioOption } from "./components/ui-radio-group/ui-radio-group";
|
|
16
|
+
import { UiSegmentedItem } from "./components/ui-segmented/ui-segmented";
|
|
13
17
|
import { UiSelectOption } from "./components/ui-select/ui-select";
|
|
14
18
|
import { UiSeparatorOrientation } from "./components/ui-separator/ui-separator";
|
|
15
19
|
import { UiSpinnerSize as UiSpinnerSize1 } from "./components/ui-spinner/ui-spinner";
|
|
20
|
+
import { UiStackAlign, UiStackDirection, UiStackGap, UiStackJustify } from "./components/ui-stack/ui-stack";
|
|
21
|
+
import { UiStatTrend } from "./components/ui-stat/ui-stat";
|
|
16
22
|
import { UiTabItem } from "./components/ui-tabs/ui-tabs";
|
|
17
23
|
import { UiToastVariant } from "./components/ui-toast/ui-toast";
|
|
18
24
|
import { UiToastOptions } from "./components/ui-toaster/ui-toaster";
|
|
25
|
+
export { UiAlertVariant } from "./components/ui-alert/ui-alert";
|
|
19
26
|
export { UiBadgeVariant } from "./components/ui-badge/ui-badge";
|
|
20
27
|
export { UiButtonSize, UiButtonVariant } from "./components/ui-button/ui-button";
|
|
28
|
+
export { UiContainerSize } from "./components/ui-container/ui-container";
|
|
21
29
|
export { Placement } from "@floating-ui/dom";
|
|
30
|
+
export { UiGridGap } from "./components/ui-grid/ui-grid";
|
|
22
31
|
export { UiSpinnerSize } from "./components/ui-spinner/ui-spinner";
|
|
23
32
|
export { UiRadioOption } from "./components/ui-radio-group/ui-radio-group";
|
|
33
|
+
export { UiSegmentedItem } from "./components/ui-segmented/ui-segmented";
|
|
24
34
|
export { UiSelectOption } from "./components/ui-select/ui-select";
|
|
25
35
|
export { UiSeparatorOrientation } from "./components/ui-separator/ui-separator";
|
|
26
36
|
export { UiSpinnerSize as UiSpinnerSize1 } from "./components/ui-spinner/ui-spinner";
|
|
37
|
+
export { UiStackAlign, UiStackDirection, UiStackGap, UiStackJustify } from "./components/ui-stack/ui-stack";
|
|
38
|
+
export { UiStatTrend } from "./components/ui-stat/ui-stat";
|
|
27
39
|
export { UiTabItem } from "./components/ui-tabs/ui-tabs";
|
|
28
40
|
export { UiToastVariant } from "./components/ui-toast/ui-toast";
|
|
29
41
|
export { UiToastOptions } from "./components/ui-toaster/ui-toaster";
|
|
@@ -42,6 +54,22 @@ export namespace Components {
|
|
|
42
54
|
*/
|
|
43
55
|
"open": boolean;
|
|
44
56
|
}
|
|
57
|
+
interface UiAlert {
|
|
58
|
+
/**
|
|
59
|
+
* Exibe o botão de fechar.
|
|
60
|
+
* @default false
|
|
61
|
+
*/
|
|
62
|
+
"dismissible": boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Título do alerta.
|
|
65
|
+
*/
|
|
66
|
+
"heading"?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Variante visual.
|
|
69
|
+
* @default "info"
|
|
70
|
+
*/
|
|
71
|
+
"variant": UiAlertVariant;
|
|
72
|
+
}
|
|
45
73
|
interface UiAvatar {
|
|
46
74
|
/**
|
|
47
75
|
* Texto alternativo da imagem.
|
|
@@ -56,20 +84,57 @@ export namespace Components {
|
|
|
56
84
|
* URL da imagem do avatar.
|
|
57
85
|
*/
|
|
58
86
|
"src"?: string;
|
|
87
|
+
/**
|
|
88
|
+
* Indicador de status.
|
|
89
|
+
*/
|
|
90
|
+
"status"?: "online" | "offline" | "busy" | "away";
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Agrupa avatares sobrepostos. Use com elementos `<ui-avatar>` no slot default.
|
|
94
|
+
*/
|
|
95
|
+
interface UiAvatarGroup {
|
|
59
96
|
}
|
|
60
97
|
interface UiBadge {
|
|
98
|
+
/**
|
|
99
|
+
* Exibe um ponto colorido à esquerda.
|
|
100
|
+
* @default false
|
|
101
|
+
*/
|
|
102
|
+
"dot": boolean;
|
|
103
|
+
/**
|
|
104
|
+
* Exibe um botão para remover o badge.
|
|
105
|
+
* @default false
|
|
106
|
+
*/
|
|
107
|
+
"removable": boolean;
|
|
61
108
|
/**
|
|
62
109
|
* Variante visual.
|
|
63
110
|
* @default "default"
|
|
64
111
|
*/
|
|
65
112
|
"variant": UiBadgeVariant;
|
|
66
113
|
}
|
|
114
|
+
interface UiBreadcrumb {
|
|
115
|
+
}
|
|
116
|
+
interface UiBreadcrumbItem {
|
|
117
|
+
/**
|
|
118
|
+
* Indica o item atual (página corrente).
|
|
119
|
+
* @default false
|
|
120
|
+
*/
|
|
121
|
+
"current": boolean;
|
|
122
|
+
/**
|
|
123
|
+
* Destino do link.
|
|
124
|
+
*/
|
|
125
|
+
"href"?: string;
|
|
126
|
+
}
|
|
67
127
|
interface UiButton {
|
|
68
128
|
/**
|
|
69
129
|
* Desabilita o botão.
|
|
70
130
|
* @default false
|
|
71
131
|
*/
|
|
72
132
|
"disabled": boolean;
|
|
133
|
+
/**
|
|
134
|
+
* Ocupa 100% da largura disponível.
|
|
135
|
+
* @default false
|
|
136
|
+
*/
|
|
137
|
+
"full": boolean;
|
|
73
138
|
/**
|
|
74
139
|
* Exibe spinner e desabilita durante uma ação assíncrona.
|
|
75
140
|
* @default false
|
|
@@ -113,6 +178,18 @@ export namespace Components {
|
|
|
113
178
|
*/
|
|
114
179
|
"value"?: string;
|
|
115
180
|
}
|
|
181
|
+
interface UiContainer {
|
|
182
|
+
/**
|
|
183
|
+
* Aplica padding lateral responsivo.
|
|
184
|
+
* @default true
|
|
185
|
+
*/
|
|
186
|
+
"padded": boolean;
|
|
187
|
+
/**
|
|
188
|
+
* Largura máxima do container.
|
|
189
|
+
* @default "lg"
|
|
190
|
+
*/
|
|
191
|
+
"size": UiContainerSize;
|
|
192
|
+
}
|
|
116
193
|
interface UiDialog {
|
|
117
194
|
/**
|
|
118
195
|
* Fecha o modal imperativamente.
|
|
@@ -198,7 +275,28 @@ export namespace Components {
|
|
|
198
275
|
*/
|
|
199
276
|
"required": boolean;
|
|
200
277
|
}
|
|
278
|
+
interface UiGrid {
|
|
279
|
+
/**
|
|
280
|
+
* Número de colunas da grade.
|
|
281
|
+
* @default 12
|
|
282
|
+
*/
|
|
283
|
+
"columns": number;
|
|
284
|
+
/**
|
|
285
|
+
* Espaçamento entre células.
|
|
286
|
+
* @default "md"
|
|
287
|
+
*/
|
|
288
|
+
"gap": UiGridGap;
|
|
289
|
+
/**
|
|
290
|
+
* Largura mínima por item para layout responsivo (auto-fit).
|
|
291
|
+
*/
|
|
292
|
+
"minItemWidth"?: string;
|
|
293
|
+
}
|
|
201
294
|
interface UiInput {
|
|
295
|
+
/**
|
|
296
|
+
* Exibe um botão para limpar o valor quando preenchido.
|
|
297
|
+
* @default false
|
|
298
|
+
*/
|
|
299
|
+
"clearable": boolean;
|
|
202
300
|
/**
|
|
203
301
|
* Desabilita o campo.
|
|
204
302
|
* @default false
|
|
@@ -251,6 +349,23 @@ export namespace Components {
|
|
|
251
349
|
*/
|
|
252
350
|
"visible": boolean;
|
|
253
351
|
}
|
|
352
|
+
interface UiPagination {
|
|
353
|
+
/**
|
|
354
|
+
* Página atual.
|
|
355
|
+
* @default 1
|
|
356
|
+
*/
|
|
357
|
+
"current": number;
|
|
358
|
+
/**
|
|
359
|
+
* Quantidade de páginas ao redor da atual.
|
|
360
|
+
* @default 1
|
|
361
|
+
*/
|
|
362
|
+
"siblings": number;
|
|
363
|
+
/**
|
|
364
|
+
* Total de páginas.
|
|
365
|
+
* @default 1
|
|
366
|
+
*/
|
|
367
|
+
"total": number;
|
|
368
|
+
}
|
|
254
369
|
interface UiPopover {
|
|
255
370
|
/**
|
|
256
371
|
* Fecha o popover imperativamente.
|
|
@@ -334,6 +449,18 @@ export namespace Components {
|
|
|
334
449
|
*/
|
|
335
450
|
"heading": string;
|
|
336
451
|
}
|
|
452
|
+
interface UiSegmented {
|
|
453
|
+
/**
|
|
454
|
+
* Lista de segmentos.
|
|
455
|
+
* @default []
|
|
456
|
+
*/
|
|
457
|
+
"items": UiSegmentedItem[];
|
|
458
|
+
/**
|
|
459
|
+
* Valor do segmento ativo.
|
|
460
|
+
* @default ""
|
|
461
|
+
*/
|
|
462
|
+
"value": string;
|
|
463
|
+
}
|
|
337
464
|
interface UiSelect {
|
|
338
465
|
/**
|
|
339
466
|
* Desabilita o controle.
|
|
@@ -401,6 +528,52 @@ export namespace Components {
|
|
|
401
528
|
*/
|
|
402
529
|
"size": UiSpinnerSize1;
|
|
403
530
|
}
|
|
531
|
+
interface UiStack {
|
|
532
|
+
/**
|
|
533
|
+
* Alinhamento no eixo cruzado.
|
|
534
|
+
* @default "stretch"
|
|
535
|
+
*/
|
|
536
|
+
"align": UiStackAlign;
|
|
537
|
+
/**
|
|
538
|
+
* Direção do empilhamento.
|
|
539
|
+
* @default "vertical"
|
|
540
|
+
*/
|
|
541
|
+
"direction": UiStackDirection;
|
|
542
|
+
/**
|
|
543
|
+
* Espaçamento entre itens.
|
|
544
|
+
* @default "md"
|
|
545
|
+
*/
|
|
546
|
+
"gap": UiStackGap;
|
|
547
|
+
/**
|
|
548
|
+
* Distribuição no eixo principal.
|
|
549
|
+
* @default "start"
|
|
550
|
+
*/
|
|
551
|
+
"justify": UiStackJustify;
|
|
552
|
+
/**
|
|
553
|
+
* Permite quebra de linha dos itens.
|
|
554
|
+
* @default false
|
|
555
|
+
*/
|
|
556
|
+
"wrap": boolean;
|
|
557
|
+
}
|
|
558
|
+
interface UiStat {
|
|
559
|
+
/**
|
|
560
|
+
* Variação exibida no chip (ex.: "+12%").
|
|
561
|
+
*/
|
|
562
|
+
"delta"?: string;
|
|
563
|
+
/**
|
|
564
|
+
* Rótulo da métrica.
|
|
565
|
+
*/
|
|
566
|
+
"label": string;
|
|
567
|
+
/**
|
|
568
|
+
* Direção da tendência.
|
|
569
|
+
* @default "neutral"
|
|
570
|
+
*/
|
|
571
|
+
"trend": UiStatTrend;
|
|
572
|
+
/**
|
|
573
|
+
* Valor principal exibido.
|
|
574
|
+
*/
|
|
575
|
+
"value": string;
|
|
576
|
+
}
|
|
404
577
|
interface UiSwitch {
|
|
405
578
|
/**
|
|
406
579
|
* Estado ligado/desligado.
|
|
@@ -518,6 +691,14 @@ export interface UiAccordionItemCustomEvent<T> extends CustomEvent<T> {
|
|
|
518
691
|
detail: T;
|
|
519
692
|
target: HTMLUiAccordionItemElement;
|
|
520
693
|
}
|
|
694
|
+
export interface UiAlertCustomEvent<T> extends CustomEvent<T> {
|
|
695
|
+
detail: T;
|
|
696
|
+
target: HTMLUiAlertElement;
|
|
697
|
+
}
|
|
698
|
+
export interface UiBadgeCustomEvent<T> extends CustomEvent<T> {
|
|
699
|
+
detail: T;
|
|
700
|
+
target: HTMLUiBadgeElement;
|
|
701
|
+
}
|
|
521
702
|
export interface UiCheckboxCustomEvent<T> extends CustomEvent<T> {
|
|
522
703
|
detail: T;
|
|
523
704
|
target: HTMLUiCheckboxElement;
|
|
@@ -542,6 +723,10 @@ export interface UiInputCustomEvent<T> extends CustomEvent<T> {
|
|
|
542
723
|
detail: T;
|
|
543
724
|
target: HTMLUiInputElement;
|
|
544
725
|
}
|
|
726
|
+
export interface UiPaginationCustomEvent<T> extends CustomEvent<T> {
|
|
727
|
+
detail: T;
|
|
728
|
+
target: HTMLUiPaginationElement;
|
|
729
|
+
}
|
|
545
730
|
export interface UiPopoverCustomEvent<T> extends CustomEvent<T> {
|
|
546
731
|
detail: T;
|
|
547
732
|
target: HTMLUiPopoverElement;
|
|
@@ -550,6 +735,10 @@ export interface UiRadioGroupCustomEvent<T> extends CustomEvent<T> {
|
|
|
550
735
|
detail: T;
|
|
551
736
|
target: HTMLUiRadioGroupElement;
|
|
552
737
|
}
|
|
738
|
+
export interface UiSegmentedCustomEvent<T> extends CustomEvent<T> {
|
|
739
|
+
detail: T;
|
|
740
|
+
target: HTMLUiSegmentedElement;
|
|
741
|
+
}
|
|
553
742
|
export interface UiSelectCustomEvent<T> extends CustomEvent<T> {
|
|
554
743
|
detail: T;
|
|
555
744
|
target: HTMLUiSelectElement;
|
|
@@ -602,18 +791,67 @@ declare global {
|
|
|
602
791
|
prototype: HTMLUiAccordionItemElement;
|
|
603
792
|
new (): HTMLUiAccordionItemElement;
|
|
604
793
|
};
|
|
794
|
+
interface HTMLUiAlertElementEventMap {
|
|
795
|
+
"uiClose": void;
|
|
796
|
+
}
|
|
797
|
+
interface HTMLUiAlertElement extends Components.UiAlert, HTMLStencilElement {
|
|
798
|
+
addEventListener<K extends keyof HTMLUiAlertElementEventMap>(type: K, listener: (this: HTMLUiAlertElement, ev: UiAlertCustomEvent<HTMLUiAlertElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
799
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
800
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
801
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
802
|
+
removeEventListener<K extends keyof HTMLUiAlertElementEventMap>(type: K, listener: (this: HTMLUiAlertElement, ev: UiAlertCustomEvent<HTMLUiAlertElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
803
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
804
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
805
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
806
|
+
}
|
|
807
|
+
var HTMLUiAlertElement: {
|
|
808
|
+
prototype: HTMLUiAlertElement;
|
|
809
|
+
new (): HTMLUiAlertElement;
|
|
810
|
+
};
|
|
605
811
|
interface HTMLUiAvatarElement extends Components.UiAvatar, HTMLStencilElement {
|
|
606
812
|
}
|
|
607
813
|
var HTMLUiAvatarElement: {
|
|
608
814
|
prototype: HTMLUiAvatarElement;
|
|
609
815
|
new (): HTMLUiAvatarElement;
|
|
610
816
|
};
|
|
817
|
+
/**
|
|
818
|
+
* Agrupa avatares sobrepostos. Use com elementos `<ui-avatar>` no slot default.
|
|
819
|
+
*/
|
|
820
|
+
interface HTMLUiAvatarGroupElement extends Components.UiAvatarGroup, HTMLStencilElement {
|
|
821
|
+
}
|
|
822
|
+
var HTMLUiAvatarGroupElement: {
|
|
823
|
+
prototype: HTMLUiAvatarGroupElement;
|
|
824
|
+
new (): HTMLUiAvatarGroupElement;
|
|
825
|
+
};
|
|
826
|
+
interface HTMLUiBadgeElementEventMap {
|
|
827
|
+
"uiRemove": void;
|
|
828
|
+
}
|
|
611
829
|
interface HTMLUiBadgeElement extends Components.UiBadge, HTMLStencilElement {
|
|
830
|
+
addEventListener<K extends keyof HTMLUiBadgeElementEventMap>(type: K, listener: (this: HTMLUiBadgeElement, ev: UiBadgeCustomEvent<HTMLUiBadgeElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
831
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
832
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
833
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
834
|
+
removeEventListener<K extends keyof HTMLUiBadgeElementEventMap>(type: K, listener: (this: HTMLUiBadgeElement, ev: UiBadgeCustomEvent<HTMLUiBadgeElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
835
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
836
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
837
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
612
838
|
}
|
|
613
839
|
var HTMLUiBadgeElement: {
|
|
614
840
|
prototype: HTMLUiBadgeElement;
|
|
615
841
|
new (): HTMLUiBadgeElement;
|
|
616
842
|
};
|
|
843
|
+
interface HTMLUiBreadcrumbElement extends Components.UiBreadcrumb, HTMLStencilElement {
|
|
844
|
+
}
|
|
845
|
+
var HTMLUiBreadcrumbElement: {
|
|
846
|
+
prototype: HTMLUiBreadcrumbElement;
|
|
847
|
+
new (): HTMLUiBreadcrumbElement;
|
|
848
|
+
};
|
|
849
|
+
interface HTMLUiBreadcrumbItemElement extends Components.UiBreadcrumbItem, HTMLStencilElement {
|
|
850
|
+
}
|
|
851
|
+
var HTMLUiBreadcrumbItemElement: {
|
|
852
|
+
prototype: HTMLUiBreadcrumbItemElement;
|
|
853
|
+
new (): HTMLUiBreadcrumbItemElement;
|
|
854
|
+
};
|
|
617
855
|
interface HTMLUiButtonElement extends Components.UiButton, HTMLStencilElement {
|
|
618
856
|
}
|
|
619
857
|
var HTMLUiButtonElement: {
|
|
@@ -643,6 +881,12 @@ declare global {
|
|
|
643
881
|
prototype: HTMLUiCheckboxElement;
|
|
644
882
|
new (): HTMLUiCheckboxElement;
|
|
645
883
|
};
|
|
884
|
+
interface HTMLUiContainerElement extends Components.UiContainer, HTMLStencilElement {
|
|
885
|
+
}
|
|
886
|
+
var HTMLUiContainerElement: {
|
|
887
|
+
prototype: HTMLUiContainerElement;
|
|
888
|
+
new (): HTMLUiContainerElement;
|
|
889
|
+
};
|
|
646
890
|
interface HTMLUiDialogElementEventMap {
|
|
647
891
|
"uiClose": void;
|
|
648
892
|
}
|
|
@@ -717,6 +961,12 @@ declare global {
|
|
|
717
961
|
prototype: HTMLUiFieldElement;
|
|
718
962
|
new (): HTMLUiFieldElement;
|
|
719
963
|
};
|
|
964
|
+
interface HTMLUiGridElement extends Components.UiGrid, HTMLStencilElement {
|
|
965
|
+
}
|
|
966
|
+
var HTMLUiGridElement: {
|
|
967
|
+
prototype: HTMLUiGridElement;
|
|
968
|
+
new (): HTMLUiGridElement;
|
|
969
|
+
};
|
|
720
970
|
interface HTMLUiInputElementEventMap {
|
|
721
971
|
"uiInput": string;
|
|
722
972
|
"uiChange": string;
|
|
@@ -752,6 +1002,23 @@ declare global {
|
|
|
752
1002
|
prototype: HTMLUiLoadingOverlayElement;
|
|
753
1003
|
new (): HTMLUiLoadingOverlayElement;
|
|
754
1004
|
};
|
|
1005
|
+
interface HTMLUiPaginationElementEventMap {
|
|
1006
|
+
"uiChange": number;
|
|
1007
|
+
}
|
|
1008
|
+
interface HTMLUiPaginationElement extends Components.UiPagination, HTMLStencilElement {
|
|
1009
|
+
addEventListener<K extends keyof HTMLUiPaginationElementEventMap>(type: K, listener: (this: HTMLUiPaginationElement, ev: UiPaginationCustomEvent<HTMLUiPaginationElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1010
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1011
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1012
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1013
|
+
removeEventListener<K extends keyof HTMLUiPaginationElementEventMap>(type: K, listener: (this: HTMLUiPaginationElement, ev: UiPaginationCustomEvent<HTMLUiPaginationElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1014
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1015
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1016
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1017
|
+
}
|
|
1018
|
+
var HTMLUiPaginationElement: {
|
|
1019
|
+
prototype: HTMLUiPaginationElement;
|
|
1020
|
+
new (): HTMLUiPaginationElement;
|
|
1021
|
+
};
|
|
755
1022
|
interface HTMLUiPopoverElementEventMap {
|
|
756
1023
|
"uiOpenChange": boolean;
|
|
757
1024
|
}
|
|
@@ -810,6 +1077,23 @@ declare global {
|
|
|
810
1077
|
prototype: HTMLUiSectionElement;
|
|
811
1078
|
new (): HTMLUiSectionElement;
|
|
812
1079
|
};
|
|
1080
|
+
interface HTMLUiSegmentedElementEventMap {
|
|
1081
|
+
"uiChange": string;
|
|
1082
|
+
}
|
|
1083
|
+
interface HTMLUiSegmentedElement extends Components.UiSegmented, HTMLStencilElement {
|
|
1084
|
+
addEventListener<K extends keyof HTMLUiSegmentedElementEventMap>(type: K, listener: (this: HTMLUiSegmentedElement, ev: UiSegmentedCustomEvent<HTMLUiSegmentedElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1085
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1086
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1087
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1088
|
+
removeEventListener<K extends keyof HTMLUiSegmentedElementEventMap>(type: K, listener: (this: HTMLUiSegmentedElement, ev: UiSegmentedCustomEvent<HTMLUiSegmentedElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1089
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1090
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1091
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1092
|
+
}
|
|
1093
|
+
var HTMLUiSegmentedElement: {
|
|
1094
|
+
prototype: HTMLUiSegmentedElement;
|
|
1095
|
+
new (): HTMLUiSegmentedElement;
|
|
1096
|
+
};
|
|
813
1097
|
interface HTMLUiSelectElementEventMap {
|
|
814
1098
|
"uiChange": string;
|
|
815
1099
|
}
|
|
@@ -863,6 +1147,18 @@ declare global {
|
|
|
863
1147
|
prototype: HTMLUiSpinnerElement;
|
|
864
1148
|
new (): HTMLUiSpinnerElement;
|
|
865
1149
|
};
|
|
1150
|
+
interface HTMLUiStackElement extends Components.UiStack, HTMLStencilElement {
|
|
1151
|
+
}
|
|
1152
|
+
var HTMLUiStackElement: {
|
|
1153
|
+
prototype: HTMLUiStackElement;
|
|
1154
|
+
new (): HTMLUiStackElement;
|
|
1155
|
+
};
|
|
1156
|
+
interface HTMLUiStatElement extends Components.UiStat, HTMLStencilElement {
|
|
1157
|
+
}
|
|
1158
|
+
var HTMLUiStatElement: {
|
|
1159
|
+
prototype: HTMLUiStatElement;
|
|
1160
|
+
new (): HTMLUiStatElement;
|
|
1161
|
+
};
|
|
866
1162
|
interface HTMLUiSwitchElementEventMap {
|
|
867
1163
|
"uiChange": boolean;
|
|
868
1164
|
}
|
|
@@ -964,30 +1260,40 @@ declare global {
|
|
|
964
1260
|
interface HTMLElementTagNameMap {
|
|
965
1261
|
"ui-accordion": HTMLUiAccordionElement;
|
|
966
1262
|
"ui-accordion-item": HTMLUiAccordionItemElement;
|
|
1263
|
+
"ui-alert": HTMLUiAlertElement;
|
|
967
1264
|
"ui-avatar": HTMLUiAvatarElement;
|
|
1265
|
+
"ui-avatar-group": HTMLUiAvatarGroupElement;
|
|
968
1266
|
"ui-badge": HTMLUiBadgeElement;
|
|
1267
|
+
"ui-breadcrumb": HTMLUiBreadcrumbElement;
|
|
1268
|
+
"ui-breadcrumb-item": HTMLUiBreadcrumbItemElement;
|
|
969
1269
|
"ui-button": HTMLUiButtonElement;
|
|
970
1270
|
"ui-card": HTMLUiCardElement;
|
|
971
1271
|
"ui-checkbox": HTMLUiCheckboxElement;
|
|
1272
|
+
"ui-container": HTMLUiContainerElement;
|
|
972
1273
|
"ui-dialog": HTMLUiDialogElement;
|
|
973
1274
|
"ui-drawer": HTMLUiDrawerElement;
|
|
974
1275
|
"ui-dropdown-item": HTMLUiDropdownItemElement;
|
|
975
1276
|
"ui-dropdown-menu": HTMLUiDropdownMenuElement;
|
|
976
1277
|
"ui-field": HTMLUiFieldElement;
|
|
1278
|
+
"ui-grid": HTMLUiGridElement;
|
|
977
1279
|
"ui-input": HTMLUiInputElement;
|
|
978
1280
|
"ui-label": HTMLUiLabelElement;
|
|
979
1281
|
"ui-loading-overlay": HTMLUiLoadingOverlayElement;
|
|
1282
|
+
"ui-pagination": HTMLUiPaginationElement;
|
|
980
1283
|
"ui-popover": HTMLUiPopoverElement;
|
|
981
1284
|
"ui-progress": HTMLUiProgressElement;
|
|
982
1285
|
"ui-radio-group": HTMLUiRadioGroupElement;
|
|
983
1286
|
"ui-reveal": HTMLUiRevealElement;
|
|
984
1287
|
"ui-scroll-progress": HTMLUiScrollProgressElement;
|
|
985
1288
|
"ui-section": HTMLUiSectionElement;
|
|
1289
|
+
"ui-segmented": HTMLUiSegmentedElement;
|
|
986
1290
|
"ui-select": HTMLUiSelectElement;
|
|
987
1291
|
"ui-separator": HTMLUiSeparatorElement;
|
|
988
1292
|
"ui-skeleton": HTMLUiSkeletonElement;
|
|
989
1293
|
"ui-slider": HTMLUiSliderElement;
|
|
990
1294
|
"ui-spinner": HTMLUiSpinnerElement;
|
|
1295
|
+
"ui-stack": HTMLUiStackElement;
|
|
1296
|
+
"ui-stat": HTMLUiStatElement;
|
|
991
1297
|
"ui-switch": HTMLUiSwitchElement;
|
|
992
1298
|
"ui-tabs": HTMLUiTabsElement;
|
|
993
1299
|
"ui-textarea": HTMLUiTextareaElement;
|
|
@@ -998,6 +1304,8 @@ declare global {
|
|
|
998
1304
|
}
|
|
999
1305
|
}
|
|
1000
1306
|
declare namespace LocalJSX {
|
|
1307
|
+
type OneOf<K extends string, PropT, AttrT = PropT> = { [P in K]: PropT } & { [P in `attr:${K}` | `prop:${K}`]?: never } | { [P in `attr:${K}`]: AttrT } & { [P in K | `prop:${K}`]?: never } | { [P in `prop:${K}`]: PropT } & { [P in K | `attr:${K}`]?: never };
|
|
1308
|
+
|
|
1001
1309
|
interface UiAccordion {
|
|
1002
1310
|
}
|
|
1003
1311
|
interface UiAccordionItem {
|
|
@@ -1016,6 +1324,26 @@ declare namespace LocalJSX {
|
|
|
1016
1324
|
*/
|
|
1017
1325
|
"open"?: boolean;
|
|
1018
1326
|
}
|
|
1327
|
+
interface UiAlert {
|
|
1328
|
+
/**
|
|
1329
|
+
* Exibe o botão de fechar.
|
|
1330
|
+
* @default false
|
|
1331
|
+
*/
|
|
1332
|
+
"dismissible"?: boolean;
|
|
1333
|
+
/**
|
|
1334
|
+
* Título do alerta.
|
|
1335
|
+
*/
|
|
1336
|
+
"heading"?: string;
|
|
1337
|
+
/**
|
|
1338
|
+
* Emitido quando o alerta é fechado.
|
|
1339
|
+
*/
|
|
1340
|
+
"onUiClose"?: (event: UiAlertCustomEvent<void>) => void;
|
|
1341
|
+
/**
|
|
1342
|
+
* Variante visual.
|
|
1343
|
+
* @default "info"
|
|
1344
|
+
*/
|
|
1345
|
+
"variant"?: UiAlertVariant;
|
|
1346
|
+
}
|
|
1019
1347
|
interface UiAvatar {
|
|
1020
1348
|
/**
|
|
1021
1349
|
* Texto alternativo da imagem.
|
|
@@ -1030,20 +1358,61 @@ declare namespace LocalJSX {
|
|
|
1030
1358
|
* URL da imagem do avatar.
|
|
1031
1359
|
*/
|
|
1032
1360
|
"src"?: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* Indicador de status.
|
|
1363
|
+
*/
|
|
1364
|
+
"status"?: "online" | "offline" | "busy" | "away";
|
|
1365
|
+
}
|
|
1366
|
+
/**
|
|
1367
|
+
* Agrupa avatares sobrepostos. Use com elementos `<ui-avatar>` no slot default.
|
|
1368
|
+
*/
|
|
1369
|
+
interface UiAvatarGroup {
|
|
1033
1370
|
}
|
|
1034
1371
|
interface UiBadge {
|
|
1372
|
+
/**
|
|
1373
|
+
* Exibe um ponto colorido à esquerda.
|
|
1374
|
+
* @default false
|
|
1375
|
+
*/
|
|
1376
|
+
"dot"?: boolean;
|
|
1377
|
+
/**
|
|
1378
|
+
* Emitido ao clicar no botão de remover.
|
|
1379
|
+
*/
|
|
1380
|
+
"onUiRemove"?: (event: UiBadgeCustomEvent<void>) => void;
|
|
1381
|
+
/**
|
|
1382
|
+
* Exibe um botão para remover o badge.
|
|
1383
|
+
* @default false
|
|
1384
|
+
*/
|
|
1385
|
+
"removable"?: boolean;
|
|
1035
1386
|
/**
|
|
1036
1387
|
* Variante visual.
|
|
1037
1388
|
* @default "default"
|
|
1038
1389
|
*/
|
|
1039
1390
|
"variant"?: UiBadgeVariant;
|
|
1040
1391
|
}
|
|
1392
|
+
interface UiBreadcrumb {
|
|
1393
|
+
}
|
|
1394
|
+
interface UiBreadcrumbItem {
|
|
1395
|
+
/**
|
|
1396
|
+
* Indica o item atual (página corrente).
|
|
1397
|
+
* @default false
|
|
1398
|
+
*/
|
|
1399
|
+
"current"?: boolean;
|
|
1400
|
+
/**
|
|
1401
|
+
* Destino do link.
|
|
1402
|
+
*/
|
|
1403
|
+
"href"?: string;
|
|
1404
|
+
}
|
|
1041
1405
|
interface UiButton {
|
|
1042
1406
|
/**
|
|
1043
1407
|
* Desabilita o botão.
|
|
1044
1408
|
* @default false
|
|
1045
1409
|
*/
|
|
1046
1410
|
"disabled"?: boolean;
|
|
1411
|
+
/**
|
|
1412
|
+
* Ocupa 100% da largura disponível.
|
|
1413
|
+
* @default false
|
|
1414
|
+
*/
|
|
1415
|
+
"full"?: boolean;
|
|
1047
1416
|
/**
|
|
1048
1417
|
* Exibe spinner e desabilita durante uma ação assíncrona.
|
|
1049
1418
|
* @default false
|
|
@@ -1091,6 +1460,18 @@ declare namespace LocalJSX {
|
|
|
1091
1460
|
*/
|
|
1092
1461
|
"value"?: string;
|
|
1093
1462
|
}
|
|
1463
|
+
interface UiContainer {
|
|
1464
|
+
/**
|
|
1465
|
+
* Aplica padding lateral responsivo.
|
|
1466
|
+
* @default true
|
|
1467
|
+
*/
|
|
1468
|
+
"padded"?: boolean;
|
|
1469
|
+
/**
|
|
1470
|
+
* Largura máxima do container.
|
|
1471
|
+
* @default "lg"
|
|
1472
|
+
*/
|
|
1473
|
+
"size"?: UiContainerSize;
|
|
1474
|
+
}
|
|
1094
1475
|
interface UiDialog {
|
|
1095
1476
|
/**
|
|
1096
1477
|
* Emitido quando o modal é fechado (Esc, backdrop ou close()).
|
|
@@ -1168,7 +1549,28 @@ declare namespace LocalJSX {
|
|
|
1168
1549
|
*/
|
|
1169
1550
|
"required"?: boolean;
|
|
1170
1551
|
}
|
|
1552
|
+
interface UiGrid {
|
|
1553
|
+
/**
|
|
1554
|
+
* Número de colunas da grade.
|
|
1555
|
+
* @default 12
|
|
1556
|
+
*/
|
|
1557
|
+
"columns"?: number;
|
|
1558
|
+
/**
|
|
1559
|
+
* Espaçamento entre células.
|
|
1560
|
+
* @default "md"
|
|
1561
|
+
*/
|
|
1562
|
+
"gap"?: UiGridGap;
|
|
1563
|
+
/**
|
|
1564
|
+
* Largura mínima por item para layout responsivo (auto-fit).
|
|
1565
|
+
*/
|
|
1566
|
+
"minItemWidth"?: string;
|
|
1567
|
+
}
|
|
1171
1568
|
interface UiInput {
|
|
1569
|
+
/**
|
|
1570
|
+
* Exibe um botão para limpar o valor quando preenchido.
|
|
1571
|
+
* @default false
|
|
1572
|
+
*/
|
|
1573
|
+
"clearable"?: boolean;
|
|
1172
1574
|
/**
|
|
1173
1575
|
* Desabilita o campo.
|
|
1174
1576
|
* @default false
|
|
@@ -1229,6 +1631,27 @@ declare namespace LocalJSX {
|
|
|
1229
1631
|
*/
|
|
1230
1632
|
"visible"?: boolean;
|
|
1231
1633
|
}
|
|
1634
|
+
interface UiPagination {
|
|
1635
|
+
/**
|
|
1636
|
+
* Página atual.
|
|
1637
|
+
* @default 1
|
|
1638
|
+
*/
|
|
1639
|
+
"current"?: number;
|
|
1640
|
+
/**
|
|
1641
|
+
* Emitido quando a página muda.
|
|
1642
|
+
*/
|
|
1643
|
+
"onUiChange"?: (event: UiPaginationCustomEvent<number>) => void;
|
|
1644
|
+
/**
|
|
1645
|
+
* Quantidade de páginas ao redor da atual.
|
|
1646
|
+
* @default 1
|
|
1647
|
+
*/
|
|
1648
|
+
"siblings"?: number;
|
|
1649
|
+
/**
|
|
1650
|
+
* Total de páginas.
|
|
1651
|
+
* @default 1
|
|
1652
|
+
*/
|
|
1653
|
+
"total"?: number;
|
|
1654
|
+
}
|
|
1232
1655
|
interface UiPopover {
|
|
1233
1656
|
/**
|
|
1234
1657
|
* Emitido quando o estado de abertura muda.
|
|
@@ -1312,6 +1735,22 @@ declare namespace LocalJSX {
|
|
|
1312
1735
|
*/
|
|
1313
1736
|
"heading"?: string;
|
|
1314
1737
|
}
|
|
1738
|
+
interface UiSegmented {
|
|
1739
|
+
/**
|
|
1740
|
+
* Lista de segmentos.
|
|
1741
|
+
* @default []
|
|
1742
|
+
*/
|
|
1743
|
+
"items"?: UiSegmentedItem[];
|
|
1744
|
+
/**
|
|
1745
|
+
* Emitido quando o segmento ativo muda.
|
|
1746
|
+
*/
|
|
1747
|
+
"onUiChange"?: (event: UiSegmentedCustomEvent<string>) => void;
|
|
1748
|
+
/**
|
|
1749
|
+
* Valor do segmento ativo.
|
|
1750
|
+
* @default ""
|
|
1751
|
+
*/
|
|
1752
|
+
"value"?: string;
|
|
1753
|
+
}
|
|
1315
1754
|
interface UiSelect {
|
|
1316
1755
|
/**
|
|
1317
1756
|
* Desabilita o controle.
|
|
@@ -1391,6 +1830,52 @@ declare namespace LocalJSX {
|
|
|
1391
1830
|
*/
|
|
1392
1831
|
"size"?: UiSpinnerSize1;
|
|
1393
1832
|
}
|
|
1833
|
+
interface UiStack {
|
|
1834
|
+
/**
|
|
1835
|
+
* Alinhamento no eixo cruzado.
|
|
1836
|
+
* @default "stretch"
|
|
1837
|
+
*/
|
|
1838
|
+
"align"?: UiStackAlign;
|
|
1839
|
+
/**
|
|
1840
|
+
* Direção do empilhamento.
|
|
1841
|
+
* @default "vertical"
|
|
1842
|
+
*/
|
|
1843
|
+
"direction"?: UiStackDirection;
|
|
1844
|
+
/**
|
|
1845
|
+
* Espaçamento entre itens.
|
|
1846
|
+
* @default "md"
|
|
1847
|
+
*/
|
|
1848
|
+
"gap"?: UiStackGap;
|
|
1849
|
+
/**
|
|
1850
|
+
* Distribuição no eixo principal.
|
|
1851
|
+
* @default "start"
|
|
1852
|
+
*/
|
|
1853
|
+
"justify"?: UiStackJustify;
|
|
1854
|
+
/**
|
|
1855
|
+
* Permite quebra de linha dos itens.
|
|
1856
|
+
* @default false
|
|
1857
|
+
*/
|
|
1858
|
+
"wrap"?: boolean;
|
|
1859
|
+
}
|
|
1860
|
+
interface UiStat {
|
|
1861
|
+
/**
|
|
1862
|
+
* Variação exibida no chip (ex.: "+12%").
|
|
1863
|
+
*/
|
|
1864
|
+
"delta"?: string;
|
|
1865
|
+
/**
|
|
1866
|
+
* Rótulo da métrica.
|
|
1867
|
+
*/
|
|
1868
|
+
"label": string;
|
|
1869
|
+
/**
|
|
1870
|
+
* Direção da tendência.
|
|
1871
|
+
* @default "neutral"
|
|
1872
|
+
*/
|
|
1873
|
+
"trend"?: UiStatTrend;
|
|
1874
|
+
/**
|
|
1875
|
+
* Valor principal exibido.
|
|
1876
|
+
*/
|
|
1877
|
+
"value": string;
|
|
1878
|
+
}
|
|
1394
1879
|
interface UiSwitch {
|
|
1395
1880
|
/**
|
|
1396
1881
|
* Estado ligado/desligado.
|
|
@@ -1520,13 +2005,25 @@ declare namespace LocalJSX {
|
|
|
1520
2005
|
"heading": string;
|
|
1521
2006
|
"open": boolean;
|
|
1522
2007
|
}
|
|
2008
|
+
interface UiAlertAttributes {
|
|
2009
|
+
"variant": UiAlertVariant;
|
|
2010
|
+
"heading": string;
|
|
2011
|
+
"dismissible": boolean;
|
|
2012
|
+
}
|
|
1523
2013
|
interface UiAvatarAttributes {
|
|
1524
2014
|
"src": string;
|
|
1525
2015
|
"alt": string;
|
|
1526
2016
|
"fallback": string;
|
|
2017
|
+
"status": "online" | "offline" | "busy" | "away";
|
|
1527
2018
|
}
|
|
1528
2019
|
interface UiBadgeAttributes {
|
|
1529
2020
|
"variant": UiBadgeVariant;
|
|
2021
|
+
"dot": boolean;
|
|
2022
|
+
"removable": boolean;
|
|
2023
|
+
}
|
|
2024
|
+
interface UiBreadcrumbItemAttributes {
|
|
2025
|
+
"href": string;
|
|
2026
|
+
"current": boolean;
|
|
1530
2027
|
}
|
|
1531
2028
|
interface UiButtonAttributes {
|
|
1532
2029
|
"variant": UiButtonVariant;
|
|
@@ -1534,6 +2031,7 @@ declare namespace LocalJSX {
|
|
|
1534
2031
|
"disabled": boolean;
|
|
1535
2032
|
"loading": boolean;
|
|
1536
2033
|
"type": "button" | "submit" | "reset";
|
|
2034
|
+
"full": boolean;
|
|
1537
2035
|
}
|
|
1538
2036
|
interface UiCheckboxAttributes {
|
|
1539
2037
|
"checked": boolean;
|
|
@@ -1541,6 +2039,10 @@ declare namespace LocalJSX {
|
|
|
1541
2039
|
"name": string;
|
|
1542
2040
|
"value": string;
|
|
1543
2041
|
}
|
|
2042
|
+
interface UiContainerAttributes {
|
|
2043
|
+
"size": UiContainerSize;
|
|
2044
|
+
"padded": boolean;
|
|
2045
|
+
}
|
|
1544
2046
|
interface UiDialogAttributes {
|
|
1545
2047
|
"open": boolean;
|
|
1546
2048
|
}
|
|
@@ -1562,6 +2064,11 @@ declare namespace LocalJSX {
|
|
|
1562
2064
|
"required": boolean;
|
|
1563
2065
|
"fieldId": string;
|
|
1564
2066
|
}
|
|
2067
|
+
interface UiGridAttributes {
|
|
2068
|
+
"columns": number;
|
|
2069
|
+
"gap": UiGridGap;
|
|
2070
|
+
"minItemWidth": string;
|
|
2071
|
+
}
|
|
1565
2072
|
interface UiInputAttributes {
|
|
1566
2073
|
"value": string;
|
|
1567
2074
|
"placeholder": string;
|
|
@@ -1569,12 +2076,18 @@ declare namespace LocalJSX {
|
|
|
1569
2076
|
"disabled": boolean;
|
|
1570
2077
|
"invalid": boolean;
|
|
1571
2078
|
"name": string;
|
|
2079
|
+
"clearable": boolean;
|
|
1572
2080
|
}
|
|
1573
2081
|
interface UiLoadingOverlayAttributes {
|
|
1574
2082
|
"visible": boolean;
|
|
1575
2083
|
"label": string;
|
|
1576
2084
|
"spinnerSize": UiSpinnerSize;
|
|
1577
2085
|
}
|
|
2086
|
+
interface UiPaginationAttributes {
|
|
2087
|
+
"total": number;
|
|
2088
|
+
"current": number;
|
|
2089
|
+
"siblings": number;
|
|
2090
|
+
}
|
|
1578
2091
|
interface UiPopoverAttributes {
|
|
1579
2092
|
"open": boolean;
|
|
1580
2093
|
"placement": Placement;
|
|
@@ -1597,6 +2110,9 @@ declare namespace LocalJSX {
|
|
|
1597
2110
|
"heading": string;
|
|
1598
2111
|
"description": string;
|
|
1599
2112
|
}
|
|
2113
|
+
interface UiSegmentedAttributes {
|
|
2114
|
+
"value": string;
|
|
2115
|
+
}
|
|
1600
2116
|
interface UiSelectAttributes {
|
|
1601
2117
|
"value": string;
|
|
1602
2118
|
"disabled": boolean;
|
|
@@ -1616,6 +2132,19 @@ declare namespace LocalJSX {
|
|
|
1616
2132
|
interface UiSpinnerAttributes {
|
|
1617
2133
|
"size": UiSpinnerSize;
|
|
1618
2134
|
}
|
|
2135
|
+
interface UiStackAttributes {
|
|
2136
|
+
"direction": UiStackDirection;
|
|
2137
|
+
"gap": UiStackGap;
|
|
2138
|
+
"align": UiStackAlign;
|
|
2139
|
+
"justify": UiStackJustify;
|
|
2140
|
+
"wrap": boolean;
|
|
2141
|
+
}
|
|
2142
|
+
interface UiStatAttributes {
|
|
2143
|
+
"label": string;
|
|
2144
|
+
"value": string;
|
|
2145
|
+
"delta": string;
|
|
2146
|
+
"trend": UiStatTrend;
|
|
2147
|
+
}
|
|
1619
2148
|
interface UiSwitchAttributes {
|
|
1620
2149
|
"checked": boolean;
|
|
1621
2150
|
"disabled": boolean;
|
|
@@ -1647,30 +2176,40 @@ declare namespace LocalJSX {
|
|
|
1647
2176
|
interface IntrinsicElements {
|
|
1648
2177
|
"ui-accordion": UiAccordion;
|
|
1649
2178
|
"ui-accordion-item": Omit<UiAccordionItem, keyof UiAccordionItemAttributes> & { [K in keyof UiAccordionItem & keyof UiAccordionItemAttributes]?: UiAccordionItem[K] } & { [K in keyof UiAccordionItem & keyof UiAccordionItemAttributes as `attr:${K}`]?: UiAccordionItemAttributes[K] } & { [K in keyof UiAccordionItem & keyof UiAccordionItemAttributes as `prop:${K}`]?: UiAccordionItem[K] };
|
|
2179
|
+
"ui-alert": Omit<UiAlert, keyof UiAlertAttributes> & { [K in keyof UiAlert & keyof UiAlertAttributes]?: UiAlert[K] } & { [K in keyof UiAlert & keyof UiAlertAttributes as `attr:${K}`]?: UiAlertAttributes[K] } & { [K in keyof UiAlert & keyof UiAlertAttributes as `prop:${K}`]?: UiAlert[K] };
|
|
1650
2180
|
"ui-avatar": Omit<UiAvatar, keyof UiAvatarAttributes> & { [K in keyof UiAvatar & keyof UiAvatarAttributes]?: UiAvatar[K] } & { [K in keyof UiAvatar & keyof UiAvatarAttributes as `attr:${K}`]?: UiAvatarAttributes[K] } & { [K in keyof UiAvatar & keyof UiAvatarAttributes as `prop:${K}`]?: UiAvatar[K] };
|
|
2181
|
+
"ui-avatar-group": UiAvatarGroup;
|
|
1651
2182
|
"ui-badge": Omit<UiBadge, keyof UiBadgeAttributes> & { [K in keyof UiBadge & keyof UiBadgeAttributes]?: UiBadge[K] } & { [K in keyof UiBadge & keyof UiBadgeAttributes as `attr:${K}`]?: UiBadgeAttributes[K] } & { [K in keyof UiBadge & keyof UiBadgeAttributes as `prop:${K}`]?: UiBadge[K] };
|
|
2183
|
+
"ui-breadcrumb": UiBreadcrumb;
|
|
2184
|
+
"ui-breadcrumb-item": Omit<UiBreadcrumbItem, keyof UiBreadcrumbItemAttributes> & { [K in keyof UiBreadcrumbItem & keyof UiBreadcrumbItemAttributes]?: UiBreadcrumbItem[K] } & { [K in keyof UiBreadcrumbItem & keyof UiBreadcrumbItemAttributes as `attr:${K}`]?: UiBreadcrumbItemAttributes[K] } & { [K in keyof UiBreadcrumbItem & keyof UiBreadcrumbItemAttributes as `prop:${K}`]?: UiBreadcrumbItem[K] };
|
|
1652
2185
|
"ui-button": Omit<UiButton, keyof UiButtonAttributes> & { [K in keyof UiButton & keyof UiButtonAttributes]?: UiButton[K] } & { [K in keyof UiButton & keyof UiButtonAttributes as `attr:${K}`]?: UiButtonAttributes[K] } & { [K in keyof UiButton & keyof UiButtonAttributes as `prop:${K}`]?: UiButton[K] };
|
|
1653
2186
|
"ui-card": UiCard;
|
|
1654
2187
|
"ui-checkbox": Omit<UiCheckbox, keyof UiCheckboxAttributes> & { [K in keyof UiCheckbox & keyof UiCheckboxAttributes]?: UiCheckbox[K] } & { [K in keyof UiCheckbox & keyof UiCheckboxAttributes as `attr:${K}`]?: UiCheckboxAttributes[K] } & { [K in keyof UiCheckbox & keyof UiCheckboxAttributes as `prop:${K}`]?: UiCheckbox[K] };
|
|
2188
|
+
"ui-container": Omit<UiContainer, keyof UiContainerAttributes> & { [K in keyof UiContainer & keyof UiContainerAttributes]?: UiContainer[K] } & { [K in keyof UiContainer & keyof UiContainerAttributes as `attr:${K}`]?: UiContainerAttributes[K] } & { [K in keyof UiContainer & keyof UiContainerAttributes as `prop:${K}`]?: UiContainer[K] };
|
|
1655
2189
|
"ui-dialog": Omit<UiDialog, keyof UiDialogAttributes> & { [K in keyof UiDialog & keyof UiDialogAttributes]?: UiDialog[K] } & { [K in keyof UiDialog & keyof UiDialogAttributes as `attr:${K}`]?: UiDialogAttributes[K] } & { [K in keyof UiDialog & keyof UiDialogAttributes as `prop:${K}`]?: UiDialog[K] };
|
|
1656
2190
|
"ui-drawer": Omit<UiDrawer, keyof UiDrawerAttributes> & { [K in keyof UiDrawer & keyof UiDrawerAttributes]?: UiDrawer[K] } & { [K in keyof UiDrawer & keyof UiDrawerAttributes as `attr:${K}`]?: UiDrawerAttributes[K] } & { [K in keyof UiDrawer & keyof UiDrawerAttributes as `prop:${K}`]?: UiDrawer[K] };
|
|
1657
2191
|
"ui-dropdown-item": Omit<UiDropdownItem, keyof UiDropdownItemAttributes> & { [K in keyof UiDropdownItem & keyof UiDropdownItemAttributes]?: UiDropdownItem[K] } & { [K in keyof UiDropdownItem & keyof UiDropdownItemAttributes as `attr:${K}`]?: UiDropdownItemAttributes[K] } & { [K in keyof UiDropdownItem & keyof UiDropdownItemAttributes as `prop:${K}`]?: UiDropdownItem[K] };
|
|
1658
2192
|
"ui-dropdown-menu": Omit<UiDropdownMenu, keyof UiDropdownMenuAttributes> & { [K in keyof UiDropdownMenu & keyof UiDropdownMenuAttributes]?: UiDropdownMenu[K] } & { [K in keyof UiDropdownMenu & keyof UiDropdownMenuAttributes as `attr:${K}`]?: UiDropdownMenuAttributes[K] } & { [K in keyof UiDropdownMenu & keyof UiDropdownMenuAttributes as `prop:${K}`]?: UiDropdownMenu[K] };
|
|
1659
2193
|
"ui-field": Omit<UiField, keyof UiFieldAttributes> & { [K in keyof UiField & keyof UiFieldAttributes]?: UiField[K] } & { [K in keyof UiField & keyof UiFieldAttributes as `attr:${K}`]?: UiFieldAttributes[K] } & { [K in keyof UiField & keyof UiFieldAttributes as `prop:${K}`]?: UiField[K] };
|
|
2194
|
+
"ui-grid": Omit<UiGrid, keyof UiGridAttributes> & { [K in keyof UiGrid & keyof UiGridAttributes]?: UiGrid[K] } & { [K in keyof UiGrid & keyof UiGridAttributes as `attr:${K}`]?: UiGridAttributes[K] } & { [K in keyof UiGrid & keyof UiGridAttributes as `prop:${K}`]?: UiGrid[K] };
|
|
1660
2195
|
"ui-input": Omit<UiInput, keyof UiInputAttributes> & { [K in keyof UiInput & keyof UiInputAttributes]?: UiInput[K] } & { [K in keyof UiInput & keyof UiInputAttributes as `attr:${K}`]?: UiInputAttributes[K] } & { [K in keyof UiInput & keyof UiInputAttributes as `prop:${K}`]?: UiInput[K] };
|
|
1661
2196
|
"ui-label": UiLabel;
|
|
1662
2197
|
"ui-loading-overlay": Omit<UiLoadingOverlay, keyof UiLoadingOverlayAttributes> & { [K in keyof UiLoadingOverlay & keyof UiLoadingOverlayAttributes]?: UiLoadingOverlay[K] } & { [K in keyof UiLoadingOverlay & keyof UiLoadingOverlayAttributes as `attr:${K}`]?: UiLoadingOverlayAttributes[K] } & { [K in keyof UiLoadingOverlay & keyof UiLoadingOverlayAttributes as `prop:${K}`]?: UiLoadingOverlay[K] };
|
|
2198
|
+
"ui-pagination": Omit<UiPagination, keyof UiPaginationAttributes> & { [K in keyof UiPagination & keyof UiPaginationAttributes]?: UiPagination[K] } & { [K in keyof UiPagination & keyof UiPaginationAttributes as `attr:${K}`]?: UiPaginationAttributes[K] } & { [K in keyof UiPagination & keyof UiPaginationAttributes as `prop:${K}`]?: UiPagination[K] };
|
|
1663
2199
|
"ui-popover": Omit<UiPopover, keyof UiPopoverAttributes> & { [K in keyof UiPopover & keyof UiPopoverAttributes]?: UiPopover[K] } & { [K in keyof UiPopover & keyof UiPopoverAttributes as `attr:${K}`]?: UiPopoverAttributes[K] } & { [K in keyof UiPopover & keyof UiPopoverAttributes as `prop:${K}`]?: UiPopover[K] };
|
|
1664
2200
|
"ui-progress": Omit<UiProgress, keyof UiProgressAttributes> & { [K in keyof UiProgress & keyof UiProgressAttributes]?: UiProgress[K] } & { [K in keyof UiProgress & keyof UiProgressAttributes as `attr:${K}`]?: UiProgressAttributes[K] } & { [K in keyof UiProgress & keyof UiProgressAttributes as `prop:${K}`]?: UiProgress[K] };
|
|
1665
2201
|
"ui-radio-group": Omit<UiRadioGroup, keyof UiRadioGroupAttributes> & { [K in keyof UiRadioGroup & keyof UiRadioGroupAttributes]?: UiRadioGroup[K] } & { [K in keyof UiRadioGroup & keyof UiRadioGroupAttributes as `attr:${K}`]?: UiRadioGroupAttributes[K] } & { [K in keyof UiRadioGroup & keyof UiRadioGroupAttributes as `prop:${K}`]?: UiRadioGroup[K] };
|
|
1666
2202
|
"ui-reveal": Omit<UiReveal, keyof UiRevealAttributes> & { [K in keyof UiReveal & keyof UiRevealAttributes]?: UiReveal[K] } & { [K in keyof UiReveal & keyof UiRevealAttributes as `attr:${K}`]?: UiRevealAttributes[K] } & { [K in keyof UiReveal & keyof UiRevealAttributes as `prop:${K}`]?: UiReveal[K] };
|
|
1667
2203
|
"ui-scroll-progress": UiScrollProgress;
|
|
1668
2204
|
"ui-section": Omit<UiSection, keyof UiSectionAttributes> & { [K in keyof UiSection & keyof UiSectionAttributes]?: UiSection[K] } & { [K in keyof UiSection & keyof UiSectionAttributes as `attr:${K}`]?: UiSectionAttributes[K] } & { [K in keyof UiSection & keyof UiSectionAttributes as `prop:${K}`]?: UiSection[K] };
|
|
2205
|
+
"ui-segmented": Omit<UiSegmented, keyof UiSegmentedAttributes> & { [K in keyof UiSegmented & keyof UiSegmentedAttributes]?: UiSegmented[K] } & { [K in keyof UiSegmented & keyof UiSegmentedAttributes as `attr:${K}`]?: UiSegmentedAttributes[K] } & { [K in keyof UiSegmented & keyof UiSegmentedAttributes as `prop:${K}`]?: UiSegmented[K] };
|
|
1669
2206
|
"ui-select": Omit<UiSelect, keyof UiSelectAttributes> & { [K in keyof UiSelect & keyof UiSelectAttributes]?: UiSelect[K] } & { [K in keyof UiSelect & keyof UiSelectAttributes as `attr:${K}`]?: UiSelectAttributes[K] } & { [K in keyof UiSelect & keyof UiSelectAttributes as `prop:${K}`]?: UiSelect[K] };
|
|
1670
2207
|
"ui-separator": Omit<UiSeparator, keyof UiSeparatorAttributes> & { [K in keyof UiSeparator & keyof UiSeparatorAttributes]?: UiSeparator[K] } & { [K in keyof UiSeparator & keyof UiSeparatorAttributes as `attr:${K}`]?: UiSeparatorAttributes[K] } & { [K in keyof UiSeparator & keyof UiSeparatorAttributes as `prop:${K}`]?: UiSeparator[K] };
|
|
1671
2208
|
"ui-skeleton": UiSkeleton;
|
|
1672
2209
|
"ui-slider": Omit<UiSlider, keyof UiSliderAttributes> & { [K in keyof UiSlider & keyof UiSliderAttributes]?: UiSlider[K] } & { [K in keyof UiSlider & keyof UiSliderAttributes as `attr:${K}`]?: UiSliderAttributes[K] } & { [K in keyof UiSlider & keyof UiSliderAttributes as `prop:${K}`]?: UiSlider[K] };
|
|
1673
2210
|
"ui-spinner": Omit<UiSpinner, keyof UiSpinnerAttributes> & { [K in keyof UiSpinner & keyof UiSpinnerAttributes]?: UiSpinner[K] } & { [K in keyof UiSpinner & keyof UiSpinnerAttributes as `attr:${K}`]?: UiSpinnerAttributes[K] } & { [K in keyof UiSpinner & keyof UiSpinnerAttributes as `prop:${K}`]?: UiSpinner[K] };
|
|
2211
|
+
"ui-stack": Omit<UiStack, keyof UiStackAttributes> & { [K in keyof UiStack & keyof UiStackAttributes]?: UiStack[K] } & { [K in keyof UiStack & keyof UiStackAttributes as `attr:${K}`]?: UiStackAttributes[K] } & { [K in keyof UiStack & keyof UiStackAttributes as `prop:${K}`]?: UiStack[K] };
|
|
2212
|
+
"ui-stat": Omit<UiStat, keyof UiStatAttributes> & { [K in keyof UiStat & keyof UiStatAttributes]?: UiStat[K] } & { [K in keyof UiStat & keyof UiStatAttributes as `attr:${K}`]?: UiStatAttributes[K] } & { [K in keyof UiStat & keyof UiStatAttributes as `prop:${K}`]?: UiStat[K] } & OneOf<"label", UiStat["label"], UiStatAttributes["label"]> & OneOf<"value", UiStat["value"], UiStatAttributes["value"]>;
|
|
1674
2213
|
"ui-switch": Omit<UiSwitch, keyof UiSwitchAttributes> & { [K in keyof UiSwitch & keyof UiSwitchAttributes]?: UiSwitch[K] } & { [K in keyof UiSwitch & keyof UiSwitchAttributes as `attr:${K}`]?: UiSwitchAttributes[K] } & { [K in keyof UiSwitch & keyof UiSwitchAttributes as `prop:${K}`]?: UiSwitch[K] };
|
|
1675
2214
|
"ui-tabs": Omit<UiTabs, keyof UiTabsAttributes> & { [K in keyof UiTabs & keyof UiTabsAttributes]?: UiTabs[K] } & { [K in keyof UiTabs & keyof UiTabsAttributes as `attr:${K}`]?: UiTabsAttributes[K] } & { [K in keyof UiTabs & keyof UiTabsAttributes as `prop:${K}`]?: UiTabs[K] };
|
|
1676
2215
|
"ui-textarea": Omit<UiTextarea, keyof UiTextareaAttributes> & { [K in keyof UiTextarea & keyof UiTextareaAttributes]?: UiTextarea[K] } & { [K in keyof UiTextarea & keyof UiTextareaAttributes as `attr:${K}`]?: UiTextareaAttributes[K] } & { [K in keyof UiTextarea & keyof UiTextareaAttributes as `prop:${K}`]?: UiTextarea[K] };
|
|
@@ -1686,16 +2225,25 @@ declare module "@stencil/core" {
|
|
|
1686
2225
|
interface IntrinsicElements {
|
|
1687
2226
|
"ui-accordion": LocalJSX.IntrinsicElements["ui-accordion"] & JSXBase.HTMLAttributes<HTMLUiAccordionElement>;
|
|
1688
2227
|
"ui-accordion-item": LocalJSX.IntrinsicElements["ui-accordion-item"] & JSXBase.HTMLAttributes<HTMLUiAccordionItemElement>;
|
|
2228
|
+
"ui-alert": LocalJSX.IntrinsicElements["ui-alert"] & JSXBase.HTMLAttributes<HTMLUiAlertElement>;
|
|
1689
2229
|
"ui-avatar": LocalJSX.IntrinsicElements["ui-avatar"] & JSXBase.HTMLAttributes<HTMLUiAvatarElement>;
|
|
2230
|
+
/**
|
|
2231
|
+
* Agrupa avatares sobrepostos. Use com elementos `<ui-avatar>` no slot default.
|
|
2232
|
+
*/
|
|
2233
|
+
"ui-avatar-group": LocalJSX.IntrinsicElements["ui-avatar-group"] & JSXBase.HTMLAttributes<HTMLUiAvatarGroupElement>;
|
|
1690
2234
|
"ui-badge": LocalJSX.IntrinsicElements["ui-badge"] & JSXBase.HTMLAttributes<HTMLUiBadgeElement>;
|
|
2235
|
+
"ui-breadcrumb": LocalJSX.IntrinsicElements["ui-breadcrumb"] & JSXBase.HTMLAttributes<HTMLUiBreadcrumbElement>;
|
|
2236
|
+
"ui-breadcrumb-item": LocalJSX.IntrinsicElements["ui-breadcrumb-item"] & JSXBase.HTMLAttributes<HTMLUiBreadcrumbItemElement>;
|
|
1691
2237
|
"ui-button": LocalJSX.IntrinsicElements["ui-button"] & JSXBase.HTMLAttributes<HTMLUiButtonElement>;
|
|
1692
2238
|
"ui-card": LocalJSX.IntrinsicElements["ui-card"] & JSXBase.HTMLAttributes<HTMLUiCardElement>;
|
|
1693
2239
|
"ui-checkbox": LocalJSX.IntrinsicElements["ui-checkbox"] & JSXBase.HTMLAttributes<HTMLUiCheckboxElement>;
|
|
2240
|
+
"ui-container": LocalJSX.IntrinsicElements["ui-container"] & JSXBase.HTMLAttributes<HTMLUiContainerElement>;
|
|
1694
2241
|
"ui-dialog": LocalJSX.IntrinsicElements["ui-dialog"] & JSXBase.HTMLAttributes<HTMLUiDialogElement>;
|
|
1695
2242
|
"ui-drawer": LocalJSX.IntrinsicElements["ui-drawer"] & JSXBase.HTMLAttributes<HTMLUiDrawerElement>;
|
|
1696
2243
|
"ui-dropdown-item": LocalJSX.IntrinsicElements["ui-dropdown-item"] & JSXBase.HTMLAttributes<HTMLUiDropdownItemElement>;
|
|
1697
2244
|
"ui-dropdown-menu": LocalJSX.IntrinsicElements["ui-dropdown-menu"] & JSXBase.HTMLAttributes<HTMLUiDropdownMenuElement>;
|
|
1698
2245
|
"ui-field": LocalJSX.IntrinsicElements["ui-field"] & JSXBase.HTMLAttributes<HTMLUiFieldElement>;
|
|
2246
|
+
"ui-grid": LocalJSX.IntrinsicElements["ui-grid"] & JSXBase.HTMLAttributes<HTMLUiGridElement>;
|
|
1699
2247
|
"ui-input": LocalJSX.IntrinsicElements["ui-input"] & JSXBase.HTMLAttributes<HTMLUiInputElement>;
|
|
1700
2248
|
"ui-label": LocalJSX.IntrinsicElements["ui-label"] & JSXBase.HTMLAttributes<HTMLUiLabelElement>;
|
|
1701
2249
|
/**
|
|
@@ -1704,17 +2252,21 @@ declare module "@stencil/core" {
|
|
|
1704
2252
|
* absoluta (inset 0) o cubra corretamente.
|
|
1705
2253
|
*/
|
|
1706
2254
|
"ui-loading-overlay": LocalJSX.IntrinsicElements["ui-loading-overlay"] & JSXBase.HTMLAttributes<HTMLUiLoadingOverlayElement>;
|
|
2255
|
+
"ui-pagination": LocalJSX.IntrinsicElements["ui-pagination"] & JSXBase.HTMLAttributes<HTMLUiPaginationElement>;
|
|
1707
2256
|
"ui-popover": LocalJSX.IntrinsicElements["ui-popover"] & JSXBase.HTMLAttributes<HTMLUiPopoverElement>;
|
|
1708
2257
|
"ui-progress": LocalJSX.IntrinsicElements["ui-progress"] & JSXBase.HTMLAttributes<HTMLUiProgressElement>;
|
|
1709
2258
|
"ui-radio-group": LocalJSX.IntrinsicElements["ui-radio-group"] & JSXBase.HTMLAttributes<HTMLUiRadioGroupElement>;
|
|
1710
2259
|
"ui-reveal": LocalJSX.IntrinsicElements["ui-reveal"] & JSXBase.HTMLAttributes<HTMLUiRevealElement>;
|
|
1711
2260
|
"ui-scroll-progress": LocalJSX.IntrinsicElements["ui-scroll-progress"] & JSXBase.HTMLAttributes<HTMLUiScrollProgressElement>;
|
|
1712
2261
|
"ui-section": LocalJSX.IntrinsicElements["ui-section"] & JSXBase.HTMLAttributes<HTMLUiSectionElement>;
|
|
2262
|
+
"ui-segmented": LocalJSX.IntrinsicElements["ui-segmented"] & JSXBase.HTMLAttributes<HTMLUiSegmentedElement>;
|
|
1713
2263
|
"ui-select": LocalJSX.IntrinsicElements["ui-select"] & JSXBase.HTMLAttributes<HTMLUiSelectElement>;
|
|
1714
2264
|
"ui-separator": LocalJSX.IntrinsicElements["ui-separator"] & JSXBase.HTMLAttributes<HTMLUiSeparatorElement>;
|
|
1715
2265
|
"ui-skeleton": LocalJSX.IntrinsicElements["ui-skeleton"] & JSXBase.HTMLAttributes<HTMLUiSkeletonElement>;
|
|
1716
2266
|
"ui-slider": LocalJSX.IntrinsicElements["ui-slider"] & JSXBase.HTMLAttributes<HTMLUiSliderElement>;
|
|
1717
2267
|
"ui-spinner": LocalJSX.IntrinsicElements["ui-spinner"] & JSXBase.HTMLAttributes<HTMLUiSpinnerElement>;
|
|
2268
|
+
"ui-stack": LocalJSX.IntrinsicElements["ui-stack"] & JSXBase.HTMLAttributes<HTMLUiStackElement>;
|
|
2269
|
+
"ui-stat": LocalJSX.IntrinsicElements["ui-stat"] & JSXBase.HTMLAttributes<HTMLUiStatElement>;
|
|
1718
2270
|
"ui-switch": LocalJSX.IntrinsicElements["ui-switch"] & JSXBase.HTMLAttributes<HTMLUiSwitchElement>;
|
|
1719
2271
|
"ui-tabs": LocalJSX.IntrinsicElements["ui-tabs"] & JSXBase.HTMLAttributes<HTMLUiTabsElement>;
|
|
1720
2272
|
"ui-textarea": LocalJSX.IntrinsicElements["ui-textarea"] & JSXBase.HTMLAttributes<HTMLUiTextareaElement>;
|