@anglr/common 19.2.0-beta.20240125052632 → 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.
- package/changelog.md +19 -1
- package/es2022/floating-ui/src/services/floatingUiDomPosition.service.js +2 -1
- package/es2022/floating-ui/src/services/floatingUiDomPosition.service.js.map +1 -1
- package/es2022/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js +3 -2
- package/es2022/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.js.map +1 -1
- package/es2022/material/src/modules/debugDataCopyClick.module.js +9 -8
- package/es2022/material/src/modules/debugDataCopyClick.module.js.map +1 -1
- package/es2022/src/directives/ellipsisTooltip/ellipsisTooltip.directive.js +38 -4
- package/es2022/src/directives/ellipsisTooltip/ellipsisTooltip.directive.js.map +1 -1
- package/es2022/src/modules/commonUtils.module.js +7 -3
- package/es2022/src/modules/commonUtils.module.js.map +1 -1
- package/es2022/src/modules/debugData/components/debugData/debugData.component.js +8 -43
- package/es2022/src/modules/debugData/components/debugData/debugData.component.js.map +1 -1
- package/es2022/src/modules/debugData/modules/debugData.module.js +4 -8
- package/es2022/src/modules/debugData/modules/debugData.module.js.map +1 -1
- package/es2022/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js +4 -19
- package/es2022/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.js.map +1 -1
- package/es2022/src/modules/tooltip/directives/tooltip/tooltip.directive.js +11 -6
- package/es2022/src/modules/tooltip/directives/tooltip/tooltip.directive.js.map +1 -1
- package/es2022/src/pipes/index.js +1 -0
- package/es2022/src/pipes/index.js.map +1 -1
- package/es2022/src/pipes/trimText/trimText.pipe.js +29 -0
- package/es2022/src/pipes/trimText/trimText.pipe.js.map +1 -0
- package/floating-ui/src/services/floatingUiDomPosition.service.d.ts.map +1 -1
- package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts +2 -2
- package/material/src/directives/debugDataCopyClick/debugDataCopyClick.directive.d.ts.map +1 -1
- package/material/src/modules/debugDataCopyClick.module.d.ts +3 -3
- package/material/src/modules/debugDataCopyClick.module.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/directives/ellipsisTooltip/ellipsisTooltip.directive.d.ts +13 -1
- package/src/directives/ellipsisTooltip/ellipsisTooltip.directive.d.ts.map +1 -1
- package/src/modules/commonUtils.module.d.ts +2 -1
- package/src/modules/commonUtils.module.d.ts.map +1 -1
- package/src/modules/debugData/components/debugData/debugData.component.css +1 -0
- package/src/modules/debugData/components/debugData/debugData.component.d.ts +4 -24
- package/src/modules/debugData/components/debugData/debugData.component.d.ts.map +1 -1
- package/src/modules/debugData/components/debugData/debugData.component.html +4 -3
- package/src/modules/debugData/modules/debugData.module.d.ts +1 -2
- package/src/modules/debugData/modules/debugData.module.d.ts.map +1 -1
- package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts +2 -10
- package/src/modules/debugData/services/debugDataEnabled/debugDataEnabled.service.d.ts.map +1 -1
- package/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts +5 -6
- package/src/modules/tooltip/directives/tooltip/tooltip.directive.d.ts.map +1 -1
- package/src/pipes/index.d.ts +1 -0
- package/src/pipes/index.d.ts.map +1 -1
- package/src/pipes/trimText/trimText.pipe.d.ts +17 -0
- package/src/pipes/trimText/trimText.pipe.d.ts.map +1 -0
- package/styles/core/_mixins.scss +14 -0
- package/styles/core/_theme.scss +4 -0
- package/version.bak +1 -1
- package/src/style.scss +0 -87
package/styles/core/_mixins.scss
CHANGED
|
@@ -26,10 +26,19 @@
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
@mixin buildThemeColorsDebugData($theme)
|
|
30
|
+
{
|
|
31
|
+
@if $theme
|
|
32
|
+
{
|
|
33
|
+
--common-debugData-foreground: #{map.get(map.get($theme, 'debugData'), 'foreground')};
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
29
37
|
@mixin buildThemeColors($theme)
|
|
30
38
|
{
|
|
31
39
|
@include buildThemeColorsTooltip($theme);
|
|
32
40
|
@include buildThemeColorsMultiButton($theme);
|
|
41
|
+
@include buildThemeColorsDebugData($theme);
|
|
33
42
|
}
|
|
34
43
|
|
|
35
44
|
@mixin buildThemeCssMisc
|
|
@@ -66,6 +75,11 @@
|
|
|
66
75
|
@include buildThemeCssMultiButton();
|
|
67
76
|
}
|
|
68
77
|
|
|
78
|
+
@mixin buildThemeDebugData($theme)
|
|
79
|
+
{
|
|
80
|
+
@include buildThemeColorsDebugData($theme);
|
|
81
|
+
}
|
|
82
|
+
|
|
69
83
|
@mixin buildTheme($theme)
|
|
70
84
|
{
|
|
71
85
|
@include buildThemeColors($theme);
|
package/styles/core/_theme.scss
CHANGED
package/version.bak
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
20.0.0-beta.20240529082303
|
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
|
-
}
|