@hero-design/rn 8.131.0 → 8.131.1
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 +6 -0
- package/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/theme/components/filterTrigger.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
+
## 8.131.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#5125](https://github.com/Thinkei/hero-design/pull/5125) [`4ffd7dc018090ad4f36fb926266f0849a4b52984`](https://github.com/Thinkei/hero-design/commit/4ffd7dc018090ad4f36fb926266f0849a4b52984) Thanks [@tqdungit](https://github.com/tqdungit)! - [FilterTrigger] Use `secondaryOutline` border color for `outlined` variant in inactive state (was incorrectly `primary`)
|
|
8
|
+
|
|
3
9
|
## 8.131.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/es/index.js
CHANGED
|
@@ -7816,7 +7816,7 @@ var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
|
7816
7816
|
},
|
|
7817
7817
|
inactive: {
|
|
7818
7818
|
filled: theme.colors.neutralGlobalSurface,
|
|
7819
|
-
outlined: theme.colors.
|
|
7819
|
+
outlined: theme.colors.secondaryOutline,
|
|
7820
7820
|
ghost: 'transparent'
|
|
7821
7821
|
}
|
|
7822
7822
|
}
|
package/lib/index.js
CHANGED
|
@@ -7845,7 +7845,7 @@ var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
|
7845
7845
|
},
|
|
7846
7846
|
inactive: {
|
|
7847
7847
|
filled: theme.colors.neutralGlobalSurface,
|
|
7848
|
-
outlined: theme.colors.
|
|
7848
|
+
outlined: theme.colors.secondaryOutline,
|
|
7849
7849
|
ghost: 'transparent'
|
|
7850
7850
|
}
|
|
7851
7851
|
}
|
package/package.json
CHANGED