@fluentui/react-text 0.0.0-nightly-20240727-0949.1 → 0.0.0-nightly-20240727-2000.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.
package/CHANGELOG.md CHANGED
@@ -1,23 +1,23 @@
1
1
  # Change Log - @fluentui/react-text
2
2
 
3
- This log was last generated on Sat, 27 Jul 2024 09:59:32 GMT and should not be manually modified.
3
+ This log was last generated on Sat, 27 Jul 2024 20:11:04 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [0.0.0-nightly-20240727-0949.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.0.0-nightly-20240727-0949.1)
7
+ ## [0.0.0-nightly-20240727-2000.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.0.0-nightly-20240727-2000.1)
8
8
 
9
- Sat, 27 Jul 2024 09:59:32 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.4.23..@fluentui/react-text_v0.0.0-nightly-20240727-0949.1)
9
+ Sat, 27 Jul 2024 20:11:04 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.4.23..@fluentui/react-text_v0.0.0-nightly-20240727-2000.1)
11
11
 
12
12
  ### Changes
13
13
 
14
14
  - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
15
- - Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20240727-0949.1 ([commit](https://github.com/microsoft/fluentui/commit/4343e60c0174ac0a9f796c3a6b8afa6ab0f4d99d) by beachball)
16
- - Bump @fluentui/react-theme to v0.0.0-nightly-20240727-0949.1 ([commit](https://github.com/microsoft/fluentui/commit/4343e60c0174ac0a9f796c3a6b8afa6ab0f4d99d) by beachball)
17
- - Bump @fluentui/react-utilities to v0.0.0-nightly-20240727-0949.1 ([commit](https://github.com/microsoft/fluentui/commit/4343e60c0174ac0a9f796c3a6b8afa6ab0f4d99d) by beachball)
18
- - Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20240727-0949.1 ([commit](https://github.com/microsoft/fluentui/commit/4343e60c0174ac0a9f796c3a6b8afa6ab0f4d99d) by beachball)
19
- - Bump @fluentui/react-conformance to v0.0.0-nightly-20240727-0949.1 ([commit](https://github.com/microsoft/fluentui/commit/4343e60c0174ac0a9f796c3a6b8afa6ab0f4d99d) by beachball)
20
- - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20240727-0949.1 ([commit](https://github.com/microsoft/fluentui/commit/4343e60c0174ac0a9f796c3a6b8afa6ab0f4d99d) by beachball)
15
+ - Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20240727-2000.1 ([commit](https://github.com/microsoft/fluentui/commit/026719079a57e48ed371a8d06f5f2c6a8f8fee9e) by beachball)
16
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20240727-2000.1 ([commit](https://github.com/microsoft/fluentui/commit/026719079a57e48ed371a8d06f5f2c6a8f8fee9e) by beachball)
17
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20240727-2000.1 ([commit](https://github.com/microsoft/fluentui/commit/026719079a57e48ed371a8d06f5f2c6a8f8fee9e) by beachball)
18
+ - Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20240727-2000.1 ([commit](https://github.com/microsoft/fluentui/commit/026719079a57e48ed371a8d06f5f2c6a8f8fee9e) by beachball)
19
+ - Bump @fluentui/react-conformance to v0.0.0-nightly-20240727-2000.1 ([commit](https://github.com/microsoft/fluentui/commit/026719079a57e48ed371a8d06f5f2c6a8f8fee9e) by beachball)
20
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20240727-2000.1 ([commit](https://github.com/microsoft/fluentui/commit/026719079a57e48ed371a8d06f5f2c6a8f8fee9e) by beachball)
21
21
 
22
22
  ## [9.4.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.4.23)
23
23
 
@@ -5,14 +5,11 @@ import { useTextStyles_unstable } from './useTextStyles.styles';
5
5
  import { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';
6
6
  /**
7
7
  * Typography and styling abstraction component used to ensure consistency of text.
8
- */ //TODO: migrate to fc to ensure v18 compatibility
9
- // eslint-disable-next-line deprecation/deprecation
10
- export const Text = /*#__PURE__*/ React.forwardRef((props, ref)=>{
8
+ */ export const Text = /*#__PURE__*/ React.forwardRef((props, ref)=>{
11
9
  const state = useText_unstable(props, ref);
12
10
  useTextStyles_unstable(state);
13
11
  useCustomStyleHook_unstable('useTextStyles_unstable')(state);
14
12
  return renderText_unstable(state);
15
13
  // Work around some small mismatches in inferred types which don't matter in practice
16
- // eslint-disable-next-line deprecation/deprecation
17
14
  });
18
15
  Text.displayName = 'Text';
@@ -1 +1 @@
1
- {"version":3,"sources":["Text.tsx"],"sourcesContent":["import * as React from 'react';\nimport { useText_unstable } from './useText';\nimport { renderText_unstable } from './renderText';\nimport { useTextStyles_unstable } from './useTextStyles.styles';\nimport type { TextProps } from './Text.types';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n\n/**\n * Typography and styling abstraction component used to ensure consistency of text.\n */\n//TODO: migrate to fc to ensure v18 compatibility\n// eslint-disable-next-line deprecation/deprecation\nexport const Text: ForwardRefComponent<TextProps> = React.forwardRef((props, ref) => {\n const state = useText_unstable(props, ref);\n\n useTextStyles_unstable(state);\n\n useCustomStyleHook_unstable('useTextStyles_unstable')(state);\n\n return renderText_unstable(state);\n // Work around some small mismatches in inferred types which don't matter in practice\n // eslint-disable-next-line deprecation/deprecation\n}) as ForwardRefComponent<TextProps>;\n\nText.displayName = 'Text';\n"],"names":["React","useText_unstable","renderText_unstable","useTextStyles_unstable","useCustomStyleHook_unstable","Text","forwardRef","props","ref","state","displayName"],"rangeMappings":";;;;;;;;;;;;;;;;;","mappings":"AAAA,YAAYA,WAAW,QAAQ;AAC/B,SAASC,gBAAgB,QAAQ,YAAY;AAC7C,SAASC,mBAAmB,QAAQ,eAAe;AACnD,SAASC,sBAAsB,QAAQ,yBAAyB;AAGhE,SAASC,2BAA2B,QAAQ,kCAAkC;AAE9E;;CAEC,GACD,iDAAiD;AACjD,mDAAmD;AACnD,OAAO,MAAMC,qBAAuCL,MAAMM,UAAU,CAAC,CAACC,OAAOC;IAC3E,MAAMC,QAAQR,iBAAiBM,OAAOC;IAEtCL,uBAAuBM;IAEvBL,4BAA4B,0BAA0BK;IAEtD,OAAOP,oBAAoBO;AAC3B,qFAAqF;AACrF,mDAAmD;AACrD,GAAqC;AAErCJ,KAAKK,WAAW,GAAG"}
1
+ {"version":3,"sources":["Text.tsx"],"sourcesContent":["import * as React from 'react';\nimport { useText_unstable } from './useText';\nimport { renderText_unstable } from './renderText';\nimport { useTextStyles_unstable } from './useTextStyles.styles';\nimport type { TextProps } from './Text.types';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n\n/**\n * Typography and styling abstraction component used to ensure consistency of text.\n */\nexport const Text: ForwardRefComponent<TextProps> = React.forwardRef((props, ref) => {\n const state = useText_unstable(props, ref);\n\n useTextStyles_unstable(state);\n\n useCustomStyleHook_unstable('useTextStyles_unstable')(state);\n\n return renderText_unstable(state);\n // Work around some small mismatches in inferred types which don't matter in practice\n}) as ForwardRefComponent<TextProps>;\n\nText.displayName = 'Text';\n"],"names":["React","useText_unstable","renderText_unstable","useTextStyles_unstable","useCustomStyleHook_unstable","Text","forwardRef","props","ref","state","displayName"],"rangeMappings":";;;;;;;;;;;;;;","mappings":"AAAA,YAAYA,WAAW,QAAQ;AAC/B,SAASC,gBAAgB,QAAQ,YAAY;AAC7C,SAASC,mBAAmB,QAAQ,eAAe;AACnD,SAASC,sBAAsB,QAAQ,yBAAyB;AAGhE,SAASC,2BAA2B,QAAQ,kCAAkC;AAE9E;;CAEC,GACD,OAAO,MAAMC,qBAAuCL,MAAMM,UAAU,CAAC,CAACC,OAAOC;IAC3E,MAAMC,QAAQR,iBAAiBM,OAAOC;IAEtCL,uBAAuBM;IAEvBL,4BAA4B,0BAA0BK;IAEtD,OAAOP,oBAAoBO;AAC3B,qFAAqF;AACvF,GAAqC;AAErCJ,KAAKK,WAAW,GAAG"}
@@ -3,8 +3,6 @@ import { mergeClasses } from '@griffel/react';
3
3
  import { renderText_unstable, useText_unstable, useTextStyles_unstable } from '../Text';
4
4
  export function createPreset(options) {
5
5
  const { useStyles, className, displayName } = options;
6
- //TODO: migrate to fc to ensure v18 compatibility
7
- // eslint-disable-next-line deprecation/deprecation
8
6
  const Wrapper = React.forwardRef((props, ref)=>{
9
7
  'use no memo';
10
8
  const styles = useStyles();
@@ -1 +1 @@
1
- {"version":3,"sources":["createPreset.ts"],"sourcesContent":["import * as React from 'react';\nimport { mergeClasses } from '@griffel/react';\nimport { renderText_unstable, useText_unstable, useTextStyles_unstable } from '../Text';\nimport type { TextProps, TextPresetProps } from '../Text';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\n\nexport function createPreset(options: {\n className: string;\n displayName: string;\n useStyles: () => Record<'root', string>;\n}): React.FunctionComponent<TextPresetProps> {\n const { useStyles, className, displayName } = options;\n //TODO: migrate to fc to ensure v18 compatibility\n // eslint-disable-next-line deprecation/deprecation\n const Wrapper: ForwardRefComponent<TextPresetProps> = React.forwardRef((props, ref) => {\n 'use no memo';\n\n const styles = useStyles();\n const state = useText_unstable(props as TextProps, ref);\n\n useTextStyles_unstable(state);\n\n state.root.className = mergeClasses(className, state.root.className, styles.root, props.className);\n\n return renderText_unstable(state);\n });\n Wrapper.displayName = displayName;\n\n return Wrapper;\n}\n"],"names":["React","mergeClasses","renderText_unstable","useText_unstable","useTextStyles_unstable","createPreset","options","useStyles","className","displayName","Wrapper","forwardRef","props","ref","styles","state","root"],"rangeMappings":";;;;;;;;;;;;;;;;;","mappings":"AAAA,YAAYA,WAAW,QAAQ;AAC/B,SAASC,YAAY,QAAQ,iBAAiB;AAC9C,SAASC,mBAAmB,EAAEC,gBAAgB,EAAEC,sBAAsB,QAAQ,UAAU;AAIxF,OAAO,SAASC,aAAaC,OAI5B;IACC,MAAM,EAAEC,SAAS,EAAEC,SAAS,EAAEC,WAAW,EAAE,GAAGH;IAC9C,iDAAiD;IACjD,mDAAmD;IACnD,MAAMI,UAAgDV,MAAMW,UAAU,CAAC,CAACC,OAAOC;QAC7E;QAEA,MAAMC,SAASP;QACf,MAAMQ,QAAQZ,iBAAiBS,OAAoBC;QAEnDT,uBAAuBW;QAEvBA,MAAMC,IAAI,CAACR,SAAS,GAAGP,aAAaO,WAAWO,MAAMC,IAAI,CAACR,SAAS,EAAEM,OAAOE,IAAI,EAAEJ,MAAMJ,SAAS;QAEjG,OAAON,oBAAoBa;IAC7B;IACAL,QAAQD,WAAW,GAAGA;IAEtB,OAAOC;AACT"}
1
+ {"version":3,"sources":["createPreset.ts"],"sourcesContent":["import * as React from 'react';\nimport { mergeClasses } from '@griffel/react';\nimport { renderText_unstable, useText_unstable, useTextStyles_unstable } from '../Text';\nimport type { TextProps, TextPresetProps } from '../Text';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\n\nexport function createPreset(options: {\n className: string;\n displayName: string;\n useStyles: () => Record<'root', string>;\n}): React.FunctionComponent<TextPresetProps> {\n const { useStyles, className, displayName } = options;\n const Wrapper: ForwardRefComponent<TextPresetProps> = React.forwardRef((props, ref) => {\n 'use no memo';\n\n const styles = useStyles();\n const state = useText_unstable(props as TextProps, ref);\n\n useTextStyles_unstable(state);\n\n state.root.className = mergeClasses(className, state.root.className, styles.root, props.className);\n\n return renderText_unstable(state);\n });\n Wrapper.displayName = displayName;\n\n return Wrapper;\n}\n"],"names":["React","mergeClasses","renderText_unstable","useText_unstable","useTextStyles_unstable","createPreset","options","useStyles","className","displayName","Wrapper","forwardRef","props","ref","styles","state","root"],"rangeMappings":";;;;;;;;;;;;;;;","mappings":"AAAA,YAAYA,WAAW,QAAQ;AAC/B,SAASC,YAAY,QAAQ,iBAAiB;AAC9C,SAASC,mBAAmB,EAAEC,gBAAgB,EAAEC,sBAAsB,QAAQ,UAAU;AAIxF,OAAO,SAASC,aAAaC,OAI5B;IACC,MAAM,EAAEC,SAAS,EAAEC,SAAS,EAAEC,WAAW,EAAE,GAAGH;IAC9C,MAAMI,UAAgDV,MAAMW,UAAU,CAAC,CAACC,OAAOC;QAC7E;QAEA,MAAMC,SAASP;QACf,MAAMQ,QAAQZ,iBAAiBS,OAAoBC;QAEnDT,uBAAuBW;QAEvBA,MAAMC,IAAI,CAACR,SAAS,GAAGP,aAAaO,WAAWO,MAAMC,IAAI,CAACR,SAAS,EAAEM,OAAOE,IAAI,EAAEJ,MAAMJ,SAAS;QAEjG,OAAON,oBAAoBa;IAC7B;IACAL,QAAQD,WAAW,GAAGA;IAEtB,OAAOC;AACT"}
@@ -20,6 +20,5 @@ const Text = /*#__PURE__*/ _react.forwardRef((props, ref)=>{
20
20
  (0, _reactsharedcontexts.useCustomStyleHook_unstable)('useTextStyles_unstable')(state);
21
21
  return (0, _renderText.renderText_unstable)(state);
22
22
  // Work around some small mismatches in inferred types which don't matter in practice
23
- // eslint-disable-next-line deprecation/deprecation
24
23
  });
25
24
  Text.displayName = 'Text';
@@ -1 +1 @@
1
- {"version":3,"sources":["Text.tsx"],"sourcesContent":["import * as React from 'react';\nimport { useText_unstable } from './useText';\nimport { renderText_unstable } from './renderText';\nimport { useTextStyles_unstable } from './useTextStyles.styles';\nimport type { TextProps } from './Text.types';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n\n/**\n * Typography and styling abstraction component used to ensure consistency of text.\n */\n//TODO: migrate to fc to ensure v18 compatibility\n// eslint-disable-next-line deprecation/deprecation\nexport const Text: ForwardRefComponent<TextProps> = React.forwardRef((props, ref) => {\n const state = useText_unstable(props, ref);\n\n useTextStyles_unstable(state);\n\n useCustomStyleHook_unstable('useTextStyles_unstable')(state);\n\n return renderText_unstable(state);\n // Work around some small mismatches in inferred types which don't matter in practice\n // eslint-disable-next-line deprecation/deprecation\n}) as ForwardRefComponent<TextProps>;\n\nText.displayName = 'Text';\n"],"names":["Text","React","forwardRef","props","ref","state","useText_unstable","useTextStyles_unstable","useCustomStyleHook_unstable","renderText_unstable","displayName"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;+BAaaA;;;eAAAA;;;;iEAbU;yBACU;4BACG;qCACG;qCAGK;AAOrC,MAAMA,OAAAA,WAAAA,GAAuCC,OAAMC,UAAU,CAAC,CAACC,OAAOC;IAC3E,MAAMC,QAAQC,IAAAA,yBAAAA,EAAiBH,OAAOC;IAEtCG,IAAAA,2CAAAA,EAAuBF;IAEvBG,IAAAA,gDAAAA,EAA4B,0BAA0BH;IAEtD,OAAOI,IAAAA,+BAAAA,EAAoBJ;AAC3B,qFAAqF;AACrF,mDAAmD;AACrD;AAEAL,KAAKU,WAAW,GAAG"}
1
+ {"version":3,"sources":["Text.tsx"],"sourcesContent":["import * as React from 'react';\nimport { useText_unstable } from './useText';\nimport { renderText_unstable } from './renderText';\nimport { useTextStyles_unstable } from './useTextStyles.styles';\nimport type { TextProps } from './Text.types';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n\n/**\n * Typography and styling abstraction component used to ensure consistency of text.\n */\nexport const Text: ForwardRefComponent<TextProps> = React.forwardRef((props, ref) => {\n const state = useText_unstable(props, ref);\n\n useTextStyles_unstable(state);\n\n useCustomStyleHook_unstable('useTextStyles_unstable')(state);\n\n return renderText_unstable(state);\n // Work around some small mismatches in inferred types which don't matter in practice\n}) as ForwardRefComponent<TextProps>;\n\nText.displayName = 'Text';\n"],"names":["Text","React","forwardRef","props","ref","state","useText_unstable","useTextStyles_unstable","useCustomStyleHook_unstable","renderText_unstable","displayName"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;+BAWaA;;;eAAAA;;;;iEAXU;yBACU;4BACG;qCACG;qCAGK;AAKrC,MAAMA,OAAAA,WAAAA,GAAuCC,OAAMC,UAAU,CAAC,CAACC,OAAOC;IAC3E,MAAMC,QAAQC,IAAAA,yBAAAA,EAAiBH,OAAOC;IAEtCG,IAAAA,2CAAAA,EAAuBF;IAEvBG,IAAAA,gDAAAA,EAA4B,0BAA0BH;IAEtD,OAAOI,IAAAA,+BAAAA,EAAoBJ;AAC3B,qFAAqF;AACvF;AAEAL,KAAKU,WAAW,GAAG"}
@@ -14,8 +14,6 @@ const _react1 = require("@griffel/react");
14
14
  const _Text = require("../Text");
15
15
  function createPreset(options) {
16
16
  const { useStyles, className, displayName } = options;
17
- //TODO: migrate to fc to ensure v18 compatibility
18
- // eslint-disable-next-line deprecation/deprecation
19
17
  const Wrapper = /*#__PURE__*/ _react.forwardRef((props, ref)=>{
20
18
  'use no memo';
21
19
  const styles = useStyles();
@@ -1 +1 @@
1
- {"version":3,"sources":["createPreset.ts"],"sourcesContent":["import * as React from 'react';\nimport { mergeClasses } from '@griffel/react';\nimport { renderText_unstable, useText_unstable, useTextStyles_unstable } from '../Text';\nimport type { TextProps, TextPresetProps } from '../Text';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\n\nexport function createPreset(options: {\n className: string;\n displayName: string;\n useStyles: () => Record<'root', string>;\n}): React.FunctionComponent<TextPresetProps> {\n const { useStyles, className, displayName } = options;\n //TODO: migrate to fc to ensure v18 compatibility\n // eslint-disable-next-line deprecation/deprecation\n const Wrapper: ForwardRefComponent<TextPresetProps> = React.forwardRef((props, ref) => {\n 'use no memo';\n\n const styles = useStyles();\n const state = useText_unstable(props as TextProps, ref);\n\n useTextStyles_unstable(state);\n\n state.root.className = mergeClasses(className, state.root.className, styles.root, props.className);\n\n return renderText_unstable(state);\n });\n Wrapper.displayName = displayName;\n\n return Wrapper;\n}\n"],"names":["createPreset","options","useStyles","className","displayName","Wrapper","React","forwardRef","props","ref","styles","state","useText_unstable","useTextStyles_unstable","root","mergeClasses","renderText_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;+BAMgBA;;;eAAAA;;;;iEANO;wBACM;sBACiD;AAIvE,SAASA,aAAaC,OAI5B;IACC,MAAM,EAAEC,SAAS,EAAEC,SAAS,EAAEC,WAAW,EAAE,GAAGH;IAC9C,iDAAiD;IACjD,mDAAmD;IACnD,MAAMI,wBAAgDC,OAAMC,UAAU,CAAC,CAACC,OAAOC;QAC7E;QAEA,MAAMC,SAASR;QACf,MAAMS,QAAQC,IAAAA,sBAAAA,EAAiBJ,OAAoBC;QAEnDI,IAAAA,4BAAAA,EAAuBF;QAEvBA,MAAMG,IAAI,CAACX,SAAS,GAAGY,IAAAA,oBAAAA,EAAaZ,WAAWQ,MAAMG,IAAI,CAACX,SAAS,EAAEO,OAAOI,IAAI,EAAEN,MAAML,SAAS;QAEjG,OAAOa,IAAAA,yBAAAA,EAAoBL;IAC7B;IACAN,QAAQD,WAAW,GAAGA;IAEtB,OAAOC;AACT"}
1
+ {"version":3,"sources":["createPreset.ts"],"sourcesContent":["import * as React from 'react';\nimport { mergeClasses } from '@griffel/react';\nimport { renderText_unstable, useText_unstable, useTextStyles_unstable } from '../Text';\nimport type { TextProps, TextPresetProps } from '../Text';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\n\nexport function createPreset(options: {\n className: string;\n displayName: string;\n useStyles: () => Record<'root', string>;\n}): React.FunctionComponent<TextPresetProps> {\n const { useStyles, className, displayName } = options;\n const Wrapper: ForwardRefComponent<TextPresetProps> = React.forwardRef((props, ref) => {\n 'use no memo';\n\n const styles = useStyles();\n const state = useText_unstable(props as TextProps, ref);\n\n useTextStyles_unstable(state);\n\n state.root.className = mergeClasses(className, state.root.className, styles.root, props.className);\n\n return renderText_unstable(state);\n });\n Wrapper.displayName = displayName;\n\n return Wrapper;\n}\n"],"names":["createPreset","options","useStyles","className","displayName","Wrapper","React","forwardRef","props","ref","styles","state","useText_unstable","useTextStyles_unstable","root","mergeClasses","renderText_unstable"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;+BAMgBA;;;eAAAA;;;;iEANO;wBACM;sBACiD;AAIvE,SAASA,aAAaC,OAI5B;IACC,MAAM,EAAEC,SAAS,EAAEC,SAAS,EAAEC,WAAW,EAAE,GAAGH;IAC9C,MAAMI,wBAAgDC,OAAMC,UAAU,CAAC,CAACC,OAAOC;QAC7E;QAEA,MAAMC,SAASR;QACf,MAAMS,QAAQC,IAAAA,sBAAAA,EAAiBJ,OAAoBC;QAEnDI,IAAAA,4BAAAA,EAAuBF;QAEvBA,MAAMG,IAAI,CAACX,SAAS,GAAGY,IAAAA,oBAAAA,EAAaZ,WAAWQ,MAAMG,IAAI,CAACX,SAAS,EAAEO,OAAOI,IAAI,EAAEN,MAAML,SAAS;QAEjG,OAAOa,IAAAA,yBAAAA,EAAoBL;IAC7B;IACAN,QAAQD,WAAW,GAAGA;IAEtB,OAAOC;AACT"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-text",
3
- "version": "0.0.0-nightly-20240727-0949.1",
3
+ "version": "0.0.0-nightly-20240727-2000.1",
4
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
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -27,16 +27,16 @@
27
27
  },
28
28
  "devDependencies": {
29
29
  "@fluentui/eslint-plugin": "*",
30
- "@fluentui/react-conformance": "0.0.0-nightly-20240727-0949.1",
31
- "@fluentui/react-conformance-griffel": "0.0.0-nightly-20240727-0949.1",
30
+ "@fluentui/react-conformance": "0.0.0-nightly-20240727-2000.1",
31
+ "@fluentui/react-conformance-griffel": "0.0.0-nightly-20240727-2000.1",
32
32
  "@fluentui/scripts-api-extractor": "*",
33
33
  "@fluentui/scripts-tasks": "*"
34
34
  },
35
35
  "dependencies": {
36
- "@fluentui/react-shared-contexts": "0.0.0-nightly-20240727-0949.1",
37
- "@fluentui/react-theme": "0.0.0-nightly-20240727-0949.1",
38
- "@fluentui/react-utilities": "0.0.0-nightly-20240727-0949.1",
39
- "@fluentui/react-jsx-runtime": "0.0.0-nightly-20240727-0949.1",
36
+ "@fluentui/react-shared-contexts": "0.0.0-nightly-20240727-2000.1",
37
+ "@fluentui/react-theme": "0.0.0-nightly-20240727-2000.1",
38
+ "@fluentui/react-utilities": "0.0.0-nightly-20240727-2000.1",
39
+ "@fluentui/react-jsx-runtime": "0.0.0-nightly-20240727-2000.1",
40
40
  "@griffel/react": "^1.5.22",
41
41
  "@swc/helpers": "^0.5.1"
42
42
  },