shadcn-ui 0.0.1
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/.editorconfig +10 -0
- data/.prettierignore +43 -0
- data/.prettierrc.json +28 -0
- data/.rspec +1 -0
- data/.ruby-version +1 -0
- data/.vscode/settings.json +11 -0
- data/CHANGELOG.md +6 -0
- data/CODE_OF_CONDUCT.md +113 -0
- data/LICENSE.md +18 -0
- data/Procfile.dev +2 -0
- data/README.md +90 -0
- data/Rakefile +12 -0
- data/app/assets/builds/.keep +0 -0
- data/app/assets/config/manifest.js +5 -0
- data/app/assets/images/.keep +0 -0
- data/app/assets/stylesheets/application.scss +42 -0
- data/app/assets/stylesheets/application.tailwind.css +92 -0
- data/app/assets/stylesheets/lambda.light.scss +136 -0
- data/app/channels/application_cable/channel.rb +4 -0
- data/app/channels/application_cable/connection.rb +4 -0
- data/app/controllers/application_controller.rb +8 -0
- data/app/controllers/components_controller.rb +7 -0
- data/app/controllers/concerns/.keep +0 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/helpers/components/accordion_helper.rb +5 -0
- data/app/helpers/components/alert_dialog_helper.rb +6 -0
- data/app/helpers/components/alert_helper.rb +11 -0
- data/app/helpers/components/badge_helper.rb +20 -0
- data/app/helpers/components/button_helper.rb +20 -0
- data/app/helpers/components/card_helper.rb +5 -0
- data/app/helpers/components/checkbox_helper.rb +5 -0
- data/app/helpers/components/collapsible_helper.rb +6 -0
- data/app/helpers/components/dialog_helper.rb +14 -0
- data/app/helpers/components/dropdown_menu_helper.rb +23 -0
- data/app/helpers/components/hover_card_helper.rb +15 -0
- data/app/helpers/components/popover_helper.rb +15 -0
- data/app/helpers/components/seperator_helper.rb +6 -0
- data/app/helpers/components/textarea_helper.rb +13 -0
- data/app/helpers/components/toast_helper.rb +5 -0
- data/app/helpers/components/toggle_helper.rb +6 -0
- data/app/helpers/components/tooltip_helper.rb +15 -0
- data/app/helpers/components_helper.rb +7 -0
- data/app/helpers/examples_helper.rb +41 -0
- data/app/javascript/application.js +3 -0
- data/app/javascript/controllers/application.js +9 -0
- data/app/javascript/controllers/hello_controller.js +7 -0
- data/app/javascript/controllers/highlight_controller.js +9 -0
- data/app/javascript/controllers/index.js +11 -0
- data/app/javascript/controllers/tabs_controller.js +72 -0
- data/app/javascript/controllers/ui/accordion_controller.js +128 -0
- data/app/javascript/controllers/ui/checkbox_controller.js +17 -0
- data/app/javascript/controllers/ui/collapsible_controller.js +28 -0
- data/app/javascript/controllers/ui/dialog_controller.js +92 -0
- data/app/javascript/controllers/ui/dropdown_controller.js +25 -0
- data/app/javascript/controllers/ui/hover-card_controller.js +39 -0
- data/app/javascript/controllers/ui/popover_controller.js +27 -0
- data/app/javascript/controllers/ui/toast_controller.js +43 -0
- data/app/javascript/controllers/ui/toggle_controller.js +15 -0
- data/app/javascript/controllers/ui/tooltip_controller.js +3 -0
- data/app/javascript/controllers/ui/transition_controller.js +8 -0
- data/app/jobs/application_job.rb +7 -0
- data/app/mailers/application_mailer.rb +4 -0
- data/app/models/application_record.rb +3 -0
- data/app/models/concerns/.keep +0 -0
- data/app/views/application/index.html.erb +0 -0
- data/app/views/components/ui/_accordion.html.erb +40 -0
- data/app/views/components/ui/_alert.html.erb +55 -0
- data/app/views/components/ui/_alert_dialog.html.erb +20 -0
- data/app/views/components/ui/_badge.html.erb +1 -0
- data/app/views/components/ui/_button.html.erb +11 -0
- data/app/views/components/ui/_card.html.erb +13 -0
- data/app/views/components/ui/_checkbox.html.erb +37 -0
- data/app/views/components/ui/_collapsible.html.erb +38 -0
- data/app/views/components/ui/_dialog.html.erb +69 -0
- data/app/views/components/ui/_dropdown_menu.html.erb +9 -0
- data/app/views/components/ui/_hover_card.html.erb +18 -0
- data/app/views/components/ui/_popover.html.erb +19 -0
- data/app/views/components/ui/_separator.html.erb +4 -0
- data/app/views/components/ui/_textarea.html.erb +9 -0
- data/app/views/components/ui/_toast.html.erb +34 -0
- data/app/views/components/ui/_toggle.html.erb +3 -0
- data/app/views/components/ui/_tooltip.html.erb +18 -0
- data/app/views/components/ui/shared/_dialog_background.html.erb +7 -0
- data/app/views/components/ui/shared/_menu_item.html.erb +6 -0
- data/app/views/examples/authentication/index.html.erb +148 -0
- data/app/views/examples/components/accordion.html.erb +17 -0
- data/app/views/examples/components/alert-dialog.html.erb +24 -0
- data/app/views/examples/components/alert.html.erb +22 -0
- data/app/views/examples/components/badge.html.erb +30 -0
- data/app/views/examples/components/button.html.erb +33 -0
- data/app/views/examples/components/card.html.erb +156 -0
- data/app/views/examples/components/checkbox.html.erb +8 -0
- data/app/views/examples/components/collapsible.html.erb +24 -0
- data/app/views/examples/components/dialog/_usage.html.erb +28 -0
- data/app/views/examples/components/dialog/code/form.erb +48 -0
- data/app/views/examples/components/dialog/code/notifications.erb +83 -0
- data/app/views/examples/components/dialog/code/preview.erb +14 -0
- data/app/views/examples/components/dialog/code/usage.erb +8 -0
- data/app/views/examples/components/dialog.html.erb +148 -0
- data/app/views/examples/components/dropdown-menu.html.erb +26 -0
- data/app/views/examples/components/hover-card.html.erb +24 -0
- data/app/views/examples/components/popover.html.erb +34 -0
- data/app/views/examples/components/separator.html.erb +33 -0
- data/app/views/examples/components/textarea.html.erb +12 -0
- data/app/views/examples/components/toast.html.erb +15 -0
- data/app/views/examples/components/toggle.html.erb +12 -0
- data/app/views/examples/components/tooltip.html.erb +23 -0
- data/app/views/layouts/_sidebar.html.erb +270 -0
- data/app/views/layouts/application.html.erb +33 -0
- data/app/views/layouts/component.html.erb +35 -0
- data/app/views/layouts/documentation/_breadcrumb.html.erb +17 -0
- data/app/views/layouts/documentation/_component_header.html.erb +11 -0
- data/app/views/layouts/documentation/_examples.html.erb +80 -0
- data/app/views/layouts/documentation/_preview.html.erb +90 -0
- data/app/views/layouts/mailer.html.erb +13 -0
- data/app/views/layouts/mailer.text.erb +1 -0
- data/app/views/layouts/shared/_header.html.erb +164 -0
- data/config/application.rb +37 -0
- data/config/boot.rb +4 -0
- data/config/cable.yml +11 -0
- data/config/credentials.yml.enc +1 -0
- data/config/database.yml +25 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +70 -0
- data/config/environments/production.rb +93 -0
- data/config/environments/test.rb +60 -0
- data/config/importmap.rb +13 -0
- data/config/initializers/assets.rb +12 -0
- data/config/initializers/content_security_policy.rb +25 -0
- data/config/initializers/filter_parameter_logging.rb +8 -0
- data/config/initializers/inflections.rb +16 -0
- data/config/initializers/permissions_policy.rb +11 -0
- data/config/locales/en.yml +33 -0
- data/config/puma.rb +43 -0
- data/config/render.yml +9 -0
- data/config/routes.rb +7 -0
- data/config/storage.yml +34 -0
- data/config/tailwind.config.js +86 -0
- data/config.ru +6 -0
- data/db/seeds.rb +7 -0
- data/lib/assets/.keep +0 -0
- data/lib/generators/shadcn_ui_generator.rb +32 -0
- data/lib/shadcn-ui/shadcn-ui.rb +8 -0
- data/lib/shadcn-ui/version.rb +3 -0
- data/lib/tasks/.keep +0 -0
- data/log/.keep +0 -0
- data/package-lock.json +1014 -0
- data/package.json +8 -0
- data/public/404.html +67 -0
- data/public/422.html +67 -0
- data/public/500.html +66 -0
- data/public/android-chrome-192x192.png +0 -0
- data/public/android-chrome-512x512.png +0 -0
- data/public/apple-touch-icon-precomposed.png +0 -0
- data/public/apple-touch-icon.png +0 -0
- data/public/favicon-16x16.png +0 -0
- data/public/favicon-32x32.png +0 -0
- data/public/favicon.ico +0 -0
- data/public/og.jpg +0 -0
- data/public/robots.txt +1 -0
- data/sig/shadcn-ui.rbs +4 -0
- data/storage/.keep +0 -0
- data/tmp/.keep +0 -0
- data/tmp/pids/.keep +0 -0
- data/tmp/storage/.keep +0 -0
- data/vendor/.keep +0 -0
- data/vendor/javascript/.keep +0 -0
- metadata +214 -0
data/package.json
ADDED
data/public/404.html
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
.rails-default-error-page {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
.rails-default-error-page h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body class="rails-default-error-page">
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
data/public/422.html
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
.rails-default-error-page {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
.rails-default-error-page h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body class="rails-default-error-page">
|
58
|
+
<!-- This file lives in public/422.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
data/public/500.html
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
.rails-default-error-page {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
.rails-default-error-page h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body class="rails-default-error-page">
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
data/public/favicon.ico
ADDED
Binary file
|
data/public/og.jpg
ADDED
Binary file
|
data/public/robots.txt
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
|
data/sig/shadcn-ui.rbs
ADDED
data/storage/.keep
ADDED
File without changes
|
data/tmp/.keep
ADDED
File without changes
|
data/tmp/pids/.keep
ADDED
File without changes
|
data/tmp/storage/.keep
ADDED
File without changes
|
data/vendor/.keep
ADDED
File without changes
|
File without changes
|
metadata
ADDED
@@ -0,0 +1,214 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: shadcn-ui
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Avi Flombaum
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-07-09 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: This gem is a documentation site and gem that will copy components from
|
14
|
+
the shadcn-ui library into a Ruby on Rails application.
|
15
|
+
email:
|
16
|
+
- git@avi.nyc
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- ".editorconfig"
|
22
|
+
- ".prettierignore"
|
23
|
+
- ".prettierrc.json"
|
24
|
+
- ".rspec"
|
25
|
+
- ".ruby-version"
|
26
|
+
- ".vscode/settings.json"
|
27
|
+
- CHANGELOG.md
|
28
|
+
- CODE_OF_CONDUCT.md
|
29
|
+
- LICENSE.md
|
30
|
+
- Procfile.dev
|
31
|
+
- README.md
|
32
|
+
- Rakefile
|
33
|
+
- app/assets/builds/.keep
|
34
|
+
- app/assets/config/manifest.js
|
35
|
+
- app/assets/images/.keep
|
36
|
+
- app/assets/stylesheets/application.scss
|
37
|
+
- app/assets/stylesheets/application.tailwind.css
|
38
|
+
- app/assets/stylesheets/lambda.light.scss
|
39
|
+
- app/channels/application_cable/channel.rb
|
40
|
+
- app/channels/application_cable/connection.rb
|
41
|
+
- app/controllers/application_controller.rb
|
42
|
+
- app/controllers/components_controller.rb
|
43
|
+
- app/controllers/concerns/.keep
|
44
|
+
- app/helpers/application_helper.rb
|
45
|
+
- app/helpers/components/accordion_helper.rb
|
46
|
+
- app/helpers/components/alert_dialog_helper.rb
|
47
|
+
- app/helpers/components/alert_helper.rb
|
48
|
+
- app/helpers/components/badge_helper.rb
|
49
|
+
- app/helpers/components/button_helper.rb
|
50
|
+
- app/helpers/components/card_helper.rb
|
51
|
+
- app/helpers/components/checkbox_helper.rb
|
52
|
+
- app/helpers/components/collapsible_helper.rb
|
53
|
+
- app/helpers/components/dialog_helper.rb
|
54
|
+
- app/helpers/components/dropdown_menu_helper.rb
|
55
|
+
- app/helpers/components/hover_card_helper.rb
|
56
|
+
- app/helpers/components/popover_helper.rb
|
57
|
+
- app/helpers/components/seperator_helper.rb
|
58
|
+
- app/helpers/components/textarea_helper.rb
|
59
|
+
- app/helpers/components/toast_helper.rb
|
60
|
+
- app/helpers/components/toggle_helper.rb
|
61
|
+
- app/helpers/components/tooltip_helper.rb
|
62
|
+
- app/helpers/components_helper.rb
|
63
|
+
- app/helpers/examples_helper.rb
|
64
|
+
- app/javascript/application.js
|
65
|
+
- app/javascript/controllers/application.js
|
66
|
+
- app/javascript/controllers/hello_controller.js
|
67
|
+
- app/javascript/controllers/highlight_controller.js
|
68
|
+
- app/javascript/controllers/index.js
|
69
|
+
- app/javascript/controllers/tabs_controller.js
|
70
|
+
- app/javascript/controllers/ui/accordion_controller.js
|
71
|
+
- app/javascript/controllers/ui/checkbox_controller.js
|
72
|
+
- app/javascript/controllers/ui/collapsible_controller.js
|
73
|
+
- app/javascript/controllers/ui/dialog_controller.js
|
74
|
+
- app/javascript/controllers/ui/dropdown_controller.js
|
75
|
+
- app/javascript/controllers/ui/hover-card_controller.js
|
76
|
+
- app/javascript/controllers/ui/popover_controller.js
|
77
|
+
- app/javascript/controllers/ui/toast_controller.js
|
78
|
+
- app/javascript/controllers/ui/toggle_controller.js
|
79
|
+
- app/javascript/controllers/ui/tooltip_controller.js
|
80
|
+
- app/javascript/controllers/ui/transition_controller.js
|
81
|
+
- app/jobs/application_job.rb
|
82
|
+
- app/mailers/application_mailer.rb
|
83
|
+
- app/models/application_record.rb
|
84
|
+
- app/models/concerns/.keep
|
85
|
+
- app/views/application/index.html.erb
|
86
|
+
- app/views/components/ui/_accordion.html.erb
|
87
|
+
- app/views/components/ui/_alert.html.erb
|
88
|
+
- app/views/components/ui/_alert_dialog.html.erb
|
89
|
+
- app/views/components/ui/_badge.html.erb
|
90
|
+
- app/views/components/ui/_button.html.erb
|
91
|
+
- app/views/components/ui/_card.html.erb
|
92
|
+
- app/views/components/ui/_checkbox.html.erb
|
93
|
+
- app/views/components/ui/_collapsible.html.erb
|
94
|
+
- app/views/components/ui/_dialog.html.erb
|
95
|
+
- app/views/components/ui/_dropdown_menu.html.erb
|
96
|
+
- app/views/components/ui/_hover_card.html.erb
|
97
|
+
- app/views/components/ui/_popover.html.erb
|
98
|
+
- app/views/components/ui/_separator.html.erb
|
99
|
+
- app/views/components/ui/_textarea.html.erb
|
100
|
+
- app/views/components/ui/_toast.html.erb
|
101
|
+
- app/views/components/ui/_toggle.html.erb
|
102
|
+
- app/views/components/ui/_tooltip.html.erb
|
103
|
+
- app/views/components/ui/shared/_dialog_background.html.erb
|
104
|
+
- app/views/components/ui/shared/_menu_item.html.erb
|
105
|
+
- app/views/examples/authentication/index.html.erb
|
106
|
+
- app/views/examples/components/accordion.html.erb
|
107
|
+
- app/views/examples/components/alert-dialog.html.erb
|
108
|
+
- app/views/examples/components/alert.html.erb
|
109
|
+
- app/views/examples/components/badge.html.erb
|
110
|
+
- app/views/examples/components/button.html.erb
|
111
|
+
- app/views/examples/components/card.html.erb
|
112
|
+
- app/views/examples/components/checkbox.html.erb
|
113
|
+
- app/views/examples/components/collapsible.html.erb
|
114
|
+
- app/views/examples/components/dialog.html.erb
|
115
|
+
- app/views/examples/components/dialog/_usage.html.erb
|
116
|
+
- app/views/examples/components/dialog/code/form.erb
|
117
|
+
- app/views/examples/components/dialog/code/notifications.erb
|
118
|
+
- app/views/examples/components/dialog/code/preview.erb
|
119
|
+
- app/views/examples/components/dialog/code/usage.erb
|
120
|
+
- app/views/examples/components/dropdown-menu.html.erb
|
121
|
+
- app/views/examples/components/hover-card.html.erb
|
122
|
+
- app/views/examples/components/popover.html.erb
|
123
|
+
- app/views/examples/components/separator.html.erb
|
124
|
+
- app/views/examples/components/textarea.html.erb
|
125
|
+
- app/views/examples/components/toast.html.erb
|
126
|
+
- app/views/examples/components/toggle.html.erb
|
127
|
+
- app/views/examples/components/tooltip.html.erb
|
128
|
+
- app/views/layouts/_sidebar.html.erb
|
129
|
+
- app/views/layouts/application.html.erb
|
130
|
+
- app/views/layouts/component.html.erb
|
131
|
+
- app/views/layouts/documentation/_breadcrumb.html.erb
|
132
|
+
- app/views/layouts/documentation/_component_header.html.erb
|
133
|
+
- app/views/layouts/documentation/_examples.html.erb
|
134
|
+
- app/views/layouts/documentation/_preview.html.erb
|
135
|
+
- app/views/layouts/mailer.html.erb
|
136
|
+
- app/views/layouts/mailer.text.erb
|
137
|
+
- app/views/layouts/shared/_header.html.erb
|
138
|
+
- config.ru
|
139
|
+
- config/application.rb
|
140
|
+
- config/boot.rb
|
141
|
+
- config/cable.yml
|
142
|
+
- config/credentials.yml.enc
|
143
|
+
- config/database.yml
|
144
|
+
- config/environment.rb
|
145
|
+
- config/environments/development.rb
|
146
|
+
- config/environments/production.rb
|
147
|
+
- config/environments/test.rb
|
148
|
+
- config/importmap.rb
|
149
|
+
- config/initializers/assets.rb
|
150
|
+
- config/initializers/content_security_policy.rb
|
151
|
+
- config/initializers/filter_parameter_logging.rb
|
152
|
+
- config/initializers/inflections.rb
|
153
|
+
- config/initializers/permissions_policy.rb
|
154
|
+
- config/locales/en.yml
|
155
|
+
- config/puma.rb
|
156
|
+
- config/render.yml
|
157
|
+
- config/routes.rb
|
158
|
+
- config/storage.yml
|
159
|
+
- config/tailwind.config.js
|
160
|
+
- db/seeds.rb
|
161
|
+
- lib/assets/.keep
|
162
|
+
- lib/generators/shadcn_ui_generator.rb
|
163
|
+
- lib/shadcn-ui/shadcn-ui.rb
|
164
|
+
- lib/shadcn-ui/version.rb
|
165
|
+
- lib/tasks/.keep
|
166
|
+
- log/.keep
|
167
|
+
- package-lock.json
|
168
|
+
- package.json
|
169
|
+
- public/404.html
|
170
|
+
- public/422.html
|
171
|
+
- public/500.html
|
172
|
+
- public/android-chrome-192x192.png
|
173
|
+
- public/android-chrome-512x512.png
|
174
|
+
- public/apple-touch-icon-precomposed.png
|
175
|
+
- public/apple-touch-icon.png
|
176
|
+
- public/favicon-16x16.png
|
177
|
+
- public/favicon-32x32.png
|
178
|
+
- public/favicon.ico
|
179
|
+
- public/og.jpg
|
180
|
+
- public/robots.txt
|
181
|
+
- sig/shadcn-ui.rbs
|
182
|
+
- storage/.keep
|
183
|
+
- tmp/.keep
|
184
|
+
- tmp/pids/.keep
|
185
|
+
- tmp/storage/.keep
|
186
|
+
- vendor/.keep
|
187
|
+
- vendor/javascript/.keep
|
188
|
+
homepage: https://github.com/aviflombaum/shadcn-rails
|
189
|
+
licenses:
|
190
|
+
- MIT
|
191
|
+
metadata:
|
192
|
+
homepage_uri: https://github.com/aviflombaum/shadcn-rails
|
193
|
+
source_code_uri: https://github.com/aviflombaum/shadcn-rails
|
194
|
+
changelog_uri: https://github.com/aviflombaum/shadcn-rails/tree/main/CHANGELOG.md
|
195
|
+
post_install_message:
|
196
|
+
rdoc_options: []
|
197
|
+
require_paths:
|
198
|
+
- lib
|
199
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
200
|
+
requirements:
|
201
|
+
- - ">="
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
version: 2.6.0
|
204
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
requirements: []
|
210
|
+
rubygems_version: 3.4.15
|
211
|
+
signing_key:
|
212
|
+
specification_version: 4
|
213
|
+
summary: Provides the shadcn-ui component library to a Ruby on Rails application.
|
214
|
+
test_files: []
|