ariadne_view_components 0.0.24-aarch64-linux → 0.0.25-aarch64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/ariadne_view_components.js +1 -1
- data/app/assets/javascripts/ariadne_view_components.js.map +1 -1
- data/app/components/ariadne/body_component.rb +1 -1
- data/app/components/ariadne/button_component.rb +2 -2
- data/app/components/ariadne/comment_component.html.erb +1 -1
- data/app/components/ariadne/comment_component.rb +1 -1
- data/app/components/ariadne/details_component.rb +1 -1
- data/app/components/ariadne/flash_component.rb +4 -4
- data/app/components/ariadne/header_component.rb +1 -2
- data/app/components/ariadne/tab-container-component.ts +1 -1
- data/app/components/ariadne/tab-nav-component.ts +1 -1
- data/app/components/ariadne/tab_container_component.rb +1 -1
- data/app/components/ariadne/tab_nav_component.rb +2 -2
- data/app/components/ariadne/table_nav_component.rb +1 -1
- data/app/lib/ariadne/form_builder.rb +6 -6
- data/lib/ariadne/view_components/version.rb +1 -1
- data/static/classes.yml +17 -18
- data/static/constants.json +15 -15
- data/tailwind.config.js +3 -3
- metadata +1 -1
@@ -5,7 +5,7 @@ module Ariadne
|
|
5
5
|
# Add additional usage considerations or best practices that may aid the user to use the component correctly.
|
6
6
|
# @accessibility Add any accessibility considerations
|
7
7
|
class BodyComponent < Ariadne::Component
|
8
|
-
DEFAULT_CLASSES = "ariadne-scroll-smooth ariadne-
|
8
|
+
DEFAULT_CLASSES = "ariadne-scroll-smooth ariadne-antialiased"
|
9
9
|
|
10
10
|
# @example Default
|
11
11
|
#
|
@@ -11,8 +11,8 @@ module Ariadne
|
|
11
11
|
SCHEME_CLASS_MAPPINGS = {
|
12
12
|
link: Ariadne::LinkComponent::DEFAULT_ACTIONABLE_CLASSES,
|
13
13
|
none: "",
|
14
|
-
default: "ariadne-text-
|
15
|
-
info: "ariadne-text-
|
14
|
+
default: "ariadne-text-slate-800 ariadne-bg-slate-50 hover:ariadne-bg-slate-100 ariadne-border-slate-300 focus:ariadne-ring-offset-slate-50 focus:ariadne-ring-slate-600",
|
15
|
+
info: "ariadne-text-slate-800 ariadne-bg-slate-50 hover:ariadne-bg-slate-100 ariadne-border-slate-300 focus:ariadne-ring-offset-blue-50 focus:ariadne-ring-slate-600",
|
16
16
|
success: "ariadne-text-green-800 ariadne-bg-green-50 hover:ariadne-bg-green-100 ariadne-border-green-300 focus:ariadne-ring-offset-green-50 focus:ariadne-ring-green-600",
|
17
17
|
warning: "ariadne-text-yellow-800 ariadne-bg-yellow-50 hover:ariadne-bg-yellow-100 ariadne-border-yellow-300 focus:ariadne-ring-offset-yellow-50 focus:ariadne-ring-yellow-600",
|
18
18
|
danger: "ariadne-text-red-800 ariadne-bg-red-50 hover:ariadne-bg-red-100 ariadne-border-red-300 focus:ariadne-ring-offset-red-50 focus:ariadne-ring-red-600",
|
@@ -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-
|
7
|
+
<div class="ariadne-overflow-hidden ariadne-border ariadne-border-slate-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 } %>
|
@@ -10,7 +10,7 @@ module Ariadne
|
|
10
10
|
DEFAULT_TAG = :div
|
11
11
|
TAG_OPTIONS = [DEFAULT_TAG].freeze
|
12
12
|
|
13
|
-
DEFAULT_CLASSES = "ariadne-
|
13
|
+
DEFAULT_CLASSES = "ariadne-border-gray-300 ariadne-border ariadne-shadow ariadne-py-5 ariadne-px-5 ariadne-rounded-md "
|
14
14
|
|
15
15
|
renders_one :public_tab, lambda { |selected: false, text:, classes: "", attributes: {}|
|
16
16
|
attributes[:"data-public"] = true
|
@@ -28,7 +28,7 @@ module Ariadne
|
|
28
28
|
Ariadne::Content.new
|
29
29
|
}
|
30
30
|
|
31
|
-
DEFAULT_BODY_CLASSES = "ariadne-absolute ariadne-mt-2 ariadne-w-56 ariadne-divide-y ariadne-divide-gray-100 ariadne-rounded-md ariadne-
|
31
|
+
DEFAULT_BODY_CLASSES = "ariadne-absolute ariadne-mt-2 ariadne-w-56 ariadne-divide-y ariadne-divide-gray-100 ariadne-rounded-md ariadne-shadow-lg ariadne-ring-1 ariadne-ring-black ariadne-ring-opacity-5 focus:ariadne-outline-none"
|
32
32
|
# Use the Body slot as the main content to be shown when triggered by the Summary.
|
33
33
|
#
|
34
34
|
# @param tag [Symbol] The tag to use for the body/ <%= one_of(Ariadne::DetailsComponent::VALID_BODY_TAGS) %>
|
@@ -8,8 +8,8 @@ module Ariadne
|
|
8
8
|
DEFAULT_SCHEME = :default
|
9
9
|
|
10
10
|
DISMISSIBLE_SCHEME_CLASS_MAPPINGS = {
|
11
|
-
default: "ariadne-text-
|
12
|
-
info: "ariadne-text-
|
11
|
+
default: "ariadne-text-slate-500 ariadne-bg-blue-50 hover:ariadne-bg-blue-100 focus:ariadne-ring-offset-blue-50 focus:ariadne-ring-blue-600",
|
12
|
+
info: "ariadne-text-slate-500 ariadne-bg-blue-50 hover:ariadne-bg-blue-100 focus:ariadne-ring-offset-blue-50 focus:ariadne-ring-blue-600",
|
13
13
|
success: "ariadne-text-green-500 ariadne-bg-green-50 hover:ariadne-bg-green-100 focus:ariadne-ring-offset-green-50 focus:ariadne-ring-green-600",
|
14
14
|
warning: "ariadne-text-yellow-500 ariadne-bg-yellow-50 hover:ariadne-bg-yellow-100 focus:ariadne-ring-offset-yellow-50 focus:ariadne-ring-yellow-600",
|
15
15
|
danger: "ariadne-text-red-500 ariadne-bg-red-50 hover:ariadne-bg-red-100 focus:ariadne-ring-offset-red-50 focus:ariadne-ring-red-600",
|
@@ -26,8 +26,8 @@ module Ariadne
|
|
26
26
|
VALID_BG_SCHEMES = BG_SCHEME_CLASS_MAPPINGS.keys.freeze
|
27
27
|
|
28
28
|
CONTENT_SCHEME_CLASS_MAPPINGS = {
|
29
|
-
default: "ariadne-text-
|
30
|
-
info: "ariadne-text-
|
29
|
+
default: "ariadne-text-slate-700",
|
30
|
+
info: "ariadne-text-slate-700",
|
31
31
|
success: "ariadne-text-green-700",
|
32
32
|
warning: "ariadne-text-yellow-700",
|
33
33
|
danger: "ariadne-text-red-700",
|
@@ -3,8 +3,7 @@
|
|
3
3
|
module Ariadne
|
4
4
|
# Represents the top navigation bar on every page.
|
5
5
|
class HeaderComponent < Ariadne::Component
|
6
|
-
DEFAULT_CLASSES = "ariadne-sticky ariadne-top-0 ariadne-z-50 ariadne-px-4 ariadne-pt-4 ariadne-h-16 ariadne-
|
7
|
-
# ariadne-flex ariadne-flex-wrap ariadne-items-center ariadne-justify-between ariadne-bg-white dark:ariadne-shadow-none dark:ariadne-bg-transparent
|
6
|
+
DEFAULT_CLASSES = "ariadne-sticky ariadne-top-0 ariadne-z-50 ariadne-px-4 ariadne-pt-4 ariadne-h-16 ariadne-shadow-sm shadow-slate-900/5 ariadne-transition ariadne-duration-500"
|
8
7
|
LINK_CLASSES = "ariadne-rounded-lg ariadne-py-1 ariadne-px-2 text-slate-700 hover:bg-slate-100 hover:text-slate-900"
|
9
8
|
|
10
9
|
DEFAULT_TEXT_LOGO_CLASSES = "ariadne-flex ariadne-items-center ariadne-font-bold ariadne-text-xl"
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import '@github/tab-container-element'
|
2
2
|
|
3
3
|
// keep in sync with tab_container_component.rb
|
4
|
-
const DEFAULT_SELECTED_CLASSES: string[] = ['ariadne-border-
|
4
|
+
const DEFAULT_SELECTED_CLASSES: string[] = ['ariadne-border-slate-500', 'ariadne-text-slate-600']
|
5
5
|
const DEFAULT_UNSELECTED_CLASSES: string[] = [
|
6
6
|
'ariadne-text-gray-500',
|
7
7
|
'hover:ariadne-text-gray-700',
|
@@ -6,7 +6,7 @@ export default class TabNavComponent extends Controller {
|
|
6
6
|
declare readonly tabTargets: [HTMLAnchorElement]
|
7
7
|
|
8
8
|
// keep in synch with tab_nav_component
|
9
|
-
SELECTED_CLASSES = ['ariadne-border-
|
9
|
+
SELECTED_CLASSES = ['ariadne-border-slate-500', 'ariadne-text-slate-600']
|
10
10
|
UNSELECTED_CLASSES = ['ariadne-text-gray-500', 'hover:ariadne-text-gray-700', 'hover:ariadne-border-gray-300']
|
11
11
|
|
12
12
|
connect() {
|
@@ -9,7 +9,7 @@ module Ariadne
|
|
9
9
|
|
10
10
|
DEFAULT_CLASSES = ""
|
11
11
|
|
12
|
-
DEFAULT_SELECTED_CLASSES = "ariadne-border-
|
12
|
+
DEFAULT_SELECTED_CLASSES = "ariadne-border-slate-500 ariadne-text-slate-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.
|
@@ -19,8 +19,8 @@ module Ariadne
|
|
19
19
|
BODY_TAG_DEFAULT = :ul
|
20
20
|
|
21
21
|
# keep this consistent with tab-container-component.ts
|
22
|
-
SELECTED_CLASSES = "ariadne-border-
|
23
|
-
UNSELECTED_CLASSES = "ariadne-text-
|
22
|
+
SELECTED_CLASSES = "ariadne-border-slate-600 ariadne-text-slate-700"
|
23
|
+
UNSELECTED_CLASSES = "ariadne-text-slate-500 hover:ariadne-text-slate-700 hover:ariadne-border-slate-700"
|
24
24
|
|
25
25
|
DEFAULT_CLASSES = ""
|
26
26
|
|
@@ -287,7 +287,7 @@ module Ariadne
|
|
287
287
|
}
|
288
288
|
|
289
289
|
DEFAULT_PAGE_CLASSES = "ariadne-relative ariadne-inline-flex ariadne-items-center ariadne-border ariadne-border-gray-300 ariadne-bg-white ariadne-px-4 ariadne-py-2 ariadne-text-sm ariadne-font-medium ariadne-text-gray-500 hover:ariadne-bg-gray-50 focus:ariadne-z-20"
|
290
|
-
DEFAULT_CURRENT_PAGE_CLASSES = "ariadne-relative ariadne-z-10 ariadne-inline-flex ariadne-items-center ariadne-border ariadne-border-
|
290
|
+
DEFAULT_CURRENT_PAGE_CLASSES = "ariadne-relative ariadne-z-10 ariadne-inline-flex ariadne-items-center ariadne-border ariadne-border-slate-500 ariadne-bg-slate-50 ariadne-px-4 ariadne-py-2 ariadne-text-sm ariadne-font-medium ariadne-text-slate-600 focus:ariadne-z-20"
|
291
291
|
DEFAULT_GAP_CLASSES = " ariadne-relative ariadne-inline-flex ariadne-items-center ariadne-border ariadne-border-gray-300 ariadne-bg-white ariadne-px-4 ariadne-py-2 ariadne-text-sm ariadne-font-medium ariadne-text-gray-700"
|
292
292
|
renders_many :items, lambda { |link:, classes: "", attributes: {}|
|
293
293
|
page, href = link
|
@@ -32,37 +32,37 @@ module Ariadne
|
|
32
32
|
super(object_name, content, options, &block)
|
33
33
|
end
|
34
34
|
|
35
|
-
DEFAULT_TEXT_CLASSES = "ariadne-shadow-sm focus:ariadne-ring-
|
35
|
+
DEFAULT_TEXT_CLASSES = "ariadne-shadow-sm focus:ariadne-ring-slate-500 focus:ariadne-border-slate-500 ariadne-block ariadne-w-full sm:ariadne-text-sm ariadne-border-gray-300 ariadne-rounded-md"
|
36
36
|
def text_field(method, options = {})
|
37
37
|
options[:class] = class_names(DEFAULT_TEXT_CLASSES, options.delete(:classes))
|
38
38
|
super(method, **options)
|
39
39
|
end
|
40
40
|
|
41
|
-
DEFAULT_CHECKBOX_CLASSES = "focus:ariadne-ring-
|
41
|
+
DEFAULT_CHECKBOX_CLASSES = "focus:ariadne-ring-slate-500 ariadne-h-4 ariadne-w-4 ariadne-text-slate-600 ariadne-border-slate-300 ariadne-rounded"
|
42
42
|
def check_box(object_name, method, options = {}, checked_value = "1", unchecked_value = "0")
|
43
43
|
options[:class] = class_names(DEFAULT_CHECKBOX_CLASSES, options.delete(:classes))
|
44
44
|
super(method, options, checked_value, unchecked_value)
|
45
45
|
end
|
46
46
|
|
47
|
-
DEFAULT_RADIO_CLASSES = "focus:ariadne-ring-
|
47
|
+
DEFAULT_RADIO_CLASSES = "focus:ariadne-ring-slate-500 ariadne-h-4 ariadne-w-4 ariadne-text-slate-600 ariadne-border-gray-300 ariadne-rounded"
|
48
48
|
def radio_button(method, tag_value, options = {})
|
49
49
|
options[:class] = class_names(DEFAULT_RADIO_CLASSES, options.delete(:classes))
|
50
50
|
super(method, tag_value, **options)
|
51
51
|
end
|
52
52
|
|
53
|
-
DEFAULT_TEXTAREA_CLASSES = "ariadne-shadow-sm focus:ariadne-ring-
|
53
|
+
DEFAULT_TEXTAREA_CLASSES = "ariadne-shadow-sm focus:ariadne-ring-slate-500 focus:ariadne-border-slate-500 ariadne-block ariadne-w-full sm:ariadne-text-sm ariadne-border ariadne-border-gray-300 ariadne-rounded-md"
|
54
54
|
def text_area(method, options = {})
|
55
55
|
options[:class] = class_names(DEFAULT_TEXTAREA_CLASSES, options.delete(:classes))
|
56
56
|
super(method, **options)
|
57
57
|
end
|
58
58
|
|
59
|
-
DEFAULT_EMAIL_CLASSES = "ariadne-shadow-sm focus:ariadne-ring-
|
59
|
+
DEFAULT_EMAIL_CLASSES = "ariadne-shadow-sm focus:ariadne-ring-slate-500 focus:ariadne-border-slate-500 ariadne-block ariadne-w-full sm:ariadne-text-sm ariadne-border-gray-300 ariadne-rounded-md"
|
60
60
|
def email_field(method, options = {})
|
61
61
|
options[:class] = class_names(DEFAULT_EMAIL_CLASSES, options.delete(:classes))
|
62
62
|
super(method, **options)
|
63
63
|
end
|
64
64
|
|
65
|
-
DEFAULT_PASSWORD_CLASSES = "ariadne-appearance-none ariadne-block ariadne-w-full ariadne-px-3 ariadne-py-2 ariadne-border ariadne-border-gray-300 ariadne-rounded-md ariadne-shadow-sm ariadne-placeholder-gray-400 focus:ariadne-outline-none focus:ariadne-ring-
|
65
|
+
DEFAULT_PASSWORD_CLASSES = "ariadne-appearance-none ariadne-block ariadne-w-full ariadne-px-3 ariadne-py-2 ariadne-border ariadne-border-gray-300 ariadne-rounded-md ariadne-shadow-sm ariadne-placeholder-gray-400 focus:ariadne-outline-none focus:ariadne-ring-slate-500 focus:ariadne-border-slate-500 sm:ariadne-text-sm"
|
66
66
|
def password_field(method, options = {})
|
67
67
|
options[:class] = class_names(DEFAULT_PASSWORD_CLASSES, options.delete(:classes))
|
68
68
|
super(method, **options)
|
data/static/classes.yml
CHANGED
@@ -45,20 +45,14 @@
|
|
45
45
|
- ".ariadne-mt-8"
|
46
46
|
- ".ariadne-justify-center"
|
47
47
|
- ".ariadne-scroll-smooth"
|
48
|
-
- ".ariadne-bg-white"
|
49
48
|
- ".ariadne-antialiased"
|
50
|
-
- ".ariadne-text-
|
51
|
-
- ".ariadne-bg-
|
52
|
-
- ".hover:ariadne-bg-
|
53
|
-
- ".ariadne-border-
|
54
|
-
- ".focus:ariadne-ring-offset-
|
55
|
-
- ".focus:ariadne-ring-
|
56
|
-
- ".ariadne-text-blue-800"
|
57
|
-
- ".ariadne-bg-blue-50"
|
58
|
-
- ".hover:ariadne-bg-blue-100"
|
59
|
-
- ".ariadne-border-blue-300"
|
49
|
+
- ".ariadne-text-slate-800"
|
50
|
+
- ".ariadne-bg-slate-50"
|
51
|
+
- ".hover:ariadne-bg-slate-100"
|
52
|
+
- ".ariadne-border-slate-300"
|
53
|
+
- ".focus:ariadne-ring-offset-slate-50"
|
54
|
+
- ".focus:ariadne-ring-slate-600"
|
60
55
|
- ".focus:ariadne-ring-offset-blue-50"
|
61
|
-
- ".focus:ariadne-ring-blue-600"
|
62
56
|
- ".ariadne-text-green-800"
|
63
57
|
- ".ariadne-bg-green-50"
|
64
58
|
- ".hover:ariadne-bg-green-100"
|
@@ -97,6 +91,7 @@
|
|
97
91
|
- ".ariadne-text-green-600"
|
98
92
|
- ".ariadne-border-gray-300"
|
99
93
|
- ".ariadne-shadow"
|
94
|
+
- ".ariadne-py-5"
|
100
95
|
- ".ariadne-px-5"
|
101
96
|
- ".ariadne-text-gray-500"
|
102
97
|
- ".hover:ariadne-text-gray-700"
|
@@ -105,8 +100,8 @@
|
|
105
100
|
- ".ariadne-py-4"
|
106
101
|
- ".ariadne-px-1"
|
107
102
|
- ".ariadne-border-b-2"
|
108
|
-
- ".ariadne-border-
|
109
|
-
- ".ariadne-text-
|
103
|
+
- ".ariadne-border-slate-500"
|
104
|
+
- ".ariadne-text-slate-600"
|
110
105
|
- ".ariadne-space-y-8"
|
111
106
|
- ".sm:ariadne-space-y-5"
|
112
107
|
- ".tiptap-editor"
|
@@ -122,8 +117,9 @@
|
|
122
117
|
- ".ariadne-ring-opacity-5"
|
123
118
|
- ".ariadne-text-gray-700"
|
124
119
|
- ".ariadne-text-red-500"
|
125
|
-
- ".ariadne-text-
|
120
|
+
- ".ariadne-text-slate-700"
|
126
121
|
- ".ariadne-p-4"
|
122
|
+
- ".ariadne-bg-purple-50"
|
127
123
|
- ".ariadne-flex-shrink-0"
|
128
124
|
- ".ariadne-ml-3"
|
129
125
|
- ".ariadne-text-yellow-700"
|
@@ -133,15 +129,15 @@
|
|
133
129
|
- ".ariadne--mx-1.5"
|
134
130
|
- ".ariadne--my-1.5"
|
135
131
|
- ".ariadne-p-1.5"
|
136
|
-
- ".ariadne-text-
|
132
|
+
- ".ariadne-text-slate-500"
|
133
|
+
- ".hover:ariadne-bg-purple-100"
|
134
|
+
- ".focus:ariadne-ring-purple-600"
|
137
135
|
- ".ariadne-sr-only"
|
138
136
|
- ".ariadne-mt-4"
|
139
137
|
- ".ariadne-pt-5"
|
140
138
|
- ".ariadne--mx-2"
|
141
139
|
- ".ariadne-flex-col"
|
142
|
-
- ".ariadne-py-5"
|
143
140
|
- ".ariadne-mt-6"
|
144
|
-
- ".ariadne-text-slate-500"
|
145
141
|
- ".sm:ariadne-mt-0"
|
146
142
|
- ".ariadne-grid"
|
147
143
|
- ".ariadne-gap-6"
|
@@ -164,6 +160,9 @@
|
|
164
160
|
- ".ariadne-text-black"
|
165
161
|
- ".ariadne-hidden"
|
166
162
|
- ".ariadne-list-none"
|
163
|
+
- ".ariadne-border-slate-600"
|
164
|
+
- ".hover:ariadne-text-slate-700"
|
165
|
+
- ".hover:ariadne-border-slate-700"
|
167
166
|
- ".ariadne-divide-gray-200"
|
168
167
|
- ".ariadne-pb-4"
|
169
168
|
- ".ariadne-text-lg"
|
data/static/constants.json
CHANGED
@@ -96,7 +96,7 @@
|
|
96
96
|
]
|
97
97
|
},
|
98
98
|
"Ariadne::BodyComponent": {
|
99
|
-
"DEFAULT_CLASSES": "ariadne-scroll-smooth ariadne-
|
99
|
+
"DEFAULT_CLASSES": "ariadne-scroll-smooth ariadne-antialiased"
|
100
100
|
},
|
101
101
|
"Ariadne::ButtonComponent": {
|
102
102
|
"DEFAULT_SCHEME": "default",
|
@@ -104,8 +104,8 @@
|
|
104
104
|
"SCHEME_CLASS_MAPPINGS": {
|
105
105
|
"link": "ariadne-cursor-pointer ariadne-font-semibold ariadne-underline ariadne-decoration-double",
|
106
106
|
"none": "",
|
107
|
-
"default": "ariadne-text-
|
108
|
-
"info": "ariadne-text-
|
107
|
+
"default": "ariadne-text-slate-800 ariadne-bg-slate-50 hover:ariadne-bg-slate-100 ariadne-border-slate-300 focus:ariadne-ring-offset-slate-50 focus:ariadne-ring-slate-600",
|
108
|
+
"info": "ariadne-text-slate-800 ariadne-bg-slate-50 hover:ariadne-bg-slate-100 ariadne-border-slate-300 focus:ariadne-ring-offset-blue-50 focus:ariadne-ring-slate-600",
|
109
109
|
"success": "ariadne-text-green-800 ariadne-bg-green-50 hover:ariadne-bg-green-100 ariadne-border-green-300 focus:ariadne-ring-offset-green-50 focus:ariadne-ring-green-600",
|
110
110
|
"warning": "ariadne-text-yellow-800 ariadne-bg-yellow-50 hover:ariadne-bg-yellow-100 ariadne-border-yellow-300 focus:ariadne-ring-offset-yellow-50 focus:ariadne-ring-yellow-600",
|
111
111
|
"danger": "ariadne-text-red-800 ariadne-bg-red-50 hover:ariadne-bg-red-100 ariadne-border-red-300 focus:ariadne-ring-offset-red-50 focus:ariadne-ring-red-600"
|
@@ -136,7 +136,7 @@
|
|
136
136
|
"DEFAULT_TAG": "clipboard-copy"
|
137
137
|
},
|
138
138
|
"Ariadne::CommentComponent": {
|
139
|
-
"DEFAULT_CLASSES": "ariadne-
|
139
|
+
"DEFAULT_CLASSES": "ariadne-border-gray-300 ariadne-border ariadne-shadow ariadne-py-5 ariadne-px-5 ariadne-rounded-md ",
|
140
140
|
"DEFAULT_TAG": "div",
|
141
141
|
"TAG_OPTIONS": [
|
142
142
|
"div"
|
@@ -151,7 +151,7 @@
|
|
151
151
|
"DEFAULT_CLASSES": "ariadne-inline-flex ariadne-items-center ariadne-p-1 ariadne-border ariadne-border-transparent ariadne-rounded-full ariadne-shadow-sm focus:ariadne-outline-none focus:ariadne-ring-2 focus:ariadne-ring-offset-2"
|
152
152
|
},
|
153
153
|
"Ariadne::DetailsComponent": {
|
154
|
-
"DEFAULT_BODY_CLASSES": "ariadne-absolute ariadne-mt-2 ariadne-w-56 ariadne-divide-y ariadne-divide-gray-100 ariadne-rounded-md ariadne-
|
154
|
+
"DEFAULT_BODY_CLASSES": "ariadne-absolute ariadne-mt-2 ariadne-w-56 ariadne-divide-y ariadne-divide-gray-100 ariadne-rounded-md ariadne-shadow-lg ariadne-ring-1 ariadne-ring-black ariadne-ring-opacity-5 focus:ariadne-outline-none",
|
155
155
|
"DEFAULT_BODY_TAG": "div",
|
156
156
|
"DEFAULT_CLASSES": "",
|
157
157
|
"DEFAULT_TAG": "details",
|
@@ -219,16 +219,16 @@
|
|
219
219
|
"danger": "ariadne-bg-red-50"
|
220
220
|
},
|
221
221
|
"CONTENT_SCHEME_CLASS_MAPPINGS": {
|
222
|
-
"default": "ariadne-text-
|
223
|
-
"info": "ariadne-text-
|
222
|
+
"default": "ariadne-text-slate-700",
|
223
|
+
"info": "ariadne-text-slate-700",
|
224
224
|
"success": "ariadne-text-green-700",
|
225
225
|
"warning": "ariadne-text-yellow-700",
|
226
226
|
"danger": "ariadne-text-red-700"
|
227
227
|
},
|
228
228
|
"DEFAULT_SCHEME": "default",
|
229
229
|
"DISMISSIBLE_SCHEME_CLASS_MAPPINGS": {
|
230
|
-
"default": "ariadne-text-
|
231
|
-
"info": "ariadne-text-
|
230
|
+
"default": "ariadne-text-slate-500 ariadne-bg-blue-50 hover:ariadne-bg-blue-100 focus:ariadne-ring-offset-blue-50 focus:ariadne-ring-blue-600",
|
231
|
+
"info": "ariadne-text-slate-500 ariadne-bg-blue-50 hover:ariadne-bg-blue-100 focus:ariadne-ring-offset-blue-50 focus:ariadne-ring-blue-600",
|
232
232
|
"success": "ariadne-text-green-500 ariadne-bg-green-50 hover:ariadne-bg-green-100 focus:ariadne-ring-offset-green-50 focus:ariadne-ring-green-600",
|
233
233
|
"warning": "ariadne-text-yellow-500 ariadne-bg-yellow-50 hover:ariadne-bg-yellow-100 focus:ariadne-ring-offset-yellow-50 focus:ariadne-ring-yellow-600",
|
234
234
|
"danger": "ariadne-text-red-500 ariadne-bg-red-50 hover:ariadne-bg-red-100 focus:ariadne-ring-offset-red-50 focus:ariadne-ring-red-600"
|
@@ -283,7 +283,7 @@
|
|
283
283
|
"DEFAULT_ITEM_CLASSES": "ariadne-flex ariadne-flex-col ariadne-text-center ariadne-rounded-lg ariadne-shadow text-black-700 ariadne-border-black"
|
284
284
|
},
|
285
285
|
"Ariadne::HeaderComponent": {
|
286
|
-
"DEFAULT_CLASSES": "ariadne-sticky ariadne-top-0 ariadne-z-50 ariadne-px-4 ariadne-pt-4 ariadne-h-16 ariadne-
|
286
|
+
"DEFAULT_CLASSES": "ariadne-sticky ariadne-top-0 ariadne-z-50 ariadne-px-4 ariadne-pt-4 ariadne-h-16 ariadne-shadow-sm shadow-slate-900/5 ariadne-transition ariadne-duration-500",
|
287
287
|
"DEFAULT_IMAGE_LOGO_CLASSES": "ariadne-h-10 ariadne-w-auto",
|
288
288
|
"DEFAULT_NAV_LINK_CLASSES": "ariadne-inline-block ariadne-rounded-lg ariadne-py-1 ariadne-px-2 ariadne-text-sm text-slate-700 hover:bg-slate-100 hover:text-slate-900",
|
289
289
|
"DEFAULT_PROFILE_LINK_CLASSES": "group ariadne-inline-flex ariadne-items-center ariadne-justify-center ariadne-rounded-full ariadne-py-2 ariadne-px-4 ariadne-text-sm ariadne-font-semibold focus:ariadne-outline-none focus-visible:ariadne-outline-2 focus-visible:outline-offset-2",
|
@@ -464,7 +464,7 @@
|
|
464
464
|
"DEFAULT_TAG": "div"
|
465
465
|
},
|
466
466
|
"Ariadne::SlideoverComponent": {
|
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-
|
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-slate-800 ariadne-bg-slate-50 hover:ariadne-bg-slate-100 ariadne-border-slate-300 focus:ariadne-ring-offset-slate-50 focus:ariadne-ring-slate-600",
|
468
468
|
"DEFAULT_CLASSES": "ariadne-flex ariadne-flex-col",
|
469
469
|
"DEFAULT_TAG": "div",
|
470
470
|
"DIRECTION_X_LEFT": "xl",
|
@@ -487,7 +487,7 @@
|
|
487
487
|
},
|
488
488
|
"Ariadne::TabContainerComponent": {
|
489
489
|
"DEFAULT_CLASSES": "",
|
490
|
-
"DEFAULT_SELECTED_CLASSES": "ariadne-border-
|
490
|
+
"DEFAULT_SELECTED_CLASSES": "ariadne-border-slate-500 ariadne-text-slate-600",
|
491
491
|
"DEFAULT_TAG": "tab-container",
|
492
492
|
"DEFAULT_UNSELECTED_CLASSES": "ariadne-text-gray-500 hover:ariadne-text-gray-700 hover:ariadne-border-gray-300"
|
493
493
|
},
|
@@ -495,12 +495,12 @@
|
|
495
495
|
"BODY_TAG_DEFAULT": "ul",
|
496
496
|
"DEFAULT_CLASSES": "",
|
497
497
|
"DEFAULT_TAG": "nav",
|
498
|
-
"SELECTED_CLASSES": "ariadne-border-
|
498
|
+
"SELECTED_CLASSES": "ariadne-border-slate-600 ariadne-text-slate-700",
|
499
499
|
"TAG_OPTIONS": [
|
500
500
|
"nav",
|
501
501
|
"div"
|
502
502
|
],
|
503
|
-
"UNSELECTED_CLASSES": "ariadne-text-
|
503
|
+
"UNSELECTED_CLASSES": "ariadne-text-slate-500 hover:ariadne-text-slate-700 hover:ariadne-border-slate-700"
|
504
504
|
},
|
505
505
|
"Ariadne::TableNavComponent": {
|
506
506
|
"BaseCellItem": "Ariadne::TableNavComponent::BaseCellItem",
|
@@ -549,7 +549,7 @@
|
|
549
549
|
"DEFAULT_RESULT_CLASSES": "ariadne-text-sm ariadne-text-gray-700"
|
550
550
|
},
|
551
551
|
"Ariadne::TableNavComponent::PaginationBarItem": {
|
552
|
-
"DEFAULT_CURRENT_PAGE_CLASSES": "ariadne-relative ariadne-z-10 ariadne-inline-flex ariadne-items-center ariadne-border ariadne-border-
|
552
|
+
"DEFAULT_CURRENT_PAGE_CLASSES": "ariadne-relative ariadne-z-10 ariadne-inline-flex ariadne-items-center ariadne-border ariadne-border-slate-500 ariadne-bg-slate-50 ariadne-px-4 ariadne-py-2 ariadne-text-sm ariadne-font-medium ariadne-text-slate-600 focus:ariadne-z-20",
|
553
553
|
"DEFAULT_GAP_CLASSES": " ariadne-relative ariadne-inline-flex ariadne-items-center ariadne-border ariadne-border-gray-300 ariadne-bg-white ariadne-px-4 ariadne-py-2 ariadne-text-sm ariadne-font-medium ariadne-text-gray-700",
|
554
554
|
"DEFAULT_NEXT_PAGE_CLASSES": "ariadne-relative ariadne-inline-flex ariadne-items-center ariadne-rounded-r-md ariadne-border ariadne-border-gray-300 ariadne-bg-white ariadne-px-2 ariadne-py-2 ariadne-text-sm ariadne-font-medium ariadne-text-gray-500 hover:ariadne-bg-gray-50 focus:ariadne-z-20",
|
555
555
|
"DEFAULT_PAGE_CLASSES": "ariadne-relative ariadne-inline-flex ariadne-items-center ariadne-border ariadne-border-gray-300 ariadne-bg-white ariadne-px-4 ariadne-py-2 ariadne-text-sm ariadne-font-medium ariadne-text-gray-500 hover:ariadne-bg-gray-50 focus:ariadne-z-20",
|
data/tailwind.config.js
CHANGED
@@ -52,9 +52,9 @@ module.exports = {
|
|
52
52
|
colors: {
|
53
53
|
'billy-purple': '#a700a0',
|
54
54
|
|
55
|
-
'button-text-color': colors.
|
56
|
-
'button-bg-color': colors.
|
57
|
-
'button-hover-color': colors.
|
55
|
+
'button-text-color': colors.slate['700'],
|
56
|
+
'button-bg-color': colors.slate['100'],
|
57
|
+
'button-hover-color': colors.slate['200'],
|
58
58
|
|
59
59
|
'list-hover-color': colors.blue['50'],
|
60
60
|
'filter-panel-color': colors.amber['100'],
|