@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 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.primary,
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.primary,
7848
+ outlined: theme.colors.secondaryOutline,
7849
7849
  ghost: 'transparent'
7850
7850
  }
7851
7851
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/rn",
3
- "version": "8.131.0",
3
+ "version": "8.131.1",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -33,7 +33,7 @@ const getFilterTriggerTheme = (theme: GlobalTheme) => {
33
33
  },
34
34
  inactive: {
35
35
  filled: theme.colors.neutralGlobalSurface,
36
- outlined: theme.colors.primary,
36
+ outlined: theme.colors.secondaryOutline,
37
37
  ghost: 'transparent',
38
38
  },
39
39
  },