playbook_ui 14.11.1.pre.alpha.play1724darkmodeauditmap5437 → 14.11.1.pre.alpha.play17725372

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Playbook
4
4
  PREVIOUS_VERSION = "14.11.1"
5
- VERSION = "14.11.1.pre.alpha.play1724darkmodeauditmap5437"
5
+ VERSION = "14.11.1.pre.alpha.play17725372"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.11.1.pre.alpha.play1724darkmodeauditmap5437
4
+ version: 14.11.1.pre.alpha.play17725372
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: 2025-01-17 00:00:00.000000000 Z
12
+ date: 2025-01-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -95,20 +95,6 @@ dependencies:
95
95
  - - "~>"
96
96
  - !ruby/object:Gem::Version
97
97
  version: 0.3.2
98
- - !ruby/object:Gem::Dependency
99
- name: brakeman
100
- requirement: !ruby/object:Gem::Requirement
101
- requirements:
102
- - - '='
103
- - !ruby/object:Gem::Version
104
- version: 7.0.0
105
- type: :development
106
- prerelease: false
107
- version_requirements: !ruby/object:Gem::Requirement
108
- requirements:
109
- - - '='
110
- - !ruby/object:Gem::Version
111
- version: 7.0.0
112
98
  - !ruby/object:Gem::Dependency
113
99
  name: byebug
114
100
  requirement: !ruby/object:Gem::Requirement
@@ -1148,8 +1134,6 @@ files:
1148
1134
  - app/pb_kits/playbook/pb_draggable/docs/_draggable_with_list_rails.html.erb
1149
1135
  - app/pb_kits/playbook/pb_draggable/docs/_draggable_with_selectable_list.jsx
1150
1136
  - app/pb_kits/playbook/pb_draggable/docs/_draggable_with_selectable_list.md
1151
- - app/pb_kits/playbook/pb_draggable/docs/_draggable_with_selectable_list_rails.html.erb
1152
- - app/pb_kits/playbook/pb_draggable/docs/_draggable_with_selectable_list_rails.md
1153
1137
  - app/pb_kits/playbook/pb_draggable/docs/example.yml
1154
1138
  - app/pb_kits/playbook/pb_draggable/docs/index.js
1155
1139
  - app/pb_kits/playbook/pb_draggable/draggable.html.erb
@@ -2768,13 +2752,16 @@ files:
2768
2752
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_error_swift.md
2769
2753
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_inline.html.erb
2770
2754
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_inline.jsx
2755
+ - app/pb_kits/playbook/pb_text_input/docs/_text_input_mask.html.erb
2771
2756
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_mask.jsx
2757
+ - app/pb_kits/playbook/pb_text_input/docs/_text_input_mask_rails.md
2772
2758
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_no_label.html.erb
2773
2759
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_no_label.jsx
2774
2760
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_options.html.erb
2775
2761
  - app/pb_kits/playbook/pb_text_input/docs/_text_input_props_swift.md
2776
2762
  - app/pb_kits/playbook/pb_text_input/docs/example.yml
2777
2763
  - app/pb_kits/playbook/pb_text_input/docs/index.js
2764
+ - app/pb_kits/playbook/pb_text_input/index.js
2778
2765
  - app/pb_kits/playbook/pb_text_input/inputMask.ts
2779
2766
  - app/pb_kits/playbook/pb_text_input/text_input.html.erb
2780
2767
  - app/pb_kits/playbook/pb_text_input/text_input.rb
@@ -1,38 +0,0 @@
1
- <%= pb_rails("selectable_list",
2
- props: {
3
- enable_drag: true,
4
- variant: "radio",
5
- items: [
6
- { drag_id: "41",
7
- text: "Task 1",
8
- input_options: {
9
- value: "1",
10
- name: "radio-name",
11
- }
12
- },
13
- { drag_id: "42",
14
- text: "Task 2",
15
- checked: true,
16
- input_options: {
17
- value: "2",
18
- name: "radio-name",
19
- }
20
- },
21
- { drag_id: "43",
22
- text: "Task 3",
23
- input_options: {
24
- value: "3",
25
- name: "radio-name",
26
- }
27
- },
28
- { drag_id: "44",
29
- text: "Task 4",
30
- input_options: {
31
- value: "4",
32
- name: "radio-name",
33
- }
34
- }
35
- ]
36
- }
37
- )
38
- %>
@@ -1,3 +0,0 @@
1
- For a simplified version of the Draggable API for the SelectableList kit, you can do the following:
2
-
3
- The SelectableList kit is optimized to work with the draggable kit. To enable drag, use the `enable_drag` prop on SelectableList kit AND `drag_id` prop within the SelectableList kit prop. An additional optional boolean prop (set to true by default) of `drag_handle` is also available on SelectableList kit to show the drag handle icon.