playbook_ui 10.25.1 → 10.26.0.pre.alpha1

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.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/data/menu.yml +1 -0
  3. data/app/pb_kits/playbook/index.js +2 -1
  4. data/app/pb_kits/playbook/pb_button/docs/_button_default.html.erb +1 -0
  5. data/app/pb_kits/playbook/pb_caption/{_caption.jsx → _caption.tsx} +7 -8
  6. data/app/pb_kits/playbook/pb_dashboard/pbChartsDarkTheme.js +37 -0
  7. data/app/pb_kits/playbook/pb_dashboard/pbChartsLightTheme.js +37 -0
  8. data/app/pb_kits/playbook/pb_form_pill/_form_pill.jsx +1 -1
  9. data/app/pb_kits/playbook/pb_kit/dateTime.js +1 -2
  10. data/app/pb_kits/playbook/pb_pill/_pill.jsx +1 -1
  11. data/app/pb_kits/playbook/pb_title/{_title.jsx → _title.tsx} +10 -12
  12. data/app/pb_kits/playbook/pb_title/title.test.js +2 -2
  13. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.jsx +79 -0
  14. data/app/pb_kits/playbook/pb_treemap_chart/docs/_description.md +5 -0
  15. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.html.erb +37 -0
  16. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.jsx +48 -0
  17. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.md +2 -0
  18. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.html.erb +37 -0
  19. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.jsx +47 -0
  20. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.md +3 -0
  21. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.html.erb +79 -0
  22. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.jsx +90 -0
  23. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.md +1 -0
  24. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.html.erb +54 -0
  25. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.jsx +65 -0
  26. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.md +3 -0
  27. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.html.erb +37 -0
  28. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.jsx +48 -0
  29. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.md +3 -0
  30. data/app/pb_kits/playbook/pb_treemap_chart/docs/example.yml +15 -0
  31. data/app/pb_kits/playbook/pb_treemap_chart/docs/index.js +5 -0
  32. data/app/pb_kits/playbook/pb_treemap_chart/treemap_chart.html.erb +1 -0
  33. data/app/pb_kits/playbook/pb_treemap_chart/treemap_chart.rb +43 -0
  34. data/app/pb_kits/playbook/playbook-doc.js +2 -0
  35. data/app/pb_kits/playbook/playbook-rails-react-bindings.js +2 -0
  36. data/app/pb_kits/playbook/plugins/pb_chart.js +34 -0
  37. data/app/pb_kits/playbook/utilities/_flex_direction.scss +28 -15
  38. data/app/pb_kits/playbook/utilities/globalProps.ts +94 -110
  39. data/app/pb_kits/playbook/utilities/text.ts +22 -0
  40. data/dist/reset.css +60 -1
  41. data/lib/playbook/flex_direction.rb +7 -1
  42. data/lib/playbook/version.rb +1 -1
  43. metadata +29 -8
  44. data/app/pb_kits/playbook/utilities/text.js +0 -15
@@ -1,74 +1,54 @@
1
+ // Please keep these in alphabetical order
1
2
  import { omit } from 'lodash'
3
+ import { camelToSnakeCase } from './text'
2
4
 
3
- type Sizes = "xs" | "sm" | "md" | "lg" | "xl"
4
- type None = "none"
5
-
6
- type AllSizes = None & Sizes
7
-
8
- type Margin = {
9
- marginRight?: AllSizes,
10
- marginLeft?: AllSizes,
11
- marginTop?: AllSizes,
12
- marginBottom?: AllSizes,
13
- marginX?: AllSizes,
14
- marginY?: AllSizes,
15
- margin?: AllSizes,
16
- }
17
-
18
- type Padding = {
19
- paddingRight?: AllSizes,
20
- paddingLeft?: AllSizes,
21
- paddingTop?: AllSizes,
22
- paddingBottom?: AllSizes,
23
- paddingX?: AllSizes,
24
- paddingY?: AllSizes,
25
- padding?: AllSizes,
26
- }
5
+ type Alignment = "start" | "end" | "center"
27
6
 
