m9sh 0.2.1 → 0.2.2
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 +4 -4
- data/.idea/hotcdn.iml +30 -0
- data/.mise.toml +2 -2
- data/app/assets/config/manifest.js +4 -0
- data/app/assets/images/icons/activity.svg +3 -0
- data/app/assets/images/icons/bell.svg +4 -0
- data/app/assets/images/icons/book.svg +4 -0
- data/app/assets/images/icons/chevron-down.svg +3 -0
- data/app/assets/images/icons/chevron-left.svg +3 -0
- data/app/assets/images/icons/chevron-right.svg +3 -0
- data/app/assets/images/icons/credit-card.svg +4 -0
- data/app/assets/images/icons/dollar-sign.svg +3 -0
- data/app/assets/images/icons/edit.svg +4 -0
- data/app/assets/images/icons/github.svg +3 -0
- data/app/assets/images/icons/home.svg +4 -0
- data/app/assets/images/icons/info.svg +5 -0
- data/app/assets/images/icons/layout.svg +6 -0
- data/app/assets/images/icons/logout.svg +5 -0
- data/app/assets/images/icons/menu.svg +5 -0
- data/app/assets/images/icons/moon.svg +3 -0
- data/app/assets/images/icons/paintbrush.svg +6 -0
- data/app/assets/images/icons/search.svg +4 -0
- data/app/assets/images/icons/settings.svg +4 -0
- data/app/assets/images/icons/sun.svg +11 -0
- data/app/assets/images/icons/user.svg +4 -0
- data/app/assets/images/icons/users.svg +5 -0
- data/app/assets/stylesheets/tailwind.css +1180 -0
- data/app/components/backdrop_component.rb +103 -0
- data/app/components/docs/code_block_component.rb +56 -0
- data/app/components/docs/component_api_component.rb +16 -0
- data/app/components/docs/component_examples_component.rb +16 -0
- data/app/components/docs/component_header_component.html.erb +8 -0
- data/app/components/docs/component_header_component.rb +14 -0
- data/app/components/docs/component_installation_component.html.erb +15 -0
- data/app/components/docs/component_installation_component.rb +13 -0
- data/app/components/docs/component_page_component.html.erb +9 -0
- data/app/components/docs/component_page_component.rb +19 -0
- data/app/components/docs/component_preview_component.rb +318 -0
- data/app/components/docs/component_usage_component.rb +18 -0
- data/app/components/docs/prop_table_component.rb +64 -0
- data/app/controllers/application_controller.rb +3 -0
- data/app/controllers/blocks_controller.rb +51 -0
- data/app/controllers/docs_controller.rb +162 -0
- data/app/controllers/showcase_controller.rb +42 -0
- data/app/helpers/blocks_helper.rb +343 -0
- data/app/helpers/docs_helper.rb +3807 -0
- data/app/helpers/m9sh/toast_helper.rb +46 -0
- data/app/helpers/m9sh_helper.rb +343 -0
- data/app/javascript/application.js +3 -0
- data/app/javascript/controllers/application.js +9 -0
- data/app/javascript/controllers/backdrop_controller.js +137 -0
- data/app/javascript/controllers/color_customizer_controller.js +569 -0
- data/app/javascript/controllers/color_theme_controller.js +120 -0
- data/app/javascript/controllers/docs/component_preview_controller.js +149 -0
- data/app/javascript/controllers/docs/copy_button_controller.js +20 -0
- data/app/javascript/controllers/index.js +6 -0
- data/app/javascript/controllers/theme_controller.js +23 -0
- data/app/views/blocks/_sidebar.html.erb +31 -0
- data/app/views/blocks/_toc.html.erb +29 -0
- data/app/views/blocks/examples/dashboard-01.html.erb +180 -0
- data/app/views/blocks/examples/dashboard-02.html.erb +190 -0
- data/app/views/blocks/examples/dashboard-03.html.erb +210 -0
- data/app/views/blocks/examples/settings-01.html.erb +220 -0
- data/app/views/blocks/examples/settings-02.html.erb +231 -0
- data/app/views/blocks/examples/settings-03.html.erb +340 -0
- data/app/views/blocks/index.html.erb +65 -0
- data/app/views/docs/_sidebar.html.erb +47 -0
- data/app/views/docs/_toc.html.erb +19 -0
- data/app/views/docs/about.html.erb +68 -0
- data/app/views/docs/components/accordion.html.erb +196 -0
- data/app/views/docs/components/alert.html.erb +272 -0
- data/app/views/docs/components/alert_dialog.html.erb +232 -0
- data/app/views/docs/components/avatar.html.erb +207 -0
- data/app/views/docs/components/badge.html.erb +145 -0
- data/app/views/docs/components/breadcrumb.html.erb +264 -0
- data/app/views/docs/components/button.html.erb +229 -0
- data/app/views/docs/components/card.html.erb +378 -0
- data/app/views/docs/components/checkbox.html.erb +212 -0
- data/app/views/docs/components/collapsible.html.erb +252 -0
- data/app/views/docs/components/dialog.html.erb +323 -0
- data/app/views/docs/components/dropdown_menu.html.erb +289 -0
- data/app/views/docs/components/hover_card.html.erb +220 -0
- data/app/views/docs/components/input.html.erb +254 -0
- data/app/views/docs/components/label.html.erb +128 -0
- data/app/views/docs/components/main.html.erb +352 -0
- data/app/views/docs/components/navbar.html.erb +394 -0
- data/app/views/docs/components/navigation_menu.html.erb +226 -0
- data/app/views/docs/components/popover.html.erb +267 -0
- data/app/views/docs/components/progress.html.erb +107 -0
- data/app/views/docs/components/radio_group.html.erb +209 -0
- data/app/views/docs/components/select.html.erb +260 -0
- data/app/views/docs/components/separator.html.erb +162 -0
- data/app/views/docs/components/sheet.html.erb +270 -0
- data/app/views/docs/components/sidebar.html.erb +597 -0
- data/app/views/docs/components/skeleton.html.erb +150 -0
- data/app/views/docs/components/slider.html.erb +218 -0
- data/app/views/docs/components/spinner.html.erb +132 -0
- data/app/views/docs/components/switch.html.erb +148 -0
- data/app/views/docs/components/table.html.erb +259 -0
- data/app/views/docs/components/tabs.html.erb +225 -0
- data/app/views/docs/components/textarea.html.erb +239 -0
- data/app/views/docs/components/theme_toggle.html.erb +135 -0
- data/app/views/docs/components/toast.html.erb +205 -0
- data/app/views/docs/components/toaster.html.erb +227 -0
- data/app/views/docs/components/toggle.html.erb +154 -0
- data/app/views/docs/components/tooltip.html.erb +216 -0
- data/app/views/docs/components/typography.html.erb +180 -0
- data/app/views/docs/index.html.erb +143 -0
- data/app/views/docs/installation.html.erb +155 -0
- data/app/views/docs/simple_test.html.erb +13 -0
- data/app/views/docs/test_accordion.html.erb +14 -0
- data/app/views/docs/usage.html.erb +272 -0
- data/app/views/layouts/application.html.erb +107 -0
- data/app/views/layouts/backdrop.html.erb +77 -0
- data/app/views/shared/_app_navbar.html.erb +240 -0
- data/app/views/shared/_navbar.html.erb +69 -0
- data/app/views/showcase/v2/_components_grid.html.erb +38 -0
- data/app/views/showcase/v2/_features.html.erb +59 -0
- data/app/views/showcase/v2/_forms.html.erb +195 -0
- data/app/views/showcase/v2/_hero.html.erb +55 -0
- data/app/views/showcase/v2/_metrics.html.erb +107 -0
- data/app/views/showcase/v2.html.erb +18 -0
- data/lib/m9sh/version.rb +1 -1
- data/m9sh.gemspec +1 -1
- metadata +120 -1
@@ -0,0 +1,55 @@
|
|
1
|
+
<!-- Hero Section -->
|
2
|
+
<section class="relative py-24 md:py-32 lg:py-40 bg-background border-b border-border overflow-hidden">
|
3
|
+
<!-- Aurora Borealis Background -->
|
4
|
+
<div class="aurora-container">
|
5
|
+
<div class="aurora aurora-1"></div>
|
6
|
+
<div class="aurora aurora-2"></div>
|
7
|
+
<div class="aurora aurora-3"></div>
|
8
|
+
</div>
|
9
|
+
|
10
|
+
<div class="container mx-auto px-4 md:px-6 relative z-10">
|
11
|
+
<div class="mx-auto max-w-[58rem] flex flex-col items-center text-center space-y-8">
|
12
|
+
<!-- Badge -->
|
13
|
+
<%= render M9sh::BadgeComponent.new(variant: :secondary) do %>
|
14
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mr-2">
|
15
|
+
<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/>
|
16
|
+
</svg>
|
17
|
+
Rails Component Library
|
18
|
+
<% end %>
|
19
|
+
|
20
|
+
<!-- Main heading -->
|
21
|
+
<div class="space-y-4">
|
22
|
+
<h1 class="text-3xl font-bold leading-tight tracking-tighter text-foreground sm:text-4xl md:text-5xl lg:text-6xl">
|
23
|
+
Build better Rails apps with
|
24
|
+
<br class="hidden sm:inline" />
|
25
|
+
beautifully crafted components
|
26
|
+
</h1>
|
27
|
+
<p class="mx-auto max-w-[750px] text-lg text-muted-foreground sm:text-xl">
|
28
|
+
A comprehensive collection of copy-and-paste ViewComponents built with Tailwind CSS.
|
29
|
+
Accessible, customizable, and open source.
|
30
|
+
</p>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<!-- CTA Buttons -->
|
34
|
+
<div class="flex flex-col space-y-4 sm:flex-row sm:space-x-4 sm:space-y-0">
|
35
|
+
<%= link_to docs_path do %>
|
36
|
+
<%= render M9sh::ButtonComponent.new(size: :lg, class: "h-11 px-8") do %>
|
37
|
+
Get Started
|
38
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ml-2">
|
39
|
+
<path d="M5 12h14"/>
|
40
|
+
<path d="m12 5 7 7-7 7"/>
|
41
|
+
</svg>
|
42
|
+
<% end %>
|
43
|
+
<% end %>
|
44
|
+
<%= link_to "https://github.com", target: "_blank", rel: "noreferrer" do %>
|
45
|
+
<%= render M9sh::ButtonComponent.new(variant: :outline, size: :lg, class: "h-11 px-8") do %>
|
46
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" viewBox="0 0 24 24" class="mr-2">
|
47
|
+
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
|
48
|
+
</svg>
|
49
|
+
View on GitHub
|
50
|
+
<% end %>
|
51
|
+
<% end %>
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
</section>
|
@@ -0,0 +1,107 @@
|
|
1
|
+
<!-- Dashboard Metrics Section -->
|
2
|
+
<section class="py-16 md:py-24 bg-accent/30">
|
3
|
+
<div class="container mx-auto px-4 md:px-6">
|
4
|
+
<div class="mx-auto max-w-[58rem] text-center mb-12">
|
5
|
+
<h2 class="text-3xl font-bold tracking-tight text-foreground sm:text-4xl">
|
6
|
+
Dashboard Ready Components
|
7
|
+
</h2>
|
8
|
+
<p class="mt-4 text-lg text-muted-foreground">
|
9
|
+
Build beautiful dashboards with our pre-styled metric cards and data visualizations
|
10
|
+
</p>
|
11
|
+
</div>
|
12
|
+
|
13
|
+
<div class="grid gap-4 md:grid-cols-2 lg:grid-cols-4 max-w-6xl mx-auto">
|
14
|
+
<!-- Revenue Card -->
|
15
|
+
<%= render M9sh::CardComponent.new do |card| %>
|
16
|
+
<% card.with_body do %>
|
17
|
+
<div class="flex items-center justify-between space-x-4">
|
18
|
+
<div class="flex items-center space-x-2">
|
19
|
+
<div class="p-2 bg-primary/10 rounded-lg">
|
20
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-primary">
|
21
|
+
<path d="M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/>
|
22
|
+
</svg>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
<div class="mt-4">
|
27
|
+
<p class="text-sm font-medium text-muted-foreground">Total Revenue</p>
|
28
|
+
<h3 class="text-2xl font-bold text-foreground mt-1">$45,231.89</h3>
|
29
|
+
<p class="text-xs text-muted-foreground mt-1">
|
30
|
+
<span class="text-green-600 dark:text-green-400">+20.1%</span> from last month
|
31
|
+
</p>
|
32
|
+
</div>
|
33
|
+
<% end %>
|
34
|
+
<% end %>
|
35
|
+
|
36
|
+
<!-- Subscriptions Card -->
|
37
|
+
<%= render M9sh::CardComponent.new do |card| %>
|
38
|
+
<% card.with_body do %>
|
39
|
+
<div class="flex items-center justify-between space-x-4">
|
40
|
+
<div class="flex items-center space-x-2">
|
41
|
+
<div class="p-2 bg-primary/10 rounded-lg">
|
42
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-primary">
|
43
|
+
<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/>
|
44
|
+
<circle cx="9" cy="7" r="4"/>
|
45
|
+
<path d="M22 21v-2a4 4 0 0 0-3-3.87"/>
|
46
|
+
<path d="M16 3.13a4 4 0 0 1 0 7.75"/>
|
47
|
+
</svg>
|
48
|
+
</div>
|
49
|
+
</div>
|
50
|
+
</div>
|
51
|
+
<div class="mt-4">
|
52
|
+
<p class="text-sm font-medium text-muted-foreground">Subscriptions</p>
|
53
|
+
<h3 class="text-2xl font-bold text-foreground mt-1">+2,350</h3>
|
54
|
+
<p class="text-xs text-muted-foreground mt-1">
|
55
|
+
<span class="text-green-600 dark:text-green-400">+180.1%</span> from last month
|
56
|
+
</p>
|
57
|
+
</div>
|
58
|
+
<% end %>
|
59
|
+
<% end %>
|
60
|
+
|
61
|
+
<!-- Sales Card -->
|
62
|
+
<%= render M9sh::CardComponent.new do |card| %>
|
63
|
+
<% card.with_body do %>
|
64
|
+
<div class="flex items-center justify-between space-x-4">
|
65
|
+
<div class="flex items-center space-x-2">
|
66
|
+
<div class="p-2 bg-primary/10 rounded-lg">
|
67
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-primary">
|
68
|
+
<rect width="20" height="14" x="2" y="5" rx="2"/>
|
69
|
+
<path d="M2 10h20"/>
|
70
|
+
</svg>
|
71
|
+
</div>
|
72
|
+
</div>
|
73
|
+
</div>
|
74
|
+
<div class="mt-4">
|
75
|
+
<p class="text-sm font-medium text-muted-foreground">Sales</p>
|
76
|
+
<h3 class="text-2xl font-bold text-foreground mt-1">+12,234</h3>
|
77
|
+
<p class="text-xs text-muted-foreground mt-1">
|
78
|
+
<span class="text-green-600 dark:text-green-400">+19%</span> from last month
|
79
|
+
</p>
|
80
|
+
</div>
|
81
|
+
<% end %>
|
82
|
+
<% end %>
|
83
|
+
|
84
|
+
<!-- Active Now Card -->
|
85
|
+
<%= render M9sh::CardComponent.new do |card| %>
|
86
|
+
<% card.with_body do %>
|
87
|
+
<div class="flex items-center justify-between space-x-4">
|
88
|
+
<div class="flex items-center space-x-2">
|
89
|
+
<div class="p-2 bg-primary/10 rounded-lg">
|
90
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-primary">
|
91
|
+
<path d="M22 12h-4l-3 9L9 3l-3 9H2"/>
|
92
|
+
</svg>
|
93
|
+
</div>
|
94
|
+
</div>
|
95
|
+
</div>
|
96
|
+
<div class="mt-4">
|
97
|
+
<p class="text-sm font-medium text-muted-foreground">Active Now</p>
|
98
|
+
<h3 class="text-2xl font-bold text-foreground mt-1">+573</h3>
|
99
|
+
<p class="text-xs text-muted-foreground mt-1">
|
100
|
+
<span class="text-green-600 dark:text-green-400">+201</span> since last hour
|
101
|
+
</p>
|
102
|
+
</div>
|
103
|
+
<% end %>
|
104
|
+
<% end %>
|
105
|
+
</div>
|
106
|
+
</div>
|
107
|
+
</section>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<% content_for :title, "m9sh/ui - Component Library for Rails" %>
|
2
|
+
|
3
|
+
<!-- Hero Section -->
|
4
|
+
<%= render "showcase/v2/hero" %>
|
5
|
+
|
6
|
+
<!-- Metrics Section -->
|
7
|
+
<%= render "showcase/v2/metrics" %>
|
8
|
+
|
9
|
+
<!-- Forms Section -->
|
10
|
+
<%= render "showcase/v2/forms" %>
|
11
|
+
|
12
|
+
<!-- Features Section -->
|
13
|
+
<%= render "showcase/v2/features" %>
|
14
|
+
|
15
|
+
<!-- Components Grid -->
|
16
|
+
<% if @components.present? %>
|
17
|
+
<%= render "showcase/v2/components_grid" %>
|
18
|
+
<% end %>
|
data/lib/m9sh/version.rb
CHANGED
data/m9sh.gemspec
CHANGED
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.files = Dir.chdir(__dir__) do
|
25
25
|
`git ls-files -z`.split("\x0").reject do |f|
|
26
26
|
(File.expand_path(f) == __FILE__) ||
|
27
|
-
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile config/ tmp/
|
27
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile config/ tmp/ db/ public/ log/])
|
28
28
|
end
|
29
29
|
end
|
30
30
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: m9sh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcin Urbanski
|
@@ -94,6 +94,43 @@ files:
|
|
94
94
|
- PUBLISHING.md
|
95
95
|
- README.md
|
96
96
|
- Rakefile
|
97
|
+
- app/assets/config/manifest.js
|
98
|
+
- app/assets/images/icons/activity.svg
|
99
|
+
- app/assets/images/icons/bell.svg
|
100
|
+
- app/assets/images/icons/book.svg
|
101
|
+
- app/assets/images/icons/chevron-down.svg
|
102
|
+
- app/assets/images/icons/chevron-left.svg
|
103
|
+
- app/assets/images/icons/chevron-right.svg
|
104
|
+
- app/assets/images/icons/credit-card.svg
|
105
|
+
- app/assets/images/icons/dollar-sign.svg
|
106
|
+
- app/assets/images/icons/edit.svg
|
107
|
+
- app/assets/images/icons/github.svg
|
108
|
+
- app/assets/images/icons/home.svg
|
109
|
+
- app/assets/images/icons/info.svg
|
110
|
+
- app/assets/images/icons/layout.svg
|
111
|
+
- app/assets/images/icons/logout.svg
|
112
|
+
- app/assets/images/icons/menu.svg
|
113
|
+
- app/assets/images/icons/moon.svg
|
114
|
+
- app/assets/images/icons/paintbrush.svg
|
115
|
+
- app/assets/images/icons/search.svg
|
116
|
+
- app/assets/images/icons/settings.svg
|
117
|
+
- app/assets/images/icons/sun.svg
|
118
|
+
- app/assets/images/icons/user.svg
|
119
|
+
- app/assets/images/icons/users.svg
|
120
|
+
- app/assets/stylesheets/tailwind.css
|
121
|
+
- app/components/backdrop_component.rb
|
122
|
+
- app/components/docs/code_block_component.rb
|
123
|
+
- app/components/docs/component_api_component.rb
|
124
|
+
- app/components/docs/component_examples_component.rb
|
125
|
+
- app/components/docs/component_header_component.html.erb
|
126
|
+
- app/components/docs/component_header_component.rb
|
127
|
+
- app/components/docs/component_installation_component.html.erb
|
128
|
+
- app/components/docs/component_installation_component.rb
|
129
|
+
- app/components/docs/component_page_component.html.erb
|
130
|
+
- app/components/docs/component_page_component.rb
|
131
|
+
- app/components/docs/component_preview_component.rb
|
132
|
+
- app/components/docs/component_usage_component.rb
|
133
|
+
- app/components/docs/prop_table_component.rb
|
97
134
|
- app/components/m9sh/accordion_component.rb
|
98
135
|
- app/components/m9sh/alert_component.rb
|
99
136
|
- app/components/m9sh/alert_dialog_component.rb
|
@@ -155,6 +192,22 @@ files:
|
|
155
192
|
- app/components/m9sh/tooltip_component.rb
|
156
193
|
- app/components/m9sh/typography_component.rb
|
157
194
|
- app/components/m9sh/utilities.rb
|
195
|
+
- app/controllers/application_controller.rb
|
196
|
+
- app/controllers/blocks_controller.rb
|
197
|
+
- app/controllers/docs_controller.rb
|
198
|
+
- app/controllers/showcase_controller.rb
|
199
|
+
- app/helpers/blocks_helper.rb
|
200
|
+
- app/helpers/docs_helper.rb
|
201
|
+
- app/helpers/m9sh/toast_helper.rb
|
202
|
+
- app/helpers/m9sh_helper.rb
|
203
|
+
- app/javascript/application.js
|
204
|
+
- app/javascript/controllers/application.js
|
205
|
+
- app/javascript/controllers/backdrop_controller.js
|
206
|
+
- app/javascript/controllers/color_customizer_controller.js
|
207
|
+
- app/javascript/controllers/color_theme_controller.js
|
208
|
+
- app/javascript/controllers/docs/component_preview_controller.js
|
209
|
+
- app/javascript/controllers/docs/copy_button_controller.js
|
210
|
+
- app/javascript/controllers/index.js
|
158
211
|
- app/javascript/controllers/m9sh/accordion_controller.js
|
159
212
|
- app/javascript/controllers/m9sh/alert_dialog_controller.js
|
160
213
|
- app/javascript/controllers/m9sh/collapsible_controller.js
|
@@ -175,6 +228,72 @@ files:
|
|
175
228
|
- app/javascript/controllers/m9sh/toaster_controller.js
|
176
229
|
- app/javascript/controllers/m9sh/toggle_controller.js
|
177
230
|
- app/javascript/controllers/m9sh/tooltip_controller.js
|
231
|
+
- app/javascript/controllers/theme_controller.js
|
232
|
+
- app/views/blocks/_sidebar.html.erb
|
233
|
+
- app/views/blocks/_toc.html.erb
|
234
|
+
- app/views/blocks/examples/dashboard-01.html.erb
|
235
|
+
- app/views/blocks/examples/dashboard-02.html.erb
|
236
|
+
- app/views/blocks/examples/dashboard-03.html.erb
|
237
|
+
- app/views/blocks/examples/settings-01.html.erb
|
238
|
+
- app/views/blocks/examples/settings-02.html.erb
|
239
|
+
- app/views/blocks/examples/settings-03.html.erb
|
240
|
+
- app/views/blocks/index.html.erb
|
241
|
+
- app/views/docs/_sidebar.html.erb
|
242
|
+
- app/views/docs/_toc.html.erb
|
243
|
+
- app/views/docs/about.html.erb
|
244
|
+
- app/views/docs/components/accordion.html.erb
|
245
|
+
- app/views/docs/components/alert.html.erb
|
246
|
+
- app/views/docs/components/alert_dialog.html.erb
|
247
|
+
- app/views/docs/components/avatar.html.erb
|
248
|
+
- app/views/docs/components/badge.html.erb
|
249
|
+
- app/views/docs/components/breadcrumb.html.erb
|
250
|
+
- app/views/docs/components/button.html.erb
|
251
|
+
- app/views/docs/components/card.html.erb
|
252
|
+
- app/views/docs/components/checkbox.html.erb
|
253
|
+
- app/views/docs/components/collapsible.html.erb
|
254
|
+
- app/views/docs/components/dialog.html.erb
|
255
|
+
- app/views/docs/components/dropdown_menu.html.erb
|
256
|
+
- app/views/docs/components/hover_card.html.erb
|
257
|
+
- app/views/docs/components/input.html.erb
|
258
|
+
- app/views/docs/components/label.html.erb
|
259
|
+
- app/views/docs/components/main.html.erb
|
260
|
+
- app/views/docs/components/navbar.html.erb
|
261
|
+
- app/views/docs/components/navigation_menu.html.erb
|
262
|
+
- app/views/docs/components/popover.html.erb
|
263
|
+
- app/views/docs/components/progress.html.erb
|
264
|
+
- app/views/docs/components/radio_group.html.erb
|
265
|
+
- app/views/docs/components/select.html.erb
|
266
|
+
- app/views/docs/components/separator.html.erb
|
267
|
+
- app/views/docs/components/sheet.html.erb
|
268
|
+
- app/views/docs/components/sidebar.html.erb
|
269
|
+
- app/views/docs/components/skeleton.html.erb
|
270
|
+
- app/views/docs/components/slider.html.erb
|
271
|
+
- app/views/docs/components/spinner.html.erb
|
272
|
+
- app/views/docs/components/switch.html.erb
|
273
|
+
- app/views/docs/components/table.html.erb
|
274
|
+
- app/views/docs/components/tabs.html.erb
|
275
|
+
- app/views/docs/components/textarea.html.erb
|
276
|
+
- app/views/docs/components/theme_toggle.html.erb
|
277
|
+
- app/views/docs/components/toast.html.erb
|
278
|
+
- app/views/docs/components/toaster.html.erb
|
279
|
+
- app/views/docs/components/toggle.html.erb
|
280
|
+
- app/views/docs/components/tooltip.html.erb
|
281
|
+
- app/views/docs/components/typography.html.erb
|
282
|
+
- app/views/docs/index.html.erb
|
283
|
+
- app/views/docs/installation.html.erb
|
284
|
+
- app/views/docs/simple_test.html.erb
|
285
|
+
- app/views/docs/test_accordion.html.erb
|
286
|
+
- app/views/docs/usage.html.erb
|
287
|
+
- app/views/layouts/application.html.erb
|
288
|
+
- app/views/layouts/backdrop.html.erb
|
289
|
+
- app/views/shared/_app_navbar.html.erb
|
290
|
+
- app/views/shared/_navbar.html.erb
|
291
|
+
- app/views/showcase/v2.html.erb
|
292
|
+
- app/views/showcase/v2/_components_grid.html.erb
|
293
|
+
- app/views/showcase/v2/_features.html.erb
|
294
|
+
- app/views/showcase/v2/_forms.html.erb
|
295
|
+
- app/views/showcase/v2/_hero.html.erb
|
296
|
+
- app/views/showcase/v2/_metrics.html.erb
|
178
297
|
- components.json
|
179
298
|
- config.ru
|
180
299
|
- exe/m9sh
|