@box/box-ai-content-answers 0.154.4 → 0.155.0
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/esm/lib/components/answer/constants.js +3 -3
- package/dist/esm/lib/components/answer/feedback-tooltip.js +87 -84
- package/dist/esm/lib/components/answer/messages.js +1 -1
- package/dist/i18n/en-US.js +1 -1
- package/dist/i18n/en-US.properties +2 -2
- package/dist/i18n/json/src/lib/components/answer/messages.json +1 -1
- package/dist/styles/feedback-tooltip.css +1 -1
- package/dist/types/lib/components/answer/constants.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,44 +1,53 @@
|
|
|
1
|
-
import { Formik as
|
|
2
|
-
import { GuidedTooltip as l, Radio as c, TextArea as
|
|
3
|
-
import { useIntl as
|
|
4
|
-
import { F as
|
|
5
|
-
import {
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import { jsx as e, jsxs as
|
|
9
|
-
import '../../../../styles/feedback-tooltip.css';const
|
|
10
|
-
feedbackTooltip:
|
|
11
|
-
feedbackTooltipForm:
|
|
12
|
-
feedbackTooltipTitle:
|
|
13
|
-
feedbackTooltipTextarea:
|
|
1
|
+
import { Formik as y, Form as F } from "formik";
|
|
2
|
+
import { GuidedTooltip as l, Radio as c, TextArea as g, Checkbox as x, Text as I, Link as L } from "@box/blueprint-web";
|
|
3
|
+
import { useIntl as P, FormattedMessage as v } from "react-intl";
|
|
4
|
+
import { F as p } from "../../../../chunks/types.js";
|
|
5
|
+
import { ABUSE_FORM_PATH as N } from "./constants.js";
|
|
6
|
+
import R from "../../messages.js";
|
|
7
|
+
import t from "./messages.js";
|
|
8
|
+
import { jsx as e, jsxs as r, Fragment as w } from "react/jsx-runtime";
|
|
9
|
+
import '../../../../styles/feedback-tooltip.css';const B = "_feedbackTooltip_1y93t_1", D = "_feedbackTooltipForm_1y93t_8", E = "_feedbackTooltipTitle_1y93t_12", U = "_feedbackTooltipTextarea_1y93t_15", O = "_feedbackTooltipSubmitBtn_1y93t_18", M = "_feedbackTooltipPromptShareConsent_1y93t_21", $ = "_feedbackTooltipAbuseDisclaimer_1y93t_24", j = "_feedbackTooltipAbuseLink_1y93t_28", a = {
|
|
10
|
+
feedbackTooltip: B,
|
|
11
|
+
feedbackTooltipForm: D,
|
|
12
|
+
feedbackTooltipTitle: E,
|
|
13
|
+
feedbackTooltipTextarea: U,
|
|
14
14
|
feedbackTooltipSubmitBtn: O,
|
|
15
15
|
feedbackTooltipPromptShareConsent: M,
|
|
16
|
-
feedbackTooltipAbuseDisclaimer:
|
|
17
|
-
feedbackTooltipAbuseLink:
|
|
18
|
-
},
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
16
|
+
feedbackTooltipAbuseDisclaimer: $,
|
|
17
|
+
feedbackTooltipAbuseLink: j
|
|
18
|
+
}, z = (s) => {
|
|
19
|
+
const n = encodeURIComponent(window.location.href);
|
|
20
|
+
return /* @__PURE__ */ e(L, {
|
|
21
|
+
className: a.feedbackTooltipAbuseLink,
|
|
22
|
+
href: `${N}/${n}`,
|
|
23
|
+
rel: "noopener noreferrer",
|
|
24
|
+
target: "_blank",
|
|
25
|
+
children: s
|
|
26
|
+
});
|
|
27
|
+
}, X = ({
|
|
28
|
+
children: s,
|
|
29
|
+
isOpen: n,
|
|
30
|
+
onOpenChange: T,
|
|
31
|
+
onSubmit: f,
|
|
32
|
+
shouldIncludeFeedbackText: m,
|
|
33
|
+
shouldIncludePromptShareConsent: u,
|
|
34
|
+
shouldShow: h
|
|
26
35
|
}) => {
|
|
27
36
|
const {
|
|
28
37
|
formatMessage: o
|
|
29
|
-
} =
|
|
30
|
-
if (!
|
|
31
|
-
return
|
|
32
|
-
const
|
|
33
|
-
|
|
34
|
-
}, A = (
|
|
35
|
-
|
|
38
|
+
} = P();
|
|
39
|
+
if (!h)
|
|
40
|
+
return s;
|
|
41
|
+
const _ = () => {
|
|
42
|
+
T(!1);
|
|
43
|
+
}, A = (d) => {
|
|
44
|
+
f(d);
|
|
36
45
|
};
|
|
37
46
|
return /* @__PURE__ */ e(l, {
|
|
38
47
|
align: "end",
|
|
39
|
-
className:
|
|
40
|
-
closeLabel: o(
|
|
41
|
-
content: /* @__PURE__ */ e(
|
|
48
|
+
className: a.feedbackTooltip,
|
|
49
|
+
closeLabel: o(R.closeButtonText),
|
|
50
|
+
content: /* @__PURE__ */ e(y, {
|
|
42
51
|
initialValues: {
|
|
43
52
|
feedback: "",
|
|
44
53
|
feedbackPromptShareConsent: !0,
|
|
@@ -47,97 +56,91 @@ import '../../../../styles/feedback-tooltip.css';const R = "_feedbackTooltip_hjx
|
|
|
47
56
|
},
|
|
48
57
|
onSubmit: A,
|
|
49
58
|
children: ({
|
|
50
|
-
submitForm:
|
|
51
|
-
setFieldValue:
|
|
59
|
+
submitForm: d,
|
|
60
|
+
setFieldValue: b,
|
|
52
61
|
values: {
|
|
53
62
|
feedback: C,
|
|
54
63
|
feedbackPromptShareConsent: S,
|
|
55
|
-
issueType:
|
|
64
|
+
issueType: k
|
|
56
65
|
}
|
|
57
|
-
}) => /* @__PURE__ */
|
|
58
|
-
children: [/* @__PURE__ */
|
|
66
|
+
}) => /* @__PURE__ */ r(w, {
|
|
67
|
+
children: [/* @__PURE__ */ r(l.Body, {
|
|
59
68
|
children: [/* @__PURE__ */ e(l.Title, {
|
|
60
|
-
className:
|
|
61
|
-
children: o(
|
|
62
|
-
}), /* @__PURE__ */
|
|
63
|
-
className:
|
|
69
|
+
className: a.feedbackTooltipTitle,
|
|
70
|
+
children: o(t.feedbackTooltipTitle)
|
|
71
|
+
}), /* @__PURE__ */ r(F, {
|
|
72
|
+
className: a.feedbackTooltipForm,
|
|
64
73
|
children: [/* @__PURE__ */ e(c.Legend, {
|
|
65
|
-
header: o(
|
|
66
|
-
children: /* @__PURE__ */
|
|
74
|
+
header: o(t.feedbackTooltipIssueTypeLabel),
|
|
75
|
+
children: /* @__PURE__ */ r(c.Group, {
|
|
67
76
|
defaultValue: "",
|
|
68
77
|
loop: !0,
|
|
69
78
|
name: "issueType",
|
|
70
|
-
onValueChange: (i) =>
|
|
79
|
+
onValueChange: (i) => b("issueType", i),
|
|
71
80
|
orientation: "vertical",
|
|
72
|
-
value:
|
|
81
|
+
value: k,
|
|
73
82
|
children: [/* @__PURE__ */ e(c.Item, {
|
|
74
|
-
label: o(
|
|
75
|
-
value:
|
|
83
|
+
label: o(t.feedbackTooltipIssueTypeAnswer1),
|
|
84
|
+
value: p.INACCURATE_ANSWER
|
|
76
85
|
}), /* @__PURE__ */ e(c.Item, {
|
|
77
|
-
label: o(
|
|
78
|
-
value:
|
|
86
|
+
label: o(t.feedbackTooltipIssueTypeAnswer2),
|
|
87
|
+
value: p.DID_NOT_FOLLOW_REQUEST
|
|
79
88
|
}), /* @__PURE__ */ e(c.Item, {
|
|
80
|
-
label: o(
|
|
81
|
-
value:
|
|
89
|
+
label: o(t.feedbackTooltipIssueTypeAnswer3),
|
|
90
|
+
value: p.OTHER
|
|
82
91
|
})]
|
|
83
92
|
})
|
|
84
|
-
}),
|
|
85
|
-
className:
|
|
86
|
-
label: o(
|
|
93
|
+
}), m && /* @__PURE__ */ e(g, {
|
|
94
|
+
className: a.feedbackTooltipTextarea,
|
|
95
|
+
label: o(t.feedbackTooltipFeedbackLabel),
|
|
87
96
|
maxRows: 4,
|
|
88
97
|
minRows: 4,
|
|
89
|
-
onChange: (i) =>
|
|
90
|
-
placeholder: o(
|
|
98
|
+
onChange: (i) => b("feedback", i.target.value),
|
|
99
|
+
placeholder: o(t.feedbackTooltipFeedbackPlaceholder),
|
|
91
100
|
value: C
|
|
92
|
-
}),
|
|
101
|
+
}), u && /* @__PURE__ */ e(x.Item, {
|
|
93
102
|
checked: S,
|
|
94
|
-
className:
|
|
103
|
+
className: a.feedbackTooltipPromptShareConsent,
|
|
95
104
|
"data-target-id": "Checkbox.Item-boxAiFeedbackPromptShareConsent",
|
|
96
|
-
label: o(
|
|
105
|
+
label: o(t.feedbackTooltipPromptShareConsent),
|
|
97
106
|
onCheckedChange: (i) => {
|
|
98
|
-
|
|
107
|
+
b("feedbackPromptShareConsent", i);
|
|
99
108
|
},
|
|
100
109
|
value: "feedbackPromptShareConsent"
|
|
101
|
-
}),
|
|
110
|
+
}), m && /* @__PURE__ */ e(I, {
|
|
102
111
|
as: "p",
|
|
103
|
-
className:
|
|
112
|
+
className: a.feedbackTooltipAbuseDisclaimer,
|
|
104
113
|
variant: "caption",
|
|
105
|
-
children: /* @__PURE__ */ e(
|
|
106
|
-
...
|
|
114
|
+
children: /* @__PURE__ */ e(v, {
|
|
115
|
+
...t.feedbackTooltipAbuseDisclaimer,
|
|
107
116
|
values: {
|
|
108
|
-
|
|
109
|
-
className: t.feedbackTooltipAbuseLink,
|
|
110
|
-
href: `mailto:${k}`,
|
|
111
|
-
rel: "noopener noreferrer",
|
|
112
|
-
target: "_blank",
|
|
113
|
-
children: k
|
|
114
|
-
})
|
|
117
|
+
abuseFormLink: z
|
|
115
118
|
}
|
|
116
119
|
})
|
|
117
120
|
})]
|
|
118
121
|
})]
|
|
119
|
-
}), /* @__PURE__ */
|
|
122
|
+
}), /* @__PURE__ */ r(l.Footer, {
|
|
120
123
|
children: [/* @__PURE__ */ e(l.Footer.SecondaryAction, {
|
|
121
|
-
onClick:
|
|
124
|
+
onClick: _,
|
|
122
125
|
size: "large",
|
|
123
|
-
children: o(
|
|
126
|
+
children: o(t.feedbackTooltipCancel)
|
|
124
127
|
}), /* @__PURE__ */ e(l.Footer.PrimaryAction, {
|
|
125
|
-
className:
|
|
126
|
-
disabled: !
|
|
127
|
-
onClick: () =>
|
|
128
|
+
className: a.feedbackTooltipSubmitBtn,
|
|
129
|
+
disabled: !k,
|
|
130
|
+
onClick: () => d(),
|
|
128
131
|
size: "large",
|
|
129
|
-
children: o(
|
|
132
|
+
children: o(t.feedbackTooltipSubmit)
|
|
130
133
|
})]
|
|
131
134
|
})]
|
|
132
135
|
})
|
|
133
136
|
}),
|
|
134
|
-
onOpenChange:
|
|
135
|
-
open:
|
|
137
|
+
onOpenChange: T,
|
|
138
|
+
open: n,
|
|
136
139
|
side: "left",
|
|
137
|
-
children:
|
|
140
|
+
children: s
|
|
138
141
|
});
|
|
139
142
|
};
|
|
140
143
|
export {
|
|
141
|
-
|
|
142
|
-
|
|
144
|
+
X as FeedbackTooltip,
|
|
145
|
+
X as default
|
|
143
146
|
};
|
|
@@ -38,7 +38,7 @@ const t = e({
|
|
|
38
38
|
},
|
|
39
39
|
feedbackTooltipAbuseDisclaimer: {
|
|
40
40
|
id: "boxAI.contentAnswers.feedbackTooltipAbuseDisclaimer",
|
|
41
|
-
defaultMessage: "To report inappropriate content,
|
|
41
|
+
defaultMessage: "To report inappropriate content, submit <abuseFormLink>this form</abuseFormLink>."
|
|
42
42
|
},
|
|
43
43
|
feedbackTooltipFeedbackLabel: {
|
|
44
44
|
id: "boxAI.contentAnswers.feedbackTooltipFeedback",
|
package/dist/i18n/en-US.js
CHANGED
|
@@ -20,7 +20,7 @@ export default {
|
|
|
20
20
|
"boxAI.contentAnswers.disabledTooltipFileNotCompatible": "Box AI is not currently supported for this file type",
|
|
21
21
|
"boxAI.contentAnswers.disabledTooltipPermissionsFailed": "Unable to check permissions at this time. Reload this page to try again",
|
|
22
22
|
"boxAI.contentAnswers.disabledTooltipPermissionsLoading": "Checking permissions...",
|
|
23
|
-
"boxAI.contentAnswers.feedbackTooltipAbuseDisclaimer": "To report inappropriate content,
|
|
23
|
+
"boxAI.contentAnswers.feedbackTooltipAbuseDisclaimer": "To report inappropriate content, submit <abuseFormLink>this form</abuseFormLink>.",
|
|
24
24
|
"boxAI.contentAnswers.feedbackTooltipCancel": "Cancel",
|
|
25
25
|
"boxAI.contentAnswers.feedbackTooltipConfirmation": "Thank you for the feedback.",
|
|
26
26
|
"boxAI.contentAnswers.feedbackTooltipFeedback": "How can we improve the experience?",
|
|
@@ -40,8 +40,8 @@ boxAI.contentAnswers.disabledTooltipFileNotCompatible = Box AI is not currently
|
|
|
40
40
|
boxAI.contentAnswers.disabledTooltipPermissionsFailed = Unable to check permissions at this time. Reload this page to try again
|
|
41
41
|
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
42
42
|
boxAI.contentAnswers.disabledTooltipPermissionsLoading = Checking permissions...
|
|
43
|
-
# Disclaimer informing how to report inappropriate content in the feedback tooltip
|
|
44
|
-
boxAI.contentAnswers.feedbackTooltipAbuseDisclaimer = To report inappropriate content,
|
|
43
|
+
# Disclaimer informing how to report inappropriate content in the feedback tooltip, the inside of <abuseFormLink> is the linked, clickable text
|
|
44
|
+
boxAI.contentAnswers.feedbackTooltipAbuseDisclaimer = To report inappropriate content, submit <abuseFormLink>this form</abuseFormLink>.
|
|
45
45
|
# Cancel button text for the feedback tooltip
|
|
46
46
|
boxAI.contentAnswers.feedbackTooltipCancel = Cancel
|
|
47
47
|
# Confirmation message after submitting feedback in the feedback tooltip
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"id":"boxAI.contentAnswers.basedOn","description":"Label for the references used for generating the answer from the AI service","defaultMessage":"Based on:"},{"id":"boxAI.contentAnswers.cardTooltipButton","description":"Text for button to open citation reference in a new tab","defaultMessage":"Open document"},{"id":"boxAI.contentAnswers.cardTooltipTitle","description":"Title of citation card tooltip in answer references section","defaultMessage":"From document:"},{"id":"boxAI.contentAnswers.cardTooltipTitleWithDocumentName","description":"Title of citation card tooltip in answer references section with document title","defaultMessage":"From \"{title}\":"},{"id":"boxAI.textInputWithCopyButton.copyButtonSuccessText","description":"Text for copy button in input with copy button indicating copy success","defaultMessage":"Copied"},{"id":"boxAI.contentAnswers.copyToClipboard","description":"Copy to clipboard tooltip","defaultMessage":"Copy to Clipboard"},{"id":"boxAI.contentAnswers.copyToClipboardSucceeded","description":"Notification displayed to the user when the answer has been successfully copied to the clipboard","defaultMessage":"Copied to your clipboard"},{"id":"boxAI.contentAnswers.feedbackTooltipCancel","description":"Cancel button text for the feedback tooltip","defaultMessage":"Cancel"},{"id":"boxAI.contentAnswers.feedbackTooltipConfirmation","description":"Confirmation message after submitting feedback in the feedback tooltip","defaultMessage":"Thank you for the feedback."},{"id":"boxAI.contentAnswers.feedbackTooltipAbuseDisclaimer","description":"Disclaimer informing how to report inappropriate content in the feedback tooltip","defaultMessage":"To report inappropriate content,
|
|
1
|
+
[{"id":"boxAI.contentAnswers.basedOn","description":"Label for the references used for generating the answer from the AI service","defaultMessage":"Based on:"},{"id":"boxAI.contentAnswers.cardTooltipButton","description":"Text for button to open citation reference in a new tab","defaultMessage":"Open document"},{"id":"boxAI.contentAnswers.cardTooltipTitle","description":"Title of citation card tooltip in answer references section","defaultMessage":"From document:"},{"id":"boxAI.contentAnswers.cardTooltipTitleWithDocumentName","description":"Title of citation card tooltip in answer references section with document title","defaultMessage":"From \"{title}\":"},{"id":"boxAI.textInputWithCopyButton.copyButtonSuccessText","description":"Text for copy button in input with copy button indicating copy success","defaultMessage":"Copied"},{"id":"boxAI.contentAnswers.copyToClipboard","description":"Copy to clipboard tooltip","defaultMessage":"Copy to Clipboard"},{"id":"boxAI.contentAnswers.copyToClipboardSucceeded","description":"Notification displayed to the user when the answer has been successfully copied to the clipboard","defaultMessage":"Copied to your clipboard"},{"id":"boxAI.contentAnswers.feedbackTooltipCancel","description":"Cancel button text for the feedback tooltip","defaultMessage":"Cancel"},{"id":"boxAI.contentAnswers.feedbackTooltipConfirmation","description":"Confirmation message after submitting feedback in the feedback tooltip","defaultMessage":"Thank you for the feedback."},{"id":"boxAI.contentAnswers.feedbackTooltipAbuseDisclaimer","description":"Disclaimer informing how to report inappropriate content in the feedback tooltip, the inside of <abuseFormLink> is the linked, clickable text","defaultMessage":"To report inappropriate content, submit <abuseFormLink>this form</abuseFormLink>."},{"id":"boxAI.contentAnswers.feedbackTooltipFeedback","description":"Label for the feedback text area in the feedback tooltip","defaultMessage":"How can we improve the experience?"},{"id":"boxAI.contentAnswers.feedbackTooltipFeedbackPlaceholder","description":"Placeholder text for the feedback text area in the feedback tooltip","defaultMessage":"We'd love to hear from you! Please omit personal info, sensitive content, or links in your feedback as submissions to Box aren't confidential."},{"id":"boxAI.contentAnswers.feedbackTooltipIssueTypeLabel","description":"Label for the feedback type radio group in the feedback tooltip","defaultMessage":"What type of issue do you wish to report?"},{"id":"boxAI.contentAnswers.feedbackTooltipIssueTypeAnswer1","description":"Label for the first radio button in the feedback type radio group in the feedback tooltip","defaultMessage":"Inaccurate answer"},{"id":"boxAI.contentAnswers.feedbackTooltipIssueTypeAnswer2","description":"Label for the second radio button in the feedback type radio group in the feedback tooltip","defaultMessage":"Did not follow my request"},{"id":"boxAI.contentAnswers.feedbackTooltipIssueTypeAnswer3","description":"Label for the third radio button in the feedback type radio group in the feedback tooltip","defaultMessage":"Other"},{"id":"boxAI.contentAnswers.feedbackTooltipPromptShareConsent","description":"Label for checkbox to consent for prompt and answer sharing in the tooltip that asks the user to share feedback on the answer","defaultMessage":"Share my prompt and response to help improve product quality."},{"id":"boxAI.contentAnswers.feedbackTooltipTitle","description":"Title of a tooltip that asks the user to share feedback on the answer","defaultMessage":"Share your feedback"},{"id":"boxAI.contentAnswers.feedbackTooltipSubmit","description":"Submit button text for the feedback tooltip","defaultMessage":"Submit"},{"id":"boxAI.contentAnswers.inlineNoContentErrorText","description":"Content Answers error message when the service returns 204 (no content)","defaultMessage":"Relevant content cannot be found. Please try again later or ask a different question."},{"id":"boxAI.contentAnswers.inlineAgentNotFoundErrorText","description":"Content Answers error message when the answer fails due to an invalid agent","defaultMessage":"The selected agent is unavailable. Switching to the default agent."},{"id":"boxAI.contentAnswers.inlineErrorText","description":"Content Answers error message when the service fails","defaultMessage":"Box AI is having trouble generating a response right now. Please try again."},{"id":"boxAI.contentAnswers.inlineRateLimitingErrorText","description":"Content Answers error message when the service fails due to rate limiting","defaultMessage":"Box AI currently has limited capacity (we're working to expand bandwidth). Please try again in a few minutes."},{"id":"boxAI.contentAnswers.inlinePreconditionFailedErrorText","description":"Content Answers error message when the AI service has not yet processed the file","defaultMessage":"Additional time is needed to process this {type}, please try again later."},{"id":"boxAI.contentAnswers.loadingAnswer","description":"Aria label to show while waiting for an answer","defaultMessage":"Loading Answer..."},{"id":"boxAI.contentAnswers.noReferences","description":"Loading message if there are no citations for an answer","defaultMessage":"Response based on general document analysis"},{"id":"boxAI.contentAnswers.referenceAriaLabel","description":"ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.","defaultMessage":"Reference {number}"},{"id":"boxAI.contentAnswers.responseInterruptedError","description":"Error message to be displayed within an answer during streaming mode if the answer was interrupted due to a lack of tokens.","defaultMessage":"Response Interrupted"},{"id":"boxAI.contentAnswers.responseFailedError","description":"Error message to be displayed within an answer during streaming mode if there was another error, such as network errors.","defaultMessage":"Response Failed"},{"id":"boxAI.contentAnswers.responseStoppedError","description":"Error message to be displayed within an answer during streaming mode if the answer was stopped using the Stop Response button.","defaultMessage":"Response Stopped"},{"id":"boxAI.contentAnswers.thumbsUpAriaLabel","description":"Aria label for thumbs up icon","defaultMessage":"Helpful"},{"id":"boxAI.contentAnswers.thumbsDownAriaLabel","description":"Aria label for thumbs down icon","defaultMessage":"Not helpful"},{"id":"boxAI.contentAnswers.inlineCitationAriaLabel","description":"Aria label for inline citation button to open file in new tab","defaultMessage":"Open {fileName} in new tab"}]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
div.
|
|
1
|
+
div._feedbackTooltip_1y93t_1{z-index:var(--z-index-modal);max-width:24rem;padding-block-end:var(--space-4);padding-block-start:var(--space-4);padding-inline:var(--space-4)}div._feedbackTooltip_1y93t_1 ._feedbackTooltipForm_1y93t_8{gap:var(--bp-space-050, 1.25rem);width:20.375rem}div._feedbackTooltip_1y93t_1 ._feedbackTooltipTitle_1y93t_12{margin-block-end:var(--space-5)}div._feedbackTooltip_1y93t_1 ._feedbackTooltipTextarea_1y93t_15{margin-block-start:var(--space-5)}div._feedbackTooltip_1y93t_1 ._feedbackTooltipSubmitBtn_1y93t_18{margin-inline-start:var(--space-2)}div._feedbackTooltip_1y93t_1 ._feedbackTooltipPromptShareConsent_1y93t_21{margin-block-start:var(--space-4)}div._feedbackTooltip_1y93t_1 ._feedbackTooltipAbuseDisclaimer_1y93t_24{margin-block-start:var(--space-5);color:var(--text-text-on-light-secondary)}div._feedbackTooltip_1y93t_1 ._feedbackTooltipAbuseDisclaimer_1y93t_24 ._feedbackTooltipAbuseLink_1y93t_28{font-size:var(--bp-font-size-03, .75rem)}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const ABUSE_FORM_PATH = "/report-abuse";
|
|
2
2
|
export declare const MAX_CITATION_LENGTH = 500;
|