playbook_ui 14.8.0.pre.alpha.play1648heightglobalprops4559 → 14.8.0.pre.alpha.revert3916revert3893PBNTR667railstypeaheadformintegration4565
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/_playbook.scss +0 -1
- data/app/pb_kits/playbook/pb_form/docs/_form_form_with.html.erb +2 -2
- data/app/pb_kits/playbook/pb_form/docs/_form_form_with_loading.html.erb +1 -1
- data/app/pb_kits/playbook/pb_form/docs/_form_form_with_validate.html.erb +63 -12
- data/app/pb_kits/playbook/pb_selectable_card/docs/_selectable_card_default.html.erb +1 -2
- data/app/pb_kits/playbook/pb_typeahead/index.ts +291 -2
- data/app/pb_kits/playbook/pb_typeahead/typeahead.html.erb +5 -2
- data/app/pb_kits/playbook/pb_typeahead/typeahead.rb +4 -0
- data/app/pb_kits/playbook/utilities/globalPropNames.mjs +1 -0
- data/app/pb_kits/playbook/utilities/globalProps.ts +0 -15
- data/dist/chunks/{_typeahead-ZkBp8QRa.js → _typeahead-IoHUnHeF.js} +2 -2
- data/dist/chunks/{_weekday_stacked-BmqMRu1B.js → _weekday_stacked-BuaqHM9z.js} +1 -1
- data/dist/chunks/{lib-BC6ESsxG.js → lib-SyD3buPZ.js} +1 -1
- data/dist/chunks/{pb_form_validation-B_Z9rEbg.js → pb_form_validation-Dt8UJgrJ.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/classnames.rb +0 -3
- data/lib/playbook/forms/builder/typeahead_field.rb +13 -0
- data/lib/playbook/kit_base.rb +0 -6
- data/lib/playbook/version.rb +1 -1
- metadata +5 -11
- data/app/pb_kits/playbook/tokens/_height.scss +0 -19
- data/app/pb_kits/playbook/tokens/exports/_height.module.scss +0 -37
- data/app/pb_kits/playbook/utilities/_height.scss +0 -29
- data/lib/playbook/height.rb +0 -29
- data/lib/playbook/max_height.rb +0 -29
- data/lib/playbook/min_height.rb +0 -29
data/lib/playbook/classnames.rb
CHANGED
@@ -5,6 +5,19 @@ module Playbook
|
|
5
5
|
class Builder
|
6
6
|
def typeahead(name, _options = {}, _html_options = {}, props: {})
|
7
7
|
props[:name] = name
|
8
|
+
|
9
|
+
input_id = "#{name}_input"
|
10
|
+
props[:input_options] ||= {}
|
11
|
+
props[:input_options][:id] ||= input_id
|
12
|
+
|
13
|
+
props[:label] = @template.label(@object_name, name, for: props[:input_options][:id]) if props[:label] == true
|
14
|
+
|
15
|
+
if props[:validation]
|
16
|
+
validation_message = props[:validation][:message]
|
17
|
+
props[:input_options][:data] ||= {}
|
18
|
+
props[:input_options][:data][:validation_message] = validation_message
|
19
|
+
end
|
20
|
+
|
8
21
|
@template.pb_rails("typeahead", props: props)
|
9
22
|
end
|
10
23
|
end
|
data/lib/playbook/kit_base.rb
CHANGED
@@ -30,9 +30,6 @@ require "playbook/top"
|
|
30
30
|
require "playbook/right"
|
31
31
|
require "playbook/bottom"
|
32
32
|
require "playbook/vertical_align"
|
33
|
-
require "playbook/height"
|
34
|
-
require "playbook/min_height"
|
35
|
-
require "playbook/max_height"
|
36
33
|
|
37
34
|
module Playbook
|
38
35
|
include ActionView::Helpers
|
@@ -70,9 +67,6 @@ module Playbook
|
|
70
67
|
include Playbook::Right
|
71
68
|
include Playbook::Bottom
|
72
69
|
include Playbook::VerticalAlign
|
73
|
-
include Playbook::Height
|
74
|
-
include Playbook::MinHeight
|
75
|
-
include Playbook::MaxHeight
|
76
70
|
|
77
71
|
prop :id
|
78
72
|
prop :data, type: Playbook::Props::HashProp, default: {}
|
data/lib/playbook/version.rb
CHANGED
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.8.0.pre.alpha.
|
4
|
+
version: 14.8.0.pre.alpha.revert3916revert3893PBNTR667railstypeaheadformintegration4565
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Power UX
|
@@ -3087,7 +3087,6 @@ files:
|
|
3087
3087
|
- app/pb_kits/playbook/tokens/_colors.scss
|
3088
3088
|
- app/pb_kits/playbook/tokens/_container.scss
|
3089
3089
|
- app/pb_kits/playbook/tokens/_display.scss
|
3090
|
-
- app/pb_kits/playbook/tokens/_height.scss
|
3091
3090
|
- app/pb_kits/playbook/tokens/_line_height.scss
|
3092
3091
|
- app/pb_kits/playbook/tokens/_opacity.scss
|
3093
3092
|
- app/pb_kits/playbook/tokens/_overflow.scss
|
@@ -3103,7 +3102,6 @@ files:
|
|
3103
3102
|
- app/pb_kits/playbook/tokens/_vertical_align.scss
|
3104
3103
|
- app/pb_kits/playbook/tokens/exports/_border_radius.module.scss
|
3105
3104
|
- app/pb_kits/playbook/tokens/exports/_colors.module.scss
|
3106
|
-
- app/pb_kits/playbook/tokens/exports/_height.module.scss
|
3107
3105
|
- app/pb_kits/playbook/tokens/exports/_line_height.module.scss
|
3108
3106
|
- app/pb_kits/playbook/tokens/exports/_opacity.module.scss
|
3109
3107
|
- app/pb_kits/playbook/tokens/exports/_positioning.module.scss
|
@@ -3121,7 +3119,6 @@ files:
|
|
3121
3119
|
- app/pb_kits/playbook/utilities/_display.scss
|
3122
3120
|
- app/pb_kits/playbook/utilities/_flexbox.scss
|
3123
3121
|
- app/pb_kits/playbook/utilities/_focus.scss
|
3124
|
-
- app/pb_kits/playbook/utilities/_height.scss
|
3125
3122
|
- app/pb_kits/playbook/utilities/_hover.scss
|
3126
3123
|
- app/pb_kits/playbook/utilities/_line_height.scss
|
3127
3124
|
- app/pb_kits/playbook/utilities/_max_width.scss
|
@@ -3173,11 +3170,11 @@ files:
|
|
3173
3170
|
- app/pb_kits/playbook/utilities/test/globalProps/truncate.test.js
|
3174
3171
|
- app/pb_kits/playbook/utilities/text.ts
|
3175
3172
|
- app/pb_kits/playbook/utilities/validEmojiChecker.ts
|
3176
|
-
- dist/chunks/_typeahead-
|
3177
|
-
- dist/chunks/_weekday_stacked-
|
3173
|
+
- dist/chunks/_typeahead-IoHUnHeF.js
|
3174
|
+
- dist/chunks/_weekday_stacked-BuaqHM9z.js
|
3178
3175
|
- dist/chunks/lazysizes-B7xYodB-.js
|
3179
|
-
- dist/chunks/lib-
|
3180
|
-
- dist/chunks/pb_form_validation-
|
3176
|
+
- dist/chunks/lib-SyD3buPZ.js
|
3177
|
+
- dist/chunks/pb_form_validation-Dt8UJgrJ.js
|
3181
3178
|
- dist/chunks/vendor.js
|
3182
3179
|
- dist/menu.yml
|
3183
3180
|
- dist/playbook-doc.js
|
@@ -3214,7 +3211,6 @@ files:
|
|
3214
3211
|
- lib/playbook/forms/builder/select_field.rb
|
3215
3212
|
- lib/playbook/forms/builder/star_rating_field.rb
|
3216
3213
|
- lib/playbook/forms/builder/typeahead_field.rb
|
3217
|
-
- lib/playbook/height.rb
|
3218
3214
|
- lib/playbook/hover.rb
|
3219
3215
|
- lib/playbook/justify_content.rb
|
3220
3216
|
- lib/playbook/justify_self.rb
|
@@ -3222,8 +3218,6 @@ files:
|
|
3222
3218
|
- lib/playbook/kit_resolver.rb
|
3223
3219
|
- lib/playbook/left.rb
|
3224
3220
|
- lib/playbook/line_height.rb
|
3225
|
-
- lib/playbook/max_height.rb
|
3226
|
-
- lib/playbook/min_height.rb
|
3227
3221
|
- lib/playbook/number_spacing.rb
|
3228
3222
|
- lib/playbook/order.rb
|
3229
3223
|
- lib/playbook/overflow.rb
|
@@ -1,19 +0,0 @@
|
|
1
|
-
|
2
|
-
$height_auto: auto !default;
|
3
|
-
$height_xs: 320px !default;
|
4
|
-
$height_sm: 480px !default;
|
5
|
-
$height_md: 768px !default;
|
6
|
-
$height_lg: 1024px !default;
|
7
|
-
$height_xl: 1280px !default;
|
8
|
-
$height_2xl: 1440px !default;
|
9
|
-
$height_3xl: 1920px !default;
|
10
|
-
$heights: (
|
11
|
-
height_auto: $height_auto,
|
12
|
-
height_xs: $height_xs,
|
13
|
-
height_sm: $height_sm,
|
14
|
-
height_md: $height_md,
|
15
|
-
height_lg: $height_lg,
|
16
|
-
height_xl: $height_xl,
|
17
|
-
height_xxl: $height_2xl,
|
18
|
-
height_xxxl: $height_3xl
|
19
|
-
);
|
@@ -1,37 +0,0 @@
|
|
1
|
-
@import "../height";
|
2
|
-
|
3
|
-
:export {
|
4
|
-
@mixin export_height($height_list) {
|
5
|
-
@each $name, $value in $height_list {
|
6
|
-
.#{$name} {
|
7
|
-
height: $value;
|
8
|
-
}
|
9
|
-
}
|
10
|
-
}
|
11
|
-
|
12
|
-
@include export_height($heights);
|
13
|
-
}
|
14
|
-
|
15
|
-
:export {
|
16
|
-
@mixin export_max_height($height_list) {
|
17
|
-
@each $name, $value in $height_list {
|
18
|
-
.max_#{$name} {
|
19
|
-
max-height: $value;
|
20
|
-
}
|
21
|
-
}
|
22
|
-
}
|
23
|
-
|
24
|
-
@include export_max_height($heights);
|
25
|
-
}
|
26
|
-
|
27
|
-
:export {
|
28
|
-
@mixin export_min_height($height_list) {
|
29
|
-
@each $name, $value in $height_list {
|
30
|
-
.min_#{$name} {
|
31
|
-
min-height: $value;
|
32
|
-
}
|
33
|
-
}
|
34
|
-
}
|
35
|
-
|
36
|
-
@include export_min_height($heights);
|
37
|
-
}
|
@@ -1,29 +0,0 @@
|
|
1
|
-
@import "../tokens/exports/height.module";
|
2
|
-
|
3
|
-
@mixin export_height($height_list) {
|
4
|
-
@each $name, $value in $height_list {
|
5
|
-
.#{$name} {
|
6
|
-
height: $value;
|
7
|
-
}
|
8
|
-
}
|
9
|
-
}
|
10
|
-
|
11
|
-
@mixin export_max_height($height_list) {
|
12
|
-
@each $name, $value in $height_list {
|
13
|
-
.max_#{$name} {
|
14
|
-
max-height: $value;
|
15
|
-
}
|
16
|
-
}
|
17
|
-
}
|
18
|
-
|
19
|
-
@mixin export_min_height($height_list) {
|
20
|
-
@each $name, $value in $height_list {
|
21
|
-
.min_#{$name} {
|
22
|
-
min-height: $value;
|
23
|
-
}
|
24
|
-
}
|
25
|
-
}
|
26
|
-
|
27
|
-
@include export_height($heights);
|
28
|
-
@include export_max_height($heights);
|
29
|
-
@include export_min_height($heights);
|
data/lib/playbook/height.rb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Playbook
|
4
|
-
module Height
|
5
|
-
def self.included(base)
|
6
|
-
base.prop :height
|
7
|
-
end
|
8
|
-
|
9
|
-
def height_props
|
10
|
-
selected_props = height_options.keys.select { |sk| try(sk) }
|
11
|
-
return nil unless selected_props.present?
|
12
|
-
|
13
|
-
selected_props.map do |k|
|
14
|
-
height_value = send(k)
|
15
|
-
"height_#{height_value}" if height_values.include? height_value.to_s
|
16
|
-
end.compact.join(" ")
|
17
|
-
end
|
18
|
-
|
19
|
-
def height_options
|
20
|
-
{
|
21
|
-
height: "height",
|
22
|
-
}
|
23
|
-
end
|
24
|
-
|
25
|
-
def height_values
|
26
|
-
%w[auto xs sm md lg xl xxl xxxl]
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
data/lib/playbook/max_height.rb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Playbook
|
4
|
-
module MaxHeight
|
5
|
-
def self.included(base)
|
6
|
-
base.prop :max_height
|
7
|
-
end
|
8
|
-
|
9
|
-
def max_height_props
|
10
|
-
selected_props = max_height_options.keys.select { |sk| try(sk) }
|
11
|
-
return nil unless selected_props.present?
|
12
|
-
|
13
|
-
selected_props.map do |k|
|
14
|
-
max_height_value = send(k)
|
15
|
-
"max_height_#{max_height_value}" if max_height_values.include? max_height_value.to_s
|
16
|
-
end.compact.join(" ")
|
17
|
-
end
|
18
|
-
|
19
|
-
def max_height_options
|
20
|
-
{
|
21
|
-
max_height: "max_height",
|
22
|
-
}
|
23
|
-
end
|
24
|
-
|
25
|
-
def max_height_values
|
26
|
-
%w[auto xs sm md lg xl xxl xxxl]
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
data/lib/playbook/min_height.rb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Playbook
|
4
|
-
module MinHeight
|
5
|
-
def self.included(base)
|
6
|
-
base.prop :min_height
|
7
|
-
end
|
8
|
-
|
9
|
-
def min_height_props
|
10
|
-
selected_props = min_height_options.keys.select { |sk| try(sk) }
|
11
|
-
return nil unless selected_props.present?
|
12
|
-
|
13
|
-
selected_props.map do |k|
|
14
|
-
min_height_value = send(k)
|
15
|
-
"min_height_#{min_height_value}" if min_height_values.include? min_height_value.to_s
|
16
|
-
end.compact.join(" ")
|
17
|
-
end
|
18
|
-
|
19
|
-
def min_height_options
|
20
|
-
{
|
21
|
-
min_height: "min_height",
|
22
|
-
}
|
23
|
-
end
|
24
|
-
|
25
|
-
def min_height_values
|
26
|
-
%w[auto xs sm md lg xl xxl xxxl]
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|