playbook_ui_docs 13.15.0.pre.alpha.play1141iconkitusinglibrary1956 → 13.15.0.pre.alpha.play10841940

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.15.0.pre.alpha.play1141iconkitusinglibrary1956
4
+ version: 13.15.0.pre.alpha.play10841940
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-01-22 00:00:00.000000000 Z
12
+ date: 2024-01-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -1288,8 +1288,6 @@ files:
1288
1288
  - app/pb_kits/playbook/pb_select/docs/_select_inline.jsx
1289
1289
  - app/pb_kits/playbook/pb_select/docs/_select_inline_compact.html.erb
1290
1290
  - app/pb_kits/playbook/pb_select/docs/_select_inline_compact.jsx
1291
- - app/pb_kits/playbook/pb_select/docs/_select_inline_show_arrow.html.erb
1292
- - app/pb_kits/playbook/pb_select/docs/_select_inline_show_arrow.jsx
1293
1291
  - app/pb_kits/playbook/pb_select/docs/_select_multiple.html.erb
1294
1292
  - app/pb_kits/playbook/pb_select/docs/_select_multiple.jsx
1295
1293
  - app/pb_kits/playbook/pb_select/docs/_select_multiple.md
@@ -1,24 +0,0 @@
1
- <%= pb_rails("select", props: {
2
- label: "Favorite Food",
3
- name: "food",
4
- inline: true,
5
- options: [
6
- {
7
- value: "1",
8
- value_text: "Burgers",
9
- },
10
- {
11
- value: "2",
12
- value_text: "Pizza",
13
- },
14
- {
15
- value: "3",
16
- value_text: "Tacos",
17
- },
18
- {
19
- value: "4",
20
- value_text: "BBQ",
21
- },
22
- ],
23
- show_arrow: true
24
- }) %>
@@ -1,38 +0,0 @@
1
- import React from 'react'
2
- import { Body, Select } from '../..'
3
-
4
- const SelectInlineShowArrow = (props) => {
5
- const options = [
6
- {
7
- value: '1',
8
- text: 'Burgers',
9
- },
10
- {
11
- value: '2',
12
- text: 'Pizza',
13
- },
14
- {
15
- value: '3',
16
- text: 'Tacos',
17
- },
18
- ]
19
-
20
- return (
21
- <div>
22
- <Select
23
- inline
24
- label="Favorite Food"
25
- name="food"
26
- options={options}
27
- showArrow
28
- {...props}
29
- />
30
- <Body
31
- status="negative"
32
- {...props}
33
- />
34
- </div>
35
- )
36
- }
37
-
38
- export default SelectInlineShowArrow