playbook_ui 4.9.0 → 4.10.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.
- checksums.yaml +4 -4
- data/app/controllers/playbook/pages_controller.rb +8 -0
- data/app/helpers/playbook/pb_doc_helper.rb +8 -2
- data/app/pb_kits/playbook/_playbook.scss +1 -0
- data/app/pb_kits/playbook/data/menu.yml +2 -0
- data/app/pb_kits/playbook/index.js +1 -0
- data/app/pb_kits/playbook/packs/examples.js +2 -0
- data/app/pb_kits/playbook/pb_file_upload/_file_upload.jsx +60 -0
- data/app/pb_kits/playbook/pb_file_upload/_file_upload.scss +6 -0
- data/app/pb_kits/playbook/pb_file_upload/docs/_file_upload_default.jsx +34 -0
- data/app/pb_kits/playbook/pb_file_upload/docs/example.yml +7 -0
- data/app/pb_kits/playbook/pb_file_upload/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_file_upload/file_upload.rb +11 -0
- data/app/pb_kits/playbook/pb_filter/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_filter/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_label_pill/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_label_pill/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_label_value/_label_value.jsx +31 -14
- data/app/pb_kits/playbook/pb_label_value/_label_value.scss +8 -0
- data/app/pb_kits/playbook/pb_label_value/docs/_label_value_dark.html.erb +24 -0
- data/app/pb_kits/playbook/pb_label_value/docs/_label_value_dark.jsx +35 -0
- data/app/pb_kits/playbook/pb_label_value/docs/_label_value_default.jsx +24 -1
- data/app/pb_kits/playbook/pb_label_value/docs/example.yml +2 -1
- data/app/pb_kits/playbook/pb_label_value/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_label_value/label_value.rb +8 -1
- data/app/pb_kits/playbook/pb_online_status/docs/example.yml +1 -3
- data/app/pb_kits/playbook/pb_online_status/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_source/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_source/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_star_rating/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_star_rating/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_time/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_time/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_timestamp/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_timestamp/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_title_detail/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_title_detail/docs/index.js +0 -1
- data/lib/playbook/version.rb +1 -1
- metadata +12 -12
- data/app/pb_kits/playbook/pb_filter/docs/_filter_default.jsx +0 -9
- data/app/pb_kits/playbook/pb_label_pill/docs/_label_pill_default.jsx +0 -9
- data/app/pb_kits/playbook/pb_online_status/docs/_online_status_default.jsx +0 -9
- data/app/pb_kits/playbook/pb_source/docs/_source_default.jsx +0 -9
- data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_default.jsx +0 -9
- data/app/pb_kits/playbook/pb_time/docs/_time_default.jsx +0 -9
- data/app/pb_kits/playbook/pb_timestamp/docs/_timestamp_default.jsx +0 -9
- data/app/pb_kits/playbook/pb_title_detail/docs/_title_detail_default.jsx +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 822aa776d4b572ec04010a1c54d060c0b9975ee565bfec3f3bf82886b5b7fa5a
|
|
4
|
+
data.tar.gz: e176ab84d286666601b1f7d9270ecc8d7ead898b99973a2f34b9bd09326d8f75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 477364c0051123cf780f7f2c30dd5264cf70159c6237767127c46d4b976115f0402de8e263947d39e3df6838f932be6e85b401900ffb106b832e8c830764203d
|
|
7
|
+
data.tar.gz: 95cbb74e8d2f121719565638155a4e4a1691409448c91185691ef9ecdfcf6b924e726055be807fe17393342f77e8c72d14282e0672ebeb01fe9b9af92fe3f67e
|
|
@@ -6,6 +6,7 @@ require "yaml"
|
|
|
6
6
|
module Playbook
|
|
7
7
|
class PagesController < ApplicationController
|
|
8
8
|
before_action :set_kit, only: %i[kit_show_rails kit_show_react]
|
|
9
|
+
before_action :ensure_rails_kit_exists, only: %i[kit_show_rails]
|
|
9
10
|
before_action :set_category, only: %i[kit_category_show_rails kit_category_show_react]
|
|
10
11
|
|
|
11
12
|
def home; end
|
|
@@ -64,5 +65,12 @@ module Playbook
|
|
|
64
65
|
redirect_to root_path, flash: { error: "That kit does not exist" }
|
|
65
66
|
end
|
|
66
67
|
end
|
|
68
|
+
|
|
69
|
+
def ensure_rails_kit_exists
|
|
70
|
+
# TODO: unsure why we cannot simply use the helpers that are included in ApplicationController - fix this
|
|
71
|
+
erbfiles = File.join("**", "*.erb")
|
|
72
|
+
kit_files = Dir.glob(erbfiles, base: "#{Playbook::Engine.root}/app/pb_kits/playbook/pb_#{@kit}/docs").present?
|
|
73
|
+
redirect_to action: "kit_show_react" unless kit_files.present?
|
|
74
|
+
end
|
|
67
75
|
end
|
|
68
76
|
end
|
|
@@ -9,9 +9,11 @@ module Playbook
|
|
|
9
9
|
def has_kit_type?(kit, type)
|
|
10
10
|
type ||= "rails"
|
|
11
11
|
if type == "rails"
|
|
12
|
-
|
|
12
|
+
erbfiles = File.join("**", "*.erb")
|
|
13
|
+
Dir.glob(erbfiles, base: "#{kit_path(kit)}/docs").present?
|
|
13
14
|
elsif type == "react"
|
|
14
|
-
|
|
15
|
+
jsxfiles = File.join("**", "*.jsx")
|
|
16
|
+
Dir.glob(jsxfiles, base: "#{kit_path(kit)}/docs").present?
|
|
15
17
|
end
|
|
16
18
|
end
|
|
17
19
|
|
|
@@ -23,6 +25,10 @@ module Playbook
|
|
|
23
25
|
end
|
|
24
26
|
end
|
|
25
27
|
|
|
28
|
+
def kit_path(kit)
|
|
29
|
+
"#{Playbook::Engine.root}/app/pb_kits/playbook/pb_#{kit}"
|
|
30
|
+
end
|
|
31
|
+
|
|
26
32
|
def get_kit_description(kit)
|
|
27
33
|
filename = "#{Playbook::Engine.root}/app/pb_kits/playbook/pb_#{@kit}/docs/_description.md"
|
|
28
34
|
read_file(filename)
|
|
@@ -17,6 +17,7 @@ export DateRangeStacked from './pb_date_range_stacked/_date_range_stacked.jsx'
|
|
|
17
17
|
export DateStacked from './pb_date_stacked/_date_stacked.jsx'
|
|
18
18
|
export DateYearStacked from './pb_date_year_stacked/_date_year_stacked.jsx'
|
|
19
19
|
export DistributionBar from './pb_distribution_bar/_distribution_bar.jsx'
|
|
20
|
+
export FileUpload from './pb_file_upload/_file_upload.jsx'
|
|
20
21
|
export Filter from './pb_filter/_filter.jsx'
|
|
21
22
|
export FixedConfirmationToast from './pb_fixed_confirmation_toast/_fixed_confirmation_toast.jsx'
|
|
22
23
|
export Flex from './pb_flex/_flex.jsx'
|
|
@@ -31,6 +31,7 @@ import * as DateRangeStacked from 'pb_date_range_stacked/docs'
|
|
|
31
31
|
import * as DateStacked from 'pb_date_stacked/docs'
|
|
32
32
|
import * as DateYearStacked from 'pb_date_year_stacked/docs'
|
|
33
33
|
import * as DistributionBar from 'pb_distribution_bar/docs'
|
|
34
|
+
import * as FileUpload from 'pb_file_upload/docs'
|
|
34
35
|
import * as Filter from 'pb_filter/docs'
|
|
35
36
|
import * as FixedConfirmationToast from 'pb_fixed_confirmation_toast/docs'
|
|
36
37
|
import * as Flex from 'pb_flex/docs'
|
|
@@ -99,6 +100,7 @@ WebpackerReact.setup({
|
|
|
99
100
|
...DateStacked,
|
|
100
101
|
...DateYearStacked,
|
|
101
102
|
...DistributionBar,
|
|
103
|
+
...FileUpload,
|
|
102
104
|
...Filter,
|
|
103
105
|
...FixedConfirmationToast,
|
|
104
106
|
...Flex,
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* @flow */
|
|
2
|
+
|
|
3
|
+
import React, { useCallback } from 'react'
|
|
4
|
+
import { useDropzone } from 'react-dropzone'
|
|
5
|
+
|
|
6
|
+
import {
|
|
7
|
+
buildCss,
|
|
8
|
+
noop,
|
|
9
|
+
} from '../utilities/props'
|
|
10
|
+
|
|
11
|
+
import type { Callback } from '../types.js'
|
|
12
|
+
|
|
13
|
+
import {
|
|
14
|
+
Body,
|
|
15
|
+
Card,
|
|
16
|
+
} from '..'
|
|
17
|
+
|
|
18
|
+
type FileUploadProps = {
|
|
19
|
+
acceptedFiles?: FileList,
|
|
20
|
+
className?: String,
|
|
21
|
+
onFilesAccepted: Callback,
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
const FileUpload = ({
|
|
25
|
+
acceptedFiles = [],
|
|
26
|
+
className,
|
|
27
|
+
onFilesAccepted = noop,
|
|
28
|
+
}: FileUploadProps) => {
|
|
29
|
+
const onDrop = useCallback((files) => {
|
|
30
|
+
onFilesAccepted(files)
|
|
31
|
+
})
|
|
32
|
+
|
|
33
|
+
const {
|
|
34
|
+
getRootProps,
|
|
35
|
+
getInputProps,
|
|
36
|
+
isDragActive,
|
|
37
|
+
} = useDropzone({ onDrop })
|
|
38
|
+
|
|
39
|
+
return (
|
|
40
|
+
<div
|
|
41
|
+
className={buildCss('pb_file_upload_kit', className)}
|
|
42
|
+
{...getRootProps()}
|
|
43
|
+
>
|
|
44
|
+
<Card>
|
|
45
|
+
<input {...getInputProps()} />
|
|
46
|
+
<Body
|
|
47
|
+
color="light"
|
|
48
|
+
>
|
|
49
|
+
<If condition={isDragActive}>
|
|
50
|
+
<p>{'Drop the files here ...'}</p>
|
|
51
|
+
<Else />
|
|
52
|
+
<p>{'Drag & drop some files here, or click to select files'}</p>
|
|
53
|
+
</If>
|
|
54
|
+
</Body>
|
|
55
|
+
</Card>
|
|
56
|
+
</div>
|
|
57
|
+
)
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export default FileUpload
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { useState } from 'react'
|
|
2
|
+
import {
|
|
3
|
+
FileUpload,
|
|
4
|
+
List,
|
|
5
|
+
ListItem,
|
|
6
|
+
} from '../..'
|
|
7
|
+
|
|
8
|
+
const AcceptedFilesList = ({files}: FileList) => (
|
|
9
|
+
<List>
|
|
10
|
+
{files.map(file => (
|
|
11
|
+
<ListItem key={file.name}>{file.name}</ListItem>
|
|
12
|
+
))}
|
|
13
|
+
</List>
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
const FileUploadDefault = () => {
|
|
17
|
+
const [filesToUpload, setFilesToUpload] = useState([])
|
|
18
|
+
|
|
19
|
+
const handleOnFilesAccepted = files => {
|
|
20
|
+
setFilesToUpload([...filesToUpload, ...files])
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
return (
|
|
24
|
+
<div>
|
|
25
|
+
<AcceptedFilesList files={filesToUpload} />
|
|
26
|
+
<FileUpload
|
|
27
|
+
acceptedFiles={filesToUpload}
|
|
28
|
+
onFilesAccepted={handleOnFilesAccepted}
|
|
29
|
+
/>
|
|
30
|
+
</div>
|
|
31
|
+
)
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export default FileUploadDefault
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as FileUploadDefault } from './_file_upload_default.jsx'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as FilterDefault } from './_filter_default.jsx'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as LabelPillDefault } from './_label_pill_default.jsx'
|
|
@@ -1,21 +1,38 @@
|
|
|
1
|
+
/* @flow */
|
|
2
|
+
|
|
1
3
|
import React from 'react'
|
|
2
|
-
import
|
|
4
|
+
import classnames from 'classnames'
|
|
5
|
+
import { Body, Caption } from '../'
|
|
3
6
|
|
|
4
|
-
|
|
5
|
-
className
|
|
6
|
-
|
|
7
|
+
type LabelValueProps = {
|
|
8
|
+
className?: String,
|
|
9
|
+
label: String,
|
|
10
|
+
value: String,
|
|
11
|
+
dark?: Boolean
|
|
7
12
|
}
|
|
8
13
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
const LabelValue = ({
|
|
15
|
+
className,
|
|
16
|
+
label,
|
|
17
|
+
value,
|
|
18
|
+
dark = false,
|
|
19
|
+
}: LabelValueProps) => {
|
|
20
|
+
const themeStyle = dark === true ? '_dark' : ''
|
|
21
|
+
const css = classnames([
|
|
22
|
+
'pb_label_value_kit' + themeStyle,
|
|
23
|
+
className,
|
|
24
|
+
])
|
|
18
25
|
|
|
19
|
-
|
|
26
|
+
return (
|
|
27
|
+
<div className={css}>
|
|
28
|
+
<Caption
|
|
29
|
+
text={label}
|
|
30
|
+
/>
|
|
31
|
+
<Body
|
|
32
|
+
text={value}
|
|
33
|
+
/>
|
|
34
|
+
</div>
|
|
35
|
+
)
|
|
36
|
+
}
|
|
20
37
|
|
|
21
38
|
export default LabelValue
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<%= pb_rails("label_value", props: {
|
|
2
|
+
label: "Role",
|
|
3
|
+
value: "Administrator, Moderator",
|
|
4
|
+
dark: true
|
|
5
|
+
}) %>
|
|
6
|
+
|
|
7
|
+
<br>
|
|
8
|
+
|
|
9
|
+
<%= pb_rails("label_value", props: {
|
|
10
|
+
label: "Email",
|
|
11
|
+
value: "anna.black@powerhrg.com",
|
|
12
|
+
dark: true
|
|
13
|
+
}) %>
|
|
14
|
+
|
|
15
|
+
<br>
|
|
16
|
+
|
|
17
|
+
<%= pb_rails("label_value", props: {
|
|
18
|
+
label: "Bio",
|
|
19
|
+
value: "Proin pulvinar feugiat massa in luctus. Donec urna nulla,
|
|
20
|
+
elementum sit amet tincidunt nec, mattis nec urna. Cras viverra
|
|
21
|
+
lorem odio, id pretium dui interdum ut. Nullam dignissim nisl vitae
|
|
22
|
+
orci vehicula condimentum.",
|
|
23
|
+
dark: true
|
|
24
|
+
}) %>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import { LabelValue } from '../../'
|
|
3
|
+
|
|
4
|
+
const LabelValueDark = () => {
|
|
5
|
+
return (
|
|
6
|
+
<div>
|
|
7
|
+
<LabelValue
|
|
8
|
+
dark
|
|
9
|
+
label="Role"
|
|
10
|
+
value="Administrator, Moderator"
|
|
11
|
+
/>
|
|
12
|
+
|
|
13
|
+
<br />
|
|
14
|
+
|
|
15
|
+
<LabelValue
|
|
16
|
+
dark
|
|
17
|
+
label="Email"
|
|
18
|
+
value="anna.black@powerhrg.com"
|
|
19
|
+
/>
|
|
20
|
+
|
|
21
|
+
<br />
|
|
22
|
+
|
|
23
|
+
<LabelValue
|
|
24
|
+
dark
|
|
25
|
+
label="Bio"
|
|
26
|
+
value="Proin pulvinar feugiat massa in luctus. Donec urna nulla,
|
|
27
|
+
elementum sit amet tincidunt nec, mattis nec urna. Cras viverra
|
|
28
|
+
lorem odio, id pretium dui interdum ut. Nullam dignissim nisl vitae
|
|
29
|
+
orci vehicula condimentum"
|
|
30
|
+
/>
|
|
31
|
+
</div>
|
|
32
|
+
)
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export default LabelValueDark
|
|
@@ -1,8 +1,31 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
|
+
import { LabelValue } from '../../'
|
|
2
3
|
|
|
3
4
|
const LabelValueDefault = () => {
|
|
4
5
|
return (
|
|
5
|
-
<
|
|
6
|
+
<div>
|
|
7
|
+
<LabelValue
|
|
8
|
+
label="Role"
|
|
9
|
+
value="Administrator, Moderator"
|
|
10
|
+
/>
|
|
11
|
+
|
|
12
|
+
<br />
|
|
13
|
+
|
|
14
|
+
<LabelValue
|
|
15
|
+
label="Email"
|
|
16
|
+
value="anna.black@powerhrg.com"
|
|
17
|
+
/>
|
|
18
|
+
|
|
19
|
+
<br />
|
|
20
|
+
|
|
21
|
+
<LabelValue
|
|
22
|
+
label="Bio"
|
|
23
|
+
value="Proin pulvinar feugiat massa in luctus. Donec urna nulla,
|
|
24
|
+
elementum sit amet tincidunt nec, mattis nec urna. Cras viverra
|
|
25
|
+
lorem odio, id pretium dui interdum ut. Nullam dignissim nisl vitae
|
|
26
|
+
orci vehicula condimentum"
|
|
27
|
+
/>
|
|
28
|
+
</div>
|
|
6
29
|
)
|
|
7
30
|
}
|
|
8
31
|
|
|
@@ -9,9 +9,16 @@ module Playbook
|
|
|
9
9
|
|
|
10
10
|
prop :label, required: true
|
|
11
11
|
prop :value, required: true
|
|
12
|
+
prop :dark, type: Playbook::Props::Boolean, default: false
|
|
12
13
|
|
|
13
14
|
def classname
|
|
14
|
-
generate_classname("pb_label_value_kit")
|
|
15
|
+
generate_classname("pb_label_value_kit", dark_class)
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
private
|
|
19
|
+
|
|
20
|
+
def dark_class
|
|
21
|
+
dark ? "dark" : nil
|
|
15
22
|
end
|
|
16
23
|
end
|
|
17
24
|
end
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as OnlineStatusDefault } from './_online_status_default.jsx'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as SourceDefault } from './_source_default.jsx'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as StarRatingDefault } from './_star_rating_default.jsx'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as TimeDefault } from './_time_default.jsx'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as TimestampDefault } from './_timestamp_default.jsx'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as TitleDetailDefault } from './_title_detail_default.jsx'
|
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: 4.
|
|
4
|
+
version: 4.10.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: 2020-
|
|
12
|
+
date: 2020-04-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: actionpack
|
|
@@ -757,11 +757,16 @@ files:
|
|
|
757
757
|
- app/pb_kits/playbook/pb_distribution_bar/docs/index.js
|
|
758
758
|
- app/pb_kits/playbook/pb_enhanced_element/element_observer.js
|
|
759
759
|
- app/pb_kits/playbook/pb_enhanced_element/index.js
|
|
760
|
+
- app/pb_kits/playbook/pb_file_upload/_file_upload.jsx
|
|
761
|
+
- app/pb_kits/playbook/pb_file_upload/_file_upload.scss
|
|
762
|
+
- app/pb_kits/playbook/pb_file_upload/docs/_file_upload_default.jsx
|
|
763
|
+
- app/pb_kits/playbook/pb_file_upload/docs/example.yml
|
|
764
|
+
- app/pb_kits/playbook/pb_file_upload/docs/index.js
|
|
765
|
+
- app/pb_kits/playbook/pb_file_upload/file_upload.rb
|
|
760
766
|
- app/pb_kits/playbook/pb_filter/_filter.html.erb
|
|
761
767
|
- app/pb_kits/playbook/pb_filter/_filter.jsx
|
|
762
768
|
- app/pb_kits/playbook/pb_filter/_filter.scss
|
|
763
769
|
- app/pb_kits/playbook/pb_filter/docs/_filter_default.html.erb
|
|
764
|
-
- app/pb_kits/playbook/pb_filter/docs/_filter_default.jsx
|
|
765
770
|
- app/pb_kits/playbook/pb_filter/docs/_filter_no_background.html.erb
|
|
766
771
|
- app/pb_kits/playbook/pb_filter/docs/_filter_single.html.erb
|
|
767
772
|
- app/pb_kits/playbook/pb_filter/docs/example.yml
|
|
@@ -952,7 +957,6 @@ files:
|
|
|
952
957
|
- app/pb_kits/playbook/pb_label_pill/docs/_description.md
|
|
953
958
|
- app/pb_kits/playbook/pb_label_pill/docs/_footer.md
|
|
954
959
|
- app/pb_kits/playbook/pb_label_pill/docs/_label_pill_default.html.erb
|
|
955
|
-
- app/pb_kits/playbook/pb_label_pill/docs/_label_pill_default.jsx
|
|
956
960
|
- app/pb_kits/playbook/pb_label_pill/docs/_label_pill_default.md
|
|
957
961
|
- app/pb_kits/playbook/pb_label_pill/docs/example.yml
|
|
958
962
|
- app/pb_kits/playbook/pb_label_pill/docs/index.js
|
|
@@ -962,6 +966,8 @@ files:
|
|
|
962
966
|
- app/pb_kits/playbook/pb_label_value/_label_value.scss
|
|
963
967
|
- app/pb_kits/playbook/pb_label_value/docs/_description.md
|
|
964
968
|
- app/pb_kits/playbook/pb_label_value/docs/_footer.md
|
|
969
|
+
- app/pb_kits/playbook/pb_label_value/docs/_label_value_dark.html.erb
|
|
970
|
+
- app/pb_kits/playbook/pb_label_value/docs/_label_value_dark.jsx
|
|
965
971
|
- app/pb_kits/playbook/pb_label_value/docs/_label_value_default.html.erb
|
|
966
972
|
- app/pb_kits/playbook/pb_label_value/docs/_label_value_default.jsx
|
|
967
973
|
- app/pb_kits/playbook/pb_label_value/docs/_label_value_default.md
|
|
@@ -1116,7 +1122,6 @@ files:
|
|
|
1116
1122
|
- app/pb_kits/playbook/pb_online_status/_online_status_mixins.scss
|
|
1117
1123
|
- app/pb_kits/playbook/pb_online_status/docs/_description.md
|
|
1118
1124
|
- app/pb_kits/playbook/pb_online_status/docs/_online_status_default.html.erb
|
|
1119
|
-
- app/pb_kits/playbook/pb_online_status/docs/_online_status_default.jsx
|
|
1120
1125
|
- app/pb_kits/playbook/pb_online_status/docs/example.yml
|
|
1121
1126
|
- app/pb_kits/playbook/pb_online_status/docs/index.js
|
|
1122
1127
|
- app/pb_kits/playbook/pb_online_status/online_status.rb
|
|
@@ -1294,7 +1299,6 @@ files:
|
|
|
1294
1299
|
- app/pb_kits/playbook/pb_source/_source.scss
|
|
1295
1300
|
- app/pb_kits/playbook/pb_source/docs/_description.md
|
|
1296
1301
|
- app/pb_kits/playbook/pb_source/docs/_source_default.html.erb
|
|
1297
|
-
- app/pb_kits/playbook/pb_source/docs/_source_default.jsx
|
|
1298
1302
|
- app/pb_kits/playbook/pb_source/docs/_source_noicon.html.erb
|
|
1299
1303
|
- app/pb_kits/playbook/pb_source/docs/_source_types.html.erb
|
|
1300
1304
|
- app/pb_kits/playbook/pb_source/docs/example.yml
|
|
@@ -1305,7 +1309,6 @@ files:
|
|
|
1305
1309
|
- app/pb_kits/playbook/pb_star_rating/_star_rating.scss
|
|
1306
1310
|
- app/pb_kits/playbook/pb_star_rating/docs/_description.md
|
|
1307
1311
|
- app/pb_kits/playbook/pb_star_rating/docs/_star_rating_default.html.erb
|
|
1308
|
-
- app/pb_kits/playbook/pb_star_rating/docs/_star_rating_default.jsx
|
|
1309
1312
|
- app/pb_kits/playbook/pb_star_rating/docs/_star_rating_hide.html.erb
|
|
1310
1313
|
- app/pb_kits/playbook/pb_star_rating/docs/example.yml
|
|
1311
1314
|
- app/pb_kits/playbook/pb_star_rating/docs/index.js
|
|
@@ -1425,7 +1428,6 @@ files:
|
|
|
1425
1428
|
- app/pb_kits/playbook/pb_time/docs/_description.md
|
|
1426
1429
|
- app/pb_kits/playbook/pb_time/docs/_footer.md
|
|
1427
1430
|
- app/pb_kits/playbook/pb_time/docs/_time_default.html.erb
|
|
1428
|
-
- app/pb_kits/playbook/pb_time/docs/_time_default.jsx
|
|
1429
1431
|
- app/pb_kits/playbook/pb_time/docs/_time_default.md
|
|
1430
1432
|
- app/pb_kits/playbook/pb_time/docs/_time_timestamp.html.erb
|
|
1431
1433
|
- app/pb_kits/playbook/pb_time/docs/example.yml
|
|
@@ -1439,7 +1441,6 @@ files:
|
|
|
1439
1441
|
- app/pb_kits/playbook/pb_timestamp/docs/_footer.md
|
|
1440
1442
|
- app/pb_kits/playbook/pb_timestamp/docs/_time_stamp_default.md
|
|
1441
1443
|
- app/pb_kits/playbook/pb_timestamp/docs/_timestamp_default.html.erb
|
|
1442
|
-
- app/pb_kits/playbook/pb_timestamp/docs/_timestamp_default.jsx
|
|
1443
1444
|
- app/pb_kits/playbook/pb_timestamp/docs/example.yml
|
|
1444
1445
|
- app/pb_kits/playbook/pb_timestamp/docs/index.js
|
|
1445
1446
|
- app/pb_kits/playbook/pb_timestamp/timestamp.rb
|
|
@@ -1473,7 +1474,6 @@ files:
|
|
|
1473
1474
|
- app/pb_kits/playbook/pb_title_detail/docs/_description.md
|
|
1474
1475
|
- app/pb_kits/playbook/pb_title_detail/docs/_footer.md
|
|
1475
1476
|
- app/pb_kits/playbook/pb_title_detail/docs/_title_detail_default.html.erb
|
|
1476
|
-
- app/pb_kits/playbook/pb_title_detail/docs/_title_detail_default.jsx
|
|
1477
1477
|
- app/pb_kits/playbook/pb_title_detail/docs/_title_detail_default.md
|
|
1478
1478
|
- app/pb_kits/playbook/pb_title_detail/docs/example.yml
|
|
1479
1479
|
- app/pb_kits/playbook/pb_title_detail/docs/index.js
|
|
@@ -1640,9 +1640,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1640
1640
|
version: '0'
|
|
1641
1641
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1642
1642
|
requirements:
|
|
1643
|
-
- - "
|
|
1643
|
+
- - ">"
|
|
1644
1644
|
- !ruby/object:Gem::Version
|
|
1645
|
-
version:
|
|
1645
|
+
version: 1.3.1
|
|
1646
1646
|
requirements: []
|
|
1647
1647
|
rubyforge_project:
|
|
1648
1648
|
rubygems_version: 2.7.3
|