keystone_ui 0.6.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/app/assets/javascripts/keystone_ui/accordion_controller.js +21 -0
- data/app/assets/javascripts/keystone_ui/auto_submit_controller.js +7 -0
- data/app/assets/javascripts/keystone_ui/chartjs.js +24 -0
- data/app/assets/javascripts/keystone_ui/clipboard_controller.js +25 -0
- data/app/assets/javascripts/keystone_ui/color_picker_controller.js +158 -0
- data/app/assets/javascripts/keystone_ui/column_picker_controller.js +47 -0
- data/app/assets/javascripts/keystone_ui/dismiss_controller.js +7 -0
- data/app/assets/javascripts/keystone_ui/dropdown_controller.js +16 -0
- data/app/assets/javascripts/keystone_ui/file_upload_controller.js +61 -0
- data/app/assets/javascripts/keystone_ui/index.js +33 -0
- data/app/assets/javascripts/keystone_ui/line_chart_controller.js +38 -0
- data/app/assets/javascripts/keystone_ui/modal_controller.js +19 -0
- data/app/assets/javascripts/keystone_ui/multi_select_controller.js +35 -0
- data/app/assets/javascripts/keystone_ui/stat_card_info_controller.js +9 -0
- data/app/assets/javascripts/keystone_ui/swipe_deck_controller.js +123 -0
- data/app/assets/javascripts/keystone_ui/tab_switcher_controller.js +19 -0
- data/app/assets/tailwind/keystone_ui_engine/color_picker.css +31 -0
- data/app/assets/tailwind/keystone_ui_engine/engine.css +7 -0
- data/app/assets/tailwind/keystone_ui_engine/nav.css +175 -0
- data/app/assets/tailwind/keystone_ui_engine/theme.css +32 -0
- data/app/components/keystone/ui/accordion_component.html.erb +19 -0
- data/app/components/keystone/ui/accordion_component.rb +51 -0
- data/app/components/keystone/ui/alert_component.html.erb +15 -0
- data/app/components/keystone/ui/alert_component.rb +58 -0
- data/app/components/keystone/ui/badge_component.html.erb +1 -0
- data/app/components/keystone/ui/badge_component.rb +28 -0
- data/app/components/keystone/ui/bottom_nav_component.html.erb +3 -0
- data/app/components/keystone/ui/bottom_nav_component.rb +13 -0
- data/app/components/keystone/ui/bottom_nav_item_component.html.erb +4 -0
- data/app/components/keystone/ui/bottom_nav_item_component.rb +24 -0
- data/app/components/keystone/ui/button_component.html.erb +1 -0
- data/app/components/keystone/ui/button_component.rb +57 -0
- data/app/components/keystone/ui/card_component.html.erb +9 -0
- data/app/components/keystone/ui/card_component.rb +33 -0
- data/app/components/keystone/ui/card_link_component.html.erb +3 -0
- data/app/components/keystone/ui/card_link_component.rb +25 -0
- data/app/components/keystone/ui/chart_card_component.html.erb +6 -0
- data/app/components/keystone/ui/chart_card_component.rb +35 -0
- data/app/components/keystone/ui/code_component.html.erb +6 -0
- data/app/components/keystone/ui/code_component.rb +40 -0
- data/app/components/keystone/ui/color_picker_component.html.erb +37 -0
- data/app/components/keystone/ui/color_picker_component.rb +31 -0
- data/app/components/keystone/ui/column.rb +21 -0
- data/app/components/keystone/ui/column_picker_component.html.erb +20 -0
- data/app/components/keystone/ui/column_picker_component.rb +35 -0
- data/app/components/keystone/ui/copy_button_component.html.erb +11 -0
- data/app/components/keystone/ui/copy_button_component.rb +39 -0
- data/app/components/keystone/ui/cta_banner_component.html.erb +9 -0
- data/app/components/keystone/ui/cta_banner_component.rb +39 -0
- data/app/components/keystone/ui/data_table_component.html.erb +54 -0
- data/app/components/keystone/ui/data_table_component.rb +173 -0
- data/app/components/keystone/ui/disclosure_component.html.erb +9 -0
- data/app/components/keystone/ui/disclosure_component.rb +46 -0
- data/app/components/keystone/ui/feature_grid_component.html.erb +17 -0
- data/app/components/keystone/ui/feature_grid_component.rb +55 -0
- data/app/components/keystone/ui/file_upload_component.html.erb +18 -0
- data/app/components/keystone/ui/file_upload_component.rb +85 -0
- data/app/components/keystone/ui/form_component.html.erb +3 -0
- data/app/components/keystone/ui/form_component.rb +27 -0
- data/app/components/keystone/ui/form_field_component.html.erb +36 -0
- data/app/components/keystone/ui/form_field_component.rb +83 -0
- data/app/components/keystone/ui/form_page_component.html.erb +10 -0
- data/app/components/keystone/ui/form_page_component.rb +21 -0
- data/app/components/keystone/ui/funnel_component.html.erb +14 -0
- data/app/components/keystone/ui/funnel_component.rb +85 -0
- data/app/components/keystone/ui/grid_component.html.erb +3 -0
- data/app/components/keystone/ui/grid_component.rb +38 -0
- data/app/components/keystone/ui/hero_component.html.erb +27 -0
- data/app/components/keystone/ui/hero_component.rb +74 -0
- data/app/components/keystone/ui/input_component.html.erb +1 -0
- data/app/components/keystone/ui/input_component.rb +57 -0
- data/app/components/keystone/ui/line_chart_component.html.erb +3 -0
- data/app/components/keystone/ui/line_chart_component.rb +48 -0
- data/app/components/keystone/ui/mobile_actions_component.html.erb +11 -0
- data/app/components/keystone/ui/mobile_actions_component.rb +21 -0
- data/app/components/keystone/ui/mobile_header_component.html.erb +11 -0
- data/app/components/keystone/ui/mobile_header_component.rb +38 -0
- data/app/components/keystone/ui/modal_component.html.erb +13 -0
- data/app/components/keystone/ui/modal_component.rb +68 -0
- data/app/components/keystone/ui/multi_select_component.html.erb +21 -0
- data/app/components/keystone/ui/multi_select_component.rb +40 -0
- data/app/components/keystone/ui/nav_dropdown_component.html.erb +11 -0
- data/app/components/keystone/ui/nav_dropdown_component.rb +33 -0
- data/app/components/keystone/ui/nav_item_component.html.erb +1 -0
- data/app/components/keystone/ui/nav_item_component.rb +21 -0
- data/app/components/keystone/ui/navbar_component.html.erb +34 -0
- data/app/components/keystone/ui/navbar_component.rb +32 -0
- data/app/components/keystone/ui/option_card_component.html.erb +9 -0
- data/app/components/keystone/ui/option_card_component.rb +28 -0
- data/app/components/keystone/ui/page_component.html.erb +3 -0
- data/app/components/keystone/ui/page_component.rb +40 -0
- data/app/components/keystone/ui/page_header_component.html.erb +17 -0
- data/app/components/keystone/ui/page_header_component.rb +42 -0
- data/app/components/keystone/ui/panel_component.html.erb +3 -0
- data/app/components/keystone/ui/panel_component.rb +25 -0
- data/app/components/keystone/ui/pipeline_component.html.erb +34 -0
- data/app/components/keystone/ui/pipeline_component.rb +48 -0
- data/app/components/keystone/ui/progress_component.html.erb +8 -0
- data/app/components/keystone/ui/progress_component.rb +35 -0
- data/app/components/keystone/ui/radio_card_component.html.erb +9 -0
- data/app/components/keystone/ui/radio_card_component.rb +42 -0
- data/app/components/keystone/ui/section_component.html.erb +18 -0
- data/app/components/keystone/ui/section_component.rb +32 -0
- data/app/components/keystone/ui/select_component.html.erb +8 -0
- data/app/components/keystone/ui/select_component.rb +38 -0
- data/app/components/keystone/ui/settings_link_component.html.erb +4 -0
- data/app/components/keystone/ui/settings_link_component.rb +26 -0
- data/app/components/keystone/ui/show_page_component.html.erb +4 -0
- data/app/components/keystone/ui/show_page_component.rb +21 -0
- data/app/components/keystone/ui/stat_card_component.html.erb +22 -0
- data/app/components/keystone/ui/stat_card_component.rb +92 -0
- data/app/components/keystone/ui/swipe_deck_component.html.erb +39 -0
- data/app/components/keystone/ui/swipe_deck_component.rb +52 -0
- data/app/components/keystone/ui/tab_switcher_component.html.erb +14 -0
- data/app/components/keystone/ui/tab_switcher_component.rb +33 -0
- data/app/components/keystone/ui/textarea_component.html.erb +1 -0
- data/app/components/keystone/ui/textarea_component.rb +38 -0
- data/app/helpers/keystone_ui_helper.rb +195 -0
- data/config/importmap.rb +19 -0
- data/lib/generators/keystone/install_generator.rb +90 -0
- data/lib/keystone_ui/configuration.rb +24 -0
- data/lib/keystone_ui/engine.rb +47 -0
- data/lib/keystone_ui/safelist.rb +106 -0
- data/lib/keystone_ui/version.rb +5 -0
- data/lib/keystone_ui.rb +9 -0
- data/the_local/agents/keystone_ui-develop.md +297 -0
- data/the_local/agents/keystone_ui-info.md +81 -0
- data/the_local/agents/keystone_ui-install.md +137 -0
- data/the_local/interface.yml +110 -0
- metadata +203 -0
metadata
ADDED
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: keystone_ui
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.6.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Tyler Schneider
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-07-31 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: view_component
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2.0'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '5'
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '2.0'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '5'
|
|
33
|
+
description: Reusable UI component system for Rails applications using ViewComponent.
|
|
34
|
+
email:
|
|
35
|
+
- tylercschneider@gmail.com
|
|
36
|
+
executables: []
|
|
37
|
+
extensions: []
|
|
38
|
+
extra_rdoc_files: []
|
|
39
|
+
files:
|
|
40
|
+
- app/assets/javascripts/keystone_ui/accordion_controller.js
|
|
41
|
+
- app/assets/javascripts/keystone_ui/auto_submit_controller.js
|
|
42
|
+
- app/assets/javascripts/keystone_ui/chartjs.js
|
|
43
|
+
- app/assets/javascripts/keystone_ui/clipboard_controller.js
|
|
44
|
+
- app/assets/javascripts/keystone_ui/color_picker_controller.js
|
|
45
|
+
- app/assets/javascripts/keystone_ui/column_picker_controller.js
|
|
46
|
+
- app/assets/javascripts/keystone_ui/dismiss_controller.js
|
|
47
|
+
- app/assets/javascripts/keystone_ui/dropdown_controller.js
|
|
48
|
+
- app/assets/javascripts/keystone_ui/file_upload_controller.js
|
|
49
|
+
- app/assets/javascripts/keystone_ui/index.js
|
|
50
|
+
- app/assets/javascripts/keystone_ui/line_chart_controller.js
|
|
51
|
+
- app/assets/javascripts/keystone_ui/modal_controller.js
|
|
52
|
+
- app/assets/javascripts/keystone_ui/multi_select_controller.js
|
|
53
|
+
- app/assets/javascripts/keystone_ui/stat_card_info_controller.js
|
|
54
|
+
- app/assets/javascripts/keystone_ui/swipe_deck_controller.js
|
|
55
|
+
- app/assets/javascripts/keystone_ui/tab_switcher_controller.js
|
|
56
|
+
- app/assets/tailwind/keystone_ui_engine/color_picker.css
|
|
57
|
+
- app/assets/tailwind/keystone_ui_engine/engine.css
|
|
58
|
+
- app/assets/tailwind/keystone_ui_engine/nav.css
|
|
59
|
+
- app/assets/tailwind/keystone_ui_engine/theme.css
|
|
60
|
+
- app/components/keystone/ui/accordion_component.html.erb
|
|
61
|
+
- app/components/keystone/ui/accordion_component.rb
|
|
62
|
+
- app/components/keystone/ui/alert_component.html.erb
|
|
63
|
+
- app/components/keystone/ui/alert_component.rb
|
|
64
|
+
- app/components/keystone/ui/badge_component.html.erb
|
|
65
|
+
- app/components/keystone/ui/badge_component.rb
|
|
66
|
+
- app/components/keystone/ui/bottom_nav_component.html.erb
|
|
67
|
+
- app/components/keystone/ui/bottom_nav_component.rb
|
|
68
|
+
- app/components/keystone/ui/bottom_nav_item_component.html.erb
|
|
69
|
+
- app/components/keystone/ui/bottom_nav_item_component.rb
|
|
70
|
+
- app/components/keystone/ui/button_component.html.erb
|
|
71
|
+
- app/components/keystone/ui/button_component.rb
|
|
72
|
+
- app/components/keystone/ui/card_component.html.erb
|
|
73
|
+
- app/components/keystone/ui/card_component.rb
|
|
74
|
+
- app/components/keystone/ui/card_link_component.html.erb
|
|
75
|
+
- app/components/keystone/ui/card_link_component.rb
|
|
76
|
+
- app/components/keystone/ui/chart_card_component.html.erb
|
|
77
|
+
- app/components/keystone/ui/chart_card_component.rb
|
|
78
|
+
- app/components/keystone/ui/code_component.html.erb
|
|
79
|
+
- app/components/keystone/ui/code_component.rb
|
|
80
|
+
- app/components/keystone/ui/color_picker_component.html.erb
|
|
81
|
+
- app/components/keystone/ui/color_picker_component.rb
|
|
82
|
+
- app/components/keystone/ui/column.rb
|
|
83
|
+
- app/components/keystone/ui/column_picker_component.html.erb
|
|
84
|
+
- app/components/keystone/ui/column_picker_component.rb
|
|
85
|
+
- app/components/keystone/ui/copy_button_component.html.erb
|
|
86
|
+
- app/components/keystone/ui/copy_button_component.rb
|
|
87
|
+
- app/components/keystone/ui/cta_banner_component.html.erb
|
|
88
|
+
- app/components/keystone/ui/cta_banner_component.rb
|
|
89
|
+
- app/components/keystone/ui/data_table_component.html.erb
|
|
90
|
+
- app/components/keystone/ui/data_table_component.rb
|
|
91
|
+
- app/components/keystone/ui/disclosure_component.html.erb
|
|
92
|
+
- app/components/keystone/ui/disclosure_component.rb
|
|
93
|
+
- app/components/keystone/ui/feature_grid_component.html.erb
|
|
94
|
+
- app/components/keystone/ui/feature_grid_component.rb
|
|
95
|
+
- app/components/keystone/ui/file_upload_component.html.erb
|
|
96
|
+
- app/components/keystone/ui/file_upload_component.rb
|
|
97
|
+
- app/components/keystone/ui/form_component.html.erb
|
|
98
|
+
- app/components/keystone/ui/form_component.rb
|
|
99
|
+
- app/components/keystone/ui/form_field_component.html.erb
|
|
100
|
+
- app/components/keystone/ui/form_field_component.rb
|
|
101
|
+
- app/components/keystone/ui/form_page_component.html.erb
|
|
102
|
+
- app/components/keystone/ui/form_page_component.rb
|
|
103
|
+
- app/components/keystone/ui/funnel_component.html.erb
|
|
104
|
+
- app/components/keystone/ui/funnel_component.rb
|
|
105
|
+
- app/components/keystone/ui/grid_component.html.erb
|
|
106
|
+
- app/components/keystone/ui/grid_component.rb
|
|
107
|
+
- app/components/keystone/ui/hero_component.html.erb
|
|
108
|
+
- app/components/keystone/ui/hero_component.rb
|
|
109
|
+
- app/components/keystone/ui/input_component.html.erb
|
|
110
|
+
- app/components/keystone/ui/input_component.rb
|
|
111
|
+
- app/components/keystone/ui/line_chart_component.html.erb
|
|
112
|
+
- app/components/keystone/ui/line_chart_component.rb
|
|
113
|
+
- app/components/keystone/ui/mobile_actions_component.html.erb
|
|
114
|
+
- app/components/keystone/ui/mobile_actions_component.rb
|
|
115
|
+
- app/components/keystone/ui/mobile_header_component.html.erb
|
|
116
|
+
- app/components/keystone/ui/mobile_header_component.rb
|
|
117
|
+
- app/components/keystone/ui/modal_component.html.erb
|
|
118
|
+
- app/components/keystone/ui/modal_component.rb
|
|
119
|
+
- app/components/keystone/ui/multi_select_component.html.erb
|
|
120
|
+
- app/components/keystone/ui/multi_select_component.rb
|
|
121
|
+
- app/components/keystone/ui/nav_dropdown_component.html.erb
|
|
122
|
+
- app/components/keystone/ui/nav_dropdown_component.rb
|
|
123
|
+
- app/components/keystone/ui/nav_item_component.html.erb
|
|
124
|
+
- app/components/keystone/ui/nav_item_component.rb
|
|
125
|
+
- app/components/keystone/ui/navbar_component.html.erb
|
|
126
|
+
- app/components/keystone/ui/navbar_component.rb
|
|
127
|
+
- app/components/keystone/ui/option_card_component.html.erb
|
|
128
|
+
- app/components/keystone/ui/option_card_component.rb
|
|
129
|
+
- app/components/keystone/ui/page_component.html.erb
|
|
130
|
+
- app/components/keystone/ui/page_component.rb
|
|
131
|
+
- app/components/keystone/ui/page_header_component.html.erb
|
|
132
|
+
- app/components/keystone/ui/page_header_component.rb
|
|
133
|
+
- app/components/keystone/ui/panel_component.html.erb
|
|
134
|
+
- app/components/keystone/ui/panel_component.rb
|
|
135
|
+
- app/components/keystone/ui/pipeline_component.html.erb
|
|
136
|
+
- app/components/keystone/ui/pipeline_component.rb
|
|
137
|
+
- app/components/keystone/ui/progress_component.html.erb
|
|
138
|
+
- app/components/keystone/ui/progress_component.rb
|
|
139
|
+
- app/components/keystone/ui/radio_card_component.html.erb
|
|
140
|
+
- app/components/keystone/ui/radio_card_component.rb
|
|
141
|
+
- app/components/keystone/ui/section_component.html.erb
|
|
142
|
+
- app/components/keystone/ui/section_component.rb
|
|
143
|
+
- app/components/keystone/ui/select_component.html.erb
|
|
144
|
+
- app/components/keystone/ui/select_component.rb
|
|
145
|
+
- app/components/keystone/ui/settings_link_component.html.erb
|
|
146
|
+
- app/components/keystone/ui/settings_link_component.rb
|
|
147
|
+
- app/components/keystone/ui/show_page_component.html.erb
|
|
148
|
+
- app/components/keystone/ui/show_page_component.rb
|
|
149
|
+
- app/components/keystone/ui/stat_card_component.html.erb
|
|
150
|
+
- app/components/keystone/ui/stat_card_component.rb
|
|
151
|
+
- app/components/keystone/ui/swipe_deck_component.html.erb
|
|
152
|
+
- app/components/keystone/ui/swipe_deck_component.rb
|
|
153
|
+
- app/components/keystone/ui/tab_switcher_component.html.erb
|
|
154
|
+
- app/components/keystone/ui/tab_switcher_component.rb
|
|
155
|
+
- app/components/keystone/ui/textarea_component.html.erb
|
|
156
|
+
- app/components/keystone/ui/textarea_component.rb
|
|
157
|
+
- app/helpers/keystone_ui_helper.rb
|
|
158
|
+
- config/importmap.rb
|
|
159
|
+
- lib/generators/keystone/install_generator.rb
|
|
160
|
+
- lib/keystone_ui.rb
|
|
161
|
+
- lib/keystone_ui/configuration.rb
|
|
162
|
+
- lib/keystone_ui/engine.rb
|
|
163
|
+
- lib/keystone_ui/safelist.rb
|
|
164
|
+
- lib/keystone_ui/version.rb
|
|
165
|
+
- the_local/agents/keystone_ui-develop.md
|
|
166
|
+
- the_local/agents/keystone_ui-info.md
|
|
167
|
+
- the_local/agents/keystone_ui-install.md
|
|
168
|
+
- the_local/interface.yml
|
|
169
|
+
homepage: https://github.com/DYB-Development/keystone_ui
|
|
170
|
+
licenses:
|
|
171
|
+
- MIT
|
|
172
|
+
metadata:
|
|
173
|
+
source_code_uri: https://github.com/DYB-Development/keystone_ui
|
|
174
|
+
changelog_uri: https://github.com/DYB-Development/keystone_ui/blob/main/CHANGELOG.md
|
|
175
|
+
bug_tracker_uri: https://github.com/DYB-Development/keystone_ui/issues
|
|
176
|
+
documentation_uri: https://github.com/DYB-Development/keystone_ui#readme
|
|
177
|
+
rubygems_mfa_required: 'true'
|
|
178
|
+
post_install_message: |
|
|
179
|
+
Keystone UI installed!
|
|
180
|
+
|
|
181
|
+
Prerequisites: tailwindcss-rails v4+
|
|
182
|
+
|
|
183
|
+
Run the install generator for setup instructions:
|
|
184
|
+
rails generate keystone:install
|
|
185
|
+
rdoc_options: []
|
|
186
|
+
require_paths:
|
|
187
|
+
- lib
|
|
188
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
189
|
+
requirements:
|
|
190
|
+
- - ">="
|
|
191
|
+
- !ruby/object:Gem::Version
|
|
192
|
+
version: 3.2.0
|
|
193
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
|
+
requirements:
|
|
195
|
+
- - ">="
|
|
196
|
+
- !ruby/object:Gem::Version
|
|
197
|
+
version: '0'
|
|
198
|
+
requirements: []
|
|
199
|
+
rubygems_version: 3.5.16
|
|
200
|
+
signing_key:
|
|
201
|
+
specification_version: 4
|
|
202
|
+
summary: Reusable UI component system for Rails applications.
|
|
203
|
+
test_files: []
|