otimus-library 0.2.52 → 0.2.53
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 +5 -5
- package/esm2022/lib/components/oc-accordion-item/oc-accordion-item.component.mjs +5 -5
- package/esm2022/lib/components/oc-autocomplete/oc-autocomplete.component.mjs +5 -5
- package/esm2022/lib/components/oc-badge/oc-badge.component.mjs +5 -5
- package/esm2022/lib/components/oc-checkbox/oc-checkbox.component.mjs +6 -6
- package/esm2022/lib/components/oc-chip/oc-chip.component.mjs +5 -5
- package/esm2022/lib/components/oc-filter/oc-filter.component.mjs +5 -5
- package/esm2022/lib/components/oc-input/oc-input.component.mjs +5 -5
- package/esm2022/lib/components/oc-key-value/oc-key-value.component.mjs +5 -5
- package/esm2022/lib/components/oc-log/oc-log.component.mjs +5 -5
- package/esm2022/lib/components/oc-menu/oc-menu.component.mjs +5 -5
- package/esm2022/lib/components/oc-modal/oc-modal.component.mjs +5 -5
- package/esm2022/lib/components/oc-modal-footer/oc-modal-footer.component.mjs +5 -5
- package/esm2022/lib/components/oc-not-found/oc-not-found.component.mjs +5 -5
- package/esm2022/lib/components/oc-pagination/oc-pagination.component.mjs +5 -5
- package/esm2022/lib/components/oc-profile/oc-profile.component.mjs +5 -5
- package/esm2022/lib/components/oc-step/oc-step.component.mjs +5 -5
- package/esm2022/lib/components/oc-stepper/oc-stepper.component.mjs +5 -5
- package/esm2022/lib/components/oc-tab/oc-tab.component.mjs +5 -5
- package/esm2022/lib/components/oc-tabs/oc-tabs.component.mjs +5 -5
- package/esm2022/lib/components/oc-toast/oc-toast.component.mjs +5 -5
- package/esm2022/lib/components/oc-toggle/oc-toggle.component.mjs +5 -5
- package/esm2022/lib/directives/oc-tooltip/oc-tooltip.directive.mjs +91 -65
- 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 +11 -11
- package/esm2022/lib/otimus-library.service.mjs +4 -4
- package/esm2022/lib/services/internationalization.service.mjs +4 -4
- package/esm2022/lib/services/oc-toast.service.mjs +4 -4
- package/esm2022/lib/services/style-theme.service.mjs +4 -4
- package/esm2022/public-api.mjs +1 -1
- package/fesm2022/otimus-library.mjs +201 -175
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/lib/directives/oc-tooltip/oc-tooltip.directive.d.ts +10 -7
- package/package.json +1 -1
- 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 +69 -69
- 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 +22 -22
- package/styles/states.scss +5 -5
- package/styles/styles.scss +46 -46
- package/styles/variables.scss +47 -47
|
@@ -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
|
}
|