@fluentui-react-native/text 0.19.13 → 0.19.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,61 @@
2
2
  "name": "@fluentui-react-native/text",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 20 Jan 2023 18:04:28 GMT",
5
+ "date": "Wed, 25 Jan 2023 21:28:23 GMT",
6
+ "tag": "@fluentui-react-native/text_v0.19.15",
7
+ "version": "0.19.15",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "@fluentui-react-native/text",
13
+ "comment": "Bump @uifabricshared/foundation-compose to v1.12.36",
14
+ "commit": "391f3d691e286300dfad37cad539bed54d4436b4"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui-react-native/text",
19
+ "comment": "Bump @fluentui-react-native/framework to v0.8.36",
20
+ "commit": "391f3d691e286300dfad37cad539bed54d4436b4"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui-react-native/text",
25
+ "comment": "Bump @fluentui-react-native/interactive-hooks to v0.22.13",
26
+ "commit": "391f3d691e286300dfad37cad539bed54d4436b4"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui-react-native/text",
31
+ "comment": "Bump @fluentui-react-native/theme-tokens to v0.24.0",
32
+ "commit": "391f3d691e286300dfad37cad539bed54d4436b4"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui-react-native/text",
37
+ "comment": "Bump @fluentui-react-native/tokens to v0.20.5",
38
+ "commit": "391f3d691e286300dfad37cad539bed54d4436b4"
39
+ }
40
+ ]
41
+ }
42
+ },
43
+ {
44
+ "date": "Fri, 20 Jan 2023 21:49:21 GMT",
45
+ "tag": "@fluentui-react-native/text_v0.19.14",
46
+ "version": "0.19.14",
47
+ "comments": {
48
+ "patch": [
49
+ {
50
+ "author": "adgleitm@microsoft.com",
51
+ "package": "@fluentui-react-native/text",
52
+ "commit": "deddda487f4054e6d16f9fca34cedd2b8547da65",
53
+ "comment": "Move Text part of typography docs to Text README"
54
+ }
55
+ ]
56
+ }
57
+ },
58
+ {
59
+ "date": "Fri, 20 Jan 2023 18:06:46 GMT",
6
60
  "tag": "@fluentui-react-native/text_v0.19.13",
7
61
  "version": "0.19.13",
8
62
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,32 @@
1
1
  # Change Log - @fluentui-react-native/text
2
2
 
3
- This log was last generated on Fri, 20 Jan 2023 18:04:28 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 25 Jan 2023 21:28:23 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.19.15
8
+
9
+ Wed, 25 Jan 2023 21:28:23 GMT
10
+
11
+ ### Patches
12
+
13
+ - Bump @uifabricshared/foundation-compose to v1.12.36
14
+ - Bump @fluentui-react-native/framework to v0.8.36
15
+ - Bump @fluentui-react-native/interactive-hooks to v0.22.13
16
+ - Bump @fluentui-react-native/theme-tokens to v0.24.0
17
+ - Bump @fluentui-react-native/tokens to v0.20.5
18
+
19
+ ## 0.19.14
20
+
21
+ Fri, 20 Jan 2023 21:49:21 GMT
22
+
23
+ ### Patches
24
+
25
+ - Move Text part of typography docs to Text README (adgleitm@microsoft.com)
26
+
7
27
  ## 0.19.13
8
28
 
9
- Fri, 20 Jan 2023 18:04:28 GMT
29
+ Fri, 20 Jan 2023 18:06:46 GMT
10
30
 
11
31
  ### Patches
12
32
 
package/README.md CHANGED
@@ -2,4 +2,17 @@
2
2
 
3
3
  A cross-platform Text component using the Fluent Design System.
4
4
 
5
- Text V1 supported platforms: win32
5
+ Text elements can be specified either by passing a `variant` [typography token](../../../docs/pages/Theming/Tokens/Basics.md#typography) into a `TextV1` element or by using predefined JSX types. For example:
6
+
7
+ ```tsx
8
+ import { Body1, TextV1 } from '@fluentui-react-native/text';
9
+
10
+ const myText = <TextV1 variant="body1">Here is some body text</TextV1>;
11
+ const moreText = <Body1>Here is some more body text</Body1>;
12
+ ```
13
+
14
+ The former is better if you want to have more fine control over the appearance of your text, while the latter is better if you're looking for the simplest way to add a pre-styled text component.
15
+
16
+ See [SPEC.md](./SPEC.md) for more implementation details.
17
+
18
+ Text V1 supported platforms: win32
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui-react-native/text",
3
- "version": "0.19.13",
3
+ "version": "0.19.15",
4
4
  "description": "A cross-platform Text component using the Fluent Design System",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -22,13 +22,13 @@
22
22
  "directory": "packages/components/text"
23
23
  },
24
24
  "dependencies": {
25
- "@uifabricshared/foundation-compose": "^1.12.35",
25
+ "@uifabricshared/foundation-compose": "^1.12.36",
26
26
  "@fluentui-react-native/adapters": ">=0.10.0 <1.0.0",
27
27
  "@fluentui-react-native/experimental-native-font-metrics": "^0.3.0",
28
- "@fluentui-react-native/framework": "0.8.35",
29
- "@fluentui-react-native/interactive-hooks": ">=0.22.12 <1.0.0",
30
- "@fluentui-react-native/theme-tokens": ">=0.23.2 <1.0.0",
31
- "@fluentui-react-native/tokens": ">=0.20.4 <1.0.0",
28
+ "@fluentui-react-native/framework": "0.8.36",
29
+ "@fluentui-react-native/interactive-hooks": ">=0.22.13 <1.0.0",
30
+ "@fluentui-react-native/theme-tokens": ">=0.24.0 <1.0.0",
31
+ "@fluentui-react-native/tokens": ">=0.20.5 <1.0.0",
32
32
  "tslib": "^2.3.1"
33
33
  },
34
34
  "devDependencies": {