@editora/ui-react 0.1.7 → 0.1.8
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/Accordion.cjs.js +1 -0
- package/dist/Accordion.d.ts +3 -0
- package/dist/Accordion.d.ts.map +1 -0
- package/dist/Accordion.esm.js +89 -0
- package/dist/Alert.cjs.js +1 -0
- package/dist/Alert.d.ts +2 -0
- package/dist/Alert.d.ts.map +1 -0
- package/dist/Alert.esm.js +53 -0
- package/dist/Layout.cjs.js +1 -1
- package/dist/Layout.esm.js +27 -26
- package/dist/components/Accordion.cjs.js +1 -0
- package/dist/components/Accordion.d.ts +10 -5
- package/dist/components/Accordion.d.ts.map +1 -1
- package/dist/components/Accordion.esm.js +6 -0
- package/dist/components/Alert.cjs.js +1 -0
- package/dist/components/Alert.d.ts +14 -6
- package/dist/components/Alert.d.ts.map +1 -1
- package/dist/components/Alert.esm.js +10 -0
- package/dist/components/Layout.d.ts +15 -8
- package/dist/components/Layout.d.ts.map +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +2240 -2353
- package/package.json +7 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const M=require("react"),O=require("./_internals-b9f3e909.js");function q(r){if(r&&r.__esModule)return r;const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(r){for(const e in r)if(e!=="default"){const c=Object.getOwnPropertyDescriptor(r,e);Object.defineProperty(t,e,c.get?c:{enumerable:!0,get:()=>r[e]})}}return t.default=r,Object.freeze(t)}const i=q(M),x=typeof window<"u"?i.useLayoutEffect:i.useEffect;function B(r,t,e){if(e==null){r.removeAttribute(t);return}e?r.setAttribute(t,""):r.removeAttribute(t)}function l(r,t,e){const c=r.getAttribute(t);if(e==null||e===""){c!=null&&r.removeAttribute(t);return}c!==e&&r.setAttribute(t,e)}function v(r){var t;return(t=r.detail)==null?void 0:t.open}const w=i.forwardRef(function({multiple:t,collapsible:e,open:c,variant:u,size:d,radius:f,tone:o,indicator:m,shape:b,elevation:g,onToggle:s,onChangeOpen:a,children:P,...j},L){const y=i.useRef(null);return i.useImperativeHandle(L,()=>y.current),i.useEffect(()=>{O.warnIfElementNotRegistered("ui-accordion","Accordion")},[]),x(()=>{const n=y.current;n&&(B(n,"multiple",t),e==null?n.removeAttribute("collapsible"):n.setAttribute("collapsible",String(!!e)),c==null?n.removeAttribute("open"):n.setAttribute("open",Array.isArray(c)?JSON.stringify(c):String(c)),l(n,"variant",u&&u!=="surface"?u:null),l(n,"size",d&&d!=="md"?d:null),l(n,"radius",f!=null?String(f):null),l(n,"tone",o&&o!=="neutral"?o:null),l(n,"indicator",m&&m!=="line"?m:null),l(n,"shape",b&&b!=="default"?b:null),l(n,"elevation",g&&g!=="default"?g:null))},[t,e,c,u,d,f,o,m,b,g]),i.useEffect(()=>{const n=y.current;if(!n||!s&&!a)return;const p=E=>{const A=v(E);A!=null&&(s==null||s(A))},S=E=>{const A=v(E);A!=null&&(a==null||a(A))};return n.addEventListener("toggle",p),n.addEventListener("change",S),()=>{n.removeEventListener("toggle",p),n.removeEventListener("change",S)}},[s,a]),i.createElement("ui-accordion",{ref:y,...j},P)});w.displayName="Accordion";const N=i.forwardRef(function({disabled:t,description:e,badge:c,children:u,...d},f){const o={ref:f,"data-ui-accordion-item":"",...d};return t&&(o.disabled=!0),e!=null&&(o["data-description"]=String(e)),c!=null&&(o["data-badge"]=String(c)),i.createElement("div",o,u)});N.displayName="AccordionItem";const R=i.forwardRef(function({type:t,children:e,...c},u){return i.createElement("button",{ref:u,type:t||"button","data-ui-accordion-trigger":"",...c},e)});R.displayName="AccordionTrigger";const _=i.forwardRef(function({children:t,...e},c){return i.createElement("div",{ref:c,"data-ui-accordion-panel":"",...e},t)});_.displayName="AccordionPanel";const I=Object.assign(w,{Item:N,Trigger:R,Panel:_});I.displayName="Accordion";exports.Accordion=I;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../src/Accordion.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,YAAY,EACV,cAAc,EACd,kBAAkB,EAClB,qBAAqB,EACrB,mBAAmB,GACpB,MAAM,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import * as i from "react";
|
|
2
|
+
import { w as B } from "./_internals-f8fb69a8.mjs";
|
|
3
|
+
const j = typeof window < "u" ? i.useLayoutEffect : i.useEffect;
|
|
4
|
+
function H(c, t, r) {
|
|
5
|
+
if (r == null) {
|
|
6
|
+
c.removeAttribute(t);
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
r ? c.setAttribute(t, "") : c.removeAttribute(t);
|
|
10
|
+
}
|
|
11
|
+
function l(c, t, r) {
|
|
12
|
+
const n = c.getAttribute(t);
|
|
13
|
+
if (r == null || r === "") {
|
|
14
|
+
n != null && c.removeAttribute(t);
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
n !== r && c.setAttribute(t, r);
|
|
18
|
+
}
|
|
19
|
+
function I(c) {
|
|
20
|
+
var t;
|
|
21
|
+
return (t = c.detail) == null ? void 0 : t.open;
|
|
22
|
+
}
|
|
23
|
+
const N = i.forwardRef(function({ multiple: t, collapsible: r, open: n, variant: u, size: d, radius: f, tone: o, indicator: m, shape: b, elevation: E, onToggle: s, onChangeOpen: a, children: S, ...P }, x) {
|
|
24
|
+
const y = i.useRef(null);
|
|
25
|
+
return i.useImperativeHandle(x, () => y.current), i.useEffect(() => {
|
|
26
|
+
B("ui-accordion", "Accordion");
|
|
27
|
+
}, []), j(() => {
|
|
28
|
+
const e = y.current;
|
|
29
|
+
e && (H(e, "multiple", t), r == null ? e.removeAttribute("collapsible") : e.setAttribute("collapsible", String(!!r)), n == null ? e.removeAttribute("open") : e.setAttribute("open", Array.isArray(n) ? JSON.stringify(n) : String(n)), l(e, "variant", u && u !== "surface" ? u : null), l(e, "size", d && d !== "md" ? d : null), l(e, "radius", f != null ? String(f) : null), l(e, "tone", o && o !== "neutral" ? o : null), l(e, "indicator", m && m !== "line" ? m : null), l(e, "shape", b && b !== "default" ? b : null), l(e, "elevation", E && E !== "default" ? E : null));
|
|
30
|
+
}, [t, r, n, u, d, f, o, m, b, E]), i.useEffect(() => {
|
|
31
|
+
const e = y.current;
|
|
32
|
+
if (!e || !s && !a)
|
|
33
|
+
return;
|
|
34
|
+
const p = (g) => {
|
|
35
|
+
const A = I(g);
|
|
36
|
+
A != null && (s == null || s(A));
|
|
37
|
+
}, w = (g) => {
|
|
38
|
+
const A = I(g);
|
|
39
|
+
A != null && (a == null || a(A));
|
|
40
|
+
};
|
|
41
|
+
return e.addEventListener("toggle", p), e.addEventListener("change", w), () => {
|
|
42
|
+
e.removeEventListener("toggle", p), e.removeEventListener("change", w);
|
|
43
|
+
};
|
|
44
|
+
}, [s, a]), i.createElement("ui-accordion", { ref: y, ...P }, S);
|
|
45
|
+
});
|
|
46
|
+
N.displayName = "Accordion";
|
|
47
|
+
const R = i.forwardRef(function({ disabled: t, description: r, badge: n, children: u, ...d }, f) {
|
|
48
|
+
const o = {
|
|
49
|
+
ref: f,
|
|
50
|
+
"data-ui-accordion-item": "",
|
|
51
|
+
...d
|
|
52
|
+
};
|
|
53
|
+
return t && (o.disabled = !0), r != null && (o["data-description"] = String(r)), n != null && (o["data-badge"] = String(n)), i.createElement("div", o, u);
|
|
54
|
+
});
|
|
55
|
+
R.displayName = "AccordionItem";
|
|
56
|
+
const v = i.forwardRef(function({ type: t, children: r, ...n }, u) {
|
|
57
|
+
return i.createElement(
|
|
58
|
+
"button",
|
|
59
|
+
{
|
|
60
|
+
ref: u,
|
|
61
|
+
type: t || "button",
|
|
62
|
+
"data-ui-accordion-trigger": "",
|
|
63
|
+
...n
|
|
64
|
+
},
|
|
65
|
+
r
|
|
66
|
+
);
|
|
67
|
+
});
|
|
68
|
+
v.displayName = "AccordionTrigger";
|
|
69
|
+
const L = i.forwardRef(function({ children: t, ...r }, n) {
|
|
70
|
+
return i.createElement(
|
|
71
|
+
"div",
|
|
72
|
+
{
|
|
73
|
+
ref: n,
|
|
74
|
+
"data-ui-accordion-panel": "",
|
|
75
|
+
...r
|
|
76
|
+
},
|
|
77
|
+
t
|
|
78
|
+
);
|
|
79
|
+
});
|
|
80
|
+
L.displayName = "AccordionPanel";
|
|
81
|
+
const J = Object.assign(N, {
|
|
82
|
+
Item: R,
|
|
83
|
+
Trigger: v,
|
|
84
|
+
Panel: L
|
|
85
|
+
});
|
|
86
|
+
J.displayName = "Accordion";
|
|
87
|
+
export {
|
|
88
|
+
J as Accordion
|
|
89
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const A=require("react"),w=t=>t&&t.__esModule?t:{default:t},y=w(A),L=typeof window<"u"?A.useLayoutEffect:A.useEffect;function R(t){const{title:c,description:s,tone:o,variant:n,layout:f,size:l,radius:a,elevation:i,indicator:u,dismissible:b,open:d,headless:r,onClose:v,children:I,...S}=t,p=A.useRef(null);return A.useEffect(()=>{const e=p.current;if(!e)return;const h=()=>v==null?void 0:v();return e.addEventListener("close",h),()=>e.removeEventListener("close",h)},[v]),L(()=>{const e=p.current;e&&(c?e.setAttribute("title",c):e.removeAttribute("title"),s?e.setAttribute("description",s):e.removeAttribute("description"),o?e.setAttribute("tone",o):e.removeAttribute("tone"),n?e.setAttribute("variant",n):e.removeAttribute("variant"),f?e.setAttribute("layout",f):e.removeAttribute("layout"),l&&l!=="md"?e.setAttribute("size",l):e.removeAttribute("size"),a!=null?e.setAttribute("radius",String(a)):e.removeAttribute("radius"),i&&i!=="low"?e.setAttribute("elevation",i):e.removeAttribute("elevation"),u&&u!=="line"?e.setAttribute("indicator",u):e.removeAttribute("indicator"),b?e.setAttribute("dismissible",""):e.removeAttribute("dismissible"),r?e.setAttribute("headless",""):e.removeAttribute("headless"),typeof d=="boolean"?d?e.removeAttribute("hidden"):e.setAttribute("hidden",""):e.removeAttribute("hidden"))},[c,s,o,n,f,l,a,i,u,b,d,r]),y.default.createElement("ui-alert",{ref:p,...S},I)}function m(t,c,s,o){const n=y.default.forwardRef(function({as:l,children:a,style:i,...u},b){const d=l||t,r={ref:b,...u};return s&&(r.slot=s),o&&(r[o]=""),i&&(r.style=i),y.default.createElement(d,r,a)});return n.displayName=c,n}const E=m("span","AlertIcon","icon","data-ui-alert-icon"),_=m("div","AlertTitle","title","data-ui-alert-title"),T=m("div","AlertDescription",void 0,"data-ui-alert-description"),g=m("div","AlertActions","actions","data-ui-alert-actions"),D=Object.assign(R,{Icon:E,Title:_,Description:T,Actions:g,displayName:"Alert"});exports.Alert=D;exports.AlertActions=g;exports.AlertDescription=T;exports.AlertIcon=E;exports.AlertTitle=_;exports.default=D;
|
package/dist/Alert.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../src/Alert.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,gBAAgB,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import p, { useRef as I, useEffect as h, useLayoutEffect as L } from "react";
|
|
2
|
+
const T = typeof window < "u" ? L : h;
|
|
3
|
+
function g(m) {
|
|
4
|
+
const {
|
|
5
|
+
title: u,
|
|
6
|
+
description: r,
|
|
7
|
+
tone: s,
|
|
8
|
+
variant: o,
|
|
9
|
+
layout: d,
|
|
10
|
+
size: n,
|
|
11
|
+
radius: a,
|
|
12
|
+
elevation: t,
|
|
13
|
+
indicator: l,
|
|
14
|
+
dismissible: A,
|
|
15
|
+
open: c,
|
|
16
|
+
headless: i,
|
|
17
|
+
onClose: f,
|
|
18
|
+
children: E,
|
|
19
|
+
...w
|
|
20
|
+
} = m, v = I(null);
|
|
21
|
+
return h(() => {
|
|
22
|
+
const e = v.current;
|
|
23
|
+
if (!e)
|
|
24
|
+
return;
|
|
25
|
+
const y = () => f == null ? void 0 : f();
|
|
26
|
+
return e.addEventListener("close", y), () => e.removeEventListener("close", y);
|
|
27
|
+
}, [f]), T(() => {
|
|
28
|
+
const e = v.current;
|
|
29
|
+
e && (u ? e.setAttribute("title", u) : e.removeAttribute("title"), r ? e.setAttribute("description", r) : e.removeAttribute("description"), s ? e.setAttribute("tone", s) : e.removeAttribute("tone"), o ? e.setAttribute("variant", o) : e.removeAttribute("variant"), d ? e.setAttribute("layout", d) : e.removeAttribute("layout"), n && n !== "md" ? e.setAttribute("size", n) : e.removeAttribute("size"), a != null ? e.setAttribute("radius", String(a)) : e.removeAttribute("radius"), t && t !== "low" ? e.setAttribute("elevation", t) : e.removeAttribute("elevation"), l && l !== "line" ? e.setAttribute("indicator", l) : e.removeAttribute("indicator"), A ? e.setAttribute("dismissible", "") : e.removeAttribute("dismissible"), i ? e.setAttribute("headless", "") : e.removeAttribute("headless"), typeof c == "boolean" ? c ? e.removeAttribute("hidden") : e.setAttribute("hidden", "") : e.removeAttribute("hidden"));
|
|
30
|
+
}, [u, r, s, o, d, n, a, t, l, A, c, i]), p.createElement("ui-alert", { ref: v, ...w }, E);
|
|
31
|
+
}
|
|
32
|
+
function b(m, u, r, s) {
|
|
33
|
+
const o = p.forwardRef(function({ as: n, children: a, style: t, ...l }, A) {
|
|
34
|
+
const c = n || m, i = { ref: A, ...l };
|
|
35
|
+
return r && (i.slot = r), s && (i[s] = ""), t && (i.style = t), p.createElement(c, i, a);
|
|
36
|
+
});
|
|
37
|
+
return o.displayName = u, o;
|
|
38
|
+
}
|
|
39
|
+
const z = b("span", "AlertIcon", "icon", "data-ui-alert-icon"), D = b("div", "AlertTitle", "title", "data-ui-alert-title"), R = b("div", "AlertDescription", void 0, "data-ui-alert-description"), S = b("div", "AlertActions", "actions", "data-ui-alert-actions"), N = Object.assign(g, {
|
|
40
|
+
Icon: z,
|
|
41
|
+
Title: D,
|
|
42
|
+
Description: R,
|
|
43
|
+
Actions: S,
|
|
44
|
+
displayName: "Alert"
|
|
45
|
+
});
|
|
46
|
+
export {
|
|
47
|
+
N as Alert,
|
|
48
|
+
S as AlertActions,
|
|
49
|
+
R as AlertDescription,
|
|
50
|
+
z as AlertIcon,
|
|
51
|
+
D as AlertTitle,
|
|
52
|
+
N as default
|
|
53
|
+
};
|
package/dist/Layout.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const a=require("react"),F=o=>o&&o.__esModule?o:{default:o},r=F(a),M=typeof window<"u"?a.useLayoutEffect:a.useEffect,v=r.default.forwardRef(function({children:u,mode:t,variant:s,density:i,maxWidth:n,sidebarSide:l,collapsed:m,headless:A,sidebarWidth:c,asideWidth:y,onLayoutChange:d,..._},H){const f=a.useRef(null);return r.default.useImperativeHandle(H,()=>f.current),a.useEffect(()=>{const e=f.current;if(!e)return;const L=()=>d==null?void 0:d();return e.addEventListener("layoutchange",L),()=>e.removeEventListener("layoutchange",L)},[d]),M(()=>{const e=f.current;e&&(t&&t!=="dashboard"?e.setAttribute("mode",t):e.removeAttribute("mode"),s&&s!=="default"?e.setAttribute("variant",s):e.removeAttribute("variant"),i&&i!=="default"?e.setAttribute("density",i):e.removeAttribute("density"),n?e.setAttribute("max-width",n):e.removeAttribute("max-width"),l&&l!=="start"?e.setAttribute("sidebar-side",l):e.removeAttribute("sidebar-side"),m?e.setAttribute("collapsed",""):e.removeAttribute("collapsed"),A?e.setAttribute("headless",""):e.removeAttribute("headless"),c?e.setAttribute("sidebar-width",c):e.removeAttribute("sidebar-width"),y?e.setAttribute("aside-width",y):e.removeAttribute("aside-width"))},[t,s,i,n,l,m,A,c,y]),r.default.createElement("ui-layout",{ref:f,..._},u)});v.displayName="Layout";const p=r.default.forwardRef(function({...u},t){return r.default.createElement("div",{ref:t,slot:"header",...u})});p.displayName="Layout.Header";const w=r.default.forwardRef(function({...u},t){return r.default.createElement("div",{ref:t,slot:"sidebar",...u})});w.displayName="Layout.Sidebar";const E=r.default.forwardRef(function({...u},t){return r.default.createElement("div",{ref:t,slot:"content",...u})});E.displayName="Layout.Content";const R=r.default.forwardRef(function({...u},t){return r.default.createElement("div",{ref:t,slot:"aside",...u})});R.displayName="Layout.Aside";const N=r.default.forwardRef(function({...u},t){return r.default.createElement("div",{ref:t,slot:"footer",...u})});N.displayName="Layout.Footer";const b=Object.assign(v,{Header:p,Sidebar:w,Content:E,Aside:R,Footer:N});b.displayName="Layout";exports.Layout=b;exports.default=b;
|
package/dist/Layout.esm.js
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
import r, { useRef as F, useEffect as A, useLayoutEffect as h } from "react";
|
|
2
|
-
const I = typeof window < "u" ? h : A,
|
|
2
|
+
const I = typeof window < "u" ? h : A, L = r.forwardRef(function({
|
|
3
3
|
children: o,
|
|
4
4
|
mode: t,
|
|
5
|
-
variant:
|
|
5
|
+
variant: u,
|
|
6
6
|
density: s,
|
|
7
|
-
maxWidth:
|
|
7
|
+
maxWidth: f,
|
|
8
8
|
sidebarSide: i,
|
|
9
|
-
collapsed:
|
|
10
|
-
headless:
|
|
9
|
+
collapsed: y,
|
|
10
|
+
headless: m,
|
|
11
11
|
sidebarWidth: l,
|
|
12
12
|
asideWidth: c,
|
|
13
13
|
onLayoutChange: n,
|
|
14
14
|
...N
|
|
15
15
|
}, H) {
|
|
16
|
-
const
|
|
17
|
-
return r.useImperativeHandle(H, () =>
|
|
18
|
-
const e =
|
|
16
|
+
const d = F(null);
|
|
17
|
+
return r.useImperativeHandle(H, () => d.current), A(() => {
|
|
18
|
+
const e = d.current;
|
|
19
19
|
if (!e)
|
|
20
20
|
return;
|
|
21
|
-
const
|
|
22
|
-
return e.addEventListener("layoutchange",
|
|
21
|
+
const b = () => n == null ? void 0 : n();
|
|
22
|
+
return e.addEventListener("layoutchange", b), () => e.removeEventListener("layoutchange", b);
|
|
23
23
|
}, [n]), I(() => {
|
|
24
|
-
const e =
|
|
25
|
-
e && (t && t !== "dashboard" ? e.setAttribute("mode", t) : e.removeAttribute("mode"),
|
|
26
|
-
}, [t,
|
|
24
|
+
const e = d.current;
|
|
25
|
+
e && (t && t !== "dashboard" ? e.setAttribute("mode", t) : e.removeAttribute("mode"), u && u !== "default" ? e.setAttribute("variant", u) : e.removeAttribute("variant"), s && s !== "default" ? e.setAttribute("density", s) : e.removeAttribute("density"), f ? e.setAttribute("max-width", f) : e.removeAttribute("max-width"), i && i !== "start" ? e.setAttribute("sidebar-side", i) : e.removeAttribute("sidebar-side"), y ? e.setAttribute("collapsed", "") : e.removeAttribute("collapsed"), m ? e.setAttribute("headless", "") : e.removeAttribute("headless"), l ? e.setAttribute("sidebar-width", l) : e.removeAttribute("sidebar-width"), c ? e.setAttribute("aside-width", c) : e.removeAttribute("aside-width"));
|
|
26
|
+
}, [t, u, s, f, i, y, m, l, c]), r.createElement("ui-layout", { ref: d, ...N }, o);
|
|
27
27
|
});
|
|
28
|
-
|
|
29
|
-
const
|
|
28
|
+
L.displayName = "Layout";
|
|
29
|
+
const v = r.forwardRef(
|
|
30
30
|
function({ ...o }, t) {
|
|
31
31
|
return r.createElement("div", { ref: t, slot: "header", ...o });
|
|
32
32
|
}
|
|
33
33
|
);
|
|
34
|
-
|
|
35
|
-
const
|
|
34
|
+
v.displayName = "Layout.Header";
|
|
35
|
+
const p = r.forwardRef(
|
|
36
36
|
function({ ...o }, t) {
|
|
37
37
|
return r.createElement("div", { ref: t, slot: "sidebar", ...o });
|
|
38
38
|
}
|
|
39
39
|
);
|
|
40
|
-
|
|
41
|
-
const
|
|
40
|
+
p.displayName = "Layout.Sidebar";
|
|
41
|
+
const w = r.forwardRef(
|
|
42
42
|
function({ ...o }, t) {
|
|
43
43
|
return r.createElement("div", { ref: t, slot: "content", ...o });
|
|
44
44
|
}
|
|
45
45
|
);
|
|
46
|
-
|
|
46
|
+
w.displayName = "Layout.Content";
|
|
47
47
|
const E = r.forwardRef(
|
|
48
48
|
function({ ...o }, t) {
|
|
49
49
|
return r.createElement("div", { ref: t, slot: "aside", ...o });
|
|
@@ -56,14 +56,15 @@ const R = r.forwardRef(
|
|
|
56
56
|
}
|
|
57
57
|
);
|
|
58
58
|
R.displayName = "Layout.Footer";
|
|
59
|
-
Object.assign(
|
|
60
|
-
Header:
|
|
61
|
-
Sidebar:
|
|
62
|
-
Content:
|
|
59
|
+
const _ = Object.assign(L, {
|
|
60
|
+
Header: v,
|
|
61
|
+
Sidebar: p,
|
|
62
|
+
Content: w,
|
|
63
63
|
Aside: E,
|
|
64
64
|
Footer: R
|
|
65
65
|
});
|
|
66
|
+
_.displayName = "Layout";
|
|
66
67
|
export {
|
|
67
|
-
|
|
68
|
-
|
|
68
|
+
_ as Layout,
|
|
69
|
+
_ as default
|
|
69
70
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("../Accordion.cjs.js");require("react");require("../_internals-b9f3e909.js");exports.Accordion=e.Accordion;
|
|
@@ -23,9 +23,14 @@ export interface AccordionTriggerProps extends React.ButtonHTMLAttributes<HTMLBu
|
|
|
23
23
|
}
|
|
24
24
|
export interface AccordionPanelProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
25
25
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
26
|
+
declare const AccordionItem: React.ForwardRefExoticComponent<AccordionItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
27
|
+
declare const AccordionTrigger: React.ForwardRefExoticComponent<AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
28
|
+
declare const AccordionPanel: React.ForwardRefExoticComponent<AccordionPanelProps & React.RefAttributes<HTMLDivElement>>;
|
|
29
|
+
declare const ComposedAccordion: React.ForwardRefExoticComponent<AccordionProps & React.RefAttributes<HTMLElement>> & {
|
|
30
|
+
Item: React.ForwardRefExoticComponent<AccordionItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
31
|
+
Trigger: React.ForwardRefExoticComponent<AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
32
|
+
Panel: React.ForwardRefExoticComponent<AccordionPanelProps & React.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
};
|
|
34
|
+
export { ComposedAccordion as Accordion, AccordionItem, AccordionTrigger, AccordionPanel };
|
|
35
|
+
export default ComposedAccordion;
|
|
31
36
|
//# sourceMappingURL=Accordion.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../src/components/Accordion.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,KAAK,SAAS,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;AAEnC,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,UAAU,CAAC;IACzF,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,CAAC;IACvE,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IAC5C,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,IAAI,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC7D,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,KAAK,CAAC,EAAE,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;IACtC,SAAS,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;IAChD,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC;IACrC,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC;CAC1C;AAED,MAAM,WAAW,kBAAmB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC9E,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,qBAAsB,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC;CAAG;AAE/F,MAAM,WAAW,mBAAoB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;CAAG;
|
|
1
|
+
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../src/components/Accordion.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,KAAK,SAAS,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;AAEnC,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,UAAU,CAAC;IACzF,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,CAAC;IACvE,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IAC5C,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,IAAI,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC7D,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,KAAK,CAAC,EAAE,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;IACtC,SAAS,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;IAChD,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC;IACrC,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC;CAC1C;AAED,MAAM,WAAW,kBAAmB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IAC9E,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,qBAAsB,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC;CAAG;AAE/F,MAAM,WAAW,mBAAoB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;CAAG;AAkFpF,QAAA,MAAM,aAAa,2FAajB,CAAC;AAIH,QAAA,MAAM,gBAAgB,iGAcpB,CAAC;AAIH,QAAA,MAAM,cAAc,4FAalB,CAAC;AAKH,QAAA,MAAM,iBAAiB;;;;CAIrB,CAAC;AAIH,OAAO,EAAE,iBAAiB,IAAI,SAAS,EAAE,aAAa,EAAE,gBAAgB,EAAE,cAAc,EAAE,CAAC;AAC3F,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("../Alert.cjs.js");require("react");exports.Alert=e.Alert;exports.AlertActions=e.AlertActions;exports.AlertDescription=e.AlertDescription;exports.AlertIcon=e.AlertIcon;exports.AlertTitle=e.AlertTitle;exports.default=e.Alert;
|
|
@@ -19,7 +19,7 @@ export interface AlertSectionProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
19
19
|
as?: keyof JSX.IntrinsicElements;
|
|
20
20
|
children?: React.ReactNode;
|
|
21
21
|
}
|
|
22
|
-
|
|
22
|
+
declare function Alert(props: AlertProps): React.DOMElement<{
|
|
23
23
|
defaultChecked?: boolean | undefined | undefined;
|
|
24
24
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
25
25
|
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
@@ -286,9 +286,17 @@ export declare function Alert(props: AlertProps): React.DOMElement<{
|
|
|
286
286
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLElement> | undefined;
|
|
287
287
|
ref: React.MutableRefObject<HTMLElement | null>;
|
|
288
288
|
}, HTMLElement>;
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
289
|
+
declare const AlertIcon: React.ForwardRefExoticComponent<AlertSectionProps & React.RefAttributes<HTMLElement>>;
|
|
290
|
+
declare const AlertTitle: React.ForwardRefExoticComponent<AlertSectionProps & React.RefAttributes<HTMLElement>>;
|
|
291
|
+
declare const AlertDescription: React.ForwardRefExoticComponent<AlertSectionProps & React.RefAttributes<HTMLElement>>;
|
|
292
|
+
declare const AlertActions: React.ForwardRefExoticComponent<AlertSectionProps & React.RefAttributes<HTMLElement>>;
|
|
293
|
+
declare const ComposedAlert: typeof Alert & {
|
|
294
|
+
Icon: typeof AlertIcon;
|
|
295
|
+
Title: typeof AlertTitle;
|
|
296
|
+
Description: typeof AlertDescription;
|
|
297
|
+
Actions: typeof AlertActions;
|
|
298
|
+
displayName: string;
|
|
299
|
+
};
|
|
300
|
+
export { ComposedAlert as Alert, AlertIcon, AlertTitle, AlertDescription, AlertActions };
|
|
301
|
+
export default ComposedAlert;
|
|
294
302
|
//# sourceMappingURL=Alert.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../src/components/Alert.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6C,MAAM,OAAO,CAAC;AAIlE,MAAM,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,SAAS,CAAC,GAAG;IAC5E,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC7D,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,CAAC;IACnD,MAAM,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC7B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IAC5C,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;IACpC,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAEF,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC;IAC1E,EAAE,CAAC,EAAE,MAAM,GAAG,CAAC,iBAAiB,CAAC;IACjC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,
|
|
1
|
+
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../src/components/Alert.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6C,MAAM,OAAO,CAAC;AAIlE,MAAM,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,SAAS,CAAC,GAAG;IAC5E,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC7D,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,CAAC;IACnD,MAAM,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC7B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IAC5C,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;IACpC,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAEF,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC;IAC1E,EAAE,CAAC,EAAE,MAAM,GAAG,CAAC,iBAAiB,CAAC;IACjC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,iBAAS,KAAK,CAAC,KAAK,EAAE,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAyE/B;AAuBD,QAAA,MAAM,SAAS,uFAAwE,CAAC;AACxF,QAAA,MAAM,UAAU,uFAA0E,CAAC;AAC3F,QAAA,MAAM,gBAAgB,uFAAwF,CAAC;AAC/G,QAAA,MAAM,YAAY,uFAAgF,CAAC;AAGnG,QAAA,MAAM,aAAa,EAMb,OAAO,KAAK,GAAG;IACnB,IAAI,EAAE,OAAO,SAAS,CAAC;IACvB,KAAK,EAAE,OAAO,UAAU,CAAC;IACzB,WAAW,EAAE,OAAO,gBAAgB,CAAC;IACrC,OAAO,EAAE,OAAO,YAAY,CAAC;IAC7B,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,OAAO,EAAE,aAAa,IAAI,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,gBAAgB,EAAE,YAAY,EAAE,CAAC;AACzF,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Alert as l, AlertActions as A, AlertDescription as o, AlertIcon as i, AlertTitle as c, Alert as n } from "../Alert.esm.js";
|
|
2
|
+
import "react";
|
|
3
|
+
export {
|
|
4
|
+
l as Alert,
|
|
5
|
+
A as AlertActions,
|
|
6
|
+
o as AlertDescription,
|
|
7
|
+
i as AlertIcon,
|
|
8
|
+
c as AlertTitle,
|
|
9
|
+
n as default
|
|
10
|
+
};
|
|
@@ -17,7 +17,12 @@ export type LayoutProps = React.HTMLAttributes<HTMLElement> & {
|
|
|
17
17
|
asideWidth?: string;
|
|
18
18
|
onLayoutChange?: () => void;
|
|
19
19
|
};
|
|
20
|
-
|
|
20
|
+
declare const LayoutHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
21
|
+
declare const LayoutSidebar: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
22
|
+
declare const LayoutContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
23
|
+
declare const LayoutAside: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
24
|
+
declare const LayoutFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
25
|
+
declare const ComposedLayout: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & {
|
|
21
26
|
children?: React.ReactNode;
|
|
22
27
|
mode?: LayoutMode;
|
|
23
28
|
variant?: LayoutVariant;
|
|
@@ -29,11 +34,13 @@ export declare const Layout: React.ForwardRefExoticComponent<React.HTMLAttribute
|
|
|
29
34
|
sidebarWidth?: string;
|
|
30
35
|
asideWidth?: string;
|
|
31
36
|
onLayoutChange?: () => void;
|
|
32
|
-
} & React.RefAttributes<HTMLElement
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
} & React.RefAttributes<HTMLElement>> & {
|
|
38
|
+
Header: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
39
|
+
Sidebar: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
40
|
+
Content: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
41
|
+
Aside: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
42
|
+
Footer: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
43
|
+
};
|
|
44
|
+
export { ComposedLayout as Layout, LayoutHeader, LayoutSidebar, LayoutContent, LayoutAside, LayoutFooter };
|
|
45
|
+
export default ComposedLayout;
|
|
39
46
|
//# sourceMappingURL=Layout.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../src/components/Layout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6C,MAAM,OAAO,CAAC;AAIlE,MAAM,MAAM,UAAU,GAAG,WAAW,GAAG,OAAO,GAAG,OAAO,CAAC;AACzD,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,GAAG,OAAO,GAAG,UAAU,CAAC;AACnF,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,SAAS,GAAG,aAAa,CAAC;AAClE,MAAM,MAAM,cAAc,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACvD,MAAM,MAAM,iBAAiB,GAAG,OAAO,GAAG,KAAK,CAAC;AAEhD,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,GAAG;IAC5D,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B,WAAW,CAAC,EAAE,iBAAiB,CAAC;IAChC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;CAC7B,CAAC;
|
|
1
|
+
{"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../src/components/Layout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6C,MAAM,OAAO,CAAC;AAIlE,MAAM,MAAM,UAAU,GAAG,WAAW,GAAG,OAAO,GAAG,OAAO,CAAC;AACzD,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,GAAG,OAAO,GAAG,UAAU,CAAC;AACnF,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,SAAS,GAAG,aAAa,CAAC;AAClE,MAAM,MAAM,cAAc,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACvD,MAAM,MAAM,iBAAiB,GAAG,OAAO,GAAG,KAAK,CAAC;AAEhD,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,GAAG;IAC5D,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B,WAAW,CAAC,EAAE,iBAAiB,CAAC;IAChC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;CAC7B,CAAC;AAmEF,QAAA,MAAM,YAAY,uGAIjB,CAAC;AAIF,QAAA,MAAM,aAAa,uGAIlB,CAAC;AAIF,QAAA,MAAM,aAAa,uGAIlB,CAAC;AAIF,QAAA,MAAM,WAAW,uGAIhB,CAAC;AAIF,QAAA,MAAM,YAAY,uGAIjB,CAAC;AAKF,QAAA,MAAM,cAAc;eAvHP,KAAK,CAAC,SAAS;WACnB,UAAU;cACP,aAAa;cACb,aAAa;eACZ,cAAc;kBACX,iBAAiB;gBACnB,OAAO;eACR,OAAO;mBACH,MAAM;iBACR,MAAM;qBACF,MAAM,IAAI;;;;;;;CAmH3B,CAAC;AAIH,OAAO,EAAE,cAAc,IAAI,MAAM,EAAE,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,WAAW,EAAE,YAAY,EAAE,CAAC;AAC3G,eAAe,cAAc,CAAC"}
|