@rijkshuisstijl-community/paragraph-react 2.0.2 → 2.1.2

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,5 +1,32 @@
1
1
  # @rijkshuisstijl-community/paragraph-react
2
2
 
3
+ ## 2.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 89b2604: Fix security vulnerabilities identified by pnpm audit by upgrading vitest and @vitest/coverage-v8 from 4.1.8 to 4.1.10.
8
+
9
+ ## 2.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - e41c59f: update dependencies
14
+
15
+ ## 2.1.0
16
+
17
+ ### Minor Changes
18
+
19
+ - de35f24: Update README files
20
+ - c9e30de: Added an option to import the components separate from the css.
21
+
22
+ ### Patch Changes
23
+
24
+ - c414601: Ensure package is published with provenance
25
+ - 02786d9: security patch
26
+ - Updated dependencies [c414601]
27
+ - Updated dependencies [de35f24]
28
+ - @rijkshuisstijl-community/paragraph-css@2.1.0
29
+
3
30
  ## 2.0.2
4
31
 
5
32
  ### Patch Changes
package/README.md CHANGED
@@ -2,29 +2,21 @@
2
2
 
3
3
  # Omschrijving
4
4
 
5
- Dit package bevat de specifieke code voor het component. Als je alle rijkshuisstijl community componenten wil kijk dan naar [https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/components-react/library-react/README.md]. Voor verdere informatie over het inzet van de component kijk naar onze documentatie [https://rijkshuisstijl-community.vercel.app/?path=/docs/rhc-paragraph-docs]
5
+ Dit is de Paragraph React component van het Rijkshuisstijl Community Design System. Zie ook de volgende links:
6
+
7
+ - README.md voor alle React-componenten
8
+ [https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/components-react/library-react/README.md]
6
9
 
7
10
  ## Installatie
8
11
 
9
12
  ```bash
10
13
  pnpm add @rijkshuisstijl-community/paragraph-react
11
-
12
14
  ```
13
15
 
14
16
  ## Gebruik
15
17
 
16
- ### Voorbeeld 1
17
-
18
- ```tsx
19
- <Paragraph>Lorem ipsum dolor sit amet, consectetur ad isicing elit, sed do eiusmod</Paragraph>
20
- ```
21
-
22
- ### Voorbeeld 2
23
-
24
- ```tsx
25
- <Paragraph purpose="lead">Lorem ipsum dolor sit amet, consectetur ad isicing elit, sed do eiusmod</Paragraph>
26
- ```
18
+ Op de storybook voor Paragraph React component staan voorbeelden voor het gebruik van dit component[https://rijkshuisstijl-community.vercel.app/?path=/docs/rhc-paragraph--docs]
27
19
 
28
- ## Rijkshuisstijl Community Componenten
20
+ ## Testing
29
21
 
30
- **Direct aan de slag met [CSS](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/components-css/library-css/README.md) | [React](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/components-react/library-react/README.md) | [Web Components](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/web-components/README.md) | [Twig](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/components-twig/README.md)**
22
+ We bundelen de CSS direct mee met de componenten zodat je dit niet apart hoeft in te laden. Let wel op met unit tests die in de Node omgeving draaien: die ondersteunen niet altijd standaard `.css` files. Voor vitest moet je bijvoorbeeld `pool: 'vmThreads',` aanzetten in de config als je de volgende error tegenkomt: `TypeError: Unknown file extension ".css"`
@@ -8,6 +8,6 @@ export interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement> {
8
8
  purpose?: NlParagraphPurpose;
9
9
  }
10
10
  export declare const Paragraph: {
11
- ({ className, ...restProps }: ParagraphProps): import("react/jsx-runtime").JSX.Element;
11
+ ({ className, ...restProps }: ParagraphProps): import("react").JSX.Element;
12
12
  displayName: string;
13
13
  };
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  import '@rijkshuisstijl-community/paragraph-css';
2
- export { Paragraph, type ParagraphProps } from './Paragraph';
2
+ export * from './Paragraph';
@@ -1,4 +1,3 @@
1
- 'use client';
2
1
  import '@rijkshuisstijl-community/paragraph-css';
3
2
  import { jsx } from 'react/jsx-runtime';
4
3
  import { Paragraph as Paragraph$1 } from '@nl-design-system-candidate/paragraph-react';
@@ -17,4 +16,4 @@ const Paragraph = ({
17
16
  Paragraph.displayName = 'Paragraph';
18
17
 
19
18
  export { Paragraph };
20
- //# sourceMappingURL=index.esm.js.map
19
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","sources":["../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","../src/Paragraph.tsx"],"sourcesContent":["function r(e){var t,f,n=\"\";if(\"string\"==typeof e||\"number\"==typeof e)n+=e;else if(\"object\"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=\" \"),n+=f)}else for(f in e)e[f]&&(n&&(n+=\" \"),n+=f);return n}export function clsx(){for(var e,t,f=0,n=\"\",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=\" \"),n+=t);return n}export default clsx;","/**\n * @license EUPL-1.2\n * Copyright (c) 2026 Community for NL Design System\n */\n\nimport {\n Paragraph as NlParagraph,\n type ParagraphPurpose as NlParagraphPurpose,\n} from '@nl-design-system-candidate/paragraph-react';\nimport clsx from 'clsx';\nimport { HTMLAttributes } from 'react';\n\nexport interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement> {\n purpose?: NlParagraphPurpose;\n}\n\nexport const Paragraph = ({ className, ...restProps }: ParagraphProps) => {\n return <NlParagraph className={clsx('rhc-paragraph', className)} {...restProps} />;\n};\n\nParagraph.displayName = 'Paragraph';\n"],"names":["Paragraph","className","restProps","_jsx","NlParagraph","clsx","displayName"],"mappings":";;;;AAAA,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,OAAO,CAAC,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,GAAG,QAAQ,EAAE,OAAO,CAAC,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAC,CAAC,KAAK,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAQ,SAAS,IAAI,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC;;ACgBxW,MAAMA,SAAS,GAAGA,CAAC;EAAEC,SAAS;EAAE,GAAGC;AAAS,CAAkB,KAAI;EACvE,OAAOC,GAAA,CAACC,WAAW,EAAA;AAACH,IAAAA,SAAS,EAAEI,IAAI,CAAC,eAAe,EAAEJ,SAAS,CAAC;IAAA,GAAMC;IAAa;AACpF;AAEAF,SAAS,CAACM,WAAW,GAAG,WAAW;;;;","x_google_ignoreList":[0]}
@@ -0,0 +1 @@
1
+ export * from './Paragraph';
@@ -0,0 +1,18 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { Paragraph as Paragraph$1 } from '@nl-design-system-candidate/paragraph-react';
3
+
4
+ function r(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=" "),n+=f);}else for(f in e)e[f]&&(n&&(n+=" "),n+=f);return n}function clsx(){for(var e,t,f=0,n="",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=" "),n+=t);return n}
5
+
6
+ const Paragraph = ({
7
+ className,
8
+ ...restProps
9
+ }) => {
10
+ return jsx(Paragraph$1, {
11
+ className: clsx('rhc-paragraph', className),
12
+ ...restProps
13
+ });
14
+ };
15
+ Paragraph.displayName = 'Paragraph';
16
+
17
+ export { Paragraph };
18
+ //# sourceMappingURL=noSideEffects.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"noSideEffects.mjs","sources":["../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","../src/Paragraph.tsx"],"sourcesContent":["function r(e){var t,f,n=\"\";if(\"string\"==typeof e||\"number\"==typeof e)n+=e;else if(\"object\"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=\" \"),n+=f)}else for(f in e)e[f]&&(n&&(n+=\" \"),n+=f);return n}export function clsx(){for(var e,t,f=0,n=\"\",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=\" \"),n+=t);return n}export default clsx;","/**\n * @license EUPL-1.2\n * Copyright (c) 2026 Community for NL Design System\n */\n\nimport {\n Paragraph as NlParagraph,\n type ParagraphPurpose as NlParagraphPurpose,\n} from '@nl-design-system-candidate/paragraph-react';\nimport clsx from 'clsx';\nimport { HTMLAttributes } from 'react';\n\nexport interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement> {\n purpose?: NlParagraphPurpose;\n}\n\nexport const Paragraph = ({ className, ...restProps }: ParagraphProps) => {\n return <NlParagraph className={clsx('rhc-paragraph', className)} {...restProps} />;\n};\n\nParagraph.displayName = 'Paragraph';\n"],"names":["Paragraph","className","restProps","_jsx","NlParagraph","clsx","displayName"],"mappings":";;;AAAA,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,OAAO,CAAC,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,GAAG,QAAQ,EAAE,OAAO,CAAC,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAC,CAAC,KAAK,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAQ,SAAS,IAAI,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC;;ACgBxW,MAAMA,SAAS,GAAGA,CAAC;EAAEC,SAAS;EAAE,GAAGC;AAAS,CAAkB,KAAI;EACvE,OAAOC,GAAA,CAACC,WAAW,EAAA;AAACH,IAAAA,SAAS,EAAEI,IAAI,CAAC,eAAe,EAAEJ,SAAS,CAAC;IAAA,GAAMC;IAAa;AACpF;AAEAF,SAAS,CAACM,WAAW,GAAG,WAAW;;;;","x_google_ignoreList":[0]}
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.2",
2
+ "version": "2.1.2",
3
3
  "author": "Community for Rijkshuisstijl-Community Design System",
