@swype-org/react-sdk 0.1.167 → 0.1.168
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/index.cjs +18 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +18 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2319,19 +2319,22 @@ var badgeStyle = (color) => ({
|
|
|
2319
2319
|
function PoweredByFooter() {
|
|
2320
2320
|
const { tokens } = useSwypeConfig();
|
|
2321
2321
|
return /* @__PURE__ */ jsxs("div", { style: containerStyle3(tokens.textMuted), children: [
|
|
2322
|
-
/* @__PURE__ */
|
|
2323
|
-
"
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2322
|
+
/* @__PURE__ */ jsxs("div", { style: rowStyle, children: [
|
|
2323
|
+
/* @__PURE__ */ jsx("svg", { width: "12", height: "12", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx(
|
|
2324
|
+
"path",
|
|
2325
|
+
{
|
|
2326
|
+
d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3-9H9V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2z",
|
|
2327
|
+
fill: "currentColor"
|
|
2328
|
+
}
|
|
2329
|
+
) }),
|
|
2330
|
+
/* @__PURE__ */ jsx("span", { children: "Powered by Blink" })
|
|
2331
|
+
] }),
|
|
2330
2332
|
/* @__PURE__ */ jsx("span", { style: pillStyle(tokens.textMuted, tokens.border), children: "Beta Version" })
|
|
2331
2333
|
] });
|
|
2332
2334
|
}
|
|
2333
2335
|
var containerStyle3 = (color) => ({
|
|
2334
2336
|
display: "flex",
|
|
2337
|
+
flexDirection: "column",
|
|
2335
2338
|
alignItems: "center",
|
|
2336
2339
|
justifyContent: "center",
|
|
2337
2340
|
gap: 6,
|
|
@@ -2339,6 +2342,11 @@ var containerStyle3 = (color) => ({
|
|
|
2339
2342
|
color,
|
|
2340
2343
|
padding: "12px 0 4px"
|
|
2341
2344
|
});
|
|
2345
|
+
var rowStyle = {
|
|
2346
|
+
display: "flex",
|
|
2347
|
+
alignItems: "center",
|
|
2348
|
+
gap: 6
|
|
2349
|
+
};
|
|
2342
2350
|
var pillStyle = (color, border) => ({
|
|
2343
2351
|
fontSize: "0.65rem",
|
|
2344
2352
|
fontWeight: 600,
|
|
@@ -2933,7 +2941,7 @@ function StepList({ steps }) {
|
|
|
2933
2941
|
return /* @__PURE__ */ jsx("div", { style: listStyle, children: steps.map((step, i) => {
|
|
2934
2942
|
const isComplete = step.status === "complete";
|
|
2935
2943
|
const isActive = step.status === "active";
|
|
2936
|
-
return /* @__PURE__ */ jsxs("div", { style:
|
|
2944
|
+
return /* @__PURE__ */ jsxs("div", { style: rowStyle2, children: [
|
|
2937
2945
|
/* @__PURE__ */ jsx(
|
|
2938
2946
|
"div",
|
|
2939
2947
|
{
|
|
@@ -2956,7 +2964,7 @@ var listStyle = {
|
|
|
2956
2964
|
flexDirection: "column",
|
|
2957
2965
|
gap: 12
|
|
2958
2966
|
};
|
|
2959
|
-
var
|
|
2967
|
+
var rowStyle2 = {
|
|
2960
2968
|
display: "flex",
|
|
2961
2969
|
alignItems: "center",
|
|
2962
2970
|
gap: 12
|