@oneblink/apps-react 5.4.0 → 5.5.0-beta.1
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.
- package/dist/components/renderer/FormElementLabelContainer.js +1 -1
- package/dist/components/renderer/FormElementLabelContainer.js.map +1 -1
- package/dist/components/renderer/OneBlinkFormElements.js +1 -1
- package/dist/components/renderer/OneBlinkFormElements.js.map +1 -1
- package/dist/form-elements/FormElementCompliance.d.ts +1 -2
- package/dist/form-elements/FormElementCompliance.js +2 -2
- package/dist/form-elements/FormElementCompliance.js.map +1 -1
- package/dist/styles/compliance.scss +2 -9
- package/dist/styles/list.scss +1 -1
- package/dist/styles/number.scss +2 -2
- package/dist/styles/ob-files.scss +4 -4
- package/dist/styles/repeatable-set.scss +7 -0
- package/dist/styles.css +311 -310
- package/dist/styles.scss +16 -4
- package/package.json +1 -1
package/dist/styles.scss
CHANGED
@@ -2,9 +2,14 @@
|
|
2
2
|
// Overrides
|
3
3
|
//
|
4
4
|
|
5
|
-
$green: #
|
6
|
-
$primary: #
|
7
|
-
$warning: #
|
5
|
+
$green: #3A833C;
|
6
|
+
$primary: #407E8C;
|
7
|
+
$warning: #B85000;
|
8
|
+
$info: #2D7AB9;
|
9
|
+
$success: #3A833C;
|
10
|
+
$danger: #E8113C;
|
11
|
+
//bulma grey is #7A7A7A which is slightly too light
|
12
|
+
$grey: #757575;
|
8
13
|
|
9
14
|
// Elevations for Box Shadows
|
10
15
|
$elevation-1: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
|
@@ -27,7 +32,8 @@ $size-9: 0.25rem;
|
|
27
32
|
//
|
28
33
|
$mobile: $tablet - 1px;
|
29
34
|
$secondary: $grey-lighter;
|
30
|
-
|
35
|
+
$input-icon-color: $grey;
|
36
|
+
$input-icon-active-color: $grey-darker;
|
31
37
|
//
|
32
38
|
// Bulma Styles
|
33
39
|
//
|
@@ -41,6 +47,7 @@ $input-shadow: none;
|
|
41
47
|
$input-focus-box-shadow-size: none;
|
42
48
|
$slider-thumb-background: $primary;
|
43
49
|
$slider-thumb-border: 1px solid $primary;
|
50
|
+
|
44
51
|
@import 'bulma/sass/form/_all.sass';
|
45
52
|
@import 'bulma/sass/elements/container.sass';
|
46
53
|
@import 'bulma/sass/elements/other.sass';
|
@@ -65,6 +72,11 @@ $modal-background-background-color: $secondary;
|
|
65
72
|
@import 'bulma/sass/components/card.sass';
|
66
73
|
@import 'bulma/sass/components/dropdown.sass';
|
67
74
|
|
75
|
+
//
|
76
|
+
// Extension overrides
|
77
|
+
//
|
78
|
+
$steps-maker-default-color: $grey;
|
79
|
+
|
68
80
|
//
|
69
81
|
// Extensions Styles
|
70
82
|
//
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@oneblink/apps-react",
|
3
3
|
"description": "Helper functions for OneBlink apps in ReactJS.",
|
4
|
-
"version": "5.
|
4
|
+
"version": "5.5.0-beta.1",
|
5
5
|
"author": "OneBlink <developers@oneblink.io> (https://oneblink.io)",
|
6
6
|
"bugs": {
|
7
7
|
"url": "https://github.com/oneblink/apps-react/issues"
|