playbook_ui 9.4.0.alpha.sisense → 9.4.0.alpha.user.kit.bug

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25233c2ba44758372c3923f79446c511bcbf4d9b4e7f4f498a92a5fbc4def5d8
4
- data.tar.gz: b2dd8010fdb453209ca810547174820b4453fbb400180ba917634062e4438eae
3
+ metadata.gz: 0d58bd43051948ed88cd448d6a1af339b38f5b53ec707cd6d49b10cb227cc8d5
4
+ data.tar.gz: 33d5becc70eebf7f7ed08f452ff2b3422d1891d93829e529ef59e2425dca64a7
5
5
  SHA512:
6
- metadata.gz: 22fd5e6c87f220ad277a3907c3d87a41dc821afedf07ed5da30617a2a57741bdf246acf2e1dace90fa779fc09647b49780c60db59b5fb782694be6519f623113
7
- data.tar.gz: 3492cb7035113fededb0f2222daa06c84f5fbfe7c04fd7f92a5a9f438f093338a72fbe2a7051a5a69e152f5a1bf75aae629378515ce923d3ef06162bb878743e
6
+ metadata.gz: d7731ea2e841c7520aaed03654f9983fff519785df5622292b5a47be9ebfd0de6119c7d47378e3c35a5077ca576b68c26cb4bf5967847f6a89e6dd530a8093bb
7
+ data.tar.gz: 3c118b92821665486442b8eb870d2807f9bf64ed6cbfd62d017c667e8b6df11b76fb173e70fdc0551fd2bb54f82b5572ae33527748d3ad09dff88c96ee9865c1
@@ -1,5 +1,5 @@
1
1
  import { commonSettings } from '../pb_dashboard/commonSettings.js'
2
- import typography from '../tokens/exports/_typography.scss'
2
+ import typography from '../tokens/_typography.scss'
3
3
 