28
- type Dark = {
29
- dark?: boolean,
7
+ type AlignContent = {
8
+ alignContent?: Alignment & Space
30
9
  }
31
10
 
32
- type NumberSpacing = {
33
- numberSpacing?: "tabular",
11
+ type AlignItems = {
12
+ alignItems?: Alignment & ("flexStart" | "flexEnd" | "stretch" | "baseline")
34
13
  }
35
14
 
36
- type MaxWidth = {
37
- maxWidth?: Sizes,
15
+ type AlignSelf = {
16
+ alignSelf?: Alignment & ("auto" | "stretch" | "baseline")
38
17
  }
18
+ type AllSizes = None & Sizes
39
19
 
40
- type ZIndex = {
41
- zIndex?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10,
20
+ type BorderRadius = {
21
+ borderRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "rounded",
42
22
  }
43
23
 
44
- type Shadow = {
45
- shadow?: "none" | "deep" | "deeper" | "deepest",
24
+ type Cursor = {
25
+ cursor?: "pointer",
46
26
  }
47
27
 
48
- type LineHeight = {
49
- lineHeight?: "loosest" | "looser" | "loose" | "normal" | "tight" | "tighter" | "tightest",
28
+ type Dark = {
29
+ dark?: boolean,
50
30
  }
51
31
 
52
32
  type Display = {
53
33
  display?: "block" | "flex" | "hidden" | "inline_block" | "inline" | "inline_flex",
54
34
  }
55
35
 
56
- type Cursor = {
57
- cursor?: "pointer",
58
- }
59
-
60
- type BorderRadius = {
61
- borderRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "rounded",
62
- }
63
-
64
36
  type Flex = {
65
37
  flex?: "none" | "initial" | "auto" | 1
66
38
  }
67
39
 
68
40
  type FlexDirection = {
69
- flexDirection?: "row" | "column" | "rowReverse" | "columnReverse"
41
+ flexDirection?: {
42
+ xs?: FlexDirectionOptions,
43
+ sm?: FlexDirectionOptions,
44
+ md?: FlexDirectionOptions,
45
+ lg?: FlexDirectionOptions,
46
+ xl?: FlexDirectionOptions,
47
+ }
70
48
  }
71
49
 
50
+ type FlexDirectionOptions = "row" | "column" | "row_reverse" | "column_reverse"
51
+
72
52
  type FlexGrow = {
73
53
  flexGrow?: 0 | 1
74
54
  }
@@ -78,13 +58,9 @@ type FlexShrink = {
78
58
  }
79
59
 
80
60
  type FlexWrap = {
81
- flexWrap?: "wrap" | "nowrap" | "wrapReverse"
61
+ flexWrap?: "wrap" | "nowrap" | "reverse",
82
62
  }
83
63
 
84
- type Alignment = "start" | "end" | "center"
85
-
86
- type Space = "spaceBetween" | "spaceAround" | "spaceEvenly"
87
-
88
64
  type JustifyContent = {
89
65
  justifyContent?: Alignment & Space
90
66
  }
@@ -93,22 +69,57 @@ type JustifySelf = {
93
69
  justifySelf?: Alignment & ("auto" | "stretch")
94
70
  }
95
71
 
96
- type AlignContent = {
97
- alignContent?: Alignment & Space
72
+ type LineHeight = {
73
+ lineHeight?: "loosest" | "looser" | "loose" | "normal" | "tight" | "tighter" | "tightest",
98
74
  }
99
75
 
100
- type AlignItems = {
101
- alignItems?: Alignment & ("flexStart" | "flexEnd" | "stretch" | "baseline")
76
+ type Margin = {
77
+ marginRight?: AllSizes,
78
+ marginLeft?: AllSizes,
79
+ marginTop?: AllSizes,
80
+ marginBottom?: AllSizes,
81
+ marginX?: AllSizes,
82
+ marginY?: AllSizes,
83
+ margin?: AllSizes,
102
84
  }
103
85
 
104
- type AlignSelf = {
105
- alignSelf?: Alignment & ("auto" | "stretch" | "baseline")
86
+ type MaxWidth = {
87
+ maxWidth?: Sizes,
88
+ }
89
+
90
+ type None = "none"
91
+
92
+ type NumberSpacing = {
93
+ numberSpacing?: "tabular",
106
94
  }
107
95
 
108
96
  type Order = {
109
97
  order?: "none" | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12
110
98
  }
111
99
 
100
+ type Padding = {
101
+ paddingRight?: AllSizes,
102
+ paddingLeft?: AllSizes,
103
+ paddingTop?: AllSizes,
104
+ paddingBottom?: AllSizes,
105
+ paddingX?: AllSizes,
106
+ paddingY?: AllSizes,
107
+ padding?: AllSizes,
108
+ }
109
+
110
+ type Shadow = {
111
+ shadow?: "none" | "deep" | "deeper" | "deepest",
112
+ }
113
+
114
+ type Sizes = "xs" | "sm" | "md" | "lg" | "xl"
115
+
116
+ type Space = "spaceBetween" | "spaceAround" | "spaceEvenly"
117
+
118
+ type ZIndex = {
119
+ zIndex?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10,
120
+ }
121
+
122
+ // keep this as the last type definition
112
123
  export type GlobalProps = AlignContent & AlignItems & AlignSelf &
113
124
  BorderRadius & Cursor & Dark & Display & Flex & FlexDirection &
114
125
  FlexGrow & FlexShrink & FlexWrap & JustifyContent & JustifySelf &
@@ -190,76 +201,49 @@ const PROP_CATEGORIES: {[key:string]: (props: {[key: string]: any}) => string} =
190
201
  css += cursor ? `cursor_${cursor} ` : ''
191
202
  return css
192
203
  },
193
- flexDirectionProps: ({ flexDirection }: FlexDirection) => {
194
- let css = ''
195
- css += flexDirection == 'columnReverse' ? 'flex_direction_column_reverse' :
196
- flexDirection == 'rowReverse' ? 'flex_direction_row_reverse' :
197
- flexDirection ? `flex_direction_${flexDirection} ` : ''
198
- return css
199
- },
200
- flexWrapProps: ({ flexWrap }: FlexWrap) => {
201
- let css = ''
202
- css += flexWrap == 'wrapReverse' ? 'flex_wrap_reverse' :
203
- flexWrap == 'nowrap' ? 'flex_nowrap' :
204
- flexWrap ? `flex_wrap_${flexWrap} ` : ''
205
- return css
206
- },
207
- justifyContentProps: ({ justifyContent }: JustifyContent) => {
208
- let css = ''
209
- css += justifyContent == 'spaceBetween' ? 'justify_content_space_between' :
210
- justifyContent == 'spaceEvenly' ? 'justify_content_space_evenly' :
211
- justifyContent == 'spaceAround' ? 'justify_content_space_around' :
212
- justifyContent ? `justify_content_${justifyContent}` : ''
213
- return css
214
- },
215
- justifySelfProps: ({ justifySelf }: JustifySelf) => {
216
- let css = ''
217
- css += justifySelf ? `justify_self_${justifySelf}` : ''
218
- return css
219
- },
220
204
  alignItemsProps: ({ alignItems }: AlignItems) => {
221
- let css = ''
222
- css += alignItems == 'flexStart' ? 'align_items_flex_start' :
223
- alignItems == 'flexEnd' ? 'align_items_flex_end' :
224
- alignItems ? `align_items_${alignItems}` : ''
225
- return css
205
+ return alignItems ? `align_items_${camelToSnakeCase(alignItems)}` : ''
226
206
  },
227
207
  alignContentProps: ({ alignContent }: AlignContent) => {
228
- let css = ''
229
- css += alignContent == 'spaceBetween' ? 'align_content_space_between' :
230
- alignContent == 'spaceEvenly' ? 'align_content_space_evenly' :
231
- alignContent == 'spaceAround' ? 'align_content_space_around' :
232
- alignContent ? `align_content_${alignContent}` : ''
233
- return css
208
+ return alignContent ? `align_content_${camelToSnakeCase(alignContent)}` : ''
234
209
  },
235
210
  alignSelfProps: ({ alignSelf }: AlignSelf) => {
236
- let css = ''
237
- css += alignSelf ? `align_self_${alignSelf}` : ''
238
- return css
211
+ return alignSelf ? `align_self_${alignSelf}` : ''
212
+ },
213
+ flexDirectionProps: ({ flexDirection }: FlexDirection) => {
214
+ if (typeof flexDirection !== 'object') return
215
+
216
+ const flexKeys: string[] = Object.keys(flexDirection)
217
+
218
+ return flexKeys.map((key: Sizes) => {
219
+ const flexDirectionValue: string = flexDirection[key]
220
+ return `flex_direction_${key}_${flexDirectionValue}`
221
+ }).join(" ")
222
+ },
223
+ flexWrapProps: ({ flexWrap }: FlexWrap) => {
224
+ return flexWrap ? `flex_wrap_${flexWrap} ` : ''
239
225
  },
240
226
  flexProps: ({ flex }: Flex) => {
241
- let css = ''
242
- css += flex ? `flex_${flex}` : ''
243
- return css
227
+ return flex ? `flex_${flex}` : ''
244
228
  },
245
229
  flexGrowProps: ({ flexGrow }: FlexGrow) => {
246
- let css = ''
247
- css += flexGrow ? `flex_grow_${flexGrow}` : ''
248
- return css
230
+ return typeof(flexGrow) !== undefined ? `flex_grow_${flexGrow}` : ''
249
231
  },
250
232
  flexShrinkProps: ({ flexShrink }: FlexShrink) => {
251
- let css = ''
252
- css += flexShrink ? `flex_shrink_${flexShrink}` : ''
253
- return css
233
+ return typeof(flexShrink) !== undefined ? `flex_shrink_${flexShrink}` : ''
234
+ },
235
+ justifyContentProps: ({ justifyContent }: JustifyContent) => {
236
+ return justifyContent ? `justify_content_${camelToSnakeCase(justifyContent)}` : ''
237
+ },
238
+ justifySelfProps: ({ justifySelf }: JustifySelf) => {
239
+ return justifySelf ? `justify_self_${justifySelf}` : ''
254
240
  },
255
241
  orderProps: ({ order }: Order) => {
256
- let css = ''
257
- css += order ? `order_${order}` : ''
258
- return css
242
+ return order ? `order_${order}` : ''
259
243
  }
260
244
  }
261
245
 
262
- export const globalProps = (props: GlobalProps, defaultProps: {[key: string]: string} | {} = {}): string => {
246
+ export const globalProps = (props: GlobalProps, defaultProps: {[key: string]: string} | Record<string, never> = {}): string => {
263
247
  const allProps = { ...props, ...defaultProps }
264
248
  return Object.keys(PROP_CATEGORIES).map((key) => {
265
249
  return PROP_CATEGORIES[key](allProps)
@@ -0,0 +1,22 @@
1
+ import { filter, isEmpty } from 'lodash'
2
+
3
+ const titleizedWord = (word: string): string => (
4
+ word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()
5
+ )
6
+
7
+ export const titleize = (sentence: string): string => (
8
+ isEmpty(sentence) ? sentence : sentence.split(' ').map(titleizedWord).join(' ')
9
+ )
10
+
11
+ const notEmpty = (value: string | Record<string, unknown>): boolean => !isEmpty(value)
12
+
13
+ export const joinPresent = (array: [], separator: string): string => (
14
+ filter(array, notEmpty).join(separator)
15
+ )
16
+
17
+ export const camelToSnakeCase = (word: string): string => {
18
+ return word.split(/([A-Z])/g).map((w, i) => {
19
+ const prefix = i > 0 ? '_' : ''
20
+ return w === w.toLowerCase() ? w : prefix + w.toLowerCase()
21
+ }).join("")
22
+ }
data/dist/reset.css CHANGED
@@ -1,2 +1,61 @@
1
- *{box-sizing:border-box;margin:0;padding:0}*:before,*:after{box-sizing:border-box}html{-webkit-tap-highlight-color:rgba(0,0,0,0);height:100vh;overflow-x:hidden}body{font-family:"Proxima Nova","Helvetica Neue",Helvetica,Arial,sans_serif;font-size:16px;line-height:1.5;background-color:#F3F7FB;height:100%;letter-spacing:0;font-weight:400;font-style:normal;text-rendering:optimizeLegibility;-moz-font-feature-settings:"liga" on;color:#242B42;margin:0 !important;padding:0 !important;box-sizing:border-box;min-height:100vh;padding:50px}a{text-decoration:none;color:#0056CF}
1
+ /* CLEAN UP AND REMOVE */
2
+ /* Headings */
3
+ /* Standard Font Weights */
4
+ /* Non_Standard Font Weights */
5
+ /*=====================================
6
+ Base colors should not be documented.
7
+ Only document color use.
8
+
9
+ Colors -----------------------------*/
10
+ /* Specialty Gradient -----------------*/
11
+ /* Interface colors -------------------*/
12
+ /* Main colors ------------------------*/
13
+ /*=====================================
14
+
15
+ Background colors ------------------*/
16
+ /* Card colors ------------------*/
17
+ /* Active colors ----------------------*/
18
+ /* Hover colors -----------------------*/
19
+ /* Focus colors -----------------------*/
20
+ /* Border colors ----------------------*/
21
+ /* Shadow colors ----------------------*/
22
+ /* Text colors ------------------------*/
23
+ /* Data colors ------------------------*/
24
+ /* Status colors ----------------------*/
25
+ /* Link colors ------------------------*/
26
+ /* Product colors ---------------------*/
27
+ /* Category colors ---------------------*/
28
+ * {
29
+ box-sizing: border-box;
30
+ margin: 0;
31
+ padding: 0; }
32
+ *:before, *:after {
33
+ box-sizing: border-box; }
34
+
35
+ html {
36
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
37
+ height: 100vh;
38
+ overflow-x: hidden; }
39
+
40
+ body {
41
+ font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans_serif;
42
+ font-size: 16px;
43
+ line-height: 1.5;
44
+ background-color: #F3F7FB;
45
+ height: 100%;
46
+ letter-spacing: 0;
47
+ font-weight: 400;
48
+ font-style: normal;
49
+ text-rendering: optimizeLegibility;
50
+ -moz-font-feature-settings: "liga" on;
51
+ color: #242B42;
52
+ margin: 0 !important;
53
+ padding: 0 !important;
54
+ box-sizing: border-box;
55
+ min-height: 100vh;
56
+ padding: 50px; }
57
+
58
+ a {
59
+ text-decoration: none;
60
+ color: #0056CF; }
2
61
 
@@ -12,7 +12,13 @@ module Playbook
12
12
 
13
13
  selected_props.map do |k|
14
14
  flex_direction_value = send(k)
15
- "flex_direction_#{flex_direction_value}" if flex_direction_values.include? flex_direction_value
15
+ if flex_direction_value.is_a?(Hash)
16
+ flex_direction_value.map do |media_size, flex_value|
17
+ "flex_direction_#{media_size}_#{flex_value}"
18
+ end
19
+ else
20
+ "flex_direction_#{flex_direction_value}" unless flex_direction_value.nil?
21
+ end
16
22
  end.compact.join(" ")
17
23
  end
18
24
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Playbook
4
4
  PREVIOUS_VERSION = "10.25.0"
5
- VERSION = "10.25.1"
5
+ VERSION = "10.26.0.pre.alpha1"
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: 10.25.1
4
+ version: 10.26.0.pre.alpha1
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: 2022-05-02 00:00:00.000000000 Z
12
+ date: 2022-04-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -452,8 +452,8 @@ files:
452
452
  - app/pb_kits/playbook/pb_button_toolbar/docs/_description.md
453
453
  - app/pb_kits/playbook/pb_button_toolbar/docs/example.yml
454
454
  - app/pb_kits/playbook/pb_button_toolbar/docs/index.js
455
- - app/pb_kits/playbook/pb_caption/_caption.jsx
456
455
  - app/pb_kits/playbook/pb_caption/_caption.scss
456
+ - app/pb_kits/playbook/pb_caption/_caption.tsx
457
457
  - app/pb_kits/playbook/pb_caption/_caption_mixin.scss
458
458
  - app/pb_kits/playbook/pb_caption/caption.html.erb
459
459
  - app/pb_kits/playbook/pb_caption/caption.rb
@@ -1884,8 +1884,8 @@ files:
1884
1884
  - app/pb_kits/playbook/pb_timestamp/docs/index.js
1885
1885
  - app/pb_kits/playbook/pb_timestamp/timestamp.html.erb
1886
1886
  - app/pb_kits/playbook/pb_timestamp/timestamp.rb
1887
- - app/pb_kits/playbook/pb_title/_title.jsx
1888
1887
  - app/pb_kits/playbook/pb_title/_title.scss
1888
+ - app/pb_kits/playbook/pb_title/_title.tsx
1889
1889
  - app/pb_kits/playbook/pb_title/_title_mixin.scss
1890
1890
  - app/pb_kits/playbook/pb_title/docs/_description.md
1891
1891
  - app/pb_kits/playbook/pb_title/docs/_title_colors.html.erb
@@ -1950,6 +1950,27 @@ files:
1950
1950
  - app/pb_kits/playbook/pb_tooltip/index.js
1951
1951
  - app/pb_kits/playbook/pb_tooltip/tooltip.html.erb
1952
1952
  - app/pb_kits/playbook/pb_tooltip/tooltip.rb
1953
+ - app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.jsx
1954
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_description.md
1955
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.html.erb
1956
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.jsx
1957
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.md
1958
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.html.erb
1959
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.jsx
1960
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.md
1961
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.html.erb
1962
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.jsx
1963
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.md
1964
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.html.erb
1965
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.jsx
1966
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.md
1967
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.html.erb
1968
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.jsx
1969
+ - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.md
1970
+ - app/pb_kits/playbook/pb_treemap_chart/docs/example.yml
1971
+ - app/pb_kits/playbook/pb_treemap_chart/docs/index.js
1972
+ - app/pb_kits/playbook/pb_treemap_chart/treemap_chart.html.erb
1973
+ - app/pb_kits/playbook/pb_treemap_chart/treemap_chart.rb
1953
1974
  - app/pb_kits/playbook/pb_typeahead/_typeahead.jsx
1954
1975
  - app/pb_kits/playbook/pb_typeahead/_typeahead.scss
1955
1976
  - app/pb_kits/playbook/pb_typeahead/components/ClearIndicator.jsx
@@ -2094,7 +2115,7 @@ files:
2094
2115
  - app/pb_kits/playbook/utilities/globalProps.ts
2095
2116
  - app/pb_kits/playbook/utilities/props.ts
2096
2117
  - app/pb_kits/playbook/utilities/test-utils.js
2097
- - app/pb_kits/playbook/utilities/text.js
2118
+ - app/pb_kits/playbook/utilities/text.ts
2098
2119
  - dist/reset.css
2099
2120
  - fonts/fontawesome-min.js
2100
2121
  - fonts/regular-min.js
@@ -2155,7 +2176,7 @@ files:
2155
2176
  - lib/playbook_ui.rb
2156
2177
  homepage: http://playbook.powerapp.cloud
2157
2178
  licenses:
2158
- - ISC
2179
+ - MIT
2159
2180
  metadata: {}
2160
2181
  post_install_message:
2161
2182
  rdoc_options: []
@@ -2168,9 +2189,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
2168
2189
  version: '0'
2169
2190
  required_rubygems_version: !ruby/object:Gem::Requirement
2170
2191
  requirements:
2171
- - - ">="
2192
+ - - ">"
2172
2193
  - !ruby/object:Gem::Version
2173
- version: '0'
2194
+ version: 1.3.1
2174
2195
  requirements: []
2175
2196
  rubygems_version: 3.1.6
2176
2197
  signing_key:
@@ -1,15 +0,0 @@
1
- import { filter, isEmpty } from 'lodash'
2
-
3
- const titleizedWord = (string) => (
4
- string.charAt(0).toUpperCase() + string.slice(1).toLowerCase()
5
- )
6
-
7
- export const titleize = (sentence) => (
8
- isEmpty(sentence) ? sentence : sentence.split(' ').map(titleizedWord).join(' ')
9
- )
10
-
11
- const notEmpty = (value) => !isEmpty(value)
12
-
13
- export const joinPresent = (array, separator) => (
14
- filter(array, notEmpty).join(separator)
15
- )