@luminescent/ui 0.2.1 → 0.2.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.
@@ -3,6 +3,12 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const qwik = require("@builder.io/qwik");
4
4
  const build = require("@builder.io/qwik/build");
5
5
  const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
6
+ const Anchor = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => /* @__PURE__ */ qwik._jsxQ("span", null, {
7
+ class: "block h-32 -mt-32",
8
+ id: qwik._fnSignal((p0) => p0.id, [
9
+ props
10
+ ], "p0.id")
11
+ }, null, 3, "Oa_0"), "Anchor_component_O7y4zyaazA0"));
6
12
  const buttonColorClasses = {
7
13
  blue: "bg-blue-600/90 border-blue-500 hover:bg-blue-500 focus:bg-blue-500",
8
14
  purple: "bg-purple-600/90 border-purple-500 hover:bg-purple-500 focus:bg-purple-500",
@@ -81,12 +87,6 @@ const LoadingIcon = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlin
81
87
  xmlns: "http://www.w3.org/2000/svg"
82
88
  }, 0, "XP_0");
83
89
  }, "LoadingIcon_component_iXFSRNToIus"));
84
- const Anchor = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => /* @__PURE__ */ qwik._jsxQ("span", null, {
85
- class: "block h-32 -mt-32",
86
- id: qwik._fnSignal((p0) => p0.id, [
87
- props
88
- ], "p0.id")
89
- }, null, 3, "Oa_0"), "Anchor_component_O7y4zyaazA0"));
90
90
  const cardColorClasses = {
91
91
  pink: {
92
92
  card: {
@@ -1583,6 +1583,7 @@ const LogoWaterfall = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
1583
1583
  viewBox: "0 0 24 24"
1584
1584
  }, 0, "Pt_0");
1585
1585
  }, "LogoWaterfall_component_1hFl8GlECLI"));
1586
+ exports.Anchor = Anchor;
1586
1587
  exports.Button = Button;
1587
1588
  exports.ButtonAnchor = ButtonAnchor;
1588
1589
  exports.Card = Card;
@@ -1,6 +1,12 @@
1
- import { componentQrl, inlinedQrl, _restProps, _jsxS, _jsxC, Slot, _jsxQ, _fnSignal, _jsxBranch, _IMMUTABLE, useStore, _wrapSignal, useLexicalScope } from "@builder.io/qwik";
1
+ import { componentQrl, inlinedQrl, _jsxQ, _fnSignal, _restProps, _jsxS, _jsxC, Slot, _jsxBranch, _IMMUTABLE, useStore, _wrapSignal, useLexicalScope } from "@builder.io/qwik";
2
2
  import { isServer } from "@builder.io/qwik/build";
3
3
  import { Fragment } from "@builder.io/qwik/jsx-runtime";
4
+ const Anchor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => /* @__PURE__ */ _jsxQ("span", null, {
5
+ class: "block h-32 -mt-32",
6
+ id: _fnSignal((p0) => p0.id, [
7
+ props
8
+ ], "p0.id")
9
+ }, null, 3, "Oa_0"), "Anchor_component_O7y4zyaazA0"));
4
10
  const buttonColorClasses = {
5
11
  blue: "bg-blue-600/90 border-blue-500 hover:bg-blue-500 focus:bg-blue-500",
6
12
  purple: "bg-purple-600/90 border-purple-500 hover:bg-purple-500 focus:bg-purple-500",
@@ -79,12 +85,6 @@ const LoadingIcon = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
79
85
  xmlns: "http://www.w3.org/2000/svg"
80
86
  }, 0, "XP_0");
81
87
  }, "LoadingIcon_component_iXFSRNToIus"));
82
- const Anchor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => /* @__PURE__ */ _jsxQ("span", null, {
83
- class: "block h-32 -mt-32",
84
- id: _fnSignal((p0) => p0.id, [
85
- props
86
- ], "p0.id")
87
- }, null, 3, "Oa_0"), "Anchor_component_O7y4zyaazA0"));
88
88
  const cardColorClasses = {
89
89
  pink: {
90
90
  card: {
@@ -1582,6 +1582,7 @@ const LogoWaterfall = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((p
1582
1582
  }, 0, "Pt_0");
1583
1583
  }, "LogoWaterfall_component_1hFl8GlECLI"));
1584
1584
  export {
1585
+ Anchor,
1585
1586
  Button,
1586
1587
  ButtonAnchor,
1587
1588
  Card,
@@ -1,3 +1,4 @@
1
+ export * from './elements/Anchor';
1
2
  export * from './elements/Button';
2
3
  export * from './elements/Card';
3
4
  export * from './elements/ColorInput';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luminescent/ui",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Luminescent UI library",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",