sccoreui 3.3.2 → 3.3.4

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/App.css CHANGED
@@ -1,98 +1,105 @@
1
1
  @import url("./assets/theme.css");
2
- @import url("./assets/sccoreui.css");
3
- @import url("./assets/sccoreicons.css");
4
- @import url("./assets/flex.css");
5
- :root {
6
- --fw-600: 600;
7
- --fw-400: 400;
8
- --fs-24: 24px;
9
- --fs-18: 18px;
10
- --fs-16: 16px;
11
- --lh: 24px;
12
- --fs-14: 14px;
13
- --grey-bg: #101828;
14
- --border-none: border-none;
15
- }
16
- @font-face {
17
- font-family: "Lato-400";
18
- font-weight: 400;
19
- src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
20
- }
21
- @font-face {
22
- font-family: "Lato-600";
23
- font-weight: 600;
24
- src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
25
- }
26
- body {
27
- font-family: "Lato-400", sans-serif;
28
- -webkit-font-smoothing: antialiased;
29
- -moz-osx-font-smoothing: grayscale;
30
- line-height: var(--lh);
31
- padding: 0;
32
- margin: 0;
33
- }
34
- code {
35
- font-family: "Lato-400", monospace;
36
- }
37
- h1 {
38
- font-size: var(--fs-24);
39
- font-weight: var(--fw-600);
40
- }
41
- h2 {
42
- font-size: var(--fs-18);
43
- font-weight: var(--fw-600);
44
- }
45
- h3 {
46
- font-size: var(--fs-16);
47
- font-weight: var(--fw-400);
48
- }
49
- .progress-container {
50
- isolation: isolate;
51
- }
52
- .progress-container::before {
53
- content: "";
54
- background-color: var(--gray-200);
55
- position: absolute;
56
- z-index: -1;
57
- }
58
- .progress-container.horizontal::before {
59
- height: 2px;
60
- width: 100%;
61
- top: 11%;
62
- }
63
- .progress-container.vertical::before {
64
- height: 100%;
65
- width: 2px;
66
- left: 5%;
67
- top: 0;
68
- }
69
- .progressbar {
70
- z-index: -1;
71
- transition: all 0.6s ease;
72
- }
73
- .progressbar.horizontal {
74
- left: 0;
75
- height: 2px;
76
- top: 11%;
77
- }
78
- .progressbar.vertical {
79
- width: 2px;
80
- left: 5%;
81
- top: 0;
82
- }
83
- .progress-step-item.horizontal:nth-of-type(1) {
84
- transform: translateX(-50%);
85
- }
86
- .progress-step-item.horizontal:last-child {
87
- transform: translateX(50%);
88
- }
89
- .progress-step-item.vertical {
90
- transform: translateY(50%);
91
- }
92
- .progress-step-item.vertical:nth-of-type(1) {
93
- transform: translateY(-5%);
94
- }
95
- .progress-step-item.vertical:last-child {
96
- transform: translateY(100%);
97
- }
98
-
2
+ @import url("./assets/sccoreui.css");
3
+ @import url("./assets/sccoreicons.css");
4
+ @import url("./assets/flex.css");
5
+ :root {
6
+ --fw-600: 600;
7
+ --fw-400: 400;
8
+ --fs-24: 24px;
9
+ --fs-18: 18px;
10
+ --fs-16: 16px;
11
+ --lh: 24px;
12
+ --fs-14: 14px;
13
+ --grey-bg: #101828;
14
+ --border-none: border-none;
15
+ }
16
+
17
+ @font-face {
18
+ font-family: "Lato-400";
19
+ font-weight: 400;
20
+ src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
21
+ }
22
+ @font-face {
23
+ font-family: "Lato-600";
24
+ font-weight: 600;
25
+ src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
26
+ }
27
+ body {
28
+ font-family: "Lato-400", sans-serif;
29
+ -webkit-font-smoothing: antialiased;
30
+ -moz-osx-font-smoothing: grayscale;
31
+ line-height: var(--lh);
32
+ padding: 0;
33
+ margin: 0;
34
+ }
35
+
36
+ code {
37
+ font-family: "Lato-400", monospace;
38
+ }
39
+
40
+ h1 {
41
+ font-size: var(--fs-24);
42
+ font-weight: var(--fw-600);
43
+ }
44
+
45
+ h2 {
46
+ font-size: var(--fs-18);
47
+ font-weight: var(--fw-600);
48
+ }
49
+
50
+ h3 {
51
+ font-size: var(--fs-16);
52
+ font-weight: var(--fw-400);
53
+ }
54
+
55
+ .progress-container {
56
+ isolation: isolate;
57
+ }
58
+ .progress-container::before {
59
+ content: "";
60
+ background-color: var(--gray-200);
61
+ position: absolute;
62
+ z-index: -1;
63
+ }
64
+ .progress-container.horizontal::before {
65
+ height: 2px;
66
+ width: 100%;
67
+ top: 11%;
68
+ }
69
+ .progress-container.vertical::before {
70
+ height: 100%;
71
+ width: 2px;
72
+ left: 5%;
73
+ top: 0;
74
+ }
75
+
76
+ .progressbar {
77
+ z-index: -1;
78
+ transition: all 0.6s ease;
79
+ }
80
+ .progressbar.horizontal {
81
+ left: 0;
82
+ height: 2px;
83
+ top: 11%;
84
+ }
85
+ .progressbar.vertical {
86
+ width: 2px;
87
+ left: 5%;
88
+ top: 0;
89
+ }
90
+
91
+ .progress-step-item.horizontal:nth-of-type(1) {
92
+ transform: translateX(-50%);
93
+ }
94
+ .progress-step-item.horizontal:last-child {
95
+ transform: translateX(50%);
96
+ }
97
+ .progress-step-item.vertical {
98
+ transform: translateY(50%);
99
+ }
100
+ .progress-step-item.vertical:nth-of-type(1) {
101
+ transform: translateY(-5%);
102
+ }
103
+ .progress-step-item.vertical:last-child {
104
+ transform: translateY(100%);
105
+ }
package/dist/App.js CHANGED
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const jsx_runtime_1 = require("react/jsx-runtime");
4
4
  // import Home from './pages/home';
5
- require("./App.css");
6
5
  const App = () => {
7
6
  return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)("div", {}) }));
8
7
  };
@@ -1,3 +1,2 @@
1
- import "./App.css";
2
1
  declare const App: () => import("react/jsx-runtime").JSX.Element;
3
2
  export default App;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sccoreui",
3
- "version": "3.3.2",
3
+ "version": "3.3.4",
4
4
  "description": "ui-sccore",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",