@luminescent/ui-qwik 4.3.0-0 → 5.0.1-0
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 +5 -15
- package/lib/index.qwik.mjs +5 -15
- package/lib-types/components/elements/Nav.d.ts +2 -2
- package/lib-types/ui-qwik/src/components/docs/Anchor.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/Blobs.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/ColorPicker.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/Dropdown.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/IconsLogos.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/Nav.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/NumberInput.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/SelectMenu.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/Settings.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/Sidebar.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/Toggle.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/lum-btn.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/lum-card.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/lum-classes.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/docs/lum-input.d.ts +2 -0
- package/lib-types/ui-qwik/src/components/logos.d.ts +10 -0
- package/lib-types/ui-qwik/src/entry.dev.d.ts +2 -0
- package/lib-types/ui-qwik/src/entry.ssr.d.ts +14 -0
- package/lib-types/ui-qwik/src/index.d.ts +3 -0
- package/lib-types/ui-qwik/src/root.d.ts +3 -0
- package/lib-types/ui-react/src/components/logos/Birdflop.d.ts +7 -0
- package/lib-types/ui-react/src/components/logos/Discord.d.ts +2 -0
- package/lib-types/ui-react/src/components/logos/Fabric.d.ts +2 -0
- package/lib-types/ui-react/src/components/logos/Forge.d.ts +2 -0
- package/lib-types/ui-react/src/components/logos/IconProps.d.ts +3 -0
- package/lib-types/ui-react/src/components/logos/Luminescent.d.ts +3 -0
- package/lib-types/ui-react/src/components/logos/Paper.d.ts +2 -0
- package/lib-types/ui-react/src/components/logos/Pterodactyl.d.ts +2 -0
- package/lib-types/ui-react/src/components/logos/Purpur.d.ts +2 -0
- package/lib-types/ui-react/src/components/logos/Velocity.d.ts +2 -0
- package/lib-types/ui-react/src/components/logos/Waterfall.d.ts +2 -0
- package/lib-types/ui-react/src/components/logos.d.ts +10 -0
- package/package.json +3 -5
- package/lib-types/components/docs.d.ts +0 -8
- package/lib-types/components/elements/Header.d.ts +0 -10
package/lib/index.qwik.cjs
CHANGED
|
@@ -925,9 +925,7 @@ const SelectMenuRaw = qwik.component$(({ id, values, class: Class, customDropdow
|
|
|
925
925
|
values && /* @__PURE__ */ jsxRuntime.jsx("select", {
|
|
926
926
|
...props,
|
|
927
927
|
id,
|
|
928
|
-
class:
|
|
929
|
-
hidden: true
|
|
930
|
-
},
|
|
928
|
+
class: "hidden",
|
|
931
929
|
children: values.map((value, i) => {
|
|
932
930
|
return /* @__PURE__ */ jsxRuntime.jsx("option", {
|
|
933
931
|
value: value.value,
|
|
@@ -972,16 +970,12 @@ const SelectMenuRaw = qwik.component$(({ id, values, class: Class, customDropdow
|
|
|
972
970
|
},
|
|
973
971
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
974
972
|
id: `lui-${id}-opts`,
|
|
975
|
-
class:
|
|
976
|
-
"lum-bg-lum-input-bg lum-scroll flex max-h-72 flex-col gap-1 overflow-auto rounded-lum border p-1 select-none motion-safe:transition-all": true
|
|
977
|
-
},
|
|
973
|
+
class: "lum-bg-lum-input-bg lum-scroll flex max-h-72 flex-col gap-1 overflow-auto rounded-lum border p-1 select-none motion-safe:transition-all",
|
|
978
974
|
children: [
|
|
979
975
|
values?.map(({ name, value }, i) => {
|
|
980
976
|
return /* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
981
977
|
type: "button",
|
|
982
|
-
class:
|
|
983
|
-
"lum-btn lum-bg-transparent rounded-lum-1": true
|
|
984
|
-
},
|
|
978
|
+
class: "lum-btn lum-bg-transparent rounded-lum-1",
|
|
985
979
|
onClick$: () => {
|
|
986
980
|
store.opened = false;
|
|
987
981
|
const select = document.getElementById(id);
|
|
@@ -1061,9 +1055,7 @@ const Sidebar = qwik.component$(({ floating, ...props }) => {
|
|
|
1061
1055
|
});
|
|
1062
1056
|
const Toggle = qwik.component$(({ checkbox, round, label, ...props }) => {
|
|
1063
1057
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
1064
|
-
class:
|
|
1065
|
-
"flex touch-manipulation items-center gap-3": true
|
|
1066
|
-
},
|
|
1058
|
+
class: "flex touch-manipulation items-center gap-3",
|
|
1067
1059
|
children: [
|
|
1068
1060
|
/* @__PURE__ */ jsxRuntime.jsxs("label", {
|
|
1069
1061
|
class: "relative inline-flex cursor-pointer items-center",
|
|
@@ -1071,9 +1063,7 @@ const Toggle = qwik.component$(({ checkbox, round, label, ...props }) => {
|
|
|
1071
1063
|
/* @__PURE__ */ jsxRuntime.jsx("input", {
|
|
1072
1064
|
type: "checkbox",
|
|
1073
1065
|
...props,
|
|
1074
|
-
class:
|
|
1075
|
-
"peer sr-only": true
|
|
1076
|
-
}
|
|
1066
|
+
class: "peer sr-only"
|
|
1077
1067
|
}),
|
|
1078
1068
|
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
1079
1069
|
class: {
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -923,9 +923,7 @@ const SelectMenuRaw = component$(({ id, values, class: Class, customDropdown, ho
|
|
|
923
923
|
values && /* @__PURE__ */ jsx("select", {
|
|
924
924
|
...props,
|
|
925
925
|
id,
|
|
926
|
-
class:
|
|
927
|
-
hidden: true
|
|
928
|
-
},
|
|
926
|
+
class: "hidden",
|
|
929
927
|
children: values.map((value, i) => {
|
|
930
928
|
return /* @__PURE__ */ jsx("option", {
|
|
931
929
|
value: value.value,
|
|
@@ -970,16 +968,12 @@ const SelectMenuRaw = component$(({ id, values, class: Class, customDropdown, ho
|
|
|
970
968
|
},
|
|
971
969
|
children: /* @__PURE__ */ jsxs("div", {
|
|
972
970
|
id: `lui-${id}-opts`,
|
|
973
|
-
class:
|
|
974
|
-
"lum-bg-lum-input-bg lum-scroll flex max-h-72 flex-col gap-1 overflow-auto rounded-lum border p-1 select-none motion-safe:transition-all": true
|
|
975
|
-
},
|
|
971
|
+
class: "lum-bg-lum-input-bg lum-scroll flex max-h-72 flex-col gap-1 overflow-auto rounded-lum border p-1 select-none motion-safe:transition-all",
|
|
976
972
|
children: [
|
|
977
973
|
values?.map(({ name, value }, i) => {
|
|
978
974
|
return /* @__PURE__ */ jsx("button", {
|
|
979
975
|
type: "button",
|
|
980
|
-
class:
|
|
981
|
-
"lum-btn lum-bg-transparent rounded-lum-1": true
|
|
982
|
-
},
|
|
976
|
+
class: "lum-btn lum-bg-transparent rounded-lum-1",
|
|
983
977
|
onClick$: () => {
|
|
984
978
|
store.opened = false;
|
|
985
979
|
const select = document.getElementById(id);
|
|
@@ -1059,9 +1053,7 @@ const Sidebar = component$(({ floating, ...props }) => {
|
|
|
1059
1053
|
});
|
|
1060
1054
|
const Toggle = component$(({ checkbox, round, label, ...props }) => {
|
|
1061
1055
|
return /* @__PURE__ */ jsxs("div", {
|
|
1062
|
-
class:
|
|
1063
|
-
"flex touch-manipulation items-center gap-3": true
|
|
1064
|
-
},
|
|
1056
|
+
class: "flex touch-manipulation items-center gap-3",
|
|
1065
1057
|
children: [
|
|
1066
1058
|
/* @__PURE__ */ jsxs("label", {
|
|
1067
1059
|
class: "relative inline-flex cursor-pointer items-center",
|
|
@@ -1069,9 +1061,7 @@ const Toggle = component$(({ checkbox, round, label, ...props }) => {
|
|
|
1069
1061
|
/* @__PURE__ */ jsx("input", {
|
|
1070
1062
|
type: "checkbox",
|
|
1071
1063
|
...props,
|
|
1072
|
-
class:
|
|
1073
|
-
"peer sr-only": true
|
|
1074
|
-
}
|
|
1064
|
+
class: "peer sr-only"
|
|
1075
1065
|
}),
|
|
1076
1066
|
/* @__PURE__ */ jsx("div", {
|
|
1077
1067
|
class: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { PropsOf } from '@builder.io/qwik';
|
|
2
|
-
interface
|
|
2
|
+
interface NavProps extends Omit<PropsOf<'nav'>, 'class'> {
|
|
3
3
|
class?: {
|
|
4
4
|
[key: string]: boolean;
|
|
5
5
|
};
|
|
@@ -8,5 +8,5 @@ interface NavContainerProps extends Omit<PropsOf<'nav'>, 'class'> {
|
|
|
8
8
|
nohamburger?: boolean;
|
|
9
9
|
colorClass?: string;
|
|
10
10
|
}
|
|
11
|
-
export declare const Nav: import("@builder.io/qwik").Component<
|
|
11
|
+
export declare const Nav: import("@builder.io/qwik").Component<NavProps>;
|
|
12
12
|
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './logos/Birdflop';
|
|
2
|
+
export * from './logos/Discord';
|
|
3
|
+
export * from './logos/Fabric';
|
|
4
|
+
export * from './logos/Forge';
|
|
5
|
+
export * from './logos/Luminescent';
|
|
6
|
+
export * from './logos/Paper';
|
|
7
|
+
export * from './logos/Pterodactyl';
|
|
8
|
+
export * from './logos/Purpur';
|
|
9
|
+
export * from './logos/Velocity';
|
|
10
|
+
export * from './logos/Waterfall';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WHAT IS THIS FILE?
|
|
3
|
+
*
|
|
4
|
+
* SSR entry point, in all cases the application is rendered outside the browser, this
|
|
5
|
+
* entry point will be the common one.
|
|
6
|
+
*
|
|
7
|
+
* - Server (express, cloudflare...)
|
|
8
|
+
* - npm run start
|
|
9
|
+
* - npm run preview
|
|
10
|
+
* - npm run build
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
import { type RenderToStreamOptions } from '@builder.io/qwik/server';
|
|
14
|
+
export default function (opts: RenderToStreamOptions): Promise<import("@builder.io/qwik/server").RenderToStreamResult>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IconProps } from './IconProps';
|
|
2
|
+
interface LogoBirdflopProps extends IconProps {
|
|
3
|
+
confused?: boolean;
|
|
4
|
+
fillGradient?: string[];
|
|
5
|
+
}
|
|
6
|
+
export declare function LogoBirdflop({ confused, fillGradient, size, ...props }: LogoBirdflopProps): any;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './logos/Birdflop';
|
|
2
|
+
export * from './logos/Discord';
|
|
3
|
+
export * from './logos/Fabric';
|
|
4
|
+
export * from './logos/Forge';
|
|
5
|
+
export * from './logos/Luminescent';
|
|
6
|
+
export * from './logos/Paper';
|
|
7
|
+
export * from './logos/Pterodactyl';
|
|
8
|
+
export * from './logos/Purpur';
|
|
9
|
+
export * from './logos/Velocity';
|
|
10
|
+
export * from './logos/Waterfall';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luminescent/ui-qwik",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Luminescent UI library",
|
|
3
|
+
"version": "5.0.1-0",
|
|
4
|
+
"description": "Luminescent UI library - Qwik",
|
|
5
5
|
"main": "./lib/index.qwik.mjs",
|
|
6
6
|
"qwik": "./lib/index.qwik.mjs",
|
|
7
7
|
"types": "./lib-types/index.d.ts",
|
|
@@ -38,8 +38,6 @@
|
|
|
38
38
|
"@tailwindcss/vite": "^4.1.11",
|
|
39
39
|
"@types/eslint": "^9.6.1",
|
|
40
40
|
"@types/node": "^24.0.10",
|
|
41
|
-
"@typescript-eslint/eslint-plugin": "^8.35.1",
|
|
42
|
-
"@typescript-eslint/parser": "^8.35.1",
|
|
43
41
|
"eslint": "^9.30.1",
|
|
44
42
|
"eslint-plugin-qwik": "^1.14.1",
|
|
45
43
|
"globals": "^16.3.0",
|
|
@@ -52,7 +50,7 @@
|
|
|
52
50
|
"vite-tsconfig-paths": "^5.1.4"
|
|
53
51
|
},
|
|
54
52
|
"peerDependencies": {
|
|
55
|
-
"@luminescent/ui": "
|
|
53
|
+
"@luminescent/ui": "5.0.1-0"
|
|
56
54
|
},
|
|
57
55
|
"scripts": {
|
|
58
56
|
"build": "qwik build",
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * from './docs/Anchor';
|
|
2
|
-
export * from './docs/Blobs';
|
|
3
|
-
export * from './docs/ColorPicker';
|
|
4
|
-
export * from './docs/Dropdown';
|
|
5
|
-
export * from './docs/IconsLogos';
|
|
6
|
-
export * from './docs/Nav';
|
|
7
|
-
export * from './docs/NumberInput';
|
|
8
|
-
export * from './docs/Toggle';
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { PropsOf } from '@builder.io/qwik';
|
|
2
|
-
interface HeaderProps extends Omit<PropsOf<'h2'>, 'class'> {
|
|
3
|
-
class?: {
|
|
4
|
-
[key: string]: boolean;
|
|
5
|
-
};
|
|
6
|
-
id?: string;
|
|
7
|
-
anchor?: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare const Header: import("@builder.io/qwik").Component<HeaderProps>;
|
|
10
|
-
export {};
|