@perspective-ai/sdk 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/dist/browser.cjs +1 -4
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.js +1 -4
- package/dist/browser.js.map +1 -1
- package/dist/cdn/perspective.global.js +4 -4
- package/dist/cdn/perspective.global.js.map +1 -1
- package/dist/constants.cjs +1 -1
- package/dist/constants.js +1 -1
- package/dist/index.cjs +1 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/loading.test.ts +2 -2
- package/src/loading.ts +3 -3
package/dist/constants.cjs
CHANGED
package/dist/constants.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -58,7 +58,7 @@ if (hasDom()) {
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
// src/constants.ts
|
|
61
|
-
var SDK_VERSION = "1.6.
|
|
61
|
+
var SDK_VERSION = "1.6.2";
|
|
62
62
|
var FEATURES = {
|
|
63
63
|
RESIZE: 1 << 0,
|
|
64
64
|
// 0b0001
|
|
@@ -790,9 +790,6 @@ function createLoadingIndicator(options) {
|
|
|
790
790
|
buttonPill.style.marginBottom = "0";
|
|
791
791
|
inputArea.appendChild(buttonPill);
|
|
792
792
|
container.appendChild(inputArea);
|
|
793
|
-
const footer = shimmer("14rem", "0.75rem");
|
|
794
|
-
footer.style.margin = "0.75rem auto 0";
|
|
795
|
-
container.appendChild(footer);
|
|
796
793
|
return container;
|
|
797
794
|
}
|
|
798
795
|
|