9.0.38 • Published 1 day ago

@fluentui/react-jsx-runtime v9.0.38

Weekly downloads
-
License
MIT
Repository
github
Last release
1 day ago

@fluentui/react-jsx-runtime

React JSX runtime for Fluent UI React

Fluent UI React requires the usage of a custom JSX runtime to support the slots API

Usage

This library should only be used in the case where you are trying to use the internal slot API of Fluent UI React. If you are not using the internal slot API, you should not need to use this library.

In case you want to re-compose a component and redeclare its render method then this API will be necessary, here's our documentation on Rendering a component with slots

To properly render a component with slots the createElement method of @fluentui/react-jsx-runtime can be used as a replacement for React.createElement:

/** @jsxRuntime classic */
/** @jsx createElement */

// createElement custom JSX pragma is required to support slot creation
import { createElement } from '@fluentui/react-jsx-runtime';
import { assertSlots } from '@fluentui/react-utilities';

const renderButton_unstable = (state: ButtonState) => {
  const { iconOnly, iconPosition } = state;

  assertSlots<ButtonSlots>(state);

  return (
    <state.root>
      {iconPosition !== 'after' && state.icon && <state.icon />}
      {!iconOnly && state.root.children}
      {iconPosition === 'after' && state.icon && <state.icon />}
    </state.root>
  );
};

In case you're using typescript or any modern javascript transpiler, you can use JSX import source feature instead of depending on declaring the runtime on every file

In TSC case you can simply add this do tsconfig.json file:

{
  "compilerOptions": {
    "jsx": "react-jsx",
    "jsxImportSource": "@fluentui/react-jsx-runtime"
  }
}
@everything-registry/sub-chunk-330@fluentui/react-radio@fluentui/react-rating@fluentui/react-rating-preview@fluentui/react-search@fluentui/react-search-preview@fluentui/react-select@fluentui/react-skeleton@fluentui/react-progress@fluentui/react-provider@fluentui/react-slider@fluentui/react-spinbutton@fluentui/react-spinner@fluentui/react-swatch-picker@fluentui/react-persona@fluentui/react-popover@fluentui/react-text@fluentui/react-textarea@fluentui/react-tabs@fluentui/react-tag-picker@fluentui/react-tag-picker-preview@fluentui/react-swatch-picker-preview@fluentui/react-switch@fluentui/react-table@fluentui/react-tags@fluentui/react-tags-preview@fluentui/react-teaching-popover@fluentui/react-teaching-popover-preview@fluentui-contrib/react-chat@fluentui-contrib/react-themeless-provider@fluentui-contrib/react-tree-grid@fluentui/react-accordion@fluentui/react-alert@fluentui/react-drawer@fluentui/react-field@fluentui/react-input@fluentui/react-label@fluentui/react-link@fluentui/react-list-preview@fluentui/react-menu@fluentui/react-message-bar@fluentui/react-message-bar-preview@fluentui/react-migration-v0-v9@fluentui/react-motion-preview@fluentui/react-nav-preview@fluentui/react-image@fluentui/react-divider@fluentui/react-infobutton@fluentui/react-infolabel@fluentui/react-infolabel-preview@fluentui/react-timepicker-compat@fluentui/react-timepicker-compat-preview@fluentui/react-toast@fluentui/react-toolbar@fluentui/react-tooltip@fluentui/react-tree@fluentui/react-virtualizer@fluentui/react-button@fluentui/react-calendar-compat@fluentui/react-card@fluentui/react-checkbox@fluentui/react-combobox@fluentui/react-aria@fluentui/react-avatar@fluentui/react-badge@fluentui/react-breadcrumb@fluentui/react-breadcrumb-preview@fluentui/react-data-grid-react-window@fluentui/react-datepicker-compat@fluentui/react-dialog
9.0.38

1 day ago

9.0.37

15 days ago

9.0.36

28 days ago

9.0.35

2 months ago

9.0.34

2 months ago

9.0.33

2 months ago

9.0.32

2 months ago

9.0.31

3 months ago

9.0.30

3 months ago

9.0.29

4 months ago

9.0.28

4 months ago

9.0.27

4 months ago

9.0.26

4 months ago

9.0.25

4 months ago

9.0.24

4 months ago

9.0.23

5 months ago

9.0.22

5 months ago

9.0.21

5 months ago

9.0.9

8 months ago

9.0.8

8 months ago

9.0.7

8 months ago

9.0.6

9 months ago

9.0.5

9 months ago

9.0.4

9 months ago

9.0.3

9 months ago

9.0.2

9 months ago

9.0.1

9 months ago

9.0.0

9 months ago

9.0.0-alpha.15

9 months ago

9.0.0-alpha.16

9 months ago

9.0.0-alpha.13

10 months ago

9.0.0-alpha.14

10 months ago

9.0.0-alpha.11

10 months ago

9.0.0-alpha.12

10 months ago

9.0.0-alpha.10

11 months ago

9.0.17

7 months ago

9.0.16

7 months ago

9.0.19

6 months ago

9.0.18

7 months ago

9.0.13

8 months ago

9.0.12

8 months ago

9.0.15

7 months ago

9.0.14

8 months ago

9.0.11

8 months ago

9.0.10

8 months ago

9.0.20

6 months ago

9.0.0-alpha.9

11 months ago

9.0.0-alpha.7

11 months ago

9.0.0-alpha.8

11 months ago

9.0.0-alpha.6

12 months ago

9.0.0-alpha.5

12 months ago

9.0.0-alpha.4

1 year ago

9.0.0-alpha.3

1 year ago

9.0.0-alpha.2

1 year ago

9.0.0-alpha.1

1 year ago