4
4
  "description": "Paragraph component",
5
5
  "license": "EUPL-1.2",
@@ -11,22 +11,26 @@
11
11
  "src/",
12
12
  "*.md"
13
13
  ],
14
- "module": "./dist/index.esm.js",
14
+ "module": "./dist/index.mjs",
15
15
  "types": "./dist/index.d.ts",
16
16
  "exports": {
17
17
  ".": {
18
18
  "rhc:source": "./src/index.ts",
19
- "default": {
20
- "types": "./dist/index.d.ts",
21
- "import": "./dist/index.esm.js"
22
- }
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/index.mjs"
21
+ },
22
+ "./no-side-effects": {
23
+ "rhc:source": "./src/noSideEffects.ts",
24
+ "types": "./dist/noSideEffects.d.ts",
25
+ "import": "./dist/noSideEffects.mjs"
23
26
  }
24
27
  },
25
28
  "keywords": [
26
29
  "rijkshuisstijl-community-design-system"
27
30
  ],
28
31
  "publishConfig": {
29
- "access": "public"
32
+ "access": "public",
33
+ "provenance": true
30
34
  },
31
35
  "repository": {
32
36
  "type": "git+ssh",
@@ -34,27 +38,27 @@
34
38
  "directory": "packages/components-react/paragraph-react"
35
39
  },
