otimus-library 0.2.88 → 0.2.90

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.
Files changed (59) hide show
  1. package/README.md +26 -26
  2. package/esm2022/lib/components/oc-accordion/oc-accordion.component.mjs +3 -3
  3. package/esm2022/lib/components/oc-accordion-item/oc-accordion-item.component.mjs +3 -3
  4. package/esm2022/lib/components/oc-autocomplete/oc-autocomplete.component.mjs +23 -3
  5. package/esm2022/lib/components/oc-badge/oc-badge.component.mjs +3 -3
  6. package/esm2022/lib/components/oc-button-menu/oc-button-menu.component.mjs +3 -3
  7. package/esm2022/lib/components/oc-checkbox/oc-checkbox.component.mjs +3 -3
  8. package/esm2022/lib/components/oc-chip/oc-chip.component.mjs +3 -3
  9. package/esm2022/lib/components/oc-date-select/oc-date-select.component.mjs +3 -3
  10. package/esm2022/lib/components/oc-filter/oc-filter.component.mjs +3 -3
  11. package/esm2022/lib/components/oc-input/oc-input.component.mjs +3 -3
  12. package/esm2022/lib/components/oc-key-value/oc-key-value.component.mjs +3 -3
  13. package/esm2022/lib/components/oc-log/oc-log.component.mjs +3 -3
  14. package/esm2022/lib/components/oc-menu/oc-menu.component.mjs +3 -3
  15. package/esm2022/lib/components/oc-message/oc-message.component.mjs +3 -3
  16. package/esm2022/lib/components/oc-modal/oc-modal.component.mjs +3 -3
  17. package/esm2022/lib/components/oc-modal-footer/oc-modal-footer.component.mjs +3 -3
  18. package/esm2022/lib/components/oc-not-found/oc-not-found.component.mjs +3 -3
  19. package/esm2022/lib/components/oc-pagination/oc-pagination.component.mjs +3 -3
  20. package/esm2022/lib/components/oc-profile/oc-profile.component.mjs +3 -3
  21. package/esm2022/lib/components/oc-progress/oc-progress.component.mjs +3 -3
  22. package/esm2022/lib/components/oc-step/oc-step.component.mjs +3 -3
  23. package/esm2022/lib/components/oc-stepper/oc-stepper.component.mjs +3 -3
  24. package/esm2022/lib/components/oc-tab/oc-tab.component.mjs +3 -3
  25. package/esm2022/lib/components/oc-tabs/oc-tabs.component.mjs +3 -3
  26. package/esm2022/lib/components/oc-toast/oc-toast.component.mjs +3 -3
  27. package/esm2022/lib/components/oc-toggle/oc-toggle.component.mjs +3 -3
  28. package/esm2022/lib/directives/oc-tooltip/oc-tooltip.directive.mjs +1 -1
  29. package/esm2022/lib/interfaces/oc-autocomplete.mjs +1 -1
  30. package/esm2022/lib/interfaces/oc-menu.mjs +1 -1
  31. package/esm2022/lib/interfaces/oc-style-theme.mjs +1 -1
  32. package/esm2022/lib/interfaces/oc-toast.mjs +1 -1
  33. package/esm2022/lib/otimus-library.component.mjs +9 -9
  34. package/esm2022/lib/otimus-library.service.mjs +1 -1
  35. package/esm2022/lib/services/internationalization.service.mjs +1 -1
  36. package/esm2022/lib/services/oc-toast.service.mjs +1 -1
  37. package/esm2022/lib/services/style-theme.service.mjs +1 -1
  38. package/esm2022/public-api.mjs +1 -1
  39. package/fesm2022/otimus-library.mjs +80 -60
  40. package/fesm2022/otimus-library.mjs.map +1 -1
  41. package/lib/components/oc-autocomplete/oc-autocomplete.component.d.ts +4 -1
  42. package/package.json +1 -1
  43. package/styles/colors.scss +70 -70
  44. package/styles/components/buttons/buttons.scss +225 -225
  45. package/styles/components/buttons/buttons.shui.scss +61 -61
  46. package/styles/components/index.scss +2 -2
  47. package/styles/components/inputs/inputs.scss +248 -248
  48. package/styles/components/inputs/inputs.shui.scss +212 -212
  49. package/styles/components/table/table.scss +98 -98
  50. package/styles/components/table/table.shui.scss +50 -50
  51. package/styles/components/tooltip.scss +26 -26
  52. package/styles/grid.scss +1122 -1122
  53. package/styles/patterns/shui/colors.shui.scss +154 -154
  54. package/styles/patterns/shui/fonts.shui.scss +65 -65
  55. package/styles/patterns/shui/index.shui.scss +24 -24
  56. package/styles/patterns/shui/variables.shui.scss +23 -23
  57. package/styles/states.scss +5 -5
  58. package/styles/styles.scss +46 -46
  59. 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
  }