@fluentui-react-native/apple-theme 0.9.14 → 0.9.15

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.json CHANGED
@@ -2,7 +2,22 @@
2
2
  "name": "@fluentui-react-native/apple-theme",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 31 Mar 2022 07:25:43 GMT",
5
+ "date": "Mon, 04 Apr 2022 18:41:22 GMT",
6
+ "tag": "@fluentui-react-native/apple-theme_v0.9.15",
7
+ "version": "0.9.15",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "amchiu@microsoft.com",
12
+ "package": "@fluentui-react-native/apple-theme",
13
+ "commit": "535124a01c7ebb054cbe871a72d042fb699c6601",
14
+ "comment": "Fix button styling"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Thu, 31 Mar 2022 07:27:47 GMT",
6
21
  "tag": "@fluentui-react-native/apple-theme_v0.9.14",
7
22
  "version": "0.9.14",
8
23
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
1
1
  # Change Log - @fluentui-react-native/apple-theme
2
2
 
3
- This log was last generated on Thu, 31 Mar 2022 07:25:43 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 04 Apr 2022 18:41:22 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.9.15
8
+
9
+ Mon, 04 Apr 2022 18:41:22 GMT
10
+
11
+ ### Patches
12
+
13
+ - Fix button styling (amchiu@microsoft.com)
14
+
7
15
  ## 0.9.14
8
16
 
9
- Thu, 31 Mar 2022 07:25:43 GMT
17
+ Thu, 31 Mar 2022 07:27:47 GMT
10
18
 
11
19
  ### Patches
12
20
 
@@ -365,9 +365,9 @@ export function fallbackApplePalette() {
365
365
  defaultHoveredBorder: fluentUIApple.neutralStroke2,
366
366
  defaultHoveredContent: fluentUIApple.neutralForeground3,
367
367
  defaultHoveredIcon: fluentUIApple.neutralForeground3,
368
- defaultFocusedBackground: fluentUIApple.neutralBackground3,
368
+ defaultFocusedBackground: fluentUIApple.neutralBackground2,
369
369
  defaultFocusedBorder: fluentUIApple.neutralStroke2,
370
- defaultFocusedContent: fluentUIApple.neutralForeground3,
370
+ defaultFocusedContent: fluentUIApple.neutralForeground2,
371
371
  defaultFocusedIcon: fluentUIApple.neutralForeground3,
372
372
  defaultPressedBackground: fluentUIApple.neutralBackground2Pressed,
373
373
  defaultPressedBorder: fluentUIApple.neutralStroke2,
@@ -369,9 +369,9 @@ function fallbackApplePalette() {
369
369
  defaultHoveredBorder: fluentUIApple.neutralStroke2,
370
370
  defaultHoveredContent: fluentUIApple.neutralForeground3,
371
371
  defaultHoveredIcon: fluentUIApple.neutralForeground3,
372
- defaultFocusedBackground: fluentUIApple.neutralBackground3,
372
+ defaultFocusedBackground: fluentUIApple.neutralBackground2,
373
373
  defaultFocusedBorder: fluentUIApple.neutralStroke2,
374
- defaultFocusedContent: fluentUIApple.neutralForeground3,
374
+ defaultFocusedContent: fluentUIApple.neutralForeground2,
375
375
  defaultFocusedIcon: fluentUIApple.neutralForeground3,
376
376
  defaultPressedBackground: fluentUIApple.neutralBackground2Pressed,
377
377
  defaultPressedBorder: fluentUIApple.neutralStroke2,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui-react-native/apple-theme",
3
- "version": "0.9.14",
3
+ "version": "0.9.15",
4
4
  "description": "A FluentUI React Native theme that pulls constants from FluentUI Apple",
5
5
  "license": "MIT",
6
6
  "author": "Microsoft <fluentuinativeowners@microsoft.com>",
@@ -396,9 +396,9 @@ export function fallbackApplePalette(): ThemeColorDefinition {
396
396
  defaultHoveredContent: fluentUIApple.neutralForeground3,
397
397
  defaultHoveredIcon: fluentUIApple.neutralForeground3, //GH:728 Icon doesn't support PlatformColor
398
398
 
399
- defaultFocusedBackground: fluentUIApple.neutralBackground3,
399
+ defaultFocusedBackground: fluentUIApple.neutralBackground2,
400
400
  defaultFocusedBorder: fluentUIApple.neutralStroke2,
401
- defaultFocusedContent: fluentUIApple.neutralForeground3,
401
+ defaultFocusedContent: fluentUIApple.neutralForeground2,
402
402
  defaultFocusedIcon: fluentUIApple.neutralForeground3, //GH:728 Icon doesn't support PlatformColor
403
403
 
404
404
  defaultPressedBackground: fluentUIApple.neutralBackground2Pressed,