ariadne_view_components 0.0.54-arm64-darwin → 0.0.55-arm64-darwin

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.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +2 -0
  3. data/app/components/ariadne/accumulator_controller/accumulator_controller.js +2 -2
  4. data/app/components/ariadne/accumulator_controller/accumulator_controller.ts +2 -2
  5. data/app/components/ariadne/options_controller/options_controller.js +2 -2
  6. data/app/components/ariadne/options_controller/options_controller.ts +2 -2
  7. data/app/components/ariadne/string_match_controller/string_match_controller.js +2 -2
  8. data/app/components/ariadne/string_match_controller/string_match_controller.ts +2 -2
  9. data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.js +2 -2
  10. data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.ts +2 -2
  11. data/app/lib/ariadne/form_builder.rb +6 -0
  12. data/lib/ariadne/view_components/version.rb +1 -1
  13. metadata +2 -21
  14. data/app/assets/javascripts/ariadne_view_components.js +0 -8
  15. data/app/assets/javascripts/ariadne_view_components.js.map +0 -1
  16. data/app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts +0 -22
  17. data/app/assets/javascripts/components/ariadne/ariadne-form.d.ts +0 -22
  18. data/app/assets/javascripts/components/ariadne/ariadne.d.ts +0 -2
  19. data/app/assets/javascripts/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts +0 -4
  20. data/app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts +0 -1
  21. data/app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts +0 -4
  22. data/app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts +0 -39
  23. data/app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +0 -42
  24. data/app/assets/javascripts/components/ariadne/rich_text_area_component/rich-text-area-component.d.ts +0 -6
  25. data/app/assets/javascripts/components/ariadne/slideover_component/slideover-component.d.ts +0 -9
  26. data/app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts +0 -27
  27. data/app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +0 -48
  28. data/app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts +0 -1
  29. data/app/assets/javascripts/components/ariadne/tab_nav_component/tab-nav-component.d.ts +0 -9
  30. data/app/assets/javascripts/components/ariadne/time_ago_component/time-ago-component.d.ts +0 -1
  31. data/app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts +0 -34
  32. data/app/assets/javascripts/components/ariadne/tooltip_component/tooltip-component.d.ts +0 -24
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e04f8163e91cc568a2128f456d213c722948c4da0f3012157f4f0a5c77e2262
4
- data.tar.gz: 36bdc40b26e4d2013a7fcdff6f0cf1972a1b24107be392d10b489a7f4cb2566b
3
+ metadata.gz: 3ee44145d0dc8196cfee0faf4002ec6a535acf27e94f29abf4717c24f2421478
4
+ data.tar.gz: 91a9ee794aa5c30fb0b38a220d86f97ddf41470ca725f80972169c9bafb99f05
5
5
  SHA512:
6
- metadata.gz: 5ca1262f10672a046494bfa42d24acfbb14db30cb4186ee3459a78a68c3df3f208a273a31b7314ccb10bbb8304889fde3d37e1e52e87c18ee706129270b52366
7
- data.tar.gz: e5d646c822e772e8e336eb83ae014ce8de4cb960416fbce87fefb4e85019d39ff04f58695d87806f1b622033d14e5c5e740b2b73ac21c5a1ac777d9bb920d9ca
6
+ metadata.gz: d3860172e3d8abbbddf87bf17d0fec464aa18fb084ded2c483f0b03f523886b3be8e7463bcc0575b4e7b0ef3fde469a06473139a059b4c8a83f500fd75cf7ade
7
+ data.tar.gz: 2ecb37ff141cec3b5f7acc61b9ab516877d9719abe1cdff75c6cbcd7dec6081c24041dc22458793a3e19918a3717d29cc9fdd0eb4209507b90e7c83b5286bbc2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## [v0.0.54] - 13-07-2023
2
+ null
1
3
  ## [v0.0.53] - 11-07-2023
2
4
  null
3
5
  ## [v0.0.52] - 07-07-2023
@@ -5,7 +5,7 @@ class AccumulatorController extends Controller {
5
5
  }
