diff --git a/docs/site/src/content/docs/plugins/core/common-expressions.mdx b/docs/site/src/content/docs/plugins/core/common-expressions.mdx index 167501052..32ac1ecb2 100644 --- a/docs/site/src/content/docs/plugins/core/common-expressions.mdx +++ b/docs/site/src/content/docs/plugins/core/common-expressions.mdx @@ -21,7 +21,7 @@ Install the plugin: Add it to Player: ```js -import CommonExpressionsPlugin from "@player-ui/common-expressions-plugin"; +import { CommonExpressionsPlugin } from '@player-ui/common-expressions-plugin'; const commonExpressionsPlugin = new CommonExpressionsPlugin(); const player = new Player({ plugins: [commonExpressionsPlugin] }); diff --git a/docs/site/src/content/docs/plugins/core/common-types.mdx b/docs/site/src/content/docs/plugins/core/common-types.mdx index e809ffc51..a20ab60c1 100644 --- a/docs/site/src/content/docs/plugins/core/common-types.mdx +++ b/docs/site/src/content/docs/plugins/core/common-types.mdx @@ -21,7 +21,7 @@ Install the plugin: Add it to Player: ```js -import CommonTypesPlugin from "@player-ui/common-types-plugin"; +import { CommonTypesPlugin } from '@player-ui/common-types-plugin'; const commonTypesPlugin = new CommonTypesPlugin(); const player = new Player({ plugins: [commonTypesPlugin] }); @@ -134,7 +134,6 @@ Options: > Asserts that a value is not `null`, `undefined`, or an empty string Options: - ```ts { /** An expression to limit the assertion only if the expression evaluates to truthy **/ @@ -220,7 +219,6 @@ Options: > Asserts that the value is one of the pre-defined accepted values Options: - ```ts { options?: Array; diff --git a/docs/site/src/content/docs/plugins/multiplatform/check-path.mdx b/docs/site/src/content/docs/plugins/multiplatform/check-path.mdx index 5e939056b..6729d911f 100644 --- a/docs/site/src/content/docs/plugins/multiplatform/check-path.mdx +++ b/docs/site/src/content/docs/plugins/multiplatform/check-path.mdx @@ -20,7 +20,7 @@ Install the plugin: Add it to Player: ```js -import CheckPathPlugin from "@player-ui/check-path-plugin"; +import { CheckPathPlugin } from '@player-ui/check-path-plugin'; const checkPathPlugin = new CheckPathPlugin(); const player = new Player({ plugins: [checkPathPlugin] });