pdm-ui-kit 0.1.2 → 0.1.4
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/corelusa-pdm-ui-kit/README.md +79 -0
- package/dist/corelusa-pdm-ui-kit/esm2020/corelusa-pdm-ui-kit.mjs +5 -0
- package/{fesm2015/pdm-ui-kit.mjs → dist/corelusa-pdm-ui-kit/fesm2015/corelusa-pdm-ui-kit.mjs} +1 -1
- package/dist/corelusa-pdm-ui-kit/fesm2015/corelusa-pdm-ui-kit.mjs.map +1 -0
- package/{fesm2020/pdm-ui-kit.mjs → dist/corelusa-pdm-ui-kit/fesm2020/corelusa-pdm-ui-kit.mjs} +1 -1
- package/dist/corelusa-pdm-ui-kit/fesm2020/corelusa-pdm-ui-kit.mjs.map +1 -0
- package/dist/corelusa-pdm-ui-kit/index.d.ts +5 -0
- package/dist/corelusa-pdm-ui-kit/package.json +47 -0
- package/dist/pdm-ui-kit/README.md +128 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/accordion/accordion.component.mjs +42 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/alert/alert.component.mjs +35 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/alert-dialog/alert-dialog.component.mjs +69 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/aspect-ratio/aspect-ratio.component.mjs +31 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/avatar/avatar.component.mjs +46 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/badge/badge.component.mjs +23 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +29 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/button/button.component.mjs +82 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/button-group/button-group.component.mjs +23 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/calendar/calendar.component.mjs +71 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/card/card.component.mjs +65 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/carousel/carousel.component.mjs +97 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/chart/chart.component.mjs +174 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/checkbox/checkbox.component.mjs +47 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/collapsible/collapsible.component.mjs +43 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/combobox/combobox.component.mjs +51 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/command/command.component.mjs +75 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/context-menu/context-menu.component.mjs +78 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/data-table/data-table.component.mjs +89 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/date-picker/date-picker.component.mjs +63 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/dialog/dialog.component.mjs +90 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/drawer/drawer.component.mjs +72 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/dropdown-menu/dropdown-menu.component.mjs +120 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/empty/empty.component.mjs +58 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/field/field.component.mjs +64 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/hover-card/hover-card.component.mjs +44 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/icon/icon.component.mjs +94 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/input/input.component.mjs +65 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/input-group/input-group.component.mjs +63 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/input-otp/input-otp.component.mjs +140 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/input-password/input-password.component.mjs +72 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/item/item.component.mjs +23 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/kbd/kbd.component.mjs +17 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/label/label.component.mjs +23 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/menubar/menubar.component.mjs +31 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/native-select/native-select.component.mjs +42 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/navigation-menu/navigation-menu.component.mjs +20 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/pagination/pagination.component.mjs +47 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/popover/popover.component.mjs +58 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/progress/progress.component.mjs +33 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/radio-group/radio-group.component.mjs +38 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/scroll-area/scroll-area.component.mjs +20 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/select/select.component.mjs +38 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/separator/separator.component.mjs +26 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/sheet/sheet.component.mjs +39 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/sidebar/sidebar.component.mjs +20 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/skeleton/skeleton.component.mjs +17 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/slider/slider.component.mjs +46 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/sonner/sonner.component.mjs +39 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/spinner/spinner.component.mjs +20 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/switch/switch.component.mjs +35 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/table/table.component.mjs +17 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/tabs/tabs.component.mjs +31 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/textarea/textarea.component.mjs +59 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/toggle/toggle.component.mjs +41 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/toggle-group/toggle-group.component.mjs +31 -0
- package/dist/pdm-ui-kit/esm2020/lib/components/tooltip/tooltip.component.mjs +33 -0
- package/dist/pdm-ui-kit/esm2020/lib/pdm-ui-kit.module.mjs +245 -0
- package/dist/pdm-ui-kit/esm2020/public-api.mjs +59 -0
- package/dist/pdm-ui-kit/fesm2015/pdm-ui-kit.mjs +2980 -0
- package/dist/pdm-ui-kit/fesm2015/pdm-ui-kit.mjs.map +1 -0
- package/dist/pdm-ui-kit/fesm2020/pdm-ui-kit.mjs +2975 -0
- package/dist/pdm-ui-kit/fesm2020/pdm-ui-kit.mjs.map +1 -0
- package/dist/pdm-ui-kit/lib/components/accordion/accordion.component.d.ts +19 -0
- package/dist/pdm-ui-kit/lib/components/alert/alert.component.d.ts +13 -0
- package/dist/pdm-ui-kit/lib/components/alert-dialog/alert-dialog.component.d.ts +21 -0
- package/dist/pdm-ui-kit/lib/components/aspect-ratio/aspect-ratio.component.d.ts +10 -0
- package/dist/pdm-ui-kit/lib/components/avatar/avatar.component.d.ts +20 -0
- package/dist/pdm-ui-kit/lib/components/badge/badge.component.d.ts +9 -0
- package/dist/pdm-ui-kit/lib/components/breadcrumb/breadcrumb.component.d.ts +10 -0
- package/dist/pdm-ui-kit/lib/components/button/button.component.d.ts +24 -0
- package/dist/pdm-ui-kit/lib/components/button-group/button-group.component.d.ts +9 -0
- package/dist/pdm-ui-kit/lib/components/calendar/calendar.component.d.ts +28 -0
- package/dist/pdm-ui-kit/lib/components/card/card.component.d.ts +24 -0
- package/dist/pdm-ui-kit/lib/components/carousel/carousel.component.d.ts +25 -0
- package/dist/pdm-ui-kit/lib/components/chart/chart.component.d.ts +41 -0
- package/dist/pdm-ui-kit/lib/components/checkbox/checkbox.component.d.ts +17 -0
- package/dist/pdm-ui-kit/lib/components/collapsible/collapsible.component.d.ts +14 -0
- package/dist/pdm-ui-kit/lib/components/combobox/combobox.component.d.ts +18 -0
- package/dist/pdm-ui-kit/lib/components/command/command.component.d.ts +33 -0
- package/dist/pdm-ui-kit/lib/components/context-menu/context-menu.component.d.ts +26 -0
- package/dist/pdm-ui-kit/lib/components/data-table/data-table.component.d.ts +36 -0
- package/dist/pdm-ui-kit/lib/components/date-picker/date-picker.component.d.ts +23 -0
- package/dist/pdm-ui-kit/lib/components/dialog/dialog.component.d.ts +30 -0
- package/dist/pdm-ui-kit/lib/components/drawer/drawer.component.d.ts +27 -0
- package/dist/pdm-ui-kit/lib/components/dropdown-menu/dropdown-menu.component.d.ts +34 -0
- package/dist/pdm-ui-kit/lib/components/empty/empty.component.d.ts +19 -0
- package/dist/pdm-ui-kit/lib/components/field/field.component.d.ts +23 -0
- package/dist/pdm-ui-kit/lib/components/hover-card/hover-card.component.d.ts +14 -0
- package/dist/pdm-ui-kit/lib/components/icon/icon.component.d.ts +18 -0
- package/dist/pdm-ui-kit/lib/components/input/input.component.d.ts +23 -0
- package/dist/pdm-ui-kit/lib/components/input-group/input-group.component.d.ts +22 -0
- package/dist/pdm-ui-kit/lib/components/input-otp/input-otp.component.d.ts +26 -0
- package/dist/pdm-ui-kit/lib/components/input-password/input-password.component.d.ts +25 -0
- package/dist/pdm-ui-kit/lib/components/item/item.component.d.ts +8 -0
- package/dist/pdm-ui-kit/lib/components/kbd/kbd.component.d.ts +6 -0
- package/dist/pdm-ui-kit/lib/components/label/label.component.d.ts +8 -0
- package/dist/pdm-ui-kit/lib/components/menubar/menubar.component.d.ts +17 -0
- package/dist/pdm-ui-kit/lib/components/native-select/native-select.component.d.ts +20 -0
- package/dist/pdm-ui-kit/lib/components/navigation-menu/navigation-menu.component.d.ts +12 -0
- package/dist/pdm-ui-kit/lib/components/pagination/pagination.component.d.ts +13 -0
- package/dist/pdm-ui-kit/lib/components/popover/popover.component.d.ts +17 -0
- package/dist/pdm-ui-kit/lib/components/progress/progress.component.d.ts +10 -0
- package/dist/pdm-ui-kit/lib/components/radio-group/radio-group.component.d.ts +19 -0
- package/dist/pdm-ui-kit/lib/components/scroll-area/scroll-area.component.d.ts +7 -0
- package/dist/pdm-ui-kit/lib/components/select/select.component.d.ts +19 -0
- package/dist/pdm-ui-kit/lib/components/separator/separator.component.d.ts +9 -0
- package/dist/pdm-ui-kit/lib/components/sheet/sheet.component.d.ts +13 -0
- package/dist/pdm-ui-kit/lib/components/sidebar/sidebar.component.d.ts +7 -0
- package/dist/pdm-ui-kit/lib/components/skeleton/skeleton.component.d.ts +6 -0
- package/dist/pdm-ui-kit/lib/components/slider/slider.component.d.ts +15 -0
- package/dist/pdm-ui-kit/lib/components/sonner/sonner.component.d.ts +13 -0
- package/dist/pdm-ui-kit/lib/components/spinner/spinner.component.d.ts +7 -0
- package/dist/pdm-ui-kit/lib/components/switch/switch.component.d.ts +13 -0
- package/dist/pdm-ui-kit/lib/components/table/table.component.d.ts +6 -0
- package/dist/pdm-ui-kit/lib/components/tabs/tabs.component.d.ts +16 -0
- package/dist/pdm-ui-kit/lib/components/textarea/textarea.component.d.ts +21 -0
- package/dist/pdm-ui-kit/lib/components/toggle/toggle.component.d.ts +14 -0
- package/dist/pdm-ui-kit/lib/components/toggle-group/toggle-group.component.d.ts +16 -0
- package/dist/pdm-ui-kit/lib/components/tooltip/tooltip.component.d.ts +10 -0
- package/dist/pdm-ui-kit/lib/pdm-ui-kit.module.d.ts +64 -0
- package/dist/pdm-ui-kit/package.json +44 -0
- package/dist/pdm-ui-kit/public-api.d.ts +58 -0
- package/ng-package.json +8 -0
- package/package.json +13 -20
- package/pdm-ui-kit-0.1.1.tgz +0 -0
- package/pdm-ui-kit-0.1.2.tgz +0 -0
- package/pdm-ui-kit-0.1.3.tgz +0 -0
- package/pdm-ui-kit-0.1.4.tgz +0 -0
- package/src/lib/components/accordion/accordion.component.html +34 -0
- package/src/lib/components/accordion/accordion.component.ts +38 -0
- package/src/lib/components/alert/alert.component.html +52 -0
- package/src/lib/components/alert/alert.component.ts +25 -0
- package/src/lib/components/alert-dialog/alert-dialog.component.html +41 -0
- package/src/lib/components/alert-dialog/alert-dialog.component.ts +45 -0
- package/src/lib/components/aspect-ratio/aspect-ratio.component.html +11 -0
- package/src/lib/components/aspect-ratio/aspect-ratio.component.ts +18 -0
- package/src/lib/components/avatar/avatar.component.html +21 -0
- package/src/lib/components/avatar/avatar.component.ts +32 -0
- package/src/lib/components/badge/badge.component.html +28 -0
- package/src/lib/components/badge/badge.component.ts +23 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.html +39 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.ts +26 -0
- package/src/lib/components/button/button.component.html +15 -0
- package/src/lib/components/button/button.component.ts +84 -0
- package/src/lib/components/button-group/button-group.component.html +39 -0
- package/src/lib/components/button-group/button-group.component.ts +15 -0
- package/src/lib/components/calendar/calendar.component.html +73 -0
- package/src/lib/components/calendar/calendar.component.ts +78 -0
- package/src/lib/components/card/card.component.html +77 -0
- package/src/lib/components/card/card.component.ts +39 -0
- package/src/lib/components/carousel/carousel.component.html +86 -0
- package/src/lib/components/carousel/carousel.component.ts +100 -0
- package/src/lib/components/chart/chart.component.html +143 -0
- package/src/lib/components/chart/chart.component.ts +147 -0
- package/src/lib/components/checkbox/checkbox.component.html +38 -0
- package/src/lib/components/checkbox/checkbox.component.ts +32 -0
- package/src/lib/components/collapsible/collapsible.component.html +26 -0
- package/src/lib/components/collapsible/collapsible.component.ts +29 -0
- package/src/lib/components/combobox/combobox.component.html +42 -0
- package/src/lib/components/combobox/combobox.component.ts +32 -0
- package/src/lib/components/command/command.component.html +55 -0
- package/src/lib/components/command/command.component.ts +67 -0
- package/src/lib/components/context-menu/context-menu.component.html +47 -0
- package/src/lib/components/context-menu/context-menu.component.ts +67 -0
- package/src/lib/components/data-table/data-table.component.html +63 -0
- package/src/lib/components/data-table/data-table.component.ts +78 -0
- package/src/lib/components/date-picker/date-picker.component.html +38 -0
- package/src/lib/components/date-picker/date-picker.component.ts +38 -0
- package/src/lib/components/dialog/dialog.component.html +78 -0
- package/src/lib/components/dialog/dialog.component.ts +55 -0
- package/src/lib/components/drawer/drawer.component.html +56 -0
- package/src/lib/components/drawer/drawer.component.ts +43 -0
- package/src/lib/components/dropdown-menu/dropdown-menu.component.html +56 -0
- package/src/lib/components/dropdown-menu/dropdown-menu.component.ts +126 -0
- package/src/lib/components/empty/empty.component.html +29 -0
- package/src/lib/components/empty/empty.component.ts +35 -0
- package/src/lib/components/field/field.component.html +26 -0
- package/src/lib/components/field/field.component.ts +42 -0
- package/src/lib/components/hover-card/hover-card.component.html +24 -0
- package/src/lib/components/hover-card/hover-card.component.ts +36 -0
- package/src/lib/components/icon/icon.component.html +286 -0
- package/src/lib/components/icon/icon.component.ts +133 -0
- package/src/lib/components/input/input.component.html +25 -0
- package/src/lib/components/input/input.component.ts +33 -0
- package/src/lib/components/input-group/input-group.component.html +59 -0
- package/src/lib/components/input-group/input-group.component.ts +32 -0
- package/src/lib/components/input-otp/input-otp.component.html +25 -0
- package/src/lib/components/input-otp/input-otp.component.ts +146 -0
- package/src/lib/components/input-password/input-password.component.html +66 -0
- package/src/lib/components/input-password/input-password.component.ts +46 -0
- package/src/lib/components/item/item.component.html +10 -0
- package/src/lib/components/item/item.component.ts +12 -0
- package/src/lib/components/kbd/kbd.component.html +3 -0
- package/src/lib/components/kbd/kbd.component.ts +10 -0
- package/src/lib/components/label/label.component.html +7 -0
- package/src/lib/components/label/label.component.ts +12 -0
- package/src/lib/components/menubar/menubar.component.html +16 -0
- package/src/lib/components/menubar/menubar.component.ts +29 -0
- package/src/lib/components/native-select/native-select.component.html +17 -0
- package/src/lib/components/native-select/native-select.component.ts +28 -0
- package/src/lib/components/navigation-menu/navigation-menu.component.html +15 -0
- package/src/lib/components/navigation-menu/navigation-menu.component.ts +17 -0
- package/src/lib/components/pagination/pagination.component.html +30 -0
- package/src/lib/components/pagination/pagination.component.ts +37 -0
- package/src/lib/components/popover/popover.component.html +6 -0
- package/src/lib/components/popover/popover.component.ts +40 -0
- package/src/lib/components/progress/progress.component.html +9 -0
- package/src/lib/components/progress/progress.component.ts +20 -0
- package/src/lib/components/radio-group/radio-group.component.html +25 -0
- package/src/lib/components/radio-group/radio-group.component.ts +30 -0
- package/src/lib/components/scroll-area/scroll-area.component.html +5 -0
- package/src/lib/components/scroll-area/scroll-area.component.ts +11 -0
- package/src/lib/components/select/select.component.html +14 -0
- package/src/lib/components/select/select.component.ts +27 -0
- package/src/lib/components/separator/separator.component.html +5 -0
- package/src/lib/components/separator/separator.component.ts +16 -0
- package/src/lib/components/sheet/sheet.component.html +10 -0
- package/src/lib/components/sheet/sheet.component.ts +28 -0
- package/src/lib/components/sidebar/sidebar.component.html +3 -0
- package/src/lib/components/sidebar/sidebar.component.ts +11 -0
- package/src/lib/components/skeleton/skeleton.component.html +1 -0
- package/src/lib/components/skeleton/skeleton.component.ts +10 -0
- package/src/lib/components/slider/slider.component.html +15 -0
- package/src/lib/components/slider/slider.component.ts +31 -0
- package/src/lib/components/sonner/sonner.component.html +10 -0
- package/src/lib/components/sonner/sonner.component.ts +25 -0
- package/src/lib/components/spinner/spinner.component.html +6 -0
- package/src/lib/components/spinner/spinner.component.ts +11 -0
- package/src/lib/components/switch/switch.component.html +14 -0
- package/src/lib/components/switch/switch.component.ts +20 -0
- package/src/lib/components/table/table.component.html +5 -0
- package/src/lib/components/table/table.component.ts +10 -0
- package/src/lib/components/tabs/tabs.component.html +21 -0
- package/src/lib/components/tabs/tabs.component.ts +26 -0
- package/src/lib/components/textarea/textarea.component.html +21 -0
- package/src/lib/components/textarea/textarea.component.ts +28 -0
- package/src/lib/components/toggle/toggle.component.html +16 -0
- package/src/lib/components/toggle/toggle.component.ts +29 -0
- package/src/lib/components/toggle-group/toggle-group.component.html +17 -0
- package/src/lib/components/toggle-group/toggle-group.component.ts +26 -0
- package/src/lib/components/tooltip/tooltip.component.html +6 -0
- package/src/lib/components/tooltip/tooltip.component.ts +20 -0
- package/src/lib/pdm-ui-kit.module.ts +126 -0
- package/src/public-api.ts +58 -0
- package/tsconfig.json +30 -0
- package/tsconfig.lib.json +17 -0
- package/fesm2015/pdm-ui-kit.mjs.map +0 -1
- package/fesm2020/pdm-ui-kit.mjs.map +0 -1
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/accordion/accordion.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/alert/alert.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/alert-dialog/alert-dialog.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/aspect-ratio/aspect-ratio.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/avatar/avatar.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/badge/badge.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/breadcrumb/breadcrumb.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/button/button.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/button-group/button-group.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/calendar/calendar.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/card/card.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/carousel/carousel.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/chart/chart.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/checkbox/checkbox.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/collapsible/collapsible.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/combobox/combobox.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/command/command.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/context-menu/context-menu.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/data-table/data-table.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/date-picker/date-picker.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/dialog/dialog.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/drawer/drawer.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/dropdown-menu/dropdown-menu.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/empty/empty.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/field/field.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/hover-card/hover-card.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/icon/icon.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/input/input.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/input-group/input-group.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/input-otp/input-otp.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/input-password/input-password.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/item/item.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/kbd/kbd.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/label/label.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/menubar/menubar.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/native-select/native-select.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/navigation-menu/navigation-menu.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/pagination/pagination.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/popover/popover.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/progress/progress.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/radio-group/radio-group.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/scroll-area/scroll-area.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/select/select.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/separator/separator.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/sheet/sheet.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/sidebar/sidebar.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/skeleton/skeleton.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/slider/slider.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/sonner/sonner.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/spinner/spinner.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/switch/switch.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/table/table.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/tabs/tabs.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/textarea/textarea.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/toggle/toggle.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/toggle-group/toggle-group.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/components/tooltip/tooltip.component.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/lib/pdm-ui-kit.module.mjs +0 -0
- /package/{esm2020 → dist/corelusa-pdm-ui-kit/esm2020}/public-api.mjs +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/accordion/accordion.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/alert/alert.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/alert-dialog/alert-dialog.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/aspect-ratio/aspect-ratio.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/avatar/avatar.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/badge/badge.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/breadcrumb/breadcrumb.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/button/button.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/button-group/button-group.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/calendar/calendar.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/card/card.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/carousel/carousel.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/chart/chart.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/checkbox/checkbox.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/collapsible/collapsible.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/combobox/combobox.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/command/command.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/context-menu/context-menu.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/data-table/data-table.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/date-picker/date-picker.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/dialog/dialog.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/drawer/drawer.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/dropdown-menu/dropdown-menu.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/empty/empty.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/field/field.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/hover-card/hover-card.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/icon/icon.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/input/input.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/input-group/input-group.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/input-otp/input-otp.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/input-password/input-password.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/item/item.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/kbd/kbd.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/label/label.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/menubar/menubar.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/native-select/native-select.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/navigation-menu/navigation-menu.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/pagination/pagination.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/popover/popover.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/progress/progress.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/radio-group/radio-group.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/scroll-area/scroll-area.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/select/select.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/separator/separator.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/sheet/sheet.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/sidebar/sidebar.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/skeleton/skeleton.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/slider/slider.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/sonner/sonner.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/spinner/spinner.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/switch/switch.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/table/table.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/tabs/tabs.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/textarea/textarea.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/toggle/toggle.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/toggle-group/toggle-group.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/components/tooltip/tooltip.component.d.ts +0 -0
- /package/{lib → dist/corelusa-pdm-ui-kit/lib}/pdm-ui-kit.module.d.ts +0 -0
- /package/{public-api.d.ts → dist/corelusa-pdm-ui-kit/public-api.d.ts} +0 -0
- /package/{esm2020 → dist/pdm-ui-kit/esm2020}/pdm-ui-kit.mjs +0 -0
- /package/{index.d.ts → dist/pdm-ui-kit/index.d.ts} +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PdmInputComponent {
|
|
4
|
+
id: string;
|
|
5
|
+
type: string;
|
|
6
|
+
value: string;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
required: boolean;
|
|
11
|
+
invalid: boolean;
|
|
12
|
+
className: string;
|
|
13
|
+
inputClassName: string;
|
|
14
|
+
label: string;
|
|
15
|
+
helperText: string;
|
|
16
|
+
errorText: string;
|
|
17
|
+
valueChange: EventEmitter<string>;
|
|
18
|
+
blurred: EventEmitter<FocusEvent>;
|
|
19
|
+
onInput(event: Event): void;
|
|
20
|
+
onBlur(event: FocusEvent): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmInputComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmInputComponent, "pdm-input", never, { "id": "id"; "type": "type"; "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "invalid": "invalid"; "className": "className"; "inputClassName": "inputClassName"; "label": "label"; "helperText": "helperText"; "errorText": "errorText"; }, { "valueChange": "valueChange"; "blurred": "blurred"; }, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PdmInputGroupComponent {
|
|
4
|
+
id: string;
|
|
5
|
+
type: string;
|
|
6
|
+
value: string;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
invalid: boolean;
|
|
10
|
+
prefixText: string;
|
|
11
|
+
suffixText: string;
|
|
12
|
+
prefixIcon: string;
|
|
13
|
+
suffixIcon: string;
|
|
14
|
+
buttonText: string;
|
|
15
|
+
className: string;
|
|
16
|
+
valueChange: EventEmitter<string>;
|
|
17
|
+
buttonClick: EventEmitter<MouseEvent>;
|
|
18
|
+
onInput(event: Event): void;
|
|
19
|
+
onButtonClick(event: MouseEvent): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmInputGroupComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmInputGroupComponent, "pdm-input-group", never, { "id": "id"; "type": "type"; "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; "invalid": "invalid"; "prefixText": "prefixText"; "suffixText": "suffixText"; "prefixIcon": "prefixIcon"; "suffixIcon": "suffixIcon"; "buttonText": "buttonText"; "className": "className"; }, { "valueChange": "valueChange"; "buttonClick": "buttonClick"; }, never, ["[pdmInputGroupPrefix]", "[pdmInputGroupSuffix]"], false, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PdmInputOtpComponent {
|
|
4
|
+
length: number;
|
|
5
|
+
groupSize: number;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
invalid: boolean;
|
|
8
|
+
className: string;
|
|
9
|
+
valueChange: EventEmitter<string>;
|
|
10
|
+
completed: EventEmitter<string>;
|
|
11
|
+
private readonly inputs?;
|
|
12
|
+
values: string[];
|
|
13
|
+
ngOnChanges(): void;
|
|
14
|
+
trackByIndex(index: number): number;
|
|
15
|
+
onInput(index: number, event: Event): void;
|
|
16
|
+
onKeyDown(index: number, event: KeyboardEvent): void;
|
|
17
|
+
onPaste(event: ClipboardEvent): void;
|
|
18
|
+
getInputClasses(index: number): string;
|
|
19
|
+
shouldShowSeparator(index: number): boolean;
|
|
20
|
+
private isGroupStart;
|
|
21
|
+
private isGroupEnd;
|
|
22
|
+
private emit;
|
|
23
|
+
private focusInput;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmInputOtpComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmInputOtpComponent, "pdm-input-otp", never, { "length": "length"; "groupSize": "groupSize"; "disabled": "disabled"; "invalid": "invalid"; "className": "className"; }, { "valueChange": "valueChange"; "completed": "completed"; }, never, never, false, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PdmInputPasswordComponent {
|
|
4
|
+
id: string;
|
|
5
|
+
value: string;
|
|
6
|
+
placeholder: string;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
readonly: boolean;
|
|
9
|
+
required: boolean;
|
|
10
|
+
invalid: boolean;
|
|
11
|
+
className: string;
|
|
12
|
+
inputClassName: string;
|
|
13
|
+
label: string;
|
|
14
|
+
helperText: string;
|
|
15
|
+
errorText: string;
|
|
16
|
+
valueChange: EventEmitter<string>;
|
|
17
|
+
blurred: EventEmitter<FocusEvent>;
|
|
18
|
+
showPassword: boolean;
|
|
19
|
+
get inputType(): 'text' | 'password';
|
|
20
|
+
onInput(event: Event): void;
|
|
21
|
+
onBlur(event: FocusEvent): void;
|
|
22
|
+
toggleVisibility(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmInputPasswordComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmInputPasswordComponent, "pdm-input-password", never, { "id": "id"; "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "invalid": "invalid"; "className": "className"; "inputClassName": "inputClassName"; "label": "label"; "helperText": "helperText"; "errorText": "errorText"; }, { "valueChange": "valueChange"; "blurred": "blurred"; }, never, never, false, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmItemComponent {
|
|
3
|
+
className: string;
|
|
4
|
+
disabled: boolean;
|
|
5
|
+
selected: boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmItemComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmItemComponent, "pdm-item", never, { "className": "className"; "disabled": "disabled"; "selected": "selected"; }, {}, never, ["*"], false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmKbdComponent {
|
|
3
|
+
className: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmKbdComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmKbdComponent, "pdm-kbd", never, { "className": "className"; }, {}, never, ["*"], false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmLabelComponent {
|
|
3
|
+
forId: string;
|
|
4
|
+
required: boolean;
|
|
5
|
+
className: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmLabelComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmLabelComponent, "pdm-label", never, { "forId": "forId"; "required": "required"; "className": "className"; }, {}, never, ["*"], false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { PdmMenuItem } from '../dropdown-menu/dropdown-menu.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface PdmMenubarItem {
|
|
5
|
+
label: string;
|
|
6
|
+
items: PdmMenuItem[];
|
|
7
|
+
}
|
|
8
|
+
export declare class PdmMenubarComponent {
|
|
9
|
+
menus: PdmMenubarItem[];
|
|
10
|
+
className: string;
|
|
11
|
+
itemSelect: EventEmitter<string>;
|
|
12
|
+
openIndex: number;
|
|
13
|
+
toggle(index: number): void;
|
|
14
|
+
select(value: string): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmMenubarComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmMenubarComponent, "pdm-menubar", never, { "menus": "menus"; "className": "className"; }, { "itemSelect": "itemSelect"; }, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface PdmNativeSelectOption {
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare class PdmNativeSelectComponent {
|
|
9
|
+
id: string;
|
|
10
|
+
value: string;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
invalid: boolean;
|
|
13
|
+
options: PdmNativeSelectOption[];
|
|
14
|
+
placeholder: string;
|
|
15
|
+
className: string;
|
|
16
|
+
valueChange: EventEmitter<string>;
|
|
17
|
+
onChange(event: Event): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmNativeSelectComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmNativeSelectComponent, "pdm-native-select", never, { "id": "id"; "value": "value"; "disabled": "disabled"; "invalid": "invalid"; "options": "options"; "placeholder": "placeholder"; "className": "className"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export interface PdmNavigationItem {
|
|
3
|
+
label: string;
|
|
4
|
+
href?: string;
|
|
5
|
+
active?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export declare class PdmNavigationMenuComponent {
|
|
8
|
+
items: PdmNavigationItem[];
|
|
9
|
+
className: string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmNavigationMenuComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmNavigationMenuComponent, "pdm-navigation-menu", never, { "items": "items"; "className": "className"; }, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PdmPaginationComponent {
|
|
4
|
+
page: number;
|
|
5
|
+
pageCount: number;
|
|
6
|
+
maxVisible: number;
|
|
7
|
+
className: string;
|
|
8
|
+
pageChange: EventEmitter<number>;
|
|
9
|
+
get visiblePages(): number[];
|
|
10
|
+
setPage(next: number): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmPaginationComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmPaginationComponent, "pdm-pagination", never, { "page": "page"; "pageCount": "pageCount"; "maxVisible": "maxVisible"; "className": "className"; }, { "pageChange": "pageChange"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PdmPopoverComponent {
|
|
4
|
+
private readonly elementRef;
|
|
5
|
+
open: boolean;
|
|
6
|
+
triggerText: string;
|
|
7
|
+
className: string;
|
|
8
|
+
panelClassName: string;
|
|
9
|
+
showTrigger: boolean;
|
|
10
|
+
openChange: EventEmitter<boolean>;
|
|
11
|
+
constructor(elementRef: ElementRef<HTMLElement>);
|
|
12
|
+
toggle(): void;
|
|
13
|
+
onEsc(): void;
|
|
14
|
+
onDocumentClick(event: MouseEvent): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmPopoverComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmPopoverComponent, "pdm-popover", never, { "open": "open"; "triggerText": "triggerText"; "className": "className"; "panelClassName": "panelClassName"; "showTrigger": "showTrigger"; }, { "openChange": "openChange"; }, never, ["*"], false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmProgressComponent {
|
|
3
|
+
value: number;
|
|
4
|
+
max: number;
|
|
5
|
+
indeterminate: boolean;
|
|
6
|
+
className: string;
|
|
7
|
+
get width(): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmProgressComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmProgressComponent, "pdm-progress", never, { "value": "value"; "max": "max"; "indeterminate": "indeterminate"; "className": "className"; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface PdmRadioOption {
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare class PdmRadioGroupComponent {
|
|
9
|
+
name: string;
|
|
10
|
+
value: string;
|
|
11
|
+
options: PdmRadioOption[];
|
|
12
|
+
direction: 'vertical' | 'horizontal';
|
|
13
|
+
className: string;
|
|
14
|
+
valueChange: EventEmitter<string>;
|
|
15
|
+
optionId(option: PdmRadioOption): string;
|
|
16
|
+
onChange(event: Event): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmRadioGroupComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmRadioGroupComponent, "pdm-radio-group", never, { "name": "name"; "value": "value"; "options": "options"; "direction": "direction"; "className": "className"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmScrollAreaComponent {
|
|
3
|
+
maxHeight: string;
|
|
4
|
+
className: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmScrollAreaComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmScrollAreaComponent, "pdm-scroll-area", never, { "maxHeight": "maxHeight"; "className": "className"; }, {}, never, ["*"], false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface PdmSelectOption {
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare class PdmSelectComponent {
|
|
9
|
+
id: string;
|
|
10
|
+
value: string;
|
|
11
|
+
options: PdmSelectOption[];
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
invalid: boolean;
|
|
14
|
+
className: string;
|
|
15
|
+
valueChange: EventEmitter<string>;
|
|
16
|
+
onChange(event: Event): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSelectComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSelectComponent, "pdm-select", never, { "id": "id"; "value": "value"; "options": "options"; "disabled": "disabled"; "invalid": "invalid"; "className": "className"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmSeparatorComponent {
|
|
3
|
+
orientation: 'horizontal' | 'vertical';
|
|
4
|
+
decorative: boolean;
|
|
5
|
+
className: string;
|
|
6
|
+
get orientationClass(): string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSeparatorComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSeparatorComponent, "pdm-separator", never, { "orientation": "orientation"; "decorative": "decorative"; "className": "className"; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export type PdmSheetSide = 'top' | 'right' | 'bottom' | 'left';
|
|
4
|
+
export declare class PdmSheetComponent {
|
|
5
|
+
open: boolean;
|
|
6
|
+
side: PdmSheetSide;
|
|
7
|
+
className: string;
|
|
8
|
+
openChange: EventEmitter<boolean>;
|
|
9
|
+
close(): void;
|
|
10
|
+
get panelClass(): string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSheetComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSheetComponent, "pdm-sheet", never, { "open": "open"; "side": "side"; "className": "className"; }, { "openChange": "openChange"; }, never, ["*"], false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmSidebarComponent {
|
|
3
|
+
collapsed: boolean;
|
|
4
|
+
className: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSidebarComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSidebarComponent, "pdm-sidebar", never, { "collapsed": "collapsed"; "className": "className"; }, {}, never, ["*"], false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmSkeletonComponent {
|
|
3
|
+
className: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSkeletonComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSkeletonComponent, "pdm-skeleton", never, { "className": "className"; }, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PdmSliderComponent {
|
|
4
|
+
min: number;
|
|
5
|
+
max: number;
|
|
6
|
+
step: number;
|
|
7
|
+
value: number;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
className: string;
|
|
10
|
+
valueChange: EventEmitter<number>;
|
|
11
|
+
get percentage(): number;
|
|
12
|
+
onInput(event: Event): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSliderComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSliderComponent, "pdm-slider", never, { "min": "min"; "max": "max"; "step": "step"; "value": "value"; "disabled": "disabled"; "className": "className"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export type PdmToastTone = 'default' | 'success' | 'error' | 'warning';
|
|
4
|
+
export declare class PdmSonnerComponent {
|
|
5
|
+
title: string;
|
|
6
|
+
description: string;
|
|
7
|
+
tone: PdmToastTone;
|
|
8
|
+
className: string;
|
|
9
|
+
dismissed: EventEmitter<void>;
|
|
10
|
+
get toneClass(): string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSonnerComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSonnerComponent, "pdm-sonner", never, { "title": "title"; "description": "description"; "tone": "tone"; "className": "className"; }, { "dismissed": "dismissed"; }, never, ["*"], false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmSpinnerComponent {
|
|
3
|
+
size: number;
|
|
4
|
+
className: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSpinnerComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSpinnerComponent, "pdm-spinner", never, { "size": "size"; "className": "className"; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PdmSwitchComponent {
|
|
4
|
+
id: string;
|
|
5
|
+
checked: boolean;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
label: string;
|
|
8
|
+
className: string;
|
|
9
|
+
checkedChange: EventEmitter<boolean>;
|
|
10
|
+
onToggle(event: Event): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSwitchComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSwitchComponent, "pdm-switch", never, { "id": "id"; "checked": "checked"; "disabled": "disabled"; "label": "label"; "className": "className"; }, { "checkedChange": "checkedChange"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmTableComponent {
|
|
3
|
+
className: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmTableComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmTableComponent, "pdm-table", never, { "className": "className"; }, {}, never, ["*"], false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface PdmTabItem {
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare class PdmTabsComponent {
|
|
9
|
+
items: PdmTabItem[];
|
|
10
|
+
value: string;
|
|
11
|
+
className: string;
|
|
12
|
+
valueChange: EventEmitter<string>;
|
|
13
|
+
select(item: PdmTabItem): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmTabsComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmTabsComponent, "pdm-tabs", never, { "items": "items"; "value": "value"; "className": "className"; }, { "valueChange": "valueChange"; }, never, ["*"], false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PdmTextareaComponent {
|
|
4
|
+
id: string;
|
|
5
|
+
value: string;
|
|
6
|
+
placeholder: string;
|
|
7
|
+
rows: number;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
required: boolean;
|
|
11
|
+
invalid: boolean;
|
|
12
|
+
className: string;
|
|
13
|
+
textareaClassName: string;
|
|
14
|
+
label: string;
|
|
15
|
+
helperText: string;
|
|
16
|
+
errorText: string;
|
|
17
|
+
valueChange: EventEmitter<string>;
|
|
18
|
+
onInput(event: Event): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmTextareaComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmTextareaComponent, "pdm-textarea", never, { "id": "id"; "value": "value"; "placeholder": "placeholder"; "rows": "rows"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "invalid": "invalid"; "className": "className"; "textareaClassName": "textareaClassName"; "label": "label"; "helperText": "helperText"; "errorText": "errorText"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export type PdmToggleSize = 'sm' | 'default' | 'lg';
|
|
4
|
+
export declare class PdmToggleComponent {
|
|
5
|
+
pressed: boolean;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
size: PdmToggleSize;
|
|
8
|
+
className: string;
|
|
9
|
+
pressedChange: EventEmitter<boolean>;
|
|
10
|
+
toggle(): void;
|
|
11
|
+
get sizeClass(): string;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmToggleComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmToggleComponent, "pdm-toggle", never, { "pressed": "pressed"; "disabled": "disabled"; "size": "size"; "className": "className"; }, { "pressedChange": "pressedChange"; }, never, ["*"], false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface PdmToggleGroupItem {
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare class PdmToggleGroupComponent {
|
|
9
|
+
items: PdmToggleGroupItem[];
|
|
10
|
+
value: string;
|
|
11
|
+
className: string;
|
|
12
|
+
valueChange: EventEmitter<string>;
|
|
13
|
+
onSelect(next: string, disabled?: boolean): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmToggleGroupComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmToggleGroupComponent, "pdm-toggle-group", never, { "items": "items"; "value": "value"; "className": "className"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PdmTooltipComponent {
|
|
3
|
+
text: string;
|
|
4
|
+
side: 'top' | 'right' | 'bottom' | 'left';
|
|
5
|
+
className: string;
|
|
6
|
+
open: boolean;
|
|
7
|
+
get positionClass(): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmTooltipComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmTooltipComponent, "pdm-tooltip", never, { "text": "text"; "side": "side"; "className": "className"; }, {}, never, ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/accordion/accordion.component";
|
|
3
|
+
import * as i2 from "./components/alert/alert.component";
|
|
4
|
+
import * as i3 from "./components/alert-dialog/alert-dialog.component";
|
|
5
|
+
import * as i4 from "./components/aspect-ratio/aspect-ratio.component";
|
|
6
|
+
import * as i5 from "./components/avatar/avatar.component";
|
|
7
|
+
import * as i6 from "./components/badge/badge.component";
|
|
8
|
+
import * as i7 from "./components/breadcrumb/breadcrumb.component";
|
|
9
|
+
import * as i8 from "./components/button-group/button-group.component";
|
|
10
|
+
import * as i9 from "./components/button/button.component";
|
|
11
|
+
import * as i10 from "./components/calendar/calendar.component";
|
|
12
|
+
import * as i11 from "./components/carousel/carousel.component";
|
|
13
|
+
import * as i12 from "./components/card/card.component";
|
|
14
|
+
import * as i13 from "./components/chart/chart.component";
|
|
15
|
+
import * as i14 from "./components/checkbox/checkbox.component";
|
|
16
|
+
import * as i15 from "./components/collapsible/collapsible.component";
|
|
17
|
+
import * as i16 from "./components/combobox/combobox.component";
|
|
18
|
+
import * as i17 from "./components/command/command.component";
|
|
19
|
+
import * as i18 from "./components/context-menu/context-menu.component";
|
|
20
|
+
import * as i19 from "./components/data-table/data-table.component";
|
|
21
|
+
import * as i20 from "./components/date-picker/date-picker.component";
|
|
22
|
+
import * as i21 from "./components/dialog/dialog.component";
|
|
23
|
+
import * as i22 from "./components/dropdown-menu/dropdown-menu.component";
|
|
24
|
+
import * as i23 from "./components/drawer/drawer.component";
|
|
25
|
+
import * as i24 from "./components/empty/empty.component";
|
|
26
|
+
import * as i25 from "./components/field/field.component";
|
|
27
|
+
import * as i26 from "./components/hover-card/hover-card.component";
|
|
28
|
+
import * as i27 from "./components/icon/icon.component";
|
|
29
|
+
import * as i28 from "./components/item/item.component";
|
|
30
|
+
import * as i29 from "./components/input/input.component";
|
|
31
|
+
import * as i30 from "./components/input-password/input-password.component";
|
|
32
|
+
import * as i31 from "./components/input-group/input-group.component";
|
|
33
|
+
import * as i32 from "./components/input-otp/input-otp.component";
|
|
34
|
+
import * as i33 from "./components/kbd/kbd.component";
|
|
35
|
+
import * as i34 from "./components/label/label.component";
|
|
36
|
+
import * as i35 from "./components/menubar/menubar.component";
|
|
37
|
+
import * as i36 from "./components/native-select/native-select.component";
|
|
38
|
+
import * as i37 from "./components/navigation-menu/navigation-menu.component";
|
|
39
|
+
import * as i38 from "./components/pagination/pagination.component";
|
|
40
|
+
import * as i39 from "./components/popover/popover.component";
|
|
41
|
+
import * as i40 from "./components/progress/progress.component";
|
|
42
|
+
import * as i41 from "./components/radio-group/radio-group.component";
|
|
43
|
+
import * as i42 from "./components/scroll-area/scroll-area.component";
|
|
44
|
+
import * as i43 from "./components/select/select.component";
|
|
45
|
+
import * as i44 from "./components/separator/separator.component";
|
|
46
|
+
import * as i45 from "./components/sheet/sheet.component";
|
|
47
|
+
import * as i46 from "./components/sidebar/sidebar.component";
|
|
48
|
+
import * as i47 from "./components/skeleton/skeleton.component";
|
|
49
|
+
import * as i48 from "./components/slider/slider.component";
|
|
50
|
+
import * as i49 from "./components/sonner/sonner.component";
|
|
51
|
+
import * as i50 from "./components/spinner/spinner.component";
|
|
52
|
+
import * as i51 from "./components/switch/switch.component";
|
|
53
|
+
import * as i52 from "./components/table/table.component";
|
|
54
|
+
import * as i53 from "./components/tabs/tabs.component";
|
|
55
|
+
import * as i54 from "./components/textarea/textarea.component";
|
|
56
|
+
import * as i55 from "./components/toggle/toggle.component";
|
|
57
|
+
import * as i56 from "./components/toggle-group/toggle-group.component";
|
|
58
|
+
import * as i57 from "./components/tooltip/tooltip.component";
|
|
59
|
+
import * as i58 from "@angular/common";
|
|
60
|
+
export declare class PdmUiKitModule {
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmUiKitModule, never>;
|
|
62
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PdmUiKitModule, [typeof i1.PdmAccordionComponent, typeof i2.PdmAlertComponent, typeof i3.PdmAlertDialogComponent, typeof i4.PdmAspectRatioComponent, typeof i5.PdmAvatarComponent, typeof i6.PdmBadgeComponent, typeof i7.PdmBreadcrumbComponent, typeof i8.PdmButtonGroupComponent, typeof i9.PdmButtonComponent, typeof i10.PdmCalendarComponent, typeof i11.PdmCarouselComponent, typeof i12.PdmCardComponent, typeof i13.PdmChartComponent, typeof i14.PdmCheckboxComponent, typeof i15.PdmCollapsibleComponent, typeof i16.PdmComboboxComponent, typeof i17.PdmCommandComponent, typeof i18.PdmContextMenuComponent, typeof i19.PdmDataTableComponent, typeof i20.PdmDatePickerComponent, typeof i21.PdmDialogComponent, typeof i22.PdmDropdownMenuComponent, typeof i23.PdmDrawerComponent, typeof i24.PdmEmptyComponent, typeof i25.PdmFieldComponent, typeof i26.PdmHoverCardComponent, typeof i27.PdmIconComponent, typeof i28.PdmItemComponent, typeof i29.PdmInputComponent, typeof i30.PdmInputPasswordComponent, typeof i31.PdmInputGroupComponent, typeof i32.PdmInputOtpComponent, typeof i33.PdmKbdComponent, typeof i34.PdmLabelComponent, typeof i35.PdmMenubarComponent, typeof i36.PdmNativeSelectComponent, typeof i37.PdmNavigationMenuComponent, typeof i38.PdmPaginationComponent, typeof i39.PdmPopoverComponent, typeof i40.PdmProgressComponent, typeof i41.PdmRadioGroupComponent, typeof i42.PdmScrollAreaComponent, typeof i43.PdmSelectComponent, typeof i44.PdmSeparatorComponent, typeof i45.PdmSheetComponent, typeof i46.PdmSidebarComponent, typeof i47.PdmSkeletonComponent, typeof i48.PdmSliderComponent, typeof i49.PdmSonnerComponent, typeof i50.PdmSpinnerComponent, typeof i51.PdmSwitchComponent, typeof i52.PdmTableComponent, typeof i53.PdmTabsComponent, typeof i54.PdmTextareaComponent, typeof i55.PdmToggleComponent, typeof i56.PdmToggleGroupComponent, typeof i57.PdmTooltipComponent], [typeof i58.CommonModule], [typeof i1.PdmAccordionComponent, typeof i2.PdmAlertComponent, typeof i3.PdmAlertDialogComponent, typeof i4.PdmAspectRatioComponent, typeof i5.PdmAvatarComponent, typeof i6.PdmBadgeComponent, typeof i7.PdmBreadcrumbComponent, typeof i8.PdmButtonGroupComponent, typeof i9.PdmButtonComponent, typeof i10.PdmCalendarComponent, typeof i11.PdmCarouselComponent, typeof i12.PdmCardComponent, typeof i13.PdmChartComponent, typeof i14.PdmCheckboxComponent, typeof i15.PdmCollapsibleComponent, typeof i16.PdmComboboxComponent, typeof i17.PdmCommandComponent, typeof i18.PdmContextMenuComponent, typeof i19.PdmDataTableComponent, typeof i20.PdmDatePickerComponent, typeof i21.PdmDialogComponent, typeof i22.PdmDropdownMenuComponent, typeof i23.PdmDrawerComponent, typeof i24.PdmEmptyComponent, typeof i25.PdmFieldComponent, typeof i26.PdmHoverCardComponent, typeof i27.PdmIconComponent, typeof i28.PdmItemComponent, typeof i29.PdmInputComponent, typeof i30.PdmInputPasswordComponent, typeof i31.PdmInputGroupComponent, typeof i32.PdmInputOtpComponent, typeof i33.PdmKbdComponent, typeof i34.PdmLabelComponent, typeof i35.PdmMenubarComponent, typeof i36.PdmNativeSelectComponent, typeof i37.PdmNavigationMenuComponent, typeof i38.PdmPaginationComponent, typeof i39.PdmPopoverComponent, typeof i40.PdmProgressComponent, typeof i41.PdmRadioGroupComponent, typeof i42.PdmScrollAreaComponent, typeof i43.PdmSelectComponent, typeof i44.PdmSeparatorComponent, typeof i45.PdmSheetComponent, typeof i46.PdmSidebarComponent, typeof i47.PdmSkeletonComponent, typeof i48.PdmSliderComponent, typeof i49.PdmSonnerComponent, typeof i50.PdmSpinnerComponent, typeof i51.PdmSwitchComponent, typeof i52.PdmTableComponent, typeof i53.PdmTabsComponent, typeof i54.PdmTextareaComponent, typeof i55.PdmToggleComponent, typeof i56.PdmToggleGroupComponent, typeof i57.PdmTooltipComponent]>;
|
|
63
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PdmUiKitModule>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pdm-ui-kit",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "PDM UI Kit Angular components",
|
|
5
|
+
"author": "Corelusa",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"angular",
|
|
9
|
+
"ui",
|
|
10
|
+
"components",
|
|
11
|
+
"design-system"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/corelusa/pdm-ui-kit.git"
|
|
16
|
+
},
|
|
17
|
+
"sideEffects": false,
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"@angular/common": ">=13.0.0 <16.0.0",
|
|
20
|
+
"@angular/core": ">=13.0.0 <16.0.0"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"tslib": "^2.3.0"
|
|
24
|
+
},
|
|
25
|
+
"module": "fesm2015/pdm-ui-kit.mjs",
|
|
26
|
+
"es2020": "fesm2020/pdm-ui-kit.mjs",
|
|
27
|
+
"esm2020": "esm2020/pdm-ui-kit.mjs",
|
|
28
|
+
"fesm2020": "fesm2020/pdm-ui-kit.mjs",
|
|
29
|
+
"fesm2015": "fesm2015/pdm-ui-kit.mjs",
|
|
30
|
+
"typings": "index.d.ts",
|
|
31
|
+
"exports": {
|
|
32
|
+
"./package.json": {
|
|
33
|
+
"default": "./package.json"
|
|
34
|
+
},
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./index.d.ts",
|
|
37
|
+
"esm2020": "./esm2020/pdm-ui-kit.mjs",
|
|
38
|
+
"es2020": "./fesm2020/pdm-ui-kit.mjs",
|
|
39
|
+
"es2015": "./fesm2015/pdm-ui-kit.mjs",
|
|
40
|
+
"node": "./fesm2015/pdm-ui-kit.mjs",
|
|
41
|
+
"default": "./fesm2020/pdm-ui-kit.mjs"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|