pns-component-library 1.6.1 → 1.6.2
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/package.json
CHANGED
|
@@ -16,6 +16,7 @@ const whole_page_loading = {
|
|
|
16
16
|
spinner_icon_container.classList.add("whole-page-loading-spinner-icon-container");
|
|
17
17
|
// create hourglass_icon_div, assign class and append it into spinner_icon_container
|
|
18
18
|
const hourglass_icon_div = document.createElement("div");
|
|
19
|
+
hourglass_icon_div.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="20" viewBox="0 0 16 20" fill="none"><path d="M4 18H12V15C12 13.9 11.6083 12.9583 10.825 12.175C10.0417 11.3917 9.1 11 8 11C6.9 11 5.95833 11.3917 5.175 12.175C4.39167 12.9583 4 13.9 4 15V18ZM0 20V18H2V15C2 13.9833 2.2375 13.0292 2.7125 12.1375C3.1875 11.2458 3.85 10.5333 4.7 10C3.85 9.46667 3.1875 8.75417 2.7125 7.8625C2.2375 6.97083 2 6.01667 2 5V2H0V0H16V2H14V5C14 6.01667 13.7625 6.97083 13.2875 7.8625C12.8125 8.75417 12.15 9.46667 11.3 10C12.15 10.5333 12.8125 11.2458 13.2875 12.1375C13.7625 13.0292 14 13.9833 14 15V18H16V20H0Z" fill="currentColor"/></svg>`;
|
|
19
20
|
hourglass_icon_div.classList.add("whole-page-loading-hourglass-icon-div");
|
|
20
21
|
spinner_icon_container.appendChild(hourglass_icon_div);
|
|
21
22
|
// create loading_circle_div, assign class and append it into spinner_icon_container
|