lightning_ui_kit 0.1.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/MIT-LICENSE +20 -0
- data/README.md +33 -0
- data/Rakefile +5 -0
- data/app/assets/builds/lightning_ui.css +2710 -0
- data/app/assets/builds/lightning_ui.js +6 -0
- data/app/assets/builds/lightning_ui.js.map +7 -0
- data/app/assets/stylesheets/lightning_ui/application.css +1 -0
- data/app/components/lightning_ui/alert_component.html.erb +4 -0
- data/app/components/lightning_ui/alert_component.rb +16 -0
- data/app/components/lightning_ui/avatar_component.html.erb +20 -0
- data/app/components/lightning_ui/avatar_component.rb +20 -0
- data/app/components/lightning_ui/badge_component.html.erb +9 -0
- data/app/components/lightning_ui/badge_component.rb +43 -0
- data/app/components/lightning_ui/banner_component.html.erb +17 -0
- data/app/components/lightning_ui/banner_component.rb +35 -0
- data/app/components/lightning_ui/base_component.rb +9 -0
- data/app/components/lightning_ui/button_component.html.erb +13 -0
- data/app/components/lightning_ui/button_component.rb +75 -0
- data/app/components/lightning_ui/checkbox_component.html.erb +37 -0
- data/app/components/lightning_ui/checkbox_component.rb +14 -0
- data/app/components/lightning_ui/description_list/item_component.html.erb +13 -0
- data/app/components/lightning_ui/description_list/item_component.rb +7 -0
- data/app/components/lightning_ui/description_list_component.html.erb +5 -0
- data/app/components/lightning_ui/description_list_component.rb +5 -0
- data/app/components/lightning_ui/dropdown/item_component.rb +5 -0
- data/app/components/lightning_ui/dropdown_component.html.erb +35 -0
- data/app/components/lightning_ui/dropdown_component.rb +23 -0
- data/app/components/lightning_ui/input_component.html.erb +99 -0
- data/app/components/lightning_ui/input_component.rb +44 -0
- data/app/components/lightning_ui/link_component.html.erb +7 -0
- data/app/components/lightning_ui/link_component.rb +8 -0
- data/app/components/lightning_ui/modal_component.html.erb +27 -0
- data/app/components/lightning_ui/modal_component.rb +21 -0
- data/app/components/lightning_ui/pagination_component.html.erb +21 -0
- data/app/components/lightning_ui/pagination_component.rb +42 -0
- data/app/components/lightning_ui/select_component.html.erb +20 -0
- data/app/components/lightning_ui/select_component.rb +25 -0
- data/app/components/lightning_ui/sidebar_component.html.erb +1 -0
- data/app/components/lightning_ui/sidebar_component.rb +4 -0
- data/app/components/lightning_ui/skeleton_component.html.erb +10 -0
- data/app/components/lightning_ui/skeleton_component.rb +8 -0
- data/app/components/lightning_ui/spinner_component.html.erb +10 -0
- data/app/components/lightning_ui/spinner_component.rb +4 -0
- data/app/components/lightning_ui/switch_component.html.erb +38 -0
- data/app/components/lightning_ui/switch_component.rb +31 -0
- data/app/components/lightning_ui/table/action_component.rb +9 -0
- data/app/components/lightning_ui/table/column_component.rb +12 -0
- data/app/components/lightning_ui/table_component.html.erb +40 -0
- data/app/components/lightning_ui/table_component.rb +16 -0
- data/app/components/lightning_ui/text_component.html.erb +3 -0
- data/app/components/lightning_ui/text_component.rb +12 -0
- data/app/components/lightning_ui/textarea_component.html.erb +48 -0
- data/app/components/lightning_ui/textarea_component.rb +42 -0
- data/app/helpers/lightning_ui/application_helper.rb +7 -0
- data/app/helpers/lightning_ui/heroicon_helper.rb +14 -0
- data/app/javascript/lightning_ui/controllers/accordion_controller.js +51 -0
- data/app/javascript/lightning_ui/controllers/banner_controller.js +11 -0
- data/app/javascript/lightning_ui/controllers/checkbox_controller.js +18 -0
- data/app/javascript/lightning_ui/controllers/clipboard_controller.js +21 -0
- data/app/javascript/lightning_ui/controllers/dropdown_controller.js +22 -0
- data/app/javascript/lightning_ui/controllers/main_controller.js +17 -0
- data/app/javascript/lightning_ui/controllers/modal_controller.js +44 -0
- data/app/javascript/lightning_ui/controllers/reveal_controller.js +22 -0
- data/app/javascript/lightning_ui/controllers/switch_controller.js +18 -0
- data/app/javascript/lightning_ui/index.js +31 -0
- data/config/initializers/heroicons.rb +5 -0
- data/lib/lightning_ui/engine.rb +20 -0
- data/lib/lightning_ui/version.rb +3 -0
- data/lib/lightning_ui.rb +6 -0
- data/lib/tasks/lightning_ui_tasks.rake +4 -0
- metadata +200 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
const namespace = 'lui'
|
2
|
+
|
3
|
+
import { Application } from "@hotwired/stimulus"
|
4
|
+
|
5
|
+
const application = Application.start()
|
6
|
+
window.Stimulus = application
|
7
|
+
|
8
|
+
import ClipboardController from './controllers/clipboard_controller'
|
9
|
+
import CheckboxController from './controllers/checkbox_controller'
|
10
|
+
import BannerController from './controllers/banner_controller'
|
11
|
+
import MainController from './controllers/main_controller'
|
12
|
+
import AccordionController from './controllers/accordion_controller'
|
13
|
+
import ModalController from './controllers/modal_controller'
|
14
|
+
import RevealController from './controllers/reveal_controller'
|
15
|
+
import SwitchController from './controllers/switch_controller'
|
16
|
+
import DropdownController from './controllers/dropdown_controller'
|
17
|
+
|
18
|
+
export function registerLuiControllers(application) {
|
19
|
+
application.register(`${namespace}-clipboard`, ClipboardController)
|
20
|
+
application.register(`${namespace}-checkbox`, CheckboxController)
|
21
|
+
application.register(`${namespace}-banner`, BannerController)
|
22
|
+
application.register(`${namespace}-main`, MainController)
|
23
|
+
application.register(`${namespace}-accordion`, AccordionController)
|
24
|
+
application.register(`${namespace}-modal`, ModalController)
|
25
|
+
application.register(`${namespace}-reveal`, RevealController)
|
26
|
+
application.register(`${namespace}-switch`, SwitchController)
|
27
|
+
application.register(`${namespace}-dropdown`, DropdownController)
|
28
|
+
}
|
29
|
+
registerLuiControllers(application)
|
30
|
+
|
31
|
+
export { application }
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require "view_component"
|
2
|
+
require "stimulus-rails"
|
3
|
+
|
4
|
+
module LightningUi
|
5
|
+
class Engine < ::Rails::Engine
|
6
|
+
isolate_namespace LightningUi
|
7
|
+
|
8
|
+
config.autoload_paths = %W[
|
9
|
+
#{root}/app/components
|
10
|
+
#{root}/app/helpers
|
11
|
+
]
|
12
|
+
|
13
|
+
initializer "lightning_ui.helpers" do
|
14
|
+
ActiveSupport.on_load(:action_controller_base) do
|
15
|
+
helper LightningUi::ApplicationHelper
|
16
|
+
helper LightningUi::HeroiconHelper
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
data/lib/lightning_ui.rb
ADDED
metadata
ADDED
@@ -0,0 +1,200 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lightning_ui_kit
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alex Koval
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-03-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 8.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 8.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: view_component
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: tailwind_merge
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: heroicons
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: standard
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec-rails
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: Lightning UI is a collection of UI components for Rails applications
|
98
|
+
email:
|
99
|
+
- al3xander.koval@gmail.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- MIT-LICENSE
|
105
|
+
- README.md
|
106
|
+
- Rakefile
|
107
|
+
- app/assets/builds/lightning_ui.css
|
108
|
+
- app/assets/builds/lightning_ui.js
|
109
|
+
- app/assets/builds/lightning_ui.js.map
|
110
|
+
- app/assets/stylesheets/lightning_ui/application.css
|
111
|
+
- app/components/lightning_ui/alert_component.html.erb
|
112
|
+
- app/components/lightning_ui/alert_component.rb
|
113
|
+
- app/components/lightning_ui/avatar_component.html.erb
|
114
|
+
- app/components/lightning_ui/avatar_component.rb
|
115
|
+
- app/components/lightning_ui/badge_component.html.erb
|
116
|
+
- app/components/lightning_ui/badge_component.rb
|
117
|
+
- app/components/lightning_ui/banner_component.html.erb
|
118
|
+
- app/components/lightning_ui/banner_component.rb
|
119
|
+
- app/components/lightning_ui/base_component.rb
|
120
|
+
- app/components/lightning_ui/button_component.html.erb
|
121
|
+
- app/components/lightning_ui/button_component.rb
|
122
|
+
- app/components/lightning_ui/checkbox_component.html.erb
|
123
|
+
- app/components/lightning_ui/checkbox_component.rb
|
124
|
+
- app/components/lightning_ui/description_list/item_component.html.erb
|
125
|
+
- app/components/lightning_ui/description_list/item_component.rb
|
126
|
+
- app/components/lightning_ui/description_list_component.html.erb
|
127
|
+
- app/components/lightning_ui/description_list_component.rb
|
128
|
+
- app/components/lightning_ui/dropdown/item_component.rb
|
129
|
+
- app/components/lightning_ui/dropdown_component.html.erb
|
130
|
+
- app/components/lightning_ui/dropdown_component.rb
|
131
|
+
- app/components/lightning_ui/input_component.html.erb
|
132
|
+
- app/components/lightning_ui/input_component.rb
|
133
|
+
- app/components/lightning_ui/link_component.html.erb
|
134
|
+
- app/components/lightning_ui/link_component.rb
|
135
|
+
- app/components/lightning_ui/modal_component.html.erb
|
136
|
+
- app/components/lightning_ui/modal_component.rb
|
137
|
+
- app/components/lightning_ui/pagination_component.html.erb
|
138
|
+
- app/components/lightning_ui/pagination_component.rb
|
139
|
+
- app/components/lightning_ui/select_component.html.erb
|
140
|
+
- app/components/lightning_ui/select_component.rb
|
141
|
+
- app/components/lightning_ui/sidebar_component.html.erb
|
142
|
+
- app/components/lightning_ui/sidebar_component.rb
|
143
|
+
- app/components/lightning_ui/skeleton_component.html.erb
|
144
|
+
- app/components/lightning_ui/skeleton_component.rb
|
145
|
+
- app/components/lightning_ui/spinner_component.html.erb
|
146
|
+
- app/components/lightning_ui/spinner_component.rb
|
147
|
+
- app/components/lightning_ui/switch_component.html.erb
|
148
|
+
- app/components/lightning_ui/switch_component.rb
|
149
|
+
- app/components/lightning_ui/table/action_component.rb
|
150
|
+
- app/components/lightning_ui/table/column_component.rb
|
151
|
+
- app/components/lightning_ui/table_component.html.erb
|
152
|
+
- app/components/lightning_ui/table_component.rb
|
153
|
+
- app/components/lightning_ui/text_component.html.erb
|
154
|
+
- app/components/lightning_ui/text_component.rb
|
155
|
+
- app/components/lightning_ui/textarea_component.html.erb
|
156
|
+
- app/components/lightning_ui/textarea_component.rb
|
157
|
+
- app/helpers/lightning_ui/application_helper.rb
|
158
|
+
- app/helpers/lightning_ui/heroicon_helper.rb
|
159
|
+
- app/javascript/lightning_ui/controllers/accordion_controller.js
|
160
|
+
- app/javascript/lightning_ui/controllers/banner_controller.js
|
161
|
+
- app/javascript/lightning_ui/controllers/checkbox_controller.js
|
162
|
+
- app/javascript/lightning_ui/controllers/clipboard_controller.js
|
163
|
+
- app/javascript/lightning_ui/controllers/dropdown_controller.js
|
164
|
+
- app/javascript/lightning_ui/controllers/main_controller.js
|
165
|
+
- app/javascript/lightning_ui/controllers/modal_controller.js
|
166
|
+
- app/javascript/lightning_ui/controllers/reveal_controller.js
|
167
|
+
- app/javascript/lightning_ui/controllers/switch_controller.js
|
168
|
+
- app/javascript/lightning_ui/index.js
|
169
|
+
- config/initializers/heroicons.rb
|
170
|
+
- lib/lightning_ui.rb
|
171
|
+
- lib/lightning_ui/engine.rb
|
172
|
+
- lib/lightning_ui/version.rb
|
173
|
+
- lib/tasks/lightning_ui_tasks.rake
|
174
|
+
homepage: https://github.com/k0va1/lightning_ui
|
175
|
+
licenses:
|
176
|
+
- MIT
|
177
|
+
metadata:
|
178
|
+
homepage_uri: https://github.com/k0va1/lightning_ui
|
179
|
+
source_code_uri: https://github.com/k0va1/lightning_ui
|
180
|
+
changelog_uri: https://github.com/k0va1/lightning_ui/blob/main/CHANGELOG.md
|
181
|
+
post_install_message:
|
182
|
+
rdoc_options: []
|
183
|
+
require_paths:
|
184
|
+
- lib
|
185
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
186
|
+
requirements:
|
187
|
+
- - ">="
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: '0'
|
190
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
requirements: []
|
196
|
+
rubygems_version: 3.5.16
|
197
|
+
signing_key:
|
198
|
+
specification_version: 4
|
199
|
+
summary: Lightning UI is a collection of UI components for Rails applications
|
200
|
+
test_files: []
|