@internetarchive/donation-form 0.5.18 → 0.5.20
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.
|
@@ -14,7 +14,7 @@ let ErrorModalContent = class ErrorModalContent extends LitElement {
|
|
|
14
14
|
return html `
|
|
15
15
|
<div class="container">
|
|
16
16
|
<a
|
|
17
|
-
href="https://help.archive.org/
|
|
17
|
+
href="https://help.archive.org/help/why-is-there-a-problem-processing-my-donation/"
|
|
18
18
|
rel="noopener"
|
|
19
19
|
target="_blank"
|
|
20
20
|
>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"error-modal-content.js","sourceRoot":"","sources":["../../../src/modals/error-modal-content.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAA6B,MAAM,KAAK,CAAC;AACvE,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAElD;;;;;;GAMG;AAEH,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,UAAU;IAC/C,kBAAkB;IAClB,MAAM;QACJ,OAAO,IAAI,CAAA;;;;;;;;;;KAUV,CAAC;IACJ,CAAC;IAED,kBAAkB;IAClB,MAAM,KAAK,MAAM;QACf,MAAM,sBAAsB,GAAG,GAAG,CAAA,+CAA+C,CAAC;QAClF,MAAM,sBAAsB,GAAG,GAAG,CAAA,+CAA+C,CAAC;QAClF,MAAM,qBAAqB,GAAG,GAAG,CAAA,gDAAgD,CAAC;QAElF,OAAO,GAAG,CAAA;;sBAEQ,sBAAsB;;;;;;;iBAO3B,sBAAsB;qBAClB,qBAAqB;;KAErC,CAAC;IACJ,CAAC;CACF,CAAA;AApCY,iBAAiB;IAD7B,aAAa,CAAC,mCAAmC,CAAC;GACtC,iBAAiB,CAoC7B;SApCY,iBAAiB","sourcesContent":["import { LitElement, html, css, CSSResult, TemplateResult } from 'lit';\nimport { customElement } from 'lit/decorators.js';\n\n/**\n * This is shown at the bottom of the error modal.\n *\n * @export\n * @class ErrorModalContent\n * @extends {LitElement}\n */\n@customElement('donation-form-error-modal-content')\nexport class ErrorModalContent extends LitElement {\n /** @inheritdoc */\n render(): TemplateResult {\n return html`\n <div class=\"container\">\n <a\n href=\"https://help.archive.org/
|
|
1
|
+
{"version":3,"file":"error-modal-content.js","sourceRoot":"","sources":["../../../src/modals/error-modal-content.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAA6B,MAAM,KAAK,CAAC;AACvE,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAElD;;;;;;GAMG;AAEH,IAAa,iBAAiB,GAA9B,MAAa,iBAAkB,SAAQ,UAAU;IAC/C,kBAAkB;IAClB,MAAM;QACJ,OAAO,IAAI,CAAA;;;;;;;;;;KAUV,CAAC;IACJ,CAAC;IAED,kBAAkB;IAClB,MAAM,KAAK,MAAM;QACf,MAAM,sBAAsB,GAAG,GAAG,CAAA,+CAA+C,CAAC;QAClF,MAAM,sBAAsB,GAAG,GAAG,CAAA,+CAA+C,CAAC;QAClF,MAAM,qBAAqB,GAAG,GAAG,CAAA,gDAAgD,CAAC;QAElF,OAAO,GAAG,CAAA;;sBAEQ,sBAAsB;;;;;;;iBAO3B,sBAAsB;qBAClB,qBAAqB;;KAErC,CAAC;IACJ,CAAC;CACF,CAAA;AApCY,iBAAiB;IAD7B,aAAa,CAAC,mCAAmC,CAAC;GACtC,iBAAiB,CAoC7B;SApCY,iBAAiB","sourcesContent":["import { LitElement, html, css, CSSResult, TemplateResult } from 'lit';\nimport { customElement } from 'lit/decorators.js';\n\n/**\n * This is shown at the bottom of the error modal.\n *\n * @export\n * @class ErrorModalContent\n * @extends {LitElement}\n */\n@customElement('donation-form-error-modal-content')\nexport class ErrorModalContent extends LitElement {\n /** @inheritdoc */\n render(): TemplateResult {\n return html`\n <div class=\"container\">\n <a\n href=\"https://help.archive.org/help/why-is-there-a-problem-processing-my-donation/\"\n rel=\"noopener\"\n target=\"_blank\"\n >\n Questions?\n </a>\n </div>\n `;\n }\n\n /** @inheritdoc */\n static get styles(): CSSResult {\n const questionsLinkTopMargin = css`var(--errorModalQuestionsLinkTopMargin, 1rem)`;\n const questionsLinkFontColor = css`var(--errorModalQuestionsLinkFontColor, #333)`;\n const questionsLinkFontSize = css`var(--errorModalQuestionsLinkFontSize, 1.4rem)`;\n\n return css`\n .container {\n margin-top: ${questionsLinkTopMargin};\n text-align: center;\n }\n\n a,\n a:link,\n a:visited {\n color: ${questionsLinkFontColor};\n font-size: ${questionsLinkFontSize};\n }\n `;\n }\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@internetarchive/donation-form",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.20",
|
|
4
4
|
"description": "The Internet Archive Donation Form",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@internetarchive/analytics-manager": "^0.1.2",
|
|
32
32
|
"@internetarchive/donation-form-currency-validator": "^0.3.0",
|
|
33
33
|
"@internetarchive/donation-form-data-models": "^0.3.3",
|
|
34
|
-
"@internetarchive/donation-form-edit-donation": "^0.
|
|
34
|
+
"@internetarchive/donation-form-edit-donation": "^1.0.2",
|
|
35
35
|
"@internetarchive/donation-form-section": "^0.3.5",
|
|
36
36
|
"@internetarchive/icon-applepay": "^1.3.2",
|
|
37
37
|
"@internetarchive/icon-calendar": "^1.3.2",
|
|
@@ -15,7 +15,7 @@ export class ErrorModalContent extends LitElement {
|
|
|
15
15
|
return html`
|
|
16
16
|
<div class="container">
|
|
17
17
|
<a
|
|
18
|
-
href="https://help.archive.org/
|
|
18
|
+
href="https://help.archive.org/help/why-is-there-a-problem-processing-my-donation/"
|
|
19
19
|
rel="noopener"
|
|
20
20
|
target="_blank"
|
|
21
21
|
>
|