flowbite-components 0.1.1 → 0.1.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/app/assets/tailwind/flowbite_components/engine.css +2 -0
- data/app/components/flowbite/button/outline.rb +22 -0
- data/app/components/flowbite/button/pill.rb +40 -0
- data/app/components/flowbite/button.rb +92 -0
- data/app/components/flowbite/card.rb +43 -0
- data/app/components/flowbite/input/checkbox.rb +37 -0
- data/app/components/flowbite/input/date.rb +11 -0
- data/app/components/flowbite/input/email.rb +12 -0
- data/app/components/flowbite/input/field.rb +117 -0
- data/app/components/flowbite/input/file.rb +30 -0
- data/app/components/flowbite/input/hint.rb +57 -0
- data/app/components/flowbite/input/label.rb +82 -0
- data/app/components/flowbite/input/number.rb +11 -0
- data/app/components/flowbite/input/password.rb +11 -0
- data/app/components/flowbite/input/phone.rb +11 -0
- data/app/components/flowbite/input/radio_button.rb +50 -0
- data/app/components/flowbite/input/select.rb +49 -0
- data/app/components/flowbite/input/textarea.rb +42 -0
- data/app/components/flowbite/input/url.rb +12 -0
- data/app/components/flowbite/input/validation_error.rb +11 -0
- data/app/components/flowbite/input_field/checkbox.html.erb +14 -0
- data/app/components/flowbite/input_field/checkbox.rb +49 -0
- data/app/components/flowbite/input_field/date.rb +13 -0
- data/app/components/flowbite/input_field/email.rb +13 -0
- data/app/components/flowbite/input_field/file.rb +13 -0
- data/app/components/flowbite/input_field/input_field.html.erb +8 -0
- data/app/components/flowbite/input_field/number.rb +13 -0
- data/app/components/flowbite/input_field/password.rb +13 -0
- data/app/components/flowbite/input_field/phone.rb +13 -0
- data/app/components/flowbite/input_field/radio_button.html.erb +14 -0
- data/app/components/flowbite/input_field/radio_button.rb +88 -0
- data/app/components/flowbite/input_field/select.rb +31 -0
- data/app/components/flowbite/input_field/text.rb +8 -0
- data/app/components/flowbite/input_field/textarea.rb +13 -0
- data/app/components/flowbite/input_field/url.rb +13 -0
- data/app/components/flowbite/input_field.rb +187 -0
- data/app/components/flowbite/style.rb +13 -0
- data/lib/flowbite/components/version.rb +1 -1
- metadata +39 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flowbite-components
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jakob Skjerning
|
@@ -34,6 +34,43 @@ files:
|
|
34
34
|
- CHANGELOG.md
|
35
35
|
- LICENSE
|
36
36
|
- README.md
|
37
|
+
- app/assets/tailwind/flowbite_components/engine.css
|
38
|
+
- app/components/flowbite/button.rb
|
39
|
+
- app/components/flowbite/button/outline.rb
|
40
|
+
- app/components/flowbite/button/pill.rb
|
41
|
+
- app/components/flowbite/card.rb
|
42
|
+
- app/components/flowbite/input/checkbox.rb
|
43
|
+
- app/components/flowbite/input/date.rb
|
44
|
+
- app/components/flowbite/input/email.rb
|
45
|
+
- app/components/flowbite/input/field.rb
|
46
|
+
- app/components/flowbite/input/file.rb
|
47
|
+
- app/components/flowbite/input/hint.rb
|
48
|
+
- app/components/flowbite/input/label.rb
|
49
|
+
- app/components/flowbite/input/number.rb
|
50
|
+
- app/components/flowbite/input/password.rb
|
51
|
+
- app/components/flowbite/input/phone.rb
|
52
|
+
- app/components/flowbite/input/radio_button.rb
|
53
|
+
- app/components/flowbite/input/select.rb
|
54
|
+
- app/components/flowbite/input/textarea.rb
|
55
|
+
- app/components/flowbite/input/url.rb
|
56
|
+
- app/components/flowbite/input/validation_error.rb
|
57
|
+
- app/components/flowbite/input_field.rb
|
58
|
+
- app/components/flowbite/input_field/checkbox.html.erb
|
59
|
+
- app/components/flowbite/input_field/checkbox.rb
|
60
|
+
- app/components/flowbite/input_field/date.rb
|
61
|
+
- app/components/flowbite/input_field/email.rb
|
62
|
+
- app/components/flowbite/input_field/file.rb
|
63
|
+
- app/components/flowbite/input_field/input_field.html.erb
|
64
|
+
- app/components/flowbite/input_field/number.rb
|
65
|
+
- app/components/flowbite/input_field/password.rb
|
66
|
+
- app/components/flowbite/input_field/phone.rb
|
67
|
+
- app/components/flowbite/input_field/radio_button.html.erb
|
68
|
+
- app/components/flowbite/input_field/radio_button.rb
|
69
|
+
- app/components/flowbite/input_field/select.rb
|
70
|
+
- app/components/flowbite/input_field/text.rb
|
71
|
+
- app/components/flowbite/input_field/textarea.rb
|
72
|
+
- app/components/flowbite/input_field/url.rb
|
73
|
+
- app/components/flowbite/style.rb
|
37
74
|
- lib/flowbite/components.rb
|
38
75
|
- lib/flowbite/components/engine.rb
|
39
76
|
- lib/flowbite/components/version.rb
|
@@ -46,6 +83,7 @@ metadata:
|
|
46
83
|
changelog_uri: https://github.com/substancelab/flowbite-components/blob/main/CHANGELOG.md
|
47
84
|
rdoc_options: []
|
48
85
|
require_paths:
|
86
|
+
- app
|
49
87
|
- lib
|
50
88
|
required_ruby_version: !ruby/object:Gem::Requirement
|
51
89
|
requirements:
|