@luminescent/ui 0.6.0 → 0.6.1

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.
@@ -1271,7 +1271,8 @@ const SelectInput = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlin
1271
1271
  const SelectInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1272
1272
  const props1 = qwik._restProps(props, [
1273
1273
  "id",
1274
- "values"
1274
+ "values",
1275
+ "class"
1275
1276
  ]);
1276
1277
  const store = qwik.useStore({
1277
1278
  opened: false
@@ -1295,6 +1296,12 @@ const SelectInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.in
1295
1296
  ], "p0.id")
1296
1297
  }, 0, null),
1297
1298
  /* @__PURE__ */ qwik._jsxC(Button, {
1299
+ get class() {
1300
+ return {
1301
+ "flex": true,
1302
+ ...props.class
1303
+ };
1304
+ },
1298
1305
  children: [
1299
1306
  /* @__PURE__ */ qwik._jsxQ("span", null, {
1300
1307
  class: "flex-1 text-left",
@@ -1321,10 +1328,6 @@ const SelectInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.in
1321
1328
  }
1322
1329
  }, 3, "cA_3")
1323
1330
  ],
1324
- class: {
1325
- "flex": true,
1326
- ...props1.class
1327
- },
1328
1331
  onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
1329
1332
  const [store2] = qwik.useLexicalScope();
1330
1333
  store2.opened = !store2.opened;
@@ -1332,6 +1335,12 @@ const SelectInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.in
1332
1335
  store
1333
1336
  ]),
1334
1337
  [qwik._IMMUTABLE]: {
1338
+ class: qwik._fnSignal((p0) => ({
1339
+ "flex": true,
1340
+ ...p0.class
1341
+ }), [
1342
+ props
1343
+ ], '{"flex":true,...p0.class}'),
1335
1344
  onClick$: qwik._IMMUTABLE
1336
1345
  }
1337
1346
  }, 1, "cA_4"),
@@ -1269,7 +1269,8 @@ const SelectInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
1269
1269
  const SelectInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
1270
1270
  const props1 = _restProps(props, [
1271
1271
  "id",
1272
- "values"
1272
+ "values",
1273
+ "class"
1273
1274
  ]);
1274
1275
  const store = useStore({
1275
1276
  opened: false
@@ -1293,6 +1294,12 @@ const SelectInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
1293
1294
  ], "p0.id")
1294
1295
  }, 0, null),
1295
1296
  /* @__PURE__ */ _jsxC(Button, {
1297
+ get class() {
1298
+ return {
1299
+ "flex": true,
1300
+ ...props.class
1301
+ };
1302
+ },
1296
1303
  children: [
1297
1304
  /* @__PURE__ */ _jsxQ("span", null, {
1298
1305
  class: "flex-1 text-left",
@@ -1319,10 +1326,6 @@ const SelectInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
1319
1326
  }
1320
1327
  }, 3, "cA_3")
1321
1328
  ],
1322
- class: {
1323
- "flex": true,
1324
- ...props1.class
1325
- },
1326
1329
  onClick$: /* @__PURE__ */ inlinedQrl(() => {
1327
1330
  const [store2] = useLexicalScope();
1328
1331
  store2.opened = !store2.opened;
@@ -1330,6 +1333,12 @@ const SelectInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
1330
1333
  store
1331
1334
  ]),
1332
1335
  [_IMMUTABLE]: {
1336
+ class: _fnSignal((p0) => ({
1337
+ "flex": true,
1338
+ ...p0.class
1339
+ }), [
1340
+ props
1341
+ ], '{"flex":true,...p0.class}'),
1333
1342
  onClick$: _IMMUTABLE
1334
1343
  }
1335
1344
  }, 1, "cA_4"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luminescent/ui",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Luminescent UI library",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",