ngx-tethys 16.2.3 → 16.2.4
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 +9 -0
- package/button/styles/button-icon.scss +12 -3
- package/button/styles/mixin.scss +2 -6
- package/esm2022/version.mjs +2 -2
- package/fesm2022/ngx-tethys.mjs +1 -1
- package/fesm2022/ngx-tethys.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/version.d.ts +1 -1
- package/schematics/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [16.2.4](https://github.com/atinc/ngx-tethys/compare/16.2.3...16.2.4) (2024-03-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **button:** fix button jitter upon hovering when thyShape is circle-dashed or circle-solid #INFR-11703 [@wumeimin](https://github.com/wumeimin) [@xinglu](https://github.com/xinglu) ([#3037](https://github.com/atinc/ngx-tethys/issues/3037)) ([f50dc06](https://github.com/atinc/ngx-tethys/commit/f50dc06050d4b7235fe562c449c393ea71bf4a0e)), closes [#INFR-11703](https://github.com/atinc/ngx-tethys/issues/INFR-11703)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
## [16.2.3](https://github.com/atinc/ngx-tethys/compare/16.2.2...16.2.3) (2024-02-29)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -43,14 +43,18 @@
|
|
|
43
43
|
.wtf,
|
|
44
44
|
.thy-icon {
|
|
45
45
|
color: variables.$btn-icon-color;
|
|
46
|
-
border-color:
|
|
47
|
-
border-width:
|
|
46
|
+
border-color: transparent;
|
|
47
|
+
border-width: 2px;
|
|
48
48
|
border-radius: 50%;
|
|
49
49
|
line-height: 1;
|
|
50
|
+
|
|
51
|
+
outline-width: 1px;
|
|
52
|
+
outline-color: variables.$btn-icon-color;
|
|
53
|
+
outline-offset: -1px;
|
|
50
54
|
}
|
|
51
55
|
|
|
52
56
|
.thy-icon {
|
|
53
|
-
transition: border 200ms, padding 200ms;
|
|
57
|
+
transition: border 200ms, padding 200ms, outline 200ms;
|
|
54
58
|
}
|
|
55
59
|
|
|
56
60
|
.wtf {
|
|
@@ -65,6 +69,7 @@
|
|
|
65
69
|
.wtf,
|
|
66
70
|
.thy-icon {
|
|
67
71
|
border-width: 2px;
|
|
72
|
+
outline: 0 none;
|
|
68
73
|
}
|
|
69
74
|
&:not(:hover):not(.invalid):not(.active):not(.btn-icon-active).circle-solid {
|
|
70
75
|
i,
|
|
@@ -91,6 +96,7 @@
|
|
|
91
96
|
border-color: variables.$primary;
|
|
92
97
|
color: variables.$primary;
|
|
93
98
|
border-style: solid;
|
|
99
|
+
outline: 0 none;
|
|
94
100
|
}
|
|
95
101
|
}
|
|
96
102
|
&.invalid {
|
|
@@ -100,6 +106,7 @@
|
|
|
100
106
|
.thy-icon {
|
|
101
107
|
border-color: variables.$danger;
|
|
102
108
|
color: variables.$danger;
|
|
109
|
+
outline: 0 none;
|
|
103
110
|
}
|
|
104
111
|
&:hover,
|
|
105
112
|
&:focus {
|
|
@@ -116,6 +123,7 @@
|
|
|
116
123
|
.wtf,
|
|
117
124
|
.thy-icon {
|
|
118
125
|
border-style: dashed;
|
|
126
|
+
outline-style: dashed;
|
|
119
127
|
}
|
|
120
128
|
}
|
|
121
129
|
&.circle-solid {
|
|
@@ -123,6 +131,7 @@
|
|
|
123
131
|
.wtf,
|
|
124
132
|
.thy-icon {
|
|
125
133
|
border-style: solid;
|
|
134
|
+
outline-style: solid;
|
|
126
135
|
}
|
|
127
136
|
}
|
|
128
137
|
|
package/button/styles/mixin.scss
CHANGED
|
@@ -191,17 +191,12 @@
|
|
|
191
191
|
i,
|
|
192
192
|
.wtf,
|
|
193
193
|
.thy-icon {
|
|
194
|
-
padding: $round-padding;
|
|
194
|
+
padding: $round-padding - variables.$btn-icon-circle-padding-difference;
|
|
195
195
|
font-size: $btn-icon-circle-font-size;
|
|
196
196
|
width: $diameter;
|
|
197
197
|
height: $diameter;
|
|
198
198
|
}
|
|
199
199
|
&.border-thick {
|
|
200
|
-
i,
|
|
201
|
-
.wtf,
|
|
202
|
-
.thy-icon {
|
|
203
|
-
padding: $round-padding - variables.$btn-icon-circle-padding-difference;
|
|
204
|
-
}
|
|
205
200
|
@include hover.hover-focus {
|
|
206
201
|
i,
|
|
207
202
|
.wtf {
|
|
@@ -251,6 +246,7 @@
|
|
|
251
246
|
.thy-icon {
|
|
252
247
|
border-style: solid;
|
|
253
248
|
border-width: 2px;
|
|
249
|
+
outline: 0 none;
|
|
254
250
|
padding: $round-padding - variables.$btn-icon-circle-padding-difference;
|
|
255
251
|
}
|
|
256
252
|
}
|
package/esm2022/version.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Version } from '@angular/core';
|
|
2
|
-
export const VERSION = new Version('16.2.
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
export const VERSION = new Version('16.2.4');
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFeEMsTUFBTSxDQUFDLE1BQU0sT0FBTyxHQUFHLElBQUksT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVmVyc2lvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgY29uc3QgVkVSU0lPTiA9IG5ldyBWZXJzaW9uKCcxNi4yLjQnKTtcbiJdfQ==
|
package/fesm2022/ngx-tethys.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngx-tethys.mjs","sources":["../../../src/version.ts","../../../src/ngx-tethys.ts"],"sourcesContent":["import { Version } from '@angular/core';\n\nexport const VERSION = new Version('16.2.
|
|
1
|
+
{"version":3,"file":"ngx-tethys.mjs","sources":["../../../src/version.ts","../../../src/ngx-tethys.ts"],"sourcesContent":["import { Version } from '@angular/core';\n\nexport const VERSION = new Version('16.2.4');\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;MAEa,OAAO,GAAG,IAAI,OAAO,CAAC,QAAQ;;ACF3C;;AAEG;;;;"}
|
package/package.json
CHANGED
package/schematics/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "16.2.
|
|
1
|
+
export declare const VERSION = "16.2.4";
|
package/schematics/version.js
CHANGED