wilday_ui 0.5.6 → 0.7.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 +4 -4
- data/README.md +7 -0
- data/app/assets/builds/wilday_ui/index.js +223 -0
- data/app/assets/builds/wilday_ui/index.js.map +3 -3
- data/app/assets/stylesheets/wilday_ui/components/button/features/clipboard.css +108 -0
- data/app/assets/stylesheets/wilday_ui/components/button/features/confirmation.css +136 -0
- data/app/assets/stylesheets/wilday_ui/components/button/features/gradients.css +109 -0
- data/app/assets/stylesheets/wilday_ui/components/button/features/variants.css +5 -0
- data/app/assets/stylesheets/wilday_ui/components/button/index.css +4 -0
- data/app/assets/stylesheets/wilday_ui/tokens/colors.css +109 -0
- data/app/helpers/wilday_ui/application_helper.rb +1 -0
- data/app/helpers/wilday_ui/components/button_helper.rb +170 -20
- data/app/helpers/wilday_ui/theme_helper.rb +19 -0
- data/app/javascript/wilday_ui/controllers/clipboard_controller.js +76 -0
- data/app/javascript/wilday_ui/controllers/confirmation_controller.js +216 -0
- data/app/javascript/wilday_ui/controllers/index.js +4 -1
- data/app/views/wilday_ui/_button.html.erb +1 -0
- data/lib/wilday_ui/config/theme.rb +6 -6
- data/lib/wilday_ui/version.rb +1 -1
- metadata +9 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wilday_ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- davidwinalda
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -45,7 +45,10 @@ files:
|
|
45
45
|
- app/assets/stylesheets/wilday_ui/application.css
|
46
46
|
- app/assets/stylesheets/wilday_ui/button.css
|
47
47
|
- app/assets/stylesheets/wilday_ui/components/button/base.css
|
48
|
+
- app/assets/stylesheets/wilday_ui/components/button/features/clipboard.css
|
49
|
+
- app/assets/stylesheets/wilday_ui/components/button/features/confirmation.css
|
48
50
|
- app/assets/stylesheets/wilday_ui/components/button/features/dropdown.css
|
51
|
+
- app/assets/stylesheets/wilday_ui/components/button/features/gradients.css
|
49
52
|
- app/assets/stylesheets/wilday_ui/components/button/features/icons.css
|
50
53
|
- app/assets/stylesheets/wilday_ui/components/button/features/loading.css
|
51
54
|
- app/assets/stylesheets/wilday_ui/components/button/features/old_variants.css
|
@@ -53,12 +56,16 @@ files:
|
|
53
56
|
- app/assets/stylesheets/wilday_ui/components/button/features/sizes.css
|
54
57
|
- app/assets/stylesheets/wilday_ui/components/button/features/variants.css
|
55
58
|
- app/assets/stylesheets/wilday_ui/components/button/index.css
|
59
|
+
- app/assets/stylesheets/wilday_ui/tokens/colors.css
|
56
60
|
- app/controllers/wilday_ui/application_controller.rb
|
57
61
|
- app/helpers/wilday_ui/application_helper.rb
|
58
62
|
- app/helpers/wilday_ui/components/button_helper.rb
|
59
63
|
- app/helpers/wilday_ui/javascript_helper.rb
|
64
|
+
- app/helpers/wilday_ui/theme_helper.rb
|
60
65
|
- app/javascript/wilday_ui/components/button.js
|
61
66
|
- app/javascript/wilday_ui/controllers/button_controller.js
|
67
|
+
- app/javascript/wilday_ui/controllers/clipboard_controller.js
|
68
|
+
- app/javascript/wilday_ui/controllers/confirmation_controller.js
|
62
69
|
- app/javascript/wilday_ui/controllers/dropdown_controller.js
|
63
70
|
- app/javascript/wilday_ui/controllers/index.js
|
64
71
|
- app/javascript/wilday_ui/index.js
|