@luminescent/ui-qwik 3.0.1 → 3.0.3
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/lib/index.qwik.cjs +3 -2
- package/lib/index.qwik.mjs +3 -2
- package/package.json +2 -2
package/lib/index.qwik.cjs
CHANGED
|
@@ -1230,6 +1230,7 @@ const Toggle = qwik.component$(({ checkbox, round, center, label, onColor = "blu
|
|
|
1230
1230
|
});
|
|
1231
1231
|
});
|
|
1232
1232
|
const LogoBirdflop = qwik.component$(({ confused, fillGradient, size, ...props }) => {
|
|
1233
|
+
const gradientId = fillGradient?.join("-").replace("#", "");
|
|
1233
1234
|
return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
|
|
1234
1235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1235
1236
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
@@ -1241,7 +1242,7 @@ const LogoBirdflop = qwik.component$(({ confused, fillGradient, size, ...props }
|
|
|
1241
1242
|
/* @__PURE__ */ jsxRuntime.jsxs("defs", {
|
|
1242
1243
|
children: [
|
|
1243
1244
|
fillGradient && /* @__PURE__ */ jsxRuntime.jsx("linearGradient", {
|
|
1244
|
-
id:
|
|
1245
|
+
id: `linear-gradient-${gradientId}`,
|
|
1245
1246
|
x1: "0.5",
|
|
1246
1247
|
x2: "0.5",
|
|
1247
1248
|
y2: "1",
|
|
@@ -1270,7 +1271,7 @@ const LogoBirdflop = qwik.component$(({ confused, fillGradient, size, ...props }
|
|
|
1270
1271
|
"data-name": "Union 26",
|
|
1271
1272
|
d: "M-1886.608-89.36c-8.311-65.774-27.64-219.008-27.64-221.333a.279.279,0,0,1,.09-.159q-.474-4.88-.477-9.885A101.066,101.066,0,0,1-1813.61-421.844a100.671,100.671,0,0,1,71.913,30.1l.093-.042c-.077-.093-8.783-10.549-22.7-24.758-8.216-8.388-16.645-16.459-25.052-23.993-10.51-9.417-21.018-18.013-31.23-25.552a120.5,120.5,0,0,0-40.468-71.567,119.916,119.916,0,0,0-77.984-28.881c-66.215,0-120.083,53.941-120.083,120.244h-.237v116.01h-.24c-.131,132.971-107.6,240.728-240.16,240.728V-330.289H-2300V-449.818h.362V-931.536h0V-1170c132.71,0,240.293,106.764,240.293,238.464v145.112a358.089,358.089,0,0,1,47.7-13.28,362.475,362.475,0,0,1,72.6-7.329,362.455,362.455,0,0,1,72.6,7.329,358.112,358.112,0,0,1,67.622,21.02,360.042,360.042,0,0,1,61.191,33.26,362.833,362.833,0,0,1,53.315,44.049,363.178,363.178,0,0,1,43.99,53.387,360.83,360.83,0,0,1,33.213,61.276A359.3,359.3,0,0,1-1586.118-519a363.948,363.948,0,0,1,7.317,72.7,363.957,363.957,0,0,1-7.317,72.7,359.333,359.333,0,0,1-20.992,67.714,360.95,360.95,0,0,1-33.213,61.277,363.233,363.233,0,0,1-43.99,53.388,362.833,362.833,0,0,1-53.315,44.049,360.017,360.017,0,0,1-61.191,33.259,358.108,358.108,0,0,1-67.622,21.02c-6.636,1.36-13.421,2.548-20.165,3.532Zm-79.831-365.056a27.049,27.049,0,0,1,27.038-27.059,27.048,27.048,0,0,1,27.037,27.059,27.049,27.049,0,0,1-27.037,27.06A27.05,27.05,0,0,1-1966.439-454.416Z",
|
|
1272
1273
|
transform: "translate(2479.9 1169.7)",
|
|
1273
|
-
fill: fillGradient ?
|
|
1274
|
+
fill: fillGradient ? `url(#linear-gradient-${gradientId})` : ""
|
|
1274
1275
|
})
|
|
1275
1276
|
}),
|
|
1276
1277
|
confused && /* @__PURE__ */ jsxRuntime.jsxs("g", {
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -1228,6 +1228,7 @@ const Toggle = component$(({ checkbox, round, center, label, onColor = "blue", o
|
|
|
1228
1228
|
});
|
|
1229
1229
|
});
|
|
1230
1230
|
const LogoBirdflop = component$(({ confused, fillGradient, size, ...props }) => {
|
|
1231
|
+
const gradientId = fillGradient?.join("-").replace("#", "");
|
|
1231
1232
|
return /* @__PURE__ */ jsxs("svg", {
|
|
1232
1233
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1233
1234
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
@@ -1239,7 +1240,7 @@ const LogoBirdflop = component$(({ confused, fillGradient, size, ...props }) =>
|
|
|
1239
1240
|
/* @__PURE__ */ jsxs("defs", {
|
|
1240
1241
|
children: [
|
|
1241
1242
|
fillGradient && /* @__PURE__ */ jsx("linearGradient", {
|
|
1242
|
-
id:
|
|
1243
|
+
id: `linear-gradient-${gradientId}`,
|
|
1243
1244
|
x1: "0.5",
|
|
1244
1245
|
x2: "0.5",
|
|
1245
1246
|
y2: "1",
|
|
@@ -1268,7 +1269,7 @@ const LogoBirdflop = component$(({ confused, fillGradient, size, ...props }) =>
|
|
|
1268
1269
|
"data-name": "Union 26",
|
|
1269
1270
|
d: "M-1886.608-89.36c-8.311-65.774-27.64-219.008-27.64-221.333a.279.279,0,0,1,.09-.159q-.474-4.88-.477-9.885A101.066,101.066,0,0,1-1813.61-421.844a100.671,100.671,0,0,1,71.913,30.1l.093-.042c-.077-.093-8.783-10.549-22.7-24.758-8.216-8.388-16.645-16.459-25.052-23.993-10.51-9.417-21.018-18.013-31.23-25.552a120.5,120.5,0,0,0-40.468-71.567,119.916,119.916,0,0,0-77.984-28.881c-66.215,0-120.083,53.941-120.083,120.244h-.237v116.01h-.24c-.131,132.971-107.6,240.728-240.16,240.728V-330.289H-2300V-449.818h.362V-931.536h0V-1170c132.71,0,240.293,106.764,240.293,238.464v145.112a358.089,358.089,0,0,1,47.7-13.28,362.475,362.475,0,0,1,72.6-7.329,362.455,362.455,0,0,1,72.6,7.329,358.112,358.112,0,0,1,67.622,21.02,360.042,360.042,0,0,1,61.191,33.26,362.833,362.833,0,0,1,53.315,44.049,363.178,363.178,0,0,1,43.99,53.387,360.83,360.83,0,0,1,33.213,61.276A359.3,359.3,0,0,1-1586.118-519a363.948,363.948,0,0,1,7.317,72.7,363.957,363.957,0,0,1-7.317,72.7,359.333,359.333,0,0,1-20.992,67.714,360.95,360.95,0,0,1-33.213,61.277,363.233,363.233,0,0,1-43.99,53.388,362.833,362.833,0,0,1-53.315,44.049,360.017,360.017,0,0,1-61.191,33.259,358.108,358.108,0,0,1-67.622,21.02c-6.636,1.36-13.421,2.548-20.165,3.532Zm-79.831-365.056a27.049,27.049,0,0,1,27.038-27.059,27.048,27.048,0,0,1,27.037,27.059,27.049,27.049,0,0,1-27.037,27.06A27.05,27.05,0,0,1-1966.439-454.416Z",
|
|
1270
1271
|
transform: "translate(2479.9 1169.7)",
|
|
1271
|
-
fill: fillGradient ?
|
|
1272
|
+
fill: fillGradient ? `url(#linear-gradient-${gradientId})` : ""
|
|
1272
1273
|
})
|
|
1273
1274
|
}),
|
|
1274
1275
|
confused && /* @__PURE__ */ jsxs("g", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luminescent/ui-qwik",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"description": "Luminescent UI library",
|
|
5
5
|
"main": "./lib/index.qwik.mjs",
|
|
6
6
|
"qwik": "./lib/index.qwik.mjs",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"vite-tsconfig-paths": "^5.1.4"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@luminescent/ui": "3.0.
|
|
55
|
+
"@luminescent/ui": "3.0.3"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "qwik build",
|