kanban-lite 1.0.51 → 1.0.52
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/CHANGELOG.md +2 -0
- package/README.md +3 -0
- package/dist/sdk/shared/types.d.ts +17 -1
- package/dist/standalone-webview/{icons-DpXY9lyN.js → icons-CYCI7Dzg.js} +64 -54
- package/dist/standalone-webview/icons-CYCI7Dzg.js.map +1 -0
- package/dist/standalone-webview/index.js +46 -46
- package/dist/standalone-webview/index.js.map +1 -1
- package/dist/standalone-webview/{react-vendor-BOUld6Cu.js → react-vendor-CwCuqPri.js} +2 -2
- package/dist/standalone-webview/{react-vendor-BOUld6Cu.js.map → react-vendor-CwCuqPri.js.map} +1 -1
- package/dist/standalone-webview/style.css +1 -1
- package/docs/plan/20260318-backend-reconnect/plan.yaml +293 -0
- package/docs/plan/20260318-backend-reconnect/research_findings_connectivity_reconnect.yaml +411 -0
- package/docs/plan/20260318-column-visibility-controls/plan.yaml +372 -0
- package/package.json +1 -1
- package/src/shared/types.ts +18 -0
- package/src/standalone/__tests__/server.integration.test.ts +28 -0
- package/src/webview/App.test.tsx +417 -0
- package/src/webview/App.tsx +93 -6
- package/src/webview/components/KanbanBoard.test.tsx +169 -0
- package/src/webview/components/KanbanBoard.tsx +23 -8
- package/src/webview/components/KanbanColumn.test.tsx +98 -0
- package/src/webview/components/KanbanColumn.tsx +109 -3
- package/src/webview/components/Toolbar.test.tsx +131 -0
- package/src/webview/components/Toolbar.tsx +86 -1
- package/src/webview/components/UndoToast.test.tsx +38 -0
- package/src/webview/components/UndoToast.tsx +60 -27
- package/src/webview/connectionNotice.test.ts +57 -0
- package/src/webview/connectionNotice.ts +60 -0
- package/src/webview/connectionStatusNotice.ts +60 -0
- package/src/webview/standalone-shim.test.ts +169 -0
- package/src/webview/standalone-shim.ts +155 -17
- package/src/webview/store/index.test.ts +117 -1
- package/src/webview/store/index.ts +157 -2
- package/dist/standalone-webview/icons-DpXY9lyN.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
18
18
|
- **Standalone URL sync**: Browser history and deep links now persist the fuzzy-search state alongside the existing board, card, tab, filter, and search query routing state.
|
|
19
19
|
|
|
20
20
|
### Fixed
|
|
21
|
+
- **Minimized column drops**: Card drags now reach minimized-column rails correctly instead of being swallowed by the rail's column-reorder wrapper.
|
|
22
|
+
- **Standalone reconnect recovery**: In standalone/browser mode, the app now automatically retries same-page backend reconnects when possible and shows an in-app connection-lost error with refresh/reopen guidance if recovery cannot be restored.
|
|
21
23
|
- **Toolbar search chips**: Mixed search queries in the web UI now render separate removable chips for plain-text terms and each `meta.*` token, so individual constraints can be cleared without wiping the entire query.
|
|
22
24
|
|
|
23
25
|
### Removed
|
package/README.md
CHANGED
|
@@ -49,6 +49,7 @@ kl add --title "My first task" --priority high
|
|
|
49
49
|
- **Adjustable drawer width**: Tune drawer mode between 20–80% of the viewport from the Layout settings
|
|
50
50
|
- **Zoom controls**: Scale the board view and card detail panel independently between 75–150% via settings sliders or keyboard shortcuts
|
|
51
51
|
- **Column sorting**: Sort cards within a column by priority, due date, or creation date from the column menu
|
|
52
|
+
- **Column visibility controls**: Minimize a column into a narrow rail with its name and card count from the column menu, or hide/show columns from **Board options → Columns**
|
|
52
53
|
- **Smooth scroll to selection**: Board automatically scrolls to the selected card
|
|
53
54
|
- **URL-synced standalone navigation**: In standalone mode, the active board, card, tab, filters, search query, and fuzzy mode persist in browser history and deep links
|
|
54
55
|
- **Keyboard shortcuts**:
|
|
@@ -251,6 +252,8 @@ The server provides:
|
|
|
251
252
|
- **REST API** at `http://localhost:3000/api` — full programmatic access
|
|
252
253
|
- **WebSocket** — real-time updates for connected clients
|
|
253
254
|
|
|
255
|
+
> In standalone/browser mode, the app automatically retries same-page backend reconnects when possible after the connection drops. If reconnect cannot be restored, the UI shows an in-app connection-lost error with guidance to refresh or reopen the standalone page.
|
|
256
|
+
|
|
254
257
|
### REST API
|
|
255
258
|
|
|
256
259
|
All responses follow the format `{ "ok": true, "data": ... }` or `{ "ok": false, "error": "message" }`. CORS is enabled for all origins.
|
|
@@ -303,6 +303,22 @@ export interface WorkspaceInfo {
|
|
|
303
303
|
port: number;
|
|
304
304
|
configVersion: number;
|
|
305
305
|
}
|
|
306
|
+
/**
|
|
307
|
+
* Standalone transport lifecycle status emitted to the frontend.
|
|
308
|
+
*
|
|
309
|
+
* This is produced by the standalone shim only; the native VS Code webview
|
|
310
|
+
* path does not emit these messages.
|
|
311
|
+
*/
|
|
312
|
+
export interface ConnectionStatusMessage {
|
|
313
|
+
type: 'connectionStatus';
|
|
314
|
+
connected: boolean;
|
|
315
|
+
reconnecting: boolean;
|
|
316
|
+
fatal: boolean;
|
|
317
|
+
retryCount?: number;
|
|
318
|
+
maxRetries?: number;
|
|
319
|
+
retryDelayMs?: number;
|
|
320
|
+
reason?: string;
|
|
321
|
+
}
|
|
306
322
|
export type ExtensionMessage = {
|
|
307
323
|
type: 'init';
|
|
308
324
|
cards: Card[];
|
|
@@ -312,7 +328,7 @@ export type ExtensionMessage = {
|
|
|
312
328
|
currentBoard?: string;
|
|
313
329
|
workspace?: WorkspaceInfo;
|
|
314
330
|
labels?: Record<string, LabelDefinition>;
|
|
315
|
-
} | {
|
|
331
|
+
} | ConnectionStatusMessage | {
|
|
316
332
|
type: 'cardsUpdated';
|
|
317
333
|
cards: Card[];
|
|
318
334
|
} | {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function O(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var
|
|
1
|
+
function O(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var C={exports:{}},r={};/**
|
|
2
2
|
* @license React
|
|
3
3
|
* react.production.min.js
|
|
4
4
|
*
|
|
@@ -6,12 +6,12 @@ function O(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"de
|
|
|
6
6
|
*
|
|
7
7
|
* This source code is licensed under the MIT license found in the
|
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/var k=Symbol.for("react.element"),I=Symbol.for("react.portal"),D=Symbol.for("react.fragment"),T=Symbol.for("react.strict_mode"),U=Symbol.for("react.profiler"),F=Symbol.for("react.provider"),B=Symbol.for("react.context"),W=Symbol.for("react.forward_ref"),K=Symbol.for("react.suspense"),Z=Symbol.for("react.memo"),G=Symbol.for("react.lazy"),g=Symbol.iterator;function J(e){return e===null||typeof e!="object"?null:(e=g&&e[g]||e["@@iterator"],typeof e=="function"?e:null)}var S={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},z=Object.assign,
|
|
9
|
+
*/var k=Symbol.for("react.element"),I=Symbol.for("react.portal"),D=Symbol.for("react.fragment"),T=Symbol.for("react.strict_mode"),U=Symbol.for("react.profiler"),F=Symbol.for("react.provider"),B=Symbol.for("react.context"),W=Symbol.for("react.forward_ref"),K=Symbol.for("react.suspense"),Z=Symbol.for("react.memo"),G=Symbol.for("react.lazy"),g=Symbol.iterator;function J(e){return e===null||typeof e!="object"?null:(e=g&&e[g]||e["@@iterator"],typeof e=="function"?e:null)}var S={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},z=Object.assign,q={};function p(e,t,n){this.props=e,this.context=t,this.refs=q,this.updater=n||S}p.prototype.isReactComponent={};p.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};p.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function E(){}E.prototype=p.prototype;function M(e,t,n){this.props=e,this.context=t,this.refs=q,this.updater=n||S}var x=M.prototype=new E;x.constructor=M;z(x,p.prototype);x.isPureReactComponent=!0;var N=Array.isArray,R=Object.prototype.hasOwnProperty,$={current:null},L={key:!0,ref:!0,__self:!0,__source:!0};function H(e,t,n){var a,c={},s=null,l=null;if(t!=null)for(a in t.ref!==void 0&&(l=t.ref),t.key!==void 0&&(s=""+t.key),t)R.call(t,a)&&!L.hasOwnProperty(a)&&(c[a]=t[a]);var i=arguments.length-2;if(i===1)c.children=n;else if(1<i){for(var u=Array(i),y=0;y<i;y++)u[y]=arguments[y+2];c.children=u}if(e&&e.defaultProps)for(a in i=e.defaultProps,i)c[a]===void 0&&(c[a]=i[a]);return{$$typeof:k,type:e,key:s,ref:l,props:c,_owner:$.current}}function Q(e,t){return{$$typeof:k,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}function w(e){return typeof e=="object"&&e!==null&&e.$$typeof===k}function X(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,function(n){return t[n]})}var b=/\/+/g;function v(e,t){return typeof e=="object"&&e!==null&&e.key!=null?X(""+e.key):t.toString(36)}function _(e,t,n,a,c){var s=typeof e;(s==="undefined"||s==="boolean")&&(e=null);var l=!1;if(e===null)l=!0;else switch(s){case"string":case"number":l=!0;break;case"object":switch(e.$$typeof){case k:case I:l=!0}}if(l)return l=e,c=c(l),e=a===""?"."+v(l,0):a,N(c)?(n="",e!=null&&(n=e.replace(b,"$&/")+"/"),_(c,t,n,"",function(y){return y})):c!=null&&(w(c)&&(c=Q(c,n+(!c.key||l&&l.key===c.key?"":(""+c.key).replace(b,"$&/")+"/")+e)),t.push(c)),1;if(l=0,a=a===""?".":a+":",N(e))for(var i=0;i<e.length;i++){s=e[i];var u=a+v(s,i);l+=_(s,t,n,u,c)}else if(u=J(e),typeof u=="function")for(e=u.call(e),i=0;!(s=e.next()).done;)s=s.value,u=a+v(s,i++),l+=_(s,t,n,u,c);else if(s==="object")throw t=String(e),Error("Objects are not valid as a React child (found: "+(t==="[object Object]"?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return l}function f(e,t,n){if(e==null)return e;var a=[],c=0;return _(e,a,"","",function(s){return t.call(n,s,c++)}),a}function Y(e){if(e._status===-1){var t=e._result;t=t(),t.then(function(n){(e._status===0||e._status===-1)&&(e._status=1,e._result=n)},function(n){(e._status===0||e._status===-1)&&(e._status=2,e._result=n)}),e._status===-1&&(e._status=0,e._result=t)}if(e._status===1)return e._result.default;throw e._result}var h={current:null},m={transition:null},ee={ReactCurrentDispatcher:h,ReactCurrentBatchConfig:m,ReactCurrentOwner:$};function V(){throw Error("act(...) is not supported in production builds of React.")}r.Children={map:f,forEach:function(e,t,n){f(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return f(e,function(){t++}),t},toArray:function(e){return f(e,function(t){return t})||[]},only:function(e){if(!w(e))throw Error("React.Children.only expected to receive a single React element child.");return e}};r.Component=p;r.Fragment=D;r.Profiler=U;r.PureComponent=M;r.StrictMode=T;r.Suspense=K;r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ee;r.act=V;r.cloneElement=function(e,t,n){if(e==null)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var a=z({},e.props),c=e.key,s=e.ref,l=e._owner;if(t!=null){if(t.ref!==void 0&&(s=t.ref,l=$.current),t.key!==void 0&&(c=""+t.key),e.type&&e.type.defaultProps)var i=e.type.defaultProps;for(u in t)R.call(t,u)&&!L.hasOwnProperty(u)&&(a[u]=t[u]===void 0&&i!==void 0?i[u]:t[u])}var u=arguments.length-2;if(u===1)a.children=n;else if(1<u){i=Array(u);for(var y=0;y<u;y++)i[y]=arguments[y+2];a.children=i}return{$$typeof:k,type:e.type,key:c,ref:s,props:a,_owner:l}};r.createContext=function(e){return e={$$typeof:B,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},e.Provider={$$typeof:F,_context:e},e.Consumer=e};r.createElement=H;r.createFactory=function(e){var t=H.bind(null,e);return t.type=e,t};r.createRef=function(){return{current:null}};r.forwardRef=function(e){return{$$typeof:W,render:e}};r.isValidElement=w;r.lazy=function(e){return{$$typeof:G,_payload:{_status:-1,_result:e},_init:Y}};r.memo=function(e,t){return{$$typeof:Z,type:e,compare:t===void 0?null:t}};r.startTransition=function(e){var t=m.transition;m.transition={};try{e()}finally{m.transition=t}};r.unstable_act=V;r.useCallback=function(e,t){return h.current.useCallback(e,t)};r.useContext=function(e){return h.current.useContext(e)};r.useDebugValue=function(){};r.useDeferredValue=function(e){return h.current.useDeferredValue(e)};r.useEffect=function(e,t){return h.current.useEffect(e,t)};r.useId=function(){return h.current.useId()};r.useImperativeHandle=function(e,t,n){return h.current.useImperativeHandle(e,t,n)};r.useInsertionEffect=function(e,t){return h.current.useInsertionEffect(e,t)};r.useLayoutEffect=function(e,t){return h.current.useLayoutEffect(e,t)};r.useMemo=function(e,t){return h.current.useMemo(e,t)};r.useReducer=function(e,t,n){return h.current.useReducer(e,t,n)};r.useRef=function(e){return h.current.useRef(e)};r.useState=function(e){return h.current.useState(e)};r.useSyncExternalStore=function(e,t,n){return h.current.useSyncExternalStore(e,t,n)};r.useTransition=function(){return h.current.useTransition()};r.version="18.3.1";C.exports=r;var d=C.exports;const ot=O(d);/**
|
|
10
10
|
* @license lucide-react v0.562.0 - ISC
|
|
11
11
|
*
|
|
12
12
|
* This source code is licensed under the ISC license.
|
|
13
13
|
* See the LICENSE file in the root directory of this source tree.
|
|
14
|
-
*/const te=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),oe=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,n,a)=>a?a.toUpperCase():n.toLowerCase()),
|
|
14
|
+
*/const te=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),oe=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,n,a)=>a?a.toUpperCase():n.toLowerCase()),j=e=>{const t=oe(e);return t.charAt(0).toUpperCase()+t.slice(1)},A=(...e)=>e.filter((t,n,a)=>!!t&&t.trim()!==""&&a.indexOf(t)===n).join(" ").trim(),ne=e=>{for(const t in e)if(t.startsWith("aria-")||t==="role"||t==="title")return!0};/**
|
|
15
15
|
* @license lucide-react v0.562.0 - ISC
|
|
16
16
|
*
|
|
17
17
|
* This source code is licensed under the ISC license.
|
|
@@ -21,250 +21,260 @@ function O(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"de
|
|
|
21
21
|
*
|
|
22
22
|
* This source code is licensed under the ISC license.
|
|
23
23
|
* See the LICENSE file in the root directory of this source tree.
|
|
24
|
-
*/const ae=d.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:a,className:c="",children:s,iconNode:l,...i},u)=>d.createElement("svg",{ref:u,...re,width:t,height:t,stroke:e,strokeWidth:a?Number(n)*24/Number(t):n,className:
|
|
24
|
+
*/const ae=d.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:a,className:c="",children:s,iconNode:l,...i},u)=>d.createElement("svg",{ref:u,...re,width:t,height:t,stroke:e,strokeWidth:a?Number(n)*24/Number(t):n,className:A("lucide",c),...!s&&!ne(i)&&{"aria-hidden":"true"},...i},[...l.map(([y,P])=>d.createElement(y,P)),...Array.isArray(s)?s:[s]]));/**
|
|
25
25
|
* @license lucide-react v0.562.0 - ISC
|
|
26
26
|
*
|
|
27
27
|
* This source code is licensed under the ISC license.
|
|
28
28
|
* See the LICENSE file in the root directory of this source tree.
|
|
29
|
-
*/const o=(e,t)=>{const n=d.forwardRef(({className:a,...c},s)=>d.createElement(ae,{ref:s,iconNode:t,className:
|
|
29
|
+
*/const o=(e,t)=>{const n=d.forwardRef(({className:a,...c},s)=>d.createElement(ae,{ref:s,iconNode:t,className:A(`lucide-${te(j(e))}`,`lucide-${e}`,a),...c}));return n.displayName=j(e),n};/**
|
|
30
30
|
* @license lucide-react v0.562.0 - ISC
|
|
31
31
|
*
|
|
32
32
|
* This source code is licensed under the ISC license.
|
|
33
33
|
* See the LICENSE file in the root directory of this source tree.
|
|
34
|
-
*/const ce=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]],
|
|
34
|
+
*/const ce=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]],nt=o("arrow-right",ce);/**
|
|
35
35
|
* @license lucide-react v0.562.0 - ISC
|
|
36
36
|
*
|
|
37
37
|
* This source code is licensed under the ISC license.
|
|
38
38
|
* See the LICENSE file in the root directory of this source tree.
|
|
39
|
-
*/const se=[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8",key:"mg9rjx"}]],
|
|
39
|
+
*/const se=[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8",key:"mg9rjx"}]],rt=o("bold",se);/**
|
|
40
40
|
* @license lucide-react v0.562.0 - ISC
|
|
41
41
|
*
|
|
42
42
|
* This source code is licensed under the ISC license.
|
|
43
43
|
* See the LICENSE file in the root directory of this source tree.
|
|
44
|
-
*/const ie=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z",key:"1fy3hk"}],["line",{x1:"12",x2:"12",y1:"7",y2:"13",key:"1cppfj"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10",key:"1gty7f"}]],
|
|
44
|
+
*/const ie=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z",key:"1fy3hk"}],["line",{x1:"12",x2:"12",y1:"7",y2:"13",key:"1cppfj"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10",key:"1gty7f"}]],at=o("bookmark-plus",ie);/**
|
|
45
45
|
* @license lucide-react v0.562.0 - ISC
|
|
46
46
|
*
|
|
47
47
|
* This source code is licensed under the ISC license.
|
|
48
48
|
* See the LICENSE file in the root directory of this source tree.
|
|
49
|
-
*/const ue=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}]],
|
|
49
|
+
*/const ue=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}]],ct=o("calendar",ue);/**
|
|
50
50
|
* @license lucide-react v0.562.0 - ISC
|
|
51
51
|
*
|
|
52
52
|
* This source code is licensed under the ISC license.
|
|
53
53
|
* See the LICENSE file in the root directory of this source tree.
|
|
54
|
-
*/const le=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],
|
|
54
|
+
*/const le=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],st=o("check",le);/**
|
|
55
55
|
* @license lucide-react v0.562.0 - ISC
|
|
56
56
|
*
|
|
57
57
|
* This source code is licensed under the ISC license.
|
|
58
58
|
* See the LICENSE file in the root directory of this source tree.
|
|
59
|
-
*/const he=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],
|
|
59
|
+
*/const he=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],it=o("chevron-down",he);/**
|
|
60
60
|
* @license lucide-react v0.562.0 - ISC
|
|
61
61
|
*
|
|
62
62
|
* This source code is licensed under the ISC license.
|
|
63
63
|
* See the LICENSE file in the root directory of this source tree.
|
|
64
|
-
*/const ye=[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]],
|
|
64
|
+
*/const ye=[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]],ut=o("chevron-left",ye);/**
|
|
65
65
|
* @license lucide-react v0.562.0 - ISC
|
|
66
66
|
*
|
|
67
67
|
* This source code is licensed under the ISC license.
|
|
68
68
|
* See the LICENSE file in the root directory of this source tree.
|
|
69
|
-
*/const de=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],
|
|
69
|
+
*/const de=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],lt=o("chevron-right",de);/**
|
|
70
70
|
* @license lucide-react v0.562.0 - ISC
|
|
71
71
|
*
|
|
72
72
|
* This source code is licensed under the ISC license.
|
|
73
73
|
* See the LICENSE file in the root directory of this source tree.
|
|
74
|
-
*/const pe=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],
|
|
74
|
+
*/const pe=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],ht=o("chevron-up",pe);/**
|
|
75
75
|
* @license lucide-react v0.562.0 - ISC
|
|
76
76
|
*
|
|
77
77
|
* This source code is licensed under the ISC license.
|
|
78
78
|
* See the LICENSE file in the root directory of this source tree.
|
|
79
|
-
*/const ke=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],
|
|
79
|
+
*/const ke=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],yt=o("circle-dot",ke);/**
|
|
80
80
|
* @license lucide-react v0.562.0 - ISC
|
|
81
81
|
*
|
|
82
82
|
* This source code is licensed under the ISC license.
|
|
83
83
|
* See the LICENSE file in the root directory of this source tree.
|
|
84
|
-
*/const fe=[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],
|
|
84
|
+
*/const fe=[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],dt=o("clock",fe);/**
|
|
85
85
|
* @license lucide-react v0.562.0 - ISC
|
|
86
86
|
*
|
|
87
87
|
* This source code is licensed under the ISC license.
|
|
88
88
|
* See the LICENSE file in the root directory of this source tree.
|
|
89
|
-
*/const _e=[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]],
|
|
89
|
+
*/const _e=[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]],pt=o("code",_e);/**
|
|
90
90
|
* @license lucide-react v0.562.0 - ISC
|
|
91
91
|
*
|
|
92
92
|
* This source code is licensed under the ISC license.
|
|
93
93
|
* See the LICENSE file in the root directory of this source tree.
|
|
94
|
-
*/const me=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 3v18",key:"108xh3"}]],
|
|
94
|
+
*/const me=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 3v18",key:"108xh3"}]],kt=o("columns-2",me);/**
|
|
95
95
|
* @license lucide-react v0.562.0 - ISC
|
|
96
96
|
*
|
|
97
97
|
* This source code is licensed under the ISC license.
|
|
98
98
|
* See the LICENSE file in the root directory of this source tree.
|
|
99
|
-
*/const ve=[["path",{d:"M12 15V3",key:"m9g1x1"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["path",{d:"m7 10 5 5 5-5",key:"brsn70"}]],
|
|
99
|
+
*/const ve=[["path",{d:"M12 15V3",key:"m9g1x1"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["path",{d:"m7 10 5 5 5-5",key:"brsn70"}]],ft=o("download",ve);/**
|
|
100
100
|
* @license lucide-react v0.562.0 - ISC
|
|
101
101
|
*
|
|
102
102
|
* This source code is licensed under the ISC license.
|
|
103
103
|
* See the LICENSE file in the root directory of this source tree.
|
|
104
|
-
*/const Me=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}]],
|
|
104
|
+
*/const Me=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}]],_t=o("ellipsis-vertical",Me);/**
|
|
105
105
|
* @license lucide-react v0.562.0 - ISC
|
|
106
106
|
*
|
|
107
107
|
* This source code is licensed under the ISC license.
|
|
108
108
|
* See the LICENSE file in the root directory of this source tree.
|
|
109
|
-
*/const xe=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]],
|
|
109
|
+
*/const xe=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]],mt=o("ellipsis",xe);/**
|
|
110
110
|
* @license lucide-react v0.562.0 - ISC
|
|
111
111
|
*
|
|
112
112
|
* This source code is licensed under the ISC license.
|
|
113
113
|
* See the LICENSE file in the root directory of this source tree.
|
|
114
|
-
*/const $e=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]],
|
|
114
|
+
*/const $e=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]],vt=o("external-link",$e);/**
|
|
115
115
|
* @license lucide-react v0.562.0 - ISC
|
|
116
116
|
*
|
|
117
117
|
* This source code is licensed under the ISC license.
|
|
118
118
|
* See the LICENSE file in the root directory of this source tree.
|
|
119
|
-
*/const we=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]],
|
|
119
|
+
*/const we=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]],Mt=o("file-text",we);/**
|
|
120
120
|
* @license lucide-react v0.562.0 - ISC
|
|
121
121
|
*
|
|
122
122
|
* This source code is licensed under the ISC license.
|
|
123
123
|
* See the LICENSE file in the root directory of this source tree.
|
|
124
|
-
*/const ge=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",key:"sc7q7i"}]],
|
|
124
|
+
*/const ge=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",key:"sc7q7i"}]],xt=o("funnel",ge);/**
|
|
125
125
|
* @license lucide-react v0.562.0 - ISC
|
|
126
126
|
*
|
|
127
127
|
* This source code is licensed under the ISC license.
|
|
128
128
|
* See the LICENSE file in the root directory of this source tree.
|
|
129
|
-
*/const
|
|
129
|
+
*/const Ne=[["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M6 20V4",key:"1w1bmo"}],["path",{d:"M18 20V4",key:"o2hl4u"}]],$t=o("heading",Ne);/**
|
|
130
130
|
* @license lucide-react v0.562.0 - ISC
|
|
131
131
|
*
|
|
132
132
|
* This source code is licensed under the ISC license.
|
|
133
133
|
* See the LICENSE file in the root directory of this source tree.
|
|
134
|
-
*/const
|
|
134
|
+
*/const be=[["line",{x1:"19",x2:"10",y1:"4",y2:"4",key:"15jd3p"}],["line",{x1:"14",x2:"5",y1:"20",y2:"20",key:"bu0au3"}],["line",{x1:"15",x2:"9",y1:"4",y2:"20",key:"uljnxc"}]],wt=o("italic",be);/**
|
|
135
135
|
* @license lucide-react v0.562.0 - ISC
|
|
136
136
|
*
|
|
137
137
|
* This source code is licensed under the ISC license.
|
|
138
138
|
* See the LICENSE file in the root directory of this source tree.
|
|
139
|
-
*/const
|
|
139
|
+
*/const je=[["path",{d:"M10 8h.01",key:"1r9ogq"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M7 16h10",key:"wp8him"}],["path",{d:"M8 12h.01",key:"czm47f"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}]],gt=o("keyboard",je);/**
|
|
140
140
|
* @license lucide-react v0.562.0 - ISC
|
|
141
141
|
*
|
|
142
142
|
* This source code is licensed under the ISC license.
|
|
143
143
|
* See the LICENSE file in the root directory of this source tree.
|
|
144
|
-
*/const
|
|
144
|
+
*/const Ce=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}],["path",{d:"M14 4h7",key:"3xa0d5"}],["path",{d:"M14 9h7",key:"1icrd9"}],["path",{d:"M14 15h7",key:"1mj8o2"}],["path",{d:"M14 20h7",key:"11slyb"}]],Nt=o("layout-list",Ce);/**
|
|
145
145
|
* @license lucide-react v0.562.0 - ISC
|
|
146
146
|
*
|
|
147
147
|
* This source code is licensed under the ISC license.
|
|
148
148
|
* See the LICENSE file in the root directory of this source tree.
|
|
149
|
-
*/const Se=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]],
|
|
149
|
+
*/const Se=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]],bt=o("link",Se);/**
|
|
150
150
|
* @license lucide-react v0.562.0 - ISC
|
|
151
151
|
*
|
|
152
152
|
* This source code is licensed under the ISC license.
|
|
153
153
|
* See the LICENSE file in the root directory of this source tree.
|
|
154
|
-
*/const ze=[["path",{d:"M13 5h8",key:"a7qcls"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"m3 7 2 2 4-4",key:"1obspn"}]],
|
|
154
|
+
*/const ze=[["path",{d:"M13 5h8",key:"a7qcls"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"m3 7 2 2 4-4",key:"1obspn"}]],jt=o("list-checks",ze);/**
|
|
155
155
|
* @license lucide-react v0.562.0 - ISC
|
|
156
156
|
*
|
|
157
157
|
* This source code is licensed under the ISC license.
|
|
158
158
|
* See the LICENSE file in the root directory of this source tree.
|
|
159
|
-
*/const
|
|
159
|
+
*/const qe=[["path",{d:"M11 5h10",key:"1cz7ny"}],["path",{d:"M11 12h10",key:"1438ji"}],["path",{d:"M11 19h10",key:"11t30w"}],["path",{d:"M4 4h1v5",key:"10yrso"}],["path",{d:"M4 9h2",key:"r1h2o0"}],["path",{d:"M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02",key:"xtkcd5"}]],Ct=o("list-ordered",qe);/**
|
|
160
160
|
* @license lucide-react v0.562.0 - ISC
|
|
161
161
|
*
|
|
162
162
|
* This source code is licensed under the ISC license.
|
|
163
163
|
* See the LICENSE file in the root directory of this source tree.
|
|
164
|
-
*/const
|
|
164
|
+
*/const Ee=[["path",{d:"M3 5h.01",key:"18ugdj"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M3 19h.01",key:"noohij"}],["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M8 12h13",key:"1za7za"}],["path",{d:"M8 19h13",key:"m83p4d"}]],St=o("list",Ee);/**
|
|
165
165
|
* @license lucide-react v0.562.0 - ISC
|
|
166
166
|
*
|
|
167
167
|
* This source code is licensed under the ISC license.
|
|
168
168
|
* See the LICENSE file in the root directory of this source tree.
|
|
169
|
-
*/const Re=[["path",{d:"
|
|
169
|
+
*/const Re=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"m21 3-7 7",key:"1l2asr"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]],zt=o("maximize-2",Re);/**
|
|
170
170
|
* @license lucide-react v0.562.0 - ISC
|
|
171
171
|
*
|
|
172
172
|
* This source code is licensed under the ISC license.
|
|
173
173
|
* See the LICENSE file in the root directory of this source tree.
|
|
174
|
-
*/const Le=[["path",{d:"
|
|
174
|
+
*/const Le=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}]],qt=o("message-circle",Le);/**
|
|
175
175
|
* @license lucide-react v0.562.0 - ISC
|
|
176
176
|
*
|
|
177
177
|
* This source code is licensed under the ISC license.
|
|
178
178
|
* See the LICENSE file in the root directory of this source tree.
|
|
179
|
-
*/const He=[["path",{d:"
|
|
179
|
+
*/const He=[["path",{d:"m14 10 7-7",key:"oa77jy"}],["path",{d:"M20 10h-6V4",key:"mjg0md"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M4 14h6v6",key:"rmj7iw"}]],Et=o("minimize-2",He);/**
|
|
180
180
|
* @license lucide-react v0.562.0 - ISC
|
|
181
181
|
*
|
|
182
182
|
* This source code is licensed under the ISC license.
|
|
183
183
|
* See the LICENSE file in the root directory of this source tree.
|
|
184
|
-
*/const
|
|
184
|
+
*/const Ve=[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",key:"kfwtm"}]],Rt=o("moon",Ve);/**
|
|
185
185
|
* @license lucide-react v0.562.0 - ISC
|
|
186
186
|
*
|
|
187
187
|
* This source code is licensed under the ISC license.
|
|
188
188
|
* See the LICENSE file in the root directory of this source tree.
|
|
189
|
-
*/const
|
|
189
|
+
*/const Ae=[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551",key:"1miecu"}]],Lt=o("paperclip",Ae);/**
|
|
190
190
|
* @license lucide-react v0.562.0 - ISC
|
|
191
191
|
*
|
|
192
192
|
* This source code is licensed under the ISC license.
|
|
193
193
|
* See the LICENSE file in the root directory of this source tree.
|
|
194
|
-
*/const Pe=[["path",{d:"
|
|
194
|
+
*/const Pe=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],Ht=o("pencil",Pe);/**
|
|
195
195
|
* @license lucide-react v0.562.0 - ISC
|
|
196
196
|
*
|
|
197
197
|
* This source code is licensed under the ISC license.
|
|
198
198
|
* See the LICENSE file in the root directory of this source tree.
|
|
199
|
-
*/const Oe=[["
|
|
199
|
+
*/const Oe=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],Vt=o("plus",Oe);/**
|
|
200
200
|
* @license lucide-react v0.562.0 - ISC
|
|
201
201
|
*
|
|
202
202
|
* This source code is licensed under the ISC license.
|
|
203
203
|
* See the LICENSE file in the root directory of this source tree.
|
|
204
|
-
*/const Ie=[["path",{d:"
|
|
204
|
+
*/const Ie=[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"rib7q0"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"1ymkrd"}]],At=o("quote",Ie);/**
|
|
205
205
|
* @license lucide-react v0.562.0 - ISC
|
|
206
206
|
*
|
|
207
207
|
* This source code is licensed under the ISC license.
|
|
208
208
|
* See the LICENSE file in the root directory of this source tree.
|
|
209
|
-
*/const De=[["
|
|
209
|
+
*/const De=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 12h18",key:"1i2n21"}]],Pt=o("rows-2",De);/**
|
|
210
210
|
* @license lucide-react v0.562.0 - ISC
|
|
211
211
|
*
|
|
212
212
|
* This source code is licensed under the ISC license.
|
|
213
213
|
* See the LICENSE file in the root directory of this source tree.
|
|
214
|
-
*/const Te=[["path",{d:"
|
|
214
|
+
*/const Te=[["path",{d:"M15 12h-5",key:"r7krc0"}],["path",{d:"M15 8h-5",key:"1khuty"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]],Ot=o("scroll-text",Te);/**
|
|
215
215
|
* @license lucide-react v0.562.0 - ISC
|
|
216
216
|
*
|
|
217
217
|
* This source code is licensed under the ISC license.
|
|
218
218
|
* See the LICENSE file in the root directory of this source tree.
|
|
219
|
-
*/const Ue=[["path",{d:"
|
|
219
|
+
*/const Ue=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],It=o("search",Ue);/**
|
|
220
220
|
* @license lucide-react v0.562.0 - ISC
|
|
221
221
|
*
|
|
222
222
|
* This source code is licensed under the ISC license.
|
|
223
223
|
* See the LICENSE file in the root directory of this source tree.
|
|
224
|
-
*/const Fe=[["path",{d:"
|
|
224
|
+
*/const Fe=[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",key:"1i5ecw"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],Dt=o("settings",Fe);/**
|
|
225
225
|
* @license lucide-react v0.562.0 - ISC
|
|
226
226
|
*
|
|
227
227
|
* This source code is licensed under the ISC license.
|
|
228
228
|
* See the LICENSE file in the root directory of this source tree.
|
|
229
|
-
*/const Be=[["path",{d:"
|
|
229
|
+
*/const Be=[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M17 20V8",key:"1tkaf5"}],["path",{d:"M22 4v16",key:"sih9yq"}]],Tt=o("signal",Be);/**
|
|
230
230
|
* @license lucide-react v0.562.0 - ISC
|
|
231
231
|
*
|
|
232
232
|
* This source code is licensed under the ISC license.
|
|
233
233
|
* See the LICENSE file in the root directory of this source tree.
|
|
234
|
-
*/const We=[["path",{d:"
|
|
234
|
+
*/const We=[["path",{d:"M10 5H3",key:"1qgfaw"}],["path",{d:"M12 19H3",key:"yhmn1j"}],["path",{d:"M14 3v4",key:"1sua03"}],["path",{d:"M16 17v4",key:"1q0r14"}],["path",{d:"M21 12h-9",key:"1o4lsq"}],["path",{d:"M21 19h-5",key:"1rlt1p"}],["path",{d:"M21 5h-7",key:"1oszz2"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M8 12H3",key:"a7s4jb"}]],Ut=o("sliders-horizontal",We);/**
|
|
235
235
|
* @license lucide-react v0.562.0 - ISC
|
|
236
236
|
*
|
|
237
237
|
* This source code is licensed under the ISC license.
|
|
238
238
|
* See the LICENSE file in the root directory of this source tree.
|
|
239
|
-
*/const Ke=[["
|
|
239
|
+
*/const Ke=[["path",{d:"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344",key:"2acyp4"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],Ft=o("square-check-big",Ke);/**
|
|
240
240
|
* @license lucide-react v0.562.0 - ISC
|
|
241
241
|
*
|
|
242
242
|
* This source code is licensed under the ISC license.
|
|
243
243
|
* See the LICENSE file in the root directory of this source tree.
|
|
244
|
-
*/const Ze=[["path",{d:"
|
|
244
|
+
*/const Ze=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]],Bt=o("star",Ze);/**
|
|
245
245
|
* @license lucide-react v0.562.0 - ISC
|
|
246
246
|
*
|
|
247
247
|
* This source code is licensed under the ISC license.
|
|
248
248
|
* See the LICENSE file in the root directory of this source tree.
|
|
249
|
-
*/const Ge=[["path",{d:"
|
|
249
|
+
*/const Ge=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m17.66 17.66 1.41 1.41",key:"ptbguv"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}]],Wt=o("sun",Ge);/**
|
|
250
250
|
* @license lucide-react v0.562.0 - ISC
|
|
251
251
|
*
|
|
252
252
|
* This source code is licensed under the ISC license.
|
|
253
253
|
* See the LICENSE file in the root directory of this source tree.
|
|
254
|
-
*/const Je=[["path",{d:"
|
|
254
|
+
*/const Je=[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]],Kt=o("tag",Je);/**
|
|
255
255
|
* @license lucide-react v0.562.0 - ISC
|
|
256
256
|
*
|
|
257
257
|
* This source code is licensed under the ISC license.
|
|
258
258
|
* See the LICENSE file in the root directory of this source tree.
|
|
259
|
-
*/const Qe=[["path",{d:"
|
|
259
|
+
*/const Qe=[["path",{d:"M10 11v6",key:"nco0om"}],["path",{d:"M14 11v6",key:"outv1u"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",key:"miytrc"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",key:"e791ji"}]],Zt=o("trash-2",Qe);/**
|
|
260
260
|
* @license lucide-react v0.562.0 - ISC
|
|
261
261
|
*
|
|
262
262
|
* This source code is licensed under the ISC license.
|
|
263
263
|
* See the LICENSE file in the root directory of this source tree.
|
|
264
|
-
*/const Xe=[["path",{d:"
|
|
264
|
+
*/const Xe=[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",key:"975kel"}],["circle",{cx:"12",cy:"7",r:"4",key:"17ys0d"}]],Gt=o("user",Xe);/**
|
|
265
265
|
* @license lucide-react v0.562.0 - ISC
|
|
266
266
|
*
|
|
267
267
|
* This source code is licensed under the ISC license.
|
|
268
268
|
* See the LICENSE file in the root directory of this source tree.
|
|
269
|
-
*/const Ye=[["path",{d:"
|
|
270
|
-
|
|
269
|
+
*/const Ye=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]],Jt=o("wand-sparkles",Ye);/**
|
|
270
|
+
* @license lucide-react v0.562.0 - ISC
|
|
271
|
+
*
|
|
272
|
+
* This source code is licensed under the ISC license.
|
|
273
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
274
|
+
*/const et=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],Qt=o("x",et);/**
|
|
275
|
+
* @license lucide-react v0.562.0 - ISC
|
|
276
|
+
*
|
|
277
|
+
* This source code is licensed under the ISC license.
|
|
278
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
279
|
+
*/const tt=[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]],Xt=o("zap",tt);export{at as A,rt as B,ct as C,ft as D,_t as E,Mt as F,Pt as G,$t as H,wt as I,mt as J,gt as K,Nt as L,zt as M,Wt as N,Rt as O,Lt as P,At as Q,ot as R,Ft as S,Zt as T,Gt as U,Dt as V,Jt as W,Qt as X,nt as Y,Xt as Z,st as a,dt as b,Vt as c,Ht as d,Et as e,kt as f,ut as g,lt as h,pt as i,bt as j,St as k,Ct as l,it as m,ht as n,qt as o,Ot as p,jt as q,d as r,yt as s,Tt as t,Kt as u,vt as v,xt as w,It as x,Bt as y,Ut as z};
|
|
280
|
+
//# sourceMappingURL=icons-CYCI7Dzg.js.map
|