@fiscozen/icons 1.0.2 → 1.0.3
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 +8 -0
- package/dist/icons.js +2 -1
- package/dist/icons.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/FzIcon.vue +1 -1
- package/src/__tests__/__snapshots__/FzIcon.spec.ts.snap +5 -5
- package/src/__tests__/__snapshots__/FzIconBackground.spec.ts.snap +6 -6
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @fiscozen/icons
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3428436: fix(FzIcon): prevent icon shrinking in flex containers on Firefox and Safari
|
|
8
|
+
|
|
9
|
+
Add `shrink-0` to the icon container to prevent flex shrink from reducing icon dimensions below their intended size. This fixes a visual regression where icons in FzSelect (and potentially other flex-based layouts) would shrink from 20x20 to 18.5x20 in Firefox and Safari when the dropdown opens.
|
|
10
|
+
|
|
3
11
|
## 1.0.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|