@tolle_/tolle-ui 18.2.24 → 18.2.25
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/esm2022/lib/accordion-item.component.mjs +17 -5
- package/esm2022/lib/alert-dialog-dynamic.component.mjs +1 -1
- package/esm2022/lib/alert-dialog.component.mjs +48 -10
- package/esm2022/lib/alert-dialog.service.mjs +13 -2
- package/esm2022/lib/alert.component.mjs +5 -5
- package/esm2022/lib/avatar.component.mjs +30 -9
- package/esm2022/lib/badge.component.mjs +41 -15
- package/esm2022/lib/breadcrumb-link.component.mjs +5 -5
- package/esm2022/lib/button.component.mjs +14 -3
- package/esm2022/lib/calendar.component.mjs +99 -17
- package/esm2022/lib/card.component.mjs +29 -9
- package/esm2022/lib/carousel/carousel.component.mjs +19 -3
- package/esm2022/lib/checkbox.component.mjs +44 -21
- package/esm2022/lib/collapsible.component.mjs +12 -4
- package/esm2022/lib/country-selector.component.mjs +140 -20
- package/esm2022/lib/data-table.component.mjs +27 -16
- package/esm2022/lib/date-picker.component.mjs +24 -4
- package/esm2022/lib/date-range-picker.component.mjs +37 -9
- package/esm2022/lib/dropdown-item.component.mjs +19 -5
- package/esm2022/lib/dropdown-label.component.mjs +3 -3
- package/esm2022/lib/dropdown-menu.component.mjs +3 -3
- package/esm2022/lib/dropdown-separator.component.mjs +3 -3
- package/esm2022/lib/dropdown-trigger.directive.mjs +7 -3
- package/esm2022/lib/empty-state.component.mjs +3 -3
- package/esm2022/lib/hover-card.component.mjs +4 -2
- package/esm2022/lib/input.component.mjs +7 -5
- package/esm2022/lib/label.component.mjs +2 -2
- package/esm2022/lib/masked-input.component.mjs +3 -3
- package/esm2022/lib/modal.component.mjs +58 -22
- package/esm2022/lib/modal.service.mjs +13 -1
- package/esm2022/lib/multi-select.component.mjs +228 -20
- package/esm2022/lib/otp.component.mjs +6 -3
- package/esm2022/lib/pagination.component.mjs +19 -9
- package/esm2022/lib/progress.component.mjs +8 -5
- package/esm2022/lib/radio-group.component.mjs +51 -3
- package/esm2022/lib/radio-item.component.mjs +46 -8
- package/esm2022/lib/radio-service.mjs +60 -1
- package/esm2022/lib/range-calendar.component.mjs +317 -98
- package/esm2022/lib/resizable-panel.component.mjs +5 -4
- package/esm2022/lib/scroll-area.component.mjs +5 -5
- package/esm2022/lib/segment.component.mjs +73 -7
- package/esm2022/lib/select-item.component.mjs +20 -2
- package/esm2022/lib/select-separator.component.mjs +3 -3
- package/esm2022/lib/select.component.mjs +221 -14
- package/esm2022/lib/separator.component.mjs +12 -6
- package/esm2022/lib/sheet-ref.mjs +8 -1
- package/esm2022/lib/sheet-wrapper.component.mjs +27 -11
- package/esm2022/lib/sheet.component.mjs +57 -16
- package/esm2022/lib/sheet.service.mjs +5 -1
- package/esm2022/lib/sidebar.component.mjs +73 -15
- package/esm2022/lib/skeleton.component.mjs +19 -5
- package/esm2022/lib/switch.component.mjs +59 -53
- package/esm2022/lib/tabs.component.mjs +75 -13
- package/esm2022/lib/tag-input.component.mjs +6 -3
- package/esm2022/lib/textarea.component.mjs +9 -7
- package/esm2022/lib/theme.service.mjs +114 -138
- package/esm2022/lib/toaster.component.mjs +19 -9
- package/esm2022/lib/toggle-group.component.mjs +76 -4
- package/esm2022/lib/tolle-config.mjs +1 -1
- package/esm2022/lib/tooltip.directive.mjs +41 -17
- package/esm2022/lib/utils/color.mjs +324 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/tolle-ui.mjs +2645 -637
- package/fesm2022/tolle-ui.mjs.map +1 -1
- package/lib/alert-dialog.component.d.ts +10 -1
- package/lib/avatar.component.d.ts +16 -3
- package/lib/badge.component.d.ts +17 -5
- package/lib/button.component.d.ts +10 -3
- package/lib/calendar.component.d.ts +21 -3
- package/lib/card.component.d.ts +6 -0
- package/lib/carousel/carousel.component.d.ts +1 -0
- package/lib/checkbox.component.d.ts +12 -4
- package/lib/country-selector.component.d.ts +11 -2
- package/lib/date-picker.component.d.ts +1 -0
- package/lib/date-range-picker.component.d.ts +4 -1
- package/lib/dropdown-item.component.d.ts +4 -2
- package/lib/dropdown-trigger.directive.d.ts +1 -1
- package/lib/modal.component.d.ts +6 -0
- package/lib/multi-select.component.d.ts +20 -0
- package/lib/otp.component.d.ts +1 -0
- package/lib/progress.component.d.ts +1 -0
- package/lib/radio-group.component.d.ts +8 -0
- package/lib/radio-item.component.d.ts +10 -4
- package/lib/radio-service.d.ts +29 -0
- package/lib/range-calendar.component.d.ts +33 -4
- package/lib/segment.component.d.ts +13 -0
- package/lib/select-item.component.d.ts +4 -1
- package/lib/select.component.d.ts +20 -0
- package/lib/separator.component.d.ts +2 -0
- package/lib/sheet-wrapper.component.d.ts +4 -0
- package/lib/sheet.component.d.ts +10 -1
- package/lib/sidebar.component.d.ts +2 -0
- package/lib/skeleton.component.d.ts +9 -3
- package/lib/switch.component.d.ts +13 -20
- package/lib/tabs.component.d.ts +11 -1
- package/lib/theme.service.d.ts +21 -6
- package/lib/toaster.component.d.ts +2 -2
- package/lib/toggle-group.component.d.ts +20 -2
- package/lib/toggle.component.d.ts +1 -1
- package/lib/tolle-config.d.ts +8 -0
- package/lib/tooltip.directive.d.ts +3 -0
- package/lib/utils/color.d.ts +87 -0
- package/package.json +4 -1
- package/preset.js +28 -0
- package/public-api.d.ts +1 -0
- package/registry/docs-content.json +4214 -0
- package/registry/llms-full.txt +1599 -0
- package/registry/llms.txt +83 -0
- package/registry/manifest.json +4925 -0
- package/registry/r/accordion-item.json +21 -0
- package/registry/r/accordion.json +23 -0
- package/registry/r/alert-dialog-dynamic.json +31 -0
- package/registry/r/alert-dialog.json +26 -0
- package/registry/r/alert.json +23 -0
- package/registry/r/aspect-ratio.json +21 -0
- package/registry/r/avatar-fallback.json +16 -0
- package/registry/r/avatar.json +23 -0
- package/registry/r/badge.json +23 -0
- package/registry/r/breadcrumb-item.json +16 -0
- package/registry/r/breadcrumb-link.json +16 -0
- package/registry/r/breadcrumb-separator.json +16 -0
- package/registry/r/breadcrumb.json +21 -0
- package/registry/r/button-group.json +21 -0
- package/registry/r/button.json +23 -0
- package/registry/r/calendar.json +23 -0
- package/registry/r/card.json +21 -0
- package/registry/r/carousel.json +18 -0
- package/registry/r/checkbox.json +23 -0
- package/registry/r/collapsible.json +21 -0
- package/registry/r/context-menu-trigger.json +23 -0
- package/registry/r/context-menu.json +28 -0
- package/registry/r/country-selector.json +31 -0
- package/registry/r/data-table.json +38 -0
- package/registry/r/date-picker.json +27 -0
- package/registry/r/date-range-picker.json +32 -0
- package/registry/r/dropdown-item.json +21 -0
- package/registry/r/dropdown-label.json +16 -0
- package/registry/r/dropdown-menu.json +16 -0
- package/registry/r/dropdown-separator.json +16 -0
- package/registry/r/dropdown-trigger.json +20 -0
- package/registry/r/empty-state.json +23 -0
- package/registry/r/hover-card.json +23 -0
- package/registry/r/input.json +21 -0
- package/registry/r/label.json +21 -0
- package/registry/r/masked-input.json +21 -0
- package/registry/r/modal.json +36 -0
- package/registry/r/multi-select.json +33 -0
- package/registry/r/otp-group.json +16 -0
- package/registry/r/otp-slot.json +21 -0
- package/registry/r/otp.json +21 -0
- package/registry/r/pagination.json +32 -0
- package/registry/r/phone-number-input.json +34 -0
- package/registry/r/popover-content.json +21 -0
- package/registry/r/popover.json +18 -0
- package/registry/r/progress.json +21 -0
- package/registry/r/radio-group.json +26 -0
- package/registry/r/radio-item.json +26 -0
- package/registry/r/range-calendar.json +28 -0
- package/registry/r/resizable-panel-item.json +23 -0
- package/registry/r/resizable-panel.json +23 -0
- package/registry/r/resizable.json +21 -0
- package/registry/r/scroll-area.json +21 -0
- package/registry/r/segment.json +21 -0
- package/registry/r/select-group.json +21 -0
- package/registry/r/select-item.json +26 -0
- package/registry/r/select-separator.json +21 -0
- package/registry/r/select.json +31 -0
- package/registry/r/separator.json +21 -0
- package/registry/r/sheet-wrapper.json +31 -0
- package/registry/r/sheet.json +21 -0
- package/registry/r/sidebar.json +21 -0
- package/registry/r/skeleton.json +23 -0
- package/registry/r/slider.json +21 -0
- package/registry/r/switch.json +23 -0
- package/registry/r/tabs.json +23 -0
- package/registry/r/tag-input.json +25 -0
- package/registry/r/textarea.json +21 -0
- package/registry/r/toaster.json +26 -0
- package/registry/r/toggle-group.json +25 -0
- package/registry/r/toggle.json +23 -0
- package/registry/r/tolle-cell.json +16 -0
- package/registry/r/tooltip.json +23 -0
- package/registry/registry.json +1540 -0
- package/theme.css +56 -1
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Tolle UI
|
|
2
|
+
|
|
3
|
+
> A high-performance Angular 18 UI library. shadcn-style components you can install from npm (`@tolle_/tolle-ui`) or own via the CLI (`npx @tolle_/cli add <component>`). Config-first theming with CSS variables.
|
|
4
|
+
|
|
5
|
+
## Components
|
|
6
|
+
|
|
7
|
+
- [Accordion](r/accordion.json): Accordion component.
|
|
8
|
+
- [Accordion Item](r/accordion-item.json): Accordion Item component.
|
|
9
|
+
- [Alert](r/alert.json): Alert component with variant options.
|
|
10
|
+
- [Alert Dialog](r/alert-dialog.json): Alert Dialog component.
|
|
11
|
+
- [Alert Dialog Dynamic](r/alert-dialog-dynamic.json): Alert Dialog Dynamic component.
|
|
12
|
+
- [Aspect Ratio](r/aspect-ratio.json): Aspect Ratio component.
|
|
13
|
+
- [Avatar](r/avatar.json): Avatar component with shape and size options.
|
|
14
|
+
- [Avatar Fallback](r/avatar-fallback.json): Avatar Fallback component.
|
|
15
|
+
- [Badge](r/badge.json): Badge component with variant and size options.
|
|
16
|
+
- [Breadcrumb](r/breadcrumb.json): Breadcrumb component.
|
|
17
|
+
- [Breadcrumb Item](r/breadcrumb-item.json): Breadcrumb Item component.
|
|
18
|
+
- [Breadcrumb Link](r/breadcrumb-link.json): Breadcrumb Link component.
|
|
19
|
+
- [Breadcrumb Separator](r/breadcrumb-separator.json): Breadcrumb Separator component.
|
|
20
|
+
- [Button](r/button.json): Button component with variant and size and busy options.
|
|
21
|
+
- [Button Group](r/button-group.json): Button Group component.
|
|
22
|
+
- [Calendar](r/calendar.json): Calendar component.
|
|
23
|
+
- [Card](r/card.json): Card component.
|
|
24
|
+
- [Carousel](r/carousel.json): Carousel component.
|
|
25
|
+
- [Checkbox](r/checkbox.json): Checkbox component with size and checked options.
|
|
26
|
+
- [Collapsible](r/collapsible.json): Collapsible component.
|
|
27
|
+
- [Context Menu](r/context-menu.json): Context Menu component.
|
|
28
|
+
- [Context Menu Trigger](r/context-menu-trigger.json): Context Menu Trigger component.
|
|
29
|
+
- [Country Selector](r/country-selector.json): Country Selector component.
|
|
30
|
+
- [Data Table](r/data-table.json): Data Table component.
|
|
31
|
+
- [Date Picker](r/date-picker.json): Date Picker component.
|
|
32
|
+
- [Date Range Picker](r/date-range-picker.json): Date Range Picker component.
|
|
33
|
+
- [Dropdown Item](r/dropdown-item.json): Dropdown Item component.
|
|
34
|
+
- [Dropdown Label](r/dropdown-label.json): Dropdown Label component.
|
|
35
|
+
- [Dropdown Menu](r/dropdown-menu.json): Dropdown Menu component.
|
|
36
|
+
- [Dropdown Separator](r/dropdown-separator.json): Dropdown Separator component.
|
|
37
|
+
- [Dropdown Trigger](r/dropdown-trigger.json): Dropdown Trigger component.
|
|
38
|
+
- [Empty State](r/empty-state.json): Empty State component with variant options.
|
|
39
|
+
- [Hover Card](r/hover-card.json): Hover Card component.
|
|
40
|
+
- [Input](r/input.json): Input component.
|
|
41
|
+
- [Label](r/label.json): Label component.
|
|
42
|
+
- [Masked Input](r/masked-input.json): Masked Input component.
|
|
43
|
+
- [Modal](r/modal.json): Modal component.
|
|
44
|
+
- [Multi Select](r/multi-select.json): Multi Select component.
|
|
45
|
+
- [Otp](r/otp.json): Otp component.
|
|
46
|
+
- [Otp Group](r/otp-group.json): Otp Group component.
|
|
47
|
+
- [Otp Slot](r/otp-slot.json): Otp Slot component.
|
|
48
|
+
- [Pagination](r/pagination.json): Pagination component.
|
|
49
|
+
- [Phone Number Input](r/phone-number-input.json): Phone Number Input component.
|
|
50
|
+
- [Popover](r/popover.json): Popover component.
|
|
51
|
+
- [Popover Content](r/popover-content.json): Popover Content component.
|
|
52
|
+
- [Progress](r/progress.json): Progress component.
|
|
53
|
+
- [Radio Group](r/radio-group.json): Radio Group component.
|
|
54
|
+
- [Radio Item](r/radio-item.json): Radio Item component.
|
|
55
|
+
- [Range Calendar](r/range-calendar.json): Range Calendar component.
|
|
56
|
+
- [Resizable](r/resizable.json): Resizable component.
|
|
57
|
+
- [Resizable Panel](r/resizable-panel.json): Resizable Panel component.
|
|
58
|
+
- [Resizable Panel Item](r/resizable-panel-item.json): Resizable Panel Item component.
|
|
59
|
+
- [Scroll Area](r/scroll-area.json): Scroll Area component.
|
|
60
|
+
- [Segment](r/segment.json): Segment component.
|
|
61
|
+
- [Select](r/select.json): Select component.
|
|
62
|
+
- [Select Group](r/select-group.json): Select Group component.
|
|
63
|
+
- [Select Item](r/select-item.json): Select Item component.
|
|
64
|
+
- [Select Separator](r/select-separator.json): Select Separator component.
|
|
65
|
+
- [Separator](r/separator.json): Separator component.
|
|
66
|
+
- [Sheet](r/sheet.json): Sheet component.
|
|
67
|
+
- [Sheet Wrapper](r/sheet-wrapper.json): Sheet Wrapper component.
|
|
68
|
+
- [Sidebar](r/sidebar.json): Sidebar component.
|
|
69
|
+
- [Skeleton](r/skeleton.json): Skeleton component with variant options.
|
|
70
|
+
- [Slider](r/slider.json): Slider component.
|
|
71
|
+
- [Switch](r/switch.json): Switch component with size and checked options.
|
|
72
|
+
- [Tabs](r/tabs.json): Tabs component.
|
|
73
|
+
- [Tag Input](r/tag-input.json): Tag Input component.
|
|
74
|
+
- [Textarea](r/textarea.json): Textarea component.
|
|
75
|
+
- [Toaster](r/toaster.json): Toaster component.
|
|
76
|
+
- [Toggle](r/toggle.json): Toggle component with variant and size options.
|
|
77
|
+
- [Toggle Group](r/toggle-group.json): Toggle Group component.
|
|
78
|
+
- [Tolle Cell](r/tolle-cell.json): Tolle Cell component.
|
|
79
|
+
- [Tooltip](r/tooltip.json): Tooltip component.
|
|
80
|
+
|
|
81
|
+
## Reference
|
|
82
|
+
|
|
83
|
+
- [Full component reference](llms-full.txt): every component with inputs, outputs, slots, and variants.
|