playbook_ui 10.2.0 → 10.2.1.alpha.sisensefix

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: 800b6e3712bc9efc7d5105eb9b5a97deef54c0e27fa417dc1a0633910c21b0f9
4
- data.tar.gz: 58686b0e5aca3fd60ae5b898bdbecb7c77bf51f682c948da943a30ea2df0a2f6
3
+ metadata.gz: 4ed47e21201091f8b0abf7dfd371ea126821fe771e84c397c25e546fe5fb3008
4
+ data.tar.gz: c5be8d557ae862d4e89158c0788a60c7188cdc40ccf61b4c01ad0434488a7b2e
5
5
  SHA512:
6
- metadata.gz: 92dacb3711e4f9ba164dbd3c86c45dbbba4f9a2b249331d8dbb98a88ae295a0fd16efc4b202d0ea0944a3748fbe9aebdbfecea137022879f69624ebe1731b230
7
- data.tar.gz: 4ff55667a9e1fe1b9f2bcb3f581af6954b365364409ce77216f45887790f191f1437646302e337b44a373982dd292a94c8fcce57fbbdd4e4537ec68cabb22244
6
+ metadata.gz: 5c8dc5e5b4def35cc3ec1add2db619d3f2770e1ba9eed44c9939100e2e4351097d766264519a267ddcbf423c05258be919f5cd9e05d338ee8d1b6e613fe366e9
7
+ data.tar.gz: a4d94690077b942527c9622e5647cc81f848ac27f2567a1f4fa149c55946946ca7e119c4ba1eba8333228196789c8ecbf03078f5805db86aa2ff03f30be63338
@@ -1,5 +1,5 @@
1
1
  import { commonSettings } from '../pb_dashboard/commonSettings.js'
2
- import typography from '../tokens/_typography.scss'
2
+ import typography from '../tokens/exports/_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/_colors.scss'
2
- import typography from '../tokens/_typography.scss'
1
+ import colors from '../tokens/exports/_colors.scss'
2
+ import typography from '../tokens/exports/_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/_typography.scss'
2
+ import typography from '../tokens/exports/_typography.scss'
3
3
 
4
4
  const markerStyles = (highchart) => {
5
5
  highchart.plotOptions.line.marker.enabled = true
@@ -99,7 +99,7 @@ $selector: ".pb_nav_list";
99
99
  border-color: rgba($white, $opacity_3);
100
100
  }
101
101
  &[class*=_active] [class*=_link]{
102
- border-color: $white;
102
+ border-color: $active_dark;
103
103
  [class*=_text],[class*=_icon]{
104
104
  color: $text_dk_default;
105
105
  }
data/dist/reset.css CHANGED
@@ -1,61 +1,2 @@
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; }
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}
61
2
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playbook
4
- PREVIOUS_VERSION = "10.1.0"
5
- VERSION = "10.2.0"
4
+ PREVIOUS_VERSION = "10.2.1"
5
+ VERSION = "10.2.1.alpha.sisensefix"
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.2.0
4
+ version: 10.2.1.alpha.sisensefix
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-07-22 00:00:00.000000000 Z
12
+ date: 2021-07-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -221,22 +221,22 @@ dependencies:
221
221
  name: rspec-rails
222
222
  requirement: !ruby/object:Gem::Requirement
223
223
  requirements:
224
- - - "~>"
225
- - !ruby/object:Gem::Version
226
- version: '3.8'
227
224
  - - ">="
228
225
  - !ruby/object:Gem::Version
229
226
  version: 3.8.0
227
+ - - "~>"
228
+ - !ruby/object:Gem::Version
229
+ version: '3.8'
230
230
  type: :development
231
231
  prerelease: false
232
232
  version_requirements: !ruby/object:Gem::Requirement
233
233
  requirements:
234
- - - "~>"
235
- - !ruby/object:Gem::Version
236
- version: '3.8'
237
234
  - - ">="
238
235
  - !ruby/object:Gem::Version
239
236
  version: 3.8.0
237
+ - - "~>"
238
+ - !ruby/object:Gem::Version
239
+ version: '3.8'
240
240
  - !ruby/object:Gem::Dependency
241
241
  name: rubocop
242
242
  requirement: !ruby/object:Gem::Requirement
@@ -2076,11 +2076,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
2076
2076
  version: '0'
2077
2077
  required_rubygems_version: !ruby/object:Gem::Requirement
2078
2078
  requirements:
2079
- - - ">="
2079
+ - - ">"
2080
2080
  - !ruby/object:Gem::Version
2081
- version: '0'
2081
+ version: 1.3.1
2082
2082
  requirements: []
2083
- rubygems_version: 3.1.4
2083
+ rubygems_version: 3.0.3
2084
2084
  signing_key:
2085
2085
  specification_version: 4
2086
2086
  summary: Playbook Design System