36
40
  "devDependencies": {
37
- "@babel/core": "7.29.0",
38
- "@babel/plugin-transform-runtime": "7.29.0",
39
- "@babel/preset-env": "7.29.2",
40
- "@babel/preset-react": "7.28.5",
41
- "@babel/preset-typescript": "7.28.5",
42
- "@babel/runtime": "7.29.2",
41
+ "@babel/core": "7.29.7",
42
+ "@babel/plugin-transform-runtime": "7.29.7",
43
+ "@babel/preset-env": "7.29.7",
44
+ "@babel/preset-react": "7.29.7",
45
+ "@babel/preset-typescript": "7.29.7",
46
+ "@babel/runtime": "7.29.7",
43
47
  "@rollup/plugin-babel": "6.1.0",
44
- "@rollup/plugin-commonjs": "29.0.2",
48
+ "@rollup/plugin-commonjs": "29.0.3",
45
49
  "@rollup/plugin-node-resolve": "16.0.3",
46
50
  "@testing-library/dom": "10.4.1",
47
51
  "@testing-library/jest-dom": "6.9.1",
48
52
  "@testing-library/react": "16.3.2",
49
53
  "@testing-library/user-event": "14.6.1",
50
54
  "@types/lodash.chunk": "4.2.9",
51
- "@types/react": "19.2.14",
55
+ "@types/react": "19.2.17",
52
56
  "@vitejs/plugin-react": "4.7.0",
53
- "@vitest/coverage-v8": "3.2.4",
57
+ "@vitest/coverage-v8": "4.1.10",
54
58
  "clsx": "2.1.1",
55
- "react": "19.2.4",
56
- "react-dom": "19.2.4",
57
- "rollup": "4.60.1",
59
+ "react": "19.2.7",
60
+ "react-dom": "19.2.7",
61
+ "rollup": "4.61.1",
58
62
  "rollup-plugin-filesize": "10.0.0",
59
63
  "rollup-plugin-node-externals": "8.1.2",
60
64
  "rollup-plugin-node-polyfills": "0.2.1",
@@ -62,8 +66,8 @@
62
66
  "rollup-plugin-postcss": "4.0.2",
63
67
  "rollup-plugin-typescript2": "0.37.0",
64
68
  "typescript": "5.9.3",
65
- "vite": "7.3.1",
66
- "vitest": "3.2.4"
69
+ "vite": "7.3.5",
70
+ "vitest": "4.1.10"
67
71
  },
