weevar 1.0.0 → 1.0.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/LICENSE +21 -0
- package/README.md +94 -0
- package/dist/react.dev.js +9 -3
- package/dist/react.dev.js.map +1 -1
- package/dist/react.dev.mjs +9 -3
- package/dist/react.dev.mjs.map +1 -1
- package/package.json +6 -4
package/dist/react.dev.mjs
CHANGED
|
@@ -933,6 +933,12 @@ function matchesIdentity(el, identity) {
|
|
|
933
933
|
return true;
|
|
934
934
|
}
|
|
935
935
|
|
|
936
|
+
// src/version.ts
|
|
937
|
+
var WEEVAR_VERSION = "1.0.2";
|
|
938
|
+
function weevarVersionLabel() {
|
|
939
|
+
return `v${WEEVAR_VERSION}`;
|
|
940
|
+
}
|
|
941
|
+
|
|
936
942
|
// src/overlay/overlayStyles.ts
|
|
937
943
|
var OVERLAY_CSS = `
|
|
938
944
|
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400&display=swap");
|
|
@@ -2544,7 +2550,7 @@ function PromptPanel({
|
|
|
2544
2550
|
warningNote ? /* @__PURE__ */ jsx("div", { className: "wv-panel-note", children: warningNote }) : null
|
|
2545
2551
|
] }),
|
|
2546
2552
|
/* @__PURE__ */ jsxs("div", { className: "wv-tray-foot", children: [
|
|
2547
|
-
/* @__PURE__ */ jsx("span", { children:
|
|
2553
|
+
/* @__PURE__ */ jsx("span", { children: weevarVersionLabel() }),
|
|
2548
2554
|
/* @__PURE__ */ jsx(GlobeIcon, {})
|
|
2549
2555
|
] })
|
|
2550
2556
|
]
|
|
@@ -4175,7 +4181,7 @@ body *:focus {
|
|
|
4175
4181
|
}
|
|
4176
4182
|
),
|
|
4177
4183
|
/* @__PURE__ */ jsxs("div", { className: "wv-tray-foot", children: [
|
|
4178
|
-
/* @__PURE__ */ jsx("span", { children:
|
|
4184
|
+
/* @__PURE__ */ jsx("span", { children: weevarVersionLabel() }),
|
|
4179
4185
|
/* @__PURE__ */ jsx(GlobeIcon2, {})
|
|
4180
4186
|
] })
|
|
4181
4187
|
] })
|
|
@@ -4428,7 +4434,7 @@ function SettingsTray({
|
|
|
4428
4434
|
] })
|
|
4429
4435
|
] }),
|
|
4430
4436
|
/* @__PURE__ */ jsxs("div", { className: "wv-tray-foot wv-settings-foot", children: [
|
|
4431
|
-
/* @__PURE__ */ jsx("span", { children:
|
|
4437
|
+
/* @__PURE__ */ jsx("span", { children: weevarVersionLabel() }),
|
|
4432
4438
|
/* @__PURE__ */ jsx(GlobeIcon2, {})
|
|
4433
4439
|
] })
|
|
4434
4440
|
]
|