@startinblox/components-ds4go 4.1.4 → 4.1.5
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.js
CHANGED
|
@@ -8810,7 +8810,7 @@ let S = class extends k {
|
|
|
8810
8810
|
if (!t) return p;
|
|
8811
8811
|
const i = t.slice(0, this.spliceLength), r = this.selectedFacts.length, s = !!this.bundleName && r > 0 && !!this.bundleLanguage && !!this.bundleAccessPolicy && !!this.bundleContractPolicy;
|
|
8812
8812
|
return d`<tems-viewport>
|
|
8813
|
-
<tems-header slot="header" heading=${this.header}>
|
|
8813
|
+
<tems-header slot="header" heading=${`${this.header} - ${this.step === 0 ? l("Fact checks selection") : l("Bundle information")}`}>
|
|
8814
8814
|
<div slot="cta">
|
|
8815
8815
|
${this.step === 0 ? d`<tems-button
|
|
8816
8816
|
type="primary"
|
|
@@ -8826,7 +8826,7 @@ let S = class extends k {
|
|
|
8826
8826
|
><tems-button
|
|
8827
8827
|
type="primary"
|
|
8828
8828
|
disabled=${!s || p}
|
|
8829
|
-
label=${l(
|
|
8829
|
+
label=${l(w`Create bundle with ${r} fact${r > 1 ? "s" : ""}`)}
|
|
8830
8830
|
@click=${this._createFactBundle}
|
|
8831
8831
|
></tems-button>
|
|
8832
8832
|
</div>`}
|
|
@@ -9529,9 +9529,11 @@ const qn = {
|
|
|
9529
9529
|
s4aaac20ff7887391: "Catalogs available in",
|
|
9530
9530
|
sa89a60c3e1230cec: "Root Authority",
|
|
9531
9531
|
se5784a16a6799dad: w`Back to ${0}`,
|
|
9532
|
+
s2b185eaa078faa02: "Fact checks selection",
|
|
9533
|
+
scdde96242b31f2b3: "Bundle information",
|
|
9532
9534
|
s0fbf6dc6a1966408: "Next",
|
|
9533
9535
|
s7cde8ae6e5ec185a: "Cancel bundle creation",
|
|
9534
|
-
|
|
9536
|
+
s730a199fc5865083: w`Create bundle with ${0} fact${1}`,
|
|
9535
9537
|
sac1b0231875ff056: w`${0} selected fact${1}`,
|
|
9536
9538
|
s0d1be7a2c400c080: "more",
|
|
9537
9539
|
s8272d3578b7c78d5: w`Displaying ${0} of ${1} result${2}`,
|
package/package.json
CHANGED
|
@@ -479,7 +479,7 @@ export class SolidFactBundle extends OrbitComponent {
|
|
|
479
479
|
!!this.bundleContractPolicy;
|
|
480
480
|
|
|
481
481
|
return html`<tems-viewport>
|
|
482
|
-
<tems-header slot="header" heading=${this.header}>
|
|
482
|
+
<tems-header slot="header" heading=${`${this.header} - ${this.step === 0 ? msg("Fact checks selection") : msg("Bundle information")}`}>
|
|
483
483
|
<div slot="cta">
|
|
484
484
|
${this.step === 0
|
|
485
485
|
? html`<tems-button
|
|
@@ -497,7 +497,7 @@ export class SolidFactBundle extends OrbitComponent {
|
|
|
497
497
|
><tems-button
|
|
498
498
|
type="primary"
|
|
499
499
|
disabled=${!allowCreation || nothing}
|
|
500
|
-
label=${msg(
|
|
500
|
+
label=${msg(str`Create bundle with ${selectedFactsCount} fact${selectedFactsCount > 1 ? "s" : ""}`)}
|
|
501
501
|
@click=${this._createFactBundle}
|
|
502
502
|
></tems-button>
|
|
503
503
|
</div>`}
|