@anglr/common 19.2.0-beta.20240125053304 → 20.0.0-beta.20240529082303

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 (50) hide show
  1. package/changelog.md +19 -10
  2. package/es2022/floating-ui/src/services/floatingUiDomPosition.service.js +2 -1
  3. package/es2022/floating-ui/src/services/floatingUiDomPosition.service.js.map +1 -1
  4. package/es2022/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +3 -2
  5. package/es2022/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js.map +1 -1
  6. package/es2022/material/src/modules/debugDataCopyClick.module.js +9 -8
  7. package/es2022/material/src/modules/debugDataCopyClick.module.js.map +1 -1
  8. package/es2022/src/directives/ellipsisTooltip/ellipsisTooltip.directive.js +5 -1
  9. package/es2022/src/directives/ellipsisTooltip/ellipsisTooltip.directive.js.map +1 -1
  10. package/es2022/src/modules/commonUtils.module.js +7 -3
  11. package/es2022/src/modules/commonUtils.module.js.map +1 -1
  12. package/es2022/src/modules/debugData/components/debugData/debugData.component.js +8 -43
  13. package/es2022/src/modules/debugData/components/debugData/debugData.component.js.map +1 -1
  14. package/es2022/src/modules/debugData/modules/debugData.module.js +4 -8
  15. package/es2022/src/modules/debugData/modules/debugData.module.js.map +1 -1
  16. package/es2022/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +4 -19
  17. package/es2022/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js.map +1 -1
  18. package/es2022/src/modules/tooltip/directives/tooltip/tooltip.directive.js +11 -6
  19. package/es2022/src/modules/tooltip/directives/tooltip/tooltip.directive.js.map +1 -1
  20. package/es2022/src/pipes/index.js +1 -0
  21. package/es2022/src/pipes/index.js.map +1 -1
  22. package/es2022/src/pipes/trimText/trimText.pipe.js +29 -0
  23. package/es2022/src/pipes/trimText/trimText.pipe.js.map +1 -0
  24. package/floating-ui/src/services/floatingUiDomPosition.service.d.ts.map +1 -1
  25. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts +2 -2
  26. package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts.map +1 -1
  27. package/material/src/modules/debugDataCopyClick.module.d.ts +3 -3
  28. package/material/src/modules/debugDataCopyClick.module.d.ts.map +1 -1
  29. package/package.json +1 -1
  30. package/src/directives/ellipsisTooltip/ellipsisTooltip.directive.d.ts.map +1 -1
  31. package/src/modules/commonUtils.module.d.ts +2 -1
  32. package/src/modules/commonUtils.module.d.ts.map +1 -1
  33. package/src/modules/debugData/components/debugData/debugData.component.css +1 -0
  34. package/src/modules/debugData/components/debugData/debugData.component.d.ts +4 -24
  35. package/src/modules/debugData/components/debugData/debugData.component.d.ts.map +1 -1
  36. package/src/modules/debugData/components/debugData/debugData.component.html +4 -3
  37. package/src/modules/debugData/modules/debugData.module.d.ts +1 -2
  38. package/src/modules/debugData/modules/debugData.module.d.ts.map +1 -1
  39. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts +2 -10
  40. package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts.map +1 -1
  41. package/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts +5 -6
  42. package/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts.map +1 -1
  43. package/src/pipes/index.d.ts +1 -0
  44. package/src/pipes/index.d.ts.map +1 -1
  45. package/src/pipes/trimText/trimText.pipe.d.ts +17 -0
  46. package/src/pipes/trimText/trimText.pipe.d.ts.map +1 -0
  47. package/styles/core/_mixins.scss +14 -0
  48. package/styles/core/_theme.scss +4 -0
  49. package/version.bak +1 -1
  50. package/src/style.scss +0 -87
package/src/style.scss DELETED
@@ -1,87 +0,0 @@
1
- .progress-overlay-div
2
- {
3
- position: absolute;
4
- transition: all 250ms linear;
5
- background-color: rgba(0, 0, 0, 0.45);
6
- height: 100%;
7
- width: 100%;
8
- top: 0;
9
- left: 0;
10
- z-index: 100;
11
- overflow: hidden;
12
-
13
- & > div.spinner
14
- {
15
- border: 3px solid #eee;
16
- border-bottom: none;
17
- border-top-left-radius: 24px;
18
- border-top-right-radius: 24px;
19
- height: 12px;
20
- margin-left: auto;
21
- margin-right: auto;
22
- position: relative;
23
- top: calc(50% - 6px);
24
- width: 24px;
25
- animation-name: rotate-progress-overlay;
26
- animation-duration: 450ms;
27
- animation-iteration-count: infinite;
28
- animation-timing-function: linear;
29
- transform-origin: calc(50%) calc(50% + 6px);
30
- }
31
-
32
- & > .messages
33
- {
34
- color: #eee;
35
- top: calc(50% + 12px);
36
- position: relative;
37
- text-align: center;
38
- font-weight: bold;
39
- display: flex;
40
- flex-direction: column-reverse;
41
-
42
- .message-0,
43
- .message-1,
44
- .message-2,
45
- .message-out
46
- {
47
- transition: all 500ms;
48
- position: absolute;
49
- width: 100%;
50
- top: 0;
51
- }
52
-
53
- .message-1
54
- {
55
- transform: scale3d(0.7, 0.7, 0.7) translateZ(-20px) translateY(20px);
56
- opacity: 0.8;
57
- }
58
-
59
- .message-2
60
- {
61
- transform: scale3d(0.35, 0.35, 0.35) translateZ(-40px) translateY(80px);
62
- opacity: 0.5;
63
- }
64
-
65
- .message-out
66
- {
67
- transform: scale3d(0, 0, 0) translateZ(-100px) translateY(160px);
68
- }
69
- }
70
- }
71
-
72
- debug-data
73
- {
74
- color: #2CB9FF;
75
- }
76
-
77
- @keyframes rotate-progress-overlay
78
- {
79
- from
80
- {
81
- transform: rotate(0deg);
82
- }
83
- to
84
- {
85
- transform: rotate(360deg);
86
- }
87
- }