@fluentui-react-native/menu 1.2.16 → 1.2.17

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/menu",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 10 Jan 2023 21:36:31 GMT",
5
+ "date": "Wed, 11 Jan 2023 14:59:02 GMT",
6
+ "tag": "@fluentui-react-native/menu_v1.2.17",
7
+ "version": "1.2.17",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "amchiu@microsoft.com",
12
+ "package": "@fluentui-react-native/menu",
13
+ "commit": "c4cc101a87ee75f684731e3f2cab24bea5acb5df",
14
+ "comment": "Update MenuDivider margin"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Tue, 10 Jan 2023 21:36:52 GMT",
6
21
  "tag": "@fluentui-react-native/menu_v1.2.16",
7
22
  "version": "1.2.16",
8
23
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
1
1
  # Change Log - @fluentui-react-native/menu
2
2
 
3
- This log was last generated on Tue, 10 Jan 2023 21:36:31 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 11 Jan 2023 14:59:02 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.2.17
8
+
9
+ Wed, 11 Jan 2023 14:59:02 GMT
10
+
11
+ ### Patches
12
+
13
+ - Update MenuDivider margin (amchiu@microsoft.com)
14
+
7
15
  ## 1.2.16
8
16
 
9
- Tue, 10 Jan 2023 21:36:31 GMT
17
+ Tue, 10 Jan 2023 21:36:52 GMT
10
18
 
11
19
  ### Patches
12
20
 
@@ -2,6 +2,6 @@ import { globalTokens } from '@fluentui-react-native/theme-tokens';
2
2
  export var defaultMenuDividerTokens = function (t) { return ({
3
3
  backgroundColor: t.colors.neutralStroke2,
4
4
  height: globalTokens.stroke.width10,
5
- margin: globalTokens.size20,
5
+ margin: globalTokens.size40,
6
6
  }); };
7
7
  //# sourceMappingURL=MenuDividerTokens.macos.js.map
@@ -5,7 +5,7 @@ var theme_tokens_1 = require("@fluentui-react-native/theme-tokens");
5
5
  var defaultMenuDividerTokens = function (t) { return ({
6
6
  backgroundColor: t.colors.neutralStroke2,
7
7
  height: theme_tokens_1.globalTokens.stroke.width10,
8
- margin: theme_tokens_1.globalTokens.size20,
8
+ margin: theme_tokens_1.globalTokens.size40,
9
9
  }); };
10
10
  exports.defaultMenuDividerTokens = defaultMenuDividerTokens;
11
11
  //# sourceMappingURL=MenuDividerTokens.macos.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui-react-native/menu",
3
- "version": "1.2.16",
3
+ "version": "1.2.17",
4
4
  "description": "A cross-platform Menu component using the Fluent Design System",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -6,5 +6,5 @@ import { MenuDividerTokens } from './MenuDivider.types';
6
6
  export const defaultMenuDividerTokens: TokenSettings<MenuDividerTokens, Theme> = (t: Theme): MenuDividerTokens => ({
7
7
  backgroundColor: t.colors.neutralStroke2,
8
8
  height: globalTokens.stroke.width10,
9
- margin: globalTokens.size20,
9
+ margin: globalTokens.size40,
10
10
  });