2025-11-13 10:50:33 +00:00
|
|
|
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
2022-07-05 20:26:44 +02:00
|
|
|
|
|
|
|
|
exports[`Module Components should override the factory for a ModuleSpinner 1`] = `
|
2022-10-24 09:06:20 +01:00
|
|
|
<DocumentFragment>
|
|
|
|
|
<div
|
|
|
|
|
class="mx_Spinner"
|
2022-07-05 20:26:44 +02:00
|
|
|
>
|
2025-12-17 11:17:11 +00:00
|
|
|
<svg
|
2023-02-14 09:05:01 +00:00
|
|
|
aria-label="Loading…"
|
2026-04-17 16:51:43 +01:00
|
|
|
class="_icon_1855a_18"
|
2022-10-24 09:06:20 +01:00
|
|
|
data-testid="spinner"
|
2025-12-17 11:17:11 +00:00
|
|
|
fill="currentColor"
|
|
|
|
|
height="1em"
|
2022-10-24 09:06:20 +01:00
|
|
|
role="progressbar"
|
|
|
|
|
style="width: 32px; height: 32px;"
|
2025-12-17 11:17:11 +00:00
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
width="1em"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
clip-rule="evenodd"
|
|
|
|
|
d="M12 4.031a8 8 0 1 0 8 8 1 1 0 0 1 2 0c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10a1 1 0 1 1 0 2"
|
|
|
|
|
fill-rule="evenodd"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
2022-10-24 09:06:20 +01:00
|
|
|
</div>
|
|
|
|
|
</DocumentFragment>
|
2022-07-05 20:26:44 +02:00
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
exports[`Module Components should override the factory for a TextInputField 1`] = `
|
2022-10-24 09:06:20 +01:00
|
|
|
<DocumentFragment>
|
|
|
|
|
<div
|
|
|
|
|
class="mx_Field mx_Field_input"
|
2022-07-05 20:26:44 +02:00
|
|
|
>
|
2022-10-24 09:06:20 +01:00
|
|
|
<input
|
|
|
|
|
autocomplete="off"
|
|
|
|
|
id="mx_Field_1"
|
|
|
|
|
label="My Label"
|
|
|
|
|
placeholder="My Label"
|
|
|
|
|
type="text"
|
|
|
|
|
value="My Value"
|
|
|
|
|
/>
|
|
|
|
|
<label
|
|
|
|
|
for="mx_Field_1"
|
2022-07-05 20:26:44 +02:00
|
|
|
>
|
2022-10-24 09:06:20 +01:00
|
|
|
My Label
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</DocumentFragment>
|
2022-07-05 20:26:44 +02:00
|
|
|
`;
|