6
6
  accumulate() {
7
7
  let sum = 0;
8
- for (let i in this.sumTargets) {
8
+ for (const i in this.sumTargets) {
9
9
  const target = this.sumTargets[i];
10
10
  const value = Number(target.getAttribute(this.sumAttrValue));
11
11
  if (!isNaN(value)) {
@@ -15,7 +15,7 @@ class AccumulatorController extends Controller {
15
15
  this.setAttributesTo(sum);
16
16
  }
17
17
  setAttributesTo(sum) {
18
- for (let i in this.syncAttrsValue) {
18
+ for (const i in this.syncAttrsValue) {
19
19
  const attr = this.syncAttrsValue[i];
20
20
  this.accumulator.setAttribute(attr, sum.toString());
21
21
  }
@@ -24,7 +24,7 @@ export default class AccumulatorController extends Controller {
24
24
 
25
25
  accumulate() {
26
26
  let sum = 0
27
- for (let i in this.sumTargets) {
27
+ for (const i in this.sumTargets) {
28
28
  const target = this.sumTargets[i]
29
29
  const value = Number(target.getAttribute(this.sumAttrValue))
30
30
  if (!isNaN(value)) {
@@ -36,7 +36,7 @@ export default class AccumulatorController extends Controller {
36
36
  }
37
37
 
38
38
  setAttributesTo(sum: number) {
39
- for (let i in this.syncAttrsValue) {
39
+ for (const i in this.syncAttrsValue) {
40
40
  const attr = this.syncAttrsValue[i]
41
41
  this.accumulator.setAttribute(attr, sum.toString())
42
42
  }
@@ -14,7 +14,7 @@ class OptionsController extends SyncedBooleanAttributesController {
14
14
  select(event, updateTo = {}) {
15
15
  var _a;
16
16
  const activeOptions = updateTo.data;
17
- for (let index in this.optionTargets) {
17
+ for (const index in this.optionTargets) {
18
18
  const target = this.optionTargets[index];
19
19
  const wasSelected = target === event.currentTarget;
20
20
  const isCurrentlyActive = (_a = this.getValueForElement(target)) !== null && _a !== void 0 ? _a : false;
@@ -78,7 +78,7 @@ _OptionsController_instances = new WeakSet(), _OptionsController_shouldChangeSta
78
78
  if (elementValue) {
79
79
  return elementValue;
80
80
  }
81
- return element.innerText.trim();
81
+ return element.textContent.trim();
82
82
  };
83
83
  OptionsController.outlets = SyncedBooleanAttributesController.outlets;
84
84
  OptionsController.targets = ['option'];
@@ -31,7 +31,7 @@ export default class OptionsController
31
31
 
32
32
  select(event: Event, updateTo: TOutletChangeData<TActiveOptions> = {}) {
33
33
  const activeOptions = updateTo.data
34
- for (let index in this.optionTargets) {
34
+ for (const index in this.optionTargets) {
35
35
  const target = this.optionTargets[index]
36
36
  const wasSelected = target === event.currentTarget
37
37
  const isCurrentlyActive = this.getValueForElement(target) ?? false
@@ -101,7 +101,7 @@ export default class OptionsController
101
101
  return elementValue
102
102
  }
103
103
 
104
- return (element as HTMLElement).innerText.trim()
104
+ return (element as HTMLElement).textContent.trim()
105
105
  }
106
106
 
107
107
  getValueForElement(element: Element) {
@@ -23,7 +23,7 @@ class StringMatchController extends SyncedBooleanAttributesController {
23
23
  }
24
24
  getValueForElement(element) {
25
25
  var _a, _b;
26
- return (_b = (_a = element.innerText) === null || _a === void 0 ? void 0 : _a.toLowerCase().includes(this.keywordValue.toLowerCase())) !== null && _b !== void 0 ? _b : false;
26
+ return (_b = (_a = element.textContent) === null || _a === void 0 ? void 0 : _a.toLowerCase().includes(this.keywordValue.toLowerCase())) !== null && _b !== void 0 ? _b : false;
27
27
  }
28
28
  getState() {
29
29
  return this.keywordValue;
@@ -32,7 +32,7 @@ class StringMatchController extends SyncedBooleanAttributesController {
32
32
  _StringMatchController_instances = new WeakSet(), _StringMatchController_compareKeywordToTargets = function _StringMatchController_compareKeywordToTargets() {
33
33
  if (this.hasMatchTarget) {
34
34
  let foundMatch = false;
35
- for (let index in this.matchTargets) {
35
+ for (const index in this.matchTargets) {
36
36
  const target = this.matchTargets[index];
37
37
  const value = this.getValueForElement(target);
38
38
  this.updateAttributesForElement(target, value);
@@ -34,7 +34,7 @@ export default class StringMatchController
34
34
  #compareKeywordToTargets() {
35
35
  if (this.hasMatchTarget) {
36
36
  let foundMatch = false
37
- for (let index in this.matchTargets) {
37
+ for (const index in this.matchTargets) {
38
38
  const target = this.matchTargets[index]
39
39
  const value = this.getValueForElement(target)
40
40
  this.updateAttributesForElement(target, value)
@@ -54,7 +54,7 @@ export default class StringMatchController
54
54
  }
55
55
 
56
56
  getValueForElement(element: Element) {
57
- return (element as HTMLElement).innerText?.toLowerCase().includes(this.keywordValue.toLowerCase()) ?? false
57
+ return (element as HTMLElement).textContent?.toLowerCase().includes(this.keywordValue.toLowerCase()) ?? false
58
58
  }
59
59
 
60
60
  getState() {
@@ -108,7 +108,7 @@ class SyncedBooleanAttributesController extends OutletManagerController {
108
108
  // Essentially just a "sync attrs and anti-attrs on mount" function
109
109
  const elements = this.getElementsToSync();
110
110
  if (elements === null || elements === void 0 ? void 0 : elements.length) {
111
- for (let index in elements) {
111
+ for (const index in elements) {
112
112
  const element = elements[index];
113
113
  const value = (_a = this.getValueForElement(element)) !== null && _a !== void 0 ? _a : false;
114
114
  this.updateAttributesForElement(element, value);
@@ -171,7 +171,7 @@ _SyncedBooleanAttributesController_instances = new WeakSet(), _SyncedBooleanAttr
171
171
  // Attempts to change the attr for an element. However, it'll dispatch an event
172
172
  // first so other controllers get the opportunity to deny it
173
173
  const attrState = JSON.stringify(value);
174
- for (let index in attrs) {
174
+ for (const index in attrs) {
175
175
  const attr = attrs[index];
176
176
  const dispatchEvent = this.dispatch('attrChange', {
177
177
  target: element,
@@ -149,7 +149,7 @@ export default class SyncedBooleanAttributesController<T> extends OutletManagerC
149
149
  const elements = this.getElementsToSync()
150
150
 
151
151
  if (elements?.length) {
152
- for (let index in elements) {
152
+ for (const index in elements) {
153
153
  const element = elements[index]
154
154
  const value = this.getValueForElement(element) ?? false
155
155
  this.updateAttributesForElement(element, value)
@@ -222,7 +222,7 @@ export default class SyncedBooleanAttributesController<T> extends OutletManagerC
222
222
  // Attempts to change the attr for an element. However, it'll dispatch an event
223
223
  // first so other controllers get the opportunity to deny it
224
224
  const attrState = JSON.stringify(value)
225
- for (let index in attrs) {
225
+ for (const index in attrs) {
226
226
  const attr = attrs[index]
227
227
 
228
228
  const dispatchEvent = this.dispatch('attrChange', {
@@ -70,5 +70,11 @@ module Ariadne
70
70
  options[:class] = merge_class_names(DEFAULT_PASSWORD_CLASSES, options.delete(:classes))
71
71
  super(method, **options)
72
72
  end
73
+
74
+ DEFAULT_FILE_FIELD_CLASSES = ""
75
+ def file_field(method, options = {})
76
+ options[:class] = merge_class_names(DEFAULT_FILE_FIELD_CLASSES, options.delete(:classes))
77
+ super(method, **options)
78
+ end
73
79
  end
74
80
  end
@@ -3,6 +3,6 @@
3
3
  # :nocov:
4
4
  module Ariadne
5
5
  module ViewComponents
6
- VERSION = "0.0.54"
6
+ VERSION = "0.0.55"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ariadne_view_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.54
4
+ version: 0.0.55
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Garen J. Torikian
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-13 00:00:00.000000000 Z
11
+ date: 2023-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tailwind_merge
@@ -112,25 +112,6 @@ files:
112
112
  - LICENSE.txt
113
113
  - README.md
114
114
  - app/assets/builds/ariadne_view_components.css
115
- - app/assets/javascripts/ariadne_view_components.js
116
- - app/assets/javascripts/ariadne_view_components.js.map
117
- - app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts
118
- - app/assets/javascripts/components/ariadne/ariadne-form.d.ts
119
- - app/assets/javascripts/components/ariadne/ariadne.d.ts
120
- - app/assets/javascripts/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts
121
- - app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts
122
- - app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts
123
- - app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts
124
- - app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts
125
- - app/assets/javascripts/components/ariadne/rich_text_area_component/rich-text-area-component.d.ts
126
- - app/assets/javascripts/components/ariadne/slideover_component/slideover-component.d.ts
127
- - app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts
128
- - app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts
129
- - app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts
130
- - app/assets/javascripts/components/ariadne/tab_nav_component/tab-nav-component.d.ts
131
- - app/assets/javascripts/components/ariadne/time_ago_component/time-ago-component.d.ts
132
- - app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts
133
- - app/assets/javascripts/components/ariadne/tooltip_component/tooltip-component.d.ts
134
115
  - app/assets/stylesheets/ariadne_view_components.css
135
116
  - app/assets/stylesheets/dropdown.css
136
117
  - app/assets/stylesheets/prosemirror.css