@nqlib/nqui 0.4.6 → 0.4.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/INSTALLATION.md +27 -23
- package/README.md +23 -19
- package/dist/{command-palette-MHc03bBf.cjs → command-palette-DSQYbRiH.cjs} +2 -2
- package/dist/{command-palette-DCtLpM3Q.js → command-palette-D_SFxXyQ.js} +47 -50
- package/dist/command.cjs.js +1 -1
- package/dist/command.es.js +1 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/ui/combobox.d.ts +63 -18
- package/dist/components/ui/combobox.d.ts.map +1 -1
- package/dist/components/ui/command.d.ts +9 -1
- package/dist/components/ui/command.d.ts.map +1 -1
- package/dist/{debug-panel-pg39-6xw.js → debug-panel-CS_wuYVH.js} +44 -40
- package/dist/{debug-panel-CNKk-No5.cjs → debug-panel-nDTrIh9s.cjs} +6 -6
- package/dist/debug.cjs.js +1 -1
- package/dist/debug.es.js +1 -1
- package/dist/nqui.cjs.js +13 -13
- package/dist/nqui.es.js +3615 -3266
- package/dist/styles.css +3 -2
- package/docs/components/nqui-card.md +1 -1
- package/docs/components/nqui-combobox.md +75 -11
- package/docs/nqui-skills/design-system.md +2 -0
- package/package.json +1 -7
- package/scripts/generate-docs.js +3 -1
- package/scripts/peer-deps.js +0 -1
- package/docs/internal-notes/APP_BUILDER_PACKAGE.md +0 -86
- package/docs/internal-notes/BUILD_VERIFICATION.md +0 -174
- package/docs/internal-notes/DASHBOARD_LAYOUT_DESIGN.md +0 -1429
- package/docs/internal-notes/FROSTED_GLASS_FIX.md +0 -50
- package/docs/internal-notes/INSTALLATION.md +0 -274
- package/docs/internal-notes/PEER_DEPENDENCIES.md +0 -105
- package/docs/internal-notes/PUBLISHING.md +0 -411
- package/docs/internal-notes/SKILLS-ARCHITECTURE.md +0 -105
- package/docs/internal-notes/layoutdesign.md +0 -616
- package/docs/internal-notes/progress.md +0 -348
- package/docs/internal-notes/stacked-avatar-implementation.md +0 -38
package/INSTALLATION.md
CHANGED
|
@@ -10,12 +10,12 @@ When you add `@nqlib/nqui` to a project and run `npm install` (or pnpm/yarn/bun)
|
|
|
10
10
|
|
|
11
11
|
1. **Postinstall script** runs: `node scripts/post-install.js` (same as `npx @nqlib/nqui setup`).
|
|
12
12
|
2. **Behavior:**
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
- If your project has a `package.json` and no `nqui:init` script, a `**nqui:init`** script is added to run the full setup in one command.
|
|
14
|
+
- **Cursor rules** are written into your project’s `.cursor/` directory:
|
|
15
|
+
- `.cursor/rules/nqui-components.mdc`
|
|
16
|
+
- `.cursor/skills/nqui-install/`
|
|
17
|
+
- `.cursor/skills/nqui-components/`
|
|
18
|
+
- A **next-steps message** is printed (run `npx nqui-setup` anytime to see it again).
|
|
19
19
|
3. **Not done on install:** Peer packages are not installed, `.cursor/nqui-skills/` is not created, and CSS is not set up. Run the full setup (see below) for that.
|
|
20
20
|
4. **CI:** Postinstall is skipped when `CI=true` or `CI=1`.
|
|
21
21
|
|
|
@@ -25,16 +25,18 @@ When you add `@nqlib/nqui` to a project and run `npm install` (or pnpm/yarn/bun)
|
|
|
25
25
|
|
|
26
26
|
All commands are run from your **project root** (where `package.json` lives).
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
|
31
|
-
| `npx @nqlib/nqui
|
|
32
|
-
| `npx @nqlib/nqui
|
|
33
|
-
| `npx @nqlib/nqui init-
|
|
34
|
-
| `npx @nqlib/nqui init-
|
|
35
|
-
| `npx @nqlib/nqui
|
|
36
|
-
| `npx @nqlib/nqui
|
|
37
|
-
| `
|
|
28
|
+
|
|
29
|
+
| Command | Description |
|
|
30
|
+
| ----------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
31
|
+
| `npx @nqlib/nqui setup` | Re-run postinstall: print next steps and write Cursor rules (no peers/skills/CSS). Same as `npx nqui-setup`. |
|
|
32
|
+
| `npx @nqlib/nqui install-peers` | Install `@nqlib/nqui` and all required + optional peer dependencies (icons, cmdk, dnd-kit, etc.). |
|
|
33
|
+
| `npx @nqlib/nqui init-cursor` | Write `.cursor/rules` and `.cursor/skills`, and **download nqui-skills** (copy `docs/nqui-skills` → `.cursor/nqui-skills`, create `AGENTS.md`). |
|
|
34
|
+
| `npx @nqlib/nqui init-skills` | Only download skills: copy to `.cursor/nqui-skills`, (re)create `AGENTS.md`. Use `--force` to overwrite. |
|
|
35
|
+
| `npx @nqlib/nqui init-css` | Detect framework, create `nqui/index.css` and `nqui/nqui-setup.css`, optionally copy example layouts. Options: `--sidebar`, `--force`, `--wizard`. |
|
|
36
|
+
| `npx @nqlib/nqui` *(no args)* | Runs **init-css** with default output `nqui/index.css`. |
|
|
37
|
+
| `npx @nqlib/nqui init-debug` / `init-debug-css` | Initialize debug CSS for `DebugPanel`. |
|
|
38
|
+
| `npm run nqui:init` | One-shot full setup (only after install added the script): install-peers → init-cursor → init-skills → init-css --sidebar --force. |
|
|
39
|
+
|
|
38
40
|
|
|
39
41
|
**Monorepos:** Cursor rules and skills are written to the package that has `@nqlib/nqui` in `node_modules` or in its `package.json`. Open that package folder in Cursor for skills to resolve.
|
|
40
42
|
|
|
@@ -115,11 +117,13 @@ Creates:
|
|
|
115
117
|
|
|
116
118
|
Add the nqui import to your **main CSS file**:
|
|
117
119
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
+
|
|
121
|
+
| Framework | Main CSS file |
|
|
122
|
+
| --------- | ----------------- |
|
|
120
123
|
| Next.js | `app/globals.css` |
|
|
121
|
-
| Vite | `src/index.css`
|
|
122
|
-
| Remix | `app/root.css`
|
|
124
|
+
| Vite | `src/index.css` |
|
|
125
|
+
| Remix | `app/root.css` |
|
|
126
|
+
|
|
123
127
|
|
|
124
128
|
**Option A (recommended):** After `@import "tailwindcss"`:
|
|
125
129
|
|
|
@@ -131,7 +135,7 @@ Add the nqui import to your **main CSS file**:
|
|
|
131
135
|
|
|
132
136
|
### 2c. Vite + Tailwind v4
|
|
133
137
|
|
|
134
|
-
With `@tailwindcss/vite`, Tailwind usually scans your app files automatically. If **components look unstyled**, **spacing or button classes from `@nqlib/nqui` are missing**, or utilities used only inside the installed package do not appear in CSS, add these
|
|
138
|
+
With `@tailwindcss/vite`, Tailwind usually scans your app files automatically. If **components look unstyled**, **spacing or button classes from `@nqlib/nqui` are missing**, or utilities used only inside the installed package do not appear in CSS, add these `**@source` lines after** `@import "@nqlib/nqui/styles";` in your main stylesheet (paths are relative to that CSS file — adjust if your entry is not `src/index.css`):
|
|
135
139
|
|
|
136
140
|
```css
|
|
137
141
|
@import "@nqlib/nqui/styles";
|
|
@@ -222,7 +226,7 @@ Your main CSS is missing the nqui import. Add `@import "@nqlib/nqui/styles";` or
|
|
|
222
226
|
**Vite: broken layout, missing spacing, or button styles**
|
|
223
227
|
|
|
224
228
|
1. Confirm `@import "@nqlib/nqui/styles";` is present and `@tailwindcss/vite` is in `vite.config.ts`.
|
|
225
|
-
2. Add the
|
|
229
|
+
2. Add the `**@source` directives** from [§2c Vite + Tailwind v4](#2c-vite--tailwind-v4) so Tailwind scans your app and `node_modules/@nqlib/nqui/dist`.
|
|
226
230
|
|
|
227
231
|
**Debug Panel not showing**
|
|
228
232
|
|
|
@@ -231,4 +235,4 @@ Your main CSS is missing the nqui import. Add `@import "@nqlib/nqui/styles";` or
|
|
|
231
235
|
|
|
232
236
|
**Package name**
|
|
233
237
|
|
|
234
|
-
Use `@nqlib/nqui` (the published package name).
|
|
238
|
+
Use `@nqlib/nqui` (the published package name).
|
package/README.md
CHANGED
|
@@ -32,11 +32,13 @@ npx @nqlib/nqui install-peers
|
|
|
32
32
|
|
|
33
33
|
Copy the library’s **skills** into your app so your IDE can follow nqui patterns (components, design system, ToggleGroup rules, etc.):
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
|
38
|
-
| `npx @nqlib/nqui init-
|
|
39
|
-
| `
|
|
35
|
+
|
|
36
|
+
| Command | What it does |
|
|
37
|
+
| ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
38
|
+
| `npx @nqlib/nqui init-cursor` | Writes `.cursor/rules` and `.cursor/skills`, copies `**docs/nqui-skills`** → `**.cursor/nqui-skills**`, and creates `**AGENTS.md**` at the project root pointing agents at `.cursor/nqui-skills/SKILL.md`. |
|
|
39
|
+
| `npx @nqlib/nqui init-skills` | **Skills only:** copies nqui-skills to `.cursor/nqui-skills/` and (re)creates `AGENTS.md`. Use `--force` to overwrite existing files. |
|
|
40
|
+
| `npm run nqui:init` | **One-shot** (if post-install added this script): `install-peers` → `init-cursor` → `init-skills` → `init-css --sidebar --force`. You still add the CSS import to your main stylesheet (see [INSTALLATION.md](./INSTALLATION.md)). |
|
|
41
|
+
|
|
40
42
|
|
|
41
43
|
After copying skills, **restart the IDE** so rules and skills reload.
|
|
42
44
|
|
|
@@ -48,15 +50,17 @@ After copying skills, **restart the IDE** so rules and skills reload.
|
|
|
48
50
|
|
|
49
51
|
Run from your **app project root** (where `package.json` lives). Equivalent **global bins** (when the package is installed): `nqui`, `nqui-setup`, `nqui-install-peers`, `nqui-init-cursor`, `nqui-init-skills`, `nqui-init-css`, `nqui-init-debug`.
|
|
50
52
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
|
54
|
-
| `npx @nqlib/nqui
|
|
55
|
-
| `npx @nqlib/nqui
|
|
56
|
-
| `npx @nqlib/nqui init-
|
|
57
|
-
| `npx @nqlib/nqui init-
|
|
58
|
-
| `npx @nqlib/nqui`
|
|
59
|
-
| `npx @nqlib/nqui
|
|
53
|
+
|
|
54
|
+
| Command | Description |
|
|
55
|
+
| ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
56
|
+
| `npx @nqlib/nqui setup` | Re-run post-install: next steps + Cursor rules (not full skills/CSS). Same as `npx nqui-setup`. |
|
|
57
|
+
| `npx @nqlib/nqui install-peers` | Install `@nqlib/nqui` and required + optional peer dependencies. |
|
|
58
|
+
| `npx @nqlib/nqui init-cursor` | Cursor rules + **nqui-skills** → `.cursor/nqui-skills/` + `AGENTS.md`. |
|
|
59
|
+
| `npx @nqlib/nqui init-skills` | Copy nqui-skills only; `--force` to overwrite. |
|
|
60
|
+
| `npx @nqlib/nqui init-css` | Detect framework; create `nqui/index.css` and `nqui/nqui-setup.css`. Flags: `--sidebar`, `--force`, `--wizard`. Optional output path, e.g. `npx @nqlib/nqui init-css app/styles/nqui.css`. |
|
|
61
|
+
| `npx @nqlib/nqui` | No args → same as **init-css** (default `nqui/index.css`). |
|
|
62
|
+
| `npx @nqlib/nqui init-debug` or `init-debug-css` | Scaffold CSS for `DebugPanel`. |
|
|
63
|
+
|
|
60
64
|
|
|
61
65
|
---
|
|
62
66
|
|
|
@@ -105,7 +109,7 @@ npx @nqlib/nqui init-css --sidebar
|
|
|
105
109
|
@import "@nqlib/nqui/styles";
|
|
106
110
|
```
|
|
107
111
|
|
|
108
|
-
|
|
112
|
+
1. **Use components:**
|
|
109
113
|
|
|
110
114
|
```tsx
|
|
111
115
|
"use client";
|
|
@@ -148,7 +152,7 @@ See [Troubleshooting](#troubleshooting).
|
|
|
148
152
|
|
|
149
153
|
Vite with `@tailwindcss/vite` often works without `@source`; add the block above when utilities from the package do not show up in CSS.
|
|
150
154
|
|
|
151
|
-
|
|
155
|
+
1. **Components:**
|
|
152
156
|
|
|
153
157
|
```tsx
|
|
154
158
|
import { Button } from '@nqlib/nqui';
|
|
@@ -213,7 +217,7 @@ function App() {
|
|
|
213
217
|
|
|
214
218
|
## Component instructions
|
|
215
219
|
|
|
216
|
-
Guides for each component live under `docs/components/` in the package (after install: `node_modules/@nqlib/nqui/docs/components/`). Use
|
|
220
|
+
Guides for each component live under `docs/components/` in the package (after install: `node_modules/@nqlib/nqui/docs/components/`). Use `**npx @nqlib/nqui init-skills**` (or `init-cursor`) so your IDE loads `.cursor/nqui-skills` and `AGENTS.md`.
|
|
217
221
|
|
|
218
222
|
### Examples
|
|
219
223
|
|
|
@@ -316,8 +320,8 @@ npm run publish:npm
|
|
|
316
320
|
|
|
317
321
|
GitHub Packages: `npm run publish:github`. Both: `npm run publish:both`.
|
|
318
322
|
|
|
319
|
-
Details: [
|
|
323
|
+
Details: [internal-notes/PUBLISHING.md](./internal-notes/PUBLISHING.md).
|
|
320
324
|
|
|
321
325
|
## License
|
|
322
326
|
|
|
323
|
-
MIT
|
|
327
|
+
MIT
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
"use strict";const o=require("react/jsx-runtime"),
|
|
1
|
+
"use strict";const o=require("react/jsx-runtime"),me=require("react"),x=require("cmdk"),d=require("./utils-IjLH3w2e.cjs"),N=require("./button-R304rhsj.cjs"),I=require("@hugeicons/react"),_=require("@hugeicons/core-free-icons"),i=require("./index-CI756mSv.cjs"),fe=require("@radix-ui/react-slot"),O=require("class-variance-authority"),j=require("./keyboard-BapbM2wb.cjs");function xe(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const n in e)if(n!=="default"){const a=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,a.get?a:{enumerable:!0,get:()=>e[n]})}}return t.default=e,Object.freeze(t)}const l=xe(me);var D="Dialog",[T,he]=i.createContextScope(D),[ve,p]=T(D),S=e=>{const{__scopeDialog:t,children:n,open:a,defaultOpen:s,onOpenChange:r,modal:u=!0}=e,c=l.useRef(null),m=l.useRef(null),[h,g]=i.useControllableState({prop:a,defaultProp:s??!1,onChange:r,caller:D});return o.jsx(ve,{scope:t,triggerRef:c,contentRef:m,contentId:i.useId(),titleId:i.useId(),descriptionId:i.useId(),open:h,onOpenChange:g,onOpenToggle:l.useCallback(()=>g(v=>!v),[g]),modal:u,children:n})};S.displayName=D;var A="DialogTrigger",G=l.forwardRef((e,t)=>{const{__scopeDialog:n,...a}=e,s=p(A,n),r=i.useComposedRefs(t,s.triggerRef);return o.jsx(i.Primitive.button,{type:"button","aria-haspopup":"dialog","aria-expanded":s.open,"aria-controls":s.contentId,"data-state":w(s.open),...a,ref:r,onClick:i.composeEventHandlers(e.onClick,s.onOpenToggle)})});G.displayName=A;var k="DialogPortal",[be,M]=T(k,{forceMount:void 0}),z=e=>{const{__scopeDialog:t,forceMount:n,children:a,container:s}=e,r=p(k,t);return o.jsx(be,{scope:t,forceMount:n,children:l.Children.map(a,u=>o.jsx(i.Presence,{present:n||r.open,children:o.jsx(i.Portal,{asChild:!0,container:s,children:u})}))})};z.displayName=k;var C="DialogOverlay",F=l.forwardRef((e,t)=>{const n=M(C,e.__scopeDialog),{forceMount:a=n.forceMount,...s}=e,r=p(C,e.__scopeDialog);return r.modal?o.jsx(i.Presence,{present:a||r.open,children:o.jsx(De,{...s,ref:t})}):null});F.displayName=C;var Ce=fe.createSlot("DialogOverlay.RemoveScroll"),De=l.forwardRef((e,t)=>{const{__scopeDialog:n,...a}=e,s=p(C,n);return o.jsx(i.ReactRemoveScroll,{as:Ce,allowPinchZoom:!0,shards:[s.contentRef],children:o.jsx(i.Primitive.div,{"data-state":w(s.open),...a,ref:t,style:{pointerEvents:"auto",...a.style}})})}),f="DialogContent",W=l.forwardRef((e,t)=>{const n=M(f,e.__scopeDialog),{forceMount:a=n.forceMount,...s}=e,r=p(f,e.__scopeDialog);return o.jsx(i.Presence,{present:a||r.open,children:r.modal?o.jsx(ye,{...s,ref:t}):o.jsx(je,{...s,ref:t})})});W.displayName=f;var ye=l.forwardRef((e,t)=>{const n=p(f,e.__scopeDialog),a=l.useRef(null),s=i.useComposedRefs(t,n.contentRef,a);return l.useEffect(()=>{const r=a.current;if(r)return i.hideOthers(r)},[]),o.jsx(L,{...e,ref:s,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:i.composeEventHandlers(e.onCloseAutoFocus,r=>{r.preventDefault(),n.triggerRef.current?.focus()}),onPointerDownOutside:i.composeEventHandlers(e.onPointerDownOutside,r=>{const u=r.detail.originalEvent,c=u.button===0&&u.ctrlKey===!0;(u.button===2||c)&&r.preventDefault()}),onFocusOutside:i.composeEventHandlers(e.onFocusOutside,r=>r.preventDefault())})}),je=l.forwardRef((e,t)=>{const n=p(f,e.__scopeDialog),a=l.useRef(!1),s=l.useRef(!1);return o.jsx(L,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:r=>{e.onCloseAutoFocus?.(r),r.defaultPrevented||(a.current||n.triggerRef.current?.focus(),r.preventDefault()),a.current=!1,s.current=!1},onInteractOutside:r=>{e.onInteractOutside?.(r),r.defaultPrevented||(a.current=!0,r.detail.originalEvent.type==="pointerdown"&&(s.current=!0));const u=r.target;n.triggerRef.current?.contains(u)&&r.preventDefault(),r.detail.originalEvent.type==="focusin"&&s.current&&r.preventDefault()}})}),L=l.forwardRef((e,t)=>{const{__scopeDialog:n,trapFocus:a,onOpenAutoFocus:s,onCloseAutoFocus:r,...u}=e,c=p(f,n),m=l.useRef(null),h=i.useComposedRefs(t,m);return i.useFocusGuards(),o.jsxs(o.Fragment,{children:[o.jsx(i.FocusScope,{asChild:!0,loop:!0,trapped:a,onMountAutoFocus:s,onUnmountAutoFocus:r,children:o.jsx(i.DismissableLayer,{role:"dialog",id:c.contentId,"aria-describedby":c.descriptionId,"aria-labelledby":c.titleId,"data-state":w(c.open),...u,ref:h,onDismiss:()=>c.onOpenChange(!1)})}),o.jsxs(o.Fragment,{children:[o.jsx(Ie,{titleId:c.titleId}),o.jsx(ke,{contentRef:m,descriptionId:c.descriptionId})]})]})}),R="DialogTitle",$=l.forwardRef((e,t)=>{const{__scopeDialog:n,...a}=e,s=p(R,n);return o.jsx(i.Primitive.h2,{id:s.titleId,...a,ref:t})});$.displayName=R;var q="DialogDescription",H=l.forwardRef((e,t)=>{const{__scopeDialog:n,...a}=e,s=p(q,n);return o.jsx(i.Primitive.p,{id:s.descriptionId,...a,ref:t})});H.displayName=q;var B="DialogClose",V=l.forwardRef((e,t)=>{const{__scopeDialog:n,...a}=e,s=p(B,n);return o.jsx(i.Primitive.button,{type:"button",...a,ref:t,onClick:i.composeEventHandlers(e.onClick,()=>s.onOpenChange(!1))})});V.displayName=B;function w(e){return e?"open":"closed"}var K="DialogTitleWarning",[Ne,U]=i.createContext2(K,{contentName:f,titleName:R,docsSlug:"dialog"}),Ie=({titleId:e})=>{const t=U(K),n=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
|
|
2
2
|
|
|
3
3
|
If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
|
|
4
4
|
|
|
5
|
-
For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return l.useEffect(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},Ne="DialogDescriptionWarning",_e=({contentRef:e,descriptionId:t})=>{const a=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${U(Ne).contentName}}.`;return l.useEffect(()=>{const s=e.current?.getAttribute("aria-describedby");t&&s&&(document.getElementById(t)||console.warn(a))},[a,e,t]),null},Y=S,Z=G,J=z,Q=F,X=W,ee=q,te=H,y=V;function oe({...e}){return o.jsx(Y,{"data-slot":"dialog",...e})}function ke({...e}){return o.jsx(Z,{"data-slot":"dialog-trigger",...e})}function ne({...e}){return o.jsx(J,{"data-slot":"dialog-portal",...e})}function Re({...e}){return o.jsx(y,{"data-slot":"dialog-close",...e})}function ae({className:e,...t}){return o.jsx(Q,{"data-slot":"dialog-overlay",className:d.cn("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 bg-black/80 duration-100 supports-backdrop-filter:backdrop-blur-xs fixed inset-0 isolate z-[var(--z-modal-backdrop)]",e),...t})}function re({className:e,children:t,showCloseButton:n=!0,...a}){return o.jsxs(ne,{children:[o.jsx(ae,{}),o.jsxs(X,{"data-slot":"dialog-content",className:d.cn("bg-background data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 ring-foreground/10 grid max-w-[calc(100%-2rem)] gap-4 rounded-xl p-4 text-xs ring-1 duration-100 sm:max-w-sm fixed top-1/2 left-1/2 z-[var(--z-modal)] w-full -translate-x-1/2 -translate-y-1/2",e),...a,children:[t,n&&o.jsx(y,{"data-slot":"dialog-close",asChild:!0,children:o.jsxs(I.Button,{variant:"ghost",className:"absolute top-2 right-2",size:"icon",children:[o.jsx(N.HugeiconsIcon,{icon:_.Cancel01Icon,strokeWidth:2}),o.jsx("span",{className:"sr-only",children:"Close"})]})})]})]})}function se({className:e,...t}){return o.jsx("div",{"data-slot":"dialog-header",className:d.cn("gap-1 flex flex-col",e),...t})}function we({className:e,showCloseButton:t=!1,children:n,...a}){return o.jsxs("div",{"data-slot":"dialog-footer",className:d.cn("gap-2 flex flex-col-reverse gap-2 sm:flex-row sm:justify-end",e),...a,children:[n,t&&o.jsx(y,{asChild:!0,children:o.jsx(I.Button,{variant:"outline",children:"Close"})})]})}function ie({className:e,...t}){return o.jsx(ee,{"data-slot":"dialog-title",className:d.cn("text-sm font-medium",e),...t})}function le({className:e,...t}){return o.jsx(te,{"data-slot":"dialog-description",className:d.cn("text-muted-foreground *:[a]:hover:text-foreground text-xs *:[a]:underline *:[a]:underline-offset-3",e),...t})}function de({className:e,...t}){return o.jsx("div",{"data-slot":"input-group",role:"group",className:d.cn("border-input dark:bg-input/30 has-[[data-slot=input-group-control]:focus-visible]:border-ring has-[[data-slot=input-group-control]:focus-visible]:ring-ring/50 has-[[data-slot][aria-invalid=true]]:ring-destructive/20 has-[[data-slot][aria-invalid=true]]:border-destructive dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 has-disabled:bg-input/50 dark:has-disabled:bg-input/80 h-8 rounded-lg border transition-colors in-data-[slot=combobox-content]:focus-within:border-inherit in-data-[slot=combobox-content]:focus-within:ring-0 has-disabled:opacity-50 has-[[data-slot=input-group-control]:focus-visible]:ring-3 has-[[data-slot][aria-invalid=true]]:ring-3 has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=inline-start]]:[&>input]:pl-1.5 group/input-group relative flex w-full min-w-0 items-center outline-none has-[>textarea]:h-auto",e),...t})}const Pe=O.cva("text-muted-foreground h-auto gap-2 py-1.5 text-sm font-medium group-data-[disabled=true]/input-group:opacity-50 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>svg:not([class*='size-'])]:size-4 flex cursor-text items-center justify-center select-none",{variants:{align:{"inline-start":"pl-2 has-[>button]:ml-[-0.3rem] has-[>kbd]:ml-[-0.15rem] order-first","inline-end":"pr-2 has-[>button]:mr-[-0.3rem] has-[>kbd]:mr-[-0.15rem] order-last","block-start":"px-2.5 pt-2 group-has-[>input]/input-group:pt-2 [.border-b]:pb-2 order-first w-full justify-start","block-end":"px-2.5 pb-2 group-has-[>input]/input-group:pb-2 [.border-t]:pt-2 order-last w-full justify-start"}},defaultVariants:{align:"inline-start"}});function ce({className:e,align:t="inline-start",...n}){return o.jsx("div",{role:"group","data-slot":"input-group-addon","data-align":t,className:d.cn(Pe({align:t}),e),onClick:a=>{a.target.closest("button")||a.currentTarget.parentElement?.querySelector("input")?.focus()},...n})}const Ee=O.cva("gap-2 text-sm flex items-center shadow-none",{variants:{size:{xs:"h-6 gap-1 rounded-[calc(var(--radius)-3px)] px-1.5 [&>svg:not([class*='size-'])]:size-3.5",sm:"","icon-xs":"size-6 rounded-[calc(var(--radius)-3px)] p-0 has-[>svg]:p-0","icon-sm":"size-8 p-0 has-[>svg]:p-0"}},defaultVariants:{size:"xs"}});function Oe({className:e,type:t="button",variant:n="ghost",size:a="xs",...s}){return o.jsx(I.Button,{type:t,"data-size":a,variant:n,className:d.cn(Ee({size:a}),e),...s})}function Te({className:e,...t}){return o.jsx("span",{className:d.cn("text-muted-foreground gap-2 text-sm [&_svg:not([class*='size-'])]:size-4 flex items-center [&_svg]:pointer-events-none",e),...t})}function Se({className:e,...t}){return o.jsx("input",{"data-slot":"input-group-control",className:d.cn("flex h-7 w-full rounded-none border-0 bg-transparent px-3 py-1.5 text-sm shadow-none ring-0 outline-none file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:ring-0 focus-visible:ring-offset-0 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent dark:placeholder:text-muted-foreground/70 flex-1",e),...t})}function Ae({className:e,...t}){return o.jsx("textarea",{"data-slot":"input-group-control",className:d.cn("flex h-auto w-full min-h-[2.5rem] rounded-none resize-none border-0 bg-transparent px-3 py-1.5 text-sm shadow-none ring-0 outline-none placeholder:text-muted-foreground focus-visible:ring-0 focus-visible:ring-offset-0 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent dark:placeholder:text-muted-foreground/70",e),...t})}function ue({className:e,...t}){return o.jsx(x.Command,{"data-slot":"command",className:d.cn("bg-popover text-popover-foreground rounded-xl p-1 flex size-full flex-col overflow-hidden",e),...t})}function pe({title:e="Command Palette",description:t="Search for a command to run...",children:n,className:a,showCloseButton:s=!1,...r}){return o.jsxs(oe,{...r,children:[o.jsxs(se,{className:"sr-only",children:[o.jsx(ie,{children:e}),o.jsx(le,{children:t})]}),o.jsx(re,{className:d.cn("rounded-xl! p-0 overflow-hidden p-0",a),showCloseButton:s,children:n})]})}function Ge({className:e,...t}){return o.jsx("div",{"data-slot":"command-input-wrapper",className:"p-1 pb-0",children:o.jsxs(de,{className:"bg-input/20 dark:bg-input/30",children:[o.jsx(x.Command.Input,{"data-slot":"command-input",className:d.cn("w-full text-xs outline-hidden disabled:cursor-not-allowed disabled:opacity-50",e),...t}),o.jsx(ce,{children:o.jsx(N.HugeiconsIcon,{icon:_.SearchIcon,strokeWidth:2,className:"size-3.5 shrink-0 opacity-50"})})]})})}function Me({className:e,...t}){return o.jsx(x.Command.List,{"data-slot":"command-list",className:d.cn("no-scrollbar max-h-72 scroll-py-1 outline-none overflow-x-hidden overflow-y-auto",e),...t})}function ze({className:e,...t}){return o.jsx(x.Command.Empty,{"data-slot":"command-empty",className:d.cn("py-6 text-center text-xs",e),...t})}function Fe({className:e,...t}){return o.jsx(x.Command.Group,{"data-slot":"command-group",className:d.cn("text-foreground [&_[cmdk-group-heading]]:text-muted-foreground overflow-hidden p-1 [&_[cmdk-group-heading]]:px-2.5 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium",e),...t})}function We({className:e,...t}){return o.jsx(x.Command.Separator,{"data-slot":"command-separator",className:d.cn("bg-border/50 -mx-1 my-1 h-px",e),...t})}function $e({className:e,children:t,...n}){return o.jsxs(x.Command.Item,{"data-slot":"command-item",className:d.cn("data-selected:bg-muted data-selected:text-foreground data-selected:*:[svg]:text-foreground relative flex min-h-7 cursor-default items-center gap-2 rounded-md px-2.5 py-1.5 text-xs outline-hidden select-none [&_svg:not([class*='size-'])]:size-3.5 [[data-slot=dialog-content]_&]:rounded-md group/command-item data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",e),...n,children:[t,o.jsx(N.HugeiconsIcon,{icon:_.Tick02Icon,strokeWidth:2,className:"ml-auto opacity-0 group-has-[[data-slot=command-shortcut]]/command-item:hidden group-data-[checked=true]/command-item:opacity-100"})]})}function qe({className:e,...t}){return o.jsx("span",{"data-slot":"command-shortcut",className:d.cn("text-muted-foreground group-data-selected/command-item:text-foreground ml-auto text-[0.625rem] tracking-widest",e),...t})}function Le({title:e="Command Palette",description:t="Search for a command to run...",shortcutEnabled:n=!0,open:a,onOpenChange:s,children:r,...u}){const[c,m]=l.useState(!1),h=a!==void 0,g=h?a:c,v=h?s:m,P=l.useRef(g);return l.useEffect(()=>{P.current=g},[g]),l.useEffect(()=>{if(!n)return;const E=b=>{j.shouldIgnoreKeyboardShortcut(b.target)||b.key===j.SHORTCUT_KEYS.commandPalette&&j.isMod(b)&&(b.preventDefault(),v?.(!P.current))};return window.addEventListener("keydown",E),()=>window.removeEventListener("keydown",E)},[n,v]),o.jsx(pe,{...u,title:e,description:t,open:g,onOpenChange:v,children:o.jsx(ue,{children:r})})}exports.Close=y;exports.Command=ue;exports.CommandDialog=pe;exports.CommandEmpty=ze;exports.CommandGroup=Fe;exports.CommandInput=Ge;exports.CommandItem=$e;exports.CommandList=Me;exports.CommandPalette=Le;exports.CommandSeparator=We;exports.CommandShortcut=qe;exports.Content=X;exports.Description=te;exports.Dialog=oe;exports.DialogClose=Re;exports.DialogContent=re;exports.DialogDescription=le;exports.DialogFooter=we;exports.DialogHeader=se;exports.DialogOverlay=ae;exports.DialogPortal=ne;exports.DialogTitle=ie;exports.DialogTrigger=ke;exports.InputGroup=de;exports.InputGroupAddon=ce;exports.InputGroupButton=Oe;exports.InputGroupInput=Se;exports.InputGroupText=Te;exports.InputGroupTextarea=Ae;exports.Overlay=Q;exports.Portal=J;exports.Root=Y;exports.Title=ee;exports.Trigger=Z;exports.WarningProvider=je;exports.createDialogScope=xe;
|
|
5
|
+
For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return l.useEffect(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},_e="DialogDescriptionWarning",ke=({contentRef:e,descriptionId:t})=>{const a=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${U(_e).contentName}}.`;return l.useEffect(()=>{const s=e.current?.getAttribute("aria-describedby");t&&s&&(document.getElementById(t)||console.warn(a))},[a,e,t]),null},Y=S,Z=G,J=z,Q=F,X=W,ee=$,te=H,y=V;function oe({...e}){return o.jsx(Y,{"data-slot":"dialog",...e})}function Re({...e}){return o.jsx(Z,{"data-slot":"dialog-trigger",...e})}function ne({...e}){return o.jsx(J,{"data-slot":"dialog-portal",...e})}function we({...e}){return o.jsx(y,{"data-slot":"dialog-close",...e})}function ae({className:e,...t}){return o.jsx(Q,{"data-slot":"dialog-overlay",className:d.cn("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 bg-black/80 duration-100 supports-backdrop-filter:backdrop-blur-xs fixed inset-0 isolate z-[var(--z-modal-backdrop)]",e),...t})}function re({className:e,children:t,showCloseButton:n=!0,...a}){return o.jsxs(ne,{children:[o.jsx(ae,{}),o.jsxs(X,{"data-slot":"dialog-content",className:d.cn("bg-background data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 ring-foreground/10 grid max-w-[calc(100%-2rem)] gap-4 rounded-xl p-4 text-xs ring-1 duration-100 sm:max-w-sm fixed top-1/2 left-1/2 z-[var(--z-modal)] w-full -translate-x-1/2 -translate-y-1/2",e),...a,children:[t,n&&o.jsx(y,{"data-slot":"dialog-close",asChild:!0,children:o.jsxs(N.Button,{variant:"ghost",className:"absolute top-2 right-2",size:"icon",children:[o.jsx(I.HugeiconsIcon,{icon:_.Cancel01Icon,strokeWidth:2}),o.jsx("span",{className:"sr-only",children:"Close"})]})})]})]})}function se({className:e,...t}){return o.jsx("div",{"data-slot":"dialog-header",className:d.cn("gap-1 flex flex-col",e),...t})}function Pe({className:e,showCloseButton:t=!1,children:n,...a}){return o.jsxs("div",{"data-slot":"dialog-footer",className:d.cn("gap-2 flex flex-col-reverse gap-2 sm:flex-row sm:justify-end",e),...a,children:[n,t&&o.jsx(y,{asChild:!0,children:o.jsx(N.Button,{variant:"outline",children:"Close"})})]})}function ie({className:e,...t}){return o.jsx(ee,{"data-slot":"dialog-title",className:d.cn("text-sm font-medium",e),...t})}function le({className:e,...t}){return o.jsx(te,{"data-slot":"dialog-description",className:d.cn("text-muted-foreground *:[a]:hover:text-foreground text-xs *:[a]:underline *:[a]:underline-offset-3",e),...t})}function de({className:e,...t}){return o.jsx("div",{"data-slot":"input-group",role:"group",className:d.cn("border-input dark:bg-input/30 has-[[data-slot=input-group-control]:focus-visible]:border-ring has-[[data-slot=input-group-control]:focus-visible]:ring-ring/50 has-[[data-slot][aria-invalid=true]]:ring-destructive/20 has-[[data-slot][aria-invalid=true]]:border-destructive dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 has-disabled:bg-input/50 dark:has-disabled:bg-input/80 h-8 rounded-lg border transition-colors in-data-[slot=combobox-content]:focus-within:border-inherit in-data-[slot=combobox-content]:focus-within:ring-0 has-disabled:opacity-50 has-[[data-slot=input-group-control]:focus-visible]:ring-3 has-[[data-slot][aria-invalid=true]]:ring-3 has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=inline-start]]:[&>input]:pl-1.5 group/input-group relative flex w-full min-w-0 items-center outline-none has-[>textarea]:h-auto",e),...t})}const Ee=O.cva("text-muted-foreground h-auto gap-2 py-1.5 text-sm font-medium group-data-[disabled=true]/input-group:opacity-50 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>svg:not([class*='size-'])]:size-4 flex cursor-text items-center justify-center select-none",{variants:{align:{"inline-start":"pl-2 has-[>button]:ml-[-0.3rem] has-[>kbd]:ml-[-0.15rem] order-first","inline-end":"pr-2 has-[>button]:mr-[-0.3rem] has-[>kbd]:mr-[-0.15rem] order-last","block-start":"px-2.5 pt-2 group-has-[>input]/input-group:pt-2 [.border-b]:pb-2 order-first w-full justify-start","block-end":"px-2.5 pb-2 group-has-[>input]/input-group:pb-2 [.border-t]:pt-2 order-last w-full justify-start"}},defaultVariants:{align:"inline-start"}});function ce({className:e,align:t="inline-start",...n}){return o.jsx("div",{role:"group","data-slot":"input-group-addon","data-align":t,className:d.cn(Ee({align:t}),e),onClick:a=>{a.target.closest("button")||a.currentTarget.parentElement?.querySelector("input")?.focus()},...n})}const Oe=O.cva("gap-2 text-sm flex items-center shadow-none",{variants:{size:{xs:"h-6 gap-1 rounded-[calc(var(--radius)-3px)] px-1.5 [&>svg:not([class*='size-'])]:size-3.5",sm:"","icon-xs":"size-6 rounded-[calc(var(--radius)-3px)] p-0 has-[>svg]:p-0","icon-sm":"size-8 p-0 has-[>svg]:p-0"}},defaultVariants:{size:"xs"}});function Te({className:e,type:t="button",variant:n="ghost",size:a="xs",...s}){return o.jsx(N.Button,{type:t,"data-size":a,variant:n,className:d.cn(Oe({size:a}),e),...s})}function Se({className:e,...t}){return o.jsx("span",{className:d.cn("text-muted-foreground gap-2 text-sm [&_svg:not([class*='size-'])]:size-4 flex items-center [&_svg]:pointer-events-none",e),...t})}function Ae({className:e,...t}){return o.jsx("input",{"data-slot":"input-group-control",className:d.cn("flex h-7 w-full rounded-none border-0 bg-transparent px-3 py-1.5 text-sm shadow-none ring-0 outline-none file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:ring-0 focus-visible:ring-offset-0 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent dark:placeholder:text-muted-foreground/70 flex-1",e),...t})}function Ge({className:e,...t}){return o.jsx("textarea",{"data-slot":"input-group-control",className:d.cn("flex h-auto w-full min-h-[2.5rem] rounded-none resize-none border-0 bg-transparent px-3 py-1.5 text-sm shadow-none ring-0 outline-none placeholder:text-muted-foreground focus-visible:ring-0 focus-visible:ring-offset-0 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent dark:placeholder:text-muted-foreground/70",e),...t})}function ue({className:e,...t}){return o.jsx(x.Command,{"data-slot":"command",className:d.cn("bg-popover text-popover-foreground rounded-xl p-1 flex size-full flex-col overflow-hidden",e),...t})}function pe({title:e="Command Palette",description:t="Search for a command to run...",children:n,className:a,showCloseButton:s=!1,...r}){return o.jsxs(oe,{...r,children:[o.jsxs(se,{className:"sr-only",children:[o.jsx(ie,{children:e}),o.jsx(le,{children:t})]}),o.jsx(re,{className:d.cn("rounded-xl! p-0 overflow-hidden p-0",a),showCloseButton:s,children:n})]})}function Me({className:e,...t}){return o.jsx("div",{"data-slot":"command-input-wrapper",className:"p-1 pb-0",children:o.jsxs(de,{className:"bg-input/20 dark:bg-input/30",children:[o.jsx(x.Command.Input,{"data-slot":"command-input",className:d.cn("w-full text-xs outline-hidden disabled:cursor-not-allowed disabled:opacity-50",e),...t}),o.jsx(ce,{children:o.jsx(I.HugeiconsIcon,{icon:_.SearchIcon,strokeWidth:2,className:"size-3.5 shrink-0 opacity-50"})})]})})}const ge=l.forwardRef(({className:e,...t},n)=>o.jsx(x.Command.List,{ref:n,"data-slot":"command-list",className:d.cn("no-scrollbar max-h-72 scroll-py-1 outline-none overflow-x-hidden overflow-y-auto",e),...t}));ge.displayName="CommandList";function ze({className:e,...t}){return o.jsx(x.Command.Empty,{"data-slot":"command-empty",className:d.cn("py-6 text-center text-xs",e),...t})}function Fe({className:e,...t}){return o.jsx(x.Command.Group,{"data-slot":"command-group",className:d.cn("text-foreground [&_[cmdk-group-heading]]:text-muted-foreground overflow-hidden p-1 [&_[cmdk-group-heading]]:px-2.5 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium",e),...t})}function We({className:e,...t}){return o.jsx(x.Command.Separator,{"data-slot":"command-separator",className:d.cn("bg-border/50 -mx-1 my-1 h-px",e),...t})}function Le({className:e,children:t,...n}){return o.jsxs(x.Command.Item,{"data-slot":"command-item",className:d.cn("data-selected:bg-muted data-selected:text-foreground data-selected:*:[svg]:text-foreground relative flex min-h-7 cursor-default items-center gap-2 rounded-md px-2.5 py-1.5 text-xs outline-hidden select-none [&_svg:not([class*='size-'])]:size-3.5 [[data-slot=dialog-content]_&]:rounded-md group/command-item data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",e),...n,children:[t,o.jsx(I.HugeiconsIcon,{icon:_.Tick02Icon,strokeWidth:2,className:"ml-auto opacity-0 group-has-[[data-slot=command-shortcut]]/command-item:hidden group-data-[checked=true]/command-item:opacity-100"})]})}function $e({className:e,...t}){return o.jsx("span",{"data-slot":"command-shortcut",className:d.cn("text-muted-foreground group-data-selected/command-item:text-foreground ml-auto text-[0.625rem] tracking-widest",e),...t})}function qe({title:e="Command Palette",description:t="Search for a command to run...",shortcutEnabled:n=!0,open:a,onOpenChange:s,children:r,...u}){const[c,m]=l.useState(!1),h=a!==void 0,g=h?a:c,v=h?s:m,P=l.useRef(g);return l.useEffect(()=>{P.current=g},[g]),l.useEffect(()=>{if(!n)return;const E=b=>{j.shouldIgnoreKeyboardShortcut(b.target)||b.key===j.SHORTCUT_KEYS.commandPalette&&j.isMod(b)&&(b.preventDefault(),v?.(!P.current))};return window.addEventListener("keydown",E),()=>window.removeEventListener("keydown",E)},[n,v]),o.jsx(pe,{...u,title:e,description:t,open:g,onOpenChange:v,children:o.jsx(ue,{children:r})})}exports.Close=y;exports.Command=ue;exports.CommandDialog=pe;exports.CommandEmpty=ze;exports.CommandGroup=Fe;exports.CommandInput=Me;exports.CommandItem=Le;exports.CommandList=ge;exports.CommandPalette=qe;exports.CommandSeparator=We;exports.CommandShortcut=$e;exports.Content=X;exports.Description=te;exports.Dialog=oe;exports.DialogClose=we;exports.DialogContent=re;exports.DialogDescription=le;exports.DialogFooter=Pe;exports.DialogHeader=se;exports.DialogOverlay=ae;exports.DialogPortal=ne;exports.DialogTitle=ie;exports.DialogTrigger=Re;exports.InputGroup=de;exports.InputGroupAddon=ce;exports.InputGroupButton=Te;exports.InputGroupInput=Ae;exports.InputGroupText=Se;exports.InputGroupTextarea=Ge;exports.Overlay=Q;exports.Portal=J;exports.Root=Y;exports.Title=ee;exports.Trigger=Z;exports.WarningProvider=Ne;exports.createDialogScope=he;
|
|
@@ -2,14 +2,14 @@ import { jsx as o, jsxs as p, Fragment as z } from "react/jsx-runtime";
|
|
|
2
2
|
import * as i from "react";
|
|
3
3
|
import { Command as h } from "cmdk";
|
|
4
4
|
import { c as l } from "./utils-B6yFEsav.js";
|
|
5
|
-
import { B as
|
|
5
|
+
import { B as k } from "./button-CJHdCq9I.js";
|
|
6
6
|
import { HugeiconsIcon as _ } from "@hugeicons/react";
|
|
7
7
|
import { Cancel01Icon as X, SearchIcon as ee, Tick02Icon as te } from "@hugeicons/core-free-icons";
|
|
8
|
-
import { c as oe, a as ae, u as ne, b as
|
|
8
|
+
import { c as oe, a as ae, u as ne, b as w, d as R, P as D, e as b, f as I, g as re, h as se, R as ie, i as le, F as de, D as ce } from "./index-CgfzsUO6.js";
|
|
9
9
|
import { createSlot as ue } from "@radix-ui/react-slot";
|
|
10
10
|
import { cva as M } from "class-variance-authority";
|
|
11
11
|
import { s as pe, S as ge, i as fe } from "./keyboard-pkY42Y3a.js";
|
|
12
|
-
var N = "Dialog", [F,
|
|
12
|
+
var N = "Dialog", [F, tt] = oe(N), [me, u] = F(N), G = (e) => {
|
|
13
13
|
const {
|
|
14
14
|
__scopeDialog: t,
|
|
15
15
|
children: a,
|
|
@@ -29,9 +29,9 @@ var N = "Dialog", [F, et] = oe(N), [me, u] = F(N), G = (e) => {
|
|
|
29
29
|
scope: t,
|
|
30
30
|
triggerRef: d,
|
|
31
31
|
contentRef: f,
|
|
32
|
-
contentId:
|
|
33
|
-
titleId:
|
|
34
|
-
descriptionId:
|
|
32
|
+
contentId: w(),
|
|
33
|
+
titleId: w(),
|
|
34
|
+
descriptionId: w(),
|
|
35
35
|
open: v,
|
|
36
36
|
onOpenChange: g,
|
|
37
37
|
onOpenToggle: i.useCallback(() => g((x) => !x), [g]),
|
|
@@ -211,7 +211,7 @@ Z.displayName = Y;
|
|
|
211
211
|
function O(e) {
|
|
212
212
|
return e ? "open" : "closed";
|
|
213
213
|
}
|
|
214
|
-
var J = "DialogTitleWarning", [
|
|
214
|
+
var J = "DialogTitleWarning", [ot, Q] = ae(J, {
|
|
215
215
|
contentName: m,
|
|
216
216
|
titleName: P,
|
|
217
217
|
docsSlug: "dialog"
|
|
@@ -230,23 +230,23 @@ For more information, see https://radix-ui.com/primitives/docs/components/${t.do
|
|
|
230
230
|
const s = e.current?.getAttribute("aria-describedby");
|
|
231
231
|
t && s && (document.getElementById(t) || console.warn(n));
|
|
232
232
|
}, [n, e, t]), null;
|
|
233
|
-
},
|
|
233
|
+
}, we = G, ke = $, _e = B, Re = j, Ie = V, Ee = K, Pe = U, T = Z;
|
|
234
234
|
function Oe({
|
|
235
235
|
...e
|
|
236
236
|
}) {
|
|
237
|
-
return /* @__PURE__ */ o(
|
|
237
|
+
return /* @__PURE__ */ o(we, { "data-slot": "dialog", ...e });
|
|
238
238
|
}
|
|
239
|
-
function
|
|
239
|
+
function at({
|
|
240
240
|
...e
|
|
241
241
|
}) {
|
|
242
|
-
return /* @__PURE__ */ o(
|
|
242
|
+
return /* @__PURE__ */ o(ke, { "data-slot": "dialog-trigger", ...e });
|
|
243
243
|
}
|
|
244
244
|
function Te({
|
|
245
245
|
...e
|
|
246
246
|
}) {
|
|
247
247
|
return /* @__PURE__ */ o(_e, { "data-slot": "dialog-portal", ...e });
|
|
248
248
|
}
|
|
249
|
-
function
|
|
249
|
+
function nt({
|
|
250
250
|
...e
|
|
251
251
|
}) {
|
|
252
252
|
return /* @__PURE__ */ o(T, { "data-slot": "dialog-close", ...e });
|
|
@@ -283,7 +283,7 @@ function Ae({
|
|
|
283
283
|
...n,
|
|
284
284
|
children: [
|
|
285
285
|
t,
|
|
286
|
-
a && /* @__PURE__ */ o(T, { "data-slot": "dialog-close", asChild: !0, children: /* @__PURE__ */ p(
|
|
286
|
+
a && /* @__PURE__ */ o(T, { "data-slot": "dialog-close", asChild: !0, children: /* @__PURE__ */ p(k, { variant: "ghost", className: "absolute top-2 right-2", size: "icon", children: [
|
|
287
287
|
/* @__PURE__ */ o(_, { icon: X, strokeWidth: 2 }),
|
|
288
288
|
/* @__PURE__ */ o("span", { className: "sr-only", children: "Close" })
|
|
289
289
|
] }) })
|
|
@@ -302,7 +302,7 @@ function ze({ className: e, ...t }) {
|
|
|
302
302
|
}
|
|
303
303
|
);
|
|
304
304
|
}
|
|
305
|
-
function
|
|
305
|
+
function rt({
|
|
306
306
|
className: e,
|
|
307
307
|
showCloseButton: t = !1,
|
|
308
308
|
children: a,
|
|
@@ -319,7 +319,7 @@ function nt({
|
|
|
319
319
|
...n,
|
|
320
320
|
children: [
|
|
321
321
|
a,
|
|
322
|
-
t && /* @__PURE__ */ o(T, { asChild: !0, children: /* @__PURE__ */ o(
|
|
322
|
+
t && /* @__PURE__ */ o(T, { asChild: !0, children: /* @__PURE__ */ o(k, { variant: "outline", children: "Close" }) })
|
|
323
323
|
]
|
|
324
324
|
}
|
|
325
325
|
);
|
|
@@ -415,7 +415,7 @@ const Le = M(
|
|
|
415
415
|
}
|
|
416
416
|
}
|
|
417
417
|
);
|
|
418
|
-
function
|
|
418
|
+
function st({
|
|
419
419
|
className: e,
|
|
420
420
|
type: t = "button",
|
|
421
421
|
variant: a = "ghost",
|
|
@@ -423,7 +423,7 @@ function rt({
|
|
|
423
423
|
...s
|
|
424
424
|
}) {
|
|
425
425
|
return /* @__PURE__ */ o(
|
|
426
|
-
|
|
426
|
+
k,
|
|
427
427
|
{
|
|
428
428
|
type: t,
|
|
429
429
|
"data-size": n,
|
|
@@ -433,7 +433,7 @@ function rt({
|
|
|
433
433
|
}
|
|
434
434
|
);
|
|
435
435
|
}
|
|
436
|
-
function
|
|
436
|
+
function it({ className: e, ...t }) {
|
|
437
437
|
return /* @__PURE__ */ o(
|
|
438
438
|
"span",
|
|
439
439
|
{
|
|
@@ -445,7 +445,7 @@ function st({ className: e, ...t }) {
|
|
|
445
445
|
}
|
|
446
446
|
);
|
|
447
447
|
}
|
|
448
|
-
function
|
|
448
|
+
function lt({
|
|
449
449
|
className: e,
|
|
450
450
|
...t
|
|
451
451
|
}) {
|
|
@@ -461,7 +461,7 @@ function it({
|
|
|
461
461
|
}
|
|
462
462
|
);
|
|
463
463
|
}
|
|
464
|
-
function
|
|
464
|
+
function dt({
|
|
465
465
|
className: e,
|
|
466
466
|
...t
|
|
467
467
|
}) {
|
|
@@ -516,7 +516,7 @@ function je({
|
|
|
516
516
|
)
|
|
517
517
|
] });
|
|
518
518
|
}
|
|
519
|
-
function
|
|
519
|
+
function ct({
|
|
520
520
|
className: e,
|
|
521
521
|
...t
|
|
522
522
|
}) {
|
|
@@ -535,22 +535,19 @@ function dt({
|
|
|
535
535
|
/* @__PURE__ */ o($e, { children: /* @__PURE__ */ o(_, { icon: ee, strokeWidth: 2, className: "size-3.5 shrink-0 opacity-50" }) })
|
|
536
536
|
] }) });
|
|
537
537
|
}
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
}
|
|
552
|
-
);
|
|
553
|
-
}
|
|
538
|
+
const Ve = i.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ o(
|
|
539
|
+
h.List,
|
|
540
|
+
{
|
|
541
|
+
ref: a,
|
|
542
|
+
"data-slot": "command-list",
|
|
543
|
+
className: l(
|
|
544
|
+
"no-scrollbar max-h-72 scroll-py-1 outline-none overflow-x-hidden overflow-y-auto",
|
|
545
|
+
e
|
|
546
|
+
),
|
|
547
|
+
...t
|
|
548
|
+
}
|
|
549
|
+
));
|
|
550
|
+
Ve.displayName = "CommandList";
|
|
554
551
|
function ut({
|
|
555
552
|
className: e,
|
|
556
553
|
...t
|
|
@@ -655,38 +652,38 @@ function ht({
|
|
|
655
652
|
);
|
|
656
653
|
}
|
|
657
654
|
export {
|
|
658
|
-
|
|
659
|
-
|
|
655
|
+
it as A,
|
|
656
|
+
dt as B,
|
|
660
657
|
Be as C,
|
|
661
658
|
Pe as D,
|
|
662
659
|
Ge as I,
|
|
663
660
|
Re as O,
|
|
664
661
|
_e as P,
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
662
|
+
we as R,
|
|
663
|
+
ke as T,
|
|
664
|
+
ot as W,
|
|
668
665
|
je as a,
|
|
669
|
-
|
|
670
|
-
|
|
666
|
+
ct as b,
|
|
667
|
+
Ve as c,
|
|
671
668
|
ut as d,
|
|
672
669
|
pt as e,
|
|
673
670
|
ft as f,
|
|
674
671
|
mt as g,
|
|
675
672
|
gt as h,
|
|
676
673
|
ht as i,
|
|
677
|
-
|
|
674
|
+
tt as j,
|
|
678
675
|
Ie as k,
|
|
679
676
|
Ee as l,
|
|
680
677
|
T as m,
|
|
681
|
-
|
|
678
|
+
lt as n,
|
|
682
679
|
$e as o,
|
|
683
|
-
|
|
680
|
+
st as p,
|
|
684
681
|
Oe as q,
|
|
685
|
-
|
|
686
|
-
|
|
682
|
+
at as r,
|
|
683
|
+
nt as s,
|
|
687
684
|
Ae as t,
|
|
688
685
|
ze as u,
|
|
689
|
-
|
|
686
|
+
rt as v,
|
|
690
687
|
Me as w,
|
|
691
688
|
Fe as x,
|
|
692
689
|
Se as y,
|
package/dist/command.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const m=require("./command-palette-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const m=require("./command-palette-DSQYbRiH.cjs");exports.Command=m.Command;exports.CommandDialog=m.CommandDialog;exports.CommandEmpty=m.CommandEmpty;exports.CommandGroup=m.CommandGroup;exports.CommandInput=m.CommandInput;exports.CommandItem=m.CommandItem;exports.CommandList=m.CommandList;exports.CommandPalette=m.CommandPalette;exports.CommandSeparator=m.CommandSeparator;exports.CommandShortcut=m.CommandShortcut;
|
package/dist/command.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as o, a as d, d as n, e as s, b as C, f as t, c as e, i as r, h as p, g as i } from "./command-palette-
|
|
1
|
+
import { C as o, a as d, d as n, e as s, b as C, f as t, c as e, i as r, h as p, g as i } from "./command-palette-D_SFxXyQ.js";
|
|
2
2
|
export {
|
|
3
3
|
o as Command,
|
|
4
4
|
d as CommandDialog,
|
|
@@ -21,8 +21,8 @@ export { CommandPalette } from "./custom/command-palette";
|
|
|
21
21
|
export type { CommandPaletteProps } from "./custom/command-palette";
|
|
22
22
|
export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuGroup, DropdownMenuPortal, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuRadioGroup, } from "./custom/enhanced-dropdown-menu";
|
|
23
23
|
export { DropdownMenu as CoreDropdownMenu, DropdownMenuTrigger as CoreDropdownMenuTrigger, DropdownMenuContent as CoreDropdownMenuContent, DropdownMenuItem as CoreDropdownMenuItem, DropdownMenuCheckboxItem as CoreDropdownMenuCheckboxItem, DropdownMenuRadioItem as CoreDropdownMenuRadioItem, DropdownMenuLabel as CoreDropdownMenuLabel, DropdownMenuSeparator as CoreDropdownMenuSeparator, DropdownMenuShortcut as CoreDropdownMenuShortcut, DropdownMenuGroup as CoreDropdownMenuGroup, DropdownMenuPortal as CoreDropdownMenuPortal, DropdownMenuSub as CoreDropdownMenuSub, DropdownMenuSubContent as CoreDropdownMenuSubContent, DropdownMenuSubTrigger as CoreDropdownMenuSubTrigger, DropdownMenuRadioGroup as CoreDropdownMenuRadioGroup, } from "./ui/dropdown-menu";
|
|
24
|
-
export { Combobox, ComboboxInput, ComboboxList, ComboboxItem, ComboboxEmpty, ComboboxContent, ComboboxGroup, ComboboxLabel, ComboboxCollection, ComboboxSeparator, ComboboxChips, ComboboxChip, ComboboxChipsInput, ComboboxTrigger, ComboboxValue, ComboboxClear, useComboboxAnchor, } from "./ui/combobox";
|
|
25
|
-
export { Combobox as CoreCombobox, ComboboxInput as CoreComboboxInput, ComboboxList as CoreComboboxList, ComboboxItem as CoreComboboxItem, ComboboxEmpty as CoreComboboxEmpty, ComboboxContent as CoreComboboxContent, ComboboxGroup as CoreComboboxGroup, ComboboxLabel as CoreComboboxLabel, ComboboxCollection as CoreComboboxCollection, ComboboxSeparator as CoreComboboxSeparator, ComboboxChips as CoreComboboxChips, ComboboxChip as CoreComboboxChip, ComboboxChipsInput as CoreComboboxChipsInput, ComboboxTrigger as CoreComboboxTrigger, ComboboxValue as CoreComboboxValue, ComboboxClear as CoreComboboxClear, useComboboxAnchor as CoreUseComboboxAnchor, } from "./ui/combobox";
|
|
24
|
+
export { Combobox, ComboboxInput, ComboboxBadgeTrigger, ComboboxList, ComboboxItem, ComboboxEmpty, ComboboxContent, ComboboxGroup, ComboboxLabel, ComboboxCollection, ComboboxSeparator, ComboboxChips, ComboboxChip, ComboboxChipsInput, ComboboxTrigger, ComboboxValue, ComboboxClear, useComboboxAnchor, } from "./ui/combobox";
|
|
25
|
+
export { Combobox as CoreCombobox, ComboboxInput as CoreComboboxInput, ComboboxBadgeTrigger as CoreComboboxBadgeTrigger, ComboboxList as CoreComboboxList, ComboboxItem as CoreComboboxItem, ComboboxEmpty as CoreComboboxEmpty, ComboboxContent as CoreComboboxContent, ComboboxGroup as CoreComboboxGroup, ComboboxLabel as CoreComboboxLabel, ComboboxCollection as CoreComboboxCollection, ComboboxSeparator as CoreComboboxSeparator, ComboboxChips as CoreComboboxChips, ComboboxChip as CoreComboboxChip, ComboboxChipsInput as CoreComboboxChipsInput, ComboboxTrigger as CoreComboboxTrigger, ComboboxValue as CoreComboboxValue, ComboboxClear as CoreComboboxClear, useComboboxAnchor as CoreUseComboboxAnchor, } from "./ui/combobox";
|
|
26
26
|
export { EnhancedProgress as Progress } from "./custom/enhanced-progress";
|
|
27
27
|
export type { EnhancedProgressProps as ProgressProps } from "./custom/enhanced-progress";
|
|
28
28
|
export { Progress as CoreProgress } from "./ui/progress";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
|