@fluentui/react-text 0.0.0-nightly050f89bf0020211102.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.
Files changed (244) hide show
  1. package/CHANGELOG.json +1277 -0
  2. package/CHANGELOG.md +471 -0
  3. package/LICENSE +15 -0
  4. package/MIGRATION.md +680 -0
  5. package/README.md +99 -0
  6. package/Spec.md +162 -0
  7. package/assets/typography-examples.gif +0 -0
  8. package/dist/react-text.d.ts +163 -0
  9. package/lib/Body.d.ts +1 -0
  10. package/lib/Body.js +2 -0
  11. package/lib/Body.js.map +1 -0
  12. package/lib/Caption.d.ts +1 -0
  13. package/lib/Caption.js +2 -0
  14. package/lib/Caption.js.map +1 -0
  15. package/lib/Display.d.ts +1 -0
  16. package/lib/Display.js +2 -0
  17. package/lib/Display.js.map +1 -0
  18. package/lib/Headline.d.ts +1 -0
  19. package/lib/Headline.js +2 -0
  20. package/lib/Headline.js.map +1 -0
  21. package/lib/LargeTitle.d.ts +1 -0
  22. package/lib/LargeTitle.js +2 -0
  23. package/lib/LargeTitle.js.map +1 -0
  24. package/lib/Subheadline.d.ts +1 -0
  25. package/lib/Subheadline.js +2 -0
  26. package/lib/Subheadline.js.map +1 -0
  27. package/lib/Text.d.ts +1 -0
  28. package/lib/Text.js +2 -0
  29. package/lib/Text.js.map +1 -0
  30. package/lib/Title1.d.ts +1 -0
  31. package/lib/Title1.js +2 -0
  32. package/lib/Title1.js.map +1 -0
  33. package/lib/Title2.d.ts +1 -0
  34. package/lib/Title2.js +2 -0
  35. package/lib/Title2.js.map +1 -0
  36. package/lib/Title3.d.ts +1 -0
  37. package/lib/Title3.js +2 -0
  38. package/lib/Title3.js.map +1 -0
  39. package/lib/common/isConformant.d.ts +4 -0
  40. package/lib/common/isConformant.js +16 -0
  41. package/lib/common/isConformant.js.map +1 -0
  42. package/lib/components/Body/Body.d.ts +6 -0
  43. package/lib/components/Body/Body.js +27 -0
  44. package/lib/components/Body/Body.js.map +1 -0
  45. package/lib/components/Body/index.d.ts +1 -0
  46. package/lib/components/Body/index.js +2 -0
  47. package/lib/components/Body/index.js.map +1 -0
  48. package/lib/components/Caption/Caption.d.ts +6 -0
  49. package/lib/components/Caption/Caption.js +27 -0
  50. package/lib/components/Caption/Caption.js.map +1 -0
  51. package/lib/components/Caption/index.d.ts +1 -0
  52. package/lib/components/Caption/index.js +2 -0
  53. package/lib/components/Caption/index.js.map +1 -0
  54. package/lib/components/Display/Display.d.ts +6 -0
  55. package/lib/components/Display/Display.js +27 -0
  56. package/lib/components/Display/Display.js.map +1 -0
  57. package/lib/components/Display/index.d.ts +1 -0
  58. package/lib/components/Display/index.js +2 -0
  59. package/lib/components/Display/index.js.map +1 -0
  60. package/lib/components/Headline/Headline.d.ts +6 -0
  61. package/lib/components/Headline/Headline.js +27 -0
  62. package/lib/components/Headline/Headline.js.map +1 -0
  63. package/lib/components/Headline/index.d.ts +1 -0
  64. package/lib/components/Headline/index.js +2 -0
  65. package/lib/components/Headline/index.js.map +1 -0
  66. package/lib/components/LargeTitle/LargeTitle.d.ts +6 -0
  67. package/lib/components/LargeTitle/LargeTitle.js +27 -0
  68. package/lib/components/LargeTitle/LargeTitle.js.map +1 -0
  69. package/lib/components/LargeTitle/index.d.ts +1 -0
  70. package/lib/components/LargeTitle/index.js +2 -0
  71. package/lib/components/LargeTitle/index.js.map +1 -0
  72. package/lib/components/Subheadline/Subheadline.d.ts +6 -0
  73. package/lib/components/Subheadline/Subheadline.js +27 -0
  74. package/lib/components/Subheadline/Subheadline.js.map +1 -0
  75. package/lib/components/Subheadline/index.d.ts +1 -0
  76. package/lib/components/Subheadline/index.js +2 -0
  77. package/lib/components/Subheadline/index.js.map +1 -0
  78. package/lib/components/Text/Text.d.ts +6 -0
  79. package/lib/components/Text/Text.js +15 -0
  80. package/lib/components/Text/Text.js.map +1 -0
  81. package/lib/components/Text/Text.types.d.ts +77 -0
  82. package/lib/components/Text/Text.types.js +2 -0
  83. package/lib/components/Text/Text.types.js.map +1 -0
  84. package/lib/components/Text/index.d.ts +5 -0
  85. package/lib/components/Text/index.js +6 -0
  86. package/lib/components/Text/index.js.map +1 -0
  87. package/lib/components/Text/renderText.d.ts +5 -0
  88. package/lib/components/Text/renderText.js +15 -0
  89. package/lib/components/Text/renderText.js.map +1 -0
  90. package/lib/components/Text/useText.d.ts +12 -0
  91. package/lib/components/Text/useText.js +49 -0
  92. package/lib/components/Text/useText.js.map +1 -0
  93. package/lib/components/Text/useTextStyles.d.ts +5 -0
  94. package/lib/components/Text/useTextStyles.js +110 -0
  95. package/lib/components/Text/useTextStyles.js.map +1 -0
  96. package/lib/components/Title1/Title1.d.ts +6 -0
  97. package/lib/components/Title1/Title1.js +27 -0
  98. package/lib/components/Title1/Title1.js.map +1 -0
  99. package/lib/components/Title1/index.d.ts +1 -0
  100. package/lib/components/Title1/index.js +2 -0
  101. package/lib/components/Title1/index.js.map +1 -0
  102. package/lib/components/Title2/Title2.d.ts +6 -0
  103. package/lib/components/Title2/Title2.js +27 -0
  104. package/lib/components/Title2/Title2.js.map +1 -0
  105. package/lib/components/Title2/index.d.ts +1 -0
  106. package/lib/components/Title2/index.js +2 -0
  107. package/lib/components/Title2/index.js.map +1 -0
  108. package/lib/components/Title3/Title3.d.ts +6 -0
  109. package/lib/components/Title3/Title3.js +27 -0
  110. package/lib/components/Title3/Title3.js.map +1 -0
  111. package/lib/components/Title3/index.d.ts +1 -0
  112. package/lib/components/Title3/index.js +2 -0
  113. package/lib/components/Title3/index.js.map +1 -0
  114. package/lib/components/wrapper.d.ts +7 -0
  115. package/lib/components/wrapper.js +17 -0
  116. package/lib/components/wrapper.js.map +1 -0
  117. package/lib/index.d.ts +10 -0
  118. package/lib/index.js +11 -0
  119. package/lib/index.js.map +1 -0
  120. package/lib/tsdoc-metadata.json +11 -0
  121. package/lib/typographyStyles/index.d.ts +2 -0
  122. package/lib/typographyStyles/index.js +3 -0
  123. package/lib/typographyStyles/index.js.map +1 -0
  124. package/lib/typographyStyles/typographyStyles.d.ts +14 -0
  125. package/lib/typographyStyles/typographyStyles.js +76 -0
  126. package/lib/typographyStyles/typographyStyles.js.map +1 -0
  127. package/lib-commonjs/Body.d.ts +1 -0
  128. package/lib-commonjs/Body.js +10 -0
  129. package/lib-commonjs/Body.js.map +1 -0
  130. package/lib-commonjs/Caption.d.ts +1 -0
  131. package/lib-commonjs/Caption.js +10 -0
  132. package/lib-commonjs/Caption.js.map +1 -0
  133. package/lib-commonjs/Display.d.ts +1 -0
  134. package/lib-commonjs/Display.js +10 -0
  135. package/lib-commonjs/Display.js.map +1 -0
  136. package/lib-commonjs/Headline.d.ts +1 -0
  137. package/lib-commonjs/Headline.js +10 -0
  138. package/lib-commonjs/Headline.js.map +1 -0
  139. package/lib-commonjs/LargeTitle.d.ts +1 -0
  140. package/lib-commonjs/LargeTitle.js +10 -0
  141. package/lib-commonjs/LargeTitle.js.map +1 -0
  142. package/lib-commonjs/Subheadline.d.ts +1 -0
  143. package/lib-commonjs/Subheadline.js +10 -0
  144. package/lib-commonjs/Subheadline.js.map +1 -0
  145. package/lib-commonjs/Text.d.ts +1 -0
  146. package/lib-commonjs/Text.js +10 -0
  147. package/lib-commonjs/Text.js.map +1 -0
  148. package/lib-commonjs/Title1.d.ts +1 -0
  149. package/lib-commonjs/Title1.js +10 -0
  150. package/lib-commonjs/Title1.js.map +1 -0
  151. package/lib-commonjs/Title2.d.ts +1 -0
  152. package/lib-commonjs/Title2.js +10 -0
  153. package/lib-commonjs/Title2.js.map +1 -0
  154. package/lib-commonjs/Title3.d.ts +1 -0
  155. package/lib-commonjs/Title3.js +10 -0
  156. package/lib-commonjs/Title3.js.map +1 -0
  157. package/lib-commonjs/common/isConformant.d.ts +4 -0
  158. package/lib-commonjs/common/isConformant.js +27 -0
  159. package/lib-commonjs/common/isConformant.js.map +1 -0
  160. package/lib-commonjs/components/Body/Body.d.ts +6 -0
  161. package/lib-commonjs/components/Body/Body.js +30 -0
  162. package/lib-commonjs/components/Body/Body.js.map +1 -0
  163. package/lib-commonjs/components/Body/index.d.ts +1 -0
  164. package/lib-commonjs/components/Body/index.js +10 -0
  165. package/lib-commonjs/components/Body/index.js.map +1 -0
  166. package/lib-commonjs/components/Caption/Caption.d.ts +6 -0
  167. package/lib-commonjs/components/Caption/Caption.js +30 -0
  168. package/lib-commonjs/components/Caption/Caption.js.map +1 -0
  169. package/lib-commonjs/components/Caption/index.d.ts +1 -0
  170. package/lib-commonjs/components/Caption/index.js +10 -0
  171. package/lib-commonjs/components/Caption/index.js.map +1 -0
  172. package/lib-commonjs/components/Display/Display.d.ts +6 -0
  173. package/lib-commonjs/components/Display/Display.js +30 -0
  174. package/lib-commonjs/components/Display/Display.js.map +1 -0
  175. package/lib-commonjs/components/Display/index.d.ts +1 -0
  176. package/lib-commonjs/components/Display/index.js +10 -0
  177. package/lib-commonjs/components/Display/index.js.map +1 -0
  178. package/lib-commonjs/components/Headline/Headline.d.ts +6 -0
  179. package/lib-commonjs/components/Headline/Headline.js +30 -0
  180. package/lib-commonjs/components/Headline/Headline.js.map +1 -0
  181. package/lib-commonjs/components/Headline/index.d.ts +1 -0
  182. package/lib-commonjs/components/Headline/index.js +10 -0
  183. package/lib-commonjs/components/Headline/index.js.map +1 -0
  184. package/lib-commonjs/components/LargeTitle/LargeTitle.d.ts +6 -0
  185. package/lib-commonjs/components/LargeTitle/LargeTitle.js +30 -0
  186. package/lib-commonjs/components/LargeTitle/LargeTitle.js.map +1 -0
  187. package/lib-commonjs/components/LargeTitle/index.d.ts +1 -0
  188. package/lib-commonjs/components/LargeTitle/index.js +10 -0
  189. package/lib-commonjs/components/LargeTitle/index.js.map +1 -0
  190. package/lib-commonjs/components/Subheadline/Subheadline.d.ts +6 -0
  191. package/lib-commonjs/components/Subheadline/Subheadline.js +30 -0
  192. package/lib-commonjs/components/Subheadline/Subheadline.js.map +1 -0
  193. package/lib-commonjs/components/Subheadline/index.d.ts +1 -0
  194. package/lib-commonjs/components/Subheadline/index.js +10 -0
  195. package/lib-commonjs/components/Subheadline/index.js.map +1 -0
  196. package/lib-commonjs/components/Text/Text.d.ts +6 -0
  197. package/lib-commonjs/components/Text/Text.js +26 -0
  198. package/lib-commonjs/components/Text/Text.js.map +1 -0
  199. package/lib-commonjs/components/Text/Text.types.d.ts +77 -0
  200. package/lib-commonjs/components/Text/Text.types.js +6 -0
  201. package/lib-commonjs/components/Text/Text.types.js.map +1 -0
  202. package/lib-commonjs/components/Text/index.d.ts +5 -0
  203. package/lib-commonjs/components/Text/index.js +18 -0
  204. package/lib-commonjs/components/Text/index.js.map +1 -0
  205. package/lib-commonjs/components/Text/renderText.d.ts +5 -0
  206. package/lib-commonjs/components/Text/renderText.js +27 -0
  207. package/lib-commonjs/components/Text/renderText.js.map +1 -0
  208. package/lib-commonjs/components/Text/useText.d.ts +12 -0
  209. package/lib-commonjs/components/Text/useText.js +60 -0
  210. package/lib-commonjs/components/Text/useText.js.map +1 -0
  211. package/lib-commonjs/components/Text/useTextStyles.d.ts +5 -0
  212. package/lib-commonjs/components/Text/useTextStyles.js +120 -0
  213. package/lib-commonjs/components/Text/useTextStyles.js.map +1 -0
  214. package/lib-commonjs/components/Title1/Title1.d.ts +6 -0
  215. package/lib-commonjs/components/Title1/Title1.js +30 -0
  216. package/lib-commonjs/components/Title1/Title1.js.map +1 -0
  217. package/lib-commonjs/components/Title1/index.d.ts +1 -0
  218. package/lib-commonjs/components/Title1/index.js +10 -0
  219. package/lib-commonjs/components/Title1/index.js.map +1 -0
  220. package/lib-commonjs/components/Title2/Title2.d.ts +6 -0
  221. package/lib-commonjs/components/Title2/Title2.js +30 -0
  222. package/lib-commonjs/components/Title2/Title2.js.map +1 -0
  223. package/lib-commonjs/components/Title2/index.d.ts +1 -0
  224. package/lib-commonjs/components/Title2/index.js +10 -0
  225. package/lib-commonjs/components/Title2/index.js.map +1 -0
  226. package/lib-commonjs/components/Title3/Title3.d.ts +6 -0
  227. package/lib-commonjs/components/Title3/Title3.js +30 -0
  228. package/lib-commonjs/components/Title3/Title3.js.map +1 -0
  229. package/lib-commonjs/components/Title3/index.d.ts +1 -0
  230. package/lib-commonjs/components/Title3/index.js +10 -0
  231. package/lib-commonjs/components/Title3/index.js.map +1 -0
  232. package/lib-commonjs/components/wrapper.d.ts +7 -0
  233. package/lib-commonjs/components/wrapper.js +29 -0
  234. package/lib-commonjs/components/wrapper.js.map +1 -0
  235. package/lib-commonjs/index.d.ts +10 -0
  236. package/lib-commonjs/index.js +28 -0
  237. package/lib-commonjs/index.js.map +1 -0
  238. package/lib-commonjs/typographyStyles/index.d.ts +2 -0
  239. package/lib-commonjs/typographyStyles/index.js +11 -0
  240. package/lib-commonjs/typographyStyles/index.js.map +1 -0
  241. package/lib-commonjs/typographyStyles/typographyStyles.d.ts +14 -0
  242. package/lib-commonjs/typographyStyles/typographyStyles.js +109 -0
  243. package/lib-commonjs/typographyStyles/typographyStyles.js.map +1 -0
  244. package/package.json +64 -0
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/components/Text/useTextStyles.ts"],"names":[],"mappings":"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","sourceRoot":""}
@@ -0,0 +1,6 @@
1
+ import type { FunctionComponent } from 'react';
2
+ import { TextWrapperProps } from '../wrapper';
3
+ /**
4
+ * Text wrapper component for the Title 1 typography variant
5
+ */
6
+ export declare const Title1: FunctionComponent<TextWrapperProps>;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Title1 = void 0;
7
+
8
+ var react_make_styles_1 = /*#__PURE__*/require("@fluentui/react-make-styles");
9
+
10
+ var index_1 = /*#__PURE__*/require("../../typographyStyles/index");
11
+
12
+ var wrapper_1 = /*#__PURE__*/require("../wrapper");
13
+ /**
14
+ * Styles for the root slot
15
+ */
16
+
17
+
18
+ var useStyles = /*#__PURE__*/react_make_styles_1.__styles({
19
+ "root": {}
20
+ }, {});
21
+ /**
22
+ * Text wrapper component for the Title 1 typography variant
23
+ */
24
+
25
+
26
+ exports.Title1 = /*#__PURE__*/wrapper_1.createWrapper({
27
+ useStyles: useStyles,
28
+ displayName: 'Title1'
29
+ });
30
+ //# sourceMappingURL=Title1.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/components/Title1/Title1.tsx"],"names":[],"mappings":";;;;;;;AACA,IAAA,mBAAA,gBAAA,OAAA,CAAA,6BAAA,CAAA;;AACA,IAAA,OAAA,gBAAA,OAAA,CAAA,8BAAA,CAAA;;AACA,IAAA,SAAA,gBAAA,OAAA,CAAA,YAAA,CAAA;AAEA;;AAEG;;;AACH,IAAM,SAAS,gBAAG,mBAAA,SAAA;AAAA;AAAA,MAAlB;AAIA;;AAEG;;;AACU,OAAA,CAAA,MAAA,gBAA8C,SAAA,CAAA,aAAA,CAAc;AAAE,EAAA,SAAS,EAAA,SAAX;AAAa,EAAA,WAAW,EAAE;AAA1B,CAAd,CAA9C","sourceRoot":""}
@@ -0,0 +1 @@
1
+ export * from './Title1';
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+
7
+ var tslib_1 = /*#__PURE__*/require("tslib");
8
+
9
+ tslib_1.__exportStar(require("./Title1"), exports);
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/components/Title1/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,UAAA,CAAA,EAAA,OAAA","sourceRoot":""}
@@ -0,0 +1,6 @@
1
+ import type { FunctionComponent } from 'react';
2
+ import { TextWrapperProps } from '../wrapper';
3
+ /**
4
+ * Text wrapper component for the Title 2 typography variant
5
+ */
6
+ export declare const Title2: FunctionComponent<TextWrapperProps>;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Title2 = void 0;
7
+
8
+ var react_make_styles_1 = /*#__PURE__*/require("@fluentui/react-make-styles");
9
+
10
+ var index_1 = /*#__PURE__*/require("../../typographyStyles/index");
11
+
12
+ var wrapper_1 = /*#__PURE__*/require("../wrapper");
13
+ /**
14
+ * Styles for the root slot
15
+ */
16
+
17
+
18
+ var useStyles = /*#__PURE__*/react_make_styles_1.__styles({
19
+ "root": {}
20
+ }, {});
21
+ /**
22
+ * Text wrapper component for the Title 2 typography variant
23
+ */
24
+
25
+
26
+ exports.Title2 = /*#__PURE__*/wrapper_1.createWrapper({
27
+ useStyles: useStyles,
28
+ displayName: 'Title2'
29
+ });
30
+ //# sourceMappingURL=Title2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/components/Title2/Title2.tsx"],"names":[],"mappings":";;;;;;;AACA,IAAA,mBAAA,gBAAA,OAAA,CAAA,6BAAA,CAAA;;AACA,IAAA,OAAA,gBAAA,OAAA,CAAA,8BAAA,CAAA;;AACA,IAAA,SAAA,gBAAA,OAAA,CAAA,YAAA,CAAA;AAEA;;AAEG;;;AACH,IAAM,SAAS,gBAAG,mBAAA,SAAA;AAAA;AAAA,MAAlB;AAIA;;AAEG;;;AACU,OAAA,CAAA,MAAA,gBAA8C,SAAA,CAAA,aAAA,CAAc;AAAE,EAAA,SAAS,EAAA,SAAX;AAAa,EAAA,WAAW,EAAE;AAA1B,CAAd,CAA9C","sourceRoot":""}
@@ -0,0 +1 @@
1
+ export * from './Title2';
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+
7
+ var tslib_1 = /*#__PURE__*/require("tslib");
8
+
9
+ tslib_1.__exportStar(require("./Title2"), exports);
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/components/Title2/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,UAAA,CAAA,EAAA,OAAA","sourceRoot":""}
@@ -0,0 +1,6 @@
1
+ import type { FunctionComponent } from 'react';
2
+ import { TextWrapperProps } from '../wrapper';
3
+ /**
4
+ * Text wrapper component for the Title 3 typography variant
5
+ */
6
+ export declare const Title3: FunctionComponent<TextWrapperProps>;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Title3 = void 0;
7
+
8
+ var react_make_styles_1 = /*#__PURE__*/require("@fluentui/react-make-styles");
9
+
10
+ var index_1 = /*#__PURE__*/require("../../typographyStyles/index");
11
+
12
+ var wrapper_1 = /*#__PURE__*/require("../wrapper");
13
+ /**
14
+ * Styles for the root slot
15
+ */
16
+
17
+
18
+ var useStyles = /*#__PURE__*/react_make_styles_1.__styles({
19
+ "root": {}
20
+ }, {});
21
+ /**
22
+ * Text wrapper component for the Title 3 typography variant
23
+ */
24
+
25
+
26
+ exports.Title3 = /*#__PURE__*/wrapper_1.createWrapper({
27
+ useStyles: useStyles,
28
+ displayName: 'Title3'
29
+ });
30
+ //# sourceMappingURL=Title3.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/components/Title3/Title3.tsx"],"names":[],"mappings":";;;;;;;AACA,IAAA,mBAAA,gBAAA,OAAA,CAAA,6BAAA,CAAA;;AACA,IAAA,OAAA,gBAAA,OAAA,CAAA,8BAAA,CAAA;;AACA,IAAA,SAAA,gBAAA,OAAA,CAAA,YAAA,CAAA;AAEA;;AAEG;;;AACH,IAAM,SAAS,gBAAG,mBAAA,SAAA;AAAA;AAAA,MAAlB;AAIA;;AAEG;;;AACU,OAAA,CAAA,MAAA,gBAA8C,SAAA,CAAA,aAAA,CAAc;AAAE,EAAA,SAAS,EAAA,SAAX;AAAa,EAAA,WAAW,EAAE;AAA1B,CAAd,CAA9C","sourceRoot":""}
@@ -0,0 +1 @@
1
+ export * from './Title3';
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+
7
+ var tslib_1 = /*#__PURE__*/require("tslib");
8
+
9
+ tslib_1.__exportStar(require("./Title3"), exports);
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/components/Title3/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,UAAA,CAAA,EAAA,OAAA","sourceRoot":""}
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ import type { TextProps } from '../Text';
3
+ export declare type TextWrapperProps = Omit<TextProps, 'font' | 'size'>;
4
+ export declare function createWrapper(options: {
5
+ displayName: string;
6
+ useStyles: () => Record<'root', string>;
7
+ }): React.FunctionComponent<TextWrapperProps>;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.createWrapper = void 0;
7
+
8
+ var React = /*#__PURE__*/require("react");
9
+
10
+ var react_make_styles_1 = /*#__PURE__*/require("@fluentui/react-make-styles");
11
+
12
+ var Text_1 = /*#__PURE__*/require("../Text");
13
+
14
+ function createWrapper(options) {
15
+ var useStyles = options.useStyles,
16
+ displayName = options.displayName;
17
+ var Wrapper = React.forwardRef(function (props, ref) {
18
+ var styles = useStyles();
19
+ var state = Text_1.useText(props, ref);
20
+ Text_1.useTextStyles(state);
21
+ state.root.className = react_make_styles_1.mergeClasses(state.root.className, styles.root, props.className);
22
+ return Text_1.renderText(state);
23
+ });
24
+ Wrapper.displayName = displayName;
25
+ return Wrapper;
26
+ }
27
+
28
+ exports.createWrapper = createWrapper;
29
+ //# sourceMappingURL=wrapper.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/components/wrapper.tsx"],"names":[],"mappings":";;;;;;;AAAA,IAAA,KAAA,gBAAA,OAAA,CAAA,OAAA,CAAA;;AACA,IAAA,mBAAA,gBAAA,OAAA,CAAA,6BAAA,CAAA;;AACA,IAAA,MAAA,gBAAA,OAAA,CAAA,SAAA,CAAA;;AAMA,SAAgB,aAAhB,CAA8B,OAA9B,EAGC;AACS,MAAA,SAAS,GAAkB,OAAO,CAAzB,SAAT;AAAA,MAAW,WAAW,GAAK,OAAO,CAAZ,WAAtB;AACR,MAAM,OAAO,GAA0C,KAAK,CAAC,UAAN,CAAiB,UAAC,KAAD,EAAQ,GAAR,EAAW;AACjF,QAAM,MAAM,GAAG,SAAS,EAAxB;AACA,QAAM,KAAK,GAAG,MAAA,CAAA,OAAA,CAAQ,KAAR,EAA4B,GAA5B,CAAd;AAEA,IAAA,MAAA,CAAA,aAAA,CAAc,KAAd;AAEA,IAAA,KAAK,CAAC,IAAN,CAAW,SAAX,GAAuB,mBAAA,CAAA,YAAA,CAAa,KAAK,CAAC,IAAN,CAAW,SAAxB,EAAmC,MAAM,CAAC,IAA1C,EAAgD,KAAK,CAAC,SAAtD,CAAvB;AAEA,WAAO,MAAA,CAAA,UAAA,CAAW,KAAX,CAAP;AACD,GATsD,CAAvD;AAUA,EAAA,OAAO,CAAC,WAAR,GAAsB,WAAtB;AAEA,SAAO,OAAP;AACD;;AAlBD,OAAA,CAAA,aAAA,GAAA,aAAA","sourceRoot":""}
@@ -0,0 +1,10 @@
1
+ export * from './Text';
2
+ export * from './Display';
3
+ export * from './LargeTitle';
4
+ export * from './Title1';
5
+ export * from './Title2';
6
+ export * from './Title3';
7
+ export * from './Headline';
8
+ export * from './Subheadline';
9
+ export * from './Body';
10
+ export * from './Caption';
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+
7
+ var tslib_1 = /*#__PURE__*/require("tslib");
8
+
9
+ tslib_1.__exportStar(require("./Text"), exports);
10
+
11
+ tslib_1.__exportStar(require("./Display"), exports);
12
+
13
+ tslib_1.__exportStar(require("./LargeTitle"), exports);
14
+
15
+ tslib_1.__exportStar(require("./Title1"), exports);
16
+
17
+ tslib_1.__exportStar(require("./Title2"), exports);
18
+
19
+ tslib_1.__exportStar(require("./Title3"), exports);
20
+
21
+ tslib_1.__exportStar(require("./Headline"), exports);
22
+
23
+ tslib_1.__exportStar(require("./Subheadline"), exports);
24
+
25
+ tslib_1.__exportStar(require("./Body"), exports);
26
+
27
+ tslib_1.__exportStar(require("./Caption"), exports);
28
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,QAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,WAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,cAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,UAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,UAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,UAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,YAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,eAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,QAAA,CAAA,EAAA,OAAA;;AACA,OAAA,CAAA,YAAA,CAAA,OAAA,CAAA,WAAA,CAAA,EAAA,OAAA","sourceRoot":""}
@@ -0,0 +1,2 @@
1
+ import * as typographyStyles from './typographyStyles';
2
+ export { typographyStyles };
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.typographyStyles = void 0;
7
+
8
+ var typographyStyles = /*#__PURE__*/require("./typographyStyles");
9
+
10
+ exports.typographyStyles = typographyStyles;
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/typographyStyles/index.ts"],"names":[],"mappings":";;;;;;;AAAA,IAAA,gBAAA,gBAAA,OAAA,CAAA,oBAAA,CAAA;;AACS,OAAA,CAAA,gBAAA,GAAA,gBAAA","sourceRoot":""}
@@ -0,0 +1,14 @@
1
+ import type { MakeStylesStyleFunctionRule } from '@fluentui/make-styles';
2
+ import type { Theme } from '@fluentui/react-theme';
3
+ /**
4
+ * Make-styles rules for the typography variants
5
+ */
6
+ export declare const caption: MakeStylesStyleFunctionRule<Theme>;
7
+ export declare const body: MakeStylesStyleFunctionRule<Theme>;
8
+ export declare const subheadline: MakeStylesStyleFunctionRule<Theme>;
9
+ export declare const headline: MakeStylesStyleFunctionRule<Theme>;
10
+ export declare const title3: MakeStylesStyleFunctionRule<Theme>;
11
+ export declare const title2: MakeStylesStyleFunctionRule<Theme>;
12
+ export declare const title1: MakeStylesStyleFunctionRule<Theme>;
13
+ export declare const largeTitle: MakeStylesStyleFunctionRule<Theme>;
14
+ export declare const display: MakeStylesStyleFunctionRule<Theme>;
@@ -0,0 +1,109 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.display = exports.largeTitle = exports.title1 = exports.title2 = exports.title3 = exports.headline = exports.subheadline = exports.body = exports.caption = void 0;
7
+ /**
8
+ * Make-styles rules for the typography variants
9
+ */
10
+
11
+ var caption = function (theme) {
12
+ return {
13
+ fontFamily: theme.fontFamilyBase,
14
+ fontSize: theme.fontSizeBase200,
15
+ lineHeight: theme.lineHeightBase200,
16
+ fontWeight: theme.fontWeightRegular
17
+ };
18
+ };
19
+
20
+ exports.caption = caption;
21
+
22
+ var body = function (theme) {
23
+ return {
24
+ fontFamily: theme.fontFamilyBase,
25
+ fontSize: theme.fontSizeBase300,
26
+ lineHeight: theme.lineHeightBase300,
27
+ fontWeight: theme.fontWeightRegular
28
+ };
29
+ };
30
+
31
+ exports.body = body;
32
+
33
+ var subheadline = function (theme) {
34
+ return {
35
+ fontFamily: theme.fontFamilyBase,
36
+ fontSize: theme.fontSizeBase400,
37
+ lineHeight: theme.lineHeightBase400,
38
+ fontWeight: theme.fontWeightSemibold
39
+ };
40
+ };
41
+
42
+ exports.subheadline = subheadline;
43
+
44
+ var headline = function (theme) {
45
+ return {
46
+ fontFamily: theme.fontFamilyBase,
47
+ fontSize: theme.fontSizeBase500,
48
+ lineHeight: theme.lineHeightBase500,
49
+ fontWeight: theme.fontWeightSemibold
50
+ };
51
+ };
52
+
53
+ exports.headline = headline;
54
+
55
+ var title3 = function (theme) {
56
+ return {
57
+ fontFamily: theme.fontFamilyBase,
58
+ fontSize: theme.fontSizeBase600,
59
+ lineHeight: theme.lineHeightBase600,
60
+ fontWeight: theme.fontWeightSemibold
61
+ };
62
+ };
63
+
64
+ exports.title3 = title3;
65
+
66
+ var title2 = function (theme) {
67
+ return {
68
+ fontFamily: theme.fontFamilyBase,
69
+ fontSize: theme.fontSizeHero700,
70
+ lineHeight: theme.lineHeightHero700,
71
+ fontWeight: theme.fontWeightSemibold
72
+ };
73
+ };
74
+
75
+ exports.title2 = title2;
76
+
77
+ var title1 = function (theme) {
78
+ return {
79
+ fontFamily: theme.fontFamilyBase,
80
+ fontSize: theme.fontSizeHero800,
81
+ lineHeight: theme.lineHeightHero800,
82
+ fontWeight: theme.fontWeightSemibold
83
+ };
84
+ };
85
+
86
+ exports.title1 = title1;
87
+
88
+ var largeTitle = function (theme) {
89
+ return {
90
+ fontFamily: theme.fontFamilyBase,
91
+ fontSize: theme.fontSizeHero900,
92
+ lineHeight: theme.lineHeightHero900,
93
+ fontWeight: theme.fontWeightSemibold
94
+ };
95
+ };
96
+
97
+ exports.largeTitle = largeTitle;
98
+
99
+ var display = function (theme) {
100
+ return {
101
+ fontFamily: theme.fontFamilyBase,
102
+ fontSize: theme.fontSizeHero1000,
103
+ lineHeight: theme.lineHeightHero1000,
104
+ fontWeight: theme.fontWeightSemibold
105
+ };
106
+ };
107
+
108
+ exports.display = display;
109
+ //# sourceMappingURL=typographyStyles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/typographyStyles/typographyStyles.ts"],"names":[],"mappings":"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","sourceRoot":""}
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@fluentui/react-text",
3
+ "version": "0.0.0-nightly050f89bf0020211102.1",
4
+ "description": "Text is a typography and styling abstraction component that can be used to ensure the consistency of all text across your application.",
5
+ "main": "lib-commonjs/index.js",
6
+ "module": "lib/index.js",
7
+ "typings": "lib/index.d.ts",
8
+ "sideEffects": false,
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/microsoft/fluentui"
12
+ },
13
+ "license": "MIT",
14
+ "scripts": {
15
+ "build": "just-scripts build",
16
+ "bundle-size": "bundle-size measure",
17
+ "clean": "just-scripts clean",
18
+ "code-style": "just-scripts code-style",
19
+ "just": "just-scripts",
20
+ "lint": "just-scripts lint",
21
+ "start": "yarn storybook",
22
+ "test": "jest",
23
+ "docs": "api-extractor run --config=config/api-extractor.local.json --local",
24
+ "build:local": "tsc -p . --module esnext --emitDeclarationOnly && node ../../scripts/typescript/normalize-import --output ./dist/packages/react-text/src && yarn docs",
25
+ "storybook": "start-storybook"
26
+ },
27
+ "devDependencies": {
28
+ "@fluentui/babel-make-styles": "0.0.0-nightly050f89bf0020211102.1",
29
+ "@fluentui/eslint-plugin": "*",
30
+ "@fluentui/jest-serializer-make-styles": "0.0.0-nightly050f89bf0020211102.1",
31
+ "@fluentui/react-conformance": "*",
32
+ "@fluentui/react-conformance-make-styles": "0.0.0-nightly050f89bf0020211102.1",
33
+ "@fluentui/scripts": "^1.0.0",
34
+ "@types/enzyme": "3.10.3",
35
+ "@types/enzyme-adapter-react-16": "1.0.3",
36
+ "@types/react": "16.9.42",
37
+ "@types/react-dom": "16.9.10",
38
+ "@types/react-test-renderer": "^16.0.0",
39
+ "enzyme": "~3.10.0",
40
+ "enzyme-adapter-react-16": "^1.15.0",
41
+ "react": "16.8.6",
42
+ "react-dom": "16.8.6",
43
+ "react-test-renderer": "^16.3.0"
44
+ },
45
+ "dependencies": {
46
+ "@fluentui/react-make-styles": "0.0.0-nightly050f89bf0020211102.1",
47
+ "@fluentui/react-utilities": "0.0.0-nightly050f89bf0020211102.1",
48
+ "tslib": "^2.1.0"
49
+ },
50
+ "peerDependencies": {
51
+ "@types/react": ">=16.8.0 <18.0.0",
52
+ "@types/react-dom": ">=16.8.0 <18.0.0",
53
+ "react": ">=16.8.0 <18.0.0",
54
+ "react-dom": ">=16.8.0 <18.0.0"
55
+ },
56
+ "beachball": {
57
+ "tag": "beta",
58
+ "disallowedChangeTypes": [
59
+ "major",
60
+ "minor",
61
+ "patch"
62
+ ]
63
+ }
64
+ }