@kujolang/paperclip 0.1.4 → 0.1.6
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/CHANGELOG.md +15 -0
- package/README.md +2 -1
- package/VERSION +1 -1
- package/dist/manifest.js +6002 -1650
- package/dist/ui/index.js +23 -13
- package/dist/worker.js +6570 -2218
- package/docs/MAINTENANCE_HANDOFF.md +237 -0
- package/docs/README.md +1 -0
- package/docs/RELEASE_READINESS.md +4 -3
- package/package.json +13 -9
package/dist/ui/index.js
CHANGED
|
@@ -110,19 +110,29 @@ var eyebrow = {
|
|
|
110
110
|
};
|
|
111
111
|
var muted = { color: colors.muted, fontSize: 13, lineHeight: 1.5 };
|
|
112
112
|
function KujoMark() {
|
|
113
|
-
return /* @__PURE__ */ jsx(
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
113
|
+
return /* @__PURE__ */ jsx(
|
|
114
|
+
"svg",
|
|
115
|
+
{
|
|
116
|
+
"aria-label": "Kujo logo",
|
|
117
|
+
role: "img",
|
|
118
|
+
viewBox: "0 0 1527 1536",
|
|
119
|
+
style: {
|
|
120
|
+
color: colors.ink,
|
|
121
|
+
display: "block",
|
|
122
|
+
flex: "0 0 auto",
|
|
123
|
+
height: 42,
|
|
124
|
+
width: 42
|
|
125
|
+
},
|
|
126
|
+
children: /* @__PURE__ */ jsx(
|
|
127
|
+
"path",
|
|
128
|
+
{
|
|
129
|
+
fill: "currentColor",
|
|
130
|
+
fillRule: "evenodd",
|
|
131
|
+
d: "M0 0 H1527 V1536 H0 Z M178 234 L593 234 L593 700 L597 699 L1008 235 L1350 234 L1332 258 L594 1080 L592 1350 L294 1349 L293 427 L281 361 L260 310 L244 287 L222 264 L178 234 Z M1006 721 L1036 746 L1078 789 L1118 839 L1153 894 L1181 950 L1199 997 L1213 1043 L1225 1101 L1232 1157 L1233 1234 L1222 1328 L1208 1385 L1187 1445 L1159 1503 L1139 1536 L1038 1536 L1036 1455 L1025 1383 L1002 1304 L969 1231 L930 1169 L879 1108 L821 1056 L749 1009 L1006 721 Z M1010 805 L965 854 L962 862 L1011 911 L1055 969 L1094 1036 L1120 1097 L1139 1159 L1153 1232 L1157 1275 L1155 1361 L1171 1284 L1176 1221 L1171 1129 L1157 1056 L1132 981 L1100 917 L1046 841 L1010 805 Z"
|
|
132
|
+
}
|
|
133
|
+
)
|
|
134
|
+
}
|
|
135
|
+
);
|
|
126
136
|
}
|
|
127
137
|
function ActionButton({ children, disabled, onClick, tone = "primary" }) {
|
|
128
138
|
const style = tone === "primary" ? primaryButton : tone === "danger" ? dangerButton : secondaryButton;
|