@caw-sdk/icon 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/caw-icon.d.ts +19 -0
- package/dist/caw-icon.d.ts.map +1 -0
- package/dist/icon-provider/lucide.d.ts +4 -0
- package/dist/icon-provider/lucide.d.ts.map +1 -0
- package/dist/icon-provider/registry.d.ts +7 -0
- package/dist/icon-provider/registry.d.ts.map +1 -0
- package/dist/icon-provider/types.d.ts +19 -0
- package/dist/icon-provider/types.d.ts.map +1 -0
- package/dist/icon.js +231 -0
- package/dist/icon.js.map +1 -0
- package/dist/index.js +442 -0
- package/dist/index.js.map +1 -0
- package/dist/render-icon-nodes.d.ts +4 -0
- package/dist/render-icon-nodes.d.ts.map +1 -0
- package/package.json +41 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { LitElement, nothing } from 'lit';
|
|
2
|
+
import { type IconName } from '@caw-sdk/shared';
|
|
3
|
+
export { getIconProvider, resolveIcon, setIconProvider } from './icon-provider/registry.js';
|
|
4
|
+
export { lucideIconProvider } from './icon-provider/lucide.js';
|
|
5
|
+
export type { IconData, IconProvider, IconSVGElement } from './icon-provider/types.js';
|
|
6
|
+
export declare class CawIcon extends LitElement {
|
|
7
|
+
static styles: import("lit").CSSResultGroup[];
|
|
8
|
+
name: IconName;
|
|
9
|
+
size: number;
|
|
10
|
+
strokeWidth: number;
|
|
11
|
+
ariaLabel: string;
|
|
12
|
+
render(): import("lit").TemplateResult<2> | typeof nothing;
|
|
13
|
+
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
'caw-icon': CawIcon;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=caw-icon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"caw-icon.d.ts","sourceRoot":"","sources":["../src/caw-icon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAO,OAAO,EAAO,MAAM,KAAK,CAAC;AAEpD,OAAO,EAAe,KAAK,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAI7D,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAC5F,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,YAAY,EAAE,QAAQ,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAEvF,qBACa,OAAQ,SAAQ,UAAU;IACrC,MAAM,CAAC,MAAM,iCA2BV;IAGH,IAAI,EAAE,QAAQ,CAAW;IAGzB,IAAI,SAAM;IAGV,WAAW,SAAK;IAGhB,SAAS,SAAM;IAEf,MAAM;CA8BP;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,UAAU,EAAE,OAAO,CAAC;KACrB;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucide.d.ts","sourceRoot":"","sources":["../../src/icon-provider/lucide.ts"],"names":[],"mappings":"AA4BA,OAAO,KAAK,EAAY,YAAY,EAAE,MAAM,YAAY,CAAC;AA6CzD,uDAAuD;AACvD,eAAO,MAAM,kBAAkB,EAAE,YAShC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IconName } from '@caw-sdk/shared';
|
|
2
|
+
import type { IconData, IconProvider } from './types.js';
|
|
3
|
+
/** Troca o provedor de ícones em runtime (ex.: Lucide → Heroicons). */
|
|
4
|
+
export declare function setIconProvider(provider: IconProvider): void;
|
|
5
|
+
export declare function getIconProvider(): IconProvider;
|
|
6
|
+
export declare function resolveIcon(name: IconName): IconData | undefined;
|
|
7
|
+
//# sourceMappingURL=registry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../src/icon-provider/registry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAEhD,OAAO,KAAK,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAIzD,uEAAuE;AACvE,wBAAgB,eAAe,CAAC,QAAQ,EAAE,YAAY,GAAG,IAAI,CAE5D;AAED,wBAAgB,eAAe,IAAI,YAAY,CAE9C;AAED,wBAAgB,WAAW,CAAC,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAEhE"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { IconName } from '@caw-sdk/shared';
|
|
2
|
+
/** Elemento SVG normalizado, independente da biblioteca de origem. */
|
|
3
|
+
export type IconSVGElement = readonly [
|
|
4
|
+
tag: string,
|
|
5
|
+
attrs: Readonly<Record<string, string | number>>
|
|
6
|
+
];
|
|
7
|
+
/** Dados de um ícone prontos para renderização pelo `caw-icon`. */
|
|
8
|
+
export type IconData = {
|
|
9
|
+
nodes: readonly IconSVGElement[];
|
|
10
|
+
animated?: boolean;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Contrato para provedores de ícones.
|
|
14
|
+
* Implemente esta interface e registre com `setIconProvider()` para trocar a biblioteca.
|
|
15
|
+
*/
|
|
16
|
+
export interface IconProvider {
|
|
17
|
+
resolve(name: IconName): IconData | undefined;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/icon-provider/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAEhD,sEAAsE;AACtE,MAAM,MAAM,cAAc,GAAG,SAAS;IACpC,GAAG,EAAE,MAAM;IACX,KAAK,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,CAAC;CACjD,CAAC;AAEF,mEAAmE;AACnE,MAAM,MAAM,QAAQ,GAAG;IACrB,KAAK,EAAE,SAAS,cAAc,EAAE,CAAC;IACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B,OAAO,CAAC,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAC;CAC/C"}
|
package/dist/icon.js
ADDED
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
(function(u){"use strict";/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2019 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
5
|
+
*/var ft;const T=globalThis,z=T.ShadowRoot&&(T.ShadyCSS===void 0||T.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,V=Symbol(),F=new WeakMap;let G=class{constructor(t,e,s){if(this._$cssResult$=!0,s!==V)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(z&&t===void 0){const s=e!==void 0&&e.length===1;s&&(t=F.get(e)),t===void 0&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),s&&F.set(e,t))}return t}toString(){return this.cssText}};const yt=r=>new G(typeof r=="string"?r:r+"",void 0,V),Q=(r,...t)=>{const e=r.length===1?r[0]:t.reduce((s,i,o)=>s+(n=>{if(n._$cssResult$===!0)return n.cssText;if(typeof n=="number")return n;throw Error("Value passed to 'css' function must be a 'css' function result: "+n+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(i)+r[o+1],r[0]);return new G(e,r,V)},_t=(r,t)=>{if(z)r.adoptedStyleSheets=t.map(e=>e instanceof CSSStyleSheet?e:e.styleSheet);else for(const e of t){const s=document.createElement("style"),i=T.litNonce;i!==void 0&&s.setAttribute("nonce",i),s.textContent=e.cssText,r.appendChild(s)}},Y=z?r=>r:r=>r instanceof CSSStyleSheet?(t=>{let e="";for(const s of t.cssRules)e+=s.cssText;return yt(e)})(r):r;/**
|
|
6
|
+
* @license
|
|
7
|
+
* Copyright 2017 Google LLC
|
|
8
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
9
|
+
*/const{is:gt,defineProperty:mt,getOwnPropertyDescriptor:vt,getOwnPropertyNames:At,getOwnPropertySymbols:wt,getPrototypeOf:St}=Object,y=globalThis,tt=y.trustedTypes,bt=tt?tt.emptyScript:"",B=y.reactiveElementPolyfillSupport,C=(r,t)=>r,k={toAttribute(r,t){switch(t){case Boolean:r=r?bt:null;break;case Object:case Array:r=r==null?r:JSON.stringify(r)}return r},fromAttribute(r,t){let e=r;switch(t){case Boolean:e=r!==null;break;case Number:e=r===null?null:Number(r);break;case Object:case Array:try{e=JSON.parse(r)}catch{e=null}}return e}},W=(r,t)=>!gt(r,t),et={attribute:!0,type:String,converter:k,reflect:!1,useDefault:!1,hasChanged:W};Symbol.metadata??(Symbol.metadata=Symbol("metadata")),y.litPropertyMetadata??(y.litPropertyMetadata=new WeakMap);let S=class extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??(this.l=[])).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=et){if(e.state&&(e.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(t)&&((e=Object.create(e)).wrapped=!0),this.elementProperties.set(t,e),!e.noAccessor){const s=Symbol(),i=this.getPropertyDescriptor(t,s,e);i!==void 0&&mt(this.prototype,t,i)}}static getPropertyDescriptor(t,e,s){const{get:i,set:o}=vt(this.prototype,t)??{get(){return this[e]},set(n){this[e]=n}};return{get:i,set(n){const h=i==null?void 0:i.call(this);o==null||o.call(this,n),this.requestUpdate(t,h,s)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??et}static _$Ei(){if(this.hasOwnProperty(C("elementProperties")))return;const t=St(this);t.finalize(),t.l!==void 0&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(C("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(C("properties"))){const e=this.properties,s=[...At(e),...wt(e)];for(const i of s)this.createProperty(i,e[i])}const t=this[Symbol.metadata];if(t!==null){const e=litPropertyMetadata.get(t);if(e!==void 0)for(const[s,i]of e)this.elementProperties.set(s,i)}this._$Eh=new Map;for(const[e,s]of this.elementProperties){const i=this._$Eu(e,s);i!==void 0&&this._$Eh.set(i,e)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const s=new Set(t.flat(1/0).reverse());for(const i of s)e.unshift(Y(i))}else t!==void 0&&e.push(Y(t));return e}static _$Eu(t,e){const s=e.attribute;return s===!1?void 0:typeof s=="string"?s:typeof t=="string"?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){var t;this._$ES=new Promise(e=>this.enableUpdating=e),this._$AL=new Map,this._$E_(),this.requestUpdate(),(t=this.constructor.l)==null||t.forEach(e=>e(this))}addController(t){var e;(this._$EO??(this._$EO=new Set)).add(t),this.renderRoot!==void 0&&this.isConnected&&((e=t.hostConnected)==null||e.call(t))}removeController(t){var e;(e=this._$EO)==null||e.delete(t)}_$E_(){const t=new Map,e=this.constructor.elementProperties;for(const s of e.keys())this.hasOwnProperty(s)&&(t.set(s,this[s]),delete this[s]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return _t(t,this.constructor.elementStyles),t}connectedCallback(){var t;this.renderRoot??(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),(t=this._$EO)==null||t.forEach(e=>{var s;return(s=e.hostConnected)==null?void 0:s.call(e)})}enableUpdating(t){}disconnectedCallback(){var t;(t=this._$EO)==null||t.forEach(e=>{var s;return(s=e.hostDisconnected)==null?void 0:s.call(e)})}attributeChangedCallback(t,e,s){this._$AK(t,s)}_$ET(t,e){var o;const s=this.constructor.elementProperties.get(t),i=this.constructor._$Eu(t,s);if(i!==void 0&&s.reflect===!0){const n=(((o=s.converter)==null?void 0:o.toAttribute)!==void 0?s.converter:k).toAttribute(e,s.type);this._$Em=t,n==null?this.removeAttribute(i):this.setAttribute(i,n),this._$Em=null}}_$AK(t,e){var o,n;const s=this.constructor,i=s._$Eh.get(t);if(i!==void 0&&this._$Em!==i){const h=s.getPropertyOptions(i),a=typeof h.converter=="function"?{fromAttribute:h.converter}:((o=h.converter)==null?void 0:o.fromAttribute)!==void 0?h.converter:k;this._$Em=i;const d=a.fromAttribute(e,h.type);this[i]=d??((n=this._$Ej)==null?void 0:n.get(i))??d,this._$Em=null}}requestUpdate(t,e,s,i=!1,o){var n;if(t!==void 0){const h=this.constructor;if(i===!1&&(o=this[t]),s??(s=h.getPropertyOptions(t)),!((s.hasChanged??W)(o,e)||s.useDefault&&s.reflect&&o===((n=this._$Ej)==null?void 0:n.get(t))&&!this.hasAttribute(h._$Eu(t,s))))return;this.C(t,e,s)}this.isUpdatePending===!1&&(this._$ES=this._$EP())}C(t,e,{useDefault:s,reflect:i,wrapped:o},n){s&&!(this._$Ej??(this._$Ej=new Map)).has(t)&&(this._$Ej.set(t,n??e??this[t]),o!==!0||n!==void 0)||(this._$AL.has(t)||(this.hasUpdated||s||(e=void 0),this._$AL.set(t,e)),i===!0&&this._$Em!==t&&(this._$Eq??(this._$Eq=new Set)).add(t))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(e){Promise.reject(e)}const t=this.scheduleUpdate();return t!=null&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var s;if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??(this.renderRoot=this.createRenderRoot()),this._$Ep){for(const[o,n]of this._$Ep)this[o]=n;this._$Ep=void 0}const i=this.constructor.elementProperties;if(i.size>0)for(const[o,n]of i){const{wrapped:h}=n,a=this[o];h!==!0||this._$AL.has(o)||a===void 0||this.C(o,void 0,n,a)}}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),(s=this._$EO)==null||s.forEach(i=>{var o;return(o=i.hostUpdate)==null?void 0:o.call(i)}),this.update(e)):this._$EM()}catch(i){throw t=!1,this._$EM(),i}t&&this._$AE(e)}willUpdate(t){}_$AE(t){var e;(e=this._$EO)==null||e.forEach(s=>{var i;return(i=s.hostUpdated)==null?void 0:i.call(s)}),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Eq&&(this._$Eq=this._$Eq.forEach(e=>this._$ET(e,this[e]))),this._$EM()}updated(t){}firstUpdated(t){}};S.elementStyles=[],S.shadowRootOptions={mode:"open"},S[C("elementProperties")]=new Map,S[C("finalized")]=new Map,B==null||B({ReactiveElement:S}),(y.reactiveElementVersions??(y.reactiveElementVersions=[])).push("2.1.2");/**
|
|
10
|
+
* @license
|
|
11
|
+
* Copyright 2017 Google LLC
|
|
12
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
13
|
+
*/const x=globalThis,st=r=>r,R=x.trustedTypes,it=R?R.createPolicy("lit-html",{createHTML:r=>r}):void 0,rt="$lit$",_=`lit$${Math.random().toFixed(9).slice(2)}$`,nt="?"+_,Et=`<${nt}>`,m=document,M=()=>m.createComment(""),P=r=>r===null||typeof r!="object"&&typeof r!="function",q=Array.isArray,Ct=r=>q(r)||typeof(r==null?void 0:r[Symbol.iterator])=="function",Z=`[
|
|
14
|
+
\f\r]`,O=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,ot=/-->/g,at=/>/g,v=RegExp(`>|${Z}(?:([^\\s"'>=/]+)(${Z}*=${Z}*(?:[^
|
|
15
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),ht=/'/g,ct=/"/g,lt=/^(?:script|style|textarea|title)$/i,xt=r=>(t,...e)=>({_$litType$:r,strings:t,values:e}),$=xt(2),b=Symbol.for("lit-noChange"),c=Symbol.for("lit-nothing"),dt=new WeakMap,A=m.createTreeWalker(m,129);function pt(r,t){if(!q(r)||!r.hasOwnProperty("raw"))throw Error("invalid template strings array");return it!==void 0?it.createHTML(t):t}const Mt=(r,t)=>{const e=r.length-1,s=[];let i,o=t===2?"<svg>":t===3?"<math>":"",n=O;for(let h=0;h<e;h++){const a=r[h];let d,p,l=-1,f=0;for(;f<a.length&&(n.lastIndex=f,p=n.exec(a),p!==null);)f=n.lastIndex,n===O?p[1]==="!--"?n=ot:p[1]!==void 0?n=at:p[2]!==void 0?(lt.test(p[2])&&(i=RegExp("</"+p[2],"g")),n=v):p[3]!==void 0&&(n=v):n===v?p[0]===">"?(n=i??O,l=-1):p[1]===void 0?l=-2:(l=n.lastIndex-p[2].length,d=p[1],n=p[3]===void 0?v:p[3]==='"'?ct:ht):n===ct||n===ht?n=v:n===ot||n===at?n=O:(n=v,i=void 0);const g=n===v&&r[h+1].startsWith("/>")?" ":"";o+=n===O?a+Et:l>=0?(s.push(d),a.slice(0,l)+rt+a.slice(l)+_+g):a+_+(l===-2?h:g)}return[pt(r,o+(r[e]||"<?>")+(t===2?"</svg>":t===3?"</math>":"")),s]};class U{constructor({strings:t,_$litType$:e},s){let i;this.parts=[];let o=0,n=0;const h=t.length-1,a=this.parts,[d,p]=Mt(t,e);if(this.el=U.createElement(d,s),A.currentNode=this.el.content,e===2||e===3){const l=this.el.content.firstChild;l.replaceWith(...l.childNodes)}for(;(i=A.nextNode())!==null&&a.length<h;){if(i.nodeType===1){if(i.hasAttributes())for(const l of i.getAttributeNames())if(l.endsWith(rt)){const f=p[n++],g=i.getAttribute(l).split(_),D=/([.?@])?(.*)/.exec(f);a.push({type:1,index:o,name:D[2],strings:g,ctor:D[1]==="."?Ot:D[1]==="?"?Ut:D[1]==="@"?Ht:L}),i.removeAttribute(l)}else l.startsWith(_)&&(a.push({type:6,index:o}),i.removeAttribute(l));if(lt.test(i.tagName)){const l=i.textContent.split(_),f=l.length-1;if(f>0){i.textContent=R?R.emptyScript:"";for(let g=0;g<f;g++)i.append(l[g],M()),A.nextNode(),a.push({type:2,index:++o});i.append(l[f],M())}}}else if(i.nodeType===8)if(i.data===nt)a.push({type:2,index:o});else{let l=-1;for(;(l=i.data.indexOf(_,l+1))!==-1;)a.push({type:7,index:o}),l+=_.length-1}o++}}static createElement(t,e){const s=m.createElement("template");return s.innerHTML=t,s}}function E(r,t,e=r,s){var n,h;if(t===b)return t;let i=s!==void 0?(n=e._$Co)==null?void 0:n[s]:e._$Cl;const o=P(t)?void 0:t._$litDirective$;return(i==null?void 0:i.constructor)!==o&&((h=i==null?void 0:i._$AO)==null||h.call(i,!1),o===void 0?i=void 0:(i=new o(r),i._$AT(r,e,s)),s!==void 0?(e._$Co??(e._$Co=[]))[s]=i:e._$Cl=i),i!==void 0&&(t=E(r,i._$AS(r,t.values),i,s)),t}class Pt{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:e},parts:s}=this._$AD,i=((t==null?void 0:t.creationScope)??m).importNode(e,!0);A.currentNode=i;let o=A.nextNode(),n=0,h=0,a=s[0];for(;a!==void 0;){if(n===a.index){let d;a.type===2?d=new H(o,o.nextSibling,this,t):a.type===1?d=new a.ctor(o,a.name,a.strings,this,t):a.type===6&&(d=new It(o,this,t)),this._$AV.push(d),a=s[++h]}n!==(a==null?void 0:a.index)&&(o=A.nextNode(),n++)}return A.currentNode=m,i}p(t){let e=0;for(const s of this._$AV)s!==void 0&&(s.strings!==void 0?(s._$AI(t,s,e),e+=s.strings.length-2):s._$AI(t[e])),e++}}class H{get _$AU(){var t;return((t=this._$AM)==null?void 0:t._$AU)??this._$Cv}constructor(t,e,s,i){this.type=2,this._$AH=c,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=s,this.options=i,this._$Cv=(i==null?void 0:i.isConnected)??!0}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return e!==void 0&&(t==null?void 0:t.nodeType)===11&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=E(this,t,e),P(t)?t===c||t==null||t===""?(this._$AH!==c&&this._$AR(),this._$AH=c):t!==this._$AH&&t!==b&&this._(t):t._$litType$!==void 0?this.$(t):t.nodeType!==void 0?this.T(t):Ct(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==c&&P(this._$AH)?this._$AA.nextSibling.data=t:this.T(m.createTextNode(t)),this._$AH=t}$(t){var o;const{values:e,_$litType$:s}=t,i=typeof s=="number"?this._$AC(t):(s.el===void 0&&(s.el=U.createElement(pt(s.h,s.h[0]),this.options)),s);if(((o=this._$AH)==null?void 0:o._$AD)===i)this._$AH.p(e);else{const n=new Pt(i,this),h=n.u(this.options);n.p(e),this.T(h),this._$AH=n}}_$AC(t){let e=dt.get(t.strings);return e===void 0&&dt.set(t.strings,e=new U(t)),e}k(t){q(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let s,i=0;for(const o of t)i===e.length?e.push(s=new H(this.O(M()),this.O(M()),this,this.options)):s=e[i],s._$AI(o),i++;i<e.length&&(this._$AR(s&&s._$AB.nextSibling,i),e.length=i)}_$AR(t=this._$AA.nextSibling,e){var s;for((s=this._$AP)==null?void 0:s.call(this,!1,!0,e);t!==this._$AB;){const i=st(t).nextSibling;st(t).remove(),t=i}}setConnected(t){var e;this._$AM===void 0&&(this._$Cv=t,(e=this._$AP)==null||e.call(this,t))}}class L{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,s,i,o){this.type=1,this._$AH=c,this._$AN=void 0,this.element=t,this.name=e,this._$AM=i,this.options=o,s.length>2||s[0]!==""||s[1]!==""?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=c}_$AI(t,e=this,s,i){const o=this.strings;let n=!1;if(o===void 0)t=E(this,t,e,0),n=!P(t)||t!==this._$AH&&t!==b,n&&(this._$AH=t);else{const h=t;let a,d;for(t=o[0],a=0;a<o.length-1;a++)d=E(this,h[s+a],e,a),d===b&&(d=this._$AH[a]),n||(n=!P(d)||d!==this._$AH[a]),d===c?t=c:t!==c&&(t+=(d??"")+o[a+1]),this._$AH[a]=d}n&&!i&&this.j(t)}j(t){t===c?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class Ot extends L{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===c?void 0:t}}class Ut extends L{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==c)}}class Ht extends L{constructor(t,e,s,i,o){super(t,e,s,i,o),this.type=5}_$AI(t,e=this){if((t=E(this,t,e,0)??c)===b)return;const s=this._$AH,i=t===c&&s!==c||t.capture!==s.capture||t.once!==s.once||t.passive!==s.passive,o=t!==c&&(s===c||i);i&&this.element.removeEventListener(this.name,this,s),o&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e;typeof this._$AH=="function"?this._$AH.call(((e=this.options)==null?void 0:e.host)??this.element,t):this._$AH.handleEvent(t)}}class It{constructor(t,e,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){E(this,t)}}const J=x.litHtmlPolyfillSupport;J==null||J(U,H),(x.litHtmlVersions??(x.litHtmlVersions=[])).push("3.3.3");const Nt=(r,t,e)=>{const s=(e==null?void 0:e.renderBefore)??t;let i=s._$litPart$;if(i===void 0){const o=(e==null?void 0:e.renderBefore)??null;s._$litPart$=i=new H(t.insertBefore(M(),o),o,void 0,e??{})}return i._$AI(r),i};/**
|
|
16
|
+
* @license
|
|
17
|
+
* Copyright 2017 Google LLC
|
|
18
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
19
|
+
*/const w=globalThis;class I extends S{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var e;const t=super.createRenderRoot();return(e=this.renderOptions).renderBefore??(e.renderBefore=t.firstChild),t}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=Nt(e,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),(t=this._$Do)==null||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),(t=this._$Do)==null||t.setConnected(!1)}render(){return b}}I._$litElement$=!0,I.finalized=!0,(ft=w.litElementHydrateSupport)==null||ft.call(w,{LitElement:I});const K=w.litElementPolyfillSupport;K==null||K({LitElement:I}),(w.litElementVersions??(w.litElementVersions=[])).push("4.2.2");/**
|
|
20
|
+
* @license
|
|
21
|
+
* Copyright 2017 Google LLC
|
|
22
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
23
|
+
*/const Tt=r=>(t,e)=>{e!==void 0?e.addInitializer(()=>{customElements.define(r,t)}):customElements.define(r,t)};/**
|
|
24
|
+
* @license
|
|
25
|
+
* Copyright 2017 Google LLC
|
|
26
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
27
|
+
*/const kt={attribute:!0,type:String,converter:k,reflect:!1,hasChanged:W},Rt=(r=kt,t,e)=>{const{kind:s,metadata:i}=e;let o=globalThis.litPropertyMetadata.get(i);if(o===void 0&&globalThis.litPropertyMetadata.set(i,o=new Map),s==="setter"&&((r=Object.create(r)).wrapped=!0),o.set(e.name,r),s==="accessor"){const{name:n}=e;return{set(h){const a=t.get.call(this);t.set.call(this,h),this.requestUpdate(n,a,r,!0,h)},init(h){return h!==void 0&&this.C(n,void 0,r,h),h}}}if(s==="setter"){const{name:n}=e;return function(h){const a=this[n];t.call(this,h),this.requestUpdate(n,a,r,!0,h)}}throw Error("Unsupported decorator location: "+s)};function j(r){return(t,e)=>typeof e=="object"?Rt(r,t,e):((s,i,o)=>{const n=i.hasOwnProperty(o);return i.constructor.createProperty(o,s),n?Object.getOwnPropertyDescriptor(i,o):void 0})(r,t,e)}const Lt=Q`
|
|
28
|
+
:host {
|
|
29
|
+
--caw-color-bg: #ffffff;
|
|
30
|
+
--caw-color-bg-muted: #f8fafc;
|
|
31
|
+
--caw-color-border: #e2e8f0;
|
|
32
|
+
--caw-color-text: #0f172a;
|
|
33
|
+
--caw-color-text-muted: #64748b;
|
|
34
|
+
--caw-color-primary:rgb(28, 124, 15);
|
|
35
|
+
--caw-color-primary-hover:rgb(8, 75, 17);
|
|
36
|
+
--caw-color-primary-text: #ffffff;
|
|
37
|
+
--caw-color-error: #dc2626;
|
|
38
|
+
--caw-color-error-muted: #fef2f2;
|
|
39
|
+
--caw-radius-md: 0.75rem;
|
|
40
|
+
--caw-radius-sm: 0.5rem;
|
|
41
|
+
--caw-spacing-sm: 0.5rem;
|
|
42
|
+
--caw-spacing-md: 1rem;
|
|
43
|
+
--caw-spacing-lg: 1.5rem;
|
|
44
|
+
--caw-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
|
|
45
|
+
--caw-shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
|
|
46
|
+
--caw-font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
|
|
47
|
+
}
|
|
48
|
+
`;function jt(...r){return[Lt,...r]}/**
|
|
49
|
+
* @license lucide v1.21.0 - ISC
|
|
50
|
+
*
|
|
51
|
+
* This source code is licensed under the ISC license.
|
|
52
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
53
|
+
*/const Dt=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}]];/**
|
|
54
|
+
* @license lucide v1.21.0 - ISC
|
|
55
|
+
*
|
|
56
|
+
* This source code is licensed under the ISC license.
|
|
57
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
58
|
+
*/const zt=[["path",{d:"M20 6 9 17l-5-5"}]];/**
|
|
59
|
+
* @license lucide v1.21.0 - ISC
|
|
60
|
+
*
|
|
61
|
+
* This source code is licensed under the ISC license.
|
|
62
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
63
|
+
*/const Vt=[["path",{d:"m6 9 6 6 6-6"}]];/**
|
|
64
|
+
* @license lucide v1.21.0 - ISC
|
|
65
|
+
*
|
|
66
|
+
* This source code is licensed under the ISC license.
|
|
67
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
68
|
+
*/const Bt=[["path",{d:"m15 18-6-6 6-6"}]];/**
|
|
69
|
+
* @license lucide v1.21.0 - ISC
|
|
70
|
+
*
|
|
71
|
+
* This source code is licensed under the ISC license.
|
|
72
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
73
|
+
*/const Wt=[["path",{d:"m9 18 6-6-6-6"}]];/**
|
|
74
|
+
* @license lucide v1.21.0 - ISC
|
|
75
|
+
*
|
|
76
|
+
* This source code is licensed under the ISC license.
|
|
77
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
78
|
+
*/const qt=[["path",{d:"m18 15-6-6-6 6"}]];/**
|
|
79
|
+
* @license lucide v1.21.0 - ISC
|
|
80
|
+
*
|
|
81
|
+
* This source code is licensed under the ISC license.
|
|
82
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
83
|
+
*/const Zt=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];/**
|
|
84
|
+
* @license lucide v1.21.0 - ISC
|
|
85
|
+
*
|
|
86
|
+
* This source code is licensed under the ISC license.
|
|
87
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
88
|
+
*/const Jt=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];/**
|
|
89
|
+
* @license lucide v1.21.0 - ISC
|
|
90
|
+
*
|
|
91
|
+
* This source code is licensed under the ISC license.
|
|
92
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
93
|
+
*/const Kt=[["path",{d:"M15 3h6v6"}],["path",{d:"M10 14 21 3"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}]];/**
|
|
94
|
+
* @license lucide v1.21.0 - ISC
|
|
95
|
+
*
|
|
96
|
+
* This source code is licensed under the ISC license.
|
|
97
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
98
|
+
*/const Xt=[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143"}],["path",{d:"m2 2 20 20"}]];/**
|
|
99
|
+
* @license lucide v1.21.0 - ISC
|
|
100
|
+
*
|
|
101
|
+
* This source code is licensed under the ISC license.
|
|
102
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
103
|
+
*/const Ft=[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"}],["circle",{cx:"12",cy:"12",r:"3"}]];/**
|
|
104
|
+
* @license lucide v1.21.0 - ISC
|
|
105
|
+
*
|
|
106
|
+
* This source code is licensed under the ISC license.
|
|
107
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
108
|
+
*/const Gt=[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]];/**
|
|
109
|
+
* @license lucide v1.21.0 - ISC
|
|
110
|
+
*
|
|
111
|
+
* This source code is licensed under the ISC license.
|
|
112
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
113
|
+
*/const Qt=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 16v-4"}],["path",{d:"M12 8h.01"}]];/**
|
|
114
|
+
* @license lucide v1.21.0 - ISC
|
|
115
|
+
*
|
|
116
|
+
* This source code is licensed under the ISC license.
|
|
117
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
118
|
+
*/const Yt=[["path",{d:"M12 2v4"}],["path",{d:"m16.2 7.8 2.9-2.9"}],["path",{d:"M18 12h4"}],["path",{d:"m16.2 16.2 2.9 2.9"}],["path",{d:"M12 18v4"}],["path",{d:"m4.9 19.1 2.9-2.9"}],["path",{d:"M2 12h4"}],["path",{d:"m4.9 4.9 2.9 2.9"}]];/**
|
|
119
|
+
* @license lucide v1.21.0 - ISC
|
|
120
|
+
*
|
|
121
|
+
* This source code is licensed under the ISC license.
|
|
122
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
123
|
+
*/const te=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4"}]];/**
|
|
124
|
+
* @license lucide v1.21.0 - ISC
|
|
125
|
+
*
|
|
126
|
+
* This source code is licensed under the ISC license.
|
|
127
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
128
|
+
*/const ee=[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]];/**
|
|
129
|
+
* @license lucide v1.21.0 - ISC
|
|
130
|
+
*
|
|
131
|
+
* This source code is licensed under the ISC license.
|
|
132
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
133
|
+
*/const se=[["path",{d:"M4 5h16"}],["path",{d:"M4 12h16"}],["path",{d:"M4 19h16"}]];/**
|
|
134
|
+
* @license lucide v1.21.0 - ISC
|
|
135
|
+
*
|
|
136
|
+
* This source code is licensed under the ISC license.
|
|
137
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
138
|
+
*/const ie=[["path",{d:"M5 12h14"}]];/**
|
|
139
|
+
* @license lucide v1.21.0 - ISC
|
|
140
|
+
*
|
|
141
|
+
* This source code is licensed under the ISC license.
|
|
142
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
143
|
+
*/const re=[["path",{d:"M5 12h14"}],["path",{d:"M12 5v14"}]];/**
|
|
144
|
+
* @license lucide v1.21.0 - ISC
|
|
145
|
+
*
|
|
146
|
+
* This source code is licensed under the ISC license.
|
|
147
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
148
|
+
*/const ne=[["path",{d:"m21 21-4.34-4.34"}],["circle",{cx:"11",cy:"11",r:"8"}]];/**
|
|
149
|
+
* @license lucide v1.21.0 - ISC
|
|
150
|
+
*
|
|
151
|
+
* This source code is licensed under the ISC license.
|
|
152
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
153
|
+
*/const oe=[["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"}],["circle",{cx:"12",cy:"12",r:"3"}]];/**
|
|
154
|
+
* @license lucide v1.21.0 - ISC
|
|
155
|
+
*
|
|
156
|
+
* This source code is licensed under the ISC license.
|
|
157
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
158
|
+
*/const ae=[["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]];/**
|
|
159
|
+
* @license lucide v1.21.0 - ISC
|
|
160
|
+
*
|
|
161
|
+
* This source code is licensed under the ISC license.
|
|
162
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
163
|
+
*/const he=[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"}],["circle",{cx:"12",cy:"7",r:"4"}]];/**
|
|
164
|
+
* @license lucide v1.21.0 - ISC
|
|
165
|
+
*
|
|
166
|
+
* This source code is licensed under the ISC license.
|
|
167
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
168
|
+
*/const ce={calendar:Dt,check:zt,lock:te,x:[["path",{d:"M18 6 6 18"}],["path",{d:"m6 6 12 12"}]],"chevron-down":Vt,"chevron-up":qt,"chevron-left":Bt,"chevron-right":Wt,plus:re,minus:ie,search:ne,info:Qt,"alert-circle":Zt,loader:Yt,eye:Ft,"eye-off":Xt,mail:ee,user:he,home:Gt,settings:oe,menu:se,"external-link":Kt,copy:Jt,trash:ae};function le(r,t=!1){return{nodes:r.map(([e,s])=>[e,Object.fromEntries(Object.entries(s).filter(i=>i[1]!=null))]),animated:t}}const ut={resolve(r){const t=ce[r];if(t)return le(t,r==="loader")}};let X=ut;function de(r){X=r}function pe(){return X}function $t(r){return X.resolve(r)}function ue(r,t){switch(r){case"path":return $`<path d=${String(t.d??"")}></path>`;case"circle":return $`<circle
|
|
169
|
+
cx=${String(t.cx??0)}
|
|
170
|
+
cy=${String(t.cy??0)}
|
|
171
|
+
r=${String(t.r??0)}
|
|
172
|
+
></circle>`;case"line":return $`<line
|
|
173
|
+
x1=${String(t.x1??0)}
|
|
174
|
+
y1=${String(t.y1??0)}
|
|
175
|
+
x2=${String(t.x2??0)}
|
|
176
|
+
y2=${String(t.y2??0)}
|
|
177
|
+
></line>`;case"rect":return $`<rect
|
|
178
|
+
x=${String(t.x??0)}
|
|
179
|
+
y=${String(t.y??0)}
|
|
180
|
+
width=${String(t.width??0)}
|
|
181
|
+
height=${String(t.height??0)}
|
|
182
|
+
rx=${t.rx!=null?String(t.rx):c}
|
|
183
|
+
ry=${t.ry!=null?String(t.ry):c}
|
|
184
|
+
></rect>`;case"polyline":return $`<polyline points=${String(t.points??"")}></polyline>`;case"polygon":return $`<polygon points=${String(t.points??"")}></polygon>`;default:return $``}}function $e(r){return $`${r.map(([t,e])=>ue(t,e))}`}var fe=Object.defineProperty,ye=Object.getOwnPropertyDescriptor,N=(r,t,e,s)=>{for(var i=s>1?void 0:s?ye(t,e):t,o=r.length-1,n;o>=0;o--)(n=r[o])&&(i=(s?n(t,e,i):n(i))||i);return s&&i&&fe(t,e,i),i};u.CawIcon=class extends I{constructor(){super(...arguments),this.name="check",this.size=24,this.strokeWidth=2,this.ariaLabel=""}render(){const t=$t(this.name);if(!t)return c;const e=!this.ariaLabel,s=t.animated?"icon icon--spin":"icon";return $`
|
|
185
|
+
<svg
|
|
186
|
+
class=${s}
|
|
187
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
188
|
+
width=${this.size}
|
|
189
|
+
height=${this.size}
|
|
190
|
+
viewBox="0 0 24 24"
|
|
191
|
+
fill="none"
|
|
192
|
+
stroke="currentColor"
|
|
193
|
+
stroke-width=${this.strokeWidth}
|
|
194
|
+
stroke-linecap="round"
|
|
195
|
+
stroke-linejoin="round"
|
|
196
|
+
part="icon"
|
|
197
|
+
role=${e?c:"img"}
|
|
198
|
+
aria-hidden=${e?"true":c}
|
|
199
|
+
aria-label=${e?c:this.ariaLabel}
|
|
200
|
+
>
|
|
201
|
+
${$e(t.nodes)}
|
|
202
|
+
</svg>
|
|
203
|
+
`}},u.CawIcon.styles=jt(Q`
|
|
204
|
+
:host {
|
|
205
|
+
display: inline-flex;
|
|
206
|
+
align-items: center;
|
|
207
|
+
justify-content: center;
|
|
208
|
+
flex-shrink: 0;
|
|
209
|
+
line-height: 0;
|
|
210
|
+
color: var(--caw-icon-color, currentColor);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
svg {
|
|
214
|
+
display: block;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.icon--spin {
|
|
218
|
+
animation: caw-icon-spin 1s linear infinite;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
@keyframes caw-icon-spin {
|
|
222
|
+
from {
|
|
223
|
+
transform: rotate(0deg);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
to {
|
|
227
|
+
transform: rotate(360deg);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
`),N([j({type:String})],u.CawIcon.prototype,"name",2),N([j({type:Number})],u.CawIcon.prototype,"size",2),N([j({type:Number,attribute:"stroke-width"})],u.CawIcon.prototype,"strokeWidth",2),N([j({type:String,attribute:"aria-label"})],u.CawIcon.prototype,"ariaLabel",2),u.CawIcon=N([Tt("caw-icon")],u.CawIcon),u.getIconProvider=pe,u.lucideIconProvider=ut,u.resolveIcon=$t,u.setIconProvider=de,Object.defineProperty(u,Symbol.toStringTag,{value:"Module"})})(this.CawIcon=this.CawIcon||{});
|
|
231
|
+
//# sourceMappingURL=icon.js.map
|
package/dist/icon.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon.js","sources":["../../../node_modules/.pnpm/@lit+reactive-element@2.1.2/node_modules/@lit/reactive-element/css-tag.js","../../../node_modules/.pnpm/@lit+reactive-element@2.1.2/node_modules/@lit/reactive-element/reactive-element.js","../../../node_modules/.pnpm/lit-html@3.3.3/node_modules/lit-html/lit-html.js","../../../node_modules/.pnpm/lit-element@4.2.2/node_modules/lit-element/lit-element.js","../../../node_modules/.pnpm/@lit+reactive-element@2.1.2/node_modules/@lit/reactive-element/decorators/custom-element.js","../../../node_modules/.pnpm/@lit+reactive-element@2.1.2/node_modules/@lit/reactive-element/decorators/property.js","../../shared/src/index.ts","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/calendar.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/check.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/chevron-down.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/chevron-left.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/chevron-right.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/chevron-up.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/circle-alert.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/copy.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/external-link.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/eye-off.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/eye.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/house.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/info.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/loader.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/lock.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/mail.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/menu.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/minus.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/plus.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/search.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/settings.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/trash.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/user.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/x.mjs","../src/icon-provider/lucide.ts","../src/icon-provider/registry.ts","../src/render-icon-nodes.ts","../src/caw-icon.ts"],"sourcesContent":["/**\n * @license\n * Copyright 2019 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=globalThis,e=t.ShadowRoot&&(void 0===t.ShadyCSS||t.ShadyCSS.nativeShadow)&&\"adoptedStyleSheets\"in Document.prototype&&\"replace\"in CSSStyleSheet.prototype,s=Symbol(),o=new WeakMap;class n{constructor(t,e,o){if(this._$cssResult$=!0,o!==s)throw Error(\"CSSResult is not constructable. Use `unsafeCSS` or `css` instead.\");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const s=this.t;if(e&&void 0===t){const e=void 0!==s&&1===s.length;e&&(t=o.get(s)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&o.set(s,t))}return t}toString(){return this.cssText}}const r=t=>new n(\"string\"==typeof t?t:t+\"\",void 0,s),i=(t,...e)=>{const o=1===t.length?t[0]:e.reduce((e,s,o)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if(\"number\"==typeof t)return t;throw Error(\"Value passed to 'css' function must be a 'css' function result: \"+t+\". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.\")})(s)+t[o+1],t[0]);return new n(o,t,s)},S=(s,o)=>{if(e)s.adoptedStyleSheets=o.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet);else for(const e of o){const o=document.createElement(\"style\"),n=t.litNonce;void 0!==n&&o.setAttribute(\"nonce\",n),o.textContent=e.cssText,s.appendChild(o)}},c=e?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e=\"\";for(const s of t.cssRules)e+=s.cssText;return r(e)})(t):t;export{n as CSSResult,S as adoptStyles,i as css,c as getCompatibleStyle,e as supportsAdoptingStyleSheets,r as unsafeCSS};\n//# sourceMappingURL=css-tag.js.map\n","import{getCompatibleStyle as t,adoptStyles as s}from\"./css-tag.js\";export{CSSResult,css,supportsAdoptingStyleSheets,unsafeCSS}from\"./css-tag.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */const{is:i,defineProperty:e,getOwnPropertyDescriptor:h,getOwnPropertyNames:r,getOwnPropertySymbols:o,getPrototypeOf:n}=Object,a=globalThis,c=a.trustedTypes,l=c?c.emptyScript:\"\",p=a.reactiveElementPolyfillSupport,d=(t,s)=>t,u={toAttribute(t,s){switch(s){case Boolean:t=t?l:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,s){let i=t;switch(s){case Boolean:i=null!==t;break;case Number:i=null===t?null:Number(t);break;case Object:case Array:try{i=JSON.parse(t)}catch(t){i=null}}return i}},f=(t,s)=>!i(t,s),b={attribute:!0,type:String,converter:u,reflect:!1,useDefault:!1,hasChanged:f};Symbol.metadata??=Symbol(\"metadata\"),a.litPropertyMetadata??=new WeakMap;class y extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,s=b){if(s.state&&(s.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(t)&&((s=Object.create(s)).wrapped=!0),this.elementProperties.set(t,s),!s.noAccessor){const i=Symbol(),h=this.getPropertyDescriptor(t,i,s);void 0!==h&&e(this.prototype,t,h)}}static getPropertyDescriptor(t,s,i){const{get:e,set:r}=h(this.prototype,t)??{get(){return this[s]},set(t){this[s]=t}};return{get:e,set(s){const h=e?.call(this);r?.call(this,s),this.requestUpdate(t,h,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??b}static _$Ei(){if(this.hasOwnProperty(d(\"elementProperties\")))return;const t=n(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(d(\"finalized\")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(d(\"properties\"))){const t=this.properties,s=[...r(t),...o(t)];for(const i of s)this.createProperty(i,t[i])}const t=this[Symbol.metadata];if(null!==t){const s=litPropertyMetadata.get(t);if(void 0!==s)for(const[t,i]of s)this.elementProperties.set(t,i)}this._$Eh=new Map;for(const[t,s]of this.elementProperties){const i=this._$Eu(t,s);void 0!==i&&this._$Eh.set(i,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(s){const i=[];if(Array.isArray(s)){const e=new Set(s.flat(1/0).reverse());for(const s of e)i.unshift(t(s))}else void 0!==s&&i.push(t(s));return i}static _$Eu(t,s){const i=s.attribute;return!1===i?void 0:\"string\"==typeof i?i:\"string\"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise(t=>this.enableUpdating=t),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach(t=>t(this))}addController(t){(this._$EO??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$EO?.delete(t)}_$E_(){const t=new Map,s=this.constructor.elementProperties;for(const i of s.keys())this.hasOwnProperty(i)&&(t.set(i,this[i]),delete this[i]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return s(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach(t=>t.hostConnected?.())}enableUpdating(t){}disconnectedCallback(){this._$EO?.forEach(t=>t.hostDisconnected?.())}attributeChangedCallback(t,s,i){this._$AK(t,i)}_$ET(t,s){const i=this.constructor.elementProperties.get(t),e=this.constructor._$Eu(t,i);if(void 0!==e&&!0===i.reflect){const h=(void 0!==i.converter?.toAttribute?i.converter:u).toAttribute(s,i.type);this._$Em=t,null==h?this.removeAttribute(e):this.setAttribute(e,h),this._$Em=null}}_$AK(t,s){const i=this.constructor,e=i._$Eh.get(t);if(void 0!==e&&this._$Em!==e){const t=i.getPropertyOptions(e),h=\"function\"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:u;this._$Em=e;const r=h.fromAttribute(s,t.type);this[e]=r??this._$Ej?.get(e)??r,this._$Em=null}}requestUpdate(t,s,i,e=!1,h){if(void 0!==t){const r=this.constructor;if(!1===e&&(h=this[t]),i??=r.getPropertyOptions(t),!((i.hasChanged??f)(h,s)||i.useDefault&&i.reflect&&h===this._$Ej?.get(t)&&!this.hasAttribute(r._$Eu(t,i))))return;this.C(t,s,i)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,s,{useDefault:i,reflect:e,wrapped:h},r){i&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,r??s??this[t]),!0!==h||void 0!==r)||(this._$AL.has(t)||(this.hasUpdated||i||(s=void 0),this._$AL.set(t,s)),!0===e&&this._$Em!==t&&(this._$Eq??=new Set).add(t))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,s]of this._$Ep)this[t]=s;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[s,i]of t){const{wrapped:t}=i,e=this[s];!0!==t||this._$AL.has(s)||void 0===e||this.C(s,void 0,i,e)}}let t=!1;const s=this._$AL;try{t=this.shouldUpdate(s),t?(this.willUpdate(s),this._$EO?.forEach(t=>t.hostUpdate?.()),this.update(s)):this._$EM()}catch(s){throw t=!1,this._$EM(),s}t&&this._$AE(s)}willUpdate(t){}_$AE(t){this._$EO?.forEach(t=>t.hostUpdated?.()),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Eq&&=this._$Eq.forEach(t=>this._$ET(t,this[t])),this._$EM()}updated(t){}firstUpdated(t){}}y.elementStyles=[],y.shadowRootOptions={mode:\"open\"},y[d(\"elementProperties\")]=new Map,y[d(\"finalized\")]=new Map,p?.({ReactiveElement:y}),(a.reactiveElementVersions??=[]).push(\"2.1.2\");export{y as ReactiveElement,s as adoptStyles,u as defaultConverter,t as getCompatibleStyle,f as notEqual};\n//# sourceMappingURL=reactive-element.js.map\n","/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=globalThis,i=t=>t,s=t.trustedTypes,e=s?s.createPolicy(\"lit-html\",{createHTML:t=>t}):void 0,h=\"$lit$\",o=`lit$${Math.random().toFixed(9).slice(2)}$`,n=\"?\"+o,r=`<${n}>`,l=document,c=()=>l.createComment(\"\"),a=t=>null===t||\"object\"!=typeof t&&\"function\"!=typeof t,u=Array.isArray,d=t=>u(t)||\"function\"==typeof t?.[Symbol.iterator],f=\"[ \\t\\n\\f\\r]\",v=/<(?:(!--|\\/[^a-zA-Z])|(\\/?[a-zA-Z][^>\\s]*)|(\\/?$))/g,_=/-->/g,m=/>/g,p=RegExp(`>|${f}(?:([^\\\\s\"'>=/]+)(${f}*=${f}*(?:[^ \\t\\n\\f\\r\"'\\`<>=]|(\"|')|))|$)`,\"g\"),g=/'/g,$=/\"/g,y=/^(?:script|style|textarea|title)$/i,x=t=>(i,...s)=>({_$litType$:t,strings:i,values:s}),b=x(1),w=x(2),T=x(3),E=Symbol.for(\"lit-noChange\"),A=Symbol.for(\"lit-nothing\"),C=new WeakMap,P=l.createTreeWalker(l,129);function V(t,i){if(!u(t)||!t.hasOwnProperty(\"raw\"))throw Error(\"invalid template strings array\");return void 0!==e?e.createHTML(i):i}const N=(t,i)=>{const s=t.length-1,e=[];let n,l=2===i?\"<svg>\":3===i?\"<math>\":\"\",c=v;for(let i=0;i<s;i++){const s=t[i];let a,u,d=-1,f=0;for(;f<s.length&&(c.lastIndex=f,u=c.exec(s),null!==u);)f=c.lastIndex,c===v?\"!--\"===u[1]?c=_:void 0!==u[1]?c=m:void 0!==u[2]?(y.test(u[2])&&(n=RegExp(\"</\"+u[2],\"g\")),c=p):void 0!==u[3]&&(c=p):c===p?\">\"===u[0]?(c=n??v,d=-1):void 0===u[1]?d=-2:(d=c.lastIndex-u[2].length,a=u[1],c=void 0===u[3]?p:'\"'===u[3]?$:g):c===$||c===g?c=p:c===_||c===m?c=v:(c=p,n=void 0);const x=c===p&&t[i+1].startsWith(\"/>\")?\" \":\"\";l+=c===v?s+r:d>=0?(e.push(a),s.slice(0,d)+h+s.slice(d)+o+x):s+o+(-2===d?i:x)}return[V(t,l+(t[s]||\"<?>\")+(2===i?\"</svg>\":3===i?\"</math>\":\"\")),e]};class S{constructor({strings:t,_$litType$:i},e){let r;this.parts=[];let l=0,a=0;const u=t.length-1,d=this.parts,[f,v]=N(t,i);if(this.el=S.createElement(f,e),P.currentNode=this.el.content,2===i||3===i){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=P.nextNode())&&d.length<u;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(h)){const i=v[a++],s=r.getAttribute(t).split(o),e=/([.?@])?(.*)/.exec(i);d.push({type:1,index:l,name:e[2],strings:s,ctor:\".\"===e[1]?I:\"?\"===e[1]?L:\"@\"===e[1]?z:H}),r.removeAttribute(t)}else t.startsWith(o)&&(d.push({type:6,index:l}),r.removeAttribute(t));if(y.test(r.tagName)){const t=r.textContent.split(o),i=t.length-1;if(i>0){r.textContent=s?s.emptyScript:\"\";for(let s=0;s<i;s++)r.append(t[s],c()),P.nextNode(),d.push({type:2,index:++l});r.append(t[i],c())}}}else if(8===r.nodeType)if(r.data===n)d.push({type:2,index:l});else{let t=-1;for(;-1!==(t=r.data.indexOf(o,t+1));)d.push({type:7,index:l}),t+=o.length-1}l++}}static createElement(t,i){const s=l.createElement(\"template\");return s.innerHTML=t,s}}function M(t,i,s=t,e){if(i===E)return i;let h=void 0!==e?s._$Co?.[e]:s._$Cl;const o=a(i)?void 0:i._$litDirective$;return h?.constructor!==o&&(h?._$AO?.(!1),void 0===o?h=void 0:(h=new o(t),h._$AT(t,s,e)),void 0!==e?(s._$Co??=[])[e]=h:s._$Cl=h),void 0!==h&&(i=M(t,h._$AS(t,i.values),h,e)),i}class R{constructor(t,i){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=i}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:i},parts:s}=this._$AD,e=(t?.creationScope??l).importNode(i,!0);P.currentNode=e;let h=P.nextNode(),o=0,n=0,r=s[0];for(;void 0!==r;){if(o===r.index){let i;2===r.type?i=new k(h,h.nextSibling,this,t):1===r.type?i=new r.ctor(h,r.name,r.strings,this,t):6===r.type&&(i=new Z(h,this,t)),this._$AV.push(i),r=s[++n]}o!==r?.index&&(h=P.nextNode(),o++)}return P.currentNode=l,e}p(t){let i=0;for(const s of this._$AV)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,i),i+=s.strings.length-2):s._$AI(t[i])),i++}}class k{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,i,s,e){this.type=2,this._$AH=A,this._$AN=void 0,this._$AA=t,this._$AB=i,this._$AM=s,this.options=e,this._$Cv=e?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const i=this._$AM;return void 0!==i&&11===t?.nodeType&&(t=i.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,i=this){t=M(this,t,i),a(t)?t===A||null==t||\"\"===t?(this._$AH!==A&&this._$AR(),this._$AH=A):t!==this._$AH&&t!==E&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):d(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==A&&a(this._$AH)?this._$AA.nextSibling.data=t:this.T(l.createTextNode(t)),this._$AH=t}$(t){const{values:i,_$litType$:s}=t,e=\"number\"==typeof s?this._$AC(t):(void 0===s.el&&(s.el=S.createElement(V(s.h,s.h[0]),this.options)),s);if(this._$AH?._$AD===e)this._$AH.p(i);else{const t=new R(e,this),s=t.u(this.options);t.p(i),this.T(s),this._$AH=t}}_$AC(t){let i=C.get(t.strings);return void 0===i&&C.set(t.strings,i=new S(t)),i}k(t){u(this._$AH)||(this._$AH=[],this._$AR());const i=this._$AH;let s,e=0;for(const h of t)e===i.length?i.push(s=new k(this.O(c()),this.O(c()),this,this.options)):s=i[e],s._$AI(h),e++;e<i.length&&(this._$AR(s&&s._$AB.nextSibling,e),i.length=e)}_$AR(t=this._$AA.nextSibling,s){for(this._$AP?.(!1,!0,s);t!==this._$AB;){const s=i(t).nextSibling;i(t).remove(),t=s}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class H{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,i,s,e,h){this.type=1,this._$AH=A,this._$AN=void 0,this.element=t,this.name=i,this._$AM=e,this.options=h,s.length>2||\"\"!==s[0]||\"\"!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=A}_$AI(t,i=this,s,e){const h=this.strings;let o=!1;if(void 0===h)t=M(this,t,i,0),o=!a(t)||t!==this._$AH&&t!==E,o&&(this._$AH=t);else{const e=t;let n,r;for(t=h[0],n=0;n<h.length-1;n++)r=M(this,e[s+n],i,n),r===E&&(r=this._$AH[n]),o||=!a(r)||r!==this._$AH[n],r===A?t=A:t!==A&&(t+=(r??\"\")+h[n+1]),this._$AH[n]=r}o&&!e&&this.j(t)}j(t){t===A?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??\"\")}}class I extends H{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===A?void 0:t}}class L extends H{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==A)}}class z extends H{constructor(t,i,s,e,h){super(t,i,s,e,h),this.type=5}_$AI(t,i=this){if((t=M(this,t,i,0)??A)===E)return;const s=this._$AH,e=t===A&&s!==A||t.capture!==s.capture||t.once!==s.once||t.passive!==s.passive,h=t!==A&&(s===A||e);e&&this.element.removeEventListener(this.name,this,s),h&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){\"function\"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class Z{constructor(t,i,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=i,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){M(this,t)}}const j={M:h,P:o,A:n,C:1,L:N,R,D:d,V:M,I:k,H,N:L,U:z,B:I,F:Z},B=t.litHtmlPolyfillSupport;B?.(S,k),(t.litHtmlVersions??=[]).push(\"3.3.3\");const D=(t,i,s)=>{const e=s?.renderBefore??i;let h=e._$litPart$;if(void 0===h){const t=s?.renderBefore??null;e._$litPart$=h=new k(i.insertBefore(c(),t),t,void 0,s??{})}return h._$AI(t),h};export{j as _$LH,b as html,T as mathml,E as noChange,A as nothing,D as render,w as svg};\n//# sourceMappingURL=lit-html.js.map\n","import{ReactiveElement as t}from\"@lit/reactive-element\";export*from\"@lit/reactive-element\";import{render as e,noChange as r}from\"lit-html\";export*from\"lit-html\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */const s=globalThis;class i extends t{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const r=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=e(r,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return r}}i._$litElement$=!0,i[\"finalized\"]=!0,s.litElementHydrateSupport?.({LitElement:i});const o=s.litElementPolyfillSupport;o?.({LitElement:i});const n={_$AK:(t,e,r)=>{t._$AK(e,r)},_$AL:t=>t._$AL};(s.litElementVersions??=[]).push(\"4.2.2\");export{i as LitElement,n as _$LE};\n//# sourceMappingURL=lit-element.js.map\n","/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=t=>(e,o)=>{void 0!==o?o.addInitializer(()=>{customElements.define(t,e)}):customElements.define(t,e)};export{t as customElement};\n//# sourceMappingURL=custom-element.js.map\n","import{notEqual as t,defaultConverter as e}from\"../reactive-element.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */const o={attribute:!0,type:String,converter:e,reflect:!1,hasChanged:t},r=(t=o,e,r)=>{const{kind:n,metadata:i}=r;let s=globalThis.litPropertyMetadata.get(i);if(void 0===s&&globalThis.litPropertyMetadata.set(i,s=new Map),\"setter\"===n&&((t=Object.create(t)).wrapped=!0),s.set(r.name,t),\"accessor\"===n){const{name:o}=r;return{set(r){const n=e.get.call(this);e.set.call(this,r),this.requestUpdate(o,n,t,!0,r)},init(e){return void 0!==e&&this.C(o,void 0,t,e),e}}}if(\"setter\"===n){const{name:o}=r;return function(r){const n=this[o];e.call(this,r),this.requestUpdate(o,n,t,!0,r)}}throw Error(\"Unsupported decorator location: \"+n)};function n(t){return(e,o)=>\"object\"==typeof o?r(t,e,o):((t,e,o)=>{const r=e.hasOwnProperty(o);return e.constructor.createProperty(o,t),r?Object.getOwnPropertyDescriptor(e,o):void 0})(t,e,o)}export{n as property,r as standardProperty};\n//# sourceMappingURL=property.js.map\n","import { css, type CSSResultGroup } from 'lit';\n\nexport type Variant = 'default' | 'outlined';\nexport type ButtonVariant = 'primary' | 'outlined' | 'ghost';\nexport type BadgeVariant = 'default' | 'secondary' | 'destructive' | 'outline';\nexport type InputType =\n | 'text'\n | 'email'\n | 'password'\n | 'number'\n | 'search'\n | 'tel'\n | 'url';\n\nexport type SelectOption = {\n value: string;\n label: string;\n disabled?: boolean;\n};\n\nexport type DateShortcutId = 'today' | 'tomorrow' | 'next-week' | 'next-month';\n\nexport type IconName =\n | 'alert-circle'\n | 'calendar'\n | 'check'\n | 'chevron-down'\n | 'chevron-left'\n | 'chevron-right'\n | 'chevron-up'\n | 'copy'\n | 'external-link'\n | 'eye'\n | 'eye-off'\n | 'home'\n | 'info'\n | 'loader'\n | 'lock'\n | 'mail'\n | 'menu'\n | 'minus'\n | 'plus'\n | 'search'\n | 'settings'\n | 'trash'\n | 'user'\n | 'x';\n\nexport const tokens = css`\n :host {\n --caw-color-bg: #ffffff;\n --caw-color-bg-muted: #f8fafc;\n --caw-color-border: #e2e8f0;\n --caw-color-text: #0f172a;\n --caw-color-text-muted: #64748b;\n --caw-color-primary:rgb(28, 124, 15);\n --caw-color-primary-hover:rgb(8, 75, 17);\n --caw-color-primary-text: #ffffff;\n --caw-color-error: #dc2626;\n --caw-color-error-muted: #fef2f2;\n --caw-radius-md: 0.75rem;\n --caw-radius-sm: 0.5rem;\n --caw-spacing-sm: 0.5rem;\n --caw-spacing-md: 1rem;\n --caw-spacing-lg: 1.5rem;\n --caw-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);\n --caw-shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);\n --caw-font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;\n }\n`;\n\nexport function adoptStyles(...styles: CSSResultGroup[]): CSSResultGroup[] {\n return [tokens, ...styles];\n}\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Calendar = [\n [\"path\", { d: \"M8 2v4\" }],\n [\"path\", { d: \"M16 2v4\" }],\n [\"rect\", { width: \"18\", height: \"18\", x: \"3\", y: \"4\", rx: \"2\" }],\n [\"path\", { d: \"M3 10h18\" }]\n];\n\nexport { Calendar as default };\n//# sourceMappingURL=calendar.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Check = [[\"path\", { d: \"M20 6 9 17l-5-5\" }]];\n\nexport { Check as default };\n//# sourceMappingURL=check.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ChevronDown = [[\"path\", { d: \"m6 9 6 6 6-6\" }]];\n\nexport { ChevronDown as default };\n//# sourceMappingURL=chevron-down.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ChevronLeft = [[\"path\", { d: \"m15 18-6-6 6-6\" }]];\n\nexport { ChevronLeft as default };\n//# sourceMappingURL=chevron-left.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ChevronRight = [[\"path\", { d: \"m9 18 6-6-6-6\" }]];\n\nexport { ChevronRight as default };\n//# sourceMappingURL=chevron-right.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ChevronUp = [[\"path\", { d: \"m18 15-6-6-6 6\" }]];\n\nexport { ChevronUp as default };\n//# sourceMappingURL=chevron-up.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst CircleAlert = [\n [\"circle\", { cx: \"12\", cy: \"12\", r: \"10\" }],\n [\"line\", { x1: \"12\", x2: \"12\", y1: \"8\", y2: \"12\" }],\n [\"line\", { x1: \"12\", x2: \"12.01\", y1: \"16\", y2: \"16\" }]\n];\n\nexport { CircleAlert as default };\n//# sourceMappingURL=circle-alert.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Copy = [\n [\"rect\", { width: \"14\", height: \"14\", x: \"8\", y: \"8\", rx: \"2\", ry: \"2\" }],\n [\"path\", { d: \"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\" }]\n];\n\nexport { Copy as default };\n//# sourceMappingURL=copy.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ExternalLink = [\n [\"path\", { d: \"M15 3h6v6\" }],\n [\"path\", { d: \"M10 14 21 3\" }],\n [\"path\", { d: \"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\" }]\n];\n\nexport { ExternalLink as default };\n//# sourceMappingURL=external-link.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst EyeOff = [\n [\n \"path\",\n {\n d: \"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49\"\n }\n ],\n [\"path\", { d: \"M14.084 14.158a3 3 0 0 1-4.242-4.242\" }],\n [\n \"path\",\n {\n d: \"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143\"\n }\n ],\n [\"path\", { d: \"m2 2 20 20\" }]\n];\n\nexport { EyeOff as default };\n//# sourceMappingURL=eye-off.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Eye = [\n [\n \"path\",\n {\n d: \"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0\"\n }\n ],\n [\"circle\", { cx: \"12\", cy: \"12\", r: \"3\" }]\n];\n\nexport { Eye as default };\n//# sourceMappingURL=eye.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst House = [\n [\"path\", { d: \"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8\" }],\n [\n \"path\",\n {\n d: \"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"\n }\n ]\n];\n\nexport { House as default };\n//# sourceMappingURL=house.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Info = [\n [\"circle\", { cx: \"12\", cy: \"12\", r: \"10\" }],\n [\"path\", { d: \"M12 16v-4\" }],\n [\"path\", { d: \"M12 8h.01\" }]\n];\n\nexport { Info as default };\n//# sourceMappingURL=info.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Loader = [\n [\"path\", { d: \"M12 2v4\" }],\n [\"path\", { d: \"m16.2 7.8 2.9-2.9\" }],\n [\"path\", { d: \"M18 12h4\" }],\n [\"path\", { d: \"m16.2 16.2 2.9 2.9\" }],\n [\"path\", { d: \"M12 18v4\" }],\n [\"path\", { d: \"m4.9 19.1 2.9-2.9\" }],\n [\"path\", { d: \"M2 12h4\" }],\n [\"path\", { d: \"m4.9 4.9 2.9 2.9\" }]\n];\n\nexport { Loader as default };\n//# sourceMappingURL=loader.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Lock = [\n [\"rect\", { width: \"18\", height: \"11\", x: \"3\", y: \"11\", rx: \"2\", ry: \"2\" }],\n [\"path\", { d: \"M7 11V7a5 5 0 0 1 10 0v4\" }]\n];\n\nexport { Lock as default };\n//# sourceMappingURL=lock.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Mail = [\n [\"path\", { d: \"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7\" }],\n [\"rect\", { x: \"2\", y: \"4\", width: \"20\", height: \"16\", rx: \"2\" }]\n];\n\nexport { Mail as default };\n//# sourceMappingURL=mail.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Menu = [\n [\"path\", { d: \"M4 5h16\" }],\n [\"path\", { d: \"M4 12h16\" }],\n [\"path\", { d: \"M4 19h16\" }]\n];\n\nexport { Menu as default };\n//# sourceMappingURL=menu.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Minus = [[\"path\", { d: \"M5 12h14\" }]];\n\nexport { Minus as default };\n//# sourceMappingURL=minus.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Plus = [\n [\"path\", { d: \"M5 12h14\" }],\n [\"path\", { d: \"M12 5v14\" }]\n];\n\nexport { Plus as default };\n//# sourceMappingURL=plus.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Search = [\n [\"path\", { d: \"m21 21-4.34-4.34\" }],\n [\"circle\", { cx: \"11\", cy: \"11\", r: \"8\" }]\n];\n\nexport { Search as default };\n//# sourceMappingURL=search.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Settings = [\n [\n \"path\",\n {\n 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\"\n }\n ],\n [\"circle\", { cx: \"12\", cy: \"12\", r: \"3\" }]\n];\n\nexport { Settings as default };\n//# sourceMappingURL=settings.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Trash = [\n [\"path\", { d: \"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6\" }],\n [\"path\", { d: \"M3 6h18\" }],\n [\"path\", { d: \"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\" }]\n];\n\nexport { Trash as default };\n//# sourceMappingURL=trash.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst User = [\n [\"path\", { d: \"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2\" }],\n [\"circle\", { cx: \"12\", cy: \"7\", r: \"4\" }]\n];\n\nexport { User as default };\n//# sourceMappingURL=user.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst X = [\n [\"path\", { d: \"M18 6 6 18\" }],\n [\"path\", { d: \"m6 6 12 12\" }]\n];\n\nexport { X as default };\n//# sourceMappingURL=x.mjs.map\n","import type { IconName } from '@caw-sdk/shared';\nimport type { IconNode } from 'lucide';\nimport {\n Calendar,\n Check,\n ChevronDown,\n ChevronLeft,\n ChevronRight,\n ChevronUp,\n CircleAlert,\n Copy,\n ExternalLink,\n Eye,\n EyeOff,\n Home,\n Info,\n Loader,\n Lock,\n Mail,\n Menu,\n Minus,\n Plus,\n Search,\n Settings,\n Trash,\n User,\n X,\n} from 'lucide';\nimport type { IconData, IconProvider } from './types.js';\n\n/**\n * Mapeamento entre os nomes públicos do CAW (`IconName`) e os ícones Lucide.\n * Para adicionar um ícone: inclua o nome em `@caw-sdk/shared` e importe aqui.\n */\nconst LUCIDE_ICONS: Record<IconName, IconNode> = {\n calendar: Calendar,\n check: Check,\n lock: Lock,\n x: X,\n 'chevron-down': ChevronDown,\n 'chevron-up': ChevronUp,\n 'chevron-left': ChevronLeft,\n 'chevron-right': ChevronRight,\n plus: Plus,\n minus: Minus,\n search: Search,\n info: Info,\n 'alert-circle': CircleAlert,\n loader: Loader,\n eye: Eye,\n 'eye-off': EyeOff,\n mail: Mail,\n user: User,\n home: Home,\n settings: Settings,\n menu: Menu,\n 'external-link': ExternalLink,\n copy: Copy,\n trash: Trash,\n};\n\nfunction toIconData(nodes: IconNode, animated = false): IconData {\n return {\n nodes: nodes.map(([tag, attrs]) => [\n tag,\n Object.fromEntries(\n Object.entries(attrs).filter((entry): entry is [string, string | number] => entry[1] != null),\n ),\n ]),\n animated,\n };\n}\n\n/** Provedor padrão — usa ícones do pacote `lucide`. */\nexport const lucideIconProvider: IconProvider = {\n resolve(name) {\n const icon = LUCIDE_ICONS[name];\n if (!icon) {\n return undefined;\n }\n\n return toIconData(icon, name === 'loader');\n },\n};\n","import type { IconName } from '@caw-sdk/shared';\nimport { lucideIconProvider } from './lucide.js';\nimport type { IconData, IconProvider } from './types.js';\n\nlet activeProvider: IconProvider = lucideIconProvider;\n\n/** Troca o provedor de ícones em runtime (ex.: Lucide → Heroicons). */\nexport function setIconProvider(provider: IconProvider): void {\n activeProvider = provider;\n}\n\nexport function getIconProvider(): IconProvider {\n return activeProvider;\n}\n\nexport function resolveIcon(name: IconName): IconData | undefined {\n return activeProvider.resolve(name);\n}\n","import { nothing, svg, type TemplateResult } from 'lit';\nimport type { IconSVGElement } from './icon-provider/types.js';\n\nfunction renderSvgElement(\n tag: string,\n attrs: Readonly<Record<string, string | number>>,\n): TemplateResult {\n switch (tag) {\n case 'path':\n return svg`<path d=${String(attrs.d ?? '')}></path>`;\n case 'circle':\n return svg`<circle\n cx=${String(attrs.cx ?? 0)}\n cy=${String(attrs.cy ?? 0)}\n r=${String(attrs.r ?? 0)}\n ></circle>`;\n case 'line':\n return svg`<line\n x1=${String(attrs.x1 ?? 0)}\n y1=${String(attrs.y1 ?? 0)}\n x2=${String(attrs.x2 ?? 0)}\n y2=${String(attrs.y2 ?? 0)}\n ></line>`;\n case 'rect':\n return svg`<rect\n x=${String(attrs.x ?? 0)}\n y=${String(attrs.y ?? 0)}\n width=${String(attrs.width ?? 0)}\n height=${String(attrs.height ?? 0)}\n rx=${attrs.rx != null ? String(attrs.rx) : nothing}\n ry=${attrs.ry != null ? String(attrs.ry) : nothing}\n ></rect>`;\n case 'polyline':\n return svg`<polyline points=${String(attrs.points ?? '')}></polyline>`;\n case 'polygon':\n return svg`<polygon points=${String(attrs.points ?? '')}></polygon>`;\n default:\n return svg``;\n }\n}\n\nexport function renderIconNodes(\n nodes: readonly IconSVGElement[],\n): TemplateResult {\n return svg`${nodes.map(([tag, attrs]) => renderSvgElement(tag, attrs))}`;\n}\n","import { LitElement, css, nothing, svg } from 'lit';\nimport { customElement, property } from 'lit/decorators.js';\nimport { adoptStyles, type IconName } from '@caw-sdk/shared';\nimport { resolveIcon } from './icon-provider/registry.js';\nimport { renderIconNodes } from './render-icon-nodes.js';\n\nexport { getIconProvider, resolveIcon, setIconProvider } from './icon-provider/registry.js';\nexport { lucideIconProvider } from './icon-provider/lucide.js';\nexport type { IconData, IconProvider, IconSVGElement } from './icon-provider/types.js';\n\n@customElement('caw-icon')\nexport class CawIcon extends LitElement {\n static styles = adoptStyles(css`\n :host {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n line-height: 0;\n color: var(--caw-icon-color, currentColor);\n }\n\n svg {\n display: block;\n }\n\n .icon--spin {\n animation: caw-icon-spin 1s linear infinite;\n }\n\n @keyframes caw-icon-spin {\n from {\n transform: rotate(0deg);\n }\n\n to {\n transform: rotate(360deg);\n }\n }\n `);\n\n @property({ type: String })\n name: IconName = 'check';\n\n @property({ type: Number })\n size = 24;\n\n @property({ type: Number, attribute: 'stroke-width' })\n strokeWidth = 2;\n\n @property({ type: String, attribute: 'aria-label' })\n ariaLabel = '';\n\n render() {\n const icon = resolveIcon(this.name);\n if (!icon) {\n return nothing;\n }\n\n const decorative = !this.ariaLabel;\n const svgClass = icon.animated ? 'icon icon--spin' : 'icon';\n\n return svg`\n <svg\n class=${svgClass}\n xmlns=\"http://www.w3.org/2000/svg\"\n width=${this.size}\n height=${this.size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=${this.strokeWidth}\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n part=\"icon\"\n role=${decorative ? nothing : 'img'}\n aria-hidden=${decorative ? 'true' : nothing}\n aria-label=${decorative ? nothing : this.ariaLabel}\n >\n ${renderIconNodes(icon.nodes)}\n </svg>\n `;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'caw-icon': CawIcon;\n }\n}\n"],"names":["t","e","s","o","n$3","r","n","i","S","c","h","a","l","p","d","u","f","b","y$1","_a","_b","y","v","_","m","g","$","x","w","E","A","C","P","V","N","I","L","z","H","M","R","k","Z","B","D","tokens","css","adoptStyles","styles","Calendar","Check","ChevronDown","ChevronLeft","ChevronRight","ChevronUp","CircleAlert","Copy","ExternalLink","EyeOff","Eye","House","Info","Loader","Lock","Mail","Menu","Minus","Plus","Search","Settings","Trash","User","LUCIDE_ICONS","Home","toIconData","nodes","animated","tag","attrs","entry","lucideIconProvider","name","icon","activeProvider","setIconProvider","provider","getIconProvider","resolveIcon","renderSvgElement","svg","nothing","renderIconNodes","CawIcon","LitElement","decorative","svgClass","__decorateClass","property","customElement"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30]}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
import { svg as o, nothing as a, css as y, LitElement as u } from "lit";
|
|
2
|
+
import { property as s, customElement as v } from "lit/decorators.js";
|
|
3
|
+
import { adoptStyles as g } from "@caw-sdk/shared";
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide v1.21.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const m = [
|
|
11
|
+
["path", { d: "M8 2v4" }],
|
|
12
|
+
["path", { d: "M16 2v4" }],
|
|
13
|
+
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }],
|
|
14
|
+
["path", { d: "M3 10h18" }]
|
|
15
|
+
];
|
|
16
|
+
/**
|
|
17
|
+
* @license lucide v1.21.0 - ISC
|
|
18
|
+
*
|
|
19
|
+
* This source code is licensed under the ISC license.
|
|
20
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
21
|
+
*/
|
|
22
|
+
const x = [["path", { d: "M20 6 9 17l-5-5" }]];
|
|
23
|
+
/**
|
|
24
|
+
* @license lucide v1.21.0 - ISC
|
|
25
|
+
*
|
|
26
|
+
* This source code is licensed under the ISC license.
|
|
27
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
28
|
+
*/
|
|
29
|
+
const f = [["path", { d: "m6 9 6 6 6-6" }]];
|
|
30
|
+
/**
|
|
31
|
+
* @license lucide v1.21.0 - ISC
|
|
32
|
+
*
|
|
33
|
+
* This source code is licensed under the ISC license.
|
|
34
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
35
|
+
*/
|
|
36
|
+
const M = [["path", { d: "m15 18-6-6 6-6" }]];
|
|
37
|
+
/**
|
|
38
|
+
* @license lucide v1.21.0 - ISC
|
|
39
|
+
*
|
|
40
|
+
* This source code is licensed under the ISC license.
|
|
41
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
42
|
+
*/
|
|
43
|
+
const $ = [["path", { d: "m9 18 6-6-6-6" }]];
|
|
44
|
+
/**
|
|
45
|
+
* @license lucide v1.21.0 - ISC
|
|
46
|
+
*
|
|
47
|
+
* This source code is licensed under the ISC license.
|
|
48
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
49
|
+
*/
|
|
50
|
+
const w = [["path", { d: "m18 15-6-6-6 6" }]];
|
|
51
|
+
/**
|
|
52
|
+
* @license lucide v1.21.0 - ISC
|
|
53
|
+
*
|
|
54
|
+
* This source code is licensed under the ISC license.
|
|
55
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
56
|
+
*/
|
|
57
|
+
const S = [
|
|
58
|
+
["circle", { cx: "12", cy: "12", r: "10" }],
|
|
59
|
+
["line", { x1: "12", x2: "12", y1: "8", y2: "12" }],
|
|
60
|
+
["line", { x1: "12", x2: "12.01", y1: "16", y2: "16" }]
|
|
61
|
+
];
|
|
62
|
+
/**
|
|
63
|
+
* @license lucide v1.21.0 - ISC
|
|
64
|
+
*
|
|
65
|
+
* This source code is licensed under the ISC license.
|
|
66
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
67
|
+
*/
|
|
68
|
+
const b = [
|
|
69
|
+
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }],
|
|
70
|
+
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" }]
|
|
71
|
+
];
|
|
72
|
+
/**
|
|
73
|
+
* @license lucide v1.21.0 - ISC
|
|
74
|
+
*
|
|
75
|
+
* This source code is licensed under the ISC license.
|
|
76
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
77
|
+
*/
|
|
78
|
+
const C = [
|
|
79
|
+
["path", { d: "M15 3h6v6" }],
|
|
80
|
+
["path", { d: "M10 14 21 3" }],
|
|
81
|
+
["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }]
|
|
82
|
+
];
|
|
83
|
+
/**
|
|
84
|
+
* @license lucide v1.21.0 - ISC
|
|
85
|
+
*
|
|
86
|
+
* This source code is licensed under the ISC license.
|
|
87
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
88
|
+
*/
|
|
89
|
+
const k = [
|
|
90
|
+
[
|
|
91
|
+
"path",
|
|
92
|
+
{
|
|
93
|
+
d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
["path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }],
|
|
97
|
+
[
|
|
98
|
+
"path",
|
|
99
|
+
{
|
|
100
|
+
d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
["path", { d: "m2 2 20 20" }]
|
|
104
|
+
];
|
|
105
|
+
/**
|
|
106
|
+
* @license lucide v1.21.0 - ISC
|
|
107
|
+
*
|
|
108
|
+
* This source code is licensed under the ISC license.
|
|
109
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
110
|
+
*/
|
|
111
|
+
const L = [
|
|
112
|
+
[
|
|
113
|
+
"path",
|
|
114
|
+
{
|
|
115
|
+
d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
["circle", { cx: "12", cy: "12", r: "3" }]
|
|
119
|
+
];
|
|
120
|
+
/**
|
|
121
|
+
* @license lucide v1.21.0 - ISC
|
|
122
|
+
*
|
|
123
|
+
* This source code is licensed under the ISC license.
|
|
124
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
125
|
+
*/
|
|
126
|
+
const I = [
|
|
127
|
+
["path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }],
|
|
128
|
+
[
|
|
129
|
+
"path",
|
|
130
|
+
{
|
|
131
|
+
d: "M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"
|
|
132
|
+
}
|
|
133
|
+
]
|
|
134
|
+
];
|
|
135
|
+
/**
|
|
136
|
+
* @license lucide v1.21.0 - ISC
|
|
137
|
+
*
|
|
138
|
+
* This source code is licensed under the ISC license.
|
|
139
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
140
|
+
*/
|
|
141
|
+
const P = [
|
|
142
|
+
["circle", { cx: "12", cy: "12", r: "10" }],
|
|
143
|
+
["path", { d: "M12 16v-4" }],
|
|
144
|
+
["path", { d: "M12 8h.01" }]
|
|
145
|
+
];
|
|
146
|
+
/**
|
|
147
|
+
* @license lucide v1.21.0 - ISC
|
|
148
|
+
*
|
|
149
|
+
* This source code is licensed under the ISC license.
|
|
150
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
151
|
+
*/
|
|
152
|
+
const E = [
|
|
153
|
+
["path", { d: "M12 2v4" }],
|
|
154
|
+
["path", { d: "m16.2 7.8 2.9-2.9" }],
|
|
155
|
+
["path", { d: "M18 12h4" }],
|
|
156
|
+
["path", { d: "m16.2 16.2 2.9 2.9" }],
|
|
157
|
+
["path", { d: "M12 18v4" }],
|
|
158
|
+
["path", { d: "m4.9 19.1 2.9-2.9" }],
|
|
159
|
+
["path", { d: "M2 12h4" }],
|
|
160
|
+
["path", { d: "m4.9 4.9 2.9 2.9" }]
|
|
161
|
+
];
|
|
162
|
+
/**
|
|
163
|
+
* @license lucide v1.21.0 - ISC
|
|
164
|
+
*
|
|
165
|
+
* This source code is licensed under the ISC license.
|
|
166
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
167
|
+
*/
|
|
168
|
+
const O = [
|
|
169
|
+
["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }],
|
|
170
|
+
["path", { d: "M7 11V7a5 5 0 0 1 10 0v4" }]
|
|
171
|
+
];
|
|
172
|
+
/**
|
|
173
|
+
* @license lucide v1.21.0 - ISC
|
|
174
|
+
*
|
|
175
|
+
* This source code is licensed under the ISC license.
|
|
176
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
177
|
+
*/
|
|
178
|
+
const _ = [
|
|
179
|
+
["path", { d: "m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7" }],
|
|
180
|
+
["rect", { x: "2", y: "4", width: "20", height: "16", rx: "2" }]
|
|
181
|
+
];
|
|
182
|
+
/**
|
|
183
|
+
* @license lucide v1.21.0 - ISC
|
|
184
|
+
*
|
|
185
|
+
* This source code is licensed under the ISC license.
|
|
186
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
187
|
+
*/
|
|
188
|
+
const j = [
|
|
189
|
+
["path", { d: "M4 5h16" }],
|
|
190
|
+
["path", { d: "M4 12h16" }],
|
|
191
|
+
["path", { d: "M4 19h16" }]
|
|
192
|
+
];
|
|
193
|
+
/**
|
|
194
|
+
* @license lucide v1.21.0 - ISC
|
|
195
|
+
*
|
|
196
|
+
* This source code is licensed under the ISC license.
|
|
197
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
198
|
+
*/
|
|
199
|
+
const z = [["path", { d: "M5 12h14" }]];
|
|
200
|
+
/**
|
|
201
|
+
* @license lucide v1.21.0 - ISC
|
|
202
|
+
*
|
|
203
|
+
* This source code is licensed under the ISC license.
|
|
204
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
205
|
+
*/
|
|
206
|
+
const D = [
|
|
207
|
+
["path", { d: "M5 12h14" }],
|
|
208
|
+
["path", { d: "M12 5v14" }]
|
|
209
|
+
];
|
|
210
|
+
/**
|
|
211
|
+
* @license lucide v1.21.0 - ISC
|
|
212
|
+
*
|
|
213
|
+
* This source code is licensed under the ISC license.
|
|
214
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
215
|
+
*/
|
|
216
|
+
const H = [
|
|
217
|
+
["path", { d: "m21 21-4.34-4.34" }],
|
|
218
|
+
["circle", { cx: "11", cy: "11", r: "8" }]
|
|
219
|
+
];
|
|
220
|
+
/**
|
|
221
|
+
* @license lucide v1.21.0 - ISC
|
|
222
|
+
*
|
|
223
|
+
* This source code is licensed under the ISC license.
|
|
224
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
225
|
+
*/
|
|
226
|
+
const V = [
|
|
227
|
+
[
|
|
228
|
+
"path",
|
|
229
|
+
{
|
|
230
|
+
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"
|
|
231
|
+
}
|
|
232
|
+
],
|
|
233
|
+
["circle", { cx: "12", cy: "12", r: "3" }]
|
|
234
|
+
];
|
|
235
|
+
/**
|
|
236
|
+
* @license lucide v1.21.0 - ISC
|
|
237
|
+
*
|
|
238
|
+
* This source code is licensed under the ISC license.
|
|
239
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
240
|
+
*/
|
|
241
|
+
const N = [
|
|
242
|
+
["path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }],
|
|
243
|
+
["path", { d: "M3 6h18" }],
|
|
244
|
+
["path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" }]
|
|
245
|
+
];
|
|
246
|
+
/**
|
|
247
|
+
* @license lucide v1.21.0 - ISC
|
|
248
|
+
*
|
|
249
|
+
* This source code is licensed under the ISC license.
|
|
250
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
251
|
+
*/
|
|
252
|
+
const A = [
|
|
253
|
+
["path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }],
|
|
254
|
+
["circle", { cx: "12", cy: "7", r: "4" }]
|
|
255
|
+
];
|
|
256
|
+
/**
|
|
257
|
+
* @license lucide v1.21.0 - ISC
|
|
258
|
+
*
|
|
259
|
+
* This source code is licensed under the ISC license.
|
|
260
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
261
|
+
*/
|
|
262
|
+
const U = [
|
|
263
|
+
["path", { d: "M18 6 6 18" }],
|
|
264
|
+
["path", { d: "m6 6 12 12" }]
|
|
265
|
+
], W = {
|
|
266
|
+
calendar: m,
|
|
267
|
+
check: x,
|
|
268
|
+
lock: O,
|
|
269
|
+
x: U,
|
|
270
|
+
"chevron-down": f,
|
|
271
|
+
"chevron-up": w,
|
|
272
|
+
"chevron-left": M,
|
|
273
|
+
"chevron-right": $,
|
|
274
|
+
plus: D,
|
|
275
|
+
minus: z,
|
|
276
|
+
search: H,
|
|
277
|
+
info: P,
|
|
278
|
+
"alert-circle": S,
|
|
279
|
+
loader: E,
|
|
280
|
+
eye: L,
|
|
281
|
+
"eye-off": k,
|
|
282
|
+
mail: _,
|
|
283
|
+
user: A,
|
|
284
|
+
home: I,
|
|
285
|
+
settings: V,
|
|
286
|
+
menu: j,
|
|
287
|
+
"external-link": C,
|
|
288
|
+
copy: b,
|
|
289
|
+
trash: N
|
|
290
|
+
};
|
|
291
|
+
function B(e, t = !1) {
|
|
292
|
+
return {
|
|
293
|
+
nodes: e.map(([r, c]) => [
|
|
294
|
+
r,
|
|
295
|
+
Object.fromEntries(
|
|
296
|
+
Object.entries(c).filter((n) => n[1] != null)
|
|
297
|
+
)
|
|
298
|
+
]),
|
|
299
|
+
animated: t
|
|
300
|
+
};
|
|
301
|
+
}
|
|
302
|
+
const R = {
|
|
303
|
+
resolve(e) {
|
|
304
|
+
const t = W[e];
|
|
305
|
+
if (t)
|
|
306
|
+
return B(t, e === "loader");
|
|
307
|
+
}
|
|
308
|
+
};
|
|
309
|
+
let d = R;
|
|
310
|
+
function Y(e) {
|
|
311
|
+
d = e;
|
|
312
|
+
}
|
|
313
|
+
function Z() {
|
|
314
|
+
return d;
|
|
315
|
+
}
|
|
316
|
+
function T(e) {
|
|
317
|
+
return d.resolve(e);
|
|
318
|
+
}
|
|
319
|
+
function X(e, t) {
|
|
320
|
+
switch (e) {
|
|
321
|
+
case "path":
|
|
322
|
+
return o`<path d=${String(t.d ?? "")}></path>`;
|
|
323
|
+
case "circle":
|
|
324
|
+
return o`<circle
|
|
325
|
+
cx=${String(t.cx ?? 0)}
|
|
326
|
+
cy=${String(t.cy ?? 0)}
|
|
327
|
+
r=${String(t.r ?? 0)}
|
|
328
|
+
></circle>`;
|
|
329
|
+
case "line":
|
|
330
|
+
return o`<line
|
|
331
|
+
x1=${String(t.x1 ?? 0)}
|
|
332
|
+
y1=${String(t.y1 ?? 0)}
|
|
333
|
+
x2=${String(t.x2 ?? 0)}
|
|
334
|
+
y2=${String(t.y2 ?? 0)}
|
|
335
|
+
></line>`;
|
|
336
|
+
case "rect":
|
|
337
|
+
return o`<rect
|
|
338
|
+
x=${String(t.x ?? 0)}
|
|
339
|
+
y=${String(t.y ?? 0)}
|
|
340
|
+
width=${String(t.width ?? 0)}
|
|
341
|
+
height=${String(t.height ?? 0)}
|
|
342
|
+
rx=${t.rx != null ? String(t.rx) : a}
|
|
343
|
+
ry=${t.ry != null ? String(t.ry) : a}
|
|
344
|
+
></rect>`;
|
|
345
|
+
case "polyline":
|
|
346
|
+
return o`<polyline points=${String(t.points ?? "")}></polyline>`;
|
|
347
|
+
case "polygon":
|
|
348
|
+
return o`<polygon points=${String(t.points ?? "")}></polygon>`;
|
|
349
|
+
default:
|
|
350
|
+
return o``;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
function q(e) {
|
|
354
|
+
return o`${e.map(([t, r]) => X(t, r))}`;
|
|
355
|
+
}
|
|
356
|
+
var F = Object.defineProperty, G = Object.getOwnPropertyDescriptor, h = (e, t, r, c) => {
|
|
357
|
+
for (var n = c > 1 ? void 0 : c ? G(t, r) : t, p = e.length - 1, l; p >= 0; p--)
|
|
358
|
+
(l = e[p]) && (n = (c ? l(t, r, n) : l(n)) || n);
|
|
359
|
+
return c && n && F(t, r, n), n;
|
|
360
|
+
};
|
|
361
|
+
let i = class extends u {
|
|
362
|
+
constructor() {
|
|
363
|
+
super(...arguments), this.name = "check", this.size = 24, this.strokeWidth = 2, this.ariaLabel = "";
|
|
364
|
+
}
|
|
365
|
+
render() {
|
|
366
|
+
const e = T(this.name);
|
|
367
|
+
if (!e)
|
|
368
|
+
return a;
|
|
369
|
+
const t = !this.ariaLabel, r = e.animated ? "icon icon--spin" : "icon";
|
|
370
|
+
return o`
|
|
371
|
+
<svg
|
|
372
|
+
class=${r}
|
|
373
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
374
|
+
width=${this.size}
|
|
375
|
+
height=${this.size}
|
|
376
|
+
viewBox="0 0 24 24"
|
|
377
|
+
fill="none"
|
|
378
|
+
stroke="currentColor"
|
|
379
|
+
stroke-width=${this.strokeWidth}
|
|
380
|
+
stroke-linecap="round"
|
|
381
|
+
stroke-linejoin="round"
|
|
382
|
+
part="icon"
|
|
383
|
+
role=${t ? a : "img"}
|
|
384
|
+
aria-hidden=${t ? "true" : a}
|
|
385
|
+
aria-label=${t ? a : this.ariaLabel}
|
|
386
|
+
>
|
|
387
|
+
${q(e.nodes)}
|
|
388
|
+
</svg>
|
|
389
|
+
`;
|
|
390
|
+
}
|
|
391
|
+
};
|
|
392
|
+
i.styles = g(y`
|
|
393
|
+
:host {
|
|
394
|
+
display: inline-flex;
|
|
395
|
+
align-items: center;
|
|
396
|
+
justify-content: center;
|
|
397
|
+
flex-shrink: 0;
|
|
398
|
+
line-height: 0;
|
|
399
|
+
color: var(--caw-icon-color, currentColor);
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
svg {
|
|
403
|
+
display: block;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.icon--spin {
|
|
407
|
+
animation: caw-icon-spin 1s linear infinite;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
@keyframes caw-icon-spin {
|
|
411
|
+
from {
|
|
412
|
+
transform: rotate(0deg);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
to {
|
|
416
|
+
transform: rotate(360deg);
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
`);
|
|
420
|
+
h([
|
|
421
|
+
s({ type: String })
|
|
422
|
+
], i.prototype, "name", 2);
|
|
423
|
+
h([
|
|
424
|
+
s({ type: Number })
|
|
425
|
+
], i.prototype, "size", 2);
|
|
426
|
+
h([
|
|
427
|
+
s({ type: Number, attribute: "stroke-width" })
|
|
428
|
+
], i.prototype, "strokeWidth", 2);
|
|
429
|
+
h([
|
|
430
|
+
s({ type: String, attribute: "aria-label" })
|
|
431
|
+
], i.prototype, "ariaLabel", 2);
|
|
432
|
+
i = h([
|
|
433
|
+
v("caw-icon")
|
|
434
|
+
], i);
|
|
435
|
+
export {
|
|
436
|
+
i as CawIcon,
|
|
437
|
+
Z as getIconProvider,
|
|
438
|
+
R as lucideIconProvider,
|
|
439
|
+
T as resolveIcon,
|
|
440
|
+
Y as setIconProvider
|
|
441
|
+
};
|
|
442
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/calendar.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/check.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/chevron-down.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/chevron-left.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/chevron-right.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/chevron-up.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/circle-alert.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/copy.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/external-link.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/eye-off.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/eye.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/house.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/info.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/loader.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/lock.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/mail.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/menu.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/minus.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/plus.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/search.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/settings.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/trash.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/user.mjs","../../../node_modules/.pnpm/lucide@1.21.0/node_modules/lucide/dist/esm/icons/x.mjs","../src/icon-provider/lucide.ts","../src/icon-provider/registry.ts","../src/render-icon-nodes.ts","../src/caw-icon.ts"],"sourcesContent":["/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Calendar = [\n [\"path\", { d: \"M8 2v4\" }],\n [\"path\", { d: \"M16 2v4\" }],\n [\"rect\", { width: \"18\", height: \"18\", x: \"3\", y: \"4\", rx: \"2\" }],\n [\"path\", { d: \"M3 10h18\" }]\n];\n\nexport { Calendar as default };\n//# sourceMappingURL=calendar.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Check = [[\"path\", { d: \"M20 6 9 17l-5-5\" }]];\n\nexport { Check as default };\n//# sourceMappingURL=check.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ChevronDown = [[\"path\", { d: \"m6 9 6 6 6-6\" }]];\n\nexport { ChevronDown as default };\n//# sourceMappingURL=chevron-down.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ChevronLeft = [[\"path\", { d: \"m15 18-6-6 6-6\" }]];\n\nexport { ChevronLeft as default };\n//# sourceMappingURL=chevron-left.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ChevronRight = [[\"path\", { d: \"m9 18 6-6-6-6\" }]];\n\nexport { ChevronRight as default };\n//# sourceMappingURL=chevron-right.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ChevronUp = [[\"path\", { d: \"m18 15-6-6-6 6\" }]];\n\nexport { ChevronUp as default };\n//# sourceMappingURL=chevron-up.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst CircleAlert = [\n [\"circle\", { cx: \"12\", cy: \"12\", r: \"10\" }],\n [\"line\", { x1: \"12\", x2: \"12\", y1: \"8\", y2: \"12\" }],\n [\"line\", { x1: \"12\", x2: \"12.01\", y1: \"16\", y2: \"16\" }]\n];\n\nexport { CircleAlert as default };\n//# sourceMappingURL=circle-alert.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Copy = [\n [\"rect\", { width: \"14\", height: \"14\", x: \"8\", y: \"8\", rx: \"2\", ry: \"2\" }],\n [\"path\", { d: \"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\" }]\n];\n\nexport { Copy as default };\n//# sourceMappingURL=copy.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst ExternalLink = [\n [\"path\", { d: \"M15 3h6v6\" }],\n [\"path\", { d: \"M10 14 21 3\" }],\n [\"path\", { d: \"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\" }]\n];\n\nexport { ExternalLink as default };\n//# sourceMappingURL=external-link.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst EyeOff = [\n [\n \"path\",\n {\n d: \"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49\"\n }\n ],\n [\"path\", { d: \"M14.084 14.158a3 3 0 0 1-4.242-4.242\" }],\n [\n \"path\",\n {\n d: \"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143\"\n }\n ],\n [\"path\", { d: \"m2 2 20 20\" }]\n];\n\nexport { EyeOff as default };\n//# sourceMappingURL=eye-off.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Eye = [\n [\n \"path\",\n {\n d: \"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0\"\n }\n ],\n [\"circle\", { cx: \"12\", cy: \"12\", r: \"3\" }]\n];\n\nexport { Eye as default };\n//# sourceMappingURL=eye.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst House = [\n [\"path\", { d: \"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8\" }],\n [\n \"path\",\n {\n d: \"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"\n }\n ]\n];\n\nexport { House as default };\n//# sourceMappingURL=house.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Info = [\n [\"circle\", { cx: \"12\", cy: \"12\", r: \"10\" }],\n [\"path\", { d: \"M12 16v-4\" }],\n [\"path\", { d: \"M12 8h.01\" }]\n];\n\nexport { Info as default };\n//# sourceMappingURL=info.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Loader = [\n [\"path\", { d: \"M12 2v4\" }],\n [\"path\", { d: \"m16.2 7.8 2.9-2.9\" }],\n [\"path\", { d: \"M18 12h4\" }],\n [\"path\", { d: \"m16.2 16.2 2.9 2.9\" }],\n [\"path\", { d: \"M12 18v4\" }],\n [\"path\", { d: \"m4.9 19.1 2.9-2.9\" }],\n [\"path\", { d: \"M2 12h4\" }],\n [\"path\", { d: \"m4.9 4.9 2.9 2.9\" }]\n];\n\nexport { Loader as default };\n//# sourceMappingURL=loader.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Lock = [\n [\"rect\", { width: \"18\", height: \"11\", x: \"3\", y: \"11\", rx: \"2\", ry: \"2\" }],\n [\"path\", { d: \"M7 11V7a5 5 0 0 1 10 0v4\" }]\n];\n\nexport { Lock as default };\n//# sourceMappingURL=lock.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Mail = [\n [\"path\", { d: \"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7\" }],\n [\"rect\", { x: \"2\", y: \"4\", width: \"20\", height: \"16\", rx: \"2\" }]\n];\n\nexport { Mail as default };\n//# sourceMappingURL=mail.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Menu = [\n [\"path\", { d: \"M4 5h16\" }],\n [\"path\", { d: \"M4 12h16\" }],\n [\"path\", { d: \"M4 19h16\" }]\n];\n\nexport { Menu as default };\n//# sourceMappingURL=menu.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Minus = [[\"path\", { d: \"M5 12h14\" }]];\n\nexport { Minus as default };\n//# sourceMappingURL=minus.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Plus = [\n [\"path\", { d: \"M5 12h14\" }],\n [\"path\", { d: \"M12 5v14\" }]\n];\n\nexport { Plus as default };\n//# sourceMappingURL=plus.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Search = [\n [\"path\", { d: \"m21 21-4.34-4.34\" }],\n [\"circle\", { cx: \"11\", cy: \"11\", r: \"8\" }]\n];\n\nexport { Search as default };\n//# sourceMappingURL=search.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Settings = [\n [\n \"path\",\n {\n 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\"\n }\n ],\n [\"circle\", { cx: \"12\", cy: \"12\", r: \"3\" }]\n];\n\nexport { Settings as default };\n//# sourceMappingURL=settings.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Trash = [\n [\"path\", { d: \"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6\" }],\n [\"path\", { d: \"M3 6h18\" }],\n [\"path\", { d: \"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\" }]\n];\n\nexport { Trash as default };\n//# sourceMappingURL=trash.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst User = [\n [\"path\", { d: \"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2\" }],\n [\"circle\", { cx: \"12\", cy: \"7\", r: \"4\" }]\n];\n\nexport { User as default };\n//# sourceMappingURL=user.mjs.map\n","/**\n * @license lucide v1.21.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst X = [\n [\"path\", { d: \"M18 6 6 18\" }],\n [\"path\", { d: \"m6 6 12 12\" }]\n];\n\nexport { X as default };\n//# sourceMappingURL=x.mjs.map\n","import type { IconName } from '@caw-sdk/shared';\nimport type { IconNode } from 'lucide';\nimport {\n Calendar,\n Check,\n ChevronDown,\n ChevronLeft,\n ChevronRight,\n ChevronUp,\n CircleAlert,\n Copy,\n ExternalLink,\n Eye,\n EyeOff,\n Home,\n Info,\n Loader,\n Lock,\n Mail,\n Menu,\n Minus,\n Plus,\n Search,\n Settings,\n Trash,\n User,\n X,\n} from 'lucide';\nimport type { IconData, IconProvider } from './types.js';\n\n/**\n * Mapeamento entre os nomes públicos do CAW (`IconName`) e os ícones Lucide.\n * Para adicionar um ícone: inclua o nome em `@caw-sdk/shared` e importe aqui.\n */\nconst LUCIDE_ICONS: Record<IconName, IconNode> = {\n calendar: Calendar,\n check: Check,\n lock: Lock,\n x: X,\n 'chevron-down': ChevronDown,\n 'chevron-up': ChevronUp,\n 'chevron-left': ChevronLeft,\n 'chevron-right': ChevronRight,\n plus: Plus,\n minus: Minus,\n search: Search,\n info: Info,\n 'alert-circle': CircleAlert,\n loader: Loader,\n eye: Eye,\n 'eye-off': EyeOff,\n mail: Mail,\n user: User,\n home: Home,\n settings: Settings,\n menu: Menu,\n 'external-link': ExternalLink,\n copy: Copy,\n trash: Trash,\n};\n\nfunction toIconData(nodes: IconNode, animated = false): IconData {\n return {\n nodes: nodes.map(([tag, attrs]) => [\n tag,\n Object.fromEntries(\n Object.entries(attrs).filter((entry): entry is [string, string | number] => entry[1] != null),\n ),\n ]),\n animated,\n };\n}\n\n/** Provedor padrão — usa ícones do pacote `lucide`. */\nexport const lucideIconProvider: IconProvider = {\n resolve(name) {\n const icon = LUCIDE_ICONS[name];\n if (!icon) {\n return undefined;\n }\n\n return toIconData(icon, name === 'loader');\n },\n};\n","import type { IconName } from '@caw-sdk/shared';\nimport { lucideIconProvider } from './lucide.js';\nimport type { IconData, IconProvider } from './types.js';\n\nlet activeProvider: IconProvider = lucideIconProvider;\n\n/** Troca o provedor de ícones em runtime (ex.: Lucide → Heroicons). */\nexport function setIconProvider(provider: IconProvider): void {\n activeProvider = provider;\n}\n\nexport function getIconProvider(): IconProvider {\n return activeProvider;\n}\n\nexport function resolveIcon(name: IconName): IconData | undefined {\n return activeProvider.resolve(name);\n}\n","import { nothing, svg, type TemplateResult } from 'lit';\nimport type { IconSVGElement } from './icon-provider/types.js';\n\nfunction renderSvgElement(\n tag: string,\n attrs: Readonly<Record<string, string | number>>,\n): TemplateResult {\n switch (tag) {\n case 'path':\n return svg`<path d=${String(attrs.d ?? '')}></path>`;\n case 'circle':\n return svg`<circle\n cx=${String(attrs.cx ?? 0)}\n cy=${String(attrs.cy ?? 0)}\n r=${String(attrs.r ?? 0)}\n ></circle>`;\n case 'line':\n return svg`<line\n x1=${String(attrs.x1 ?? 0)}\n y1=${String(attrs.y1 ?? 0)}\n x2=${String(attrs.x2 ?? 0)}\n y2=${String(attrs.y2 ?? 0)}\n ></line>`;\n case 'rect':\n return svg`<rect\n x=${String(attrs.x ?? 0)}\n y=${String(attrs.y ?? 0)}\n width=${String(attrs.width ?? 0)}\n height=${String(attrs.height ?? 0)}\n rx=${attrs.rx != null ? String(attrs.rx) : nothing}\n ry=${attrs.ry != null ? String(attrs.ry) : nothing}\n ></rect>`;\n case 'polyline':\n return svg`<polyline points=${String(attrs.points ?? '')}></polyline>`;\n case 'polygon':\n return svg`<polygon points=${String(attrs.points ?? '')}></polygon>`;\n default:\n return svg``;\n }\n}\n\nexport function renderIconNodes(\n nodes: readonly IconSVGElement[],\n): TemplateResult {\n return svg`${nodes.map(([tag, attrs]) => renderSvgElement(tag, attrs))}`;\n}\n","import { LitElement, css, nothing, svg } from 'lit';\nimport { customElement, property } from 'lit/decorators.js';\nimport { adoptStyles, type IconName } from '@caw-sdk/shared';\nimport { resolveIcon } from './icon-provider/registry.js';\nimport { renderIconNodes } from './render-icon-nodes.js';\n\nexport { getIconProvider, resolveIcon, setIconProvider } from './icon-provider/registry.js';\nexport { lucideIconProvider } from './icon-provider/lucide.js';\nexport type { IconData, IconProvider, IconSVGElement } from './icon-provider/types.js';\n\n@customElement('caw-icon')\nexport class CawIcon extends LitElement {\n static styles = adoptStyles(css`\n :host {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n line-height: 0;\n color: var(--caw-icon-color, currentColor);\n }\n\n svg {\n display: block;\n }\n\n .icon--spin {\n animation: caw-icon-spin 1s linear infinite;\n }\n\n @keyframes caw-icon-spin {\n from {\n transform: rotate(0deg);\n }\n\n to {\n transform: rotate(360deg);\n }\n }\n `);\n\n @property({ type: String })\n name: IconName = 'check';\n\n @property({ type: Number })\n size = 24;\n\n @property({ type: Number, attribute: 'stroke-width' })\n strokeWidth = 2;\n\n @property({ type: String, attribute: 'aria-label' })\n ariaLabel = '';\n\n render() {\n const icon = resolveIcon(this.name);\n if (!icon) {\n return nothing;\n }\n\n const decorative = !this.ariaLabel;\n const svgClass = icon.animated ? 'icon icon--spin' : 'icon';\n\n return svg`\n <svg\n class=${svgClass}\n xmlns=\"http://www.w3.org/2000/svg\"\n width=${this.size}\n height=${this.size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=${this.strokeWidth}\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n part=\"icon\"\n role=${decorative ? nothing : 'img'}\n aria-hidden=${decorative ? 'true' : nothing}\n aria-label=${decorative ? nothing : this.ariaLabel}\n >\n ${renderIconNodes(icon.nodes)}\n </svg>\n `;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'caw-icon': CawIcon;\n }\n}\n"],"names":["Calendar","Check","ChevronDown","ChevronLeft","ChevronRight","ChevronUp","CircleAlert","Copy","ExternalLink","EyeOff","Eye","House","Info","Loader","Lock","Mail","Menu","Minus","Plus","Search","Settings","Trash","User","X","LUCIDE_ICONS","Home","toIconData","nodes","animated","tag","attrs","entry","lucideIconProvider","name","icon","activeProvider","setIconProvider","provider","getIconProvider","resolveIcon","renderSvgElement","svg","nothing","renderIconNodes","CawIcon","LitElement","decorative","svgClass","adoptStyles","css","__decorateClass","property","customElement"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"render-icon-nodes.d.ts","sourceRoot":"","sources":["../src/render-icon-nodes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgB,KAAK,cAAc,EAAE,MAAM,KAAK,CAAC;AACxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAwC/D,wBAAgB,eAAe,CAC7B,KAAK,EAAE,SAAS,cAAc,EAAE,GAC/B,cAAc,CAEhB"}
|
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@caw-sdk/icon",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Componente caw-icon — wrapper sobre Lucide com provider intercambiável",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/caw-icon.d.ts",
|
|
9
|
+
"import": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./cdn": {
|
|
12
|
+
"default": "./dist/icon.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": true,
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"lit",
|
|
24
|
+
"web-components",
|
|
25
|
+
"icon",
|
|
26
|
+
"caw"
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"lit": "^3.3.0",
|
|
31
|
+
"lucide": "^1.21.0",
|
|
32
|
+
"@caw-sdk/shared": "0.0.1"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"typescript": "^5.8.3",
|
|
36
|
+
"vite": "^6.3.5"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "vite build --config vite.npm.config.ts && vite build && tsc -p tsconfig.json"
|
|
40
|
+
}
|
|
41
|
+
}
|