optimized-react-component-library-xyz123 0.31.2 → 0.31.4
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/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -10,6 +10,7 @@ interface IApplicationContent {
|
|
|
10
10
|
linksForMoreInfo?: Array<IPTSLink>;
|
|
11
11
|
pageTitle?: string;
|
|
12
12
|
textblocks?: Array<ITextBlock>;
|
|
13
|
+
textAboveStartButton?: string;
|
|
13
14
|
languageSupport: [
|
|
14
15
|
{
|
|
15
16
|
language: string;
|
|
@@ -18,6 +19,7 @@ interface IApplicationContent {
|
|
|
18
19
|
linksForMoreInfo: Array<IPTSLink>;
|
|
19
20
|
pageTitle: string;
|
|
20
21
|
textblocks: Array<ITextBlock>;
|
|
22
|
+
textAboveStartButton?: string;
|
|
21
23
|
}
|
|
22
24
|
];
|
|
23
25
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ interface IApplicationContent {
|
|
|
10
10
|
linksForMoreInfo?: Array<IPTSLink>;
|
|
11
11
|
pageTitle?: string;
|
|
12
12
|
textblocks?: Array<ITextBlock>;
|
|
13
|
+
textAboveStartButton?: string;
|
|
13
14
|
languageSupport: [
|
|
14
15
|
{
|
|
15
16
|
language: string;
|
|
@@ -18,6 +19,7 @@ interface IApplicationContent {
|
|
|
18
19
|
linksForMoreInfo: Array<IPTSLink>;
|
|
19
20
|
pageTitle: string;
|
|
20
21
|
textblocks: Array<ITextBlock>;
|
|
22
|
+
textAboveStartButton?: string;
|
|
21
23
|
}
|
|
22
24
|
];
|
|
23
25
|
}
|
package/dist/index.js
CHANGED
|
@@ -2958,7 +2958,8 @@ var TextBody = ({ data }) => {
|
|
|
2958
2958
|
data.linksForMoreInfo[0].title
|
|
2959
2959
|
]
|
|
2960
2960
|
}
|
|
2961
|
-
)
|
|
2961
|
+
),
|
|
2962
|
+
data.textAboveStartButton && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: "pts-instruction-before-start-text", dangerouslySetInnerHTML: { __html: import_dompurify4.default.sanitize(data.textAboveStartButton) } })
|
|
2962
2963
|
] });
|
|
2963
2964
|
};
|
|
2964
2965
|
var TextBody_default = TextBody;
|