@dropi/ui 0.1.17 → 0.1.19
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/dropi-accordion.cjs.entry.js +1 -1
- package/dist/cjs/dropi-alert.cjs.entry.js +58 -0
- package/dist/cjs/dropi-avatars.cjs.entry.js +31 -0
- package/dist/cjs/dropi-badge.cjs.entry.js +1 -1
- package/dist/cjs/dropi-button.cjs.entry.js +2 -2
- package/dist/cjs/dropi-card-section.cjs.entry.js +38 -0
- package/dist/cjs/dropi-checkbox-selection-list.cjs.entry.js +71 -0
- package/dist/cjs/dropi-checkbox.cjs.entry.js +2 -2
- package/dist/cjs/dropi-chips.cjs.entry.js +30 -0
- package/dist/cjs/dropi-dropdown.cjs.entry.js +58 -0
- package/dist/cjs/dropi-empty-state.cjs.entry.js +1 -1
- package/dist/cjs/dropi-favorite-button.cjs.entry.js +27 -0
- package/dist/cjs/dropi-icon.cjs.entry.js +1 -1
- package/dist/cjs/dropi-image-miniature.cjs.entry.js +44 -0
- package/dist/cjs/dropi-image-overlay.cjs.entry.js +62 -0
- package/dist/cjs/dropi-input.cjs.entry.js +5 -5
- package/dist/cjs/dropi-logo.cjs.entry.js +27 -0
- package/dist/cjs/dropi-lottie-loader.cjs.entry.js +27 -0
- package/dist/cjs/dropi-otp-send-code.cjs.entry.js +92 -0
- package/dist/cjs/dropi-paginator.cjs.entry.js +5 -3
- package/dist/cjs/dropi-radio-button.cjs.entry.js +1 -1
- package/dist/cjs/dropi-radio-selection-list.cjs.entry.js +56 -0
- package/dist/cjs/dropi-read-more.cjs.entry.js +36 -0
- package/dist/cjs/dropi-search.cjs.entry.js +110 -0
- package/dist/cjs/dropi-select.cjs.entry.js +1 -1
- package/dist/cjs/dropi-simple-stepper.cjs.entry.js +51 -0
- package/dist/cjs/dropi-steps.cjs.entry.js +50 -0
- package/dist/cjs/dropi-switch.cjs.entry.js +1 -1
- package/dist/cjs/dropi-tabs.cjs.entry.js +1 -1
- package/dist/cjs/dropi-tag.cjs.entry.js +1 -1
- package/dist/cjs/dropi-text-area.cjs.entry.js +3 -3
- package/dist/cjs/dropi-time-line.cjs.entry.js +34 -0
- package/dist/cjs/dropi-toast.cjs.entry.js +1 -1
- package/dist/cjs/dropi-tooltip.cjs.entry.js +1 -1
- package/dist/cjs/dropi-ui.cjs.js +1 -1
- package/dist/cjs/dropi-vertical-steps.cjs.entry.js +55 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +19 -0
- package/dist/collection/components/dropi-accordion/dropi-accordion.js +1 -1
- package/dist/collection/components/dropi-alert/dropi-alert.css +123 -0
- package/dist/collection/components/dropi-alert/dropi-alert.js +305 -0
- package/dist/collection/components/dropi-avatars/dropi-avatars.css +55 -0
- package/dist/collection/components/dropi-avatars/dropi-avatars.js +126 -0
- package/dist/collection/components/dropi-badge/dropi-badge.js +1 -1
- package/dist/collection/components/dropi-button/dropi-button.js +2 -2
- package/dist/collection/components/dropi-card-section/dropi-card-section.css +42 -0
- package/dist/collection/components/dropi-card-section/dropi-card-section.js +178 -0
- package/dist/collection/components/dropi-checkbox/dropi-checkbox.js +2 -2
- package/dist/collection/components/dropi-checkbox-selection-list/dropi-checkbox-selection-list.css +44 -0
- package/dist/collection/components/dropi-checkbox-selection-list/dropi-checkbox-selection-list.js +245 -0
- package/dist/collection/components/dropi-chips/dropi-chips.css +66 -0
- package/dist/collection/components/dropi-chips/dropi-chips.js +169 -0
- package/dist/collection/components/dropi-dropdown/dropi-dropdown.css +51 -0
- package/dist/collection/components/dropi-dropdown/dropi-dropdown.js +184 -0
- package/dist/collection/components/dropi-empty-state/dropi-empty-state.js +1 -1
- package/dist/collection/components/dropi-favorite-button/dropi-favorite-button.css +24 -0
- package/dist/collection/components/dropi-favorite-button/dropi-favorite-button.js +78 -0
- package/dist/collection/components/dropi-icon/dropi-icon.js +1 -1
- package/dist/collection/components/dropi-image-miniature/dropi-image-miniature.css +45 -0
- package/dist/collection/components/dropi-image-miniature/dropi-image-miniature.js +150 -0
- package/dist/collection/components/dropi-image-overlay/dropi-image-overlay.css +82 -0
- package/dist/collection/components/dropi-image-overlay/dropi-image-overlay.js +155 -0
- package/dist/collection/components/dropi-input/dropi-input.css +11 -0
- package/dist/collection/components/dropi-input/dropi-input.js +4 -4
- package/dist/collection/components/dropi-logo/dropi-logo.css +26 -0
- package/dist/collection/components/dropi-logo/dropi-logo.js +96 -0
- package/dist/collection/components/dropi-lottie-loader/dropi-lottie-loader.css +50 -0
- package/dist/collection/components/dropi-lottie-loader/dropi-lottie-loader.js +116 -0
- package/dist/collection/components/dropi-otp-send-code/dropi-otp-send-code.css +60 -0
- package/dist/collection/components/dropi-otp-send-code/dropi-otp-send-code.js +221 -0
- package/dist/collection/components/dropi-paginator/dropi-paginator.css +15 -12
- package/dist/collection/components/dropi-paginator/dropi-paginator.js +24 -2
- package/dist/collection/components/dropi-radio-button/dropi-radio-button.js +1 -1
- package/dist/collection/components/dropi-radio-selection-list/dropi-radio-selection-list.css +64 -0
- package/dist/collection/components/dropi-radio-selection-list/dropi-radio-selection-list.js +209 -0
- package/dist/collection/components/dropi-read-more/dropi-read-more.css +28 -0
- package/dist/collection/components/dropi-read-more/dropi-read-more.js +110 -0
- package/dist/collection/components/dropi-search/dropi-search.css +112 -0
- package/dist/collection/components/dropi-search/dropi-search.js +392 -0
- package/dist/collection/components/dropi-select/dropi-select.js +1 -1
- package/dist/collection/components/dropi-simple-stepper/dropi-simple-stepper.css +94 -0
- package/dist/collection/components/dropi-simple-stepper/dropi-simple-stepper.js +172 -0
- package/dist/collection/components/dropi-steps/dropi-steps.css +95 -0
- package/dist/collection/components/dropi-steps/dropi-steps.js +145 -0
- package/dist/collection/components/dropi-switch/dropi-switch.js +1 -1
- package/dist/collection/components/dropi-tabs/dropi-tabs.js +1 -1
- package/dist/collection/components/dropi-tag/dropi-tag.js +1 -1
- package/dist/collection/components/dropi-text-area/dropi-text-area.css +0 -1
- package/dist/collection/components/dropi-text-area/dropi-text-area.js +2 -2
- package/dist/collection/components/dropi-time-line/dropi-time-line.css +108 -0
- package/dist/collection/components/dropi-time-line/dropi-time-line.js +69 -0
- package/dist/collection/components/dropi-toast/dropi-toast.js +1 -1
- package/dist/collection/components/dropi-tooltip/dropi-tooltip.js +1 -1
- package/dist/collection/components/dropi-vertical-steps/dropi-vertical-steps.css +95 -0
- package/dist/collection/components/dropi-vertical-steps/dropi-vertical-steps.js +167 -0
- package/dist/components/dropi-accordion.js +1 -1
- package/dist/components/dropi-alert.d.ts +11 -0
- package/dist/components/dropi-alert.js +1 -0
- package/dist/components/dropi-avatars.d.ts +11 -0
- package/dist/components/dropi-avatars.js +1 -0
- package/dist/components/dropi-badge.js +1 -1
- package/dist/components/dropi-button.js +1 -1
- package/dist/components/dropi-card-section.d.ts +11 -0
- package/dist/components/dropi-card-section.js +1 -0
- package/dist/components/dropi-checkbox-selection-list.d.ts +11 -0
- package/dist/components/dropi-checkbox-selection-list.js +1 -0
- package/dist/components/dropi-checkbox.js +1 -1
- package/dist/components/dropi-chips.d.ts +11 -0
- package/dist/components/dropi-chips.js +1 -0
- package/dist/components/dropi-dropdown.d.ts +11 -0
- package/dist/components/dropi-dropdown.js +1 -0
- package/dist/components/dropi-empty-state.js +1 -1
- package/dist/components/dropi-favorite-button.d.ts +11 -0
- package/dist/components/dropi-favorite-button.js +1 -0
- package/dist/components/dropi-icon.js +1 -1
- package/dist/components/dropi-image-miniature.d.ts +11 -0
- package/dist/components/dropi-image-miniature.js +1 -0
- package/dist/components/dropi-image-overlay.d.ts +11 -0
- package/dist/components/dropi-image-overlay.js +1 -0
- package/dist/components/dropi-input.js +1 -1
- package/dist/components/dropi-logo.d.ts +11 -0
- package/dist/components/dropi-logo.js +1 -0
- package/dist/components/dropi-lottie-loader.d.ts +11 -0
- package/dist/components/dropi-lottie-loader.js +1 -0
- package/dist/components/dropi-modal.js +1 -1
- package/dist/components/dropi-otp-send-code.d.ts +11 -0
- package/dist/components/dropi-otp-send-code.js +1 -0
- package/dist/components/dropi-paginator.js +1 -1
- package/dist/components/dropi-radio-button.js +1 -1
- package/dist/components/dropi-radio-selection-list.d.ts +11 -0
- package/dist/components/dropi-radio-selection-list.js +1 -0
- package/dist/components/dropi-read-more.d.ts +11 -0
- package/dist/components/dropi-read-more.js +1 -0
- package/dist/components/dropi-search.d.ts +11 -0
- package/dist/components/dropi-search.js +1 -0
- package/dist/components/dropi-select.js +1 -1
- package/dist/components/dropi-simple-stepper.d.ts +11 -0
- package/dist/components/dropi-simple-stepper.js +1 -0
- package/dist/components/dropi-steps.d.ts +11 -0
- package/dist/components/dropi-steps.js +1 -0
- package/dist/components/dropi-switch.js +1 -1
- package/dist/components/dropi-tabs.js +1 -1
- package/dist/components/dropi-tag.js +1 -1
- package/dist/components/dropi-text-area.js +1 -1
- package/dist/components/dropi-time-line.d.ts +11 -0
- package/dist/components/dropi-time-line.js +1 -0
- package/dist/components/dropi-toast.js +1 -1
- package/dist/components/dropi-tooltip.js +1 -1
- package/dist/components/dropi-vertical-steps.d.ts +11 -0
- package/dist/components/dropi-vertical-steps.js +1 -0
- package/dist/components/{p-ChOXWKmI.js → p-CPs3fHRc.js} +1 -1
- package/dist/components/p-DKXrREI4.js +1 -0
- package/dist/components/p-Ds74ZOlC.js +1 -0
- package/dist/components/{p-NCyvfOs2.js → p-WZTFyFH2.js} +1 -1
- package/dist/dropi-ui/dropi-ui.esm.js +1 -1
- package/dist/dropi-ui/p-061e1ad4.entry.js +1 -0
- package/dist/dropi-ui/{p-ecda6e19.entry.js → p-0c13dded.entry.js} +1 -1
- package/dist/dropi-ui/{p-79466fec.entry.js → p-121c8a09.entry.js} +1 -1
- package/dist/dropi-ui/p-291a1416.entry.js +1 -0
- package/dist/dropi-ui/p-2cee44f9.entry.js +1 -0
- package/dist/dropi-ui/{p-6031ac9d.entry.js → p-30fdd316.entry.js} +1 -1
- package/dist/dropi-ui/p-3537ee5a.entry.js +1 -0
- package/dist/dropi-ui/{p-26dbae0d.entry.js → p-3d859657.entry.js} +1 -1
- package/dist/dropi-ui/p-433d161d.entry.js +1 -0
- package/dist/dropi-ui/p-4bdfad16.entry.js +1 -0
- package/dist/dropi-ui/p-4ea7d3a7.entry.js +1 -0
- package/dist/dropi-ui/{p-09c38a49.entry.js → p-51c8ef68.entry.js} +1 -1
- package/dist/dropi-ui/{p-6d15d32f.entry.js → p-54780c90.entry.js} +1 -1
- package/dist/dropi-ui/{p-63e969da.entry.js → p-66deb85e.entry.js} +1 -1
- package/dist/dropi-ui/p-68f81080.entry.js +1 -0
- package/dist/dropi-ui/p-724a2aea.entry.js +1 -0
- package/dist/dropi-ui/p-74c37688.entry.js +1 -0
- package/dist/dropi-ui/p-7cec1cea.entry.js +1 -0
- package/dist/dropi-ui/{p-f0e1e0f6.entry.js → p-7daa2677.entry.js} +1 -1
- package/dist/dropi-ui/p-8906a68d.entry.js +1 -0
- package/dist/dropi-ui/{p-1739d20c.entry.js → p-a4204ece.entry.js} +1 -1
- package/dist/dropi-ui/p-a9116dbe.entry.js +1 -0
- package/dist/dropi-ui/p-b36b819f.entry.js +1 -0
- package/dist/dropi-ui/p-c10cbb8d.entry.js +1 -0
- package/dist/dropi-ui/{p-42179ae4.entry.js → p-c2316d4d.entry.js} +1 -1
- package/dist/dropi-ui/{p-e44242e2.entry.js → p-cb5fd7a9.entry.js} +1 -1
- package/dist/dropi-ui/p-d1e1b716.entry.js +1 -0
- package/dist/dropi-ui/p-d5ecc394.entry.js +1 -0
- package/dist/dropi-ui/p-db6c9828.entry.js +1 -0
- package/dist/dropi-ui/{p-4d582d58.entry.js → p-e721127d.entry.js} +1 -1
- package/dist/dropi-ui/p-e8557da0.entry.js +1 -0
- package/dist/dropi-ui/p-ebfd4665.entry.js +1 -0
- package/dist/dropi-ui/p-f3cef35a.entry.js +1 -0
- package/dist/dropi-ui/p-f6a69c4e.entry.js +1 -0
- package/dist/dropi-ui/{p-65fa8558.entry.js → p-ff45e7c8.entry.js} +1 -1
- package/dist/esm/dropi-accordion.entry.js +1 -1
- package/dist/esm/dropi-alert.entry.js +56 -0
- package/dist/esm/dropi-avatars.entry.js +29 -0
- package/dist/esm/dropi-badge.entry.js +1 -1
- package/dist/esm/dropi-button.entry.js +2 -2
- package/dist/esm/dropi-card-section.entry.js +36 -0
- package/dist/esm/dropi-checkbox-selection-list.entry.js +69 -0
- package/dist/esm/dropi-checkbox.entry.js +2 -2
- package/dist/esm/dropi-chips.entry.js +28 -0
- package/dist/esm/dropi-dropdown.entry.js +56 -0
- package/dist/esm/dropi-empty-state.entry.js +1 -1
- package/dist/esm/dropi-favorite-button.entry.js +25 -0
- package/dist/esm/dropi-icon.entry.js +1 -1
- package/dist/esm/dropi-image-miniature.entry.js +42 -0
- package/dist/esm/dropi-image-overlay.entry.js +60 -0
- package/dist/esm/dropi-input.entry.js +5 -5
- package/dist/esm/dropi-logo.entry.js +25 -0
- package/dist/esm/dropi-lottie-loader.entry.js +25 -0
- package/dist/esm/dropi-otp-send-code.entry.js +90 -0
- package/dist/esm/dropi-paginator.entry.js +5 -3
- package/dist/esm/dropi-radio-button.entry.js +1 -1
- package/dist/esm/dropi-radio-selection-list.entry.js +54 -0
- package/dist/esm/dropi-read-more.entry.js +34 -0
- package/dist/esm/dropi-search.entry.js +108 -0
- package/dist/esm/dropi-select.entry.js +1 -1
- package/dist/esm/dropi-simple-stepper.entry.js +49 -0
- package/dist/esm/dropi-steps.entry.js +48 -0
- package/dist/esm/dropi-switch.entry.js +1 -1
- package/dist/esm/dropi-tabs.entry.js +1 -1
- package/dist/esm/dropi-tag.entry.js +1 -1
- package/dist/esm/dropi-text-area.entry.js +3 -3
- package/dist/esm/dropi-time-line.entry.js +32 -0
- package/dist/esm/dropi-toast.entry.js +1 -1
- package/dist/esm/dropi-tooltip.entry.js +1 -1
- package/dist/esm/dropi-ui.js +1 -1
- package/dist/esm/dropi-vertical-steps.entry.js +53 -0
- package/dist/esm/loader.js +1 -1
- package/dist/types/components/dropi-alert/dropi-alert.d.ts +35 -0
- package/dist/types/components/dropi-avatars/dropi-avatars.d.ts +17 -0
- package/dist/types/components/dropi-card-section/dropi-card-section.d.ts +22 -0
- package/dist/types/components/dropi-checkbox-selection-list/dropi-checkbox-selection-list.d.ts +37 -0
- package/dist/types/components/dropi-chips/dropi-chips.d.ts +23 -0
- package/dist/types/components/dropi-dropdown/dropi-dropdown.d.ts +28 -0
- package/dist/types/components/dropi-favorite-button/dropi-favorite-button.d.ts +14 -0
- package/dist/types/components/dropi-image-miniature/dropi-image-miniature.d.ts +23 -0
- package/dist/types/components/dropi-image-overlay/dropi-image-overlay.d.ts +26 -0
- package/dist/types/components/dropi-logo/dropi-logo.d.ts +14 -0
- package/dist/types/components/dropi-lottie-loader/dropi-lottie-loader.d.ts +15 -0
- package/dist/types/components/dropi-otp-send-code/dropi-otp-send-code.d.ts +33 -0
- package/dist/types/components/dropi-paginator/dropi-paginator.d.ts +2 -0
- package/dist/types/components/dropi-radio-selection-list/dropi-radio-selection-list.d.ts +34 -0
- package/dist/types/components/dropi-read-more/dropi-read-more.d.ts +17 -0
- package/dist/types/components/dropi-search/dropi-search.d.ts +51 -0
- package/dist/types/components/dropi-simple-stepper/dropi-simple-stepper.d.ts +20 -0
- package/dist/types/components/dropi-steps/dropi-steps.d.ts +21 -0
- package/dist/types/components/dropi-time-line/dropi-time-line.d.ts +18 -0
- package/dist/types/components/dropi-vertical-steps/dropi-vertical-steps.d.ts +24 -0
- package/dist/types/components.d.ts +1830 -3
- package/package.json +1 -1
- package/readme.md +189 -2
- package/dist/dropi-ui/p-082b7039.entry.js +0 -1
- package/dist/dropi-ui/p-eb7f9a57.entry.js +0 -1
- package/dist/dropi-ui/p-f283f41d.entry.js +0 -1
|
@@ -5,30 +5,52 @@
|
|
|
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 { AlertState, AlertType } from "./components/dropi-alert/dropi-alert";
|
|
9
|
+
import { AvatarType } from "./components/dropi-avatars/dropi-avatars";
|
|
8
10
|
import { BadgeState } from "./components/dropi-badge/dropi-badge";
|
|
9
11
|
import { ButtonSeverity, ButtonSize, ButtonState, ButtonType } from "./components/dropi-button/dropi-button";
|
|
12
|
+
import { CheckboxOption } from "./components/dropi-checkbox-selection-list/dropi-checkbox-selection-list";
|
|
13
|
+
import { ChipStyle, ChipType } from "./components/dropi-chips/dropi-chips";
|
|
14
|
+
import { DropdownOption } from "./components/dropi-dropdown/dropi-dropdown";
|
|
10
15
|
import { InputMode } from "./components/dropi-input/dropi-input";
|
|
11
16
|
import { ModalPosition, ModalSize } from "./components/dropi-modal/dropi-modal";
|
|
12
17
|
import { Event } from "./stencil-public-runtime";
|
|
18
|
+
import { RadioOption } from "./components/dropi-radio-selection-list/dropi-radio-selection-list";
|
|
19
|
+
import { SearchOption } from "./components/dropi-search/dropi-search";
|
|
13
20
|
import { SelectOption, SelectOptionGroup } from "./components/dropi-select/select.types";
|
|
21
|
+
import { FlowMode, StepperType } from "./components/dropi-simple-stepper/dropi-simple-stepper";
|
|
14
22
|
import { SkeletonVariant } from "./components/dropi-skeleton/dropi-skeleton";
|
|
23
|
+
import { StepLabel } from "./components/dropi-steps/dropi-steps";
|
|
15
24
|
import { TabItem } from "./components/dropi-tabs/dropi-tabs";
|
|
16
25
|
import { TagState, TagType } from "./components/dropi-tag/dropi-tag";
|
|
17
26
|
import { ResizeMode } from "./components/dropi-text-area/dropi-text-area";
|
|
27
|
+
import { TimelineStep } from "./components/dropi-time-line/dropi-time-line";
|
|
18
28
|
import { ToastMessage } from "./components/dropi-toast/dropi-toast";
|
|
19
29
|
import { TooltipPosition } from "./components/dropi-tooltip/dropi-tooltip";
|
|
30
|
+
import { VerticalStep } from "./components/dropi-vertical-steps/dropi-vertical-steps";
|
|
31
|
+
export { AlertState, AlertType } from "./components/dropi-alert/dropi-alert";
|
|
32
|
+
export { AvatarType } from "./components/dropi-avatars/dropi-avatars";
|
|
20
33
|
export { BadgeState } from "./components/dropi-badge/dropi-badge";
|
|
21
34
|
export { ButtonSeverity, ButtonSize, ButtonState, ButtonType } from "./components/dropi-button/dropi-button";
|
|
35
|
+
export { CheckboxOption } from "./components/dropi-checkbox-selection-list/dropi-checkbox-selection-list";
|
|
36
|
+
export { ChipStyle, ChipType } from "./components/dropi-chips/dropi-chips";
|
|
37
|
+
export { DropdownOption } from "./components/dropi-dropdown/dropi-dropdown";
|
|
22
38
|
export { InputMode } from "./components/dropi-input/dropi-input";
|
|
23
39
|
export { ModalPosition, ModalSize } from "./components/dropi-modal/dropi-modal";
|
|
24
40
|
export { Event } from "./stencil-public-runtime";
|
|
41
|
+
export { RadioOption } from "./components/dropi-radio-selection-list/dropi-radio-selection-list";
|
|
42
|
+
export { SearchOption } from "./components/dropi-search/dropi-search";
|
|
25
43
|
export { SelectOption, SelectOptionGroup } from "./components/dropi-select/select.types";
|
|
44
|
+
export { FlowMode, StepperType } from "./components/dropi-simple-stepper/dropi-simple-stepper";
|
|
26
45
|
export { SkeletonVariant } from "./components/dropi-skeleton/dropi-skeleton";
|
|
46
|
+
export { StepLabel } from "./components/dropi-steps/dropi-steps";
|
|
27
47
|
export { TabItem } from "./components/dropi-tabs/dropi-tabs";
|
|
28
48
|
export { TagState, TagType } from "./components/dropi-tag/dropi-tag";
|
|
29
49
|
export { ResizeMode } from "./components/dropi-text-area/dropi-text-area";
|
|
50
|
+
export { TimelineStep } from "./components/dropi-time-line/dropi-time-line";
|
|
30
51
|
export { ToastMessage } from "./components/dropi-toast/dropi-toast";
|
|
31
52
|
export { TooltipPosition } from "./components/dropi-tooltip/dropi-tooltip";
|
|
53
|
+
export { VerticalStep } from "./components/dropi-vertical-steps/dropi-vertical-steps";
|
|
32
54
|
export namespace Components {
|
|
33
55
|
/**
|
|
34
56
|
* @component dropi-accordion
|
|
@@ -59,6 +81,84 @@ export namespace Components {
|
|
|
59
81
|
*/
|
|
60
82
|
"preIcon": string;
|
|
61
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* @component dropi-alert
|
|
86
|
+
* Alert banner with state variants (success/error/warning/info),
|
|
87
|
+
* optional action button, anchor link, and dismissable close icon.
|
|
88
|
+
*/
|
|
89
|
+
interface DropiAlert {
|
|
90
|
+
/**
|
|
91
|
+
* Anchor/link label
|
|
92
|
+
* @default ''
|
|
93
|
+
*/
|
|
94
|
+
"anchorText": string;
|
|
95
|
+
/**
|
|
96
|
+
* Anchor href
|
|
97
|
+
* @default ''
|
|
98
|
+
*/
|
|
99
|
+
"anchorUrl": string;
|
|
100
|
+
/**
|
|
101
|
+
* Action button label
|
|
102
|
+
* @default ''
|
|
103
|
+
*/
|
|
104
|
+
"buttonText": string;
|
|
105
|
+
/**
|
|
106
|
+
* Show the × close button
|
|
107
|
+
* @default false
|
|
108
|
+
*/
|
|
109
|
+
"dismissable": boolean;
|
|
110
|
+
/**
|
|
111
|
+
* Alert message text (supports plain text)
|
|
112
|
+
* @default ''
|
|
113
|
+
*/
|
|
114
|
+
"message": string;
|
|
115
|
+
/**
|
|
116
|
+
* Whether the alert is visible
|
|
117
|
+
* @default true
|
|
118
|
+
*/
|
|
119
|
+
"showAlert": boolean;
|
|
120
|
+
/**
|
|
121
|
+
* Show action button
|
|
122
|
+
* @default false
|
|
123
|
+
*/
|
|
124
|
+
"showButton": boolean;
|
|
125
|
+
/**
|
|
126
|
+
* Semantic state
|
|
127
|
+
* @default 'info'
|
|
128
|
+
*/
|
|
129
|
+
"state": AlertState;
|
|
130
|
+
/**
|
|
131
|
+
* Layout type: default (inline) | flag (accented left border)
|
|
132
|
+
* @default 'default'
|
|
133
|
+
*/
|
|
134
|
+
"type": AlertType;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* @component dropi-avatars
|
|
138
|
+
* Avatar component with image, initials fallback, and type-based size variants.
|
|
139
|
+
*/
|
|
140
|
+
interface DropiAvatars {
|
|
141
|
+
/**
|
|
142
|
+
* Alt text for the image
|
|
143
|
+
* @default 'avatar'
|
|
144
|
+
*/
|
|
145
|
+
"alt": string;
|
|
146
|
+
/**
|
|
147
|
+
* Image URL
|
|
148
|
+
* @default ''
|
|
149
|
+
*/
|
|
150
|
+
"image": string;
|
|
151
|
+
/**
|
|
152
|
+
* Initials to show when no image (max 2 chars)
|
|
153
|
+
* @default ''
|
|
154
|
+
*/
|
|
155
|
+
"initials": string;
|
|
156
|
+
/**
|
|
157
|
+
* Size/context variant
|
|
158
|
+
* @default 'users'
|
|
159
|
+
*/
|
|
160
|
+
"type": AvatarType;
|
|
161
|
+
}
|
|
62
162
|
/**
|
|
63
163
|
* @component dropi-badge
|
|
64
164
|
* Status badge for user/account states.
|
|
@@ -112,6 +212,37 @@ export namespace Components {
|
|
|
112
212
|
*/
|
|
113
213
|
"type": ButtonType;
|
|
114
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* @component dropi-card-section
|
|
217
|
+
* Section card with title, description and a switch or dropdown control.
|
|
218
|
+
*/
|
|
219
|
+
interface DropiCardSection {
|
|
220
|
+
/**
|
|
221
|
+
* Section description
|
|
222
|
+
* @default ''
|
|
223
|
+
*/
|
|
224
|
+
"description": string;
|
|
225
|
+
/**
|
|
226
|
+
* Switch checked state
|
|
227
|
+
* @default false
|
|
228
|
+
*/
|
|
229
|
+
"isChecked": boolean;
|
|
230
|
+
/**
|
|
231
|
+
* Section title
|
|
232
|
+
* @default ''
|
|
233
|
+
*/
|
|
234
|
+
"sectionTitle": string;
|
|
235
|
+
/**
|
|
236
|
+
* Title size variant
|
|
237
|
+
* @default 'medium'
|
|
238
|
+
*/
|
|
239
|
+
"type": 'medium' | 'important';
|
|
240
|
+
/**
|
|
241
|
+
* Control type on the right
|
|
242
|
+
* @default 'switch'
|
|
243
|
+
*/
|
|
244
|
+
"typeElement": 'dropdown' | 'switch';
|
|
245
|
+
}
|
|
115
246
|
/**
|
|
116
247
|
* @component dropi-checkbox
|
|
117
248
|
* A styled checkbox that emits change events.
|
|
@@ -129,6 +260,101 @@ export namespace Components {
|
|
|
129
260
|
*/
|
|
130
261
|
"disabled": boolean;
|
|
131
262
|
}
|
|
263
|
+
/**
|
|
264
|
+
* @component dropi-checkbox-selection-list
|
|
265
|
+
* Searchable list of checkbox options with multi-select support.
|
|
266
|
+
*/
|
|
267
|
+
interface DropiCheckboxSelectionList {
|
|
268
|
+
/**
|
|
269
|
+
* Search placeholder
|
|
270
|
+
* @default 'Buscar...'
|
|
271
|
+
*/
|
|
272
|
+
"filterPlaceholder": string;
|
|
273
|
+
/**
|
|
274
|
+
* Allow multiple selection
|
|
275
|
+
* @default true
|
|
276
|
+
*/
|
|
277
|
+
"multiSelect": boolean;
|
|
278
|
+
/**
|
|
279
|
+
* Empty state message
|
|
280
|
+
* @default 'Sin resultados'
|
|
281
|
+
*/
|
|
282
|
+
"notFoundMessage": string;
|
|
283
|
+
/**
|
|
284
|
+
* Options array or JSON string
|
|
285
|
+
* @default []
|
|
286
|
+
*/
|
|
287
|
+
"options": CheckboxOption[] | string;
|
|
288
|
+
/**
|
|
289
|
+
* Show search filter
|
|
290
|
+
* @default true
|
|
291
|
+
*/
|
|
292
|
+
"showFilter": boolean;
|
|
293
|
+
/**
|
|
294
|
+
* Show "no results" message
|
|
295
|
+
* @default true
|
|
296
|
+
*/
|
|
297
|
+
"showNotFound": boolean;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* @component dropi-chips
|
|
301
|
+
* Chip/tag-like element with optional icon, avatar, and close button.
|
|
302
|
+
* Use <slot> for the chip label text.
|
|
303
|
+
*/
|
|
304
|
+
interface DropiChips {
|
|
305
|
+
/**
|
|
306
|
+
* Visual style
|
|
307
|
+
* @default 'filters'
|
|
308
|
+
*/
|
|
309
|
+
"chipStyle": ChipStyle;
|
|
310
|
+
/**
|
|
311
|
+
* Icon name (when type = 'icon')
|
|
312
|
+
* @default ''
|
|
313
|
+
*/
|
|
314
|
+
"icon": string;
|
|
315
|
+
/**
|
|
316
|
+
* Show the close/remove icon
|
|
317
|
+
* @default true
|
|
318
|
+
*/
|
|
319
|
+
"showIcon": boolean;
|
|
320
|
+
/**
|
|
321
|
+
* Content type
|
|
322
|
+
* @default 'text'
|
|
323
|
+
*/
|
|
324
|
+
"type": ChipType;
|
|
325
|
+
/**
|
|
326
|
+
* Avatar image URL (when type = 'avatar')
|
|
327
|
+
* @default ''
|
|
328
|
+
*/
|
|
329
|
+
"urlImg": string;
|
|
330
|
+
}
|
|
331
|
+
/**
|
|
332
|
+
* @component dropi-dropdown
|
|
333
|
+
* Scrollable list with checkboxes for multi-selection.
|
|
334
|
+
* Pass options as an array (JS) or JSON string.
|
|
335
|
+
*/
|
|
336
|
+
interface DropiDropdown {
|
|
337
|
+
/**
|
|
338
|
+
* Max height of the list container (CSS value)
|
|
339
|
+
* @default '300px'
|
|
340
|
+
*/
|
|
341
|
+
"height": string;
|
|
342
|
+
/**
|
|
343
|
+
* Property name to use as the option image/avatar URL
|
|
344
|
+
* @default ''
|
|
345
|
+
*/
|
|
346
|
+
"imageModel": string;
|
|
347
|
+
/**
|
|
348
|
+
* Options array or JSON string
|
|
349
|
+
* @default []
|
|
350
|
+
*/
|
|
351
|
+
"options": DropdownOption[] | string;
|
|
352
|
+
/**
|
|
353
|
+
* Property name to display as the option label
|
|
354
|
+
* @default 'name'
|
|
355
|
+
*/
|
|
356
|
+
"valueModel": string;
|
|
357
|
+
}
|
|
132
358
|
/**
|
|
133
359
|
* @component dropi-empty-state
|
|
134
360
|
* Empty state illustration with title, description and optional action button.
|
|
@@ -165,6 +391,17 @@ export namespace Components {
|
|
|
165
391
|
*/
|
|
166
392
|
"secondaryLabel": string;
|
|
167
393
|
}
|
|
394
|
+
/**
|
|
395
|
+
* @component dropi-favorite-button
|
|
396
|
+
* Heart toggle button for marking items as favorite.
|
|
397
|
+
*/
|
|
398
|
+
interface DropiFavoriteButton {
|
|
399
|
+
/**
|
|
400
|
+
* Whether the item is currently marked as favorite
|
|
401
|
+
* @default false
|
|
402
|
+
*/
|
|
403
|
+
"isFavorite": boolean;
|
|
404
|
+
}
|
|
168
405
|
/**
|
|
169
406
|
* @component dropi-icon
|
|
170
407
|
* Renders an SVG icon from the Dropi sprite sheet.
|
|
@@ -192,6 +429,53 @@ export namespace Components {
|
|
|
192
429
|
*/
|
|
193
430
|
"width": string;
|
|
194
431
|
}
|
|
432
|
+
/**
|
|
433
|
+
* @component dropi-image-miniature
|
|
434
|
+
* Grid of image thumbnails with zoom-on-hover overlay trigger.
|
|
435
|
+
*/
|
|
436
|
+
interface DropiImageMiniature {
|
|
437
|
+
/**
|
|
438
|
+
* Thumbnail height (CSS value)
|
|
439
|
+
* @default '88px'
|
|
440
|
+
*/
|
|
441
|
+
"height": string;
|
|
442
|
+
/**
|
|
443
|
+
* Array of image URLs. Pass as JSON string or array
|
|
444
|
+
* @default []
|
|
445
|
+
*/
|
|
446
|
+
"images": string[] | string;
|
|
447
|
+
/**
|
|
448
|
+
* Optional label above the grid
|
|
449
|
+
* @default ''
|
|
450
|
+
*/
|
|
451
|
+
"label": string;
|
|
452
|
+
/**
|
|
453
|
+
* Thumbnail width (CSS value)
|
|
454
|
+
* @default '88px'
|
|
455
|
+
*/
|
|
456
|
+
"width": string;
|
|
457
|
+
}
|
|
458
|
+
/**
|
|
459
|
+
* @component dropi-image-overlay
|
|
460
|
+
* Full-screen image lightbox with prev/next navigation and thumbnails.
|
|
461
|
+
*/
|
|
462
|
+
interface DropiImageOverlay {
|
|
463
|
+
/**
|
|
464
|
+
* Initially active image index
|
|
465
|
+
* @default 0
|
|
466
|
+
*/
|
|
467
|
+
"activeIndex": number;
|
|
468
|
+
/**
|
|
469
|
+
* Images array or JSON string
|
|
470
|
+
* @default []
|
|
471
|
+
*/
|
|
472
|
+
"images": string[] | string;
|
|
473
|
+
/**
|
|
474
|
+
* Whether the overlay is visible
|
|
475
|
+
* @default false
|
|
476
|
+
*/
|
|
477
|
+
"visible": boolean;
|
|
478
|
+
}
|
|
195
479
|
/**
|
|
196
480
|
* @component dropi-input
|
|
197
481
|
* Text input with floating label, validation states, password toggle,
|
|
@@ -316,6 +600,53 @@ export namespace Components {
|
|
|
316
600
|
*/
|
|
317
601
|
"value": string;
|
|
318
602
|
}
|
|
603
|
+
/**
|
|
604
|
+
* @component dropi-logo
|
|
605
|
+
* Displays the Dropi brand logo with size variants.
|
|
606
|
+
*/
|
|
607
|
+
interface DropiLogo {
|
|
608
|
+
/**
|
|
609
|
+
* Size variant
|
|
610
|
+
* @default 'large'
|
|
611
|
+
*/
|
|
612
|
+
"size": 'small' | 'large';
|
|
613
|
+
/**
|
|
614
|
+
* Theme (reserved for future use)
|
|
615
|
+
* @default 'light'
|
|
616
|
+
*/
|
|
617
|
+
"theme": 'dark' | 'light';
|
|
618
|
+
/**
|
|
619
|
+
* Logo image URL
|
|
620
|
+
* @default ''
|
|
621
|
+
*/
|
|
622
|
+
"urlLogo": string;
|
|
623
|
+
}
|
|
624
|
+
/**
|
|
625
|
+
* @component dropi-lottie-loader
|
|
626
|
+
* Full-screen or inline loading overlay with a Lottie animation.
|
|
627
|
+
*/
|
|
628
|
+
interface DropiLottieLoader {
|
|
629
|
+
/**
|
|
630
|
+
* Title shown below the animation
|
|
631
|
+
* @default ''
|
|
632
|
+
*/
|
|
633
|
+
"loaderTitle": string;
|
|
634
|
+
/**
|
|
635
|
+
* Path to the Lottie JSON animation file
|
|
636
|
+
* @default ''
|
|
637
|
+
*/
|
|
638
|
+
"loadingAnimation": string;
|
|
639
|
+
/**
|
|
640
|
+
* Descriptive message below the title
|
|
641
|
+
* @default ''
|
|
642
|
+
*/
|
|
643
|
+
"message": string;
|
|
644
|
+
/**
|
|
645
|
+
* Show or hide the loader
|
|
646
|
+
* @default false
|
|
647
|
+
*/
|
|
648
|
+
"visible": boolean;
|
|
649
|
+
}
|
|
319
650
|
/**
|
|
320
651
|
* @component dropi-modal
|
|
321
652
|
* Modal/dialog with backdrop, close button, and header/content/footer slots.
|
|
@@ -361,6 +692,32 @@ export namespace Components {
|
|
|
361
692
|
*/
|
|
362
693
|
"visible": boolean;
|
|
363
694
|
}
|
|
695
|
+
/**
|
|
696
|
+
* @component dropi-otp-send-code
|
|
697
|
+
* 6-digit OTP input with countdown timer and resend capability.
|
|
698
|
+
*/
|
|
699
|
+
interface DropiOtpSendCode {
|
|
700
|
+
/**
|
|
701
|
+
* Delivery method label
|
|
702
|
+
* @default 'email'
|
|
703
|
+
*/
|
|
704
|
+
"engine": 'email' | 'sms' | '2fa';
|
|
705
|
+
/**
|
|
706
|
+
* Error message to display
|
|
707
|
+
* @default ''
|
|
708
|
+
*/
|
|
709
|
+
"errorMessage": string;
|
|
710
|
+
/**
|
|
711
|
+
* Contact info (email/phone to show in label)
|
|
712
|
+
* @default ''
|
|
713
|
+
*/
|
|
714
|
+
"labelContact": string;
|
|
715
|
+
/**
|
|
716
|
+
* Show contact label
|
|
717
|
+
* @default true
|
|
718
|
+
*/
|
|
719
|
+
"showLabelContact": boolean;
|
|
720
|
+
}
|
|
364
721
|
/**
|
|
365
722
|
* @component dropi-paginator
|
|
366
723
|
* Pagination control with page numbers, prev/next buttons and items-per-page selector.
|
|
@@ -371,6 +728,11 @@ export namespace Components {
|
|
|
371
728
|
* @default 5
|
|
372
729
|
*/
|
|
373
730
|
"maxPages": number;
|
|
731
|
+
/**
|
|
732
|
+
* Hide "Anterior"/"Siguiente" text labels, show only arrows
|
|
733
|
+
* @default false
|
|
734
|
+
*/
|
|
735
|
+
"noLabels": boolean;
|
|
374
736
|
/**
|
|
375
737
|
* Current page (1-based)
|
|
376
738
|
* @default 1
|
|
@@ -428,6 +790,109 @@ export namespace Components {
|
|
|
428
790
|
*/
|
|
429
791
|
"resetTrigger": boolean;
|
|
430
792
|
}
|
|
793
|
+
/**
|
|
794
|
+
* @component dropi-radio-selection-list
|
|
795
|
+
* List of radio button options with optional search filter.
|
|
796
|
+
*/
|
|
797
|
+
interface DropiRadioSelectionList {
|
|
798
|
+
/**
|
|
799
|
+
* Search placeholder
|
|
800
|
+
* @default 'Buscar...'
|
|
801
|
+
*/
|
|
802
|
+
"filterPlaceholder": string;
|
|
803
|
+
/**
|
|
804
|
+
* Options array or JSON string
|
|
805
|
+
* @default []
|
|
806
|
+
*/
|
|
807
|
+
"options": RadioOption[] | string;
|
|
808
|
+
/**
|
|
809
|
+
* Selected option id
|
|
810
|
+
* @default ''
|
|
811
|
+
*/
|
|
812
|
+
"selectedOption": string | number;
|
|
813
|
+
/**
|
|
814
|
+
* Show search box
|
|
815
|
+
* @default false
|
|
816
|
+
*/
|
|
817
|
+
"showFilter": boolean;
|
|
818
|
+
/**
|
|
819
|
+
* Show description below name
|
|
820
|
+
* @default 'default'
|
|
821
|
+
*/
|
|
822
|
+
"typeLayout": 'description' | 'default';
|
|
823
|
+
}
|
|
824
|
+
/**
|
|
825
|
+
* @component dropi-read-more
|
|
826
|
+
* Truncates text to a word limit with an expandable "Ver más / Ver menos" toggle.
|
|
827
|
+
*/
|
|
828
|
+
interface DropiReadMore {
|
|
829
|
+
/**
|
|
830
|
+
* Maximum number of words before truncating
|
|
831
|
+
* @default 20
|
|
832
|
+
*/
|
|
833
|
+
"maxWords": number;
|
|
834
|
+
/**
|
|
835
|
+
* Allow collapsing back after expanding
|
|
836
|
+
* @default true
|
|
837
|
+
*/
|
|
838
|
+
"showSeeLess": boolean;
|
|
839
|
+
/**
|
|
840
|
+
* Full text to display
|
|
841
|
+
* @default ''
|
|
842
|
+
*/
|
|
843
|
+
"text": string;
|
|
844
|
+
}
|
|
845
|
+
/**
|
|
846
|
+
* @component dropi-search
|
|
847
|
+
* Text search input with optional dropdown results list.
|
|
848
|
+
* Supports single and multi-select, keyboard navigation, and clear button.
|
|
849
|
+
*/
|
|
850
|
+
interface DropiSearch {
|
|
851
|
+
/**
|
|
852
|
+
* Max height of dropdown (CSS value)
|
|
853
|
+
* @default '240px'
|
|
854
|
+
*/
|
|
855
|
+
"dropdownHeight": string;
|
|
856
|
+
/**
|
|
857
|
+
* Label shown above the input
|
|
858
|
+
* @default ''
|
|
859
|
+
*/
|
|
860
|
+
"label": string;
|
|
861
|
+
/**
|
|
862
|
+
* Property name to display and search
|
|
863
|
+
* @default 'name'
|
|
864
|
+
*/
|
|
865
|
+
"labelKey": string;
|
|
866
|
+
/**
|
|
867
|
+
* Max character length
|
|
868
|
+
*/
|
|
869
|
+
"maxlength": number;
|
|
870
|
+
/**
|
|
871
|
+
* Allow multiple selection
|
|
872
|
+
* @default false
|
|
873
|
+
*/
|
|
874
|
+
"multiSelect": boolean;
|
|
875
|
+
/**
|
|
876
|
+
* Data source to filter. Pass as array or JSON string
|
|
877
|
+
* @default []
|
|
878
|
+
*/
|
|
879
|
+
"options": SearchOption[] | string;
|
|
880
|
+
/**
|
|
881
|
+
* Placeholder text
|
|
882
|
+
* @default 'Buscar...'
|
|
883
|
+
*/
|
|
884
|
+
"placeholder": string;
|
|
885
|
+
/**
|
|
886
|
+
* Show clear (×) button when input has text
|
|
887
|
+
* @default true
|
|
888
|
+
*/
|
|
889
|
+
"showClear": boolean;
|
|
890
|
+
/**
|
|
891
|
+
* Controlled input value
|
|
892
|
+
* @default ''
|
|
893
|
+
*/
|
|
894
|
+
"value": string;
|
|
895
|
+
}
|
|
431
896
|
/**
|
|
432
897
|
* @component dropi-select
|
|
433
898
|
* Feature-rich select with support for:
|
|
@@ -547,6 +1012,37 @@ export namespace Components {
|
|
|
547
1012
|
*/
|
|
548
1013
|
"value": SelectOption | null;
|
|
549
1014
|
}
|
|
1015
|
+
/**
|
|
1016
|
+
* @component dropi-simple-stepper
|
|
1017
|
+
* Compact horizontal stepper using dots or numbers.
|
|
1018
|
+
*/
|
|
1019
|
+
interface DropiSimpleStepper {
|
|
1020
|
+
/**
|
|
1021
|
+
* Current active step (1-based)
|
|
1022
|
+
* @default 1
|
|
1023
|
+
*/
|
|
1024
|
+
"currentStep": number;
|
|
1025
|
+
/**
|
|
1026
|
+
* Flow mode (visual only)
|
|
1027
|
+
* @default 'Sequential'
|
|
1028
|
+
*/
|
|
1029
|
+
"flowMode": FlowMode;
|
|
1030
|
+
/**
|
|
1031
|
+
* Labels shown below each step. Pass as JSON string or array
|
|
1032
|
+
* @default []
|
|
1033
|
+
*/
|
|
1034
|
+
"labelStepper": string[] | string;
|
|
1035
|
+
/**
|
|
1036
|
+
* Total steps
|
|
1037
|
+
* @default 3
|
|
1038
|
+
*/
|
|
1039
|
+
"stepsCount": number;
|
|
1040
|
+
/**
|
|
1041
|
+
* Circle content: 'point' (dot) | 'number'
|
|
1042
|
+
* @default 'number'
|
|
1043
|
+
*/
|
|
1044
|
+
"typeStep": StepperType;
|
|
1045
|
+
}
|
|
550
1046
|
/**
|
|
551
1047
|
* @component dropi-skeleton
|
|
552
1048
|
* Loading placeholder with shimmer animation.
|
|
@@ -578,6 +1074,32 @@ export namespace Components {
|
|
|
578
1074
|
*/
|
|
579
1075
|
"width": string;
|
|
580
1076
|
}
|
|
1077
|
+
/**
|
|
1078
|
+
* @component dropi-steps
|
|
1079
|
+
* Horizontal stepper showing step progress with number/title/description.
|
|
1080
|
+
*/
|
|
1081
|
+
interface DropiSteps {
|
|
1082
|
+
/**
|
|
1083
|
+
* Active/current step index (1-based)
|
|
1084
|
+
* @default 1
|
|
1085
|
+
*/
|
|
1086
|
+
"currentStep": number;
|
|
1087
|
+
/**
|
|
1088
|
+
* Show step number inside the circle
|
|
1089
|
+
* @default true
|
|
1090
|
+
*/
|
|
1091
|
+
"showNumberOfStep": boolean;
|
|
1092
|
+
/**
|
|
1093
|
+
* Labels for each step. Pass as JSON string or array
|
|
1094
|
+
* @default []
|
|
1095
|
+
*/
|
|
1096
|
+
"stepLabels": StepLabel[] | string;
|
|
1097
|
+
/**
|
|
1098
|
+
* Total number of steps
|
|
1099
|
+
* @default 3
|
|
1100
|
+
*/
|
|
1101
|
+
"stepsCount": number;
|
|
1102
|
+
}
|
|
581
1103
|
/**
|
|
582
1104
|
* @component dropi-switch
|
|
583
1105
|
* Toggle switch component. Emits dropiChange on toggle.
|
|
@@ -726,6 +1248,17 @@ export namespace Components {
|
|
|
726
1248
|
*/
|
|
727
1249
|
"value": string;
|
|
728
1250
|
}
|
|
1251
|
+
/**
|
|
1252
|
+
* @component dropi-time-line
|
|
1253
|
+
* Vertical timeline showing ordered steps with status indicators.
|
|
1254
|
+
*/
|
|
1255
|
+
interface DropiTimeLine {
|
|
1256
|
+
/**
|
|
1257
|
+
* Array of timeline steps. Pass as JSON string or array
|
|
1258
|
+
* @default []
|
|
1259
|
+
*/
|
|
1260
|
+
"steps": TimelineStep[] | string;
|
|
1261
|
+
}
|
|
729
1262
|
/**
|
|
730
1263
|
* @component dropi-toast
|
|
731
1264
|
* Global toast notification stack. Place once in the app root, call show() from JS.
|
|
@@ -781,23 +1314,81 @@ export namespace Components {
|
|
|
781
1314
|
*/
|
|
782
1315
|
"text": string;
|
|
783
1316
|
}
|
|
1317
|
+
/**
|
|
1318
|
+
* @component dropi-vertical-steps
|
|
1319
|
+
* Vertical step-by-step progress indicator with optional click navigation.
|
|
1320
|
+
*/
|
|
1321
|
+
interface DropiVerticalSteps {
|
|
1322
|
+
/**
|
|
1323
|
+
* Allow clicking completed steps to navigate back
|
|
1324
|
+
* @default false
|
|
1325
|
+
*/
|
|
1326
|
+
"clickable": boolean;
|
|
1327
|
+
/**
|
|
1328
|
+
* Currently active step (1-based)
|
|
1329
|
+
* @default 1
|
|
1330
|
+
*/
|
|
1331
|
+
"currentStep": number;
|
|
1332
|
+
/**
|
|
1333
|
+
* Show check icon inside completed step circles
|
|
1334
|
+
* @default true
|
|
1335
|
+
*/
|
|
1336
|
+
"showCheckIcon": boolean;
|
|
1337
|
+
/**
|
|
1338
|
+
* Array of steps. Pass as JSON string or array
|
|
1339
|
+
* @default []
|
|
1340
|
+
*/
|
|
1341
|
+
"steps": VerticalStep[] | string;
|
|
1342
|
+
}
|
|
784
1343
|
}
|
|
785
1344
|
export interface DropiAccordionCustomEvent<T> extends CustomEvent<T> {
|
|
786
1345
|
detail: T;
|
|
787
1346
|
target: HTMLDropiAccordionElement;
|
|
788
1347
|
}
|
|
1348
|
+
export interface DropiAlertCustomEvent<T> extends CustomEvent<T> {
|
|
1349
|
+
detail: T;
|
|
1350
|
+
target: HTMLDropiAlertElement;
|
|
1351
|
+
}
|
|
789
1352
|
export interface DropiButtonCustomEvent<T> extends CustomEvent<T> {
|
|
790
1353
|
detail: T;
|
|
791
1354
|
target: HTMLDropiButtonElement;
|
|
792
1355
|
}
|
|
1356
|
+
export interface DropiCardSectionCustomEvent<T> extends CustomEvent<T> {
|
|
1357
|
+
detail: T;
|
|
1358
|
+
target: HTMLDropiCardSectionElement;
|
|
1359
|
+
}
|
|
793
1360
|
export interface DropiCheckboxCustomEvent<T> extends CustomEvent<T> {
|
|
794
1361
|
detail: T;
|
|
795
1362
|
target: HTMLDropiCheckboxElement;
|
|
796
1363
|
}
|
|
1364
|
+
export interface DropiCheckboxSelectionListCustomEvent<T> extends CustomEvent<T> {
|
|
1365
|
+
detail: T;
|
|
1366
|
+
target: HTMLDropiCheckboxSelectionListElement;
|
|
1367
|
+
}
|
|
1368
|
+
export interface DropiChipsCustomEvent<T> extends CustomEvent<T> {
|
|
1369
|
+
detail: T;
|
|
1370
|
+
target: HTMLDropiChipsElement;
|
|
1371
|
+
}
|
|
1372
|
+
export interface DropiDropdownCustomEvent<T> extends CustomEvent<T> {
|
|
1373
|
+
detail: T;
|
|
1374
|
+
target: HTMLDropiDropdownElement;
|
|
1375
|
+
}
|
|
797
1376
|
export interface DropiEmptyStateCustomEvent<T> extends CustomEvent<T> {
|
|
798
1377
|
detail: T;
|
|
799
1378
|
target: HTMLDropiEmptyStateElement;
|
|
800
1379
|
}
|
|
1380
|
+
export interface DropiFavoriteButtonCustomEvent<T> extends CustomEvent<T> {
|
|
1381
|
+
detail: T;
|
|
1382
|
+
target: HTMLDropiFavoriteButtonElement;
|
|
1383
|
+
}
|
|
1384
|
+
export interface DropiImageMiniatureCustomEvent<T> extends CustomEvent<T> {
|
|
1385
|
+
detail: T;
|
|
1386
|
+
target: HTMLDropiImageMiniatureElement;
|
|
1387
|
+
}
|
|
1388
|
+
export interface DropiImageOverlayCustomEvent<T> extends CustomEvent<T> {
|
|
1389
|
+
detail: T;
|
|
1390
|
+
target: HTMLDropiImageOverlayElement;
|
|
1391
|
+
}
|
|
801
1392
|
export interface DropiInputCustomEvent<T> extends CustomEvent<T> {
|
|
802
1393
|
detail: T;
|
|
803
1394
|
target: HTMLDropiInputElement;
|
|
@@ -806,6 +1397,10 @@ export interface DropiModalCustomEvent<T> extends CustomEvent<T> {
|
|
|
806
1397
|
detail: T;
|
|
807
1398
|
target: HTMLDropiModalElement;
|
|
808
1399
|
}
|
|
1400
|
+
export interface DropiOtpSendCodeCustomEvent<T> extends CustomEvent<T> {
|
|
1401
|
+
detail: T;
|
|
1402
|
+
target: HTMLDropiOtpSendCodeElement;
|
|
1403
|
+
}
|
|
809
1404
|
export interface DropiPaginatorCustomEvent<T> extends CustomEvent<T> {
|
|
810
1405
|
detail: T;
|
|
811
1406
|
target: HTMLDropiPaginatorElement;
|
|
@@ -814,6 +1409,14 @@ export interface DropiRadioButtonCustomEvent<T> extends CustomEvent<T> {
|
|
|
814
1409
|
detail: T;
|
|
815
1410
|
target: HTMLDropiRadioButtonElement;
|
|
816
1411
|
}
|
|
1412
|
+
export interface DropiRadioSelectionListCustomEvent<T> extends CustomEvent<T> {
|
|
1413
|
+
detail: T;
|
|
1414
|
+
target: HTMLDropiRadioSelectionListElement;
|
|
1415
|
+
}
|
|
1416
|
+
export interface DropiSearchCustomEvent<T> extends CustomEvent<T> {
|
|
1417
|
+
detail: T;
|
|
1418
|
+
target: HTMLDropiSearchElement;
|
|
1419
|
+
}
|
|
817
1420
|
export interface DropiSelectCustomEvent<T> extends CustomEvent<T> {
|
|
818
1421
|
detail: T;
|
|
819
1422
|
target: HTMLDropiSelectElement;
|
|
@@ -830,6 +1433,10 @@ export interface DropiTextAreaCustomEvent<T> extends CustomEvent<T> {
|
|
|
830
1433
|
detail: T;
|
|
831
1434
|
target: HTMLDropiTextAreaElement;
|
|
832
1435
|
}
|
|
1436
|
+
export interface DropiVerticalStepsCustomEvent<T> extends CustomEvent<T> {
|
|
1437
|
+
detail: T;
|
|
1438
|
+
target: HTMLDropiVerticalStepsElement;
|
|
1439
|
+
}
|
|
833
1440
|
declare global {
|
|
834
1441
|
interface HTMLDropiAccordionElementEventMap {
|
|
835
1442
|
"dropiToggle": boolean;
|
|
@@ -855,6 +1462,40 @@ declare global {
|
|
|
855
1462
|
prototype: HTMLDropiAccordionElement;
|
|
856
1463
|
new (): HTMLDropiAccordionElement;
|
|
857
1464
|
};
|
|
1465
|
+
interface HTMLDropiAlertElementEventMap {
|
|
1466
|
+
"dropiClose": void;
|
|
1467
|
+
"dropiButtonClick": void;
|
|
1468
|
+
"dropiLinkClick": void;
|
|
1469
|
+
}
|
|
1470
|
+
/**
|
|
1471
|
+
* @component dropi-alert
|
|
1472
|
+
* Alert banner with state variants (success/error/warning/info),
|
|
1473
|
+
* optional action button, anchor link, and dismissable close icon.
|
|
1474
|
+
*/
|
|
1475
|
+
interface HTMLDropiAlertElement extends Components.DropiAlert, HTMLStencilElement {
|
|
1476
|
+
addEventListener<K extends keyof HTMLDropiAlertElementEventMap>(type: K, listener: (this: HTMLDropiAlertElement, ev: DropiAlertCustomEvent<HTMLDropiAlertElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1477
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1478
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1479
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1480
|
+
removeEventListener<K extends keyof HTMLDropiAlertElementEventMap>(type: K, listener: (this: HTMLDropiAlertElement, ev: DropiAlertCustomEvent<HTMLDropiAlertElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1481
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1482
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1483
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1484
|
+
}
|
|
1485
|
+
var HTMLDropiAlertElement: {
|
|
1486
|
+
prototype: HTMLDropiAlertElement;
|
|
1487
|
+
new (): HTMLDropiAlertElement;
|
|
1488
|
+
};
|
|
1489
|
+
/**
|
|
1490
|
+
* @component dropi-avatars
|
|
1491
|
+
* Avatar component with image, initials fallback, and type-based size variants.
|
|
1492
|
+
*/
|
|
1493
|
+
interface HTMLDropiAvatarsElement extends Components.DropiAvatars, HTMLStencilElement {
|
|
1494
|
+
}
|
|
1495
|
+
var HTMLDropiAvatarsElement: {
|
|
1496
|
+
prototype: HTMLDropiAvatarsElement;
|
|
1497
|
+
new (): HTMLDropiAvatarsElement;
|
|
1498
|
+
};
|
|
858
1499
|
/**
|
|
859
1500
|
* @component dropi-badge
|
|
860
1501
|
* Status badge for user/account states.
|
|
@@ -887,6 +1528,28 @@ declare global {
|
|
|
887
1528
|
prototype: HTMLDropiButtonElement;
|
|
888
1529
|
new (): HTMLDropiButtonElement;
|
|
889
1530
|
};
|
|
1531
|
+
interface HTMLDropiCardSectionElementEventMap {
|
|
1532
|
+
"dropiChange": boolean;
|
|
1533
|
+
"dropiClick": void;
|
|
1534
|
+
}
|
|
1535
|
+
/**
|
|
1536
|
+
* @component dropi-card-section
|
|
1537
|
+
* Section card with title, description and a switch or dropdown control.
|
|
1538
|
+
*/
|
|
1539
|
+
interface HTMLDropiCardSectionElement extends Components.DropiCardSection, HTMLStencilElement {
|
|
1540
|
+
addEventListener<K extends keyof HTMLDropiCardSectionElementEventMap>(type: K, listener: (this: HTMLDropiCardSectionElement, ev: DropiCardSectionCustomEvent<HTMLDropiCardSectionElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1541
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1542
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1543
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1544
|
+
removeEventListener<K extends keyof HTMLDropiCardSectionElementEventMap>(type: K, listener: (this: HTMLDropiCardSectionElement, ev: DropiCardSectionCustomEvent<HTMLDropiCardSectionElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1545
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1546
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1547
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1548
|
+
}
|
|
1549
|
+
var HTMLDropiCardSectionElement: {
|
|
1550
|
+
prototype: HTMLDropiCardSectionElement;
|
|
1551
|
+
new (): HTMLDropiCardSectionElement;
|
|
1552
|
+
};
|
|
890
1553
|
interface HTMLDropiCheckboxElementEventMap {
|
|
891
1554
|
"dropiChange": boolean;
|
|
892
1555
|
}
|
|
@@ -909,6 +1572,72 @@ declare global {
|
|
|
909
1572
|
prototype: HTMLDropiCheckboxElement;
|
|
910
1573
|
new (): HTMLDropiCheckboxElement;
|
|
911
1574
|
};
|
|
1575
|
+
interface HTMLDropiCheckboxSelectionListElementEventMap {
|
|
1576
|
+
"dropiCheckedValues": (string | number)[];
|
|
1577
|
+
"dropiSearch": string;
|
|
1578
|
+
}
|
|
1579
|
+
/**
|
|
1580
|
+
* @component dropi-checkbox-selection-list
|
|
1581
|
+
* Searchable list of checkbox options with multi-select support.
|
|
1582
|
+
*/
|
|
1583
|
+
interface HTMLDropiCheckboxSelectionListElement extends Components.DropiCheckboxSelectionList, HTMLStencilElement {
|
|
1584
|
+
addEventListener<K extends keyof HTMLDropiCheckboxSelectionListElementEventMap>(type: K, listener: (this: HTMLDropiCheckboxSelectionListElement, ev: DropiCheckboxSelectionListCustomEvent<HTMLDropiCheckboxSelectionListElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1585
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1586
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1587
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1588
|
+
removeEventListener<K extends keyof HTMLDropiCheckboxSelectionListElementEventMap>(type: K, listener: (this: HTMLDropiCheckboxSelectionListElement, ev: DropiCheckboxSelectionListCustomEvent<HTMLDropiCheckboxSelectionListElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1589
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1590
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1591
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1592
|
+
}
|
|
1593
|
+
var HTMLDropiCheckboxSelectionListElement: {
|
|
1594
|
+
prototype: HTMLDropiCheckboxSelectionListElement;
|
|
1595
|
+
new (): HTMLDropiCheckboxSelectionListElement;
|
|
1596
|
+
};
|
|
1597
|
+
interface HTMLDropiChipsElementEventMap {
|
|
1598
|
+
"dropiClose": void;
|
|
1599
|
+
}
|
|
1600
|
+
/**
|
|
1601
|
+
* @component dropi-chips
|
|
1602
|
+
* Chip/tag-like element with optional icon, avatar, and close button.
|
|
1603
|
+
* Use <slot> for the chip label text.
|
|
1604
|
+
*/
|
|
1605
|
+
interface HTMLDropiChipsElement extends Components.DropiChips, HTMLStencilElement {
|
|
1606
|
+
addEventListener<K extends keyof HTMLDropiChipsElementEventMap>(type: K, listener: (this: HTMLDropiChipsElement, ev: DropiChipsCustomEvent<HTMLDropiChipsElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1607
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1608
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1609
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1610
|
+
removeEventListener<K extends keyof HTMLDropiChipsElementEventMap>(type: K, listener: (this: HTMLDropiChipsElement, ev: DropiChipsCustomEvent<HTMLDropiChipsElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1611
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1612
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1613
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1614
|
+
}
|
|
1615
|
+
var HTMLDropiChipsElement: {
|
|
1616
|
+
prototype: HTMLDropiChipsElement;
|
|
1617
|
+
new (): HTMLDropiChipsElement;
|
|
1618
|
+
};
|
|
1619
|
+
interface HTMLDropiDropdownElementEventMap {
|
|
1620
|
+
"dropiChange": DropdownOption[];
|
|
1621
|
+
}
|
|
1622
|
+
/**
|
|
1623
|
+
* @component dropi-dropdown
|
|
1624
|
+
* Scrollable list with checkboxes for multi-selection.
|
|
1625
|
+
* Pass options as an array (JS) or JSON string.
|
|
1626
|
+
*/
|
|
1627
|
+
interface HTMLDropiDropdownElement extends Components.DropiDropdown, HTMLStencilElement {
|
|
1628
|
+
addEventListener<K extends keyof HTMLDropiDropdownElementEventMap>(type: K, listener: (this: HTMLDropiDropdownElement, ev: DropiDropdownCustomEvent<HTMLDropiDropdownElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1629
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1630
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1631
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1632
|
+
removeEventListener<K extends keyof HTMLDropiDropdownElementEventMap>(type: K, listener: (this: HTMLDropiDropdownElement, ev: DropiDropdownCustomEvent<HTMLDropiDropdownElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1633
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1634
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1635
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1636
|
+
}
|
|
1637
|
+
var HTMLDropiDropdownElement: {
|
|
1638
|
+
prototype: HTMLDropiDropdownElement;
|
|
1639
|
+
new (): HTMLDropiDropdownElement;
|
|
1640
|
+
};
|
|
912
1641
|
interface HTMLDropiEmptyStateElementEventMap {
|
|
913
1642
|
"dropiAction": void;
|
|
914
1643
|
"dropiSecondaryAction": void;
|
|
@@ -931,6 +1660,27 @@ declare global {
|
|
|
931
1660
|
prototype: HTMLDropiEmptyStateElement;
|
|
932
1661
|
new (): HTMLDropiEmptyStateElement;
|
|
933
1662
|
};
|
|
1663
|
+
interface HTMLDropiFavoriteButtonElementEventMap {
|
|
1664
|
+
"dropiToggleFavorite": boolean;
|
|
1665
|
+
}
|
|
1666
|
+
/**
|
|
1667
|
+
* @component dropi-favorite-button
|
|
1668
|
+
* Heart toggle button for marking items as favorite.
|
|
1669
|
+
*/
|
|
1670
|
+
interface HTMLDropiFavoriteButtonElement extends Components.DropiFavoriteButton, HTMLStencilElement {
|
|
1671
|
+
addEventListener<K extends keyof HTMLDropiFavoriteButtonElementEventMap>(type: K, listener: (this: HTMLDropiFavoriteButtonElement, ev: DropiFavoriteButtonCustomEvent<HTMLDropiFavoriteButtonElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1672
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1673
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1674
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1675
|
+
removeEventListener<K extends keyof HTMLDropiFavoriteButtonElementEventMap>(type: K, listener: (this: HTMLDropiFavoriteButtonElement, ev: DropiFavoriteButtonCustomEvent<HTMLDropiFavoriteButtonElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1676
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1677
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1678
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1679
|
+
}
|
|
1680
|
+
var HTMLDropiFavoriteButtonElement: {
|
|
1681
|
+
prototype: HTMLDropiFavoriteButtonElement;
|
|
1682
|
+
new (): HTMLDropiFavoriteButtonElement;
|
|
1683
|
+
};
|
|
934
1684
|
/**
|
|
935
1685
|
* @component dropi-icon
|
|
936
1686
|
* Renders an SVG icon from the Dropi sprite sheet.
|
|
@@ -942,6 +1692,48 @@ declare global {
|
|
|
942
1692
|
prototype: HTMLDropiIconElement;
|
|
943
1693
|
new (): HTMLDropiIconElement;
|
|
944
1694
|
};
|
|
1695
|
+
interface HTMLDropiImageMiniatureElementEventMap {
|
|
1696
|
+
"dropiImageClick": { images: string[]; index: number };
|
|
1697
|
+
}
|
|
1698
|
+
/**
|
|
1699
|
+
* @component dropi-image-miniature
|
|
1700
|
+
* Grid of image thumbnails with zoom-on-hover overlay trigger.
|
|
1701
|
+
*/
|
|
1702
|
+
interface HTMLDropiImageMiniatureElement extends Components.DropiImageMiniature, HTMLStencilElement {
|
|
1703
|
+
addEventListener<K extends keyof HTMLDropiImageMiniatureElementEventMap>(type: K, listener: (this: HTMLDropiImageMiniatureElement, ev: DropiImageMiniatureCustomEvent<HTMLDropiImageMiniatureElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1704
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1705
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1706
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1707
|
+
removeEventListener<K extends keyof HTMLDropiImageMiniatureElementEventMap>(type: K, listener: (this: HTMLDropiImageMiniatureElement, ev: DropiImageMiniatureCustomEvent<HTMLDropiImageMiniatureElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1708
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1709
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1710
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1711
|
+
}
|
|
1712
|
+
var HTMLDropiImageMiniatureElement: {
|
|
1713
|
+
prototype: HTMLDropiImageMiniatureElement;
|
|
1714
|
+
new (): HTMLDropiImageMiniatureElement;
|
|
1715
|
+
};
|
|
1716
|
+
interface HTMLDropiImageOverlayElementEventMap {
|
|
1717
|
+
"dropiClose": void;
|
|
1718
|
+
}
|
|
1719
|
+
/**
|
|
1720
|
+
* @component dropi-image-overlay
|
|
1721
|
+
* Full-screen image lightbox with prev/next navigation and thumbnails.
|
|
1722
|
+
*/
|
|
1723
|
+
interface HTMLDropiImageOverlayElement extends Components.DropiImageOverlay, HTMLStencilElement {
|
|
1724
|
+
addEventListener<K extends keyof HTMLDropiImageOverlayElementEventMap>(type: K, listener: (this: HTMLDropiImageOverlayElement, ev: DropiImageOverlayCustomEvent<HTMLDropiImageOverlayElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1725
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1726
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1727
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1728
|
+
removeEventListener<K extends keyof HTMLDropiImageOverlayElementEventMap>(type: K, listener: (this: HTMLDropiImageOverlayElement, ev: DropiImageOverlayCustomEvent<HTMLDropiImageOverlayElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1729
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1730
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1731
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1732
|
+
}
|
|
1733
|
+
var HTMLDropiImageOverlayElement: {
|
|
1734
|
+
prototype: HTMLDropiImageOverlayElement;
|
|
1735
|
+
new (): HTMLDropiImageOverlayElement;
|
|
1736
|
+
};
|
|
945
1737
|
interface HTMLDropiInputElementEventMap {
|
|
946
1738
|
"dropiInput": string;
|
|
947
1739
|
"dropiChange": string;
|
|
@@ -975,6 +1767,26 @@ declare global {
|
|
|
975
1767
|
prototype: HTMLDropiInputElement;
|
|
976
1768
|
new (): HTMLDropiInputElement;
|
|
977
1769
|
};
|
|
1770
|
+
/**
|
|
1771
|
+
* @component dropi-logo
|
|
1772
|
+
* Displays the Dropi brand logo with size variants.
|
|
1773
|
+
*/
|
|
1774
|
+
interface HTMLDropiLogoElement extends Components.DropiLogo, HTMLStencilElement {
|
|
1775
|
+
}
|
|
1776
|
+
var HTMLDropiLogoElement: {
|
|
1777
|
+
prototype: HTMLDropiLogoElement;
|
|
1778
|
+
new (): HTMLDropiLogoElement;
|
|
1779
|
+
};
|
|
1780
|
+
/**
|
|
1781
|
+
* @component dropi-lottie-loader
|
|
1782
|
+
* Full-screen or inline loading overlay with a Lottie animation.
|
|
1783
|
+
*/
|
|
1784
|
+
interface HTMLDropiLottieLoaderElement extends Components.DropiLottieLoader, HTMLStencilElement {
|
|
1785
|
+
}
|
|
1786
|
+
var HTMLDropiLottieLoaderElement: {
|
|
1787
|
+
prototype: HTMLDropiLottieLoaderElement;
|
|
1788
|
+
new (): HTMLDropiLottieLoaderElement;
|
|
1789
|
+
};
|
|
978
1790
|
interface HTMLDropiModalElementEventMap {
|
|
979
1791
|
"dropiShow": void;
|
|
980
1792
|
"dropiHide": void;
|
|
@@ -999,6 +1811,28 @@ declare global {
|
|
|
999
1811
|
prototype: HTMLDropiModalElement;
|
|
1000
1812
|
new (): HTMLDropiModalElement;
|
|
1001
1813
|
};
|
|
1814
|
+
interface HTMLDropiOtpSendCodeElementEventMap {
|
|
1815
|
+
"dropiCodeCompleted": string;
|
|
1816
|
+
"dropiResend": void;
|
|
1817
|
+
}
|
|
1818
|
+
/**
|
|
1819
|
+
* @component dropi-otp-send-code
|
|
1820
|
+
* 6-digit OTP input with countdown timer and resend capability.
|
|
1821
|
+
*/
|
|
1822
|
+
interface HTMLDropiOtpSendCodeElement extends Components.DropiOtpSendCode, HTMLStencilElement {
|
|
1823
|
+
addEventListener<K extends keyof HTMLDropiOtpSendCodeElementEventMap>(type: K, listener: (this: HTMLDropiOtpSendCodeElement, ev: DropiOtpSendCodeCustomEvent<HTMLDropiOtpSendCodeElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1824
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1825
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1826
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1827
|
+
removeEventListener<K extends keyof HTMLDropiOtpSendCodeElementEventMap>(type: K, listener: (this: HTMLDropiOtpSendCodeElement, ev: DropiOtpSendCodeCustomEvent<HTMLDropiOtpSendCodeElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1828
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1829
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1830
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1831
|
+
}
|
|
1832
|
+
var HTMLDropiOtpSendCodeElement: {
|
|
1833
|
+
prototype: HTMLDropiOtpSendCodeElement;
|
|
1834
|
+
new (): HTMLDropiOtpSendCodeElement;
|
|
1835
|
+
};
|
|
1002
1836
|
interface HTMLDropiPaginatorElementEventMap {
|
|
1003
1837
|
"dropiPageChange": { page: number; pageSize: number };
|
|
1004
1838
|
}
|
|
@@ -1041,6 +1875,64 @@ declare global {
|
|
|
1041
1875
|
prototype: HTMLDropiRadioButtonElement;
|
|
1042
1876
|
new (): HTMLDropiRadioButtonElement;
|
|
1043
1877
|
};
|
|
1878
|
+
interface HTMLDropiRadioSelectionListElementEventMap {
|
|
1879
|
+
"dropiChange": string | number;
|
|
1880
|
+
"dropiSearch": string;
|
|
1881
|
+
}
|
|
1882
|
+
/**
|
|
1883
|
+
* @component dropi-radio-selection-list
|
|
1884
|
+
* List of radio button options with optional search filter.
|
|
1885
|
+
*/
|
|
1886
|
+
interface HTMLDropiRadioSelectionListElement extends Components.DropiRadioSelectionList, HTMLStencilElement {
|
|
1887
|
+
addEventListener<K extends keyof HTMLDropiRadioSelectionListElementEventMap>(type: K, listener: (this: HTMLDropiRadioSelectionListElement, ev: DropiRadioSelectionListCustomEvent<HTMLDropiRadioSelectionListElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1888
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1889
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1890
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1891
|
+
removeEventListener<K extends keyof HTMLDropiRadioSelectionListElementEventMap>(type: K, listener: (this: HTMLDropiRadioSelectionListElement, ev: DropiRadioSelectionListCustomEvent<HTMLDropiRadioSelectionListElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1892
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1893
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1894
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1895
|
+
}
|
|
1896
|
+
var HTMLDropiRadioSelectionListElement: {
|
|
1897
|
+
prototype: HTMLDropiRadioSelectionListElement;
|
|
1898
|
+
new (): HTMLDropiRadioSelectionListElement;
|
|
1899
|
+
};
|
|
1900
|
+
/**
|
|
1901
|
+
* @component dropi-read-more
|
|
1902
|
+
* Truncates text to a word limit with an expandable "Ver más / Ver menos" toggle.
|
|
1903
|
+
*/
|
|
1904
|
+
interface HTMLDropiReadMoreElement extends Components.DropiReadMore, HTMLStencilElement {
|
|
1905
|
+
}
|
|
1906
|
+
var HTMLDropiReadMoreElement: {
|
|
1907
|
+
prototype: HTMLDropiReadMoreElement;
|
|
1908
|
+
new (): HTMLDropiReadMoreElement;
|
|
1909
|
+
};
|
|
1910
|
+
interface HTMLDropiSearchElementEventMap {
|
|
1911
|
+
"dropiInput": string;
|
|
1912
|
+
"dropiBlur": void;
|
|
1913
|
+
"dropiKeyEnter": string;
|
|
1914
|
+
"dropiClear": void;
|
|
1915
|
+
"dropiChange": SearchOption[];
|
|
1916
|
+
}
|
|
1917
|
+
/**
|
|
1918
|
+
* @component dropi-search
|
|
1919
|
+
* Text search input with optional dropdown results list.
|
|
1920
|
+
* Supports single and multi-select, keyboard navigation, and clear button.
|
|
1921
|
+
*/
|
|
1922
|
+
interface HTMLDropiSearchElement extends Components.DropiSearch, HTMLStencilElement {
|
|
1923
|
+
addEventListener<K extends keyof HTMLDropiSearchElementEventMap>(type: K, listener: (this: HTMLDropiSearchElement, ev: DropiSearchCustomEvent<HTMLDropiSearchElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1924
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1925
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1926
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1927
|
+
removeEventListener<K extends keyof HTMLDropiSearchElementEventMap>(type: K, listener: (this: HTMLDropiSearchElement, ev: DropiSearchCustomEvent<HTMLDropiSearchElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
1928
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1929
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1930
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1931
|
+
}
|
|
1932
|
+
var HTMLDropiSearchElement: {
|
|
1933
|
+
prototype: HTMLDropiSearchElement;
|
|
1934
|
+
new (): HTMLDropiSearchElement;
|
|
1935
|
+
};
|
|
1044
1936
|
interface HTMLDropiSelectElementEventMap {
|
|
1045
1937
|
"dropiChange": SelectOption | SelectOption[];
|
|
1046
1938
|
"dropiClear": void;
|
|
@@ -1081,6 +1973,16 @@ declare global {
|
|
|
1081
1973
|
prototype: HTMLDropiSelectElement;
|
|
1082
1974
|
new (): HTMLDropiSelectElement;
|
|
1083
1975
|
};
|
|
1976
|
+
/**
|
|
1977
|
+
* @component dropi-simple-stepper
|
|
1978
|
+
* Compact horizontal stepper using dots or numbers.
|
|
1979
|
+
*/
|
|
1980
|
+
interface HTMLDropiSimpleStepperElement extends Components.DropiSimpleStepper, HTMLStencilElement {
|
|
1981
|
+
}
|
|
1982
|
+
var HTMLDropiSimpleStepperElement: {
|
|
1983
|
+
prototype: HTMLDropiSimpleStepperElement;
|
|
1984
|
+
new (): HTMLDropiSimpleStepperElement;
|
|
1985
|
+
};
|
|
1084
1986
|
/**
|
|
1085
1987
|
* @component dropi-skeleton
|
|
1086
1988
|
* Loading placeholder with shimmer animation.
|
|
@@ -1091,6 +1993,16 @@ declare global {
|
|
|
1091
1993
|
prototype: HTMLDropiSkeletonElement;
|
|
1092
1994
|
new (): HTMLDropiSkeletonElement;
|
|
1093
1995
|
};
|
|
1996
|
+
/**
|
|
1997
|
+
* @component dropi-steps
|
|
1998
|
+
* Horizontal stepper showing step progress with number/title/description.
|
|
1999
|
+
*/
|
|
2000
|
+
interface HTMLDropiStepsElement extends Components.DropiSteps, HTMLStencilElement {
|
|
2001
|
+
}
|
|
2002
|
+
var HTMLDropiStepsElement: {
|
|
2003
|
+
prototype: HTMLDropiStepsElement;
|
|
2004
|
+
new (): HTMLDropiStepsElement;
|
|
2005
|
+
};
|
|
1094
2006
|
interface HTMLDropiSwitchElementEventMap {
|
|
1095
2007
|
"dropiChange": boolean;
|
|
1096
2008
|
}
|
|
@@ -1172,6 +2084,16 @@ declare global {
|
|
|
1172
2084
|
prototype: HTMLDropiTextAreaElement;
|
|
1173
2085
|
new (): HTMLDropiTextAreaElement;
|
|
1174
2086
|
};
|
|
2087
|
+
/**
|
|
2088
|
+
* @component dropi-time-line
|
|
2089
|
+
* Vertical timeline showing ordered steps with status indicators.
|
|
2090
|
+
*/
|
|
2091
|
+
interface HTMLDropiTimeLineElement extends Components.DropiTimeLine, HTMLStencilElement {
|
|
2092
|
+
}
|
|
2093
|
+
var HTMLDropiTimeLineElement: {
|
|
2094
|
+
prototype: HTMLDropiTimeLineElement;
|
|
2095
|
+
new (): HTMLDropiTimeLineElement;
|
|
2096
|
+
};
|
|
1175
2097
|
/**
|
|
1176
2098
|
* @component dropi-toast
|
|
1177
2099
|
* Global toast notification stack. Place once in the app root, call show() from JS.
|
|
@@ -1197,25 +2119,65 @@ declare global {
|
|
|
1197
2119
|
prototype: HTMLDropiTooltipElement;
|
|
1198
2120
|
new (): HTMLDropiTooltipElement;
|
|
1199
2121
|
};
|
|
2122
|
+
interface HTMLDropiVerticalStepsElementEventMap {
|
|
2123
|
+
"dropiStepClick": number;
|
|
2124
|
+
}
|
|
2125
|
+
/**
|
|
2126
|
+
* @component dropi-vertical-steps
|
|
2127
|
+
* Vertical step-by-step progress indicator with optional click navigation.
|
|
2128
|
+
*/
|
|
2129
|
+
interface HTMLDropiVerticalStepsElement extends Components.DropiVerticalSteps, HTMLStencilElement {
|
|
2130
|
+
addEventListener<K extends keyof HTMLDropiVerticalStepsElementEventMap>(type: K, listener: (this: HTMLDropiVerticalStepsElement, ev: DropiVerticalStepsCustomEvent<HTMLDropiVerticalStepsElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
2131
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
2132
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
2133
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
2134
|
+
removeEventListener<K extends keyof HTMLDropiVerticalStepsElementEventMap>(type: K, listener: (this: HTMLDropiVerticalStepsElement, ev: DropiVerticalStepsCustomEvent<HTMLDropiVerticalStepsElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
2135
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
2136
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
2137
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
2138
|
+
}
|
|
2139
|
+
var HTMLDropiVerticalStepsElement: {
|
|
2140
|
+
prototype: HTMLDropiVerticalStepsElement;
|
|
2141
|
+
new (): HTMLDropiVerticalStepsElement;
|
|
2142
|
+
};
|
|
1200
2143
|
interface HTMLElementTagNameMap {
|
|
1201
2144
|
"dropi-accordion": HTMLDropiAccordionElement;
|
|
2145
|
+
"dropi-alert": HTMLDropiAlertElement;
|
|
2146
|
+
"dropi-avatars": HTMLDropiAvatarsElement;
|
|
1202
2147
|
"dropi-badge": HTMLDropiBadgeElement;
|
|
1203
2148
|
"dropi-button": HTMLDropiButtonElement;
|
|
2149
|
+
"dropi-card-section": HTMLDropiCardSectionElement;
|
|
1204
2150
|
"dropi-checkbox": HTMLDropiCheckboxElement;
|
|
2151
|
+
"dropi-checkbox-selection-list": HTMLDropiCheckboxSelectionListElement;
|
|
2152
|
+
"dropi-chips": HTMLDropiChipsElement;
|
|
2153
|
+
"dropi-dropdown": HTMLDropiDropdownElement;
|
|
1205
2154
|
"dropi-empty-state": HTMLDropiEmptyStateElement;
|
|
2155
|
+
"dropi-favorite-button": HTMLDropiFavoriteButtonElement;
|
|
1206
2156
|
"dropi-icon": HTMLDropiIconElement;
|
|
2157
|
+
"dropi-image-miniature": HTMLDropiImageMiniatureElement;
|
|
2158
|
+
"dropi-image-overlay": HTMLDropiImageOverlayElement;
|
|
1207
2159
|
"dropi-input": HTMLDropiInputElement;
|
|
2160
|
+
"dropi-logo": HTMLDropiLogoElement;
|
|
2161
|
+
"dropi-lottie-loader": HTMLDropiLottieLoaderElement;
|
|
1208
2162
|
"dropi-modal": HTMLDropiModalElement;
|
|
2163
|
+
"dropi-otp-send-code": HTMLDropiOtpSendCodeElement;
|
|
1209
2164
|
"dropi-paginator": HTMLDropiPaginatorElement;
|
|
1210
2165
|
"dropi-radio-button": HTMLDropiRadioButtonElement;
|
|
2166
|
+
"dropi-radio-selection-list": HTMLDropiRadioSelectionListElement;
|
|
2167
|
+
"dropi-read-more": HTMLDropiReadMoreElement;
|
|
2168
|
+
"dropi-search": HTMLDropiSearchElement;
|
|
1211
2169
|
"dropi-select": HTMLDropiSelectElement;
|
|
2170
|
+
"dropi-simple-stepper": HTMLDropiSimpleStepperElement;
|
|
1212
2171
|
"dropi-skeleton": HTMLDropiSkeletonElement;
|
|
2172
|
+
"dropi-steps": HTMLDropiStepsElement;
|
|
1213
2173
|
"dropi-switch": HTMLDropiSwitchElement;
|
|
1214
2174
|
"dropi-tabs": HTMLDropiTabsElement;
|
|
1215
2175
|
"dropi-tag": HTMLDropiTagElement;
|
|
1216
2176
|
"dropi-text-area": HTMLDropiTextAreaElement;
|
|
2177
|
+
"dropi-time-line": HTMLDropiTimeLineElement;
|
|
1217
2178
|
"dropi-toast": HTMLDropiToastElement;
|
|
1218
2179
|
"dropi-tooltip": HTMLDropiTooltipElement;
|
|
2180
|
+
"dropi-vertical-steps": HTMLDropiVerticalStepsElement;
|
|
1219
2181
|
}
|
|
1220
2182
|
}
|
|
1221
2183
|
declare namespace LocalJSX {
|
|
@@ -1252,6 +2214,96 @@ declare namespace LocalJSX {
|
|
|
1252
2214
|
*/
|
|
1253
2215
|
"preIcon"?: string;
|
|
1254
2216
|
}
|
|
2217
|
+
/**
|
|
2218
|
+
* @component dropi-alert
|
|
2219
|
+
* Alert banner with state variants (success/error/warning/info),
|
|
2220
|
+
* optional action button, anchor link, and dismissable close icon.
|
|
2221
|
+
*/
|
|
2222
|
+
interface DropiAlert {
|
|
2223
|
+
/**
|
|
2224
|
+
* Anchor/link label
|
|
2225
|
+
* @default ''
|
|
2226
|
+
*/
|
|
2227
|
+
"anchorText"?: string;
|
|
2228
|
+
/**
|
|
2229
|
+
* Anchor href
|
|
2230
|
+
* @default ''
|
|
2231
|
+
*/
|
|
2232
|
+
"anchorUrl"?: string;
|
|
2233
|
+
/**
|
|
2234
|
+
* Action button label
|
|
2235
|
+
* @default ''
|
|
2236
|
+
*/
|
|
2237
|
+
"buttonText"?: string;
|
|
2238
|
+
/**
|
|
2239
|
+
* Show the × close button
|
|
2240
|
+
* @default false
|
|
2241
|
+
*/
|
|
2242
|
+
"dismissable"?: boolean;
|
|
2243
|
+
/**
|
|
2244
|
+
* Alert message text (supports plain text)
|
|
2245
|
+
* @default ''
|
|
2246
|
+
*/
|
|
2247
|
+
"message"?: string;
|
|
2248
|
+
/**
|
|
2249
|
+
* Emitted when the action button is clicked
|
|
2250
|
+
*/
|
|
2251
|
+
"onDropiButtonClick"?: (event: DropiAlertCustomEvent<void>) => void;
|
|
2252
|
+
/**
|
|
2253
|
+
* Emitted when the alert is dismissed
|
|
2254
|
+
*/
|
|
2255
|
+
"onDropiClose"?: (event: DropiAlertCustomEvent<void>) => void;
|
|
2256
|
+
/**
|
|
2257
|
+
* Emitted when the anchor link is clicked
|
|
2258
|
+
*/
|
|
2259
|
+
"onDropiLinkClick"?: (event: DropiAlertCustomEvent<void>) => void;
|
|
2260
|
+
/**
|
|
2261
|
+
* Whether the alert is visible
|
|
2262
|
+
* @default true
|
|
2263
|
+
*/
|
|
2264
|
+
"showAlert"?: boolean;
|
|
2265
|
+
/**
|
|
2266
|
+
* Show action button
|
|
2267
|
+
* @default false
|
|
2268
|
+
*/
|
|
2269
|
+
"showButton"?: boolean;
|
|
2270
|
+
/**
|
|
2271
|
+
* Semantic state
|
|
2272
|
+
* @default 'info'
|
|
2273
|
+
*/
|
|
2274
|
+
"state"?: AlertState;
|
|
2275
|
+
/**
|
|
2276
|
+
* Layout type: default (inline) | flag (accented left border)
|
|
2277
|
+
* @default 'default'
|
|
2278
|
+
*/
|
|
2279
|
+
"type"?: AlertType;
|
|
2280
|
+
}
|
|
2281
|
+
/**
|
|
2282
|
+
* @component dropi-avatars
|
|
2283
|
+
* Avatar component with image, initials fallback, and type-based size variants.
|
|
2284
|
+
*/
|
|
2285
|
+
interface DropiAvatars {
|
|
2286
|
+
/**
|
|
2287
|
+
* Alt text for the image
|
|
2288
|
+
* @default 'avatar'
|
|
2289
|
+
*/
|
|
2290
|
+
"alt"?: string;
|
|
2291
|
+
/**
|
|
2292
|
+
* Image URL
|
|
2293
|
+
* @default ''
|
|
2294
|
+
*/
|
|
2295
|
+
"image"?: string;
|
|
2296
|
+
/**
|
|
2297
|
+
* Initials to show when no image (max 2 chars)
|
|
2298
|
+
* @default ''
|
|
2299
|
+
*/
|
|
2300
|
+
"initials"?: string;
|
|
2301
|
+
/**
|
|
2302
|
+
* Size/context variant
|
|
2303
|
+
* @default 'users'
|
|
2304
|
+
*/
|
|
2305
|
+
"type"?: AvatarType;
|
|
2306
|
+
}
|
|
1255
2307
|
/**
|
|
1256
2308
|
* @component dropi-badge
|
|
1257
2309
|
* Status badge for user/account states.
|
|
@@ -1309,6 +2361,45 @@ declare namespace LocalJSX {
|
|
|
1309
2361
|
*/
|
|
1310
2362
|
"type"?: ButtonType;
|
|
1311
2363
|
}
|
|
2364
|
+
/**
|
|
2365
|
+
* @component dropi-card-section
|
|
2366
|
+
* Section card with title, description and a switch or dropdown control.
|
|
2367
|
+
*/
|
|
2368
|
+
interface DropiCardSection {
|
|
2369
|
+
/**
|
|
2370
|
+
* Section description
|
|
2371
|
+
* @default ''
|
|
2372
|
+
*/
|
|
2373
|
+
"description"?: string;
|
|
2374
|
+
/**
|
|
2375
|
+
* Switch checked state
|
|
2376
|
+
* @default false
|
|
2377
|
+
*/
|
|
2378
|
+
"isChecked"?: boolean;
|
|
2379
|
+
/**
|
|
2380
|
+
* Emitted when switch changes. e.detail = new boolean value
|
|
2381
|
+
*/
|
|
2382
|
+
"onDropiChange"?: (event: DropiCardSectionCustomEvent<boolean>) => void;
|
|
2383
|
+
/**
|
|
2384
|
+
* Emitted when dropdown icon is clicked
|
|
2385
|
+
*/
|
|
2386
|
+
"onDropiClick"?: (event: DropiCardSectionCustomEvent<void>) => void;
|
|
2387
|
+
/**
|
|
2388
|
+
* Section title
|
|
2389
|
+
* @default ''
|
|
2390
|
+
*/
|
|
2391
|
+
"sectionTitle"?: string;
|
|
2392
|
+
/**
|
|
2393
|
+
* Title size variant
|
|
2394
|
+
* @default 'medium'
|
|
2395
|
+
*/
|
|
2396
|
+
"type"?: 'medium' | 'important';
|
|
2397
|
+
/**
|
|
2398
|
+
* Control type on the right
|
|
2399
|
+
* @default 'switch'
|
|
2400
|
+
*/
|
|
2401
|
+
"typeElement"?: 'dropdown' | 'switch';
|
|
2402
|
+
}
|
|
1312
2403
|
/**
|
|
1313
2404
|
* @component dropi-checkbox
|
|
1314
2405
|
* A styled checkbox that emits change events.
|
|
@@ -1338,6 +2429,117 @@ declare namespace LocalJSX {
|
|
|
1338
2429
|
*/
|
|
1339
2430
|
"onDropiChange"?: (event: DropiCheckboxCustomEvent<boolean>) => void;
|
|
1340
2431
|
}
|
|
2432
|
+
/**
|
|
2433
|
+
* @component dropi-checkbox-selection-list
|
|
2434
|
+
* Searchable list of checkbox options with multi-select support.
|
|
2435
|
+
*/
|
|
2436
|
+
interface DropiCheckboxSelectionList {
|
|
2437
|
+
/**
|
|
2438
|
+
* Search placeholder
|
|
2439
|
+
* @default 'Buscar...'
|
|
2440
|
+
*/
|
|
2441
|
+
"filterPlaceholder"?: string;
|
|
2442
|
+
/**
|
|
2443
|
+
* Allow multiple selection
|
|
2444
|
+
* @default true
|
|
2445
|
+
*/
|
|
2446
|
+
"multiSelect"?: boolean;
|
|
2447
|
+
/**
|
|
2448
|
+
* Empty state message
|
|
2449
|
+
* @default 'Sin resultados'
|
|
2450
|
+
*/
|
|
2451
|
+
"notFoundMessage"?: string;
|
|
2452
|
+
/**
|
|
2453
|
+
* Emitted when selection changes. e.detail = selected option ids
|
|
2454
|
+
*/
|
|
2455
|
+
"onDropiCheckedValues"?: (event: DropiCheckboxSelectionListCustomEvent<(string | number)[]>) => void;
|
|
2456
|
+
/**
|
|
2457
|
+
* Emitted on search input. e.detail = search text
|
|
2458
|
+
*/
|
|
2459
|
+
"onDropiSearch"?: (event: DropiCheckboxSelectionListCustomEvent<string>) => void;
|
|
2460
|
+
/**
|
|
2461
|
+
* Options array or JSON string
|
|
2462
|
+
* @default []
|
|
2463
|
+
*/
|
|
2464
|
+
"options"?: CheckboxOption[] | string;
|
|
2465
|
+
/**
|
|
2466
|
+
* Show search filter
|
|
2467
|
+
* @default true
|
|
2468
|
+
*/
|
|
2469
|
+
"showFilter"?: boolean;
|
|
2470
|
+
/**
|
|
2471
|
+
* Show "no results" message
|
|
2472
|
+
* @default true
|
|
2473
|
+
*/
|
|
2474
|
+
"showNotFound"?: boolean;
|
|
2475
|
+
}
|
|
2476
|
+
/**
|
|
2477
|
+
* @component dropi-chips
|
|
2478
|
+
* Chip/tag-like element with optional icon, avatar, and close button.
|
|
2479
|
+
* Use <slot> for the chip label text.
|
|
2480
|
+
*/
|
|
2481
|
+
interface DropiChips {
|
|
2482
|
+
/**
|
|
2483
|
+
* Visual style
|
|
2484
|
+
* @default 'filters'
|
|
2485
|
+
*/
|
|
2486
|
+
"chipStyle"?: ChipStyle;
|
|
2487
|
+
/**
|
|
2488
|
+
* Icon name (when type = 'icon')
|
|
2489
|
+
* @default ''
|
|
2490
|
+
*/
|
|
2491
|
+
"icon"?: string;
|
|
2492
|
+
/**
|
|
2493
|
+
* Emitted when the close icon is clicked
|
|
2494
|
+
*/
|
|
2495
|
+
"onDropiClose"?: (event: DropiChipsCustomEvent<void>) => void;
|
|
2496
|
+
/**
|
|
2497
|
+
* Show the close/remove icon
|
|
2498
|
+
* @default true
|
|
2499
|
+
*/
|
|
2500
|
+
"showIcon"?: boolean;
|
|
2501
|
+
/**
|
|
2502
|
+
* Content type
|
|
2503
|
+
* @default 'text'
|
|
2504
|
+
*/
|
|
2505
|
+
"type"?: ChipType;
|
|
2506
|
+
/**
|
|
2507
|
+
* Avatar image URL (when type = 'avatar')
|
|
2508
|
+
* @default ''
|
|
2509
|
+
*/
|
|
2510
|
+
"urlImg"?: string;
|
|
2511
|
+
}
|
|
2512
|
+
/**
|
|
2513
|
+
* @component dropi-dropdown
|
|
2514
|
+
* Scrollable list with checkboxes for multi-selection.
|
|
2515
|
+
* Pass options as an array (JS) or JSON string.
|
|
2516
|
+
*/
|
|
2517
|
+
interface DropiDropdown {
|
|
2518
|
+
/**
|
|
2519
|
+
* Max height of the list container (CSS value)
|
|
2520
|
+
* @default '300px'
|
|
2521
|
+
*/
|
|
2522
|
+
"height"?: string;
|
|
2523
|
+
/**
|
|
2524
|
+
* Property name to use as the option image/avatar URL
|
|
2525
|
+
* @default ''
|
|
2526
|
+
*/
|
|
2527
|
+
"imageModel"?: string;
|
|
2528
|
+
/**
|
|
2529
|
+
* Emitted when selection changes. e.detail = selected items array
|
|
2530
|
+
*/
|
|
2531
|
+
"onDropiChange"?: (event: DropiDropdownCustomEvent<DropdownOption[]>) => void;
|
|
2532
|
+
/**
|
|
2533
|
+
* Options array or JSON string
|
|
2534
|
+
* @default []
|
|
2535
|
+
*/
|
|
2536
|
+
"options"?: DropdownOption[] | string;
|
|
2537
|
+
/**
|
|
2538
|
+
* Property name to display as the option label
|
|
2539
|
+
* @default 'name'
|
|
2540
|
+
*/
|
|
2541
|
+
"valueModel"?: string;
|
|
2542
|
+
}
|
|
1341
2543
|
/**
|
|
1342
2544
|
* @component dropi-empty-state
|
|
1343
2545
|
* Empty state illustration with title, description and optional action button.
|
|
@@ -1382,6 +2584,21 @@ declare namespace LocalJSX {
|
|
|
1382
2584
|
*/
|
|
1383
2585
|
"secondaryLabel"?: string;
|
|
1384
2586
|
}
|
|
2587
|
+
/**
|
|
2588
|
+
* @component dropi-favorite-button
|
|
2589
|
+
* Heart toggle button for marking items as favorite.
|
|
2590
|
+
*/
|
|
2591
|
+
interface DropiFavoriteButton {
|
|
2592
|
+
/**
|
|
2593
|
+
* Whether the item is currently marked as favorite
|
|
2594
|
+
* @default false
|
|
2595
|
+
*/
|
|
2596
|
+
"isFavorite"?: boolean;
|
|
2597
|
+
/**
|
|
2598
|
+
* Emitted when toggled. e.detail = new favorite state
|
|
2599
|
+
*/
|
|
2600
|
+
"onDropiToggleFavorite"?: (event: DropiFavoriteButtonCustomEvent<boolean>) => void;
|
|
2601
|
+
}
|
|
1385
2602
|
/**
|
|
1386
2603
|
* @component dropi-icon
|
|
1387
2604
|
* Renders an SVG icon from the Dropi sprite sheet.
|
|
@@ -1404,10 +2621,65 @@ declare namespace LocalJSX {
|
|
|
1404
2621
|
*/
|
|
1405
2622
|
"name"?: string;
|
|
1406
2623
|
/**
|
|
1407
|
-
* Width of the icon (CSS value)
|
|
1408
|
-
* @default '24px'
|
|
2624
|
+
* Width of the icon (CSS value)
|
|
2625
|
+
* @default '24px'
|
|
2626
|
+
*/
|
|
2627
|
+
"width"?: string;
|
|
2628
|
+
}
|
|
2629
|
+
/**
|
|
2630
|
+
* @component dropi-image-miniature
|
|
2631
|
+
* Grid of image thumbnails with zoom-on-hover overlay trigger.
|
|
2632
|
+
*/
|
|
2633
|
+
interface DropiImageMiniature {
|
|
2634
|
+
/**
|
|
2635
|
+
* Thumbnail height (CSS value)
|
|
2636
|
+
* @default '88px'
|
|
2637
|
+
*/
|
|
2638
|
+
"height"?: string;
|
|
2639
|
+
/**
|
|
2640
|
+
* Array of image URLs. Pass as JSON string or array
|
|
2641
|
+
* @default []
|
|
2642
|
+
*/
|
|
2643
|
+
"images"?: string[] | string;
|
|
2644
|
+
/**
|
|
2645
|
+
* Optional label above the grid
|
|
2646
|
+
* @default ''
|
|
2647
|
+
*/
|
|
2648
|
+
"label"?: string;
|
|
2649
|
+
/**
|
|
2650
|
+
* Emitted when a thumbnail is clicked. e.detail = { images, index }
|
|
2651
|
+
*/
|
|
2652
|
+
"onDropiImageClick"?: (event: DropiImageMiniatureCustomEvent<{ images: string[]; index: number }>) => void;
|
|
2653
|
+
/**
|
|
2654
|
+
* Thumbnail width (CSS value)
|
|
2655
|
+
* @default '88px'
|
|
2656
|
+
*/
|
|
2657
|
+
"width"?: string;
|
|
2658
|
+
}
|
|
2659
|
+
/**
|
|
2660
|
+
* @component dropi-image-overlay
|
|
2661
|
+
* Full-screen image lightbox with prev/next navigation and thumbnails.
|
|
2662
|
+
*/
|
|
2663
|
+
interface DropiImageOverlay {
|
|
2664
|
+
/**
|
|
2665
|
+
* Initially active image index
|
|
2666
|
+
* @default 0
|
|
2667
|
+
*/
|
|
2668
|
+
"activeIndex"?: number;
|
|
2669
|
+
/**
|
|
2670
|
+
* Images array or JSON string
|
|
2671
|
+
* @default []
|
|
2672
|
+
*/
|
|
2673
|
+
"images"?: string[] | string;
|
|
2674
|
+
/**
|
|
2675
|
+
* Emitted when overlay closes
|
|
2676
|
+
*/
|
|
2677
|
+
"onDropiClose"?: (event: DropiImageOverlayCustomEvent<void>) => void;
|
|
2678
|
+
/**
|
|
2679
|
+
* Whether the overlay is visible
|
|
2680
|
+
* @default false
|
|
1409
2681
|
*/
|
|
1410
|
-
"
|
|
2682
|
+
"visible"?: boolean;
|
|
1411
2683
|
}
|
|
1412
2684
|
/**
|
|
1413
2685
|
* @component dropi-input
|
|
@@ -1553,6 +2825,53 @@ declare namespace LocalJSX {
|
|
|
1553
2825
|
*/
|
|
1554
2826
|
"value"?: string;
|
|
1555
2827
|
}
|
|
2828
|
+
/**
|
|
2829
|
+
* @component dropi-logo
|
|
2830
|
+
* Displays the Dropi brand logo with size variants.
|
|
2831
|
+
*/
|
|
2832
|
+
interface DropiLogo {
|
|
2833
|
+
/**
|
|
2834
|
+
* Size variant
|
|
2835
|
+
* @default 'large'
|
|
2836
|
+
*/
|
|
2837
|
+
"size"?: 'small' | 'large';
|
|
2838
|
+
/**
|
|
2839
|
+
* Theme (reserved for future use)
|
|
2840
|
+
* @default 'light'
|
|
2841
|
+
*/
|
|
2842
|
+
"theme"?: 'dark' | 'light';
|
|
2843
|
+
/**
|
|
2844
|
+
* Logo image URL
|
|
2845
|
+
* @default ''
|
|
2846
|
+
*/
|
|
2847
|
+
"urlLogo"?: string;
|
|
2848
|
+
}
|
|
2849
|
+
/**
|
|
2850
|
+
* @component dropi-lottie-loader
|
|
2851
|
+
* Full-screen or inline loading overlay with a Lottie animation.
|
|
2852
|
+
*/
|
|
2853
|
+
interface DropiLottieLoader {
|
|
2854
|
+
/**
|
|
2855
|
+
* Title shown below the animation
|
|
2856
|
+
* @default ''
|
|
2857
|
+
*/
|
|
2858
|
+
"loaderTitle"?: string;
|
|
2859
|
+
/**
|
|
2860
|
+
* Path to the Lottie JSON animation file
|
|
2861
|
+
* @default ''
|
|
2862
|
+
*/
|
|
2863
|
+
"loadingAnimation"?: string;
|
|
2864
|
+
/**
|
|
2865
|
+
* Descriptive message below the title
|
|
2866
|
+
* @default ''
|
|
2867
|
+
*/
|
|
2868
|
+
"message"?: string;
|
|
2869
|
+
/**
|
|
2870
|
+
* Show or hide the loader
|
|
2871
|
+
* @default false
|
|
2872
|
+
*/
|
|
2873
|
+
"visible"?: boolean;
|
|
2874
|
+
}
|
|
1556
2875
|
/**
|
|
1557
2876
|
* @component dropi-modal
|
|
1558
2877
|
* Modal/dialog with backdrop, close button, and header/content/footer slots.
|
|
@@ -1599,6 +2918,40 @@ declare namespace LocalJSX {
|
|
|
1599
2918
|
*/
|
|
1600
2919
|
"visible"?: boolean;
|
|
1601
2920
|
}
|
|
2921
|
+
/**
|
|
2922
|
+
* @component dropi-otp-send-code
|
|
2923
|
+
* 6-digit OTP input with countdown timer and resend capability.
|
|
2924
|
+
*/
|
|
2925
|
+
interface DropiOtpSendCode {
|
|
2926
|
+
/**
|
|
2927
|
+
* Delivery method label
|
|
2928
|
+
* @default 'email'
|
|
2929
|
+
*/
|
|
2930
|
+
"engine"?: 'email' | 'sms' | '2fa';
|
|
2931
|
+
/**
|
|
2932
|
+
* Error message to display
|
|
2933
|
+
* @default ''
|
|
2934
|
+
*/
|
|
2935
|
+
"errorMessage"?: string;
|
|
2936
|
+
/**
|
|
2937
|
+
* Contact info (email/phone to show in label)
|
|
2938
|
+
* @default ''
|
|
2939
|
+
*/
|
|
2940
|
+
"labelContact"?: string;
|
|
2941
|
+
/**
|
|
2942
|
+
* Emitted when all 6 digits are entered. e.detail = the complete code string
|
|
2943
|
+
*/
|
|
2944
|
+
"onDropiCodeCompleted"?: (event: DropiOtpSendCodeCustomEvent<string>) => void;
|
|
2945
|
+
/**
|
|
2946
|
+
* Emitted when resend is requested
|
|
2947
|
+
*/
|
|
2948
|
+
"onDropiResend"?: (event: DropiOtpSendCodeCustomEvent<void>) => void;
|
|
2949
|
+
/**
|
|
2950
|
+
* Show contact label
|
|
2951
|
+
* @default true
|
|
2952
|
+
*/
|
|
2953
|
+
"showLabelContact"?: boolean;
|
|
2954
|
+
}
|
|
1602
2955
|
/**
|
|
1603
2956
|
* @component dropi-paginator
|
|
1604
2957
|
* Pagination control with page numbers, prev/next buttons and items-per-page selector.
|
|
@@ -1609,6 +2962,11 @@ declare namespace LocalJSX {
|
|
|
1609
2962
|
* @default 5
|
|
1610
2963
|
*/
|
|
1611
2964
|
"maxPages"?: number;
|
|
2965
|
+
/**
|
|
2966
|
+
* Hide "Anterior"/"Siguiente" text labels, show only arrows
|
|
2967
|
+
* @default false
|
|
2968
|
+
*/
|
|
2969
|
+
"noLabels"?: boolean;
|
|
1612
2970
|
/**
|
|
1613
2971
|
* Emitted when page changes. e.detail = { page, pageSize }
|
|
1614
2972
|
*/
|
|
@@ -1682,6 +3040,137 @@ declare namespace LocalJSX {
|
|
|
1682
3040
|
*/
|
|
1683
3041
|
"resetTrigger"?: boolean;
|
|
1684
3042
|
}
|
|
3043
|
+
/**
|
|
3044
|
+
* @component dropi-radio-selection-list
|
|
3045
|
+
* List of radio button options with optional search filter.
|
|
3046
|
+
*/
|
|
3047
|
+
interface DropiRadioSelectionList {
|
|
3048
|
+
/**
|
|
3049
|
+
* Search placeholder
|
|
3050
|
+
* @default 'Buscar...'
|
|
3051
|
+
*/
|
|
3052
|
+
"filterPlaceholder"?: string;
|
|
3053
|
+
/**
|
|
3054
|
+
* Emitted on selection change. e.detail = selected option id
|
|
3055
|
+
*/
|
|
3056
|
+
"onDropiChange"?: (event: DropiRadioSelectionListCustomEvent<string | number>) => void;
|
|
3057
|
+
/**
|
|
3058
|
+
* Emitted on search. e.detail = search text
|
|
3059
|
+
*/
|
|
3060
|
+
"onDropiSearch"?: (event: DropiRadioSelectionListCustomEvent<string>) => void;
|
|
3061
|
+
/**
|
|
3062
|
+
* Options array or JSON string
|
|
3063
|
+
* @default []
|
|
3064
|
+
*/
|
|
3065
|
+
"options"?: RadioOption[] | string;
|
|
3066
|
+
/**
|
|
3067
|
+
* Selected option id
|
|
3068
|
+
* @default ''
|
|
3069
|
+
*/
|
|
3070
|
+
"selectedOption"?: string | number;
|
|
3071
|
+
/**
|
|
3072
|
+
* Show search box
|
|
3073
|
+
* @default false
|
|
3074
|
+
*/
|
|
3075
|
+
"showFilter"?: boolean;
|
|
3076
|
+
/**
|
|
3077
|
+
* Show description below name
|
|
3078
|
+
* @default 'default'
|
|
3079
|
+
*/
|
|
3080
|
+
"typeLayout"?: 'description' | 'default';
|
|
3081
|
+
}
|
|
3082
|
+
/**
|
|
3083
|
+
* @component dropi-read-more
|
|
3084
|
+
* Truncates text to a word limit with an expandable "Ver más / Ver menos" toggle.
|
|
3085
|
+
*/
|
|
3086
|
+
interface DropiReadMore {
|
|
3087
|
+
/**
|
|
3088
|
+
* Maximum number of words before truncating
|
|
3089
|
+
* @default 20
|
|
3090
|
+
*/
|
|
3091
|
+
"maxWords"?: number;
|
|
3092
|
+
/**
|
|
3093
|
+
* Allow collapsing back after expanding
|
|
3094
|
+
* @default true
|
|
3095
|
+
*/
|
|
3096
|
+
"showSeeLess"?: boolean;
|
|
3097
|
+
/**
|
|
3098
|
+
* Full text to display
|
|
3099
|
+
* @default ''
|
|
3100
|
+
*/
|
|
3101
|
+
"text"?: string;
|
|
3102
|
+
}
|
|
3103
|
+
/**
|
|
3104
|
+
* @component dropi-search
|
|
3105
|
+
* Text search input with optional dropdown results list.
|
|
3106
|
+
* Supports single and multi-select, keyboard navigation, and clear button.
|
|
3107
|
+
*/
|
|
3108
|
+
interface DropiSearch {
|
|
3109
|
+
/**
|
|
3110
|
+
* Max height of dropdown (CSS value)
|
|
3111
|
+
* @default '240px'
|
|
3112
|
+
*/
|
|
3113
|
+
"dropdownHeight"?: string;
|
|
3114
|
+
/**
|
|
3115
|
+
* Label shown above the input
|
|
3116
|
+
* @default ''
|
|
3117
|
+
*/
|
|
3118
|
+
"label"?: string;
|
|
3119
|
+
/**
|
|
3120
|
+
* Property name to display and search
|
|
3121
|
+
* @default 'name'
|
|
3122
|
+
*/
|
|
3123
|
+
"labelKey"?: string;
|
|
3124
|
+
/**
|
|
3125
|
+
* Max character length
|
|
3126
|
+
*/
|
|
3127
|
+
"maxlength"?: number;
|
|
3128
|
+
/**
|
|
3129
|
+
* Allow multiple selection
|
|
3130
|
+
* @default false
|
|
3131
|
+
*/
|
|
3132
|
+
"multiSelect"?: boolean;
|
|
3133
|
+
/**
|
|
3134
|
+
* Emitted on blur
|
|
3135
|
+
*/
|
|
3136
|
+
"onDropiBlur"?: (event: DropiSearchCustomEvent<void>) => void;
|
|
3137
|
+
/**
|
|
3138
|
+
* Emitted when selection changes. e.detail = selected items
|
|
3139
|
+
*/
|
|
3140
|
+
"onDropiChange"?: (event: DropiSearchCustomEvent<SearchOption[]>) => void;
|
|
3141
|
+
/**
|
|
3142
|
+
* Emitted when clear button clicked
|
|
3143
|
+
*/
|
|
3144
|
+
"onDropiClear"?: (event: DropiSearchCustomEvent<void>) => void;
|
|
3145
|
+
/**
|
|
3146
|
+
* Emitted on input change. e.detail = current text
|
|
3147
|
+
*/
|
|
3148
|
+
"onDropiInput"?: (event: DropiSearchCustomEvent<string>) => void;
|
|
3149
|
+
/**
|
|
3150
|
+
* Emitted when Enter is pressed. e.detail = current text
|
|
3151
|
+
*/
|
|
3152
|
+
"onDropiKeyEnter"?: (event: DropiSearchCustomEvent<string>) => void;
|
|
3153
|
+
/**
|
|
3154
|
+
* Data source to filter. Pass as array or JSON string
|
|
3155
|
+
* @default []
|
|
3156
|
+
*/
|
|
3157
|
+
"options"?: SearchOption[] | string;
|
|
3158
|
+
/**
|
|
3159
|
+
* Placeholder text
|
|
3160
|
+
* @default 'Buscar...'
|
|
3161
|
+
*/
|
|
3162
|
+
"placeholder"?: string;
|
|
3163
|
+
/**
|
|
3164
|
+
* Show clear (×) button when input has text
|
|
3165
|
+
* @default true
|
|
3166
|
+
*/
|
|
3167
|
+
"showClear"?: boolean;
|
|
3168
|
+
/**
|
|
3169
|
+
* Controlled input value
|
|
3170
|
+
* @default ''
|
|
3171
|
+
*/
|
|
3172
|
+
"value"?: string;
|
|
3173
|
+
}
|
|
1685
3174
|
/**
|
|
1686
3175
|
* @component dropi-select
|
|
1687
3176
|
* Feature-rich select with support for:
|
|
@@ -1809,6 +3298,37 @@ declare namespace LocalJSX {
|
|
|
1809
3298
|
*/
|
|
1810
3299
|
"value"?: SelectOption | null;
|
|
1811
3300
|
}
|
|
3301
|
+
/**
|
|
3302
|
+
* @component dropi-simple-stepper
|
|
3303
|
+
* Compact horizontal stepper using dots or numbers.
|
|
3304
|
+
*/
|
|
3305
|
+
interface DropiSimpleStepper {
|
|
3306
|
+
/**
|
|
3307
|
+
* Current active step (1-based)
|
|
3308
|
+
* @default 1
|
|
3309
|
+
*/
|
|
3310
|
+
"currentStep"?: number;
|
|
3311
|
+
/**
|
|
3312
|
+
* Flow mode (visual only)
|
|
3313
|
+
* @default 'Sequential'
|
|
3314
|
+
*/
|
|
3315
|
+
"flowMode"?: FlowMode;
|
|
3316
|
+
/**
|
|
3317
|
+
* Labels shown below each step. Pass as JSON string or array
|
|
3318
|
+
* @default []
|
|
3319
|
+
*/
|
|
3320
|
+
"labelStepper"?: string[] | string;
|
|
3321
|
+
/**
|
|
3322
|
+
* Total steps
|
|
3323
|
+
* @default 3
|
|
3324
|
+
*/
|
|
3325
|
+
"stepsCount"?: number;
|
|
3326
|
+
/**
|
|
3327
|
+
* Circle content: 'point' (dot) | 'number'
|
|
3328
|
+
* @default 'number'
|
|
3329
|
+
*/
|
|
3330
|
+
"typeStep"?: StepperType;
|
|
3331
|
+
}
|
|
1812
3332
|
/**
|
|
1813
3333
|
* @component dropi-skeleton
|
|
1814
3334
|
* Loading placeholder with shimmer animation.
|
|
@@ -1840,6 +3360,32 @@ declare namespace LocalJSX {
|
|
|
1840
3360
|
*/
|
|
1841
3361
|
"width"?: string;
|
|
1842
3362
|
}
|
|
3363
|
+
/**
|
|
3364
|
+
* @component dropi-steps
|
|
3365
|
+
* Horizontal stepper showing step progress with number/title/description.
|
|
3366
|
+
*/
|
|
3367
|
+
interface DropiSteps {
|
|
3368
|
+
/**
|
|
3369
|
+
* Active/current step index (1-based)
|
|
3370
|
+
* @default 1
|
|
3371
|
+
*/
|
|
3372
|
+
"currentStep"?: number;
|
|
3373
|
+
/**
|
|
3374
|
+
* Show step number inside the circle
|
|
3375
|
+
* @default true
|
|
3376
|
+
*/
|
|
3377
|
+
"showNumberOfStep"?: boolean;
|
|
3378
|
+
/**
|
|
3379
|
+
* Labels for each step. Pass as JSON string or array
|
|
3380
|
+
* @default []
|
|
3381
|
+
*/
|
|
3382
|
+
"stepLabels"?: StepLabel[] | string;
|
|
3383
|
+
/**
|
|
3384
|
+
* Total number of steps
|
|
3385
|
+
* @default 3
|
|
3386
|
+
*/
|
|
3387
|
+
"stepsCount"?: number;
|
|
3388
|
+
}
|
|
1843
3389
|
/**
|
|
1844
3390
|
* @component dropi-switch
|
|
1845
3391
|
* Toggle switch component. Emits dropiChange on toggle.
|
|
@@ -2018,6 +3564,17 @@ declare namespace LocalJSX {
|
|
|
2018
3564
|
*/
|
|
2019
3565
|
"value"?: string;
|
|
2020
3566
|
}
|
|
3567
|
+
/**
|
|
3568
|
+
* @component dropi-time-line
|
|
3569
|
+
* Vertical timeline showing ordered steps with status indicators.
|
|
3570
|
+
*/
|
|
3571
|
+
interface DropiTimeLine {
|
|
3572
|
+
/**
|
|
3573
|
+
* Array of timeline steps. Pass as JSON string or array
|
|
3574
|
+
* @default []
|
|
3575
|
+
*/
|
|
3576
|
+
"steps"?: TimelineStep[] | string;
|
|
3577
|
+
}
|
|
2021
3578
|
/**
|
|
2022
3579
|
* @component dropi-toast
|
|
2023
3580
|
* Global toast notification stack. Place once in the app root, call show() from JS.
|
|
@@ -2065,6 +3622,36 @@ declare namespace LocalJSX {
|
|
|
2065
3622
|
*/
|
|
2066
3623
|
"text"?: string;
|
|
2067
3624
|
}
|
|
3625
|
+
/**
|
|
3626
|
+
* @component dropi-vertical-steps
|
|
3627
|
+
* Vertical step-by-step progress indicator with optional click navigation.
|
|
3628
|
+
*/
|
|
3629
|
+
interface DropiVerticalSteps {
|
|
3630
|
+
/**
|
|
3631
|
+
* Allow clicking completed steps to navigate back
|
|
3632
|
+
* @default false
|
|
3633
|
+
*/
|
|
3634
|
+
"clickable"?: boolean;
|
|
3635
|
+
/**
|
|
3636
|
+
* Currently active step (1-based)
|
|
3637
|
+
* @default 1
|
|
3638
|
+
*/
|
|
3639
|
+
"currentStep"?: number;
|
|
3640
|
+
/**
|
|
3641
|
+
* Emitted when a step is clicked. e.detail = step number (1-based)
|
|
3642
|
+
*/
|
|
3643
|
+
"onDropiStepClick"?: (event: DropiVerticalStepsCustomEvent<number>) => void;
|
|
3644
|
+
/**
|
|
3645
|
+
* Show check icon inside completed step circles
|
|
3646
|
+
* @default true
|
|
3647
|
+
*/
|
|
3648
|
+
"showCheckIcon"?: boolean;
|
|
3649
|
+
/**
|
|
3650
|
+
* Array of steps. Pass as JSON string or array
|
|
3651
|
+
* @default []
|
|
3652
|
+
*/
|
|
3653
|
+
"steps"?: VerticalStep[] | string;
|
|
3654
|
+
}
|
|
2068
3655
|
|
|
2069
3656
|
interface DropiAccordionAttributes {
|
|
2070
3657
|
"header": string;
|
|
@@ -2072,6 +3659,23 @@ declare namespace LocalJSX {
|
|
|
2072
3659
|
"disabled": boolean;
|
|
2073
3660
|
"preIcon": string;
|
|
2074
3661
|
}
|
|
3662
|
+
interface DropiAlertAttributes {
|
|
3663
|
+
"message": string;
|
|
3664
|
+
"type": AlertType;
|
|
3665
|
+
"state": AlertState;
|
|
3666
|
+
"dismissable": boolean;
|
|
3667
|
+
"showButton": boolean;
|
|
3668
|
+
"buttonText": string;
|
|
3669
|
+
"anchorText": string;
|
|
3670
|
+
"anchorUrl": string;
|
|
3671
|
+
"showAlert": boolean;
|
|
3672
|
+
}
|
|
3673
|
+
interface DropiAvatarsAttributes {
|
|
3674
|
+
"image": string;
|
|
3675
|
+
"alt": string;
|
|
3676
|
+
"type": AvatarType;
|
|
3677
|
+
"initials": string;
|
|
3678
|
+
}
|
|
2075
3679
|
interface DropiBadgeAttributes {
|
|
2076
3680
|
"state": BadgeState;
|
|
2077
3681
|
}
|
|
@@ -2084,10 +3688,38 @@ declare namespace LocalJSX {
|
|
|
2084
3688
|
"postIcon": string;
|
|
2085
3689
|
"text": string;
|
|
2086
3690
|
}
|
|
3691
|
+
interface DropiCardSectionAttributes {
|
|
3692
|
+
"sectionTitle": string;
|
|
3693
|
+
"description": string;
|
|
3694
|
+
"typeElement": 'dropdown' | 'switch';
|
|
3695
|
+
"type": 'medium' | 'important';
|
|
3696
|
+
"isChecked": boolean;
|
|
3697
|
+
}
|
|
2087
3698
|
interface DropiCheckboxAttributes {
|
|
2088
3699
|
"checked": boolean;
|
|
2089
3700
|
"disabled": boolean;
|
|
2090
3701
|
}
|
|
3702
|
+
interface DropiCheckboxSelectionListAttributes {
|
|
3703
|
+
"options": CheckboxOption[] | string;
|
|
3704
|
+
"showFilter": boolean;
|
|
3705
|
+
"filterPlaceholder": string;
|
|
3706
|
+
"showNotFound": boolean;
|
|
3707
|
+
"notFoundMessage": string;
|
|
3708
|
+
"multiSelect": boolean;
|
|
3709
|
+
}
|
|
3710
|
+
interface DropiChipsAttributes {
|
|
3711
|
+
"chipStyle": ChipStyle;
|
|
3712
|
+
"type": ChipType;
|
|
3713
|
+
"urlImg": string;
|
|
3714
|
+
"showIcon": boolean;
|
|
3715
|
+
"icon": string;
|
|
3716
|
+
}
|
|
3717
|
+
interface DropiDropdownAttributes {
|
|
3718
|
+
"options": DropdownOption[] | string;
|
|
3719
|
+
"valueModel": string;
|
|
3720
|
+
"imageModel": string;
|
|
3721
|
+
"height": string;
|
|
3722
|
+
}
|
|
2091
3723
|
interface DropiEmptyStateAttributes {
|
|
2092
3724
|
"header": string;
|
|
2093
3725
|
"description": string;
|
|
@@ -2096,12 +3728,26 @@ declare namespace LocalJSX {
|
|
|
2096
3728
|
"actionLabel": string;
|
|
2097
3729
|
"secondaryLabel": string;
|
|
2098
3730
|
}
|
|
3731
|
+
interface DropiFavoriteButtonAttributes {
|
|
3732
|
+
"isFavorite": boolean;
|
|
3733
|
+
}
|
|
2099
3734
|
interface DropiIconAttributes {
|
|
2100
3735
|
"name": string;
|
|
2101
3736
|
"width": string;
|
|
2102
3737
|
"height": string;
|
|
2103
3738
|
"color": string;
|
|
2104
3739
|
}
|
|
3740
|
+
interface DropiImageMiniatureAttributes {
|
|
3741
|
+
"label": string;
|
|
3742
|
+
"images": string[] | string;
|
|
3743
|
+
"width": string;
|
|
3744
|
+
"height": string;
|
|
3745
|
+
}
|
|
3746
|
+
interface DropiImageOverlayAttributes {
|
|
3747
|
+
"visible": boolean;
|
|
3748
|
+
"images": string[] | string;
|
|
3749
|
+
"activeIndex": number;
|
|
3750
|
+
}
|
|
2105
3751
|
interface DropiInputAttributes {
|
|
2106
3752
|
"inputId": string;
|
|
2107
3753
|
"name": string;
|
|
@@ -2126,6 +3772,17 @@ declare namespace LocalJSX {
|
|
|
2126
3772
|
"helperText": string;
|
|
2127
3773
|
"showHelperOnlyOnError": boolean;
|
|
2128
3774
|
}
|
|
3775
|
+
interface DropiLogoAttributes {
|
|
3776
|
+
"urlLogo": string;
|
|
3777
|
+
"size": 'small' | 'large';
|
|
3778
|
+
"theme": 'dark' | 'light';
|
|
3779
|
+
}
|
|
3780
|
+
interface DropiLottieLoaderAttributes {
|
|
3781
|
+
"visible": boolean;
|
|
3782
|
+
"loadingAnimation": string;
|
|
3783
|
+
"loaderTitle": string;
|
|
3784
|
+
"message": string;
|
|
3785
|
+
}
|
|
2129
3786
|
interface DropiModalAttributes {
|
|
2130
3787
|
"visible": boolean;
|
|
2131
3788
|
"header": string;
|
|
@@ -2137,11 +3794,18 @@ declare namespace LocalJSX {
|
|
|
2137
3794
|
"position": ModalPosition;
|
|
2138
3795
|
"size": ModalSize;
|
|
2139
3796
|
}
|
|
3797
|
+
interface DropiOtpSendCodeAttributes {
|
|
3798
|
+
"engine": 'email' | 'sms' | '2fa';
|
|
3799
|
+
"labelContact": string;
|
|
3800
|
+
"showLabelContact": boolean;
|
|
3801
|
+
"errorMessage": string;
|
|
3802
|
+
}
|
|
2140
3803
|
interface DropiPaginatorAttributes {
|
|
2141
3804
|
"total": number;
|
|
2142
3805
|
"pageSize": number;
|
|
2143
3806
|
"page": number;
|
|
2144
3807
|
"maxPages": number;
|
|
3808
|
+
"noLabels": boolean;
|
|
2145
3809
|
"showPageSizeSelector": boolean;
|
|
2146
3810
|
"pageSizeOptions": number[] | string;
|
|
2147
3811
|
}
|
|
@@ -2152,6 +3816,29 @@ declare namespace LocalJSX {
|
|
|
2152
3816
|
"checked": boolean;
|
|
2153
3817
|
"resetTrigger": boolean;
|
|
2154
3818
|
}
|
|
3819
|
+
interface DropiRadioSelectionListAttributes {
|
|
3820
|
+
"options": RadioOption[] | string;
|
|
3821
|
+
"selectedOption": string;
|
|
3822
|
+
"showFilter": boolean;
|
|
3823
|
+
"filterPlaceholder": string;
|
|
3824
|
+
"typeLayout": 'description' | 'default';
|
|
3825
|
+
}
|
|
3826
|
+
interface DropiReadMoreAttributes {
|
|
3827
|
+
"text": string;
|
|
3828
|
+
"maxWords": number;
|
|
3829
|
+
"showSeeLess": boolean;
|
|
3830
|
+
}
|
|
3831
|
+
interface DropiSearchAttributes {
|
|
3832
|
+
"placeholder": string;
|
|
3833
|
+
"value": string;
|
|
3834
|
+
"maxlength": number;
|
|
3835
|
+
"showClear": boolean;
|
|
3836
|
+
"options": SearchOption[] | string;
|
|
3837
|
+
"labelKey": string;
|
|
3838
|
+
"multiSelect": boolean;
|
|
3839
|
+
"dropdownHeight": string;
|
|
3840
|
+
"label": string;
|
|
3841
|
+
}
|
|
2155
3842
|
interface DropiSelectAttributes {
|
|
2156
3843
|
"label": string;
|
|
2157
3844
|
"placeholder": string;
|
|
@@ -2170,6 +3857,13 @@ declare namespace LocalJSX {
|
|
|
2170
3857
|
"preIcon": string;
|
|
2171
3858
|
"defaultSelectedId": string;
|
|
2172
3859
|
}
|
|
3860
|
+
interface DropiSimpleStepperAttributes {
|
|
3861
|
+
"stepsCount": number;
|
|
3862
|
+
"typeStep": StepperType;
|
|
3863
|
+
"currentStep": number;
|
|
3864
|
+
"labelStepper": string[] | string;
|
|
3865
|
+
"flowMode": FlowMode;
|
|
3866
|
+
}
|
|
2173
3867
|
interface DropiSkeletonAttributes {
|
|
2174
3868
|
"variant": SkeletonVariant;
|
|
2175
3869
|
"width": string;
|
|
@@ -2177,6 +3871,12 @@ declare namespace LocalJSX {
|
|
|
2177
3871
|
"borderRadius": string;
|
|
2178
3872
|
"lines": number;
|
|
2179
3873
|
}
|
|
3874
|
+
interface DropiStepsAttributes {
|
|
3875
|
+
"stepsCount": number;
|
|
3876
|
+
"showNumberOfStep": boolean;
|
|
3877
|
+
"currentStep": number;
|
|
3878
|
+
"stepLabels": StepLabel[] | string;
|
|
3879
|
+
}
|
|
2180
3880
|
interface DropiSwitchAttributes {
|
|
2181
3881
|
"isChecked": boolean;
|
|
2182
3882
|
"disabled": boolean;
|
|
@@ -2209,6 +3909,9 @@ declare namespace LocalJSX {
|
|
|
2209
3909
|
"helperText": string;
|
|
2210
3910
|
"invalid": boolean;
|
|
2211
3911
|
}
|
|
3912
|
+
interface DropiTimeLineAttributes {
|
|
3913
|
+
"steps": TimelineStep[] | string;
|
|
3914
|
+
}
|
|
2212
3915
|
interface DropiToastAttributes {
|
|
2213
3916
|
"position": 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left' | 'top-center' | 'bottom-center';
|
|
2214
3917
|
"life": number;
|
|
@@ -2219,26 +3922,51 @@ declare namespace LocalJSX {
|
|
|
2219
3922
|
"maxWidth": string;
|
|
2220
3923
|
"showDelay": number;
|
|
2221
3924
|
}
|
|
3925
|
+
interface DropiVerticalStepsAttributes {
|
|
3926
|
+
"steps": VerticalStep[] | string;
|
|
3927
|
+
"currentStep": number;
|
|
3928
|
+
"clickable": boolean;
|
|
3929
|
+
"showCheckIcon": boolean;
|
|
3930
|
+
}
|
|
2222
3931
|
|
|
2223
3932
|
interface IntrinsicElements {
|
|
2224
3933
|
"dropi-accordion": Omit<DropiAccordion, keyof DropiAccordionAttributes> & { [K in keyof DropiAccordion & keyof DropiAccordionAttributes]?: DropiAccordion[K] } & { [K in keyof DropiAccordion & keyof DropiAccordionAttributes as `attr:${K}`]?: DropiAccordionAttributes[K] } & { [K in keyof DropiAccordion & keyof DropiAccordionAttributes as `prop:${K}`]?: DropiAccordion[K] };
|
|
3934
|
+
"dropi-alert": Omit<DropiAlert, keyof DropiAlertAttributes> & { [K in keyof DropiAlert & keyof DropiAlertAttributes]?: DropiAlert[K] } & { [K in keyof DropiAlert & keyof DropiAlertAttributes as `attr:${K}`]?: DropiAlertAttributes[K] } & { [K in keyof DropiAlert & keyof DropiAlertAttributes as `prop:${K}`]?: DropiAlert[K] };
|
|
3935
|
+
"dropi-avatars": Omit<DropiAvatars, keyof DropiAvatarsAttributes> & { [K in keyof DropiAvatars & keyof DropiAvatarsAttributes]?: DropiAvatars[K] } & { [K in keyof DropiAvatars & keyof DropiAvatarsAttributes as `attr:${K}`]?: DropiAvatarsAttributes[K] } & { [K in keyof DropiAvatars & keyof DropiAvatarsAttributes as `prop:${K}`]?: DropiAvatars[K] };
|
|
2225
3936
|
"dropi-badge": Omit<DropiBadge, keyof DropiBadgeAttributes> & { [K in keyof DropiBadge & keyof DropiBadgeAttributes]?: DropiBadge[K] } & { [K in keyof DropiBadge & keyof DropiBadgeAttributes as `attr:${K}`]?: DropiBadgeAttributes[K] } & { [K in keyof DropiBadge & keyof DropiBadgeAttributes as `prop:${K}`]?: DropiBadge[K] };
|
|
2226
3937
|
"dropi-button": Omit<DropiButton, keyof DropiButtonAttributes> & { [K in keyof DropiButton & keyof DropiButtonAttributes]?: DropiButton[K] } & { [K in keyof DropiButton & keyof DropiButtonAttributes as `attr:${K}`]?: DropiButtonAttributes[K] } & { [K in keyof DropiButton & keyof DropiButtonAttributes as `prop:${K}`]?: DropiButton[K] };
|
|
3938
|
+
"dropi-card-section": Omit<DropiCardSection, keyof DropiCardSectionAttributes> & { [K in keyof DropiCardSection & keyof DropiCardSectionAttributes]?: DropiCardSection[K] } & { [K in keyof DropiCardSection & keyof DropiCardSectionAttributes as `attr:${K}`]?: DropiCardSectionAttributes[K] } & { [K in keyof DropiCardSection & keyof DropiCardSectionAttributes as `prop:${K}`]?: DropiCardSection[K] };
|
|
2227
3939
|
"dropi-checkbox": Omit<DropiCheckbox, keyof DropiCheckboxAttributes> & { [K in keyof DropiCheckbox & keyof DropiCheckboxAttributes]?: DropiCheckbox[K] } & { [K in keyof DropiCheckbox & keyof DropiCheckboxAttributes as `attr:${K}`]?: DropiCheckboxAttributes[K] } & { [K in keyof DropiCheckbox & keyof DropiCheckboxAttributes as `prop:${K}`]?: DropiCheckbox[K] };
|
|
3940
|
+
"dropi-checkbox-selection-list": Omit<DropiCheckboxSelectionList, keyof DropiCheckboxSelectionListAttributes> & { [K in keyof DropiCheckboxSelectionList & keyof DropiCheckboxSelectionListAttributes]?: DropiCheckboxSelectionList[K] } & { [K in keyof DropiCheckboxSelectionList & keyof DropiCheckboxSelectionListAttributes as `attr:${K}`]?: DropiCheckboxSelectionListAttributes[K] } & { [K in keyof DropiCheckboxSelectionList & keyof DropiCheckboxSelectionListAttributes as `prop:${K}`]?: DropiCheckboxSelectionList[K] };
|
|
3941
|
+
"dropi-chips": Omit<DropiChips, keyof DropiChipsAttributes> & { [K in keyof DropiChips & keyof DropiChipsAttributes]?: DropiChips[K] } & { [K in keyof DropiChips & keyof DropiChipsAttributes as `attr:${K}`]?: DropiChipsAttributes[K] } & { [K in keyof DropiChips & keyof DropiChipsAttributes as `prop:${K}`]?: DropiChips[K] };
|
|
3942
|
+
"dropi-dropdown": Omit<DropiDropdown, keyof DropiDropdownAttributes> & { [K in keyof DropiDropdown & keyof DropiDropdownAttributes]?: DropiDropdown[K] } & { [K in keyof DropiDropdown & keyof DropiDropdownAttributes as `attr:${K}`]?: DropiDropdownAttributes[K] } & { [K in keyof DropiDropdown & keyof DropiDropdownAttributes as `prop:${K}`]?: DropiDropdown[K] };
|
|
2228
3943
|
"dropi-empty-state": Omit<DropiEmptyState, keyof DropiEmptyStateAttributes> & { [K in keyof DropiEmptyState & keyof DropiEmptyStateAttributes]?: DropiEmptyState[K] } & { [K in keyof DropiEmptyState & keyof DropiEmptyStateAttributes as `attr:${K}`]?: DropiEmptyStateAttributes[K] } & { [K in keyof DropiEmptyState & keyof DropiEmptyStateAttributes as `prop:${K}`]?: DropiEmptyState[K] };
|
|
3944
|
+
"dropi-favorite-button": Omit<DropiFavoriteButton, keyof DropiFavoriteButtonAttributes> & { [K in keyof DropiFavoriteButton & keyof DropiFavoriteButtonAttributes]?: DropiFavoriteButton[K] } & { [K in keyof DropiFavoriteButton & keyof DropiFavoriteButtonAttributes as `attr:${K}`]?: DropiFavoriteButtonAttributes[K] } & { [K in keyof DropiFavoriteButton & keyof DropiFavoriteButtonAttributes as `prop:${K}`]?: DropiFavoriteButton[K] };
|
|
2229
3945
|
"dropi-icon": Omit<DropiIcon, keyof DropiIconAttributes> & { [K in keyof DropiIcon & keyof DropiIconAttributes]?: DropiIcon[K] } & { [K in keyof DropiIcon & keyof DropiIconAttributes as `attr:${K}`]?: DropiIconAttributes[K] } & { [K in keyof DropiIcon & keyof DropiIconAttributes as `prop:${K}`]?: DropiIcon[K] };
|
|
3946
|
+
"dropi-image-miniature": Omit<DropiImageMiniature, keyof DropiImageMiniatureAttributes> & { [K in keyof DropiImageMiniature & keyof DropiImageMiniatureAttributes]?: DropiImageMiniature[K] } & { [K in keyof DropiImageMiniature & keyof DropiImageMiniatureAttributes as `attr:${K}`]?: DropiImageMiniatureAttributes[K] } & { [K in keyof DropiImageMiniature & keyof DropiImageMiniatureAttributes as `prop:${K}`]?: DropiImageMiniature[K] };
|
|
3947
|
+
"dropi-image-overlay": Omit<DropiImageOverlay, keyof DropiImageOverlayAttributes> & { [K in keyof DropiImageOverlay & keyof DropiImageOverlayAttributes]?: DropiImageOverlay[K] } & { [K in keyof DropiImageOverlay & keyof DropiImageOverlayAttributes as `attr:${K}`]?: DropiImageOverlayAttributes[K] } & { [K in keyof DropiImageOverlay & keyof DropiImageOverlayAttributes as `prop:${K}`]?: DropiImageOverlay[K] };
|
|
2230
3948
|
"dropi-input": Omit<DropiInput, keyof DropiInputAttributes> & { [K in keyof DropiInput & keyof DropiInputAttributes]?: DropiInput[K] } & { [K in keyof DropiInput & keyof DropiInputAttributes as `attr:${K}`]?: DropiInputAttributes[K] } & { [K in keyof DropiInput & keyof DropiInputAttributes as `prop:${K}`]?: DropiInput[K] };
|
|
3949
|
+
"dropi-logo": Omit<DropiLogo, keyof DropiLogoAttributes> & { [K in keyof DropiLogo & keyof DropiLogoAttributes]?: DropiLogo[K] } & { [K in keyof DropiLogo & keyof DropiLogoAttributes as `attr:${K}`]?: DropiLogoAttributes[K] } & { [K in keyof DropiLogo & keyof DropiLogoAttributes as `prop:${K}`]?: DropiLogo[K] };
|
|
3950
|
+
"dropi-lottie-loader": Omit<DropiLottieLoader, keyof DropiLottieLoaderAttributes> & { [K in keyof DropiLottieLoader & keyof DropiLottieLoaderAttributes]?: DropiLottieLoader[K] } & { [K in keyof DropiLottieLoader & keyof DropiLottieLoaderAttributes as `attr:${K}`]?: DropiLottieLoaderAttributes[K] } & { [K in keyof DropiLottieLoader & keyof DropiLottieLoaderAttributes as `prop:${K}`]?: DropiLottieLoader[K] };
|
|
2231
3951
|
"dropi-modal": Omit<DropiModal, keyof DropiModalAttributes> & { [K in keyof DropiModal & keyof DropiModalAttributes]?: DropiModal[K] } & { [K in keyof DropiModal & keyof DropiModalAttributes as `attr:${K}`]?: DropiModalAttributes[K] } & { [K in keyof DropiModal & keyof DropiModalAttributes as `prop:${K}`]?: DropiModal[K] };
|
|
3952
|
+
"dropi-otp-send-code": Omit<DropiOtpSendCode, keyof DropiOtpSendCodeAttributes> & { [K in keyof DropiOtpSendCode & keyof DropiOtpSendCodeAttributes]?: DropiOtpSendCode[K] } & { [K in keyof DropiOtpSendCode & keyof DropiOtpSendCodeAttributes as `attr:${K}`]?: DropiOtpSendCodeAttributes[K] } & { [K in keyof DropiOtpSendCode & keyof DropiOtpSendCodeAttributes as `prop:${K}`]?: DropiOtpSendCode[K] };
|
|
2232
3953
|
"dropi-paginator": Omit<DropiPaginator, keyof DropiPaginatorAttributes> & { [K in keyof DropiPaginator & keyof DropiPaginatorAttributes]?: DropiPaginator[K] } & { [K in keyof DropiPaginator & keyof DropiPaginatorAttributes as `attr:${K}`]?: DropiPaginatorAttributes[K] } & { [K in keyof DropiPaginator & keyof DropiPaginatorAttributes as `prop:${K}`]?: DropiPaginator[K] };
|
|
2233
3954
|
"dropi-radio-button": Omit<DropiRadioButton, keyof DropiRadioButtonAttributes> & { [K in keyof DropiRadioButton & keyof DropiRadioButtonAttributes]?: DropiRadioButton[K] } & { [K in keyof DropiRadioButton & keyof DropiRadioButtonAttributes as `attr:${K}`]?: DropiRadioButtonAttributes[K] } & { [K in keyof DropiRadioButton & keyof DropiRadioButtonAttributes as `prop:${K}`]?: DropiRadioButton[K] };
|
|
3955
|
+
"dropi-radio-selection-list": Omit<DropiRadioSelectionList, keyof DropiRadioSelectionListAttributes> & { [K in keyof DropiRadioSelectionList & keyof DropiRadioSelectionListAttributes]?: DropiRadioSelectionList[K] } & { [K in keyof DropiRadioSelectionList & keyof DropiRadioSelectionListAttributes as `attr:${K}`]?: DropiRadioSelectionListAttributes[K] } & { [K in keyof DropiRadioSelectionList & keyof DropiRadioSelectionListAttributes as `prop:${K}`]?: DropiRadioSelectionList[K] };
|
|
3956
|
+
"dropi-read-more": Omit<DropiReadMore, keyof DropiReadMoreAttributes> & { [K in keyof DropiReadMore & keyof DropiReadMoreAttributes]?: DropiReadMore[K] } & { [K in keyof DropiReadMore & keyof DropiReadMoreAttributes as `attr:${K}`]?: DropiReadMoreAttributes[K] } & { [K in keyof DropiReadMore & keyof DropiReadMoreAttributes as `prop:${K}`]?: DropiReadMore[K] };
|
|
3957
|
+
"dropi-search": Omit<DropiSearch, keyof DropiSearchAttributes> & { [K in keyof DropiSearch & keyof DropiSearchAttributes]?: DropiSearch[K] } & { [K in keyof DropiSearch & keyof DropiSearchAttributes as `attr:${K}`]?: DropiSearchAttributes[K] } & { [K in keyof DropiSearch & keyof DropiSearchAttributes as `prop:${K}`]?: DropiSearch[K] };
|
|
2234
3958
|
"dropi-select": Omit<DropiSelect, keyof DropiSelectAttributes> & { [K in keyof DropiSelect & keyof DropiSelectAttributes]?: DropiSelect[K] } & { [K in keyof DropiSelect & keyof DropiSelectAttributes as `attr:${K}`]?: DropiSelectAttributes[K] } & { [K in keyof DropiSelect & keyof DropiSelectAttributes as `prop:${K}`]?: DropiSelect[K] };
|
|
3959
|
+
"dropi-simple-stepper": Omit<DropiSimpleStepper, keyof DropiSimpleStepperAttributes> & { [K in keyof DropiSimpleStepper & keyof DropiSimpleStepperAttributes]?: DropiSimpleStepper[K] } & { [K in keyof DropiSimpleStepper & keyof DropiSimpleStepperAttributes as `attr:${K}`]?: DropiSimpleStepperAttributes[K] } & { [K in keyof DropiSimpleStepper & keyof DropiSimpleStepperAttributes as `prop:${K}`]?: DropiSimpleStepper[K] };
|
|
2235
3960
|
"dropi-skeleton": Omit<DropiSkeleton, keyof DropiSkeletonAttributes> & { [K in keyof DropiSkeleton & keyof DropiSkeletonAttributes]?: DropiSkeleton[K] } & { [K in keyof DropiSkeleton & keyof DropiSkeletonAttributes as `attr:${K}`]?: DropiSkeletonAttributes[K] } & { [K in keyof DropiSkeleton & keyof DropiSkeletonAttributes as `prop:${K}`]?: DropiSkeleton[K] };
|
|
3961
|
+
"dropi-steps": Omit<DropiSteps, keyof DropiStepsAttributes> & { [K in keyof DropiSteps & keyof DropiStepsAttributes]?: DropiSteps[K] } & { [K in keyof DropiSteps & keyof DropiStepsAttributes as `attr:${K}`]?: DropiStepsAttributes[K] } & { [K in keyof DropiSteps & keyof DropiStepsAttributes as `prop:${K}`]?: DropiSteps[K] };
|
|
2236
3962
|
"dropi-switch": Omit<DropiSwitch, keyof DropiSwitchAttributes> & { [K in keyof DropiSwitch & keyof DropiSwitchAttributes]?: DropiSwitch[K] } & { [K in keyof DropiSwitch & keyof DropiSwitchAttributes as `attr:${K}`]?: DropiSwitchAttributes[K] } & { [K in keyof DropiSwitch & keyof DropiSwitchAttributes as `prop:${K}`]?: DropiSwitch[K] };
|
|
2237
3963
|
"dropi-tabs": Omit<DropiTabs, keyof DropiTabsAttributes> & { [K in keyof DropiTabs & keyof DropiTabsAttributes]?: DropiTabs[K] } & { [K in keyof DropiTabs & keyof DropiTabsAttributes as `attr:${K}`]?: DropiTabsAttributes[K] } & { [K in keyof DropiTabs & keyof DropiTabsAttributes as `prop:${K}`]?: DropiTabs[K] };
|
|
2238
3964
|
"dropi-tag": Omit<DropiTag, keyof DropiTagAttributes> & { [K in keyof DropiTag & keyof DropiTagAttributes]?: DropiTag[K] } & { [K in keyof DropiTag & keyof DropiTagAttributes as `attr:${K}`]?: DropiTagAttributes[K] } & { [K in keyof DropiTag & keyof DropiTagAttributes as `prop:${K}`]?: DropiTag[K] };
|
|
2239
3965
|
"dropi-text-area": Omit<DropiTextArea, keyof DropiTextAreaAttributes> & { [K in keyof DropiTextArea & keyof DropiTextAreaAttributes]?: DropiTextArea[K] } & { [K in keyof DropiTextArea & keyof DropiTextAreaAttributes as `attr:${K}`]?: DropiTextAreaAttributes[K] } & { [K in keyof DropiTextArea & keyof DropiTextAreaAttributes as `prop:${K}`]?: DropiTextArea[K] };
|
|
3966
|
+
"dropi-time-line": Omit<DropiTimeLine, keyof DropiTimeLineAttributes> & { [K in keyof DropiTimeLine & keyof DropiTimeLineAttributes]?: DropiTimeLine[K] } & { [K in keyof DropiTimeLine & keyof DropiTimeLineAttributes as `attr:${K}`]?: DropiTimeLineAttributes[K] } & { [K in keyof DropiTimeLine & keyof DropiTimeLineAttributes as `prop:${K}`]?: DropiTimeLine[K] };
|
|
2240
3967
|
"dropi-toast": Omit<DropiToast, keyof DropiToastAttributes> & { [K in keyof DropiToast & keyof DropiToastAttributes]?: DropiToast[K] } & { [K in keyof DropiToast & keyof DropiToastAttributes as `attr:${K}`]?: DropiToastAttributes[K] } & { [K in keyof DropiToast & keyof DropiToastAttributes as `prop:${K}`]?: DropiToast[K] };
|
|
2241
3968
|
"dropi-tooltip": Omit<DropiTooltip, keyof DropiTooltipAttributes> & { [K in keyof DropiTooltip & keyof DropiTooltipAttributes]?: DropiTooltip[K] } & { [K in keyof DropiTooltip & keyof DropiTooltipAttributes as `attr:${K}`]?: DropiTooltipAttributes[K] } & { [K in keyof DropiTooltip & keyof DropiTooltipAttributes as `prop:${K}`]?: DropiTooltip[K] };
|
|
3969
|
+
"dropi-vertical-steps": Omit<DropiVerticalSteps, keyof DropiVerticalStepsAttributes> & { [K in keyof DropiVerticalSteps & keyof DropiVerticalStepsAttributes]?: DropiVerticalSteps[K] } & { [K in keyof DropiVerticalSteps & keyof DropiVerticalStepsAttributes as `attr:${K}`]?: DropiVerticalStepsAttributes[K] } & { [K in keyof DropiVerticalSteps & keyof DropiVerticalStepsAttributes as `prop:${K}`]?: DropiVerticalSteps[K] };
|
|
2242
3970
|
}
|
|
2243
3971
|
}
|
|
2244
3972
|
export { LocalJSX as JSX };
|
|
@@ -2253,6 +3981,17 @@ declare module "@stencil/core" {
|
|
|
2253
3981
|
* </dropi-accordion>
|
|
2254
3982
|
*/
|
|
2255
3983
|
"dropi-accordion": LocalJSX.IntrinsicElements["dropi-accordion"] & JSXBase.HTMLAttributes<HTMLDropiAccordionElement>;
|
|
3984
|
+
/**
|
|
3985
|
+
* @component dropi-alert
|
|
3986
|
+
* Alert banner with state variants (success/error/warning/info),
|
|
3987
|
+
* optional action button, anchor link, and dismissable close icon.
|
|
3988
|
+
*/
|
|
3989
|
+
"dropi-alert": LocalJSX.IntrinsicElements["dropi-alert"] & JSXBase.HTMLAttributes<HTMLDropiAlertElement>;
|
|
3990
|
+
/**
|
|
3991
|
+
* @component dropi-avatars
|
|
3992
|
+
* Avatar component with image, initials fallback, and type-based size variants.
|
|
3993
|
+
*/
|
|
3994
|
+
"dropi-avatars": LocalJSX.IntrinsicElements["dropi-avatars"] & JSXBase.HTMLAttributes<HTMLDropiAvatarsElement>;
|
|
2256
3995
|
/**
|
|
2257
3996
|
* @component dropi-badge
|
|
2258
3997
|
* Status badge for user/account states.
|
|
@@ -2264,23 +4003,60 @@ declare module "@stencil/core" {
|
|
|
2264
4003
|
* Supports pre/post icons and a loading spinner.
|
|
2265
4004
|
*/
|
|
2266
4005
|
"dropi-button": LocalJSX.IntrinsicElements["dropi-button"] & JSXBase.HTMLAttributes<HTMLDropiButtonElement>;
|
|
4006
|
+
/**
|
|
4007
|
+
* @component dropi-card-section
|
|
4008
|
+
* Section card with title, description and a switch or dropdown control.
|
|
4009
|
+
*/
|
|
4010
|
+
"dropi-card-section": LocalJSX.IntrinsicElements["dropi-card-section"] & JSXBase.HTMLAttributes<HTMLDropiCardSectionElement>;
|
|
2267
4011
|
/**
|
|
2268
4012
|
* @component dropi-checkbox
|
|
2269
4013
|
* A styled checkbox that emits change events.
|
|
2270
4014
|
* Supports form association via native `<input type="checkbox">` internals.
|
|
2271
4015
|
*/
|
|
2272
4016
|
"dropi-checkbox": LocalJSX.IntrinsicElements["dropi-checkbox"] & JSXBase.HTMLAttributes<HTMLDropiCheckboxElement>;
|
|
4017
|
+
/**
|
|
4018
|
+
* @component dropi-checkbox-selection-list
|
|
4019
|
+
* Searchable list of checkbox options with multi-select support.
|
|
4020
|
+
*/
|
|
4021
|
+
"dropi-checkbox-selection-list": LocalJSX.IntrinsicElements["dropi-checkbox-selection-list"] & JSXBase.HTMLAttributes<HTMLDropiCheckboxSelectionListElement>;
|
|
4022
|
+
/**
|
|
4023
|
+
* @component dropi-chips
|
|
4024
|
+
* Chip/tag-like element with optional icon, avatar, and close button.
|
|
4025
|
+
* Use <slot> for the chip label text.
|
|
4026
|
+
*/
|
|
4027
|
+
"dropi-chips": LocalJSX.IntrinsicElements["dropi-chips"] & JSXBase.HTMLAttributes<HTMLDropiChipsElement>;
|
|
4028
|
+
/**
|
|
4029
|
+
* @component dropi-dropdown
|
|
4030
|
+
* Scrollable list with checkboxes for multi-selection.
|
|
4031
|
+
* Pass options as an array (JS) or JSON string.
|
|
4032
|
+
*/
|
|
4033
|
+
"dropi-dropdown": LocalJSX.IntrinsicElements["dropi-dropdown"] & JSXBase.HTMLAttributes<HTMLDropiDropdownElement>;
|
|
2273
4034
|
/**
|
|
2274
4035
|
* @component dropi-empty-state
|
|
2275
4036
|
* Empty state illustration with title, description and optional action button.
|
|
2276
4037
|
*/
|
|
2277
4038
|
"dropi-empty-state": LocalJSX.IntrinsicElements["dropi-empty-state"] & JSXBase.HTMLAttributes<HTMLDropiEmptyStateElement>;
|
|
4039
|
+
/**
|
|
4040
|
+
* @component dropi-favorite-button
|
|
4041
|
+
* Heart toggle button for marking items as favorite.
|
|
4042
|
+
*/
|
|
4043
|
+
"dropi-favorite-button": LocalJSX.IntrinsicElements["dropi-favorite-button"] & JSXBase.HTMLAttributes<HTMLDropiFavoriteButtonElement>;
|
|
2278
4044
|
/**
|
|
2279
4045
|
* @component dropi-icon
|
|
2280
4046
|
* Renders an SVG icon from the Dropi sprite sheet.
|
|
2281
4047
|
* The sprite must be available at `assets/icons/sprite.svg`.
|
|
2282
4048
|
*/
|
|
2283
4049
|
"dropi-icon": LocalJSX.IntrinsicElements["dropi-icon"] & JSXBase.HTMLAttributes<HTMLDropiIconElement>;
|
|
4050
|
+
/**
|
|
4051
|
+
* @component dropi-image-miniature
|
|
4052
|
+
* Grid of image thumbnails with zoom-on-hover overlay trigger.
|
|
4053
|
+
*/
|
|
4054
|
+
"dropi-image-miniature": LocalJSX.IntrinsicElements["dropi-image-miniature"] & JSXBase.HTMLAttributes<HTMLDropiImageMiniatureElement>;
|
|
4055
|
+
/**
|
|
4056
|
+
* @component dropi-image-overlay
|
|
4057
|
+
* Full-screen image lightbox with prev/next navigation and thumbnails.
|
|
4058
|
+
*/
|
|
4059
|
+
"dropi-image-overlay": LocalJSX.IntrinsicElements["dropi-image-overlay"] & JSXBase.HTMLAttributes<HTMLDropiImageOverlayElement>;
|
|
2284
4060
|
/**
|
|
2285
4061
|
* @component dropi-input
|
|
2286
4062
|
* Text input with floating label, validation states, password toggle,
|
|
@@ -2295,12 +4071,27 @@ declare module "@stencil/core" {
|
|
|
2295
4071
|
* Pass `value` and listen to `dropiInput` to update.
|
|
2296
4072
|
*/
|
|
2297
4073
|
"dropi-input": LocalJSX.IntrinsicElements["dropi-input"] & JSXBase.HTMLAttributes<HTMLDropiInputElement>;
|
|
4074
|
+
/**
|
|
4075
|
+
* @component dropi-logo
|
|
4076
|
+
* Displays the Dropi brand logo with size variants.
|
|
4077
|
+
*/
|
|
4078
|
+
"dropi-logo": LocalJSX.IntrinsicElements["dropi-logo"] & JSXBase.HTMLAttributes<HTMLDropiLogoElement>;
|
|
4079
|
+
/**
|
|
4080
|
+
* @component dropi-lottie-loader
|
|
4081
|
+
* Full-screen or inline loading overlay with a Lottie animation.
|
|
4082
|
+
*/
|
|
4083
|
+
"dropi-lottie-loader": LocalJSX.IntrinsicElements["dropi-lottie-loader"] & JSXBase.HTMLAttributes<HTMLDropiLottieLoaderElement>;
|
|
2298
4084
|
/**
|
|
2299
4085
|
* @component dropi-modal
|
|
2300
4086
|
* Modal/dialog with backdrop, close button, and header/content/footer slots.
|
|
2301
4087
|
* Slots: (default) body, "header" custom header, "footer" actions.
|
|
2302
4088
|
*/
|
|
2303
4089
|
"dropi-modal": LocalJSX.IntrinsicElements["dropi-modal"] & JSXBase.HTMLAttributes<HTMLDropiModalElement>;
|
|
4090
|
+
/**
|
|
4091
|
+
* @component dropi-otp-send-code
|
|
4092
|
+
* 6-digit OTP input with countdown timer and resend capability.
|
|
4093
|
+
*/
|
|
4094
|
+
"dropi-otp-send-code": LocalJSX.IntrinsicElements["dropi-otp-send-code"] & JSXBase.HTMLAttributes<HTMLDropiOtpSendCodeElement>;
|
|
2304
4095
|
/**
|
|
2305
4096
|
* @component dropi-paginator
|
|
2306
4097
|
* Pagination control with page numbers, prev/next buttons and items-per-page selector.
|
|
@@ -2311,6 +4102,22 @@ declare module "@stencil/core" {
|
|
|
2311
4102
|
* Styled radio button with label.
|
|
2312
4103
|
*/
|
|
2313
4104
|
"dropi-radio-button": LocalJSX.IntrinsicElements["dropi-radio-button"] & JSXBase.HTMLAttributes<HTMLDropiRadioButtonElement>;
|
|
4105
|
+
/**
|
|
4106
|
+
* @component dropi-radio-selection-list
|
|
4107
|
+
* List of radio button options with optional search filter.
|
|
4108
|
+
*/
|
|
4109
|
+
"dropi-radio-selection-list": LocalJSX.IntrinsicElements["dropi-radio-selection-list"] & JSXBase.HTMLAttributes<HTMLDropiRadioSelectionListElement>;
|
|
4110
|
+
/**
|
|
4111
|
+
* @component dropi-read-more
|
|
4112
|
+
* Truncates text to a word limit with an expandable "Ver más / Ver menos" toggle.
|
|
4113
|
+
*/
|
|
4114
|
+
"dropi-read-more": LocalJSX.IntrinsicElements["dropi-read-more"] & JSXBase.HTMLAttributes<HTMLDropiReadMoreElement>;
|
|
4115
|
+
/**
|
|
4116
|
+
* @component dropi-search
|
|
4117
|
+
* Text search input with optional dropdown results list.
|
|
4118
|
+
* Supports single and multi-select, keyboard navigation, and clear button.
|
|
4119
|
+
*/
|
|
4120
|
+
"dropi-search": LocalJSX.IntrinsicElements["dropi-search"] & JSXBase.HTMLAttributes<HTMLDropiSearchElement>;
|
|
2314
4121
|
/**
|
|
2315
4122
|
* @component dropi-select
|
|
2316
4123
|
* Feature-rich select with support for:
|
|
@@ -2331,11 +4138,21 @@ declare module "@stencil/core" {
|
|
|
2331
4138
|
* ```
|
|
2332
4139
|
*/
|
|
2333
4140
|
"dropi-select": LocalJSX.IntrinsicElements["dropi-select"] & JSXBase.HTMLAttributes<HTMLDropiSelectElement>;
|
|
4141
|
+
/**
|
|
4142
|
+
* @component dropi-simple-stepper
|
|
4143
|
+
* Compact horizontal stepper using dots or numbers.
|
|
4144
|
+
*/
|
|
4145
|
+
"dropi-simple-stepper": LocalJSX.IntrinsicElements["dropi-simple-stepper"] & JSXBase.HTMLAttributes<HTMLDropiSimpleStepperElement>;
|
|
2334
4146
|
/**
|
|
2335
4147
|
* @component dropi-skeleton
|
|
2336
4148
|
* Loading placeholder with shimmer animation.
|
|
2337
4149
|
*/
|
|
2338
4150
|
"dropi-skeleton": LocalJSX.IntrinsicElements["dropi-skeleton"] & JSXBase.HTMLAttributes<HTMLDropiSkeletonElement>;
|
|
4151
|
+
/**
|
|
4152
|
+
* @component dropi-steps
|
|
4153
|
+
* Horizontal stepper showing step progress with number/title/description.
|
|
4154
|
+
*/
|
|
4155
|
+
"dropi-steps": LocalJSX.IntrinsicElements["dropi-steps"] & JSXBase.HTMLAttributes<HTMLDropiStepsElement>;
|
|
2339
4156
|
/**
|
|
2340
4157
|
* @component dropi-switch
|
|
2341
4158
|
* Toggle switch component. Emits dropiChange on toggle.
|
|
@@ -2361,6 +4178,11 @@ declare module "@stencil/core" {
|
|
|
2361
4178
|
* helper text, and native form association.
|
|
2362
4179
|
*/
|
|
2363
4180
|
"dropi-text-area": LocalJSX.IntrinsicElements["dropi-text-area"] & JSXBase.HTMLAttributes<HTMLDropiTextAreaElement>;
|
|
4181
|
+
/**
|
|
4182
|
+
* @component dropi-time-line
|
|
4183
|
+
* Vertical timeline showing ordered steps with status indicators.
|
|
4184
|
+
*/
|
|
4185
|
+
"dropi-time-line": LocalJSX.IntrinsicElements["dropi-time-line"] & JSXBase.HTMLAttributes<HTMLDropiTimeLineElement>;
|
|
2364
4186
|
/**
|
|
2365
4187
|
* @component dropi-toast
|
|
2366
4188
|
* Global toast notification stack. Place once in the app root, call show() from JS.
|
|
@@ -2376,6 +4198,11 @@ declare module "@stencil/core" {
|
|
|
2376
4198
|
* </dropi-tooltip>
|
|
2377
4199
|
*/
|
|
2378
4200
|
"dropi-tooltip": LocalJSX.IntrinsicElements["dropi-tooltip"] & JSXBase.HTMLAttributes<HTMLDropiTooltipElement>;
|
|
4201
|
+
/**
|
|
4202
|
+
* @component dropi-vertical-steps
|
|
4203
|
+
* Vertical step-by-step progress indicator with optional click navigation.
|
|
4204
|
+
*/
|
|
4205
|
+
"dropi-vertical-steps": LocalJSX.IntrinsicElements["dropi-vertical-steps"] & JSXBase.HTMLAttributes<HTMLDropiVerticalStepsElement>;
|
|
2379
4206
|
}
|
|
2380
4207
|
}
|
|
2381
4208
|
}
|