otimus-library 0.2.77 → 0.2.80
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/README.md +26 -26
- package/esm2022/lib/components/oc-accordion/oc-accordion.component.mjs +3 -3
- package/esm2022/lib/components/oc-accordion-item/oc-accordion-item.component.mjs +3 -3
- package/esm2022/lib/components/oc-autocomplete/oc-autocomplete.component.mjs +3 -3
- package/esm2022/lib/components/oc-badge/oc-badge.component.mjs +3 -3
- package/esm2022/lib/components/oc-button-menu/oc-button-menu.component.mjs +42 -0
- package/esm2022/lib/components/oc-checkbox/oc-checkbox.component.mjs +3 -3
- package/esm2022/lib/components/oc-chip/oc-chip.component.mjs +3 -3
- package/esm2022/lib/components/oc-date-select/data/months.json +44 -0
- package/esm2022/lib/components/oc-date-select/oc-date-select.component.mjs +97 -0
- package/esm2022/lib/components/oc-filter/oc-filter.component.mjs +3 -3
- package/esm2022/lib/components/oc-input/oc-input.component.mjs +3 -3
- package/esm2022/lib/components/oc-key-value/oc-key-value.component.mjs +3 -3
- package/esm2022/lib/components/oc-log/oc-log.component.mjs +3 -3
- package/esm2022/lib/components/oc-menu/oc-menu.component.mjs +3 -3
- package/esm2022/lib/components/oc-message/oc-message.component.mjs +3 -3
- package/esm2022/lib/components/oc-modal/oc-modal.component.mjs +3 -3
- package/esm2022/lib/components/oc-modal-footer/oc-modal-footer.component.mjs +3 -3
- package/esm2022/lib/components/oc-not-found/oc-not-found.component.mjs +3 -3
- package/esm2022/lib/components/oc-pagination/oc-pagination.component.mjs +3 -3
- package/esm2022/lib/components/oc-profile/oc-profile.component.mjs +3 -3
- package/esm2022/lib/components/oc-step/oc-step.component.mjs +3 -3
- package/esm2022/lib/components/oc-stepper/oc-stepper.component.mjs +3 -3
- package/esm2022/lib/components/oc-tab/oc-tab.component.mjs +3 -3
- package/esm2022/lib/components/oc-tabs/oc-tabs.component.mjs +3 -3
- package/esm2022/lib/components/oc-toast/oc-toast.component.mjs +3 -3
- package/esm2022/lib/components/oc-toggle/oc-toggle.component.mjs +3 -3
- package/esm2022/lib/directives/oc-tooltip/oc-tooltip.directive.mjs +1 -1
- package/esm2022/lib/interfaces/oc-autocomplete.mjs +1 -1
- package/esm2022/lib/interfaces/oc-menu.mjs +1 -1
- package/esm2022/lib/interfaces/oc-style-theme.mjs +1 -1
- package/esm2022/lib/interfaces/oc-toast.mjs +1 -1
- package/esm2022/lib/otimus-library.component.mjs +9 -9
- package/esm2022/lib/otimus-library.service.mjs +1 -1
- package/esm2022/lib/services/internationalization.service.mjs +1 -1
- package/esm2022/lib/services/oc-toast.service.mjs +1 -1
- package/esm2022/lib/services/style-theme.service.mjs +1 -1
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/otimus-library.mjs +234 -55
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/lib/components/oc-button-menu/oc-button-menu.component.d.ts +13 -0
- package/lib/components/oc-date-select/oc-date-select.component.d.ts +23 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/styles/colors.scss +70 -70
- package/styles/components/buttons/buttons.scss +225 -225
- package/styles/components/buttons/buttons.shui.scss +61 -61
- package/styles/components/index.scss +2 -2
- package/styles/components/inputs/inputs.scss +248 -248
- package/styles/components/inputs/inputs.shui.scss +212 -212
- package/styles/components/table/table.scss +98 -98
- package/styles/components/table/table.shui.scss +50 -50
- package/styles/components/tooltip.scss +26 -26
- package/styles/grid.scss +1122 -1122
- package/styles/patterns/shui/colors.shui.scss +154 -154
- package/styles/patterns/shui/fonts.shui.scss +65 -65
- package/styles/patterns/shui/index.shui.scss +24 -24
- package/styles/patterns/shui/variables.shui.scss +23 -23
- package/styles/states.scss +5 -5
- package/styles/styles.scss +46 -46
- package/styles/variables.scss +47 -47
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
@use '../../variables.scss';
|
|
2
|
-
|
|
3
|
-
.shui .oc.table,
|
|
4
|
-
.shui.oc.table {
|
|
5
|
-
width: 100%;
|
|
6
|
-
border-collapse: collapse;
|
|
7
|
-
margin: 20px 0;
|
|
8
|
-
font-size: 1em;
|
|
9
|
-
font-family: 'Arial', sans-serif;
|
|
10
|
-
|
|
11
|
-
thead {
|
|
12
|
-
min-height: 50px;
|
|
13
|
-
height: 50px;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
tr {
|
|
17
|
-
background-color: white;
|
|
18
|
-
transition: 0.1s ease;
|
|
19
|
-
border: none;
|
|
20
|
-
border-top: 0;
|
|
21
|
-
border-bottom: 0;
|
|
22
|
-
|
|
23
|
-
&:hover {
|
|
24
|
-
background-color: #F5F5F5 !important;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
th, td {
|
|
30
|
-
padding: 15px;
|
|
31
|
-
text-align: left;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
th {
|
|
35
|
-
background-color: transparent;
|
|
36
|
-
border-bottom: 1px solid rgba(variables.$color-shui-ui-5, 0.75);
|
|
37
|
-
color: variables.$color-shui-ui-1;
|
|
38
|
-
font-weight: 600;
|
|
39
|
-
padding: 12px 15px;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
td {
|
|
43
|
-
border-bottom: 1px solid rgba(variables.$color-shui-ui-6, 0.5);
|
|
44
|
-
font-size: 0.9rem;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
&.striped tr:nth-child(even) {
|
|
48
|
-
background-color: white;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
@use '../../variables.scss';
|
|
2
|
+
|
|
3
|
+
.shui .oc.table,
|
|
4
|
+
.shui.oc.table {
|
|
5
|
+
width: 100%;
|
|
6
|
+
border-collapse: collapse;
|
|
7
|
+
margin: 20px 0;
|
|
8
|
+
font-size: 1em;
|
|
9
|
+
font-family: 'Arial', sans-serif;
|
|
10
|
+
|
|
11
|
+
thead {
|
|
12
|
+
min-height: 50px;
|
|
13
|
+
height: 50px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
tr {
|
|
17
|
+
background-color: white;
|
|
18
|
+
transition: 0.1s ease;
|
|
19
|
+
border: none;
|
|
20
|
+
border-top: 0;
|
|
21
|
+
border-bottom: 0;
|
|
22
|
+
|
|
23
|
+
&:hover {
|
|
24
|
+
background-color: #F5F5F5 !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
th, td {
|
|
30
|
+
padding: 15px;
|
|
31
|
+
text-align: left;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
th {
|
|
35
|
+
background-color: transparent;
|
|
36
|
+
border-bottom: 1px solid rgba(variables.$color-shui-ui-5, 0.75);
|
|
37
|
+
color: variables.$color-shui-ui-1;
|
|
38
|
+
font-weight: 600;
|
|
39
|
+
padding: 12px 15px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
td {
|
|
43
|
+
border-bottom: 1px solid rgba(variables.$color-shui-ui-6, 0.5);
|
|
44
|
+
font-size: 0.9rem;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&.striped tr:nth-child(even) {
|
|
48
|
+
background-color: white;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
.oc-tooltip {
|
|
2
|
-
margin: 0;
|
|
3
|
-
position: absolute;
|
|
4
|
-
padding: 0.35rem 0.7rem;
|
|
5
|
-
font-size: 0.9rem;
|
|
6
|
-
font-weight: 500;
|
|
7
|
-
background-color: #F8F9FF;
|
|
8
|
-
border: 1px solid white;
|
|
9
|
-
border-radius: 0.75rem;
|
|
10
|
-
box-shadow: 0px 3px 6.5px 0px rgba(0, 0, 0, 0.20);
|
|
11
|
-
transition: 0.15s ease;
|
|
12
|
-
max-width: 400px;
|
|
13
|
-
z-index: 1000;
|
|
14
|
-
pointer-events: none;
|
|
15
|
-
animation: show-up 0.15s ease;
|
|
16
|
-
&.mouse-tracking {
|
|
17
|
-
border-top-left-radius: 0;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@keyframes show-up {
|
|
22
|
-
from {
|
|
23
|
-
opacity: 0;
|
|
24
|
-
} to {
|
|
25
|
-
opacity: 1;
|
|
26
|
-
}
|
|
1
|
+
.oc-tooltip {
|
|
2
|
+
margin: 0;
|
|
3
|
+
position: absolute;
|
|
4
|
+
padding: 0.35rem 0.7rem;
|
|
5
|
+
font-size: 0.9rem;
|
|
6
|
+
font-weight: 500;
|
|
7
|
+
background-color: #F8F9FF;
|
|
8
|
+
border: 1px solid white;
|
|
9
|
+
border-radius: 0.75rem;
|
|
10
|
+
box-shadow: 0px 3px 6.5px 0px rgba(0, 0, 0, 0.20);
|
|
11
|
+
transition: 0.15s ease;
|
|
12
|
+
max-width: 400px;
|
|
13
|
+
z-index: 1000;
|
|
14
|
+
pointer-events: none;
|
|
15
|
+
animation: show-up 0.15s ease;
|
|
16
|
+
&.mouse-tracking {
|
|
17
|
+
border-top-left-radius: 0;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@keyframes show-up {
|
|
22
|
+
from {
|
|
23
|
+
opacity: 0;
|
|
24
|
+
} to {
|
|
25
|
+
opacity: 1;
|
|
26
|
+
}
|
|
27
27
|
}
|