68
72
  "peerDependencies": {
69
73
  "react": ">=18.2.0",
@@ -71,9 +75,7 @@
71
75
  },
72
76
  "dependencies": {
73
77
  "@nl-design-system-candidate/paragraph-react": "2.2.2",
74
- "@vitejs/plugin-react": "4.7.0",
75
- "@vitest/coverage-v8": "3.2.4",
76
- "@rijkshuisstijl-community/paragraph-css": "2.0.1"
78
+ "@rijkshuisstijl-community/paragraph-css": "2.1.0"
77
79
  },
78
80
  "scripts": {
79
81
  "build": "rollup --config rollup.config.mjs",
package/src/index.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  import '@rijkshuisstijl-community/paragraph-css';
2
2
 
3
- export { Paragraph, type ParagraphProps } from './Paragraph';
3
+ export * from './Paragraph';
@@ -0,0 +1 @@
1
+ export * from './Paragraph';
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.esm.js","sources":["../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","../src/Paragraph.tsx"],"sourcesContent":["function r(e){var t,f,n=\"\";if(\"string\"==typeof e||\"number\"==typeof e)n+=e;else if(\"object\"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=\" \"),n+=f)}else for(f in e)e[f]&&(n&&(n+=\" \"),n+=f);return n}export function clsx(){for(var e,t,f=0,n=\"\",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=\" \"),n+=t);return n}export default clsx;","/**\n * @license EUPL-1.2\n * Copyright (c) 2026 Community for NL Design System\n */\n\nimport {\n Paragraph as NlParagraph,\n type ParagraphPurpose as NlParagraphPurpose,\n} from '@nl-design-system-candidate/paragraph-react';\nimport clsx from 'clsx';\nimport { HTMLAttributes } from 'react';\n\nexport interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement> {\n purpose?: NlParagraphPurpose;\n}\n\nexport const Paragraph = ({ className, ...restProps }: ParagraphProps) => {\n return <NlParagraph className={clsx('rhc-paragraph', className)} {...restProps} />;\n};\n\nParagraph.displayName = 'Paragraph';\n"],"names":["Paragraph","className","restProps","_jsx","NlParagraph","clsx","displayName"],"mappings":";;;;;AAAA,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,OAAO,CAAC,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,GAAG,QAAQ,EAAE,OAAO,CAAC,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAC,CAAC,KAAK,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAQ,SAAS,IAAI,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC;;ACgBxW,MAAMA,SAAS,GAAGA,CAAC;EAAEC,SAAS;EAAE,GAAGC;AAAS,CAAkB,KAAI;EACvE,OAAOC,GAAA,CAACC,WAAW,EAAA;AAACH,IAAAA,SAAS,EAAEI,IAAI,CAAC,eAAe,EAAEJ,SAAS,CAAC;IAAA,GAAMC;IAAa;AACpF;AAEAF,SAAS,CAACM,WAAW,GAAG,WAAW;;;;","x_google_ignoreList":[0]}