@ostack.tech/ui 0.11.0 → 0.11.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/locales/pt-PT.js +2 -2
- package/dist/locales/pt-PT.js.map +1 -1
- package/dist/ostack-ui.css +10 -7
- package/dist/ostack-ui.js +9 -9
- package/dist/ostack-ui.js.map +1 -1
- package/package.json +1 -1
- package/scss/components/DataTable/_DataTable-variables.scss +8 -5
- package/scss/components/DataTable/_DataTable.scss +2 -0
- package/scss/components/DateRangeInput/_DateRangeInput.scss +6 -1
- package/scss/components/FeedbackList/_FeedbackList.scss +1 -0
- package/scss/components/Stepper/_Stepper.scss +4 -4
- package/scss/components/Tabs/_Tabs-variables.scss +1 -0
- package/scss/components/Tabs/_Tabs.scss +1 -0
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use "../Label/Label-variables" as *;
|
|
1
2
|
@use "../../scss/base-variables" as *;
|
|
2
3
|
@use "../../scss/utils/spacing" as *;
|
|
3
4
|
|
|
@@ -13,15 +14,17 @@ $data-table-filter-max-width: 250px !default;
|
|
|
13
14
|
|
|
14
15
|
// Rows per page
|
|
15
16
|
$data-table-rows-per-page-gap-x: spacing(1) !default;
|
|
16
|
-
$data-table-rows-per-page-font-size:
|
|
17
|
-
$data-table-rows-per-page-line-height:
|
|
17
|
+
$data-table-rows-per-page-font-size: null !default;
|
|
18
|
+
$data-table-rows-per-page-line-height: null !default;
|
|
18
19
|
$data-table-rows-per-page-font-weight: $font-weight-normal !default;
|
|
20
|
+
$data-table-rows-per-page-color: null !default;
|
|
19
21
|
|
|
20
22
|
// Pagination
|
|
21
23
|
$data-table-pagination-gap-x: spacing(2) !default;
|
|
22
|
-
$data-table-pagination-font-size:
|
|
23
|
-
$data-table-pagination-line-height:
|
|
24
|
-
$data-table-pagination-font-weight:
|
|
24
|
+
$data-table-pagination-font-size: $label-font-size !default;
|
|
25
|
+
$data-table-pagination-line-height: $label-line-height !default;
|
|
26
|
+
$data-table-pagination-font-weight: $font-weight-normal !default;
|
|
27
|
+
$data-table-pagination-color: $label-color !default;
|
|
25
28
|
|
|
26
29
|
// Pagination arrows
|
|
27
30
|
$data-table-pagination-arrows-gap-x: spacing(1) !default;
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
font-size: $data-table-rows-per-page-font-size;
|
|
53
53
|
line-height: $data-table-rows-per-page-line-height;
|
|
54
54
|
font-weight: maybe-important($data-table-rows-per-page-font-weight);
|
|
55
|
+
color: maybe-important($data-table-rows-per-page-color);
|
|
55
56
|
}
|
|
56
57
|
|
|
57
58
|
&__rows-per-page-select-root,
|
|
@@ -66,6 +67,7 @@
|
|
|
66
67
|
font-size: $data-table-pagination-font-size;
|
|
67
68
|
line-height: $data-table-pagination-line-height;
|
|
68
69
|
font-weight: $data-table-pagination-font-weight;
|
|
70
|
+
color: $data-table-pagination-color;
|
|
69
71
|
}
|
|
70
72
|
|
|
71
73
|
&__pagination-arrows {
|
|
@@ -49,11 +49,16 @@
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
&__popover-anchor {
|
|
53
|
+
box-shadow: none;
|
|
54
|
+
}
|
|
55
|
+
|
|
52
56
|
&__popover-anchor > &__container {
|
|
53
57
|
margin: calc(var(--#{$prefix}control-border-width) * -1);
|
|
54
|
-
|
|
58
|
+
|
|
55
59
|
&:not([data-focused]) {
|
|
56
60
|
border-color: transparent;
|
|
61
|
+
background: none;
|
|
57
62
|
}
|
|
58
63
|
|
|
59
64
|
// When necessary, tweak spacing around containers so that the focus ring
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
background-color: $stepper-step-line-status-background-color;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
&:is([data-completed], [data-
|
|
51
|
+
&:is([data-completed], [data-current]) {
|
|
52
52
|
&::before {
|
|
53
53
|
background-color: $stepper-step-line-completed-background-color;
|
|
54
54
|
}
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
margin-bottom: $stepper-step-label-margin-y;
|
|
71
71
|
text-align: center;
|
|
72
72
|
|
|
73
|
-
&:not([data-completed], [data-
|
|
73
|
+
&:not([data-completed], [data-current]) {
|
|
74
74
|
color: $stepper-step-label-incomplete-color;
|
|
75
75
|
}
|
|
76
76
|
}
|
|
@@ -106,13 +106,13 @@
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
// TODO: Improve animations
|
|
109
|
-
&[data-
|
|
109
|
+
&[data-current] {
|
|
110
110
|
@include accessible-animation(
|
|
111
111
|
$animation-fade-in $stepper-step-content-animation-duration
|
|
112
112
|
$stepper-step-content-animation-timing-function
|
|
113
113
|
);
|
|
114
114
|
}
|
|
115
|
-
//&:not([data-
|
|
115
|
+
//&:not([data-current]) {
|
|
116
116
|
// @include accessible-animation-close();
|
|
117
117
|
//}
|
|
118
118
|
|
|
@@ -213,6 +213,7 @@ $tabs-tab-content-label-border-bottom: 2px solid var(--#{$prefix}primary-9) !def
|
|
|
213
213
|
$tabs-tab-content-label-font-size: var(--#{$prefix}font-size-sm) !default;
|
|
214
214
|
$tabs-tab-content-label-line-height: var(--#{$prefix}font-size-sm) !default;
|
|
215
215
|
$tabs-tab-content-label-font-weight: $font-weight-medium !default;
|
|
216
|
+
$tabs-tab-content-label-color: null !default;
|
|
216
217
|
|
|
217
218
|
// Tab content
|
|
218
219
|
$tabs-tab-content-gap-y: spacing(2) !default;
|