4
4
  const sizeColumns = function(highchart) {
5
5
  const column = highchart.plotOptions.column
@@ -1,5 +1,5 @@
1
- import colors from '../tokens/exports/_colors.scss'
2
- import typography from '../tokens/exports/_typography.scss'
1
+ import colors from '../tokens/_colors.scss'
2
+ import typography from '../tokens/_typography.scss'
3
3
 
4
4
  const pbIndicator = {
5
5
  title: {
@@ -1,5 +1,5 @@
1
1
  import { commonSettings } from '../pb_dashboard/commonSettings.js'
2
- import typography from '../tokens/exports/_typography.scss'
2
+ import typography from '../tokens/_typography.scss'
3
3
 
4
4
  const markerStyles = (highchart) => {
5
5
  highchart.plotOptions.line.marker.enabled = true
@@ -16,7 +16,7 @@ $selector: ".pb_nav_list";
16
16
  list-style: none;
17
17
  }
18
18
 
19
- [class*=_title] {
19
+ [class*=pb_nav_list_title] {
20
20
  padding: 0 $space_md $space_sm;
21
21
  }
22
22
 
@@ -1,6 +1,42 @@
1
- <%= pb_rails("nav", props: {title: "Menu", link: "#"}) do %>
2
- <%= pb_rails("nav/item", props: { link: "#", active: true }) do%>Photos<% end %>
3
- <%= pb_rails("nav/item", props: { link: "#" }) do%>Music<% end %>
4
- <%= pb_rails("nav/item", props: { link: "#" }) do%>Video<% end %>
5
- <%= pb_rails("nav/item", props: { link: "#" }) do%>Files<% end %>
1
+ <%= pb_rails("nav", props: {title: "Users", link: "#"}) do %>
2
+ <%= pb_rails("nav/item", props: { link: "#", active: true }) do%>
3
+ <%= pb_rails("user", props: {
4
+ name: "Anna Black",
5
+ territory: "PHL",
6
+ title: "Remodeling Consultant",
7
+ orientation: "horizontal",
8
+ align: "left",
9
+ avatar_url: "https://randomuser.me/api/portraits/women/44.jpg"
10
+ }) %>
11
+ <% end %>
12
+ <%= pb_rails("nav/item", props: { link: "#" }) do%>
13
+ <%= pb_rails("user", props: {
14
+ name: "Julie Hamilton",
15
+ territory: "PHL",
16
+ title: "Inside Sales Agent",
17
+ orientation: "horizontal",
18
+ align: "left",
19
+ avatar_url: "https://randomuser.me/api/portraits/women/45.jpg"
20
+ }) %>
21
+ <% end %>
22
+ <%= pb_rails("nav/item", props: { link: "#" }) do%>
23
+ <%= pb_rails("user", props: {
24
+ name: "Dennis Wilks",
25
+ territory: "PHL",
26
+ title: "Senior Remodeling Consultant",
27
+ orientation: "horizontal",
28
+ align: "left",
29
+ avatar_url: "https://randomuser.me/api/portraits/men/44.jpg"
30
+ }) %>
31
+ <% end %>
32
+ <%= pb_rails("nav/item", props: { link: "#" }) do%>
33
+ <%= pb_rails("user", props: {
34
+ name: "Ronnie Martin",
35
+ territory: "PHL",
36
+ title: "Customer Development Representative",
37
+ orientation: "horizontal",
38
+ align: "left",
39
+ avatar_url: "https://randomuser.me/api/portraits/men/46.jpg"
40
+ }) %>
41
+ <% end %>
6
42
  <% end %>
@@ -1,12 +1,12 @@
1
1
  import React from 'react'
2
- import { Nav } from '../../'
2
+ import { Nav, User } from '../../'
3
3
  import NavItem from '../_item.jsx'
4
4
 
5
5
  const BlockNav = (props) => {
6
6
  return (
7
7
  <Nav
8
8
  link="#"
9
- title="Menu"
9
+ title="Users"
10
10
  {...props}
11
11
  >
12
12
  <NavItem
@@ -14,11 +14,49 @@ const BlockNav = (props) => {
14
14
  link="#"
15
15
  {...props}
16
16
  >
17
- {'Photos'}
17
+ <User
18
+ align="left"
19
+ avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
20
+ name="Anna Black"
21
+ orientation="horizontal"
22
+ territory="PHL"
23
+ title="Remodeling Consultant"
24
+ {...props}
25
+ />
26
+ </NavItem>
27
+ <NavItem link="#">
28
+ <User
29
+ align="left"
30
+ avatarUrl="https://randomuser.me/api/portraits/women/45.jpg"
31
+ name="Julie Hamilton"
32
+ orientation="horizontal"
33
+ territory="PHL"
34
+ title="Inside Sales Agent"
35
+ {...props}
36
+ />
37
+ </NavItem>
38
+ <NavItem link="#">
39
+ <User
40
+ align="left"
41
+ avatarUrl="https://randomuser.me/api/portraits/men/44.jpg"
42
+ name="Dennis Wilks"
43
+ orientation="horizontal"
44
+ territory="PHL"
45
+ title="Senior Remodeling Consultant"
46
+ {...props}
47
+ />
48
+ </NavItem>
49
+ <NavItem link="#">
50
+ <User
51
+ align="left"
52
+ avatarUrl="https://randomuser.me/api/portraits/men/46.jpg"
53
+ name="Ronnie Martin"
54
+ orientation="horizontal"
55
+ territory="PHL"
56
+ title="Customer Development Representative"
57
+ {...props}
58
+ />
18
59
  </NavItem>
19
- <NavItem link="#">{'Music'}</NavItem>
20
- <NavItem link="#">{'Video'}</NavItem>
21
- <NavItem link="#">{'Files'}</NavItem>
22
60
  </Nav>
23
61
  )
24
62
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playbook
4
- VERSION = "9.4.0.alpha.sisense"
4
+ VERSION = "9.4.0.alpha.user.kit.bug"
5
5
  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: 9.4.0.alpha.sisense
4
+ version: 9.4.0.alpha.user.kit.bug
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: 2021-04-15 00:00:00.000000000 Z
12
+ date: 2021-04-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack