storybook_engine 1.4.1 → 1.4.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bbf3f4af991439ab6661300e932e2ae8e5e4be54497ef35cc06c294c547bffe4
4
- data.tar.gz: 0d0fe4abdeeb8492b654760d6b2ca88c65769572c337013b183900a791ec4808
3
+ metadata.gz: 3e28c9e2c5cb699eeb4120ba2ef3be8fe86d0c12117e3432251a748a9fb72558
4
+ data.tar.gz: 526e9c8f7d46ffadfbcc71a5a8d0253c1cbe8e6811aa4b92384b858fcedc5c55
5
5
  SHA512:
6
- metadata.gz: c9312fe1011e90a8a07624c906c338d054139e1764f189f42428e7a175845cc2496ff72f623dc7f67352b5e267fd50fb5276306bf1de3919dfa98d1afb0fefe1
7
- data.tar.gz: fdeb4f59bf1099dfd317f719f8b9e9b99883544b5ba8692c9c2dbeeb8655e05c6595036de6584689e58f646b32bfd72744abb339d133ef549d250ae2607ad6a8
6
+ metadata.gz: 524b5a9725837254f0334438490dd91299d6bd495f9a62095da06a1179c4bc4e52ca1312c9462c7ef1b2c69c9aab459f8f18008c764f73f2868face0c3df02b5
7
+ data.tar.gz: 02ec3979b100d0184a9aeeb5c156fe5e14f5e81d733e5dc4587e456a1b495124b28c39ed302e7a9d055174bbdd6b613b420ac8ae06d5b67f043eb0fd38215780
data/README.md CHANGED
@@ -25,7 +25,7 @@ $ gem install storybook_engine
25
25
 
26
26
  After add gem please add this line into your applications.scss:
27
27
  ```bash
28
- @import "storybook_engine/application";
28
+ @import "storybook_engine";
29
29
  ```
30
30
 
31
31
  ## License
@@ -15,7 +15,6 @@
15
15
  */
16
16
 
17
17
  @import "helpers/mixins";
18
- @import "helpers/colors";
19
18
  @import "helpers/common-used";
20
19
 
21
20
  @import "components/buttons";
@@ -1,5 +1,3 @@
1
- @import "../helpers/colors";
2
-
3
1
  .zenhr-button {
4
2
  padding: 0.9rem;
5
3
  height: 3.5rem;
@@ -14,14 +12,14 @@
14
12
  .zenhr-primary-button {
15
13
  color: $white;
16
14
  --bg-opacity: 1;
17
- background-color: $primary-blue;
18
- border-color: $primary-blue;
15
+ background-color: $primary-color;
16
+ border-color: $primary-color;
19
17
 
20
18
  &:hover, :focus {
21
- color: $primary-blue;
19
+ color: $primary-color;
22
20
  background-color: $white;
23
- border-color: $primary-blue;
24
- box-shadow: 0 0 0.25rem 0 $primary-blue;
21
+ border-color: $primary-color;
22
+ box-shadow: 0 0 0.25rem 0 $primary-color;
25
23
  }
26
24
 
27
25
  &:disabled {
@@ -1,6 +1,3 @@
1
- @import "colors";
2
- @import "mixins";
3
-
4
1
  .delete-action {
5
2
  cursor: pointer;
6
3
 
@@ -1,3 +1,3 @@
1
1
  module StorybookEngine
2
- VERSION = '1.4.1'
2
+ VERSION = '1.4.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: storybook_engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amr Abu Aza
@@ -43,7 +43,6 @@ files:
43
43
  - app/assets/config/storybook_engine_manifest.js
44
44
  - app/assets/stylesheets/storybook_engine/_index.scss
45
45
  - app/assets/stylesheets/storybook_engine/components/_buttons.scss
46
- - app/assets/stylesheets/storybook_engine/helpers/_colors.scss
47
46
  - app/assets/stylesheets/storybook_engine/helpers/_common-used.scss
48
47
  - app/assets/stylesheets/storybook_engine/helpers/_mixins.scss
49
48
  - app/components/ButtonComponent/button_component.html.haml
@@ -1,5 +0,0 @@
1
- $charcoal: #484848;
2
- $red: #e30b1c;
3
- $black: #000;
4
- $white: #fff;
5
- $primary-blue: #007bff;