@luminescent/ui 0.4.1 → 0.4.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/lib/index.qwik.cjs +33 -42
- package/lib/index.qwik.mjs +33 -42
- package/lib-types/svg/Minus.d.ts +2 -0
- package/lib-types/svg/Plus.d.ts +2 -0
- package/package.json +1 -2
package/lib/index.qwik.cjs
CHANGED
|
@@ -1040,53 +1040,44 @@ const ColorInput = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inline
|
|
|
1040
1040
|
}, null, 3, null)
|
|
1041
1041
|
], 1, "0s_2");
|
|
1042
1042
|
}, "ColorInput_component_jilGo0Bn3Ps"));
|
|
1043
|
-
const
|
|
1044
|
-
const props = {
|
|
1045
|
-
...rawProps
|
|
1046
|
-
};
|
|
1047
|
-
props.class = ((props.class ?? "") + " ionicon").trim();
|
|
1043
|
+
const Plus = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1048
1044
|
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1049
1045
|
...props,
|
|
1050
|
-
children:
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
/* @__PURE__ */ qwik._jsxQ("line", null, {
|
|
1059
|
-
x1: "400",
|
|
1060
|
-
y1: "256",
|
|
1061
|
-
x2: "112",
|
|
1062
|
-
y2: "256",
|
|
1063
|
-
style: "fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:32px"
|
|
1064
|
-
}, null, 3, null)
|
|
1065
|
-
]
|
|
1046
|
+
children: /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1047
|
+
d: "M256 112v288M400 256H112",
|
|
1048
|
+
fill: "none",
|
|
1049
|
+
stroke: "currentColor",
|
|
1050
|
+
"stroke-linecap": "round",
|
|
1051
|
+
"stroke-linejoin": "round",
|
|
1052
|
+
"stroke-width": "32"
|
|
1053
|
+
}, null, 3, null)
|
|
1066
1054
|
}, {
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
props.class = ((props.class ?? "") + " ionicon").trim();
|
|
1055
|
+
height: qwik._fnSignal((p0) => p0.width, [
|
|
1056
|
+
props
|
|
1057
|
+
], "p0.width"),
|
|
1058
|
+
viewBox: "0 0 512 512",
|
|
1059
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1060
|
+
}, 0, "qR_0");
|
|
1061
|
+
}, "Plus_component_a7LdBXNrC2w"));
|
|
1062
|
+
const Minus = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1076
1063
|
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1077
1064
|
...props,
|
|
1078
|
-
children: /* @__PURE__ */ qwik._jsxQ("
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1065
|
+
children: /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1066
|
+
d: "M400 256H112",
|
|
1067
|
+
fill: "none",
|
|
1068
|
+
stroke: "currentColor",
|
|
1069
|
+
"stroke-linecap": "round",
|
|
1070
|
+
"stroke-linejoin": "round",
|
|
1071
|
+
"stroke-width": "32"
|
|
1084
1072
|
}, null, 3, null)
|
|
1085
1073
|
}, {
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1074
|
+
height: qwik._fnSignal((p0) => p0.width, [
|
|
1075
|
+
props
|
|
1076
|
+
], "p0.width"),
|
|
1077
|
+
viewBox: "0 0 512 512",
|
|
1078
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1079
|
+
}, 0, "0g_0");
|
|
1080
|
+
}, "Minus_component_oP9l58XNP1Q"));
|
|
1090
1081
|
const NumberInput = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1091
1082
|
return /* @__PURE__ */ qwik._jsxQ("div", null, {
|
|
1092
1083
|
class: "flex flex-col"
|
|
@@ -1141,7 +1132,7 @@ const NumberInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.in
|
|
|
1141
1132
|
props,
|
|
1142
1133
|
store
|
|
1143
1134
|
])
|
|
1144
|
-
}, /* @__PURE__ */ qwik._jsxC(
|
|
1135
|
+
}, /* @__PURE__ */ qwik._jsxC(Minus, {
|
|
1145
1136
|
class: "fill-current",
|
|
1146
1137
|
width: "24",
|
|
1147
1138
|
[qwik._IMMUTABLE]: {
|
|
@@ -1183,7 +1174,7 @@ const NumberInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.in
|
|
|
1183
1174
|
props,
|
|
1184
1175
|
store
|
|
1185
1176
|
])
|
|
1186
|
-
}, /* @__PURE__ */ qwik._jsxC(
|
|
1177
|
+
}, /* @__PURE__ */ qwik._jsxC(Plus, {
|
|
1187
1178
|
class: "fill-current",
|
|
1188
1179
|
width: "24",
|
|
1189
1180
|
[qwik._IMMUTABLE]: {
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -1038,53 +1038,44 @@ const ColorInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((prop
|
|
|
1038
1038
|
}, null, 3, null)
|
|
1039
1039
|
], 1, "0s_2");
|
|
1040
1040
|
}, "ColorInput_component_jilGo0Bn3Ps"));
|
|
1041
|
-
const
|
|
1042
|
-
const props = {
|
|
1043
|
-
...rawProps
|
|
1044
|
-
};
|
|
1045
|
-
props.class = ((props.class ?? "") + " ionicon").trim();
|
|
1041
|
+
const Plus = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1046
1042
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
1047
1043
|
...props,
|
|
1048
|
-
children:
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
/* @__PURE__ */ _jsxQ("line", null, {
|
|
1057
|
-
x1: "400",
|
|
1058
|
-
y1: "256",
|
|
1059
|
-
x2: "112",
|
|
1060
|
-
y2: "256",
|
|
1061
|
-
style: "fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:32px"
|
|
1062
|
-
}, null, 3, null)
|
|
1063
|
-
]
|
|
1044
|
+
children: /* @__PURE__ */ _jsxQ("path", null, {
|
|
1045
|
+
d: "M256 112v288M400 256H112",
|
|
1046
|
+
fill: "none",
|
|
1047
|
+
stroke: "currentColor",
|
|
1048
|
+
"stroke-linecap": "round",
|
|
1049
|
+
"stroke-linejoin": "round",
|
|
1050
|
+
"stroke-width": "32"
|
|
1051
|
+
}, null, 3, null)
|
|
1064
1052
|
}, {
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
props.class = ((props.class ?? "") + " ionicon").trim();
|
|
1053
|
+
height: _fnSignal((p0) => p0.width, [
|
|
1054
|
+
props
|
|
1055
|
+
], "p0.width"),
|
|
1056
|
+
viewBox: "0 0 512 512",
|
|
1057
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1058
|
+
}, 0, "qR_0");
|
|
1059
|
+
}, "Plus_component_a7LdBXNrC2w"));
|
|
1060
|
+
const Minus = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1074
1061
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
1075
1062
|
...props,
|
|
1076
|
-
children: /* @__PURE__ */ _jsxQ("
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1063
|
+
children: /* @__PURE__ */ _jsxQ("path", null, {
|
|
1064
|
+
d: "M400 256H112",
|
|
1065
|
+
fill: "none",
|
|
1066
|
+
stroke: "currentColor",
|
|
1067
|
+
"stroke-linecap": "round",
|
|
1068
|
+
"stroke-linejoin": "round",
|
|
1069
|
+
"stroke-width": "32"
|
|
1082
1070
|
}, null, 3, null)
|
|
1083
1071
|
}, {
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1072
|
+
height: _fnSignal((p0) => p0.width, [
|
|
1073
|
+
props
|
|
1074
|
+
], "p0.width"),
|
|
1075
|
+
viewBox: "0 0 512 512",
|
|
1076
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1077
|
+
}, 0, "0g_0");
|
|
1078
|
+
}, "Minus_component_oP9l58XNP1Q"));
|
|
1088
1079
|
const NumberInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1089
1080
|
return /* @__PURE__ */ _jsxQ("div", null, {
|
|
1090
1081
|
class: "flex flex-col"
|
|
@@ -1139,7 +1130,7 @@ const NumberInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
1139
1130
|
props,
|
|
1140
1131
|
store
|
|
1141
1132
|
])
|
|
1142
|
-
}, /* @__PURE__ */ _jsxC(
|
|
1133
|
+
}, /* @__PURE__ */ _jsxC(Minus, {
|
|
1143
1134
|
class: "fill-current",
|
|
1144
1135
|
width: "24",
|
|
1145
1136
|
[_IMMUTABLE]: {
|
|
@@ -1181,7 +1172,7 @@ const NumberInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
1181
1172
|
props,
|
|
1182
1173
|
store
|
|
1183
1174
|
])
|
|
1184
|
-
}, /* @__PURE__ */ _jsxC(
|
|
1175
|
+
}, /* @__PURE__ */ _jsxC(Plus, {
|
|
1185
1176
|
class: "fill-current",
|
|
1186
1177
|
width: "24",
|
|
1187
1178
|
[_IMMUTABLE]: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luminescent/ui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Luminescent UI library",
|
|
5
5
|
"main": "./lib/index.qwik.mjs",
|
|
6
6
|
"qwik": "./lib/index.qwik.mjs",
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"eslint-plugin-qwik": "latest",
|
|
53
53
|
"np": "^9.2.0",
|
|
54
54
|
"postcss": "^8.4.35",
|
|
55
|
-
"qwik-ionicons": "^1.0.5",
|
|
56
55
|
"tailwindcss": "3.4.1",
|
|
57
56
|
"typescript": "5.3.3",
|
|
58
57
|
"undici": "*",
|