@sorocraft/ui 1.2.111 → 1.2.114
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/Accordion/Accordion.d.ts +5 -2
- package/dist/components/Card/Card.d.ts +8 -1
- package/dist/components/Progress/Progress.d.ts +9 -0
- package/dist/components/Progress/index.d.ts +1 -0
- package/dist/components/ProgressCard/ProgressCard.d.ts +12 -0
- package/dist/components/ProgressCard/index.d.ts +1 -0
- package/dist/components/Text/Text.d.ts +1 -1
- package/dist/components/Text/Text.types.d.ts +3 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles/scss/colors.scss +3 -0
- package/dist/styles/scss/mixins.scss +3 -2
- package/dist/styles/scss/variables.scss +4 -2
- package/dist/styles/ui.css +1 -1
- package/dist/styles/ui.css.map +1 -1
- package/package.json +6 -6
|
@@ -34,11 +34,12 @@
|
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
@mixin cardStyle() {
|
|
37
|
+
@mixin cardStyle($margin-bottom: $card-margin-bottom) {
|
|
38
38
|
background-color: $color-white;
|
|
39
39
|
border-radius: $card-border-radius;
|
|
40
|
-
margin-bottom: $
|
|
40
|
+
margin-bottom: $margin-bottom;
|
|
41
41
|
box-shadow: $card-box-shadow;
|
|
42
|
+
border: 1px solid $color-card-border;
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
/* RESPONSIVE */
|
|
@@ -7,12 +7,13 @@ $border-radius: 0.475rem;
|
|
|
7
7
|
$oval-border-radius: 3.75rem;
|
|
8
8
|
$less-oval-border-radius: 1.5rem;
|
|
9
9
|
$btn-border-radius: 3.75rem;
|
|
10
|
-
$card-border-radius: 0.
|
|
10
|
+
$card-border-radius: 0.625rem;
|
|
11
11
|
$badge-border-radius: 0.425rem;
|
|
12
12
|
$input-border-radius: 3.75rem;
|
|
13
13
|
$toolbar-border-radius: 0.85rem;
|
|
14
14
|
$message-border-radius: 1.75rem;
|
|
15
15
|
$border-radius-sm: 0.25rem;
|
|
16
|
+
$progress-border-radius: 0.375rem;
|
|
16
17
|
|
|
17
18
|
/* Fonts */
|
|
18
19
|
$font-family: var(--sorocraft-font-family, Helvetica);
|
|
@@ -99,7 +100,7 @@ $task-drawer-shadow: 0px 10px 10px 0px rgba(56, 71, 109, 0.25);
|
|
|
99
100
|
$table-loading-message-box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
|
|
100
101
|
$menu-dropdown-box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
|
|
101
102
|
$tooltip-box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
|
|
102
|
-
$card-box-shadow: 0px 10px 35px 0px rgba(56, 71, 109, 0.075);
|
|
103
|
+
$card-more-box-shadow: 0px 10px 35px 0px rgba(56, 71, 109, 0.075);
|
|
103
104
|
$card-hover-box-shadow: 0px 50px 20px -40px rgba(0, 0, 0, 0.1),
|
|
104
105
|
0px 30px 50px 0px rgba(50, 50, 93, 0.25);
|
|
105
106
|
$shadow-around: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
|
|
@@ -115,6 +116,7 @@ $feature-card-shadow: 0px 8px 16px -8px rgba(0, 0, 0, 0.1),
|
|
|
115
116
|
$feature-card-hover-shadow: 0px 100px 50px -40px rgba(0, 0, 0, 0.1),
|
|
116
117
|
0px 60px 100px 0px rgba(50, 50, 93, 0.25);
|
|
117
118
|
$input-shadow-around: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
|
|
119
|
+
$card-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
|
|
118
120
|
|
|
119
121
|
/**/
|
|
120
122
|
$uiTypeStyles: (
|