shadcn_phlexcomponents 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +39 -0
- data/Rakefile +12 -0
- data/app/assets/tailwind/tailwindcss-animate.css +318 -0
- data/app/assets/tailwind/vanilla-calendar-pro.css +461 -0
- data/app/javascript/controllers/accordion_controller.js +133 -0
- data/app/javascript/controllers/alert_dialog_controller.js +157 -0
- data/app/javascript/controllers/avatar_controller.js +15 -0
- data/app/javascript/controllers/checkbox_controller.js +28 -0
- data/app/javascript/controllers/collapsible_controller.js +35 -0
- data/app/javascript/controllers/combobox_controller.js +291 -0
- data/app/javascript/controllers/datepicker_controller.js +47 -0
- data/app/javascript/controllers/dialog_controller.js +159 -0
- data/app/javascript/controllers/dropdown_menu_controller.js +193 -0
- data/app/javascript/controllers/hover_card_controller.js +135 -0
- data/app/javascript/controllers/loading_button_controller.js +15 -0
- data/app/javascript/controllers/popover_controller.js +124 -0
- data/app/javascript/controllers/progress_controller.js +14 -0
- data/app/javascript/controllers/radio_group_controller.js +90 -0
- data/app/javascript/controllers/select_controller.js +294 -0
- data/app/javascript/controllers/sheet_controller.js +159 -0
- data/app/javascript/controllers/sidebar_controller.js +36 -0
- data/app/javascript/controllers/sidebar_trigger_controller.js +15 -0
- data/app/javascript/controllers/switch_controller.js +24 -0
- data/app/javascript/controllers/tabs_controller.js +73 -0
- data/app/javascript/controllers/theme_switcher_controller.js +32 -0
- data/app/javascript/controllers/toast_container_controller.js +22 -0
- data/app/javascript/controllers/toast_controller.js +45 -0
- data/app/javascript/controllers/tooltip_controller.js +135 -0
- data/lib/components/accordion.rb +38 -0
- data/lib/components/accordion_content.rb +28 -0
- data/lib/components/accordion_item.rb +26 -0
- data/lib/components/accordion_trigger.rb +45 -0
- data/lib/components/alert.rb +40 -0
- data/lib/components/alert_description.rb +11 -0
- data/lib/components/alert_dialog.rb +60 -0
- data/lib/components/alert_dialog_action.rb +22 -0
- data/lib/components/alert_dialog_action_to.rb +37 -0
- data/lib/components/alert_dialog_cancel.rb +22 -0
- data/lib/components/alert_dialog_content.rb +40 -0
- data/lib/components/alert_dialog_description.rb +22 -0
- data/lib/components/alert_dialog_footer.rb +11 -0
- data/lib/components/alert_dialog_header.rb +11 -0
- data/lib/components/alert_dialog_title.rb +22 -0
- data/lib/components/alert_dialog_trigger.rb +50 -0
- data/lib/components/alert_title.rb +11 -0
- data/lib/components/aspect_ratio.rb +19 -0
- data/lib/components/avatar.rb +31 -0
- data/lib/components/avatar_fallback.rb +21 -0
- data/lib/components/avatar_image.rb +20 -0
- data/lib/components/badge.rb +36 -0
- data/lib/components/base.rb +108 -0
- data/lib/components/breadcrumb.rb +51 -0
- data/lib/components/breadcrumb_ellipsis.rb +23 -0
- data/lib/components/breadcrumb_item.rb +11 -0
- data/lib/components/breadcrumb_link.rb +7 -0
- data/lib/components/breadcrumb_page.rb +21 -0
- data/lib/components/breadcrumb_separator.rb +26 -0
- data/lib/components/button.rb +53 -0
- data/lib/components/card.rb +31 -0
- data/lib/components/card_content.rb +11 -0
- data/lib/components/card_description.rb +11 -0
- data/lib/components/card_footer.rb +11 -0
- data/lib/components/card_header.rb +11 -0
- data/lib/components/card_title.rb +11 -0
- data/lib/components/checkbox.rb +65 -0
- data/lib/components/checkbox_group.rb +48 -0
- data/lib/components/collapsible.rb +32 -0
- data/lib/components/collapsible_content.rb +25 -0
- data/lib/components/collapsible_trigger.rb +50 -0
- data/lib/components/datepicker.rb +38 -0
- data/lib/components/dialog.rb +52 -0
- data/lib/components/dialog_close.rb +42 -0
- data/lib/components/dialog_content.rb +54 -0
- data/lib/components/dialog_description.rb +22 -0
- data/lib/components/dialog_footer.rb +11 -0
- data/lib/components/dialog_header.rb +11 -0
- data/lib/components/dialog_title.rb +22 -0
- data/lib/components/dialog_trigger.rb +50 -0
- data/lib/components/dropdown_menu.rb +50 -0
- data/lib/components/dropdown_menu_content.rb +49 -0
- data/lib/components/dropdown_menu_item.rb +57 -0
- data/lib/components/dropdown_menu_item_to.rb +25 -0
- data/lib/components/dropdown_menu_label.rb +12 -0
- data/lib/components/dropdown_menu_separator.rb +20 -0
- data/lib/components/dropdown_menu_trigger.rb +58 -0
- data/lib/components/hover_card.rb +33 -0
- data/lib/components/hover_card_content.rb +36 -0
- data/lib/components/hover_card_trigger.rb +50 -0
- data/lib/components/input.rb +32 -0
- data/lib/components/label.rb +15 -0
- data/lib/components/link.rb +26 -0
- data/lib/components/loading_button.rb +21 -0
- data/lib/components/pagination.rb +38 -0
- data/lib/components/pagination_ellipsis.rb +24 -0
- data/lib/components/pagination_link.rb +34 -0
- data/lib/components/pagination_next.rb +32 -0
- data/lib/components/pagination_previous.rb +32 -0
- data/lib/components/popover.rb +35 -0
- data/lib/components/popover_content.rb +37 -0
- data/lib/components/popover_trigger.rb +52 -0
- data/lib/components/progress.rb +37 -0
- data/lib/components/radio_group.rb +62 -0
- data/lib/components/radio_group_item.rb +66 -0
- data/lib/components/select.rb +189 -0
- data/lib/components/select_content.rb +59 -0
- data/lib/components/select_group.rb +23 -0
- data/lib/components/select_item.rb +58 -0
- data/lib/components/select_label.rb +23 -0
- data/lib/components/select_trigger.rb +54 -0
- data/lib/components/separator.rb +29 -0
- data/lib/components/sheet.rb +53 -0
- data/lib/components/sheet_close.rb +42 -0
- data/lib/components/sheet_content.rb +67 -0
- data/lib/components/sheet_description.rb +22 -0
- data/lib/components/sheet_footer.rb +11 -0
- data/lib/components/sheet_header.rb +11 -0
- data/lib/components/sheet_title.rb +22 -0
- data/lib/components/sheet_trigger.rb +50 -0
- data/lib/components/sidebar.rb +103 -0
- data/lib/components/sidebar_container.rb +11 -0
- data/lib/components/sidebar_content.rb +11 -0
- data/lib/components/sidebar_footer.rb +11 -0
- data/lib/components/sidebar_group.rb +11 -0
- data/lib/components/sidebar_group_content.rb +11 -0
- data/lib/components/sidebar_group_label.rb +16 -0
- data/lib/components/sidebar_header.rb +11 -0
- data/lib/components/sidebar_inset.rb +15 -0
- data/lib/components/sidebar_menu.rb +11 -0
- data/lib/components/sidebar_menu_button.rb +61 -0
- data/lib/components/sidebar_menu_item.rb +9 -0
- data/lib/components/sidebar_menu_sub.rb +14 -0
- data/lib/components/sidebar_menu_sub_button.rb +48 -0
- data/lib/components/sidebar_menu_sub_item.rb +9 -0
- data/lib/components/sidebar_trigger.rb +40 -0
- data/lib/components/skeleton.rb +11 -0
- data/lib/components/switch.rb +65 -0
- data/lib/components/table.rb +73 -0
- data/lib/components/table_body.rb +11 -0
- data/lib/components/table_caption.rb +11 -0
- data/lib/components/table_cell.rb +11 -0
- data/lib/components/table_footer.rb +11 -0
- data/lib/components/table_head.rb +14 -0
- data/lib/components/table_header.rb +11 -0
- data/lib/components/table_row.rb +11 -0
- data/lib/components/tabs.rb +38 -0
- data/lib/components/tabs_content.rb +35 -0
- data/lib/components/tabs_list.rb +23 -0
- data/lib/components/tabs_trigger.rb +45 -0
- data/lib/components/textarea.rb +28 -0
- data/lib/components/theme_switcher.rb +21 -0
- data/lib/components/toast.rb +100 -0
- data/lib/components/toast_action.rb +38 -0
- data/lib/components/toast_action_to.rb +25 -0
- data/lib/components/toast_container.rb +44 -0
- data/lib/components/toast_content.rb +11 -0
- data/lib/components/toast_description.rb +11 -0
- data/lib/components/toast_title.rb +11 -0
- data/lib/components/tooltip.rb +34 -0
- data/lib/components/tooltip_content.rb +42 -0
- data/lib/components/tooltip_trigger.rb +50 -0
- data/lib/install/install_shadcn_phlexcomponents.rb +12 -0
- data/lib/shadcn_phlexcomponents/alias.rb +132 -0
- data/lib/shadcn_phlexcomponents/engine.rb +11 -0
- data/lib/shadcn_phlexcomponents/version.rb +5 -0
- data/lib/shadcn_phlexcomponents.rb +9 -0
- data/lib/tasks/install.rake +10 -0
- metadata +264 -0
@@ -0,0 +1,132 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ShadcnPhlexcomponents; end
|
4
|
+
Accordion = ShadcnPhlexcomponents::Accordion
|
5
|
+
AccordionContent = ShadcnPhlexcomponents::AccordionContent
|
6
|
+
AccordionItem = ShadcnPhlexcomponents::AccordionItem
|
7
|
+
AccordionTrigger = ShadcnPhlexcomponents::AccordionTrigger
|
8
|
+
Alert = ShadcnPhlexcomponents::Alert
|
9
|
+
AlertTitle = ShadcnPhlexcomponents::AlertTitle
|
10
|
+
AlertDescription = ShadcnPhlexcomponents::AlertDescription
|
11
|
+
AlertDialog = ShadcnPhlexcomponents::AlertDialog
|
12
|
+
AlertDialogActionTo = ShadcnPhlexcomponents::AlertDialogActionTo
|
13
|
+
AlertDialogAction = ShadcnPhlexcomponents::AlertDialogAction
|
14
|
+
AlertDialogCancel = ShadcnPhlexcomponents::AlertDialogCancel
|
15
|
+
AlertDialogContent = ShadcnPhlexcomponents::AlertDialogContent
|
16
|
+
AlertDialogDescription = ShadcnPhlexcomponents::AlertDialogDescription
|
17
|
+
AlertDialogFooter = ShadcnPhlexcomponents::AlertDialogFooter
|
18
|
+
AlertDialogHeader = ShadcnPhlexcomponents::AlertDialogHeader
|
19
|
+
AlertDialogTitle = ShadcnPhlexcomponents::AlertDialogTitle
|
20
|
+
AlertDialogTrigger = ShadcnPhlexcomponents::AlertDialogTrigger
|
21
|
+
AspectRatio = ShadcnPhlexcomponents::AspectRatio
|
22
|
+
Avatar = ShadcnPhlexcomponents::Avatar
|
23
|
+
AvatarFallback = ShadcnPhlexcomponents::AvatarFallback
|
24
|
+
AvatarImage = ShadcnPhlexcomponents::AvatarImage
|
25
|
+
Badge = ShadcnPhlexcomponents::Badge
|
26
|
+
Breadcrumb = ShadcnPhlexcomponents::Breadcrumb
|
27
|
+
BreadcrumbEllipsis = ShadcnPhlexcomponents::BreadcrumbEllipsis
|
28
|
+
BreadcrumbItem = ShadcnPhlexcomponents::BreadcrumbItem
|
29
|
+
BreadcrumbLink = ShadcnPhlexcomponents::BreadcrumbLink
|
30
|
+
BreadcrumbPage = ShadcnPhlexcomponents::BreadcrumbPage
|
31
|
+
BreadcrumbSeparator = ShadcnPhlexcomponents::BreadcrumbSeparator
|
32
|
+
Button = ShadcnPhlexcomponents::Button
|
33
|
+
Card = ShadcnPhlexcomponents::Card
|
34
|
+
CardContent = ShadcnPhlexcomponents::CardContent
|
35
|
+
CardDescription = ShadcnPhlexcomponents::CardDescription
|
36
|
+
CardFooter = ShadcnPhlexcomponents::CardFooter
|
37
|
+
CardHeader = ShadcnPhlexcomponents::CardHeader
|
38
|
+
CardTitle = ShadcnPhlexcomponents::CardTitle
|
39
|
+
CheckboxGroup = ShadcnPhlexcomponents::CheckboxGroup
|
40
|
+
Checkbox = ShadcnPhlexcomponents::Checkbox
|
41
|
+
Collapsible = ShadcnPhlexcomponents::Collapsible
|
42
|
+
CollapsibleContent = ShadcnPhlexcomponents::CollapsibleContent
|
43
|
+
CollapsibleTrigger = ShadcnPhlexcomponents::CollapsibleTrigger
|
44
|
+
Datepicker = ShadcnPhlexcomponents::Datepicker
|
45
|
+
Dialog = ShadcnPhlexcomponents::Dialog
|
46
|
+
DialogClose = ShadcnPhlexcomponents::DialogClose
|
47
|
+
DialogContent = ShadcnPhlexcomponents::DialogContent
|
48
|
+
DialogDescription = ShadcnPhlexcomponents::DialogDescription
|
49
|
+
DialogFooter = ShadcnPhlexcomponents::DialogFooter
|
50
|
+
DialogHeader = ShadcnPhlexcomponents::DialogHeader
|
51
|
+
DialogTitle = ShadcnPhlexcomponents::DialogTitle
|
52
|
+
DialogTrigger = ShadcnPhlexcomponents::DialogTrigger
|
53
|
+
DropdownMenu = ShadcnPhlexcomponents::DropdownMenu
|
54
|
+
DropdownMenuContent = ShadcnPhlexcomponents::DropdownMenuContent
|
55
|
+
DropdownMenuItem = ShadcnPhlexcomponents::DropdownMenuItem
|
56
|
+
DropdownMenuLabel = ShadcnPhlexcomponents::DropdownMenuLabel
|
57
|
+
DropdownMenuSeparator = ShadcnPhlexcomponents::DropdownMenuSeparator
|
58
|
+
DropdownMenuTrigger = ShadcnPhlexcomponents::DropdownMenuTrigger
|
59
|
+
HoverCard = ShadcnPhlexcomponents::HoverCard
|
60
|
+
HoverCardContent = ShadcnPhlexcomponents::HoverCardContent
|
61
|
+
HoverCardTrigger = ShadcnPhlexcomponents::HoverCardTrigger
|
62
|
+
Input = ShadcnPhlexcomponents::Input
|
63
|
+
Label = ShadcnPhlexcomponents::Label
|
64
|
+
Link = ShadcnPhlexcomponents::Link
|
65
|
+
LoadingButton = ShadcnPhlexcomponents::LoadingButton
|
66
|
+
Pagination = ShadcnPhlexcomponents::Pagination
|
67
|
+
PaginationEllipsis = ShadcnPhlexcomponents::PaginationEllipsis
|
68
|
+
PaginationLink = ShadcnPhlexcomponents::PaginationLink
|
69
|
+
PaginationNext = ShadcnPhlexcomponents::PaginationNext
|
70
|
+
PaginationPrevious = ShadcnPhlexcomponents::PaginationPrevious
|
71
|
+
Popover = ShadcnPhlexcomponents::Popover
|
72
|
+
PopoverContent = ShadcnPhlexcomponents::PopoverContent
|
73
|
+
PopoverTrigger = ShadcnPhlexcomponents::PopoverTrigger
|
74
|
+
Progress = ShadcnPhlexcomponents::Progress
|
75
|
+
RadioGroup = ShadcnPhlexcomponents::RadioGroup
|
76
|
+
RadioGroupItem = ShadcnPhlexcomponents::RadioGroupItem
|
77
|
+
Select = ShadcnPhlexcomponents::Select
|
78
|
+
SelectContent = ShadcnPhlexcomponents::SelectContent
|
79
|
+
SelectGroup = ShadcnPhlexcomponents::SelectGroup
|
80
|
+
SelectItem = ShadcnPhlexcomponents::SelectItem
|
81
|
+
SelectLabel = ShadcnPhlexcomponents::SelectLabel
|
82
|
+
Separator = ShadcnPhlexcomponents::Separator
|
83
|
+
Sheet = ShadcnPhlexcomponents::Sheet
|
84
|
+
SheetClose = ShadcnPhlexcomponents::SheetClose
|
85
|
+
SheetContent = ShadcnPhlexcomponents::SheetContent
|
86
|
+
SheetDescription = ShadcnPhlexcomponents::SheetDescription
|
87
|
+
SheetFooter = ShadcnPhlexcomponents::SheetFooter
|
88
|
+
SheetHeader = ShadcnPhlexcomponents::SheetHeader
|
89
|
+
SheetTitle = ShadcnPhlexcomponents::SheetTitle
|
90
|
+
SheetTrigger = ShadcnPhlexcomponents::SheetTrigger
|
91
|
+
Sidebar = ShadcnPhlexcomponents::Sidebar
|
92
|
+
SidebarContainer = ShadcnPhlexcomponents::SidebarContainer
|
93
|
+
SidebarContent = ShadcnPhlexcomponents::SidebarContent
|
94
|
+
SidebarFooter = ShadcnPhlexcomponents::SidebarFooter
|
95
|
+
SidebarGroupContent = ShadcnPhlexcomponents::SidebarGroupContent
|
96
|
+
SidebarGroupLabel = ShadcnPhlexcomponents::SidebarGroupLabel
|
97
|
+
SidebarGroup = ShadcnPhlexcomponents::SidebarGroup
|
98
|
+
SidebarHeader = ShadcnPhlexcomponents::SidebarHeader
|
99
|
+
SidebarInset = ShadcnPhlexcomponents::SidebarInset
|
100
|
+
SidebarMenuButton = ShadcnPhlexcomponents::SidebarMenuButton
|
101
|
+
SidebarMenuItem = ShadcnPhlexcomponents::SidebarMenuItem
|
102
|
+
SidebarMenuSubButton = ShadcnPhlexcomponents::SidebarMenuSubButton
|
103
|
+
SidebarMenuSubItem = ShadcnPhlexcomponents::SidebarMenuSubItem
|
104
|
+
SidebarMenuSub = ShadcnPhlexcomponents::SidebarMenuSub
|
105
|
+
SidebarMenu = ShadcnPhlexcomponents::SidebarMenu
|
106
|
+
SidebarTrigger = ShadcnPhlexcomponents::SidebarTrigger
|
107
|
+
Skeleton = ShadcnPhlexcomponents::Skeleton
|
108
|
+
Switch = ShadcnPhlexcomponents::Switch
|
109
|
+
Table = ShadcnPhlexcomponents::Table
|
110
|
+
TableBody = ShadcnPhlexcomponents::TableBody
|
111
|
+
TableCaption = ShadcnPhlexcomponents::TableCaption
|
112
|
+
TableCell = ShadcnPhlexcomponents::TableCell
|
113
|
+
TableFooter = ShadcnPhlexcomponents::TableFooter
|
114
|
+
TableHead = ShadcnPhlexcomponents::TableHead
|
115
|
+
TableHeader = ShadcnPhlexcomponents::TableHeader
|
116
|
+
TableRow = ShadcnPhlexcomponents::TableRow
|
117
|
+
Tabs = ShadcnPhlexcomponents::Tabs
|
118
|
+
TabsContent = ShadcnPhlexcomponents::TabsContent
|
119
|
+
TabsList = ShadcnPhlexcomponents::TabsList
|
120
|
+
TabsTrigger = ShadcnPhlexcomponents::TabsTrigger
|
121
|
+
Textarea = ShadcnPhlexcomponents::Textarea
|
122
|
+
ThemeSwitcher = ShadcnPhlexcomponents::ThemeSwitcher
|
123
|
+
Toast = ShadcnPhlexcomponents::Toast
|
124
|
+
ToastActionTo = ShadcnPhlexcomponents::ToastActionTo
|
125
|
+
ToastAction = ShadcnPhlexcomponents::ToastAction
|
126
|
+
ToastContainer = ShadcnPhlexcomponents::ToastContainer
|
127
|
+
ToastContent = ShadcnPhlexcomponents::ToastContent
|
128
|
+
ToastDescription = ShadcnPhlexcomponents::ToastDescription
|
129
|
+
ToastTitle = ShadcnPhlexcomponents::ToastTitle
|
130
|
+
Tooltip = ShadcnPhlexcomponents::Tooltip
|
131
|
+
TooltipContent = ShadcnPhlexcomponents::TooltipContent
|
132
|
+
TooltipTrigger = ShadcnPhlexcomponents::TooltipTrigger
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
namespace :shadcn_phlexcomponents do
|
4
|
+
desc "Install shadcn_phlexcomponents"
|
5
|
+
task :install do
|
6
|
+
system "#{RbConfig.ruby} ./bin/rails app:template LOCATION=#{File.expand_path(
|
7
|
+
"../install/install_shadcn_phlexcomponents.rb", __dir__
|
8
|
+
)}"
|
9
|
+
end
|
10
|
+
end
|
metadata
ADDED
@@ -0,0 +1,264 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: shadcn_phlexcomponents
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sean Yeoh
|
8
|
+
bindir: bin
|
9
|
+
cert_chain: []
|
10
|
+
date: 2025-04-18 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: lucide-rails
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: 0.5.1
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 0.5.1
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: phlex-rails
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '2.1'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '2.1'
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: railties
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '8.0'
|
47
|
+
type: :runtime
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '8.0'
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: tailwind_merge
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.0'
|
61
|
+
type: :runtime
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '1.0'
|
68
|
+
email:
|
69
|
+
- sysxdev@protonmail.com
|
70
|
+
executables: []
|
71
|
+
extensions: []
|
72
|
+
extra_rdoc_files: []
|
73
|
+
files:
|
74
|
+
- README.md
|
75
|
+
- Rakefile
|
76
|
+
- app/assets/tailwind/tailwindcss-animate.css
|
77
|
+
- app/assets/tailwind/vanilla-calendar-pro.css
|
78
|
+
- app/javascript/controllers/accordion_controller.js
|
79
|
+
- app/javascript/controllers/alert_dialog_controller.js
|
80
|
+
- app/javascript/controllers/avatar_controller.js
|
81
|
+
- app/javascript/controllers/checkbox_controller.js
|
82
|
+
- app/javascript/controllers/collapsible_controller.js
|
83
|
+
- app/javascript/controllers/combobox_controller.js
|
84
|
+
- app/javascript/controllers/datepicker_controller.js
|
85
|
+
- app/javascript/controllers/dialog_controller.js
|
86
|
+
- app/javascript/controllers/dropdown_menu_controller.js
|
87
|
+
- app/javascript/controllers/hover_card_controller.js
|
88
|
+
- app/javascript/controllers/loading_button_controller.js
|
89
|
+
- app/javascript/controllers/popover_controller.js
|
90
|
+
- app/javascript/controllers/progress_controller.js
|
91
|
+
- app/javascript/controllers/radio_group_controller.js
|
92
|
+
- app/javascript/controllers/select_controller.js
|
93
|
+
- app/javascript/controllers/sheet_controller.js
|
94
|
+
- app/javascript/controllers/sidebar_controller.js
|
95
|
+
- app/javascript/controllers/sidebar_trigger_controller.js
|
96
|
+
- app/javascript/controllers/switch_controller.js
|
97
|
+
- app/javascript/controllers/tabs_controller.js
|
98
|
+
- app/javascript/controllers/theme_switcher_controller.js
|
99
|
+
- app/javascript/controllers/toast_container_controller.js
|
100
|
+
- app/javascript/controllers/toast_controller.js
|
101
|
+
- app/javascript/controllers/tooltip_controller.js
|
102
|
+
- lib/components/accordion.rb
|
103
|
+
- lib/components/accordion_content.rb
|
104
|
+
- lib/components/accordion_item.rb
|
105
|
+
- lib/components/accordion_trigger.rb
|
106
|
+
- lib/components/alert.rb
|
107
|
+
- lib/components/alert_description.rb
|
108
|
+
- lib/components/alert_dialog.rb
|
109
|
+
- lib/components/alert_dialog_action.rb
|
110
|
+
- lib/components/alert_dialog_action_to.rb
|
111
|
+
- lib/components/alert_dialog_cancel.rb
|
112
|
+
- lib/components/alert_dialog_content.rb
|
113
|
+
- lib/components/alert_dialog_description.rb
|
114
|
+
- lib/components/alert_dialog_footer.rb
|
115
|
+
- lib/components/alert_dialog_header.rb
|
116
|
+
- lib/components/alert_dialog_title.rb
|
117
|
+
- lib/components/alert_dialog_trigger.rb
|
118
|
+
- lib/components/alert_title.rb
|
119
|
+
- lib/components/aspect_ratio.rb
|
120
|
+
- lib/components/avatar.rb
|
121
|
+
- lib/components/avatar_fallback.rb
|
122
|
+
- lib/components/avatar_image.rb
|
123
|
+
- lib/components/badge.rb
|
124
|
+
- lib/components/base.rb
|
125
|
+
- lib/components/breadcrumb.rb
|
126
|
+
- lib/components/breadcrumb_ellipsis.rb
|
127
|
+
- lib/components/breadcrumb_item.rb
|
128
|
+
- lib/components/breadcrumb_link.rb
|
129
|
+
- lib/components/breadcrumb_page.rb
|
130
|
+
- lib/components/breadcrumb_separator.rb
|
131
|
+
- lib/components/button.rb
|
132
|
+
- lib/components/card.rb
|
133
|
+
- lib/components/card_content.rb
|
134
|
+
- lib/components/card_description.rb
|
135
|
+
- lib/components/card_footer.rb
|
136
|
+
- lib/components/card_header.rb
|
137
|
+
- lib/components/card_title.rb
|
138
|
+
- lib/components/checkbox.rb
|
139
|
+
- lib/components/checkbox_group.rb
|
140
|
+
- lib/components/collapsible.rb
|
141
|
+
- lib/components/collapsible_content.rb
|
142
|
+
- lib/components/collapsible_trigger.rb
|
143
|
+
- lib/components/datepicker.rb
|
144
|
+
- lib/components/dialog.rb
|
145
|
+
- lib/components/dialog_close.rb
|
146
|
+
- lib/components/dialog_content.rb
|
147
|
+
- lib/components/dialog_description.rb
|
148
|
+
- lib/components/dialog_footer.rb
|
149
|
+
- lib/components/dialog_header.rb
|
150
|
+
- lib/components/dialog_title.rb
|
151
|
+
- lib/components/dialog_trigger.rb
|
152
|
+
- lib/components/dropdown_menu.rb
|
153
|
+
- lib/components/dropdown_menu_content.rb
|
154
|
+
- lib/components/dropdown_menu_item.rb
|
155
|
+
- lib/components/dropdown_menu_item_to.rb
|
156
|
+
- lib/components/dropdown_menu_label.rb
|
157
|
+
- lib/components/dropdown_menu_separator.rb
|
158
|
+
- lib/components/dropdown_menu_trigger.rb
|
159
|
+
- lib/components/hover_card.rb
|
160
|
+
- lib/components/hover_card_content.rb
|
161
|
+
- lib/components/hover_card_trigger.rb
|
162
|
+
- lib/components/input.rb
|
163
|
+
- lib/components/label.rb
|
164
|
+
- lib/components/link.rb
|
165
|
+
- lib/components/loading_button.rb
|
166
|
+
- lib/components/pagination.rb
|
167
|
+
- lib/components/pagination_ellipsis.rb
|
168
|
+
- lib/components/pagination_link.rb
|
169
|
+
- lib/components/pagination_next.rb
|
170
|
+
- lib/components/pagination_previous.rb
|
171
|
+
- lib/components/popover.rb
|
172
|
+
- lib/components/popover_content.rb
|
173
|
+
- lib/components/popover_trigger.rb
|
174
|
+
- lib/components/progress.rb
|
175
|
+
- lib/components/radio_group.rb
|
176
|
+
- lib/components/radio_group_item.rb
|
177
|
+
- lib/components/select.rb
|
178
|
+
- lib/components/select_content.rb
|
179
|
+
- lib/components/select_group.rb
|
180
|
+
- lib/components/select_item.rb
|
181
|
+
- lib/components/select_label.rb
|
182
|
+
- lib/components/select_trigger.rb
|
183
|
+
- lib/components/separator.rb
|
184
|
+
- lib/components/sheet.rb
|
185
|
+
- lib/components/sheet_close.rb
|
186
|
+
- lib/components/sheet_content.rb
|
187
|
+
- lib/components/sheet_description.rb
|
188
|
+
- lib/components/sheet_footer.rb
|
189
|
+
- lib/components/sheet_header.rb
|
190
|
+
- lib/components/sheet_title.rb
|
191
|
+
- lib/components/sheet_trigger.rb
|
192
|
+
- lib/components/sidebar.rb
|
193
|
+
- lib/components/sidebar_container.rb
|
194
|
+
- lib/components/sidebar_content.rb
|
195
|
+
- lib/components/sidebar_footer.rb
|
196
|
+
- lib/components/sidebar_group.rb
|
197
|
+
- lib/components/sidebar_group_content.rb
|
198
|
+
- lib/components/sidebar_group_label.rb
|
199
|
+
- lib/components/sidebar_header.rb
|
200
|
+
- lib/components/sidebar_inset.rb
|
201
|
+
- lib/components/sidebar_menu.rb
|
202
|
+
- lib/components/sidebar_menu_button.rb
|
203
|
+
- lib/components/sidebar_menu_item.rb
|
204
|
+
- lib/components/sidebar_menu_sub.rb
|
205
|
+
- lib/components/sidebar_menu_sub_button.rb
|
206
|
+
- lib/components/sidebar_menu_sub_item.rb
|
207
|
+
- lib/components/sidebar_trigger.rb
|
208
|
+
- lib/components/skeleton.rb
|
209
|
+
- lib/components/switch.rb
|
210
|
+
- lib/components/table.rb
|
211
|
+
- lib/components/table_body.rb
|
212
|
+
- lib/components/table_caption.rb
|
213
|
+
- lib/components/table_cell.rb
|
214
|
+
- lib/components/table_footer.rb
|
215
|
+
- lib/components/table_head.rb
|
216
|
+
- lib/components/table_header.rb
|
217
|
+
- lib/components/table_row.rb
|
218
|
+
- lib/components/tabs.rb
|
219
|
+
- lib/components/tabs_content.rb
|
220
|
+
- lib/components/tabs_list.rb
|
221
|
+
- lib/components/tabs_trigger.rb
|
222
|
+
- lib/components/textarea.rb
|
223
|
+
- lib/components/theme_switcher.rb
|
224
|
+
- lib/components/toast.rb
|
225
|
+
- lib/components/toast_action.rb
|
226
|
+
- lib/components/toast_action_to.rb
|
227
|
+
- lib/components/toast_container.rb
|
228
|
+
- lib/components/toast_content.rb
|
229
|
+
- lib/components/toast_description.rb
|
230
|
+
- lib/components/toast_title.rb
|
231
|
+
- lib/components/tooltip.rb
|
232
|
+
- lib/components/tooltip_content.rb
|
233
|
+
- lib/components/tooltip_trigger.rb
|
234
|
+
- lib/install/install_shadcn_phlexcomponents.rb
|
235
|
+
- lib/shadcn_phlexcomponents.rb
|
236
|
+
- lib/shadcn_phlexcomponents/alias.rb
|
237
|
+
- lib/shadcn_phlexcomponents/engine.rb
|
238
|
+
- lib/shadcn_phlexcomponents/version.rb
|
239
|
+
- lib/tasks/install.rake
|
240
|
+
homepage: https://github.com/sean-yeoh/shadcn_phlexcomponents
|
241
|
+
licenses:
|
242
|
+
- MIT
|
243
|
+
metadata:
|
244
|
+
homepage_uri: https://github.com/sean-yeoh/shadcn_phlexcomponents
|
245
|
+
source_code_uri: https://github.com/sean-yeoh/shadcn_phlexcomponents
|
246
|
+
changelog_uri: https://github.com/sean-yeoh/shadcn_phlexcomponents/blob/main/CHANGELOG.md
|
247
|
+
rdoc_options: []
|
248
|
+
require_paths:
|
249
|
+
- lib
|
250
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
251
|
+
requirements:
|
252
|
+
- - ">="
|
253
|
+
- !ruby/object:Gem::Version
|
254
|
+
version: 3.3.0
|
255
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
256
|
+
requirements:
|
257
|
+
- - ">="
|
258
|
+
- !ruby/object:Gem::Version
|
259
|
+
version: '0'
|
260
|
+
requirements: []
|
261
|
+
rubygems_version: 3.6.2
|
262
|
+
specification_version: 4
|
263
|
+
summary: Shadcn Phlexcomponents is a UI Component library built for Ruby on Rails.
|
264
|
+
test_files: []
|