@abumble/design-system 0.0.11 → 0.0.12
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/dist/components/Banner.js +3 -3
- package/dist/components/Breadcrumb.js +1 -1
- package/dist/components/Button.js +1 -1
- package/dist/components/Card.js +1 -1
- package/dist/components/Carousel.js +2 -2
- package/dist/components/CodeDisplay.js +1 -1
- package/dist/components/ContextMenu.js +1 -1
- package/dist/components/Empty.js +1 -1
- package/dist/components/Input.js +1 -1
- package/dist/components/List.js +1 -1
- package/dist/components/NotFound.js +1 -1
- package/dist/components/Popover.js +1 -1
- package/dist/components/Separator.js +1 -1
- package/dist/components/Sheet.js +1 -1
- package/dist/components/Sidebar.js +8 -8
- package/dist/components/Skeleton.js +1 -1
- package/dist/components/Tooltip.js +1 -1
- package/dist/components/UnderConstruction.js +1 -1
- package/dist/hooks.js +1 -1
- package/dist/utils.js +1 -1
- package/package.json +1 -1
- /package/dist/{_chunks → shared}/Button.js +0 -0
- /package/dist/{_chunks → shared}/Button.js.map +0 -0
- /package/dist/{_chunks → shared}/Empty.js +0 -0
- /package/dist/{_chunks → shared}/Empty.js.map +0 -0
- /package/dist/{_chunks → shared}/Input.js +0 -0
- /package/dist/{_chunks → shared}/Input.js.map +0 -0
- /package/dist/{_chunks → shared}/Separator.js +0 -0
- /package/dist/{_chunks → shared}/Separator.js.map +0 -0
- /package/dist/{_chunks → shared}/Sheet.js +0 -0
- /package/dist/{_chunks → shared}/Sheet.js.map +0 -0
- /package/dist/{_chunks → shared}/Skeleton.js +0 -0
- /package/dist/{_chunks → shared}/Skeleton.js.map +0 -0
- /package/dist/{_chunks → shared}/Tooltip.js +0 -0
- /package/dist/{_chunks → shared}/Tooltip.js.map +0 -0
- /package/dist/{_chunks → shared}/use-mobile.js +0 -0
- /package/dist/{_chunks → shared}/use-mobile.js.map +0 -0
- /package/dist/{_chunks → shared}/utils.js +0 -0
- /package/dist/{_chunks → shared}/utils.js.map +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsx as e, jsxs as o, Fragment as x } from "react/jsx-runtime";
|
|
2
2
|
import { colorWeights as s } from "../constants.js";
|
|
3
|
-
import { c as b } from "../
|
|
3
|
+
import { c as b } from "../shared/utils.js";
|
|
4
4
|
import { CircleX as v, TriangleAlert as w, Lightbulb as B, Info as C, X as $ } from "lucide-react";
|
|
5
|
-
import { B as I } from "../
|
|
6
|
-
import { S as a } from "../
|
|
5
|
+
import { B as I } from "../shared/Button.js";
|
|
6
|
+
import { S as a } from "../shared/Skeleton.js";
|
|
7
7
|
const n = {
|
|
8
8
|
Info: "info",
|
|
9
9
|
Note: "note",
|
|
@@ -2,7 +2,7 @@ import { jsx as a, jsxs as o } from "react/jsx-runtime";
|
|
|
2
2
|
import { Slot as s } from "@radix-ui/react-slot";
|
|
3
3
|
import { MoreHorizontal as i, ChevronRight as l } from "lucide-react";
|
|
4
4
|
import "react";
|
|
5
|
-
import { c as t } from "../
|
|
5
|
+
import { c as t } from "../shared/utils.js";
|
|
6
6
|
function f({ ...r }) {
|
|
7
7
|
return /* @__PURE__ */ a("nav", { "aria-label": "breadcrumb", "data-slot": "breadcrumb", ...r });
|
|
8
8
|
}
|
package/dist/components/Card.js
CHANGED
|
@@ -2,8 +2,8 @@ import { jsx as a, jsxs as h } from "react/jsx-runtime";
|
|
|
2
2
|
import * as l from "react";
|
|
3
3
|
import k from "embla-carousel-react";
|
|
4
4
|
import { ArrowLeft as z, ArrowRight as g } from "lucide-react";
|
|
5
|
-
import { c as d } from "../
|
|
6
|
-
import { B as v } from "../
|
|
5
|
+
import { c as d } from "../shared/utils.js";
|
|
6
|
+
import { B as v } from "../shared/Button.js";
|
|
7
7
|
const N = l.createContext(null);
|
|
8
8
|
function m() {
|
|
9
9
|
const o = l.useContext(N);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as c, jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { c as i } from "../
|
|
2
|
+
import { c as i } from "../shared/utils.js";
|
|
3
3
|
function l({ code: d, language: r, title: s, className: n, children: o, ...a }) {
|
|
4
4
|
return /* @__PURE__ */ c(
|
|
5
5
|
"div",
|
|
@@ -2,7 +2,7 @@ import { jsx as e, jsxs as i } from "react/jsx-runtime";
|
|
|
2
2
|
import * as o from "@radix-ui/react-context-menu";
|
|
3
3
|
import { CheckIcon as d, CircleIcon as u, ChevronRightIcon as c } from "lucide-react";
|
|
4
4
|
import "react";
|
|
5
|
-
import { c as s } from "../
|
|
5
|
+
import { c as s } from "../shared/utils.js";
|
|
6
6
|
function p({
|
|
7
7
|
...t
|
|
8
8
|
}) {
|
package/dist/components/Empty.js
CHANGED
package/dist/components/Input.js
CHANGED
package/dist/components/List.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as t, jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { E as s, c as a, e as i, b as o, a as n } from "../
|
|
2
|
+
import { E as s, c as a, e as i, b as o, a as n } from "../shared/Empty.js";
|
|
3
3
|
import { FileQuestionMark as m } from "lucide-react";
|
|
4
4
|
function d({ children: r }) {
|
|
5
5
|
return /* @__PURE__ */ t(s, { className: "relative top-[100%]", children: [
|
package/dist/components/Sheet.js
CHANGED
|
@@ -3,14 +3,14 @@ import { Slot as h } from "@radix-ui/react-slot";
|
|
|
3
3
|
import { cva as z } from "class-variance-authority";
|
|
4
4
|
import { ChevronsLeft as I } from "lucide-react";
|
|
5
5
|
import * as c from "react";
|
|
6
|
-
import { B as E } from "../
|
|
7
|
-
import { I as T } from "../
|
|
8
|
-
import { S as D } from "../
|
|
9
|
-
import { S as B, c as A, d as O, f as R, g as H } from "../
|
|
10
|
-
import { S as y } from "../
|
|
11
|
-
import { T as K, a as j, b as G, c as L } from "../
|
|
12
|
-
import { u as $ } from "../
|
|
13
|
-
import { c as r } from "../
|
|
6
|
+
import { B as E } from "../shared/Button.js";
|
|
7
|
+
import { I as T } from "../shared/Input.js";
|
|
8
|
+
import { S as D } from "../shared/Separator.js";
|
|
9
|
+
import { S as B, c as A, d as O, f as R, g as H } from "../shared/Sheet.js";
|
|
10
|
+
import { S as y } from "../shared/Skeleton.js";
|
|
11
|
+
import { T as K, a as j, b as G, c as L } from "../shared/Tooltip.js";
|
|
12
|
+
import { u as $ } from "../shared/use-mobile.js";
|
|
13
|
+
import { c as r } from "../shared/utils.js";
|
|
14
14
|
const V = "sidebar_state", W = 3600 * 24 * 7, q = "18rem", F = "18rem", P = "3rem", U = "b", C = c.createContext(null);
|
|
15
15
|
function S() {
|
|
16
16
|
const a = c.useContext(C);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { c as t } from "../
|
|
2
|
+
import { c as t } from "../shared/utils.js";
|
|
3
3
|
const s = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xml:space='preserve'%20width='800'%20height='800'%20viewBox='0%200%20512%20512'%3e%3cdefs%3e%3cfilter%20id='a'%3e%3cfeTurbulence%20baseFrequency='0.05%200.05'%20numOctaves='2'%20result='noise'%3e%3canimate%20attributeName='baseFrequency'%20dur='0.5s'%20repeatCount='indefinite'%20values='0.05%200.05;%200.055%200.05;%200.05%200.05'/%3e%3c/feTurbulence%3e%3cfeDisplacementMap%20in='SourceGraphic'%20in2='noise'%20scale='1'%20xChannelSelector='R'%20yChannelSelector='G'/%3e%3c/filter%3e%3c/defs%3e%3cg%20filter='url(%23a)'%3e%3cpath%20d='M439.242%20503.916H51.2c-11.906%200-21.558-9.651-21.558-21.558V83.537c0-23.812%2019.304-43.116%2043.116-43.116h366.484c23.812%200%2043.116%2019.304%2043.116%2043.116V460.8c0%2023.812-19.304%2043.116-43.116%2043.116'%20style='fill:%23eaffff'/%3e%3cpath%20d='M40.421%20202.105H18.863c-5.953%200-10.779-4.826-10.779-10.779v-64.674H51.2v64.674c0%205.954-4.826%2010.779-10.779%2010.779'%20style='fill:%23b9baa6'/%3e%3cpath%20d='M148.211%20460.8H94.316V126.653h53.895z'%20style='fill:%23ddb900'/%3e%3cpath%20d='M212.884%20460.8v43.116H18.863V460.8c0-5.953%204.826-10.779%2010.779-10.779h172.463c5.954%200%2010.779%204.826%2010.779%2010.779'%20style='fill:%23b9baa6'/%3e%3cpath%20d='M503.916%20353.011v32.337c0%205.953-4.826%2010.779-10.779%2010.779h-53.895v53.895h32.337c5.953%200%2010.779%204.826%2010.779%2010.779v43.116h-204.8v-97.011c0-5.953%204.826-10.779%2010.779-10.779h75.453v-43.116c0-5.953%204.826-10.779%2010.779-10.779h118.568c5.953%200%2010.779%204.825%2010.779%2010.779'%20style='fill:%23e7e8d4'/%3e%3cpath%20d='M503.916%20353.011v32.337c0%205.953-4.826%2010.779-10.779%2010.779h-53.895v53.895H277.558v-43.116c0-5.953%204.826-10.779%2010.779-10.779h75.453v-43.116c0-5.953%204.826-10.779%2010.779-10.779h118.568c5.953%200%2010.779%204.825%2010.779%2010.779'%20style='fill:%23d3d5bb'/%3e%3cpath%20d='M503.916%20353.011v32.337c0%205.953-4.826%2010.779-10.779%2010.779H363.789v-43.116c0-5.953%204.826-10.779%2010.779-10.779h118.568c5.954%200%2010.78%204.825%2010.78%2010.779'%20style='fill:%23b9baa6'/%3e%3cpath%20d='M503.916%2029.642c0%2011.906-9.651%2021.558-21.558%2021.558H382.44a21.43%2021.43%200%200%201%202.907%2010.779c0%2011.906-9.651%2021.558-21.558%2021.558H202.105c-11.906%200-21.558-9.651-21.558-21.558s9.651-21.558%2021.558-21.558H323.58a21.43%2021.43%200%200%201-2.907-10.779c0-11.906%209.651-21.558%2021.558-21.558h140.126c11.907%200%2021.559%209.652%2021.559%2021.558'%20style='fill:%23c5ead4'/%3e%3cpath%20d='M129.835%2037.658a8.085%208.085%200%200%201%2010.36-4.834l21.558%207.84a8.083%208.083%200%200%201%204.834%2010.36%208.09%208.09%200%200%201-7.598%205.324%208.1%208.1%200%200%201-2.763-.489l-21.558-7.84a8.084%208.084%200%200%201-4.833-10.361m72.27%2053.963h161.684c16.344%200%2029.642-13.297%2029.642-29.642a29.63%2029.63%200%200%200-3.996-14.83%208.084%208.084%200%201%200-13.991%208.102%2013.27%2013.27%200%200%201%201.819%206.728c0%207.43-6.044%2013.474-13.474%2013.474H202.106c-7.43%200-13.474-6.044-13.474-13.474s6.043-13.475%2013.473-13.475H323.58a8.083%208.083%200%200%200%206.995-12.135%2013.27%2013.27%200%200%201-1.818-6.728c0-7.43%206.044-13.474%2013.474-13.474h140.126c7.43%200%2013.474%206.044%2013.474%2013.474s-6.044%2013.474-13.474%2013.474h-68.985c-4.466%200-8.084%203.62-8.084%208.084s3.618%208.084%208.084%208.084h68.985c16.344%200%2029.642-13.297%2029.642-29.642S498.702%200%20482.358%200H342.232c-16.344%200-29.642%2013.297-29.642%2029.642q0%201.352.124%202.695H202.105c-16.344%200-29.642%2013.297-29.642%2029.642s13.298%2029.642%2029.642%2029.642M512%20353.011v32.337c0%2010.401-8.463%2018.863-18.863%2018.863h-45.811v22.366c0%204.465-3.618%208.084-8.084%208.084s-8.084-3.62-8.084-8.084v-22.366H288.337a2.7%202.7%200%200%200-2.695%202.695v35.032h57.398c4.466%200%208.084%203.62%208.084%208.084s-3.618%208.084-8.084%208.084h-57.398v37.726h188.632V460.8a2.7%202.7%200%200%200-2.695-2.695h-96.741c-4.466%200-8.084-3.62-8.084-8.084s3.618-8.084%208.084-8.084h96.741c10.401%200%2018.863%208.463%2018.863%2018.863v35.032h13.474a8.084%208.084%200%200%201%208.084%208.084%208.083%208.083%200%200%201-8.084%208.084H180.547a8.084%208.084%200%200%201%200-16.168H204.8V460.8a2.7%202.7%200%200%200-2.695-2.695H29.642a2.7%202.7%200%200%200-2.695%202.695v35.032H148.21a8.084%208.084%200%200%201%200%2016.168H8.084a8.085%208.085%200%200%201%200-16.168h2.695V460.8c0-10.401%208.463-18.863%2018.863-18.863h56.589v-34.844a8%208%200%200%201%200-.377v-44.894a8%208%200%200%201%200-.377V316.55a8%208%200%200%201%200-.377v-44.894a8%208%200%200%201%200-.377v-44.894a8%208%200%200%201%200-.377v-44.894a8%208%200%200%201%200-.377v-45.621H59.284v56.589c0%2010.401-8.463%2018.863-18.863%2018.863H18.863C8.463%20210.189%200%20201.727%200%20191.326v-64.637c-.001-.304%200-3.101%202.029-5.393l75.424-86.199a8.085%208.085%200%200%201%2012.168%2010.646L25.9%20118.568h76.5V8.084a8.085%208.085%200%200%201%2016.168%200v110.484H328.68l-11.81-4.294a8.084%208.084%200%201%201%205.527-15.194l53.596%2019.488h52.471a8.084%208.084%200%200%201%208.084%208.084%208.083%208.083%200%200%201-8.084%208.084h-2.695V256a8.083%208.083%200%200%201-8.084%208.084c-7.43%200-13.474%206.044-13.474%2013.474s6.044%2013.474%2013.474%2013.474%2013.474-6.044%2013.474-13.474c0-4.465%203.618-8.084%208.084-8.084s8.084%203.62%208.084%208.084c0%2016.345-13.298%2029.642-29.642%2029.642s-29.642-13.297-29.642-29.642c0-13.544%209.13-24.994%2021.558-28.521v-114.3h-34.844a8%208%200%200%201-.376%200H156.295v307.2h45.811c10.401%200%2018.863%208.463%2018.863%2018.863v35.032h48.505v-88.926c0-10.401%208.463-18.863%2018.863-18.863h204.8a2.7%202.7%200%200%200%202.695-2.695v-32.337a2.7%202.7%200%200%200-2.695-2.695H374.568a2.7%202.7%200%200%200-2.695%202.695v19.402a8.083%208.083%200%200%201-8.084%208.084%208.084%208.084%200%200%201-8.084-8.084v-19.402c0-10.401%208.463-18.863%2018.863-18.863h118.568c10.401-.001%2018.864%208.462%2018.864%2018.863M43.116%20134.737H16.168v56.589a2.7%202.7%200%200%200%202.695%202.695h21.558a2.7%202.7%200%200%200%202.695-2.695zm97.01%200H102.4v34.594l21.696-7.232a8.085%208.085%200%200%201%205.112%2015.34l-26.808%208.936v28.228l21.696-7.232a8.084%208.084%200%200%201%2010.226%205.114%208.084%208.084%200%200%201-5.114%2010.226l-26.808%208.936v28.228l21.696-7.232a8.085%208.085%200%200%201%205.112%2015.34l-26.808%208.936v28.228l21.696-7.232a8.085%208.085%200%201%201%205.112%2015.34l-26.808%208.936v28.228l21.696-7.232a8.085%208.085%200%201%201%205.112%2015.34l-26.808%208.936v28.228l21.696-7.232a8.085%208.085%200%201%201%205.112%2015.339l-26.808%208.936v29.204h37.726z'/%3e%3c/g%3e%3c/svg%3e";
|
|
4
4
|
function h() {
|
|
5
5
|
return /* @__PURE__ */ l("div", { className: "flex flex-col items-center justify-center text-gray-900", children: [
|
package/dist/hooks.js
CHANGED
package/dist/utils.js
CHANGED
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|