@fluentui-react-native/text 0.20.1 → 0.21.0
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 +35 -2
- package/CHANGELOG.md +13 -2
- package/lib/index.d.ts +2 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib-commonjs/index.d.ts +2 -1
- package/lib-commonjs/index.d.ts.map +1 -1
- package/lib-commonjs/index.js +5 -3
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +4 -4
- package/src/index.ts +2 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,40 @@
|
|
|
2
2
|
"name": "@fluentui-react-native/text",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Mon, 12 Jun 2023 17:42:47 GMT",
|
|
6
|
+
"tag": "@fluentui-react-native/text_v0.21.0",
|
|
7
|
+
"version": "0.21.0",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"author": "ayushsinghs@yahoo.in",
|
|
12
|
+
"package": "@fluentui-react-native/text",
|
|
13
|
+
"commit": "60d243e2af9f727a0265bf6a0aed49e687305f77",
|
|
14
|
+
"comment": "Changes for treeshake to work"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "beachball",
|
|
18
|
+
"package": "@fluentui-react-native/text",
|
|
19
|
+
"comment": "Bump @uifabricshared/foundation-compose to v1.14.1",
|
|
20
|
+
"commit": "60d243e2af9f727a0265bf6a0aed49e687305f77"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "beachball",
|
|
24
|
+
"package": "@fluentui-react-native/text",
|
|
25
|
+
"comment": "Bump @fluentui-react-native/framework to v0.11.0",
|
|
26
|
+
"commit": "60d243e2af9f727a0265bf6a0aed49e687305f77"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"author": "beachball",
|
|
30
|
+
"package": "@fluentui-react-native/text",
|
|
31
|
+
"comment": "Bump @fluentui-react-native/interactive-hooks to v0.24.0",
|
|
32
|
+
"commit": "60d243e2af9f727a0265bf6a0aed49e687305f77"
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"date": "Fri, 09 Jun 2023 15:29:07 GMT",
|
|
6
39
|
"tag": "@fluentui-react-native/text_v0.20.1",
|
|
7
40
|
"version": "0.20.1",
|
|
8
41
|
"comments": {
|
|
@@ -11,7 +44,7 @@
|
|
|
11
44
|
"author": "beachball",
|
|
12
45
|
"package": "@fluentui-react-native/text",
|
|
13
46
|
"comment": "Bump @fluentui-react-native/experimental-native-font-metrics to v0.4.1",
|
|
14
|
-
"commit": "
|
|
47
|
+
"commit": "1791790bbd41797f0244fef65d4e5e6b095808e9"
|
|
15
48
|
}
|
|
16
49
|
]
|
|
17
50
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
# Change Log - @fluentui-react-native/text
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Mon, 12 Jun 2023 17:42:47 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.21.0
|
|
8
|
+
|
|
9
|
+
Mon, 12 Jun 2023 17:42:47 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Changes for treeshake to work (ayushsinghs@yahoo.in)
|
|
14
|
+
- Bump @uifabricshared/foundation-compose to v1.14.1
|
|
15
|
+
- Bump @fluentui-react-native/framework to v0.11.0
|
|
16
|
+
- Bump @fluentui-react-native/interactive-hooks to v0.24.0
|
|
17
|
+
|
|
7
18
|
## 0.20.1
|
|
8
19
|
|
|
9
|
-
Fri, 09 Jun 2023 15:
|
|
20
|
+
Fri, 09 Jun 2023 15:29:07 GMT
|
|
10
21
|
|
|
11
22
|
### Patches
|
|
12
23
|
|
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { Text as TextV1 } from './Text';
|
|
2
|
-
export type {
|
|
2
|
+
export type { TextProps, TextTokens } from './Text.types';
|
|
3
|
+
export { textName as textNameV1 } from './Text.types';
|
|
3
4
|
export { Caption1, Caption1Strong, Caption2, Body1, Body1Strong, Body2, Body2Strong, Subtitle1, Subtitle1Strong, Subtitle2, Subtitle2Strong, Title1, Title1Strong, Title2, Title3, LargeTitle, Display, } from './Variants';
|
|
4
5
|
export { textName } from './deprecated/Text.types';
|
|
5
6
|
export type { ITextProps, ITextType } from './deprecated/Text.types';
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,IAAI,MAAM,EAAE,MAAM,QAAQ,CAAC;AACxC,YAAY,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,IAAI,MAAM,EAAE,MAAM,QAAQ,CAAC;AACxC,YAAY,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1D,OAAO,EAAE,QAAQ,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACtD,OAAO,EACL,QAAQ,EACR,cAAc,EACd,QAAQ,EACR,KAAK,EACL,WAAW,EACX,KAAK,EACL,WAAW,EACX,SAAS,EACT,eAAe,EACf,SAAS,EACT,eAAe,EACf,MAAM,EACN,YAAY,EACZ,MAAM,EACN,MAAM,EACN,UAAU,EACV,OAAO,GACR,MAAM,YAAY,CAAC;AAGpB,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,YAAY,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC"}
|
package/lib/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { Text as TextV1 } from './Text';
|
|
2
|
+
export { textName as textNameV1 } from './Text.types';
|
|
2
3
|
export { Caption1, Caption1Strong, Caption2, Body1, Body1Strong, Body2, Body2Strong, Subtitle1, Subtitle1Strong, Subtitle2, Subtitle2Strong, Title1, Title1Strong, Title2, Title3, LargeTitle, Display, } from './Variants';
|
|
3
4
|
/* deprecated */
|
|
4
5
|
export { textName } from './deprecated/Text.types';
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,IAAI,MAAM,EAAE,MAAM,QAAQ,CAAC;AAExC,OAAO,EACL,QAAQ,EACR,cAAc,EACd,QAAQ,EACR,KAAK,EACL,WAAW,EACX,KAAK,EACL,WAAW,EACX,SAAS,EACT,eAAe,EACf,SAAS,EACT,eAAe,EACf,MAAM,EACN,YAAY,EACZ,MAAM,EACN,MAAM,EACN,UAAU,EACV,OAAO,GACR,MAAM,YAAY,CAAC;AAEpB,gBAAgB;AAChB,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAEnD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,IAAI,MAAM,EAAE,MAAM,QAAQ,CAAC;AAExC,OAAO,EAAE,QAAQ,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACtD,OAAO,EACL,QAAQ,EACR,cAAc,EACd,QAAQ,EACR,KAAK,EACL,WAAW,EACX,KAAK,EACL,WAAW,EACX,SAAS,EACT,eAAe,EACf,SAAS,EACT,eAAe,EACf,MAAM,EACN,YAAY,EACZ,MAAM,EACN,MAAM,EACN,UAAU,EACV,OAAO,GACR,MAAM,YAAY,CAAC;AAEpB,gBAAgB;AAChB,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAEnD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC"}
|
package/lib-commonjs/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { Text as TextV1 } from './Text';
|
|
2
|
-
export type {
|
|
2
|
+
export type { TextProps, TextTokens } from './Text.types';
|
|
3
|
+
export { textName as textNameV1 } from './Text.types';
|
|
3
4
|
export { Caption1, Caption1Strong, Caption2, Body1, Body1Strong, Body2, Body2Strong, Subtitle1, Subtitle1Strong, Subtitle2, Subtitle2Strong, Title1, Title1Strong, Title2, Title3, LargeTitle, Display, } from './Variants';
|
|
4
5
|
export { textName } from './deprecated/Text.types';
|
|
5
6
|
export type { ITextProps, ITextType } from './deprecated/Text.types';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,IAAI,MAAM,EAAE,MAAM,QAAQ,CAAC;AACxC,YAAY,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,IAAI,MAAM,EAAE,MAAM,QAAQ,CAAC;AACxC,YAAY,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1D,OAAO,EAAE,QAAQ,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACtD,OAAO,EACL,QAAQ,EACR,cAAc,EACd,QAAQ,EACR,KAAK,EACL,WAAW,EACX,KAAK,EACL,WAAW,EACX,SAAS,EACT,eAAe,EACf,SAAS,EACT,eAAe,EACf,MAAM,EACN,YAAY,EACZ,MAAM,EACN,MAAM,EACN,UAAU,EACV,OAAO,GACR,MAAM,YAAY,CAAC;AAGpB,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,YAAY,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC"}
|
package/lib-commonjs/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Text = exports.textName = exports.Display = exports.LargeTitle = exports.Title3 = exports.Title2 = exports.Title1Strong = exports.Title1 = exports.Subtitle2Strong = exports.Subtitle2 = exports.Subtitle1Strong = exports.Subtitle1 = exports.Body2Strong = exports.Body2 = exports.Body1Strong = exports.Body1 = exports.Caption2 = exports.Caption1Strong = exports.Caption1 = exports.TextV1 = void 0;
|
|
3
|
+
exports.Text = exports.textName = exports.Display = exports.LargeTitle = exports.Title3 = exports.Title2 = exports.Title1Strong = exports.Title1 = exports.Subtitle2Strong = exports.Subtitle2 = exports.Subtitle1Strong = exports.Subtitle1 = exports.Body2Strong = exports.Body2 = exports.Body1Strong = exports.Body1 = exports.Caption2 = exports.Caption1Strong = exports.Caption1 = exports.textNameV1 = exports.TextV1 = void 0;
|
|
4
4
|
var Text_1 = require("./Text");
|
|
5
5
|
Object.defineProperty(exports, "TextV1", { enumerable: true, get: function () { return Text_1.Text; } });
|
|
6
|
+
var Text_types_1 = require("./Text.types");
|
|
7
|
+
Object.defineProperty(exports, "textNameV1", { enumerable: true, get: function () { return Text_types_1.textName; } });
|
|
6
8
|
var Variants_1 = require("./Variants");
|
|
7
9
|
Object.defineProperty(exports, "Caption1", { enumerable: true, get: function () { return Variants_1.Caption1; } });
|
|
8
10
|
Object.defineProperty(exports, "Caption1Strong", { enumerable: true, get: function () { return Variants_1.Caption1Strong; } });
|
|
@@ -22,8 +24,8 @@ Object.defineProperty(exports, "Title3", { enumerable: true, get: function () {
|
|
|
22
24
|
Object.defineProperty(exports, "LargeTitle", { enumerable: true, get: function () { return Variants_1.LargeTitle; } });
|
|
23
25
|
Object.defineProperty(exports, "Display", { enumerable: true, get: function () { return Variants_1.Display; } });
|
|
24
26
|
/* deprecated */
|
|
25
|
-
var
|
|
26
|
-
Object.defineProperty(exports, "textName", { enumerable: true, get: function () { return
|
|
27
|
+
var Text_types_2 = require("./deprecated/Text.types");
|
|
28
|
+
Object.defineProperty(exports, "textName", { enumerable: true, get: function () { return Text_types_2.textName; } });
|
|
27
29
|
var Text_2 = require("./deprecated/Text");
|
|
28
30
|
Object.defineProperty(exports, "Text", { enumerable: true, get: function () { return Text_2.Text; } });
|
|
29
31
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,+BAAwC;AAA/B,8FAAA,IAAI,OAAU;AAEvB,uCAkBoB;AAjBlB,oGAAA,QAAQ,OAAA;AACR,0GAAA,cAAc,OAAA;AACd,oGAAA,QAAQ,OAAA;AACR,iGAAA,KAAK,OAAA;AACL,uGAAA,WAAW,OAAA;AACX,iGAAA,KAAK,OAAA;AACL,uGAAA,WAAW,OAAA;AACX,qGAAA,SAAS,OAAA;AACT,2GAAA,eAAe,OAAA;AACf,qGAAA,SAAS,OAAA;AACT,2GAAA,eAAe,OAAA;AACf,kGAAA,MAAM,OAAA;AACN,wGAAA,YAAY,OAAA;AACZ,kGAAA,MAAM,OAAA;AACN,kGAAA,MAAM,OAAA;AACN,sGAAA,UAAU,OAAA;AACV,mGAAA,OAAO,OAAA;AAGT,gBAAgB;AAChB,sDAAmD;AAA1C,sGAAA,QAAQ,OAAA;AAEjB,0CAAyC;AAAhC,4FAAA,IAAI,OAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,+BAAwC;AAA/B,8FAAA,IAAI,OAAU;AAEvB,2CAAsD;AAA7C,wGAAA,QAAQ,OAAc;AAC/B,uCAkBoB;AAjBlB,oGAAA,QAAQ,OAAA;AACR,0GAAA,cAAc,OAAA;AACd,oGAAA,QAAQ,OAAA;AACR,iGAAA,KAAK,OAAA;AACL,uGAAA,WAAW,OAAA;AACX,iGAAA,KAAK,OAAA;AACL,uGAAA,WAAW,OAAA;AACX,qGAAA,SAAS,OAAA;AACT,2GAAA,eAAe,OAAA;AACf,qGAAA,SAAS,OAAA;AACT,2GAAA,eAAe,OAAA;AACf,kGAAA,MAAM,OAAA;AACN,wGAAA,YAAY,OAAA;AACZ,kGAAA,MAAM,OAAA;AACN,kGAAA,MAAM,OAAA;AACN,sGAAA,UAAU,OAAA;AACV,mGAAA,OAAO,OAAA;AAGT,gBAAgB;AAChB,sDAAmD;AAA1C,sGAAA,QAAQ,OAAA;AAEjB,0CAAyC;AAAhC,4FAAA,IAAI,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui-react-native/text",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
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,11 +22,11 @@
|
|
|
22
22
|
"directory": "packages/components/text"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@uifabricshared/foundation-compose": "^1.14.
|
|
25
|
+
"@uifabricshared/foundation-compose": "^1.14.1",
|
|
26
26
|
"@fluentui-react-native/adapters": ">=0.11.0 <1.0.0",
|
|
27
27
|
"@fluentui-react-native/experimental-native-font-metrics": "^0.4.1",
|
|
28
|
-
"@fluentui-react-native/framework": "0.
|
|
29
|
-
"@fluentui-react-native/interactive-hooks": ">=0.
|
|
28
|
+
"@fluentui-react-native/framework": "0.11.0",
|
|
29
|
+
"@fluentui-react-native/interactive-hooks": ">=0.24.0 <1.0.0",
|
|
30
30
|
"@fluentui-react-native/theme-tokens": ">=0.25.0 <1.0.0",
|
|
31
31
|
"@fluentui-react-native/tokens": ">=0.21.0 <1.0.0",
|
|
32
32
|
"tslib": "^2.3.1"
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { Text as TextV1 } from './Text';
|
|
2
|
-
export type {
|
|
2
|
+
export type { TextProps, TextTokens } from './Text.types';
|
|
3
|
+
export { textName as textNameV1 } from './Text.types';
|
|
3
4
|
export {
|
|
4
5
|
Caption1,
|
|
5
6
|
Caption1Strong,
|