ariadne_view_components 0.0.18-x64-mingw32 → 0.0.20-x64-mingw32
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/CHANGELOG.md +104 -0
- data/README.md +3 -0
- 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/rich-text-area-component.d.ts +2 -0
- data/app/components/ariadne/base_button.rb +2 -2
- data/app/components/ariadne/comment_component.html.erb +2 -2
- data/app/components/ariadne/component.rb +4 -0
- data/app/components/ariadne/inline_flex_component.rb +2 -2
- data/app/components/ariadne/panel_bar_component.html.erb +1 -1
- data/app/components/ariadne/panel_bar_component.rb +1 -0
- data/app/components/ariadne/rich-text-area-component.ts +22 -9
- data/app/components/ariadne/rich_text_area_component.html.erb +1 -1
- data/app/components/ariadne/slideover-component.ts +0 -9
- data/app/components/ariadne/slideover_component.html.erb +6 -8
- data/app/components/ariadne/slideover_component.rb +9 -24
- data/app/components/ariadne/tab_component.rb +0 -1
- data/app/components/ariadne/tab_container_component.erb +1 -1
- data/app/components/ariadne/tab_container_component.rb +2 -1
- data/lib/ariadne/view_components/version.rb +1 -1
- data/static/arguments.yml +0 -4
- data/static/classes.yml +3 -5
- data/static/constants.json +7 -8
- metadata +3 -2
@@ -19,8 +19,8 @@ module Ariadne
|
|
19
19
|
}.freeze
|
20
20
|
VALID_SIZES = SIZE_CLASS_MAPPINGS.keys.freeze
|
21
21
|
|
22
|
-
DEFAULT_CLASSES = "ariadne-
|
23
|
-
DEFAULT_NUDE_CLASSES = "
|
22
|
+
DEFAULT_CLASSES = "ariadne-items-center ariadne-border ariadne-shadow-sm focus:ariadne-outline-none focus:ariadne-ring-2 focus:ariadne-ring-offset-2"
|
23
|
+
DEFAULT_NUDE_CLASSES = "focus:ariadne-outline-none focus:ariadne-ring-2 focus:ariadne-ring-offset-2"
|
24
24
|
|
25
25
|
DEFAULT_SIZE = :md
|
26
26
|
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<% tab.text { @public_tab_text } %>
|
5
5
|
<% tab.panel(attributes: {:"data-public" => true}) do %>
|
6
6
|
<%= ariadne_form_with(url: @url, method: @method, classes: @classes, attributes: @attributes) do |comment_box| %>
|
7
|
-
<div class="ariadne-overflow-hidden ariadne-border ariadne-border-gray-300 ariadne-shadow-sm
|
7
|
+
<div class="ariadne-overflow-hidden ariadne-border ariadne-border-gray-300 ariadne-shadow-sm">
|
8
8
|
<%= hidden_field_tag 'message_public', true %>
|
9
9
|
<%= render(Ariadne::RichTextAreaComponent.new(name: :public_bodytext, sr_label: "Select reply type", attributes: { required: true})) %>
|
10
10
|
<% comment_box.submit { @submit } %>
|
@@ -19,7 +19,7 @@
|
|
19
19
|
<% tab.text { @internal_tab_text } %>
|
20
20
|
<% tab.panel do %>
|
21
21
|
<%= ariadne_form_with(url: @url, method: @method, classes: @classes, attributes: @attributes) do |comment_box| %>
|
22
|
-
<div class="ariadne-overflow-hidden ariadne-border ariadne-border-gray-300 ariadne-shadow-sm
|
22
|
+
<div class="ariadne-overflow-hidden ariadne-border ariadne-border-gray-300 ariadne-shadow-sm">
|
23
23
|
<%= hidden_field_tag 'message_public', false %>
|
24
24
|
<%= render(Ariadne::RichTextAreaComponent.new(name: :internal_bodytext, sr_label: "Select reply type", attributes: { required: true})) %>
|
25
25
|
<% comment_box.submit { @submit } %>
|
@@ -19,6 +19,10 @@ module Ariadne
|
|
19
19
|
BASE_WRAPPER_CLASSES = "ariadne-flex ariadne-flex-col ariadne-h-screen ariadne-justify-between"
|
20
20
|
BASE_MAIN_CLASSES = "ariadne-flex-auto"
|
21
21
|
|
22
|
+
# this is defined here for the Tailwind parser to pick up; it can be useful
|
23
|
+
# in situations where hiddenness is defined by a kwarg, eg `selected: false`
|
24
|
+
BASE_HIDDEN_CLASS = "ariadne-hidden"
|
25
|
+
|
22
26
|
INVALID_ARIA_LABEL_TAGS = [:div, :span, :p].freeze
|
23
27
|
|
24
28
|
private def raise_on_invalid_options?
|
@@ -26,7 +26,7 @@ module Ariadne
|
|
26
26
|
|
27
27
|
DEFAULT_TEXT_OPEN_CLASSES = "ariadne-text-state-open"
|
28
28
|
DEFAULT_TEXT_CLOSED_CLASSES = "ariadne-text-state-closed"
|
29
|
-
DEFAULT_TEXT_CLASSES = "ariadne-pl-2 ariadne-text-sm ariadne-font-medium
|
29
|
+
DEFAULT_TEXT_CLASSES = "ariadne-pl-2 ariadne-text-sm ariadne-font-medium"
|
30
30
|
renders_one :icon, lambda { |tag: :svg, icon:, variant:, size: Ariadne::HeroiconComponent::SIZE_DEFAULT, classes: "", attributes: {}, text_classes: "", text_attributes: {}|
|
31
31
|
actual_text_classes = class_names(DEFAULT_TEXT_CLASSES, text_classes)
|
32
32
|
Ariadne::HeroiconComponent.new(tag: tag, icon: icon, variant: variant, size: size, classes: classes, attributes: attributes, text_classes: actual_text_classes, text_attributes: text_attributes) { content }
|
@@ -36,7 +36,7 @@ module Ariadne
|
|
36
36
|
Ariadne::BaseComponent.new(tag: :span, classes: classes, attributes: attributes) { content }
|
37
37
|
}
|
38
38
|
|
39
|
-
DEFAULT_LABEL_CLASSES = "ariadne-pl-2 ariadne-text-sm ariadne-font-medium
|
39
|
+
DEFAULT_LABEL_CLASSES = "ariadne-pl-2 ariadne-text-sm ariadne-font-medium"
|
40
40
|
renders_one :text, lambda { |classes: "", attributes: {}|
|
41
41
|
actual_classes = class_names(DEFAULT_LABEL_CLASSES, classes)
|
42
42
|
Ariadne::BaseComponent.new(tag: :span, classes: actual_classes, attributes: attributes) { content }
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<span class="ariadne-px-6 ariadne-py-4 ariadne-flex ariadne-items-center ariadne-text-sm ariadne-font-medium">
|
6
6
|
<%= panel.icon %>
|
7
7
|
<span class="ariadne-ml-4 ariadne-text-sm ariadne-font-medium ariadne-text-gray-900"><%= panel.label %></span>
|
8
|
-
<!--
|
8
|
+
<!-- TODO: fix this -->
|
9
9
|
<% if idx + 1 < panels.size %>
|
10
10
|
<div class="md:ariadne-block ariadne-hidden ariadne-absolute ariadne-top-0 ariadne-right-0 ariadne-h-full ariadne-w-5" aria-hidden="true">
|
11
11
|
<svg class="ariadne-h-full ariadne-w-full ariadne-text-gray-300" viewBox="0 0 22 80" fill="none" preserveAspectRatio="none">
|
@@ -40,6 +40,7 @@ module Ariadne
|
|
40
40
|
DEFAULT_ITEM_CLASSES = "ariadne-relative md:ariadne-flex-1 md:ariadne-flex"
|
41
41
|
DEFAULT_WRAPPER_CLASSES = "group ariadne-flex ariadne-items-center ariadne-w-full"
|
42
42
|
|
43
|
+
# TODO: fix this
|
43
44
|
renders_one :icon, lambda { |static_content = nil, &block|
|
44
45
|
next static_content if static_content.present?
|
45
46
|
|
@@ -1,21 +1,34 @@
|
|
1
1
|
import {Controller} from '@hotwired/stimulus'
|
2
2
|
|
3
3
|
import {Editor} from '@tiptap/core'
|
4
|
-
|
4
|
+
|
5
|
+
import {Document} from '@tiptap/extension-document'
|
6
|
+
import {Paragraph} from '@tiptap/extension-paragraph'
|
7
|
+
import {Text} from '@tiptap/extension-text'
|
8
|
+
|
9
|
+
import DropCursor from '@tiptap/extension-dropcursor'
|
10
|
+
import GapCursor from '@tiptap/extension-gapcursor'
|
11
|
+
import {History} from '@tiptap/extension-history'
|
5
12
|
|
6
13
|
export default class RichTextArea extends Controller {
|
14
|
+
static targets = ['editor']
|
15
|
+
|
16
|
+
declare readonly editorTargets: [HTMLDivElement]
|
17
|
+
|
7
18
|
connect() {
|
8
|
-
const
|
9
|
-
|
10
|
-
|
11
|
-
element: editorElement,
|
12
|
-
extensions: [StarterKit],
|
19
|
+
for (const editorElement of this.editorTargets) {
|
20
|
+
const pmEditor = new Editor({
|
21
|
+
extensions: [DropCursor, GapCursor, History, Document, Paragraph, Text],
|
13
22
|
content: '',
|
23
|
+
injectCSS: false,
|
24
|
+
element: editorElement,
|
14
25
|
editorProps: {
|
15
26
|
attributes: {
|
16
|
-
class:
|
17
|
-
'focus:ariadne-outline-none ariadne-block ariadne-w-full ariadne-resize-none ariadne-p-0 ariadne-pb-2 ariadne-border-none focus:ariadne-ring-0 sm:ariadne-text-sm'
|
27
|
+
class: 'ariadne-p-3'
|
18
28
|
}
|
29
|
+
},
|
30
|
+
parseOptions: {
|
31
|
+
preserveWhitespace: true
|
19
32
|
}
|
20
33
|
})
|
21
34
|
|
@@ -24,7 +37,7 @@ export default class RichTextArea extends Controller {
|
|
24
37
|
const parentForm = editorElement.closest('form')
|
25
38
|
|
26
39
|
parentForm?.addEventListener('submit', () => {
|
27
|
-
tiptapValueContainer.setAttribute('value',
|
40
|
+
tiptapValueContainer.setAttribute('value', pmEditor.getText() || '')
|
28
41
|
})
|
29
42
|
}
|
30
43
|
}
|
@@ -10,17 +10,8 @@ export default class SlideoverComponent extends Controller {
|
|
10
10
|
|
11
11
|
toggle() {
|
12
12
|
this.expandableTarget.classList.toggle('ariadne-hidden')
|
13
|
-
this.expandWrapperTarget.classList.toggle('bg-filter-panel')
|
14
13
|
for (const slidePanel of this.slidePanelTargets) {
|
15
14
|
slidePanel.classList.toggle('ariadne-hidden')
|
16
15
|
}
|
17
|
-
this.buttonWrapperTarget.classList.toggle('bg-filter-panel')
|
18
|
-
if (document.getElementById('btnClose')?.classList.contains('ariadne-hidden')) {
|
19
|
-
const formID = this.buttonWrapperTarget.getAttribute('data-slideover-component-form-id')
|
20
|
-
if (formID) {
|
21
|
-
const form = <HTMLFormElement>document.getElementById(formID)
|
22
|
-
form?.submit()
|
23
|
-
}
|
24
|
-
}
|
25
16
|
}
|
26
17
|
}
|
@@ -1,11 +1,9 @@
|
|
1
1
|
<%= render Ariadne::BaseComponent.new(tag: @tag, classes: @classes, attributes: @attributes) do |slideover| %>
|
2
|
-
<div data-slideover-component-target="
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
<%= close_button %>
|
9
|
-
</div>
|
2
|
+
<div data-slideover-component-target="expandable" class="ariadne-hidden ariadne-px-3">
|
3
|
+
<%= content %>
|
4
|
+
</div>
|
5
|
+
<div data-slideover-component-target="buttonWrapper" class="ariadne-relative ariadne-flex ariadne-justify-center">
|
6
|
+
<%= open_button %>
|
7
|
+
<%= close_button %>
|
10
8
|
</div>
|
11
9
|
<% end %>
|
@@ -12,43 +12,29 @@ module Ariadne
|
|
12
12
|
DIRECTION_X_LEFT = :xl
|
13
13
|
VALID_DIRECTIONS = [DIRECTION_Y_DOWN, DIRECTION_X_LEFT].freeze
|
14
14
|
|
15
|
-
DEFAULT_CLASSES = ""
|
15
|
+
DEFAULT_CLASSES = "ariadne-flex ariadne-flex-col"
|
16
16
|
|
17
17
|
DEFAULT_BUTTON_CLASSES = "ariadne-inline-flex ariadne-items-center ariadne-shadow-sm ariadne-px-4 ariadne-py-1.5 ariadne-pb-2 ariadne-text-sm ariadne-leading-5 ariadne-font-medium ariadne-rounded-full " + Ariadne::ButtonComponent::SCHEME_CLASS_MAPPINGS[:default]
|
18
|
-
renders_one :open_button, lambda { |
|
19
|
-
actual_classes = class_names(DEFAULT_BUTTON_CLASSES, classes)
|
18
|
+
renders_one :open_button, lambda { |selected: false, classes: "", attributes: {}|
|
19
|
+
actual_classes = class_names(DEFAULT_BUTTON_CLASSES, classes, selected ? "" : BASE_HIDDEN_CLASS)
|
20
20
|
|
21
21
|
attributes[:id] ||= "btnOpen"
|
22
22
|
attributes[:"data-slideover-component-target"] ||= "slidePanel"
|
23
23
|
attributes[:"data-action"] ||= "click->slideover-component#toggle"
|
24
24
|
attributes[:type] ||= "submit"
|
25
25
|
|
26
|
-
|
27
|
-
when DIRECTION_Y_DOWN
|
28
|
-
:"chevron-double-down"
|
29
|
-
end
|
30
|
-
|
31
|
-
render(Ariadne::BaseComponent.new(tag: :button, classes: actual_classes, attributes: attributes)) do
|
32
|
-
render(Ariadne::HeroiconComponent.new(icon: icon, size: :sm, variant: HeroiconsHelper::Icon::VARIANT_SOLID, attributes: { "data-slideover-component-target" => "slide-panel" }, text_classes: text_classes)) { label }
|
33
|
-
end
|
26
|
+
Ariadne::ButtonComponent.new(classes: actual_classes, attributes: attributes)
|
34
27
|
}
|
35
28
|
|
36
|
-
renders_one :close_button, lambda { |
|
37
|
-
actual_classes = class_names(DEFAULT_BUTTON_CLASSES, classes)
|
29
|
+
renders_one :close_button, lambda { |selected: false, classes: "", attributes: {}|
|
30
|
+
actual_classes = class_names(DEFAULT_BUTTON_CLASSES, classes, selected ? "" : BASE_HIDDEN_CLASS)
|
38
31
|
|
39
32
|
attributes[:id] ||= "btnClose"
|
40
33
|
attributes[:"data-slideover-component-target"] ||= "slidePanel"
|
41
34
|
attributes[:"data-action"] ||= "click->slideover-component#toggle"
|
42
35
|
attributes[:type] ||= "submit"
|
43
36
|
|
44
|
-
|
45
|
-
when DIRECTION_Y_DOWN
|
46
|
-
:"chevron-double-up"
|
47
|
-
end
|
48
|
-
|
49
|
-
render(Ariadne::BaseComponent.new(tag: :button, classes: actual_classes, attributes: attributes)) do
|
50
|
-
render(Ariadne::HeroiconComponent.new(icon: icon, size: :sm, variant: HeroiconsHelper::Icon::VARIANT_SOLID, attributes: { "data-slideover-component-target" => "slide-panel" }, text_classes: text_classes)) { label }
|
51
|
-
end
|
37
|
+
Ariadne::ButtonComponent.new(classes: actual_classes, attributes: attributes)
|
52
38
|
}
|
53
39
|
|
54
40
|
# @example Default
|
@@ -57,12 +43,11 @@ module Ariadne
|
|
57
43
|
#
|
58
44
|
# @param tag [Symbol, String] The rendered tag name.
|
59
45
|
# @param direction [Symbol] <%= one_of(Ariadne::SlideoverComponent::VALID_DIRECTIONS) %>
|
60
|
-
# @param form_id [String] The ID of any `form` tag to submit when the button is clicked.
|
61
46
|
# @param open_text [String] The text to use to open the slideover.
|
62
47
|
# @param close_text [String] The text to use to close the slideover.
|
63
48
|
# @param classes [String] <%= link_to_classes_docs %>
|
64
49
|
# @param attributes [Hash] <%= link_to_attributes_docs %>
|
65
|
-
def initialize(tag: DEFAULT_TAG, direction:,
|
50
|
+
def initialize(tag: DEFAULT_TAG, direction:, open_text: "Open", close_text: "Close", classes: "", attributes: {})
|
66
51
|
@tag = check_incoming_tag(DEFAULT_TAG, tag)
|
67
52
|
@classes = class_names(
|
68
53
|
DEFAULT_CLASSES,
|
@@ -70,12 +55,12 @@ module Ariadne
|
|
70
55
|
)
|
71
56
|
|
72
57
|
@direction = fetch_or_raise(VALID_DIRECTIONS, direction)
|
73
|
-
@form_id = form_id
|
74
58
|
|
75
59
|
@open_text = open_text
|
76
60
|
@close_text = close_text
|
77
61
|
@attributes = attributes
|
78
62
|
@attributes[:"data-controller"] = "slideover-component"
|
63
|
+
@attributes[:"data-slideover-component-target"] = "expandWrapper"
|
79
64
|
end
|
80
65
|
end
|
81
66
|
end
|
@@ -9,7 +9,7 @@ module Ariadne
|
|
9
9
|
|
10
10
|
DEFAULT_CLASSES = ""
|
11
11
|
|
12
|
-
DEFAULT_SELECTED_CLASSES = "ariadne-border-indigo-500 ariadne-text-indigo-600"
|
12
|
+
DEFAULT_SELECTED_CLASSES = "ariadne-bg-white ariadne-border-indigo-500 ariadne-text-indigo-600"
|
13
13
|
DEFAULT_UNSELECTED_CLASSES = "ariadne-text-gray-500 hover:ariadne-text-gray-700 hover:ariadne-border-gray-300"
|
14
14
|
|
15
15
|
# Tabs and panels to be rendered.
|
@@ -20,6 +20,7 @@ module Ariadne
|
|
20
20
|
# @param attributes [Hash] <%= link_to_attributes_docs %>
|
21
21
|
renders_many :tabs, lambda { |id: "", selected: false, classes: "", attributes: {}|
|
22
22
|
actual_classes = class_names(selected ? DEFAULT_SELECTED_CLASSES : DEFAULT_UNSELECTED_CLASSES, classes)
|
23
|
+
|
23
24
|
Ariadne::TabComponent.new(
|
24
25
|
id: id,
|
25
26
|
selected: selected,
|
data/static/arguments.yml
CHANGED
@@ -554,10 +554,6 @@
|
|
554
554
|
type: Symbol
|
555
555
|
default: N/A
|
556
556
|
description: One of `:xl` and `:yd`.
|
557
|
-
- name: form_id
|
558
|
-
type: String
|
559
|
-
default: "`nil`"
|
560
|
-
description: The ID of any `form` tag to submit when the button is clicked.
|
561
557
|
- name: open_text
|
562
558
|
type: String
|
563
559
|
default: '`"Open"`'
|
data/static/classes.yml
CHANGED
@@ -12,7 +12,6 @@
|
|
12
12
|
- ".ariadne-flex"
|
13
13
|
- ".ariadne--space-x-2"
|
14
14
|
- ".ariadne-overflow-hidden"
|
15
|
-
- ".ariadne-inline-flex"
|
16
15
|
- ".ariadne-items-center"
|
17
16
|
- ".ariadne-border"
|
18
17
|
- ".ariadne-shadow-sm"
|
@@ -79,6 +78,7 @@
|
|
79
78
|
- ".focus:ariadne-ring-offset-red-50"
|
80
79
|
- ".focus:ariadne-ring-red-600"
|
81
80
|
- ".ariadne-text-yellow-600"
|
81
|
+
- ".ariadne-inline-flex"
|
82
82
|
- ".ariadne-p-1"
|
83
83
|
- ".ariadne-border-transparent"
|
84
84
|
- ".ariadne-invisible"
|
@@ -99,6 +99,7 @@
|
|
99
99
|
- ".ariadne-shadow"
|
100
100
|
- ".ariadne-py-5"
|
101
101
|
- ".ariadne-px-5"
|
102
|
+
- ".ariadne-bg-neutral-50"
|
102
103
|
- ".ariadne-text-gray-500"
|
103
104
|
- ".hover:ariadne-text-gray-700"
|
104
105
|
- ".hover:ariadne-border-gray-300"
|
@@ -110,9 +111,6 @@
|
|
110
111
|
- ".ariadne-text-indigo-600"
|
111
112
|
- ".ariadne-space-y-8"
|
112
113
|
- ".sm:ariadne-space-y-5"
|
113
|
-
- ".focus-within:ariadne-border-indigo-500"
|
114
|
-
- ".focus-within:ariadne-ring-1"
|
115
|
-
- ".focus-within:ariadne-ring-indigo-500"
|
116
114
|
- ".tiptap-editor"
|
117
115
|
- ".ariadne-mt-2"
|
118
116
|
- ".ariadne-justify-end"
|
@@ -170,9 +168,9 @@
|
|
170
168
|
- ".ariadne-py-0.5"
|
171
169
|
- ".ariadne-text-black"
|
172
170
|
- ".ariadne-hidden"
|
173
|
-
- ".ariadne-pb-4"
|
174
171
|
- ".ariadne-list-none"
|
175
172
|
- ".ariadne-divide-gray-200"
|
173
|
+
- ".ariadne-pb-4"
|
176
174
|
- ".ariadne-text-lg"
|
177
175
|
- ".ariadne-pt-6"
|
178
176
|
- ".ariadne-flow-root"
|
data/static/constants.json
CHANGED
@@ -37,8 +37,8 @@
|
|
37
37
|
]
|
38
38
|
},
|
39
39
|
"Ariadne::BaseButton": {
|
40
|
-
"DEFAULT_CLASSES": "ariadne-
|
41
|
-
"DEFAULT_NUDE_CLASSES": "
|
40
|
+
"DEFAULT_CLASSES": "ariadne-items-center ariadne-border ariadne-shadow-sm focus:ariadne-outline-none focus:ariadne-ring-2 focus:ariadne-ring-offset-2",
|
41
|
+
"DEFAULT_NUDE_CLASSES": "focus:ariadne-outline-none focus:ariadne-ring-2 focus:ariadne-ring-offset-2",
|
42
42
|
"DEFAULT_SIZE": "md",
|
43
43
|
"DEFAULT_TAG": "button",
|
44
44
|
"DEFAULT_TYPE": "button",
|
@@ -136,8 +136,7 @@
|
|
136
136
|
"DEFAULT_TAG": "clipboard-copy"
|
137
137
|
},
|
138
138
|
"Ariadne::CommentComponent": {
|
139
|
-
"DEFAULT_CLASSES": "ariadne-bg-
|
140
|
-
"DEFAULT_INTERNAL_CLASSES": "ariadne-bg-internal-message",
|
139
|
+
"DEFAULT_CLASSES": "ariadne-bg-white ariadne-border-gray-300 ariadne-border ariadne-shadow ariadne-py-5 ariadne-px-5 ariadne-rounded-md ",
|
141
140
|
"DEFAULT_TAG": "div",
|
142
141
|
"TAG_OPTIONS": [
|
143
142
|
"div"
|
@@ -405,9 +404,9 @@
|
|
405
404
|
},
|
406
405
|
"Ariadne::InlineFlexComponent": {
|
407
406
|
"DEFAULT_CLASSES": "ariadne-inline-flex ariadne-items-baseline",
|
408
|
-
"DEFAULT_LABEL_CLASSES": "ariadne-pl-2 ariadne-text-sm ariadne-font-medium
|
407
|
+
"DEFAULT_LABEL_CLASSES": "ariadne-pl-2 ariadne-text-sm ariadne-font-medium",
|
409
408
|
"DEFAULT_TAG": "span",
|
410
|
-
"DEFAULT_TEXT_CLASSES": "ariadne-pl-2 ariadne-text-sm ariadne-font-medium
|
409
|
+
"DEFAULT_TEXT_CLASSES": "ariadne-pl-2 ariadne-text-sm ariadne-font-medium",
|
411
410
|
"DEFAULT_TEXT_CLOSED_CLASSES": "ariadne-text-state-closed",
|
412
411
|
"DEFAULT_TEXT_OPEN_CLASSES": "ariadne-text-state-open",
|
413
412
|
"STATE_CLOSED_SVG": "<svg viewBox=\"0 0 24 24\" width=\"12\" height=\"12\" class=\"ariadne-stroke-state-closed ariadne-fill-state-closed \" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\">\n <circle cx=\"12\" cy=\"12\" r=\"10\"></circle>\n</svg>\n",
|
@@ -466,7 +465,7 @@
|
|
466
465
|
},
|
467
466
|
"Ariadne::SlideoverComponent": {
|
468
467
|
"DEFAULT_BUTTON_CLASSES": "ariadne-inline-flex ariadne-items-center ariadne-shadow-sm ariadne-px-4 ariadne-py-1.5 ariadne-pb-2 ariadne-text-sm ariadne-leading-5 ariadne-font-medium ariadne-rounded-full ariadne-text-purple-800 ariadne-bg-purple-50 hover:ariadne-bg-purple-100 ariadne-border-purple-300 focus:ariadne-ring-offset-purple-50 focus:ariadne-ring-purple-600",
|
469
|
-
"DEFAULT_CLASSES": "",
|
468
|
+
"DEFAULT_CLASSES": "ariadne-flex ariadne-flex-col",
|
470
469
|
"DEFAULT_TAG": "div",
|
471
470
|
"DIRECTION_X_LEFT": "xl",
|
472
471
|
"DIRECTION_Y_DOWN": "yd",
|
@@ -488,7 +487,7 @@
|
|
488
487
|
},
|
489
488
|
"Ariadne::TabContainerComponent": {
|
490
489
|
"DEFAULT_CLASSES": "",
|
491
|
-
"DEFAULT_SELECTED_CLASSES": "ariadne-border-indigo-500 ariadne-text-indigo-600",
|
490
|
+
"DEFAULT_SELECTED_CLASSES": "ariadne-bg-white ariadne-border-indigo-500 ariadne-text-indigo-600",
|
492
491
|
"DEFAULT_TAG": "tab-container",
|
493
492
|
"DEFAULT_UNSELECTED_CLASSES": "ariadne-text-gray-500 hover:ariadne-text-gray-700 hover:ariadne-border-gray-300"
|
494
493
|
},
|
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.
|
4
|
+
version: 0.0.20
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Garen J. Torikian
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10-
|
11
|
+
date: 2022-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tailwind_merge
|
@@ -106,6 +106,7 @@ executables:
|
|
106
106
|
extensions: []
|
107
107
|
extra_rdoc_files: []
|
108
108
|
files:
|
109
|
+
- CHANGELOG.md
|
109
110
|
- LICENSE.txt
|
110
111
|
- README.md
|
111
112
|
- app/assets/config/manifest.js
|