playbook_ui_docs 13.10.0.pre.alpha.PLAY1046multilevelsingleselectphase21323 → 13.10.0.pre.alpha.play845addswiftkitspage1332
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/app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_single.html.erb +0 -3
- data/app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_single.jsx +0 -3
- data/dist/app/components/playbook/pb_docs/kit_example.html.erb +8 -2
- data/dist/app/components/playbook/pb_docs/kit_example.rb +4 -0
- data/dist/menu.yml +281 -110
- data/dist/pb_doc_helper.rb +11 -6
- data/dist/playbook-doc.js +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb6084427fae33f95e8a3eada27587c15ab6b2a920c3779e5cb6fb07b83216a6
|
4
|
+
data.tar.gz: 4aa569ffdc8bf73840d4cfa9cc15dff43365feac609ac23e765d34680bb83179
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c07736606f6bd9630357931a815bbcc0393edf93e3a157f4e284756584198924db6f3daa1b83c0e7d92062460fa01bd3a13a2649271526da1e068b694354f28c
|
7
|
+
data.tar.gz: c306480bbff89d494714696c40d219433bfa4283f3859c1830f96938c5930fafc1d4a4524a79526badbc62faa62994d003320ba722d8512b5c42121c43d2cb1a
|
@@ -9,7 +9,6 @@
|
|
9
9
|
value: "People",
|
10
10
|
id: "201",
|
11
11
|
expanded: true,
|
12
|
-
hidden: true,
|
13
12
|
children: [
|
14
13
|
{
|
15
14
|
label: "Talent Acquisition",
|
@@ -20,7 +19,6 @@
|
|
20
19
|
label: "Business Affairs",
|
21
20
|
value: "Business Affairs",
|
22
21
|
id: "203",
|
23
|
-
hidden: true,
|
24
22
|
children: [
|
25
23
|
{
|
26
24
|
label: "Initiatives",
|
@@ -45,7 +43,6 @@
|
|
45
43
|
label: "Contact Center",
|
46
44
|
value: "Contact Center",
|
47
45
|
id: "207",
|
48
|
-
hidden: true,
|
49
46
|
children: [
|
50
47
|
{
|
51
48
|
label: "Appointment Management",
|
@@ -13,7 +13,6 @@ const treeData = [
|
|
13
13
|
value: "People",
|
14
14
|
id: "people2",
|
15
15
|
expanded: true,
|
16
|
-
hidden: true,
|
17
16
|
children: [
|
18
17
|
{
|
19
18
|
label: "Talent Acquisition",
|
@@ -24,7 +23,6 @@ const treeData = [
|
|
24
23
|
label: "Business Affairs",
|
25
24
|
value: "Business Affairs",
|
26
25
|
id: "business2",
|
27
|
-
hidden: true,
|
28
26
|
children: [
|
29
27
|
{
|
30
28
|
label: "Initiatives",
|
@@ -49,7 +47,6 @@ const treeData = [
|
|
49
47
|
label: "Contact Center",
|
50
48
|
value: "Contact Center",
|
51
49
|
id: "contact2",
|
52
|
-
hidden: true,
|
53
50
|
children: [
|
54
51
|
{
|
55
52
|
label: "Appointment Management",
|
@@ -15,7 +15,7 @@
|
|
15
15
|
</div>
|
16
16
|
<% end %>
|
17
17
|
<% if show_code %>
|
18
|
-
<div class="markdown pb--kit-example-markdown markdown <%= dark ? "dark" : "" %>">
|
18
|
+
<div class="markdown pb--kit-example-markdown markdown <%= type == "swift" ? "kit_show_swift" : "" %> <%= dark ? "dark" : "" %>">
|
19
19
|
<%= render_markdown(description) %>
|
20
20
|
</div>
|
21
21
|
<div id="code-wrapper">
|
@@ -27,7 +27,7 @@
|
|
27
27
|
</li>
|
28
28
|
<li>
|
29
29
|
<%= pb_rails("button", props: { icon: "code", id:"toggle-open-opened", text: "Close Code", variant: "link", size: "sm", display: "none" }) %>
|
30
|
-
<%= pb_rails("button", props: { icon: "code", id:"toggle-open-closed", text: "Show Code", variant: "link", size: "sm" }) %>
|
30
|
+
<%= pb_rails("button", props: { icon: "code", id:"toggle-open-closed", text: "Show Code", variant: "link", size: "sm", classname: hide_code_button }) %>
|
31
31
|
</li>
|
32
32
|
</ul>
|
33
33
|
</div>
|
@@ -78,3 +78,9 @@
|
|
78
78
|
})
|
79
79
|
}
|
80
80
|
</script>
|
81
|
+
|
82
|
+
<style>
|
83
|
+
.swift-hide-code-button {
|
84
|
+
display: none;
|
85
|
+
}
|
86
|
+
</style>
|
data/dist/menu.yml
CHANGED
@@ -1,111 +1,282 @@
|
|
1
|
+
web: &web ["rails", "react"]
|
2
|
+
all: &all ["rails", "react", "swift"]
|
3
|
+
rails_only: &rails_only ["rails"]
|
4
|
+
react_only: &react_only ["react"]
|
5
|
+
|
1
6
|
kits:
|
2
|
-
- avatars
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
7
|
+
- name: "avatars"
|
8
|
+
components:
|
9
|
+
- name: "avatar"
|
10
|
+
platforms: *all
|
11
|
+
- name: "avatar_action_button"
|
12
|
+
platforms: *web
|
13
|
+
- name: "multiple_users"
|
14
|
+
platforms: *web
|
15
|
+
- name: "multiple_users_stacked"
|
16
|
+
platforms: *web
|
17
|
+
- name: "user"
|
18
|
+
platforms: *web
|
19
|
+
- name: "background"
|
20
|
+
components:
|
21
|
+
- name: "background"
|
22
|
+
platforms: *web
|
23
|
+
- name: "bread_crumbs"
|
24
|
+
components:
|
25
|
+
- name: "bread_crumbs"
|
26
|
+
platforms: *web
|
27
|
+
- name: "buttons"
|
28
|
+
components:
|
29
|
+
- name: "button"
|
30
|
+
platforms: *web
|
31
|
+
- name: "button_toolbar"
|
32
|
+
platforms: *web
|
33
|
+
- name: "circle_icon_button"
|
34
|
+
platforms: *web
|
35
|
+
- name: "card"
|
36
|
+
components:
|
37
|
+
- name: "card"
|
38
|
+
platforms: *all
|
39
|
+
- name: "collapsible"
|
40
|
+
components:
|
41
|
+
- name: "collapsible"
|
42
|
+
platforms: *web
|
43
|
+
- name: "charts_and_graphs"
|
44
|
+
components:
|
45
|
+
- name: "bar_graph"
|
46
|
+
platforms: *web
|
47
|
+
- name: "circle_chart"
|
48
|
+
platforms: *web
|
49
|
+
- name: "distribution_bar"
|
50
|
+
platforms: *web
|
51
|
+
- name: "gauge"
|
52
|
+
platforms: *web
|
53
|
+
- name: "legend"
|
54
|
+
platforms: *web
|
55
|
+
- name: "line_graph"
|
56
|
+
platforms: *web
|
57
|
+
- name: "treemap_chart"
|
58
|
+
platforms: *web
|
59
|
+
- name: "dialog"
|
60
|
+
components:
|
61
|
+
- name: "dialog"
|
62
|
+
platforms: *web
|
63
|
+
- name: "filter"
|
64
|
+
components:
|
65
|
+
- name: "filter"
|
66
|
+
platforms: *web
|
67
|
+
- name: "fixed_confirmation_toast"
|
68
|
+
components:
|
69
|
+
- name: "fixed_confirmation_toast"
|
70
|
+
platforms: *web
|
71
|
+
- name: "forms"
|
72
|
+
components:
|
73
|
+
- name: "checkbox"
|
74
|
+
platforms: *web
|
75
|
+
- name: "date_picker"
|
76
|
+
platforms: *web
|
77
|
+
- name: "file_upload"
|
78
|
+
platforms: *web
|
79
|
+
- name: "form"
|
80
|
+
platforms: *rails_only
|
81
|
+
- name: "form_group"
|
82
|
+
platforms: *web
|
83
|
+
- name: "form_pill"
|
84
|
+
platforms: *web
|
85
|
+
- name: "multi_level_select"
|
86
|
+
platforms: *web
|
87
|
+
- name: "passphrase"
|
88
|
+
platforms: *web
|
89
|
+
- name: "phone_number_input"
|
90
|
+
platforms: *web
|
91
|
+
- name: "radio"
|
92
|
+
platforms: *all
|
93
|
+
- name: "rich_text_editor"
|
94
|
+
platforms: *web
|
95
|
+
- name: "select"
|
96
|
+
platforms: *web
|
97
|
+
- name: "selectable_card"
|
98
|
+
platforms: *web
|
99
|
+
- name: "selectable_card_icon"
|
100
|
+
platforms: *web
|
101
|
+
- name: "selectable_icon"
|
102
|
+
platforms: *web
|
103
|
+
- name: "selectable_list"
|
104
|
+
platforms: *web
|
105
|
+
- name: "text_input"
|
106
|
+
platforms: *web
|
107
|
+
- name: "textarea"
|
108
|
+
platforms: *web
|
109
|
+
- name: "toggle"
|
110
|
+
platforms: *web
|
111
|
+
- name: "typeahead"
|
112
|
+
platforms: *web
|
113
|
+
- name: "highlight"
|
114
|
+
components:
|
115
|
+
- name: "highlight"
|
116
|
+
platforms: *web
|
117
|
+
- name: "icon"
|
118
|
+
components:
|
119
|
+
- name: "icon"
|
120
|
+
platforms: *web
|
121
|
+
- name: "icon_circle"
|
122
|
+
components:
|
123
|
+
- name: "icon_circle"
|
124
|
+
platforms: *web
|
125
|
+
- name: "icon_stat_value"
|
126
|
+
components:
|
127
|
+
- name: "icon_stat_value"
|
128
|
+
platforms: *web
|
129
|
+
- name: "icon_value"
|
130
|
+
components:
|
131
|
+
- name: "icon_value"
|
132
|
+
platforms: *web
|
133
|
+
- name: "image"
|
134
|
+
components:
|
135
|
+
- name: "image"
|
136
|
+
platforms: *web
|
137
|
+
- name: "layouts"
|
138
|
+
components:
|
139
|
+
- name: "flex"
|
140
|
+
platforms: *web
|
141
|
+
- name: "layout"
|
142
|
+
platforms: *web
|
143
|
+
- name: "lightbox"
|
144
|
+
components:
|
145
|
+
- name: "lightbox"
|
146
|
+
platforms: *react_only
|
147
|
+
- name: "list"
|
148
|
+
components:
|
149
|
+
- name: "list"
|
150
|
+
platforms: *web
|
151
|
+
- name: "loading_inline"
|
152
|
+
components:
|
153
|
+
- name: "loading_inline"
|
154
|
+
platforms: *web
|
155
|
+
- name: "map"
|
156
|
+
components:
|
157
|
+
- name: "map"
|
158
|
+
platforms: *react_only
|
159
|
+
- name: "nav"
|
160
|
+
components:
|
161
|
+
- name: "nav"
|
162
|
+
platforms: *web
|
163
|
+
- name: "pagination"
|
164
|
+
components:
|
165
|
+
- name: "pagination"
|
166
|
+
platforms: *rails_only
|
167
|
+
- name: "popover"
|
168
|
+
components:
|
169
|
+
- name: "popover"
|
170
|
+
platforms: *web
|
171
|
+
- name: "progress"
|
172
|
+
components:
|
173
|
+
- name: "progress_pills"
|
174
|
+
platforms: *web
|
175
|
+
- name: "progress_simple"
|
176
|
+
platforms: *web
|
177
|
+
- name: "progress_step"
|
178
|
+
platforms: *web
|
179
|
+
- name: "section_separator"
|
180
|
+
components:
|
181
|
+
- name: "section_separator"
|
182
|
+
platforms: *web
|
183
|
+
- name: "star_rating"
|
184
|
+
components:
|
185
|
+
- name: "star_rating"
|
186
|
+
platforms: *web
|
187
|
+
- name: "table"
|
188
|
+
components:
|
189
|
+
- name: "table"
|
190
|
+
platforms: *web
|
191
|
+
- name: "tags"
|
192
|
+
components:
|
193
|
+
- name: "tags"
|
194
|
+
platforms: *web
|
195
|
+
- name: "badge"
|
196
|
+
platforms: *web
|
197
|
+
- name: "hashtag"
|
198
|
+
platforms: *web
|
199
|
+
- name: "pill"
|
200
|
+
platforms: *all
|
201
|
+
- name: "timeline"
|
202
|
+
components:
|
203
|
+
- name: "timeline"
|
204
|
+
platforms: *web
|
205
|
+
- name: "time_and_date"
|
206
|
+
components:
|
207
|
+
- name: "date"
|
208
|
+
platforms: *web
|
209
|
+
- name: "date_range_inline"
|
210
|
+
platforms: *web
|
211
|
+
- name: "date_range_stacked"
|
212
|
+
platforms: *web
|
213
|
+
- name: "date_stacked"
|
214
|
+
platforms: *web
|
215
|
+
- name: "date_time"
|
216
|
+
platforms: *web
|
217
|
+
- name: "date_time_stacked"
|
218
|
+
platforms: *web
|
219
|
+
- name: "date_year_stacked"
|
220
|
+
platforms: *web
|
221
|
+
- name: "time"
|
222
|
+
platforms: *web
|
223
|
+
- name: "time_range_inline"
|
224
|
+
platforms: *web
|
225
|
+
- name: "time_stacked"
|
226
|
+
platforms: *web
|
227
|
+
- name: "timestamp"
|
228
|
+
platforms: *all
|
229
|
+
- name: "weekday_stacked"
|
230
|
+
platforms: *web
|
231
|
+
- name: "tooltip"
|
232
|
+
components:
|
233
|
+
- name: "tooltip"
|
234
|
+
platforms: *web
|
235
|
+
- name: "typography"
|
236
|
+
components:
|
237
|
+
- name: "body"
|
238
|
+
platforms: *web
|
239
|
+
- name: "caption"
|
240
|
+
platforms: *web
|
241
|
+
- name: "detail"
|
242
|
+
platforms: *web
|
243
|
+
- name: "title"
|
244
|
+
platforms: *web
|
245
|
+
- name: "typography_patterns"
|
246
|
+
components:
|
247
|
+
- name: "contact"
|
248
|
+
platforms: *web
|
249
|
+
- name: "currency"
|
250
|
+
platforms: *web
|
251
|
+
- name: "dashboard_value"
|
252
|
+
platforms: *web
|
253
|
+
- name: "home_address_street"
|
254
|
+
platforms: *web
|
255
|
+
- name: "label_pill"
|
256
|
+
platforms: *web
|
257
|
+
- name: "label_value"
|
258
|
+
platforms: *web
|
259
|
+
- name: "message"
|
260
|
+
platforms: *web
|
261
|
+
- name: "person"
|
262
|
+
platforms: *web
|
263
|
+
- name: "person_contact"
|
264
|
+
platforms: *web
|
265
|
+
- name: "source"
|
266
|
+
platforms: *web
|
267
|
+
- name: "stat_change"
|
268
|
+
platforms: *web
|
269
|
+
- name: "stat_value"
|
270
|
+
platforms: *web
|
271
|
+
- name: "title_count"
|
272
|
+
platforms: *web
|
273
|
+
- name: "title_detail"
|
274
|
+
platforms: *web
|
275
|
+
- name: "user_badge"
|
276
|
+
components:
|
277
|
+
- name: "user_badge"
|
278
|
+
platforms: *web
|
279
|
+
- name: "walkthrough"
|
280
|
+
components:
|
281
|
+
- name: "walkthrough"
|
282
|
+
platforms: *web
|
data/dist/pb_doc_helper.rb
CHANGED
@@ -14,7 +14,7 @@ module PlaybookWebsite
|
|
14
14
|
kit: kit,
|
15
15
|
example_title: example.values.first,
|
16
16
|
example_key: example.keys.first,
|
17
|
-
show_code: show_code,
|
17
|
+
show_code: type == "swift" ? true : show_code,
|
18
18
|
type: type,
|
19
19
|
dark: dark_mode,
|
20
20
|
}
|
@@ -33,9 +33,9 @@ module PlaybookWebsite
|
|
33
33
|
kits.each do |kit|
|
34
34
|
if kit.is_a?(Hash)
|
35
35
|
nav_hash_array(kit).each do |sub_kit|
|
36
|
-
display_kits << render_pb_doc_kit(sub_kit, type, limit_examples, false, dark_mode)
|
36
|
+
display_kits << render_pb_doc_kit(sub_kit, type, limit_examples, false, dark_mode) if pb_doc_has_kit_type?(sub_kit, type)
|
37
37
|
end
|
38
|
-
|
38
|
+
elsif pb_doc_has_kit_type?(kit, type)
|
39
39
|
display_kits << render_pb_doc_kit(kit, type, limit_examples, false, dark_mode)
|
40
40
|
end
|
41
41
|
end
|
@@ -44,9 +44,14 @@ module PlaybookWebsite
|
|
44
44
|
# rubocop:enable Style/StringConcatenation
|
45
45
|
|
46
46
|
# rubocop:disable Naming/AccessorMethodName
|
47
|
-
def get_kits
|
48
|
-
|
49
|
-
|
47
|
+
# def get_kits
|
48
|
+
# menu = YAML.load_file(Playbook::Engine.root.join("dist/menu.yml"))
|
49
|
+
# menu["kits"]
|
50
|
+
# end
|
51
|
+
def get_kits(_type = "rails")
|
52
|
+
aggregate_kits || []
|
53
|
+
# Filter kits that have at least one component compatible with the type
|
54
|
+
# Empty array
|
50
55
|
end
|
51
56
|
|
52
57
|
def get_kits_pb_website
|