contentoh-components-library 21.1.33 → 21.1.36
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/global-files/fonts.css +45 -0
- package/dist/global-files/global-styles.css +41 -0
- package/dist/index.js +0 -13
- package/package.json +1 -1
- package/src/index.js +0 -1
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Avenir Next";
|
|
3
|
+
src: url("../assets/fonts/avenirnext/AvenirNextLTPro-Regular.otf");
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@font-face {
|
|
7
|
+
font-family: "Lato";
|
|
8
|
+
src: url("../assets/fonts/lato/Lato-Regular.ttf");
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: "Raleway";
|
|
13
|
+
src: url("../assets/fonts/raleway/Raleway-Regular.ttf");
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@font-face {
|
|
18
|
+
font-family: "Raleway-500";
|
|
19
|
+
src: url("../assets/fonts/raleway/Raleway-Medium.ttf");
|
|
20
|
+
font-weight: 500;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@font-face {
|
|
24
|
+
font-family: "Raleway-600";
|
|
25
|
+
src: url("../assets/fonts/raleway/Raleway-SemiBold.ttf");
|
|
26
|
+
font-weight: 600;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: "Raleway-700";
|
|
31
|
+
src: url("../assets/fonts/raleway/Raleway-Bold.ttf");
|
|
32
|
+
font-weight: 700;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@font-face {
|
|
36
|
+
font-family: "Raleway-800";
|
|
37
|
+
src: url("../assets/fonts/raleway/Raleway-ExtraBold.ttf");
|
|
38
|
+
font-weight: 800;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@font-face {
|
|
42
|
+
font-family: "Raleway-900";
|
|
43
|
+
src: url("../assets/fonts/raleway/Raleway-Black.ttf");
|
|
44
|
+
font-weight: 900;
|
|
45
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
@import "./fonts.css";
|
|
2
|
+
|
|
3
|
+
*,
|
|
4
|
+
*::after,
|
|
5
|
+
*::before {
|
|
6
|
+
padding: 0;
|
|
7
|
+
margin: 0;
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
body.sb-main-padded.sb-show-main {
|
|
12
|
+
padding: 0;
|
|
13
|
+
height: 100vh;
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.sb-main-padded.sb-show-main #root {
|
|
18
|
+
height: 100%;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* width */
|
|
22
|
+
::-webkit-scrollbar {
|
|
23
|
+
width: 6px;
|
|
24
|
+
height: 6px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* Track */
|
|
28
|
+
::-webkit-scrollbar-track {
|
|
29
|
+
background: white;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/* Handle */
|
|
33
|
+
::-webkit-scrollbar-thumb {
|
|
34
|
+
border-radius: 15px;
|
|
35
|
+
background: #f0eef2;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* Handle on hover */
|
|
39
|
+
::-webkit-scrollbar-thumb:hover {
|
|
40
|
+
background: #d4d1d7;
|
|
41
|
+
}
|
package/dist/index.js
CHANGED
|
@@ -784,19 +784,6 @@ Object.keys(_OnboardPlan).forEach(function (key) {
|
|
|
784
784
|
});
|
|
785
785
|
});
|
|
786
786
|
|
|
787
|
-
var _RegistrationLoginFirstStep = require("./components/pages/RegistrationLoginFirstStep");
|
|
788
|
-
|
|
789
|
-
Object.keys(_RegistrationLoginFirstStep).forEach(function (key) {
|
|
790
|
-
if (key === "default" || key === "__esModule") return;
|
|
791
|
-
if (key in exports && exports[key] === _RegistrationLoginFirstStep[key]) return;
|
|
792
|
-
Object.defineProperty(exports, key, {
|
|
793
|
-
enumerable: true,
|
|
794
|
-
get: function get() {
|
|
795
|
-
return _RegistrationLoginFirstStep[key];
|
|
796
|
-
}
|
|
797
|
-
});
|
|
798
|
-
});
|
|
799
|
-
|
|
800
787
|
var _RegistrationLoginSecondStep = require("./components/pages/RegistrationLoginSecondStep");
|
|
801
788
|
|
|
802
789
|
Object.keys(_RegistrationLoginSecondStep).forEach(function (key) {
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -65,7 +65,6 @@ export * from "./components/pages/CustomerLogin";
|
|
|
65
65
|
export * from "./components/pages/CustomerType";
|
|
66
66
|
export * from "./components/pages/EmailResetPassword";
|
|
67
67
|
export * from "./components/pages/OnboardPlan";
|
|
68
|
-
export * from "./components/pages/RegistrationLoginFirstStep";
|
|
69
68
|
export * from "./components/pages/RegistrationLoginSecondStep";
|
|
70
69
|
export * from "./components/pages/RegistrationLoginThirdStep";
|
|
71
70
|
export * from "./components/pages/RetailerProductEdition";
|