ariadne_view_components 0.0.47-arm64-darwin → 0.0.49-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +29 -25
- data/app/assets/javascripts/ariadne_view_components.js +2 -2
- data/app/assets/javascripts/ariadne_view_components.js.map +1 -1
- data/app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts +22 -0
- data/app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts +1 -0
- data/app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts +4 -0
- data/app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts +40 -0
- data/app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +42 -0
- data/app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts +27 -0
- data/app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +44 -0
- data/app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts +34 -0
- data/app/assets/stylesheets/ariadne_view_components.css +3 -3
- data/app/components/ariadne/accumulator_controller/accumulator_controller.d.ts +22 -0
- data/app/components/ariadne/accumulator_controller/accumulator_controller.js +39 -0
- data/app/components/ariadne/accumulator_controller/accumulator_controller.ts +48 -0
- data/app/components/ariadne/action_card_component.html.erb +11 -0
- data/app/components/ariadne/action_card_component.rb +45 -0
- data/app/components/ariadne/ariadne.js +10 -0
- data/app/components/ariadne/ariadne.ts +10 -0
- data/app/components/ariadne/bottom_tab_component.html.erb +4 -0
- data/app/components/ariadne/bottom_tab_component.rb +44 -0
- data/app/components/ariadne/bottom_tab_nav_component.html.erb +5 -0
- data/app/components/ariadne/bottom_tab_nav_component.rb +33 -0
- data/app/components/ariadne/breadcrumbs_component.html.erb +13 -0
- data/app/components/ariadne/breadcrumbs_component.rb +31 -0
- data/app/components/ariadne/checkbox_component.html.erb +5 -0
- data/app/components/ariadne/checkbox_component.rb +43 -0
- data/app/components/ariadne/close_button_component.html.erb +4 -0
- data/app/components/ariadne/close_button_component.rb +33 -0
- data/app/components/ariadne/combobox_component.html.erb +14 -0
- data/app/components/ariadne/combobox_component.rb +76 -0
- data/app/components/ariadne/dropdown/menu_component.d.ts +1 -0
- data/app/components/ariadne/dropdown/menu_component.js +1 -0
- data/app/components/ariadne/events_controller/events_controller.d.ts +4 -0
- data/app/components/ariadne/events_controller/events_controller.js +6 -0
- data/app/components/ariadne/events_controller/events_controller.ts +7 -0
- data/app/components/ariadne/layout_component.html.erb +21 -0
- data/app/components/ariadne/layout_component.rb +69 -0
- data/app/components/ariadne/modal_component.html.erb +11 -0
- data/app/components/ariadne/modal_component.rb +88 -0
- data/app/components/ariadne/options_controller/options_controller.d.ts +40 -0
- data/app/components/ariadne/options_controller/options_controller.js +98 -0
- data/app/components/ariadne/options_controller/options_controller.ts +132 -0
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +42 -0
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.js +237 -0
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.ts +278 -0
- data/app/components/ariadne/popover_component.html.erb +10 -0
- data/app/components/ariadne/popover_component.rb +81 -0
- data/app/components/ariadne/progress_bar_component.html.erb +5 -0
- data/app/components/ariadne/progress_bar_component.rb +63 -0
- data/app/components/ariadne/relative_time_component.html.erb +3 -0
- data/app/components/ariadne/relative_time_component.rb +61 -0
- data/app/components/ariadne/show_more_button_component.html.erb +11 -0
- data/app/components/ariadne/show_more_button_component.rb +47 -0
- data/app/components/ariadne/spinner_component.html.erb +16 -0
- data/app/components/ariadne/spinner_component.rb +45 -0
- data/app/components/ariadne/string_match_controller/string_match_controller.d.ts +27 -0
- data/app/components/ariadne/string_match_controller/string_match_controller.js +51 -0
- data/app/components/ariadne/string_match_controller/string_match_controller.ts +64 -0
- data/app/components/ariadne/subheader_component.html.erb +11 -0
- data/app/components/ariadne/subheader_component.rb +65 -0
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +44 -0
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.js +153 -0
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.ts +192 -0
- data/app/components/ariadne/toggle_component/toggle_component.html.erb +15 -0
- data/app/components/ariadne/toggle_component.rb +95 -0
- data/app/components/ariadne/toggleable_controller/toggleable_controller.d.ts +34 -0
- data/app/components/ariadne/toggleable_controller/toggleable_controller.js +54 -0
- data/app/components/ariadne/toggleable_controller/toggleable_controller.ts +77 -0
- data/lib/ariadne/view_components/version.rb +1 -1
- data/static/arguments.yml +50 -0
- data/static/audited_at.json +17 -0
- data/static/classes.yml +209 -173
- data/static/constants.json +356 -0
- data/static/statuses.json +17 -0
- data/tailwind.config.js +7 -7
- metadata +75 -12
- /data/app/assets/javascripts/{ariadne-form.d.ts → components/ariadne/ariadne-form.d.ts} +0 -0
- /data/app/assets/javascripts/{ariadne.d.ts → components/ariadne/ariadne.d.ts} +0 -0
- /data/app/assets/javascripts/{clipboard_copy_component → components/ariadne/clipboard_copy_component}/clipboard-copy-component.d.ts +0 -0
- /data/app/assets/javascripts/{rich_text_area_component → components/ariadne/rich_text_area_component}/rich-text-area-component.d.ts +0 -0
- /data/app/assets/javascripts/{slideover_component → components/ariadne/slideover_component}/slideover-component.d.ts +0 -0
- /data/app/assets/javascripts/{tab_container_component → components/ariadne/tab_container_component}/tab-container-component.d.ts +0 -0
- /data/app/assets/javascripts/{tab_nav_component → components/ariadne/tab_nav_component}/tab-nav-component.d.ts +0 -0
- /data/app/assets/javascripts/{time_ago_component → components/ariadne/time_ago_component}/time-ago-component.d.ts +0 -0
- /data/app/assets/javascripts/{tooltip_component → components/ariadne/tooltip_component}/tooltip-component.d.ts +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1445698f2703749ea462e17fbe7280f9fe2b5d676f34e6a84dcb623717bfa41e
|
4
|
+
data.tar.gz: b8b11da01a3f16d305c29c0f1b26e1c2a9fed0c80e36e0af3dbe4daa3e40be96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 315c92757bfb8ea0efdc8e1db669994586e813335e15dfe504b694d8fbc19541f8a61c4295eb9865c834322c21c61487ca4c3ddca27d2af1e12112ef719cb678
|
7
|
+
data.tar.gz: 5e67979394ee7565c30009307f53c45024fb7fcf682307c171d84dc694a2faf28fbd956311d9338de3e9423409d68d4d9628db16d2c17f50c878b6796b3d1507
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.0.48](https://github.com/yettoapp/ariadne/compare/v0.0.47...v0.0.48) (2023-06-14)
|
4
|
+
|
5
|
+
## [v0.0.47](https://github.com/yettoapp/ariadne/tree/v0.0.47) (2023-05-05)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.46...v0.0.47)
|
8
|
+
|
3
9
|
## [v0.0.46](https://github.com/yettoapp/ariadne/tree/v0.0.46) (2023-05-04)
|
4
10
|
|
5
11
|
[Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.45...v0.0.46)
|
@@ -70,9 +76,9 @@
|
|
70
76
|
- build\(deps-dev\): bump @typescript-eslint/eslint-plugin from 5.40.0 to 5.59.1 [\#283](https://github.com/yettoapp/ariadne/pull/283) ([dependabot[bot]](https://github.com/apps/dependabot))
|
71
77
|
- \[auto-browserslist\] update Browserslist db [\#282](https://github.com/yettoapp/ariadne/pull/282) ([sisyphusbot](https://github.com/sisyphusbot))
|
72
78
|
- Attempt to use centralized GitHub Actions [\#266](https://github.com/yettoapp/ariadne/pull/266) ([gjtorikian](https://github.com/gjtorikian))
|
73
|
-
- Revert "build\(deps\): update
|
79
|
+
- Revert "build\(deps\): update view_component requirement from ~\> 2.0 to ~\> 3.0" [\#265](https://github.com/yettoapp/ariadne/pull/265) ([gjtorikian](https://github.com/gjtorikian))
|
74
80
|
- build\(deps\): bump @github/auto-complete-element from 3.4.0 to 3.5.0 [\#264](https://github.com/yettoapp/ariadne/pull/264) ([dependabot[bot]](https://github.com/apps/dependabot))
|
75
|
-
- build\(deps\): update
|
81
|
+
- build\(deps\): update view_component requirement from ~\> 2.0 to ~\> 3.0 [\#263](https://github.com/yettoapp/ariadne/pull/263) ([dependabot[bot]](https://github.com/apps/dependabot))
|
76
82
|
- Update to Lookbook 2 and VC3 [\#262](https://github.com/yettoapp/ariadne/pull/262) ([gjtorikian](https://github.com/gjtorikian))
|
77
83
|
- Lookbook/install [\#260](https://github.com/yettoapp/ariadne/pull/260) ([ajb85](https://github.com/ajb85))
|
78
84
|
- build\(deps\): bump @tiptap/extension-document from 2.0.2 to 2.0.3 [\#259](https://github.com/yettoapp/ariadne/pull/259) ([dependabot[bot]](https://github.com/apps/dependabot))
|
@@ -278,33 +284,33 @@
|
|
278
284
|
- Bump @rollup/plugin-replace from 4.0.0 to 5.0.1 [\#57](https://github.com/yettoapp/ariadne/pull/57) ([dependabot[bot]](https://github.com/apps/dependabot))
|
279
285
|
- Hoist dir to the root [\#56](https://github.com/yettoapp/ariadne/pull/56) ([gjtorikian](https://github.com/gjtorikian))
|
280
286
|
- Adjust paths and events for when CI runs [\#55](https://github.com/yettoapp/ariadne/pull/55) ([gjtorikian](https://github.com/gjtorikian))
|
281
|
-
- Bump @tiptap/extension-hard-break from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/
|
282
|
-
- Bump @tiptap/extension-text from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/
|
283
|
-
- Bump @tiptap/extension-dropcursor from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/
|
284
|
-
- Bump @tiptap/extension-paragraph from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/
|
285
|
-
- Bump @tiptap/extension-document from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/
|
286
|
-
- Bump @github/time-elements from 3.1.4 to 3.2.4 in /ruby/
|
287
|
-
- Bump @tiptap/extension-history from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/
|
288
|
-
- Bump @tiptap/core from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/
|
289
|
-
- Bump @tiptap/extension-gapcursor from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/
|
287
|
+
- Bump @tiptap/extension-hard-break from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#54](https://github.com/yettoapp/ariadne/pull/54) ([dependabot[bot]](https://github.com/apps/dependabot))
|
288
|
+
- Bump @tiptap/extension-text from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#53](https://github.com/yettoapp/ariadne/pull/53) ([dependabot[bot]](https://github.com/apps/dependabot))
|
289
|
+
- Bump @tiptap/extension-dropcursor from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#52](https://github.com/yettoapp/ariadne/pull/52) ([dependabot[bot]](https://github.com/apps/dependabot))
|
290
|
+
- Bump @tiptap/extension-paragraph from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#51](https://github.com/yettoapp/ariadne/pull/51) ([dependabot[bot]](https://github.com/apps/dependabot))
|
291
|
+
- Bump @tiptap/extension-document from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#50](https://github.com/yettoapp/ariadne/pull/50) ([dependabot[bot]](https://github.com/apps/dependabot))
|
292
|
+
- Bump @github/time-elements from 3.1.4 to 3.2.4 in /ruby/ariadne_view_components [\#49](https://github.com/yettoapp/ariadne/pull/49) ([dependabot[bot]](https://github.com/apps/dependabot))
|
293
|
+
- Bump @tiptap/extension-history from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#48](https://github.com/yettoapp/ariadne/pull/48) ([dependabot[bot]](https://github.com/apps/dependabot))
|
294
|
+
- Bump @tiptap/core from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#47](https://github.com/yettoapp/ariadne/pull/47) ([dependabot[bot]](https://github.com/apps/dependabot))
|
295
|
+
- Bump @tiptap/extension-gapcursor from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#46](https://github.com/yettoapp/ariadne/pull/46) ([dependabot[bot]](https://github.com/apps/dependabot))
|
290
296
|
- Correct tag, changelog, release logic [\#45](https://github.com/yettoapp/ariadne/pull/45) ([gjtorikian](https://github.com/gjtorikian))
|
291
297
|
- Update outdated tasks [\#44](https://github.com/yettoapp/ariadne/pull/44) ([gjtorikian](https://github.com/gjtorikian))
|
292
|
-
- Bump @hotwired/stimulus from 3.1.0 to 3.1.1 in /ruby/
|
298
|
+
- Bump @hotwired/stimulus from 3.1.0 to 3.1.1 in /ruby/ariadne_view_components [\#43](https://github.com/yettoapp/ariadne/pull/43) ([dependabot[bot]](https://github.com/apps/dependabot))
|
293
299
|
- Bump actions/upload-artifact from 2 to 3 [\#42](https://github.com/yettoapp/ariadne/pull/42) ([dependabot[bot]](https://github.com/apps/dependabot))
|
294
|
-
- Bump @github/details-menu-element from 1.0.12 to 1.0.13 in /ruby/
|
300
|
+
- Bump @github/details-menu-element from 1.0.12 to 1.0.13 in /ruby/ariadne_view_components [\#41](https://github.com/yettoapp/ariadne/pull/41) ([dependabot[bot]](https://github.com/apps/dependabot))
|
295
301
|
- Add dependabot automerging [\#40](https://github.com/yettoapp/ariadne/pull/40) ([gjtorikian](https://github.com/gjtorikian))
|
296
302
|
- Bump actions/download-artifact from 2 to 3 [\#38](https://github.com/yettoapp/ariadne/pull/38) ([dependabot[bot]](https://github.com/apps/dependabot))
|
297
|
-
- Bump stimulus-use from 0.50.0 to 0.51.0 in /ruby/
|
298
|
-
- Bump @primer/primitives from 7.9.0 to 7.10.0 in /ruby/
|
299
|
-
- Bump @changesets/cli from 2.24.4 to 2.25.0 in /ruby/
|
300
|
-
- Bump @primer/css from 20.4.7 to 20.4.8 in /ruby/
|
303
|
+
- Bump stimulus-use from 0.50.0 to 0.51.0 in /ruby/ariadne_view_components [\#37](https://github.com/yettoapp/ariadne/pull/37) ([dependabot[bot]](https://github.com/apps/dependabot))
|
304
|
+
- Bump @primer/primitives from 7.9.0 to 7.10.0 in /ruby/ariadne_view_components [\#36](https://github.com/yettoapp/ariadne/pull/36) ([dependabot[bot]](https://github.com/apps/dependabot))
|
305
|
+
- Bump @changesets/cli from 2.24.4 to 2.25.0 in /ruby/ariadne_view_components [\#35](https://github.com/yettoapp/ariadne/pull/35) ([dependabot[bot]](https://github.com/apps/dependabot))
|
306
|
+
- Bump @primer/css from 20.4.7 to 20.4.8 in /ruby/ariadne_view_components [\#33](https://github.com/yettoapp/ariadne/pull/33) ([dependabot[bot]](https://github.com/apps/dependabot))
|
301
307
|
- Support color theme dropdown [\#32](https://github.com/yettoapp/ariadne/pull/32) ([gjtorikian](https://github.com/gjtorikian))
|
302
308
|
- Update Ariadne to use Component Sidecar Directories [\#31](https://github.com/yettoapp/ariadne/pull/31) ([birdcar](https://github.com/birdcar))
|
303
|
-
- Bump rollup from 2.79.0 to 2.79.1 in /ruby/
|
304
|
-
- Bump lit-html from 2.3.1 to 2.4.0 in /ruby/
|
305
|
-
- Bump @changesets/changelog-github from 0.4.6 to 0.4.7 in /ruby/
|
306
|
-
- Bump @typescript-eslint/eslint-plugin from 5.36.1 to 5.40.0 in /ruby/
|
307
|
-
- Bump @primer/css from 20.4.4 to 20.4.7 in /ruby/
|
309
|
+
- Bump rollup from 2.79.0 to 2.79.1 in /ruby/ariadne_view_components [\#29](https://github.com/yettoapp/ariadne/pull/29) ([dependabot[bot]](https://github.com/apps/dependabot))
|
310
|
+
- Bump lit-html from 2.3.1 to 2.4.0 in /ruby/ariadne_view_components [\#28](https://github.com/yettoapp/ariadne/pull/28) ([dependabot[bot]](https://github.com/apps/dependabot))
|
311
|
+
- Bump @changesets/changelog-github from 0.4.6 to 0.4.7 in /ruby/ariadne_view_components [\#27](https://github.com/yettoapp/ariadne/pull/27) ([dependabot[bot]](https://github.com/apps/dependabot))
|
312
|
+
- Bump @typescript-eslint/eslint-plugin from 5.36.1 to 5.40.0 in /ruby/ariadne_view_components [\#26](https://github.com/yettoapp/ariadne/pull/26) ([dependabot[bot]](https://github.com/apps/dependabot))
|
313
|
+
- Bump @primer/css from 20.4.4 to 20.4.7 in /ruby/ariadne_view_components [\#25](https://github.com/yettoapp/ariadne/pull/25) ([dependabot[bot]](https://github.com/apps/dependabot))
|
308
314
|
|
309
315
|
## [0.0.25](https://github.com/yettoapp/ariadne/tree/0.0.25) (2022-10-17)
|
310
316
|
|
@@ -444,6 +450,4 @@
|
|
444
450
|
- Get app in a more stable state [\#3](https://github.com/yettoapp/ariadne/pull/3) ([gjtorikian](https://github.com/gjtorikian))
|
445
451
|
- Lay a foundation for Ariadne view components [\#2](https://github.com/yettoapp/ariadne/pull/2) ([gjtorikian](https://github.com/gjtorikian))
|
446
452
|
|
447
|
-
|
448
|
-
|
449
|
-
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
453
|
+
\* _This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_
|