@opengis/widgets 1.0.0

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/README.md ADDED
@@ -0,0 +1,151 @@
1
+ # Comments Widget - Refactored Version
2
+
3
+ ## Огляд
4
+
5
+ Оновлений віджет коментарів, який відповідає сучасному дизайну з інтерактивними елементами та покращеним UX.
6
+
7
+ ## Основні особливості
8
+
9
+ ### 🎨 Дизайн
10
+ - **Сучасний інтерфейс** з аватарами користувачів
11
+ - **Кнопки перемикання режимів**: Flat List, Threaded, Cards
12
+ - **Інтерактивні елементи**: лайки, відповіді, поширення
13
+ - **Анімації та переходи** для плавного UX
14
+
15
+ ### 🔧 Функціональність
16
+ - **Ієрархічні коментарі** з підтримкою відповідей
17
+ - **Система лайків** з візуальними індикаторами
18
+ - **Клавіатурні скорочення** (Cmd+Enter для відправки)
19
+ - **Автоматичне фокусування** на полях вводу
20
+ - **Режими відображення** (підготовлено для майбутнього розширення)
21
+
22
+ ### 📱 Адаптивність
23
+ - **Responsive дизайн** для різних розмірів екрану
24
+ - **Оптимізований для мобільних пристроїв**
25
+ - **Гнучка система стилів** з Tailwind CSS
26
+
27
+ ## Використання
28
+
29
+ ### Базове використання
30
+
31
+ ```vue
32
+ <template>
33
+ <CommentsWidget
34
+ :comments="comments"
35
+ @add-comment="handleAddComment"
36
+ @reply="handleReply"
37
+ @like="handleLike"
38
+ @share="handleShare"
39
+ @view-mode-change="handleViewModeChange"
40
+ />
41
+ </template>
42
+
43
+ <script setup>
44
+ import { CommentsWidget } from './widgets/comments/CommentsWidget.vue'
45
+
46
+ const comments = ref([
47
+ {
48
+ id: '1',
49
+ author: 'Alex Johnson',
50
+ content: 'This looks great!',
51
+ timestamp: new Date(),
52
+ likes: 5,
53
+ isLiked: false,
54
+ replies: [
55
+ {
56
+ id: '1-1',
57
+ author: 'Sarah Chen',
58
+ content: 'I agree!',
59
+ timestamp: new Date(),
60
+ likes: 2,
61
+ isLiked: true
62
+ }
63
+ ]
64
+ }
65
+ ])
66
+
67
+ const handleAddComment = (content) => {
68
+ // Логіка додавання коментаря
69
+ }
70
+
71
+ const handleReply = (commentId, content) => {
72
+ // Логіка додавання відповіді
73
+ }
74
+
75
+ const handleLike = (commentId) => {
76
+ // Логіка лайку/анлайку
77
+ }
78
+
79
+ const handleShare = (commentId) => {
80
+ // Логіка поширення
81
+ }
82
+
83
+ const handleViewModeChange = (mode) => {
84
+ // Логіка зміни режиму відображення
85
+ }
86
+ </script>
87
+ ```
88
+
89
+ ### Типи даних
90
+
91
+ ```typescript
92
+ interface Comment {
93
+ id: string
94
+ author: string
95
+ content: string
96
+ timestamp: Date
97
+ replies?: Comment[]
98
+ likes: number
99
+ isLiked?: boolean
100
+ avatar?: string
101
+ }
102
+
103
+ interface CommentsWidgetProps {
104
+ comments: Comment[]
105
+ viewMode?: 'flat' | 'threaded' | 'cards'
106
+ onAddComment?: (content: string) => void
107
+ onReply?: (commentId: string, content: string) => void
108
+ onLike?: (commentId: string) => void
109
+ onShare?: (commentId: string) => void
110
+ onViewModeChange?: (mode: 'flat' | 'threaded' | 'cards') => void
111
+ }
112
+ ```
113
+
114
+ ## Клавіатурні скорочення
115
+
116
+ - **Cmd+Enter** (Mac) / **Ctrl+Enter** (Windows/Linux) - відправити коментар
117
+ - **Escape** - скасувати форму відповіді
118
+
119
+ ## Анімації
120
+
121
+ - **Hover ефекти** для коментарів та кнопок
122
+ - **Плавні переходи** для форми відповіді
123
+ - **Анімація лайків** з ефектом пульсації
124
+ - **Масштабування аватарів** при наведенні
125
+
126
+ ## Стилізація
127
+
128
+ Віджет використовує Tailwind CSS для стилізації та підтримує:
129
+
130
+ - **Кастомні кольори** через CSS змінні
131
+ - **Адаптивні розміри** для різних екранів
132
+ - **Темна/світла тема** (готово для майбутнього розширення)
133
+ - **Кастомні скролбари** для textarea
134
+
135
+ ## Розширення
136
+
137
+ Віджет підготовлений для майбутніх розширень:
138
+
139
+ - **Режим Cards** - карточне відображення коментарів
140
+ - **Режим Flat List** - плоский список без ієрархії
141
+ - **Підтримка зображень** в коментарях
142
+ - **Система модерації** коментарів
143
+ - **Редагування** власних коментарів
144
+
145
+ ## Технічні деталі
146
+
147
+ - **Vue 3 Composition API**
148
+ - **TypeScript** для типізації
149
+ - **Tailwind CSS** для стилізації
150
+ - **Vue Transition** для анімацій
151
+ - **Responsive дизайн** з мобільною оптимізацією
@@ -0,0 +1,17 @@
1
+ (function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))n(i);new MutationObserver(i=>{for(const r of i)if(r.type==="childList")for(const o of r.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&n(o)}).observe(document,{childList:!0,subtree:!0});function s(i){const r={};return i.integrity&&(r.integrity=i.integrity),i.referrerPolicy&&(r.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?r.credentials="include":i.crossOrigin==="anonymous"?r.credentials="omit":r.credentials="same-origin",r}function n(i){if(i.ep)return;i.ep=!0;const r=s(i);fetch(i.href,r)}})();/**
2
+ * @vue/shared v3.5.18
3
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
+ * @license MIT
5
+ **//*! #__NO_SIDE_EFFECTS__ */function Js(e){const t=Object.create(null);for(const s of e.split(","))t[s]=1;return s=>s in t}const W={},_t=[],Ne=()=>{},yr=()=>!1,fs=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Ys=e=>e.startsWith("onUpdate:"),ie=Object.assign,Xs=(e,t)=>{const s=e.indexOf(t);s>-1&&e.splice(s,1)},vr=Object.prototype.hasOwnProperty,U=(e,t)=>vr.call(e,t),F=Array.isArray,bt=e=>as(e)==="[object Map]",ii=e=>as(e)==="[object Set]",$=e=>typeof e=="function",ee=e=>typeof e=="string",st=e=>typeof e=="symbol",Y=e=>e!==null&&typeof e=="object",ri=e=>(Y(e)||$(e))&&$(e.then)&&$(e.catch),oi=Object.prototype.toString,as=e=>oi.call(e),xr=e=>as(e).slice(8,-1),li=e=>as(e)==="[object Object]",Zs=e=>ee(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Ot=Js(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),us=e=>{const t=Object.create(null);return s=>t[s]||(t[s]=e(s))},wr=/-(\w)/g,Qe=us(e=>e.replace(wr,(t,s)=>s?s.toUpperCase():"")),Cr=/\B([A-Z])/g,ht=us(e=>e.replace(Cr,"-$1").toLowerCase()),ci=us(e=>e.charAt(0).toUpperCase()+e.slice(1)),ws=us(e=>e?`on${ci(e)}`:""),Ze=(e,t)=>!Object.is(e,t),Zt=(e,...t)=>{for(let s=0;s<e.length;s++)e[s](...t)},ks=(e,t,s,n=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:n,value:s})},$s=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Sr=e=>{const t=ee(e)?Number(e):NaN;return isNaN(t)?e:t};let bn;const ds=()=>bn||(bn=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function wt(e){if(F(e)){const t={};for(let s=0;s<e.length;s++){const n=e[s],i=ee(n)?Mr(n):wt(n);if(i)for(const r in i)t[r]=i[r]}return t}else if(ee(e)||Y(e))return e}const Tr=/;(?![^(]*\))/g,Er=/:([^]+)/,Ar=/\/\*[^]*?\*\//g;function Mr(e){const t={};return e.replace(Ar,"").split(Tr).forEach(s=>{if(s){const n=s.split(Er);n.length>1&&(t[n[0].trim()]=n[1].trim())}}),t}function $e(e){let t="";if(ee(e))t=e;else if(F(e))for(let s=0;s<e.length;s++){const n=$e(e[s]);n&&(t+=n+" ")}else if(Y(e))for(const s in e)e[s]&&(t+=s+" ");return t.trim()}const Lr="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Or=Js(Lr);function fi(e){return!!e||e===""}const ai=e=>!!(e&&e.__v_isRef===!0),Ae=e=>ee(e)?e:e==null?"":F(e)||Y(e)&&(e.toString===oi||!$(e.toString))?ai(e)?Ae(e.value):JSON.stringify(e,ui,2):String(e),ui=(e,t)=>ai(t)?ui(e,t.value):bt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((s,[n,i],r)=>(s[Cs(n,r)+" =>"]=i,s),{})}:ii(t)?{[`Set(${t.size})`]:[...t.values()].map(s=>Cs(s))}:st(t)?Cs(t):Y(t)&&!F(t)&&!li(t)?String(t):t,Cs=(e,t="")=>{var s;return st(e)?`Symbol(${(s=e.description)!=null?s:t})`:e};/**
6
+ * @vue/reactivity v3.5.18
7
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
8
+ * @license MIT
9
+ **/let _e;class Dr{constructor(t=!1){this.detached=t,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=_e,!t&&_e&&(this.index=(_e.scopes||(_e.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,s;if(this.scopes)for(t=0,s=this.scopes.length;t<s;t++)this.scopes[t].pause();for(t=0,s=this.effects.length;t<s;t++)this.effects[t].pause()}}resume(){if(this._active&&this._isPaused){this._isPaused=!1;let t,s;if(this.scopes)for(t=0,s=this.scopes.length;t<s;t++)this.scopes[t].resume();for(t=0,s=this.effects.length;t<s;t++)this.effects[t].resume()}}run(t){if(this._active){const s=_e;try{return _e=this,t()}finally{_e=s}}}on(){++this._on===1&&(this.prevScope=_e,_e=this)}off(){this._on>0&&--this._on===0&&(_e=this.prevScope,this.prevScope=void 0)}stop(t){if(this._active){this._active=!1;let s,n;for(s=0,n=this.effects.length;s<n;s++)this.effects[s].stop();for(this.effects.length=0,s=0,n=this.cleanups.length;s<n;s++)this.cleanups[s]();if(this.cleanups.length=0,this.scopes){for(s=0,n=this.scopes.length;s<n;s++)this.scopes[s].stop(!0);this.scopes.length=0}if(!this.detached&&this.parent&&!t){const i=this.parent.scopes.pop();i&&i!==this&&(this.parent.scopes[this.index]=i,i.index=this.index)}this.parent=void 0}}}function Ir(){return _e}let J;const Ss=new WeakSet;class di{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.next=void 0,this.cleanup=void 0,this.scheduler=void 0,_e&&_e.active&&_e.effects.push(this)}pause(){this.flags|=64}resume(){this.flags&64&&(this.flags&=-65,Ss.has(this)&&(Ss.delete(this),this.trigger()))}notify(){this.flags&2&&!(this.flags&32)||this.flags&8||pi(this)}run(){if(!(this.flags&1))return this.fn();this.flags|=2,yn(this),gi(this);const t=J,s=Me;J=this,Me=!0;try{return this.fn()}finally{mi(this),J=t,Me=s,this.flags&=-3}}stop(){if(this.flags&1){for(let t=this.deps;t;t=t.nextDep)tn(t);this.deps=this.depsTail=void 0,yn(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.flags&64?Ss.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){Ns(this)&&this.run()}get dirty(){return Ns(this)}}let hi=0,Dt,It;function pi(e,t=!1){if(e.flags|=8,t){e.next=It,It=e;return}e.next=Dt,Dt=e}function Qs(){hi++}function en(){if(--hi>0)return;if(It){let t=It;for(It=void 0;t;){const s=t.next;t.next=void 0,t.flags&=-9,t=s}}let e;for(;Dt;){let t=Dt;for(Dt=void 0;t;){const s=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(n){e||(e=n)}t=s}}if(e)throw e}function gi(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function mi(e){let t,s=e.depsTail,n=s;for(;n;){const i=n.prevDep;n.version===-1?(n===s&&(s=i),tn(n),Rr(n)):t=n,n.dep.activeLink=n.prevActiveLink,n.prevActiveLink=void 0,n=i}e.deps=t,e.depsTail=s}function Ns(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(_i(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function _i(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===$t)||(e.globalVersion=$t,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!Ns(e))))return;e.flags|=2;const t=e.dep,s=J,n=Me;J=e,Me=!0;try{gi(e);const i=e.fn(e._value);(t.version===0||Ze(i,e._value))&&(e.flags|=128,e._value=i,t.version++)}catch(i){throw t.version++,i}finally{J=s,Me=n,mi(e),e.flags&=-3}}function tn(e,t=!1){const{dep:s,prevSub:n,nextSub:i}=e;if(n&&(n.nextSub=i,e.prevSub=void 0),i&&(i.prevSub=n,e.nextSub=void 0),s.subs===e&&(s.subs=n,!n&&s.computed)){s.computed.flags&=-5;for(let r=s.computed.deps;r;r=r.nextDep)tn(r,!0)}!t&&!--s.sc&&s.map&&s.map.delete(s.key)}function Rr(e){const{prevDep:t,nextDep:s}=e;t&&(t.nextDep=s,e.prevDep=void 0),s&&(s.prevDep=t,e.nextDep=void 0)}let Me=!0;const bi=[];function We(){bi.push(Me),Me=!1}function ze(){const e=bi.pop();Me=e===void 0?!0:e}function yn(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const s=J;J=void 0;try{t()}finally{J=s}}}let $t=0;class Fr{constructor(t,s){this.sub=t,this.dep=s,this.version=s.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class sn{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}track(t){if(!J||!Me||J===this.computed)return;let s=this.activeLink;if(s===void 0||s.sub!==J)s=this.activeLink=new Fr(J,this),J.deps?(s.prevDep=J.depsTail,J.depsTail.nextDep=s,J.depsTail=s):J.deps=J.depsTail=s,yi(s);else if(s.version===-1&&(s.version=this.version,s.nextDep)){const n=s.nextDep;n.prevDep=s.prevDep,s.prevDep&&(s.prevDep.nextDep=n),s.prevDep=J.depsTail,s.nextDep=void 0,J.depsTail.nextDep=s,J.depsTail=s,J.deps===s&&(J.deps=n)}return s}trigger(t){this.version++,$t++,this.notify(t)}notify(t){Qs();try{for(let s=this.subs;s;s=s.prevSub)s.sub.notify()&&s.sub.dep.notify()}finally{en()}}}function yi(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let n=t.deps;n;n=n.nextDep)yi(n)}const s=e.dep.subs;s!==e&&(e.prevSub=s,s&&(s.nextSub=e)),e.dep.subs=e}}const Hs=new WeakMap,dt=Symbol(""),js=Symbol(""),Nt=Symbol("");function le(e,t,s){if(Me&&J){let n=Hs.get(e);n||Hs.set(e,n=new Map);let i=n.get(s);i||(n.set(s,i=new sn),i.map=n,i.key=s),i.track()}}function Ve(e,t,s,n,i,r){const o=Hs.get(e);if(!o){$t++;return}const l=f=>{f&&f.trigger()};if(Qs(),t==="clear")o.forEach(l);else{const f=F(e),d=f&&Zs(s);if(f&&s==="length"){const u=Number(n);o.forEach((h,v)=>{(v==="length"||v===Nt||!st(v)&&v>=u)&&l(h)})}else switch((s!==void 0||o.has(void 0))&&l(o.get(s)),d&&l(o.get(Nt)),t){case"add":f?d&&l(o.get("length")):(l(o.get(dt)),bt(e)&&l(o.get(js)));break;case"delete":f||(l(o.get(dt)),bt(e)&&l(o.get(js)));break;case"set":bt(e)&&l(o.get(dt));break}}en()}function pt(e){const t=j(e);return t===e?t:(le(t,"iterate",Nt),Ee(e)?t:t.map(re))}function hs(e){return le(e=j(e),"iterate",Nt),e}const Pr={__proto__:null,[Symbol.iterator](){return Ts(this,Symbol.iterator,re)},concat(...e){return pt(this).concat(...e.map(t=>F(t)?pt(t):t))},entries(){return Ts(this,"entries",e=>(e[1]=re(e[1]),e))},every(e,t){return je(this,"every",e,t,void 0,arguments)},filter(e,t){return je(this,"filter",e,t,s=>s.map(re),arguments)},find(e,t){return je(this,"find",e,t,re,arguments)},findIndex(e,t){return je(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return je(this,"findLast",e,t,re,arguments)},findLastIndex(e,t){return je(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return je(this,"forEach",e,t,void 0,arguments)},includes(...e){return Es(this,"includes",e)},indexOf(...e){return Es(this,"indexOf",e)},join(e){return pt(this).join(e)},lastIndexOf(...e){return Es(this,"lastIndexOf",e)},map(e,t){return je(this,"map",e,t,void 0,arguments)},pop(){return Et(this,"pop")},push(...e){return Et(this,"push",e)},reduce(e,...t){return vn(this,"reduce",e,t)},reduceRight(e,...t){return vn(this,"reduceRight",e,t)},shift(){return Et(this,"shift")},some(e,t){return je(this,"some",e,t,void 0,arguments)},splice(...e){return Et(this,"splice",e)},toReversed(){return pt(this).toReversed()},toSorted(e){return pt(this).toSorted(e)},toSpliced(...e){return pt(this).toSpliced(...e)},unshift(...e){return Et(this,"unshift",e)},values(){return Ts(this,"values",re)}};function Ts(e,t,s){const n=hs(e),i=n[t]();return n!==e&&!Ee(e)&&(i._next=i.next,i.next=()=>{const r=i._next();return r.value&&(r.value=s(r.value)),r}),i}const kr=Array.prototype;function je(e,t,s,n,i,r){const o=hs(e),l=o!==e&&!Ee(e),f=o[t];if(f!==kr[t]){const h=f.apply(e,r);return l?re(h):h}let d=s;o!==e&&(l?d=function(h,v){return s.call(this,re(h),v,e)}:s.length>2&&(d=function(h,v){return s.call(this,h,v,e)}));const u=f.call(o,d,n);return l&&i?i(u):u}function vn(e,t,s,n){const i=hs(e);let r=s;return i!==e&&(Ee(e)?s.length>3&&(r=function(o,l,f){return s.call(this,o,l,f,e)}):r=function(o,l,f){return s.call(this,o,re(l),f,e)}),i[t](r,...n)}function Es(e,t,s){const n=j(e);le(n,"iterate",Nt);const i=n[t](...s);return(i===-1||i===!1)&&ln(s[0])?(s[0]=j(s[0]),n[t](...s)):i}function Et(e,t,s=[]){We(),Qs();const n=j(e)[t].apply(e,s);return en(),ze(),n}const $r=Js("__proto__,__v_isRef,__isVue"),vi=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(st));function Nr(e){st(e)||(e=String(e));const t=j(this);return le(t,"has",e),t.hasOwnProperty(e)}class xi{constructor(t=!1,s=!1){this._isReadonly=t,this._isShallow=s}get(t,s,n){if(s==="__v_skip")return t.__v_skip;const i=this._isReadonly,r=this._isShallow;if(s==="__v_isReactive")return!i;if(s==="__v_isReadonly")return i;if(s==="__v_isShallow")return r;if(s==="__v_raw")return n===(i?r?Gr:Ti:r?Si:Ci).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(n)?t:void 0;const o=F(t);if(!i){let f;if(o&&(f=Pr[s]))return f;if(s==="hasOwnProperty")return Nr}const l=Reflect.get(t,s,ce(t)?t:n);return(st(s)?vi.has(s):$r(s))||(i||le(t,"get",s),r)?l:ce(l)?o&&Zs(s)?l:l.value:Y(l)?i?Ei(l):rn(l):l}}class wi extends xi{constructor(t=!1){super(!1,t)}set(t,s,n,i){let r=t[s];if(!this._isShallow){const f=et(r);if(!Ee(n)&&!et(n)&&(r=j(r),n=j(n)),!F(t)&&ce(r)&&!ce(n))return f?!1:(r.value=n,!0)}const o=F(t)&&Zs(s)?Number(s)<t.length:U(t,s),l=Reflect.set(t,s,n,ce(t)?t:i);return t===j(i)&&(o?Ze(n,r)&&Ve(t,"set",s,n):Ve(t,"add",s,n)),l}deleteProperty(t,s){const n=U(t,s);t[s];const i=Reflect.deleteProperty(t,s);return i&&n&&Ve(t,"delete",s,void 0),i}has(t,s){const n=Reflect.has(t,s);return(!st(s)||!vi.has(s))&&le(t,"has",s),n}ownKeys(t){return le(t,"iterate",F(t)?"length":dt),Reflect.ownKeys(t)}}class Hr extends xi{constructor(t=!1){super(!0,t)}set(t,s){return!0}deleteProperty(t,s){return!0}}const jr=new wi,Br=new Hr,Ur=new wi(!0);const Bs=e=>e,Gt=e=>Reflect.getPrototypeOf(e);function Vr(e,t,s){return function(...n){const i=this.__v_raw,r=j(i),o=bt(r),l=e==="entries"||e===Symbol.iterator&&o,f=e==="keys"&&o,d=i[e](...n),u=s?Bs:t?ss:re;return!t&&le(r,"iterate",f?js:dt),{next(){const{value:h,done:v}=d.next();return v?{value:h,done:v}:{value:l?[u(h[0]),u(h[1])]:u(h),done:v}},[Symbol.iterator](){return this}}}}function Jt(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Kr(e,t){const s={get(i){const r=this.__v_raw,o=j(r),l=j(i);e||(Ze(i,l)&&le(o,"get",i),le(o,"get",l));const{has:f}=Gt(o),d=t?Bs:e?ss:re;if(f.call(o,i))return d(r.get(i));if(f.call(o,l))return d(r.get(l));r!==o&&r.get(i)},get size(){const i=this.__v_raw;return!e&&le(j(i),"iterate",dt),Reflect.get(i,"size",i)},has(i){const r=this.__v_raw,o=j(r),l=j(i);return e||(Ze(i,l)&&le(o,"has",i),le(o,"has",l)),i===l?r.has(i):r.has(i)||r.has(l)},forEach(i,r){const o=this,l=o.__v_raw,f=j(l),d=t?Bs:e?ss:re;return!e&&le(f,"iterate",dt),l.forEach((u,h)=>i.call(r,d(u),d(h),o))}};return ie(s,e?{add:Jt("add"),set:Jt("set"),delete:Jt("delete"),clear:Jt("clear")}:{add(i){!t&&!Ee(i)&&!et(i)&&(i=j(i));const r=j(this);return Gt(r).has.call(r,i)||(r.add(i),Ve(r,"add",i,i)),this},set(i,r){!t&&!Ee(r)&&!et(r)&&(r=j(r));const o=j(this),{has:l,get:f}=Gt(o);let d=l.call(o,i);d||(i=j(i),d=l.call(o,i));const u=f.call(o,i);return o.set(i,r),d?Ze(r,u)&&Ve(o,"set",i,r):Ve(o,"add",i,r),this},delete(i){const r=j(this),{has:o,get:l}=Gt(r);let f=o.call(r,i);f||(i=j(i),f=o.call(r,i)),l&&l.call(r,i);const d=r.delete(i);return f&&Ve(r,"delete",i,void 0),d},clear(){const i=j(this),r=i.size!==0,o=i.clear();return r&&Ve(i,"clear",void 0,void 0),o}}),["keys","values","entries",Symbol.iterator].forEach(i=>{s[i]=Vr(i,e,t)}),s}function nn(e,t){const s=Kr(e,t);return(n,i,r)=>i==="__v_isReactive"?!e:i==="__v_isReadonly"?e:i==="__v_raw"?n:Reflect.get(U(s,i)&&i in n?s:n,i,r)}const Wr={get:nn(!1,!1)},zr={get:nn(!1,!0)},qr={get:nn(!0,!1)};const Ci=new WeakMap,Si=new WeakMap,Ti=new WeakMap,Gr=new WeakMap;function Jr(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Yr(e){return e.__v_skip||!Object.isExtensible(e)?0:Jr(xr(e))}function rn(e){return et(e)?e:on(e,!1,jr,Wr,Ci)}function Xr(e){return on(e,!1,Ur,zr,Si)}function Ei(e){return on(e,!0,Br,qr,Ti)}function on(e,t,s,n,i){if(!Y(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const r=Yr(e);if(r===0)return e;const o=i.get(e);if(o)return o;const l=new Proxy(e,r===2?n:s);return i.set(e,l),l}function yt(e){return et(e)?yt(e.__v_raw):!!(e&&e.__v_isReactive)}function et(e){return!!(e&&e.__v_isReadonly)}function Ee(e){return!!(e&&e.__v_isShallow)}function ln(e){return e?!!e.__v_raw:!1}function j(e){const t=e&&e.__v_raw;return t?j(t):e}function Zr(e){return!U(e,"__v_skip")&&Object.isExtensible(e)&&ks(e,"__v_skip",!0),e}const re=e=>Y(e)?rn(e):e,ss=e=>Y(e)?Ei(e):e;function ce(e){return e?e.__v_isRef===!0:!1}function ut(e){return Qr(e,!1)}function Qr(e,t){return ce(e)?e:new eo(e,t)}class eo{constructor(t,s){this.dep=new sn,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=s?t:j(t),this._value=s?t:re(t),this.__v_isShallow=s}get value(){return this.dep.track(),this._value}set value(t){const s=this._rawValue,n=this.__v_isShallow||Ee(t)||et(t);t=n?t:j(t),Ze(t,s)&&(this._rawValue=t,this._value=n?t:re(t),this.dep.trigger())}}function Mt(e){return ce(e)?e.value:e}const to={get:(e,t,s)=>t==="__v_raw"?e:Mt(Reflect.get(e,t,s)),set:(e,t,s,n)=>{const i=e[t];return ce(i)&&!ce(s)?(i.value=s,!0):Reflect.set(e,t,s,n)}};function Ai(e){return yt(e)?e:new Proxy(e,to)}class so{constructor(t,s,n){this.fn=t,this.setter=s,this._value=void 0,this.dep=new sn(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=$t-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!s,this.isSSR=n}notify(){if(this.flags|=16,!(this.flags&8)&&J!==this)return pi(this,!0),!0}get value(){const t=this.dep.track();return _i(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function no(e,t,s=!1){let n,i;return $(e)?n=e:(n=e.get,i=e.set),new so(n,i,s)}const Yt={},ns=new WeakMap;let ft;function io(e,t=!1,s=ft){if(s){let n=ns.get(s);n||ns.set(s,n=[]),n.push(e)}}function ro(e,t,s=W){const{immediate:n,deep:i,once:r,scheduler:o,augmentJob:l,call:f}=s,d=R=>i?R:Ee(R)||i===!1||i===0?Ke(R,1):Ke(R);let u,h,v,g,T=!1,S=!1;if(ce(e)?(h=()=>e.value,T=Ee(e)):yt(e)?(h=()=>d(e),T=!0):F(e)?(S=!0,T=e.some(R=>yt(R)||Ee(R)),h=()=>e.map(R=>{if(ce(R))return R.value;if(yt(R))return d(R);if($(R))return f?f(R,2):R()})):$(e)?t?h=f?()=>f(e,2):e:h=()=>{if(v){We();try{v()}finally{ze()}}const R=ft;ft=u;try{return f?f(e,3,[g]):e(g)}finally{ft=R}}:h=Ne,t&&i){const R=h,z=i===!0?1/0:i;h=()=>Ke(R(),z)}const M=Ir(),O=()=>{u.stop(),M&&M.active&&Xs(M.effects,u)};if(r&&t){const R=t;t=(...z)=>{R(...z),O()}}let k=S?new Array(e.length).fill(Yt):Yt;const B=R=>{if(!(!(u.flags&1)||!u.dirty&&!R))if(t){const z=u.run();if(i||T||(S?z.some((te,fe)=>Ze(te,k[fe])):Ze(z,k))){v&&v();const te=ft;ft=u;try{const fe=[z,k===Yt?void 0:S&&k[0]===Yt?[]:k,g];k=z,f?f(t,3,fe):t(...fe)}finally{ft=te}}}else u.run()};return l&&l(B),u=new di(h),u.scheduler=o?()=>o(B,!1):B,g=R=>io(R,!1,u),v=u.onStop=()=>{const R=ns.get(u);if(R){if(f)f(R,4);else for(const z of R)z();ns.delete(u)}},t?n?B(!0):k=u.run():o?o(B.bind(null,!0),!0):u.run(),O.pause=u.pause.bind(u),O.resume=u.resume.bind(u),O.stop=O,O}function Ke(e,t=1/0,s){if(t<=0||!Y(e)||e.__v_skip||(s=s||new Set,s.has(e)))return e;if(s.add(e),t--,ce(e))Ke(e.value,t,s);else if(F(e))for(let n=0;n<e.length;n++)Ke(e[n],t,s);else if(ii(e)||bt(e))e.forEach(n=>{Ke(n,t,s)});else if(li(e)){for(const n in e)Ke(e[n],t,s);for(const n of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,n)&&Ke(e[n],t,s)}return e}/**
10
+ * @vue/runtime-core v3.5.18
11
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
12
+ * @license MIT
13
+ **/function Kt(e,t,s,n){try{return n?e(...n):e()}catch(i){ps(i,t,s)}}function Le(e,t,s,n){if($(e)){const i=Kt(e,t,s,n);return i&&ri(i)&&i.catch(r=>{ps(r,t,s)}),i}if(F(e)){const i=[];for(let r=0;r<e.length;r++)i.push(Le(e[r],t,s,n));return i}}function ps(e,t,s,n=!0){const i=t?t.vnode:null,{errorHandler:r,throwUnhandledErrorInProduction:o}=t&&t.appContext.config||W;if(t){let l=t.parent;const f=t.proxy,d=`https://vuejs.org/error-reference/#runtime-${s}`;for(;l;){const u=l.ec;if(u){for(let h=0;h<u.length;h++)if(u[h](e,f,d)===!1)return}l=l.parent}if(r){We(),Kt(r,null,10,[e,f,d]),ze();return}}oo(e,s,i,n,o)}function oo(e,t,s,n=!0,i=!1){if(i)throw e;console.error(e)}const ue=[];let Pe=-1;const vt=[];let Je=null,gt=0;const Mi=Promise.resolve();let is=null;function Li(e){const t=is||Mi;return e?t.then(this?e.bind(this):e):t}function lo(e){let t=Pe+1,s=ue.length;for(;t<s;){const n=t+s>>>1,i=ue[n],r=Ht(i);r<e||r===e&&i.flags&2?t=n+1:s=n}return t}function cn(e){if(!(e.flags&1)){const t=Ht(e),s=ue[ue.length-1];!s||!(e.flags&2)&&t>=Ht(s)?ue.push(e):ue.splice(lo(t),0,e),e.flags|=1,Oi()}}function Oi(){is||(is=Mi.then(Ii))}function co(e){F(e)?vt.push(...e):Je&&e.id===-1?Je.splice(gt+1,0,e):e.flags&1||(vt.push(e),e.flags|=1),Oi()}function xn(e,t,s=Pe+1){for(;s<ue.length;s++){const n=ue[s];if(n&&n.flags&2){if(e&&n.id!==e.uid)continue;ue.splice(s,1),s--,n.flags&4&&(n.flags&=-2),n(),n.flags&4||(n.flags&=-2)}}}function Di(e){if(vt.length){const t=[...new Set(vt)].sort((s,n)=>Ht(s)-Ht(n));if(vt.length=0,Je){Je.push(...t);return}for(Je=t,gt=0;gt<Je.length;gt++){const s=Je[gt];s.flags&4&&(s.flags&=-2),s.flags&8||s(),s.flags&=-2}Je=null,gt=0}}const Ht=e=>e.id==null?e.flags&2?-1:1/0:e.id;function Ii(e){try{for(Pe=0;Pe<ue.length;Pe++){const t=ue[Pe];t&&!(t.flags&8)&&(t.flags&4&&(t.flags&=-2),Kt(t,t.i,t.i?15:14),t.flags&4||(t.flags&=-2))}}finally{for(;Pe<ue.length;Pe++){const t=ue[Pe];t&&(t.flags&=-2)}Pe=-1,ue.length=0,Di(),is=null,(ue.length||vt.length)&&Ii()}}let Te=null,Ri=null;function rs(e){const t=Te;return Te=e,Ri=e&&e.type.__scopeId||null,t}function Fi(e,t=Te,s){if(!t||e._n)return e;const n=(...i)=>{n._d&&Rn(-1);const r=rs(t);let o;try{o=e(...i)}finally{rs(r),n._d&&Rn(1)}return o};return n._n=!0,n._c=!0,n._d=!0,n}function wn(e,t){if(Te===null)return e;const s=vs(Te),n=e.dirs||(e.dirs=[]);for(let i=0;i<t.length;i++){let[r,o,l,f=W]=t[i];r&&($(r)&&(r={mounted:r,updated:r}),r.deep&&Ke(o),n.push({dir:r,instance:s,value:o,oldValue:void 0,arg:l,modifiers:f}))}return e}function rt(e,t,s,n){const i=e.dirs,r=t&&t.dirs;for(let o=0;o<i.length;o++){const l=i[o];r&&(l.oldValue=r[o].value);let f=l.dir[n];f&&(We(),Le(f,s,8,[e.el,l,e,t]),ze())}}const fo=Symbol("_vte"),Pi=e=>e.__isTeleport,Ye=Symbol("_leaveCb"),Xt=Symbol("_enterCb");function ao(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Vi(()=>{e.isMounted=!0}),Ki(()=>{e.isUnmounting=!0}),e}const Ce=[Function,Array],ki={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Ce,onEnter:Ce,onAfterEnter:Ce,onEnterCancelled:Ce,onBeforeLeave:Ce,onLeave:Ce,onAfterLeave:Ce,onLeaveCancelled:Ce,onBeforeAppear:Ce,onAppear:Ce,onAfterAppear:Ce,onAppearCancelled:Ce},$i=e=>{const t=e.subTree;return t.component?$i(t.component):t},uo={name:"BaseTransition",props:ki,setup(e,{slots:t}){const s=dr(),n=ao();return()=>{const i=t.default&&ji(t.default(),!0);if(!i||!i.length)return;const r=Ni(i),o=j(e),{mode:l}=o;if(n.isLeaving)return As(r);const f=Cn(r);if(!f)return As(r);let d=Us(f,o,n,s,h=>d=h);f.type!==de&&jt(f,d);let u=s.subTree&&Cn(s.subTree);if(u&&u.type!==de&&!at(f,u)&&$i(s).type!==de){let h=Us(u,o,n,s);if(jt(u,h),l==="out-in"&&f.type!==de)return n.isLeaving=!0,h.afterLeave=()=>{n.isLeaving=!1,s.job.flags&8||s.update(),delete h.afterLeave,u=void 0},As(r);l==="in-out"&&f.type!==de?h.delayLeave=(v,g,T)=>{const S=Hi(n,u);S[String(u.key)]=u,v[Ye]=()=>{g(),v[Ye]=void 0,delete d.delayedLeave,u=void 0},d.delayedLeave=()=>{T(),delete d.delayedLeave,u=void 0}}:u=void 0}else u&&(u=void 0);return r}}};function Ni(e){let t=e[0];if(e.length>1){for(const s of e)if(s.type!==de){t=s;break}}return t}const ho=uo;function Hi(e,t){const{leavingVNodes:s}=e;let n=s.get(t.type);return n||(n=Object.create(null),s.set(t.type,n)),n}function Us(e,t,s,n,i){const{appear:r,mode:o,persisted:l=!1,onBeforeEnter:f,onEnter:d,onAfterEnter:u,onEnterCancelled:h,onBeforeLeave:v,onLeave:g,onAfterLeave:T,onLeaveCancelled:S,onBeforeAppear:M,onAppear:O,onAfterAppear:k,onAppearCancelled:B}=t,R=String(e.key),z=Hi(s,e),te=(N,K)=>{N&&Le(N,n,9,K)},fe=(N,K)=>{const Z=K[1];te(N,K),F(N)?N.every(L=>L.length<=1)&&Z():N.length<=1&&Z()},pe={mode:o,persisted:l,beforeEnter(N){let K=f;if(!s.isMounted)if(r)K=M||f;else return;N[Ye]&&N[Ye](!0);const Z=z[R];Z&&at(e,Z)&&Z.el[Ye]&&Z.el[Ye](),te(K,[N])},enter(N){let K=d,Z=u,L=h;if(!s.isMounted)if(r)K=O||d,Z=k||u,L=B||h;else return;let X=!1;const oe=N[Xt]=He=>{X||(X=!0,He?te(L,[N]):te(Z,[N]),pe.delayedLeave&&pe.delayedLeave(),N[Xt]=void 0)};K?fe(K,[N,oe]):oe()},leave(N,K){const Z=String(e.key);if(N[Xt]&&N[Xt](!0),s.isUnmounting)return K();te(v,[N]);let L=!1;const X=N[Ye]=oe=>{L||(L=!0,K(),oe?te(S,[N]):te(T,[N]),N[Ye]=void 0,z[Z]===e&&delete z[Z])};z[Z]=e,g?fe(g,[N,X]):X()},clone(N){const K=Us(N,t,s,n,i);return i&&i(K),K}};return pe}function As(e){if(ms(e))return e=tt(e),e.children=null,e}function Cn(e){if(!ms(e))return Pi(e.type)&&e.children?Ni(e.children):e;if(e.component)return e.component.subTree;const{shapeFlag:t,children:s}=e;if(s){if(t&16)return s[0];if(t&32&&$(s.default))return s.default()}}function jt(e,t){e.shapeFlag&6&&e.component?(e.transition=t,jt(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function ji(e,t=!1,s){let n=[],i=0;for(let r=0;r<e.length;r++){let o=e[r];const l=s==null?o.key:String(s)+String(o.key!=null?o.key:r);o.type===Se?(o.patchFlag&128&&i++,n=n.concat(ji(o.children,t,l))):(t||o.type!==de)&&n.push(l!=null?tt(o,{key:l}):o)}if(i>1)for(let r=0;r<n.length;r++)n[r].patchFlag=-2;return n}/*! #__NO_SIDE_EFFECTS__ */function gs(e,t){return $(e)?ie({name:e.name},t,{setup:e}):e}function Bi(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}function Rt(e,t,s,n,i=!1){if(F(e)){e.forEach((T,S)=>Rt(T,t&&(F(t)?t[S]:t),s,n,i));return}if(Ft(n)&&!i){n.shapeFlag&512&&n.type.__asyncResolved&&n.component.subTree.component&&Rt(e,t,s,n.component.subTree);return}const r=n.shapeFlag&4?vs(n.component):n.el,o=i?null:r,{i:l,r:f}=e,d=t&&t.r,u=l.refs===W?l.refs={}:l.refs,h=l.setupState,v=j(h),g=h===W?()=>!1:T=>U(v,T);if(d!=null&&d!==f&&(ee(d)?(u[d]=null,g(d)&&(h[d]=null)):ce(d)&&(d.value=null)),$(f))Kt(f,l,12,[o,u]);else{const T=ee(f),S=ce(f);if(T||S){const M=()=>{if(e.f){const O=T?g(f)?h[f]:u[f]:f.value;i?F(O)&&Xs(O,r):F(O)?O.includes(r)||O.push(r):T?(u[f]=[r],g(f)&&(h[f]=u[f])):(f.value=[r],e.k&&(u[e.k]=f.value))}else T?(u[f]=o,g(f)&&(h[f]=o)):S&&(f.value=o,e.k&&(u[e.k]=o))};o?(M.id=-1,ve(M,s)):M()}}}ds().requestIdleCallback;ds().cancelIdleCallback;const Ft=e=>!!e.type.__asyncLoader,ms=e=>e.type.__isKeepAlive;function po(e,t){Ui(e,"a",t)}function go(e,t){Ui(e,"da",t)}function Ui(e,t,s=he){const n=e.__wdc||(e.__wdc=()=>{let i=s;for(;i;){if(i.isDeactivated)return;i=i.parent}return e()});if(_s(t,n,s),s){let i=s.parent;for(;i&&i.parent;)ms(i.parent.vnode)&&mo(n,t,s,i),i=i.parent}}function mo(e,t,s,n){const i=_s(t,e,n,!0);Wi(()=>{Xs(n[t],i)},s)}function _s(e,t,s=he,n=!1){if(s){const i=s[e]||(s[e]=[]),r=t.__weh||(t.__weh=(...o)=>{We();const l=Wt(s),f=Le(t,s,e,o);return l(),ze(),f});return n?i.unshift(r):i.push(r),r}}const qe=e=>(t,s=he)=>{(!Ut||e==="sp")&&_s(e,(...n)=>t(...n),s)},_o=qe("bm"),Vi=qe("m"),bo=qe("bu"),yo=qe("u"),Ki=qe("bum"),Wi=qe("um"),vo=qe("sp"),xo=qe("rtg"),wo=qe("rtc");function Co(e,t=he){_s("ec",e,t)}const So=Symbol.for("v-ndc");function Sn(e,t,s,n){let i;const r=s,o=F(e);if(o||ee(e)){const l=o&&yt(e);let f=!1,d=!1;l&&(f=!Ee(e),d=et(e),e=hs(e)),i=new Array(e.length);for(let u=0,h=e.length;u<h;u++)i[u]=t(f?d?ss(re(e[u])):re(e[u]):e[u],u,void 0,r)}else if(typeof e=="number"){i=new Array(e);for(let l=0;l<e;l++)i[l]=t(l+1,l,void 0,r)}else if(Y(e))if(e[Symbol.iterator])i=Array.from(e,(l,f)=>t(l,f,void 0,r));else{const l=Object.keys(e);i=new Array(l.length);for(let f=0,d=l.length;f<d;f++){const u=l[f];i[f]=t(e[u],u,f,r)}}else i=[];return i}const Vs=e=>e?hr(e)?vs(e):Vs(e.parent):null,Pt=ie(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Vs(e.parent),$root:e=>Vs(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>qi(e),$forceUpdate:e=>e.f||(e.f=()=>{cn(e.update)}),$nextTick:e=>e.n||(e.n=Li.bind(e.proxy)),$watch:e=>zo.bind(e)}),Ms=(e,t)=>e!==W&&!e.__isScriptSetup&&U(e,t),To={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:s,setupState:n,data:i,props:r,accessCache:o,type:l,appContext:f}=e;let d;if(t[0]!=="$"){const g=o[t];if(g!==void 0)switch(g){case 1:return n[t];case 2:return i[t];case 4:return s[t];case 3:return r[t]}else{if(Ms(n,t))return o[t]=1,n[t];if(i!==W&&U(i,t))return o[t]=2,i[t];if((d=e.propsOptions[0])&&U(d,t))return o[t]=3,r[t];if(s!==W&&U(s,t))return o[t]=4,s[t];Ks&&(o[t]=0)}}const u=Pt[t];let h,v;if(u)return t==="$attrs"&&le(e.attrs,"get",""),u(e);if((h=l.__cssModules)&&(h=h[t]))return h;if(s!==W&&U(s,t))return o[t]=4,s[t];if(v=f.config.globalProperties,U(v,t))return v[t]},set({_:e},t,s){const{data:n,setupState:i,ctx:r}=e;return Ms(i,t)?(i[t]=s,!0):n!==W&&U(n,t)?(n[t]=s,!0):U(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(r[t]=s,!0)},has({_:{data:e,setupState:t,accessCache:s,ctx:n,appContext:i,propsOptions:r}},o){let l;return!!s[o]||e!==W&&U(e,o)||Ms(t,o)||(l=r[0])&&U(l,o)||U(n,o)||U(Pt,o)||U(i.config.globalProperties,o)},defineProperty(e,t,s){return s.get!=null?e._.accessCache[t]=0:U(s,"value")&&this.set(e,t,s.value,null),Reflect.defineProperty(e,t,s)}};function Tn(e){return F(e)?e.reduce((t,s)=>(t[s]=null,t),{}):e}let Ks=!0;function Eo(e){const t=qi(e),s=e.proxy,n=e.ctx;Ks=!1,t.beforeCreate&&En(t.beforeCreate,e,"bc");const{data:i,computed:r,methods:o,watch:l,provide:f,inject:d,created:u,beforeMount:h,mounted:v,beforeUpdate:g,updated:T,activated:S,deactivated:M,beforeDestroy:O,beforeUnmount:k,destroyed:B,unmounted:R,render:z,renderTracked:te,renderTriggered:fe,errorCaptured:pe,serverPrefetch:N,expose:K,inheritAttrs:Z,components:L,directives:X,filters:oe}=t;if(d&&Ao(d,n,null),o)for(const Q in o){const q=o[Q];$(q)&&(n[Q]=q.bind(s))}if(i){const Q=i.call(s,s);Y(Q)&&(e.data=rn(Q))}if(Ks=!0,r)for(const Q in r){const q=r[Q],nt=$(q)?q.bind(s,s):$(q.get)?q.get.bind(s,s):Ne,zt=!$(q)&&$(q.set)?q.set.bind(s):Ne,it=hl({get:nt,set:zt});Object.defineProperty(n,Q,{enumerable:!0,configurable:!0,get:()=>it.value,set:Oe=>it.value=Oe})}if(l)for(const Q in l)zi(l[Q],n,s,Q);if(f){const Q=$(f)?f.call(s):f;Reflect.ownKeys(Q).forEach(q=>{Ro(q,Q[q])})}u&&En(u,e,"c");function se(Q,q){F(q)?q.forEach(nt=>Q(nt.bind(s))):q&&Q(q.bind(s))}if(se(_o,h),se(Vi,v),se(bo,g),se(yo,T),se(po,S),se(go,M),se(Co,pe),se(wo,te),se(xo,fe),se(Ki,k),se(Wi,R),se(vo,N),F(K))if(K.length){const Q=e.exposed||(e.exposed={});K.forEach(q=>{Object.defineProperty(Q,q,{get:()=>s[q],set:nt=>s[q]=nt,enumerable:!0})})}else e.exposed||(e.exposed={});z&&e.render===Ne&&(e.render=z),Z!=null&&(e.inheritAttrs=Z),L&&(e.components=L),X&&(e.directives=X),N&&Bi(e)}function Ao(e,t,s=Ne){F(e)&&(e=Ws(e));for(const n in e){const i=e[n];let r;Y(i)?"default"in i?r=Qt(i.from||n,i.default,!0):r=Qt(i.from||n):r=Qt(i),ce(r)?Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:()=>r.value,set:o=>r.value=o}):t[n]=r}}function En(e,t,s){Le(F(e)?e.map(n=>n.bind(t.proxy)):e.bind(t.proxy),t,s)}function zi(e,t,s,n){let i=n.includes(".")?or(s,n):()=>s[n];if(ee(e)){const r=t[e];$(r)&&Os(i,r)}else if($(e))Os(i,e.bind(s));else if(Y(e))if(F(e))e.forEach(r=>zi(r,t,s,n));else{const r=$(e.handler)?e.handler.bind(s):t[e.handler];$(r)&&Os(i,r,e)}}function qi(e){const t=e.type,{mixins:s,extends:n}=t,{mixins:i,optionsCache:r,config:{optionMergeStrategies:o}}=e.appContext,l=r.get(t);let f;return l?f=l:!i.length&&!s&&!n?f=t:(f={},i.length&&i.forEach(d=>os(f,d,o,!0)),os(f,t,o)),Y(t)&&r.set(t,f),f}function os(e,t,s,n=!1){const{mixins:i,extends:r}=t;r&&os(e,r,s,!0),i&&i.forEach(o=>os(e,o,s,!0));for(const o in t)if(!(n&&o==="expose")){const l=Mo[o]||s&&s[o];e[o]=l?l(e[o],t[o]):t[o]}return e}const Mo={data:An,props:Mn,emits:Mn,methods:Lt,computed:Lt,beforeCreate:ae,created:ae,beforeMount:ae,mounted:ae,beforeUpdate:ae,updated:ae,beforeDestroy:ae,beforeUnmount:ae,destroyed:ae,unmounted:ae,activated:ae,deactivated:ae,errorCaptured:ae,serverPrefetch:ae,components:Lt,directives:Lt,watch:Oo,provide:An,inject:Lo};function An(e,t){return t?e?function(){return ie($(e)?e.call(this,this):e,$(t)?t.call(this,this):t)}:t:e}function Lo(e,t){return Lt(Ws(e),Ws(t))}function Ws(e){if(F(e)){const t={};for(let s=0;s<e.length;s++)t[e[s]]=e[s];return t}return e}function ae(e,t){return e?[...new Set([].concat(e,t))]:t}function Lt(e,t){return e?ie(Object.create(null),e,t):t}function Mn(e,t){return e?F(e)&&F(t)?[...new Set([...e,...t])]:ie(Object.create(null),Tn(e),Tn(t??{})):t}function Oo(e,t){if(!e)return t;if(!t)return e;const s=ie(Object.create(null),e);for(const n in t)s[n]=ae(e[n],t[n]);return s}function Gi(){return{app:null,config:{isNativeTag:yr,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Do=0;function Io(e,t){return function(n,i=null){$(n)||(n=ie({},n)),i!=null&&!Y(i)&&(i=null);const r=Gi(),o=new WeakSet,l=[];let f=!1;const d=r.app={_uid:Do++,_component:n,_props:i,_container:null,_context:r,_instance:null,version:gl,get config(){return r.config},set config(u){},use(u,...h){return o.has(u)||(u&&$(u.install)?(o.add(u),u.install(d,...h)):$(u)&&(o.add(u),u(d,...h))),d},mixin(u){return r.mixins.includes(u)||r.mixins.push(u),d},component(u,h){return h?(r.components[u]=h,d):r.components[u]},directive(u,h){return h?(r.directives[u]=h,d):r.directives[u]},mount(u,h,v){if(!f){const g=d._ceVNode||ne(n,i);return g.appContext=r,v===!0?v="svg":v===!1&&(v=void 0),e(g,u,v),f=!0,d._container=u,u.__vue_app__=d,vs(g.component)}},onUnmount(u){l.push(u)},unmount(){f&&(Le(l,d._instance,16),e(null,d._container),delete d._container.__vue_app__)},provide(u,h){return r.provides[u]=h,d},runWithContext(u){const h=xt;xt=d;try{return u()}finally{xt=h}}};return d}}let xt=null;function Ro(e,t){if(he){let s=he.provides;const n=he.parent&&he.parent.provides;n===s&&(s=he.provides=Object.create(n)),s[e]=t}}function Qt(e,t,s=!1){const n=dr();if(n||xt){let i=xt?xt._context.provides:n?n.parent==null||n.ce?n.vnode.appContext&&n.vnode.appContext.provides:n.parent.provides:void 0;if(i&&e in i)return i[e];if(arguments.length>1)return s&&$(t)?t.call(n&&n.proxy):t}}const Ji={},Yi=()=>Object.create(Ji),Xi=e=>Object.getPrototypeOf(e)===Ji;function Fo(e,t,s,n=!1){const i={},r=Yi();e.propsDefaults=Object.create(null),Zi(e,t,i,r);for(const o in e.propsOptions[0])o in i||(i[o]=void 0);s?e.props=n?i:Xr(i):e.type.props?e.props=i:e.props=r,e.attrs=r}function Po(e,t,s,n){const{props:i,attrs:r,vnode:{patchFlag:o}}=e,l=j(i),[f]=e.propsOptions;let d=!1;if((n||o>0)&&!(o&16)){if(o&8){const u=e.vnode.dynamicProps;for(let h=0;h<u.length;h++){let v=u[h];if(bs(e.emitsOptions,v))continue;const g=t[v];if(f)if(U(r,v))g!==r[v]&&(r[v]=g,d=!0);else{const T=Qe(v);i[T]=zs(f,l,T,g,e,!1)}else g!==r[v]&&(r[v]=g,d=!0)}}}else{Zi(e,t,i,r)&&(d=!0);let u;for(const h in l)(!t||!U(t,h)&&((u=ht(h))===h||!U(t,u)))&&(f?s&&(s[h]!==void 0||s[u]!==void 0)&&(i[h]=zs(f,l,h,void 0,e,!0)):delete i[h]);if(r!==l)for(const h in r)(!t||!U(t,h))&&(delete r[h],d=!0)}d&&Ve(e.attrs,"set","")}function Zi(e,t,s,n){const[i,r]=e.propsOptions;let o=!1,l;if(t)for(let f in t){if(Ot(f))continue;const d=t[f];let u;i&&U(i,u=Qe(f))?!r||!r.includes(u)?s[u]=d:(l||(l={}))[u]=d:bs(e.emitsOptions,f)||(!(f in n)||d!==n[f])&&(n[f]=d,o=!0)}if(r){const f=j(s),d=l||W;for(let u=0;u<r.length;u++){const h=r[u];s[h]=zs(i,f,h,d[h],e,!U(d,h))}}return o}function zs(e,t,s,n,i,r){const o=e[s];if(o!=null){const l=U(o,"default");if(l&&n===void 0){const f=o.default;if(o.type!==Function&&!o.skipFactory&&$(f)){const{propsDefaults:d}=i;if(s in d)n=d[s];else{const u=Wt(i);n=d[s]=f.call(null,t),u()}}else n=f;i.ce&&i.ce._setProp(s,n)}o[0]&&(r&&!l?n=!1:o[1]&&(n===""||n===ht(s))&&(n=!0))}return n}const ko=new WeakMap;function Qi(e,t,s=!1){const n=s?ko:t.propsCache,i=n.get(e);if(i)return i;const r=e.props,o={},l=[];let f=!1;if(!$(e)){const u=h=>{f=!0;const[v,g]=Qi(h,t,!0);ie(o,v),g&&l.push(...g)};!s&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}if(!r&&!f)return Y(e)&&n.set(e,_t),_t;if(F(r))for(let u=0;u<r.length;u++){const h=Qe(r[u]);Ln(h)&&(o[h]=W)}else if(r)for(const u in r){const h=Qe(u);if(Ln(h)){const v=r[u],g=o[h]=F(v)||$(v)?{type:v}:ie({},v),T=g.type;let S=!1,M=!0;if(F(T))for(let O=0;O<T.length;++O){const k=T[O],B=$(k)&&k.name;if(B==="Boolean"){S=!0;break}else B==="String"&&(M=!1)}else S=$(T)&&T.name==="Boolean";g[0]=S,g[1]=M,(S||U(g,"default"))&&l.push(h)}}const d=[o,l];return Y(e)&&n.set(e,d),d}function Ln(e){return e[0]!=="$"&&!Ot(e)}const fn=e=>e==="_"||e==="__"||e==="_ctx"||e==="$stable",an=e=>F(e)?e.map(ke):[ke(e)],$o=(e,t,s)=>{if(t._n)return t;const n=Fi((...i)=>an(t(...i)),s);return n._c=!1,n},er=(e,t,s)=>{const n=e._ctx;for(const i in e){if(fn(i))continue;const r=e[i];if($(r))t[i]=$o(i,r,n);else if(r!=null){const o=an(r);t[i]=()=>o}}},tr=(e,t)=>{const s=an(t);e.slots.default=()=>s},sr=(e,t,s)=>{for(const n in t)(s||!fn(n))&&(e[n]=t[n])},No=(e,t,s)=>{const n=e.slots=Yi();if(e.vnode.shapeFlag&32){const i=t.__;i&&ks(n,"__",i,!0);const r=t._;r?(sr(n,t,s),s&&ks(n,"_",r,!0)):er(t,n)}else t&&tr(e,t)},Ho=(e,t,s)=>{const{vnode:n,slots:i}=e;let r=!0,o=W;if(n.shapeFlag&32){const l=t._;l?s&&l===1?r=!1:sr(i,t,s):(r=!t.$stable,er(t,i)),o=t}else t&&(tr(e,t),o={default:1});if(r)for(const l in i)!fn(l)&&o[l]==null&&delete i[l]},ve=Qo;function jo(e){return Bo(e)}function Bo(e,t){const s=ds();s.__VUE__=!0;const{insert:n,remove:i,patchProp:r,createElement:o,createText:l,createComment:f,setText:d,setElementText:u,parentNode:h,nextSibling:v,setScopeId:g=Ne,insertStaticContent:T}=e,S=(c,a,p,b=null,m=null,_=null,E=void 0,C=null,w=!!a.dynamicChildren)=>{if(c===a)return;c&&!at(c,a)&&(b=qt(c),Oe(c,m,_,!0),c=null),a.patchFlag===-2&&(w=!1,a.dynamicChildren=null);const{type:y,ref:I,shapeFlag:A}=a;switch(y){case ys:M(c,a,p,b);break;case de:O(c,a,p,b);break;case Ds:c==null&&k(a,p,b,E);break;case Se:L(c,a,p,b,m,_,E,C,w);break;default:A&1?z(c,a,p,b,m,_,E,C,w):A&6?X(c,a,p,b,m,_,E,C,w):(A&64||A&128)&&y.process(c,a,p,b,m,_,E,C,w,St)}I!=null&&m?Rt(I,c&&c.ref,_,a||c,!a):I==null&&c&&c.ref!=null&&Rt(c.ref,null,_,c,!0)},M=(c,a,p,b)=>{if(c==null)n(a.el=l(a.children),p,b);else{const m=a.el=c.el;a.children!==c.children&&d(m,a.children)}},O=(c,a,p,b)=>{c==null?n(a.el=f(a.children||""),p,b):a.el=c.el},k=(c,a,p,b)=>{[c.el,c.anchor]=T(c.children,a,p,b,c.el,c.anchor)},B=({el:c,anchor:a},p,b)=>{let m;for(;c&&c!==a;)m=v(c),n(c,p,b),c=m;n(a,p,b)},R=({el:c,anchor:a})=>{let p;for(;c&&c!==a;)p=v(c),i(c),c=p;i(a)},z=(c,a,p,b,m,_,E,C,w)=>{a.type==="svg"?E="svg":a.type==="math"&&(E="mathml"),c==null?te(a,p,b,m,_,E,C,w):N(c,a,m,_,E,C,w)},te=(c,a,p,b,m,_,E,C)=>{let w,y;const{props:I,shapeFlag:A,transition:D,dirs:P}=c;if(w=c.el=o(c.type,_,I&&I.is,I),A&8?u(w,c.children):A&16&&pe(c.children,w,null,b,m,Ls(c,_),E,C),P&&rt(c,null,b,"created"),fe(w,c,c.scopeId,E,b),I){for(const G in I)G!=="value"&&!Ot(G)&&r(w,G,null,I[G],_,b);"value"in I&&r(w,"value",null,I.value,_),(y=I.onVnodeBeforeMount)&&Fe(y,b,c)}P&&rt(c,null,b,"beforeMount");const H=Uo(m,D);H&&D.beforeEnter(w),n(w,a,p),((y=I&&I.onVnodeMounted)||H||P)&&ve(()=>{y&&Fe(y,b,c),H&&D.enter(w),P&&rt(c,null,b,"mounted")},m)},fe=(c,a,p,b,m)=>{if(p&&g(c,p),b)for(let _=0;_<b.length;_++)g(c,b[_]);if(m){let _=m.subTree;if(a===_||cr(_.type)&&(_.ssContent===a||_.ssFallback===a)){const E=m.vnode;fe(c,E,E.scopeId,E.slotScopeIds,m.parent)}}},pe=(c,a,p,b,m,_,E,C,w=0)=>{for(let y=w;y<c.length;y++){const I=c[y]=C?Xe(c[y]):ke(c[y]);S(null,I,a,p,b,m,_,E,C)}},N=(c,a,p,b,m,_,E)=>{const C=a.el=c.el;let{patchFlag:w,dynamicChildren:y,dirs:I}=a;w|=c.patchFlag&16;const A=c.props||W,D=a.props||W;let P;if(p&&ot(p,!1),(P=D.onVnodeBeforeUpdate)&&Fe(P,p,a,c),I&&rt(a,c,p,"beforeUpdate"),p&&ot(p,!0),(A.innerHTML&&D.innerHTML==null||A.textContent&&D.textContent==null)&&u(C,""),y?K(c.dynamicChildren,y,C,p,b,Ls(a,m),_):E||q(c,a,C,null,p,b,Ls(a,m),_,!1),w>0){if(w&16)Z(C,A,D,p,m);else if(w&2&&A.class!==D.class&&r(C,"class",null,D.class,m),w&4&&r(C,"style",A.style,D.style,m),w&8){const H=a.dynamicProps;for(let G=0;G<H.length;G++){const V=H[G],ge=A[V],me=D[V];(me!==ge||V==="value")&&r(C,V,ge,me,m,p)}}w&1&&c.children!==a.children&&u(C,a.children)}else!E&&y==null&&Z(C,A,D,p,m);((P=D.onVnodeUpdated)||I)&&ve(()=>{P&&Fe(P,p,a,c),I&&rt(a,c,p,"updated")},b)},K=(c,a,p,b,m,_,E)=>{for(let C=0;C<a.length;C++){const w=c[C],y=a[C],I=w.el&&(w.type===Se||!at(w,y)||w.shapeFlag&198)?h(w.el):p;S(w,y,I,null,b,m,_,E,!0)}},Z=(c,a,p,b,m)=>{if(a!==p){if(a!==W)for(const _ in a)!Ot(_)&&!(_ in p)&&r(c,_,a[_],null,m,b);for(const _ in p){if(Ot(_))continue;const E=p[_],C=a[_];E!==C&&_!=="value"&&r(c,_,C,E,m,b)}"value"in p&&r(c,"value",a.value,p.value,m)}},L=(c,a,p,b,m,_,E,C,w)=>{const y=a.el=c?c.el:l(""),I=a.anchor=c?c.anchor:l("");let{patchFlag:A,dynamicChildren:D,slotScopeIds:P}=a;P&&(C=C?C.concat(P):P),c==null?(n(y,p,b),n(I,p,b),pe(a.children||[],p,I,m,_,E,C,w)):A>0&&A&64&&D&&c.dynamicChildren?(K(c.dynamicChildren,D,p,m,_,E,C),(a.key!=null||m&&a===m.subTree)&&nr(c,a,!0)):q(c,a,p,I,m,_,E,C,w)},X=(c,a,p,b,m,_,E,C,w)=>{a.slotScopeIds=C,c==null?a.shapeFlag&512?m.ctx.activate(a,p,b,E,w):oe(a,p,b,m,_,E,w):He(c,a,w)},oe=(c,a,p,b,m,_,E)=>{const C=c.component=ll(c,b,m);if(ms(c)&&(C.ctx.renderer=St),cl(C,!1,E),C.asyncDep){if(m&&m.registerDep(C,se,E),!c.el){const w=C.subTree=ne(de);O(null,w,a,p),c.placeholder=w.el}}else se(C,c,a,p,m,_,E)},He=(c,a,p)=>{const b=a.component=c.component;if(Xo(c,a,p))if(b.asyncDep&&!b.asyncResolved){Q(b,a,p);return}else b.next=a,b.update();else a.el=c.el,b.vnode=a},se=(c,a,p,b,m,_,E)=>{const C=()=>{if(c.isMounted){let{next:A,bu:D,u:P,parent:H,vnode:G}=c;{const Ie=ir(c);if(Ie){A&&(A.el=G.el,Q(c,A,E)),Ie.asyncDep.then(()=>{c.isUnmounted||C()});return}}let V=A,ge;ot(c,!1),A?(A.el=G.el,Q(c,A,E)):A=G,D&&Zt(D),(ge=A.props&&A.props.onVnodeBeforeUpdate)&&Fe(ge,H,A,G),ot(c,!0);const me=Dn(c),De=c.subTree;c.subTree=me,S(De,me,h(De.el),qt(De),c,m,_),A.el=me.el,V===null&&Zo(c,me.el),P&&ve(P,m),(ge=A.props&&A.props.onVnodeUpdated)&&ve(()=>Fe(ge,H,A,G),m)}else{let A;const{el:D,props:P}=a,{bm:H,m:G,parent:V,root:ge,type:me}=c,De=Ft(a);ot(c,!1),H&&Zt(H),!De&&(A=P&&P.onVnodeBeforeMount)&&Fe(A,V,a),ot(c,!0);{ge.ce&&ge.ce._def.shadowRoot!==!1&&ge.ce._injectChildStyle(me);const Ie=c.subTree=Dn(c);S(null,Ie,p,b,c,m,_),a.el=Ie.el}if(G&&ve(G,m),!De&&(A=P&&P.onVnodeMounted)){const Ie=a;ve(()=>Fe(A,V,Ie),m)}(a.shapeFlag&256||V&&Ft(V.vnode)&&V.vnode.shapeFlag&256)&&c.a&&ve(c.a,m),c.isMounted=!0,a=p=b=null}};c.scope.on();const w=c.effect=new di(C);c.scope.off();const y=c.update=w.run.bind(w),I=c.job=w.runIfDirty.bind(w);I.i=c,I.id=c.uid,w.scheduler=()=>cn(I),ot(c,!0),y()},Q=(c,a,p)=>{a.component=c;const b=c.vnode.props;c.vnode=a,c.next=null,Po(c,a.props,b,p),Ho(c,a.children,p),We(),xn(c),ze()},q=(c,a,p,b,m,_,E,C,w=!1)=>{const y=c&&c.children,I=c?c.shapeFlag:0,A=a.children,{patchFlag:D,shapeFlag:P}=a;if(D>0){if(D&128){zt(y,A,p,b,m,_,E,C,w);return}else if(D&256){nt(y,A,p,b,m,_,E,C,w);return}}P&8?(I&16&&Ct(y,m,_),A!==y&&u(p,A)):I&16?P&16?zt(y,A,p,b,m,_,E,C,w):Ct(y,m,_,!0):(I&8&&u(p,""),P&16&&pe(A,p,b,m,_,E,C,w))},nt=(c,a,p,b,m,_,E,C,w)=>{c=c||_t,a=a||_t;const y=c.length,I=a.length,A=Math.min(y,I);let D;for(D=0;D<A;D++){const P=a[D]=w?Xe(a[D]):ke(a[D]);S(c[D],P,p,null,m,_,E,C,w)}y>I?Ct(c,m,_,!0,!1,A):pe(a,p,b,m,_,E,C,w,A)},zt=(c,a,p,b,m,_,E,C,w)=>{let y=0;const I=a.length;let A=c.length-1,D=I-1;for(;y<=A&&y<=D;){const P=c[y],H=a[y]=w?Xe(a[y]):ke(a[y]);if(at(P,H))S(P,H,p,null,m,_,E,C,w);else break;y++}for(;y<=A&&y<=D;){const P=c[A],H=a[D]=w?Xe(a[D]):ke(a[D]);if(at(P,H))S(P,H,p,null,m,_,E,C,w);else break;A--,D--}if(y>A){if(y<=D){const P=D+1,H=P<I?a[P].el:b;for(;y<=D;)S(null,a[y]=w?Xe(a[y]):ke(a[y]),p,H,m,_,E,C,w),y++}}else if(y>D)for(;y<=A;)Oe(c[y],m,_,!0),y++;else{const P=y,H=y,G=new Map;for(y=H;y<=D;y++){const ye=a[y]=w?Xe(a[y]):ke(a[y]);ye.key!=null&&G.set(ye.key,y)}let V,ge=0;const me=D-H+1;let De=!1,Ie=0;const Tt=new Array(me);for(y=0;y<me;y++)Tt[y]=0;for(y=P;y<=A;y++){const ye=c[y];if(ge>=me){Oe(ye,m,_,!0);continue}let Re;if(ye.key!=null)Re=G.get(ye.key);else for(V=H;V<=D;V++)if(Tt[V-H]===0&&at(ye,a[V])){Re=V;break}Re===void 0?Oe(ye,m,_,!0):(Tt[Re-H]=y+1,Re>=Ie?Ie=Re:De=!0,S(ye,a[Re],p,null,m,_,E,C,w),ge++)}const gn=De?Vo(Tt):_t;for(V=gn.length-1,y=me-1;y>=0;y--){const ye=H+y,Re=a[ye],mn=a[ye+1],_n=ye+1<I?mn.el||mn.placeholder:b;Tt[y]===0?S(null,Re,p,_n,m,_,E,C,w):De&&(V<0||y!==gn[V]?it(Re,p,_n,2):V--)}}},it=(c,a,p,b,m=null)=>{const{el:_,type:E,transition:C,children:w,shapeFlag:y}=c;if(y&6){it(c.component.subTree,a,p,b);return}if(y&128){c.suspense.move(a,p,b);return}if(y&64){E.move(c,a,p,St);return}if(E===Se){n(_,a,p);for(let A=0;A<w.length;A++)it(w[A],a,p,b);n(c.anchor,a,p);return}if(E===Ds){B(c,a,p);return}if(b!==2&&y&1&&C)if(b===0)C.beforeEnter(_),n(_,a,p),ve(()=>C.enter(_),m);else{const{leave:A,delayLeave:D,afterLeave:P}=C,H=()=>{c.ctx.isUnmounted?i(_):n(_,a,p)},G=()=>{A(_,()=>{H(),P&&P()})};D?D(_,H,G):G()}else n(_,a,p)},Oe=(c,a,p,b=!1,m=!1)=>{const{type:_,props:E,ref:C,children:w,dynamicChildren:y,shapeFlag:I,patchFlag:A,dirs:D,cacheIndex:P}=c;if(A===-2&&(m=!1),C!=null&&(We(),Rt(C,null,p,c,!0),ze()),P!=null&&(a.renderCache[P]=void 0),I&256){a.ctx.deactivate(c);return}const H=I&1&&D,G=!Ft(c);let V;if(G&&(V=E&&E.onVnodeBeforeUnmount)&&Fe(V,a,c),I&6)br(c.component,p,b);else{if(I&128){c.suspense.unmount(p,b);return}H&&rt(c,null,a,"beforeUnmount"),I&64?c.type.remove(c,a,p,St,b):y&&!y.hasOnce&&(_!==Se||A>0&&A&64)?Ct(y,a,p,!1,!0):(_===Se&&A&384||!m&&I&16)&&Ct(w,a,p),b&&hn(c)}(G&&(V=E&&E.onVnodeUnmounted)||H)&&ve(()=>{V&&Fe(V,a,c),H&&rt(c,null,a,"unmounted")},p)},hn=c=>{const{type:a,el:p,anchor:b,transition:m}=c;if(a===Se){_r(p,b);return}if(a===Ds){R(c);return}const _=()=>{i(p),m&&!m.persisted&&m.afterLeave&&m.afterLeave()};if(c.shapeFlag&1&&m&&!m.persisted){const{leave:E,delayLeave:C}=m,w=()=>E(p,_);C?C(c.el,_,w):w()}else _()},_r=(c,a)=>{let p;for(;c!==a;)p=v(c),i(c),c=p;i(a)},br=(c,a,p)=>{const{bum:b,scope:m,job:_,subTree:E,um:C,m:w,a:y,parent:I,slots:{__:A}}=c;On(w),On(y),b&&Zt(b),I&&F(A)&&A.forEach(D=>{I.renderCache[D]=void 0}),m.stop(),_&&(_.flags|=8,Oe(E,c,a,p)),C&&ve(C,a),ve(()=>{c.isUnmounted=!0},a),a&&a.pendingBranch&&!a.isUnmounted&&c.asyncDep&&!c.asyncResolved&&c.suspenseId===a.pendingId&&(a.deps--,a.deps===0&&a.resolve())},Ct=(c,a,p,b=!1,m=!1,_=0)=>{for(let E=_;E<c.length;E++)Oe(c[E],a,p,b,m)},qt=c=>{if(c.shapeFlag&6)return qt(c.component.subTree);if(c.shapeFlag&128)return c.suspense.next();const a=v(c.anchor||c.el),p=a&&a[fo];return p?v(p):a};let xs=!1;const pn=(c,a,p)=>{c==null?a._vnode&&Oe(a._vnode,null,null,!0):S(a._vnode||null,c,a,null,null,null,p),a._vnode=c,xs||(xs=!0,xn(),Di(),xs=!1)},St={p:S,um:Oe,m:it,r:hn,mt:oe,mc:pe,pc:q,pbc:K,n:qt,o:e};return{render:pn,hydrate:void 0,createApp:Io(pn)}}function Ls({type:e,props:t},s){return s==="svg"&&e==="foreignObject"||s==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:s}function ot({effect:e,job:t},s){s?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function Uo(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function nr(e,t,s=!1){const n=e.children,i=t.children;if(F(n)&&F(i))for(let r=0;r<n.length;r++){const o=n[r];let l=i[r];l.shapeFlag&1&&!l.dynamicChildren&&((l.patchFlag<=0||l.patchFlag===32)&&(l=i[r]=Xe(i[r]),l.el=o.el),!s&&l.patchFlag!==-2&&nr(o,l)),l.type===ys&&(l.el=o.el),l.type===de&&!l.el&&(l.el=o.el)}}function Vo(e){const t=e.slice(),s=[0];let n,i,r,o,l;const f=e.length;for(n=0;n<f;n++){const d=e[n];if(d!==0){if(i=s[s.length-1],e[i]<d){t[n]=i,s.push(n);continue}for(r=0,o=s.length-1;r<o;)l=r+o>>1,e[s[l]]<d?r=l+1:o=l;d<e[s[r]]&&(r>0&&(t[n]=s[r-1]),s[r]=n)}}for(r=s.length,o=s[r-1];r-- >0;)s[r]=o,o=t[o];return s}function ir(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:ir(t)}function On(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}const Ko=Symbol.for("v-scx"),Wo=()=>Qt(Ko);function Os(e,t,s){return rr(e,t,s)}function rr(e,t,s=W){const{immediate:n,deep:i,flush:r,once:o}=s,l=ie({},s),f=t&&n||!t&&r!=="post";let d;if(Ut){if(r==="sync"){const g=Wo();d=g.__watcherHandles||(g.__watcherHandles=[])}else if(!f){const g=()=>{};return g.stop=Ne,g.resume=Ne,g.pause=Ne,g}}const u=he;l.call=(g,T,S)=>Le(g,u,T,S);let h=!1;r==="post"?l.scheduler=g=>{ve(g,u&&u.suspense)}:r!=="sync"&&(h=!0,l.scheduler=(g,T)=>{T?g():cn(g)}),l.augmentJob=g=>{t&&(g.flags|=4),h&&(g.flags|=2,u&&(g.id=u.uid,g.i=u))};const v=ro(e,t,l);return Ut&&(d?d.push(v):f&&v()),v}function zo(e,t,s){const n=this.proxy,i=ee(e)?e.includes(".")?or(n,e):()=>n[e]:e.bind(n,n);let r;$(t)?r=t:(r=t.handler,s=t);const o=Wt(this),l=rr(i,r.bind(n),s);return o(),l}function or(e,t){const s=t.split(".");return()=>{let n=e;for(let i=0;i<s.length&&n;i++)n=n[s[i]];return n}}const qo=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${Qe(t)}Modifiers`]||e[`${ht(t)}Modifiers`];function Go(e,t,...s){if(e.isUnmounted)return;const n=e.vnode.props||W;let i=s;const r=t.startsWith("update:"),o=r&&qo(n,t.slice(7));o&&(o.trim&&(i=s.map(u=>ee(u)?u.trim():u)),o.number&&(i=s.map($s)));let l,f=n[l=ws(t)]||n[l=ws(Qe(t))];!f&&r&&(f=n[l=ws(ht(t))]),f&&Le(f,e,6,i);const d=n[l+"Once"];if(d){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Le(d,e,6,i)}}function lr(e,t,s=!1){const n=t.emitsCache,i=n.get(e);if(i!==void 0)return i;const r=e.emits;let o={},l=!1;if(!$(e)){const f=d=>{const u=lr(d,t,!0);u&&(l=!0,ie(o,u))};!s&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}return!r&&!l?(Y(e)&&n.set(e,null),null):(F(r)?r.forEach(f=>o[f]=null):ie(o,r),Y(e)&&n.set(e,o),o)}function bs(e,t){return!e||!fs(t)?!1:(t=t.slice(2).replace(/Once$/,""),U(e,t[0].toLowerCase()+t.slice(1))||U(e,ht(t))||U(e,t))}function Dn(e){const{type:t,vnode:s,proxy:n,withProxy:i,propsOptions:[r],slots:o,attrs:l,emit:f,render:d,renderCache:u,props:h,data:v,setupState:g,ctx:T,inheritAttrs:S}=e,M=rs(e);let O,k;try{if(s.shapeFlag&4){const R=i||n,z=R;O=ke(d.call(z,R,u,h,g,v,T)),k=l}else{const R=t;O=ke(R.length>1?R(h,{attrs:l,slots:o,emit:f}):R(h,null)),k=t.props?l:Jo(l)}}catch(R){kt.length=0,ps(R,e,1),O=ne(de)}let B=O;if(k&&S!==!1){const R=Object.keys(k),{shapeFlag:z}=B;R.length&&z&7&&(r&&R.some(Ys)&&(k=Yo(k,r)),B=tt(B,k,!1,!0))}return s.dirs&&(B=tt(B,null,!1,!0),B.dirs=B.dirs?B.dirs.concat(s.dirs):s.dirs),s.transition&&jt(B,s.transition),O=B,rs(M),O}const Jo=e=>{let t;for(const s in e)(s==="class"||s==="style"||fs(s))&&((t||(t={}))[s]=e[s]);return t},Yo=(e,t)=>{const s={};for(const n in e)(!Ys(n)||!(n.slice(9)in t))&&(s[n]=e[n]);return s};function Xo(e,t,s){const{props:n,children:i,component:r}=e,{props:o,children:l,patchFlag:f}=t,d=r.emitsOptions;if(t.dirs||t.transition)return!0;if(s&&f>=0){if(f&1024)return!0;if(f&16)return n?In(n,o,d):!!o;if(f&8){const u=t.dynamicProps;for(let h=0;h<u.length;h++){const v=u[h];if(o[v]!==n[v]&&!bs(d,v))return!0}}}else return(i||l)&&(!l||!l.$stable)?!0:n===o?!1:n?o?In(n,o,d):!0:!!o;return!1}function In(e,t,s){const n=Object.keys(t);if(n.length!==Object.keys(e).length)return!0;for(let i=0;i<n.length;i++){const r=n[i];if(t[r]!==e[r]&&!bs(s,r))return!0}return!1}function Zo({vnode:e,parent:t},s){for(;t;){const n=t.subTree;if(n.suspense&&n.suspense.activeBranch===e&&(n.el=e.el),n===e)(e=t.vnode).el=s,t=t.parent;else break}}const cr=e=>e.__isSuspense;function Qo(e,t){t&&t.pendingBranch?F(e)?t.effects.push(...e):t.effects.push(e):co(e)}const Se=Symbol.for("v-fgt"),ys=Symbol.for("v-txt"),de=Symbol.for("v-cmt"),Ds=Symbol.for("v-stc"),kt=[];let we=null;function be(e=!1){kt.push(we=e?null:[])}function el(){kt.pop(),we=kt[kt.length-1]||null}let Bt=1;function Rn(e,t=!1){Bt+=e,e<0&&we&&t&&(we.hasOnce=!0)}function fr(e){return e.dynamicChildren=Bt>0?we||_t:null,el(),Bt>0&&we&&we.push(e),e}function xe(e,t,s,n,i,r){return fr(x(e,t,s,n,i,r,!0))}function tl(e,t,s,n,i){return fr(ne(e,t,s,n,i,!0))}function ls(e){return e?e.__v_isVNode===!0:!1}function at(e,t){return e.type===t.type&&e.key===t.key}const ar=({key:e})=>e??null,es=({ref:e,ref_key:t,ref_for:s})=>(typeof e=="number"&&(e=""+e),e!=null?ee(e)||ce(e)||$(e)?{i:Te,r:e,k:t,f:!!s}:e:null);function x(e,t=null,s=null,n=0,i=null,r=e===Se?0:1,o=!1,l=!1){const f={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&ar(t),ref:t&&es(t),scopeId:Ri,slotScopeIds:null,children:s,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:r,patchFlag:n,dynamicProps:i,dynamicChildren:null,appContext:null,ctx:Te};return l?(un(f,s),r&128&&e.normalize(f)):s&&(f.shapeFlag|=ee(s)?8:16),Bt>0&&!o&&we&&(f.patchFlag>0||r&6)&&f.patchFlag!==32&&we.push(f),f}const ne=sl;function sl(e,t=null,s=null,n=0,i=null,r=!1){if((!e||e===So)&&(e=de),ls(e)){const l=tt(e,t,!0);return s&&un(l,s),Bt>0&&!r&&we&&(l.shapeFlag&6?we[we.indexOf(e)]=l:we.push(l)),l.patchFlag=-2,l}if(dl(e)&&(e=e.__vccOpts),t){t=nl(t);let{class:l,style:f}=t;l&&!ee(l)&&(t.class=$e(l)),Y(f)&&(ln(f)&&!F(f)&&(f=ie({},f)),t.style=wt(f))}const o=ee(e)?1:cr(e)?128:Pi(e)?64:Y(e)?4:$(e)?2:0;return x(e,t,s,n,i,o,r,!0)}function nl(e){return e?ln(e)||Xi(e)?ie({},e):e:null}function tt(e,t,s=!1,n=!1){const{props:i,ref:r,patchFlag:o,children:l,transition:f}=e,d=t?il(i||{},t):i,u={__v_isVNode:!0,__v_skip:!0,type:e.type,props:d,key:d&&ar(d),ref:t&&t.ref?s&&r?F(r)?r.concat(es(t)):[r,es(t)]:es(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Se?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:f,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&tt(e.ssContent),ssFallback:e.ssFallback&&tt(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return f&&n&&jt(u,f.clone(u)),u}function ur(e=" ",t=0){return ne(ys,null,e,t)}function Fn(e="",t=!1){return t?(be(),tl(de,null,e)):ne(de,null,e)}function ke(e){return e==null||typeof e=="boolean"?ne(de):F(e)?ne(Se,null,e.slice()):ls(e)?Xe(e):ne(ys,null,String(e))}function Xe(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:tt(e)}function un(e,t){let s=0;const{shapeFlag:n}=e;if(t==null)t=null;else if(F(t))s=16;else if(typeof t=="object")if(n&65){const i=t.default;i&&(i._c&&(i._d=!1),un(e,i()),i._c&&(i._d=!0));return}else{s=32;const i=t._;!i&&!Xi(t)?t._ctx=Te:i===3&&Te&&(Te.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else $(t)?(t={default:t,_ctx:Te},s=32):(t=String(t),n&64?(s=16,t=[ur(t)]):s=8);e.children=t,e.shapeFlag|=s}function il(...e){const t={};for(let s=0;s<e.length;s++){const n=e[s];for(const i in n)if(i==="class")t.class!==n.class&&(t.class=$e([t.class,n.class]));else if(i==="style")t.style=wt([t.style,n.style]);else if(fs(i)){const r=t[i],o=n[i];o&&r!==o&&!(F(r)&&r.includes(o))&&(t[i]=r?[].concat(r,o):o)}else i!==""&&(t[i]=n[i])}return t}function Fe(e,t,s,n=null){Le(e,t,7,[s,n])}const rl=Gi();let ol=0;function ll(e,t,s){const n=e.type,i=(t?t.appContext:e.appContext)||rl,r={uid:ol++,vnode:e,type:n,parent:t,appContext:i,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new Dr(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(i.provides),ids:t?t.ids:["",0,0],accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Qi(n,i),emitsOptions:lr(n,i),emit:null,emitted:null,propsDefaults:W,inheritAttrs:n.inheritAttrs,ctx:W,data:W,props:W,attrs:W,slots:W,refs:W,setupState:W,setupContext:null,suspense:s,suspenseId:s?s.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return r.ctx={_:r},r.root=t?t.root:r,r.emit=Go.bind(null,r),e.ce&&e.ce(r),r}let he=null;const dr=()=>he||Te;let cs,qs;{const e=ds(),t=(s,n)=>{let i;return(i=e[s])||(i=e[s]=[]),i.push(n),r=>{i.length>1?i.forEach(o=>o(r)):i[0](r)}};cs=t("__VUE_INSTANCE_SETTERS__",s=>he=s),qs=t("__VUE_SSR_SETTERS__",s=>Ut=s)}const Wt=e=>{const t=he;return cs(e),e.scope.on(),()=>{e.scope.off(),cs(t)}},Pn=()=>{he&&he.scope.off(),cs(null)};function hr(e){return e.vnode.shapeFlag&4}let Ut=!1;function cl(e,t=!1,s=!1){t&&qs(t);const{props:n,children:i}=e.vnode,r=hr(e);Fo(e,n,r,t),No(e,i,s||t);const o=r?fl(e,t):void 0;return t&&qs(!1),o}function fl(e,t){const s=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,To);const{setup:n}=s;if(n){We();const i=e.setupContext=n.length>1?ul(e):null,r=Wt(e),o=Kt(n,e,0,[e.props,i]),l=ri(o);if(ze(),r(),(l||e.sp)&&!Ft(e)&&Bi(e),l){if(o.then(Pn,Pn),t)return o.then(f=>{kn(e,f)}).catch(f=>{ps(f,e,0)});e.asyncDep=o}else kn(e,o)}else pr(e)}function kn(e,t,s){$(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Y(t)&&(e.setupState=Ai(t)),pr(e)}function pr(e,t,s){const n=e.type;e.render||(e.render=n.render||Ne);{const i=Wt(e);We();try{Eo(e)}finally{ze(),i()}}}const al={get(e,t){return le(e,"get",""),e[t]}};function ul(e){const t=s=>{e.exposed=s||{}};return{attrs:new Proxy(e.attrs,al),slots:e.slots,emit:e.emit,expose:t}}function vs(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Ai(Zr(e.exposed)),{get(t,s){if(s in t)return t[s];if(s in Pt)return Pt[s](e)},has(t,s){return s in t||s in Pt}})):e.proxy}function dl(e){return $(e)&&"__vccOpts"in e}const hl=(e,t)=>no(e,t,Ut);function pl(e,t,s){const n=arguments.length;return n===2?Y(t)&&!F(t)?ls(t)?ne(e,null,[t]):ne(e,t):ne(e,null,t):(n>3?s=Array.prototype.slice.call(arguments,2):n===3&&ls(s)&&(s=[s]),ne(e,t,s))}const gl="3.5.18";/**
14
+ * @vue/runtime-dom v3.5.18
15
+ * (c) 2018-present Yuxi (Evan) You and Vue contributors
16
+ * @license MIT
17
+ **/let Gs;const $n=typeof window<"u"&&window.trustedTypes;if($n)try{Gs=$n.createPolicy("vue",{createHTML:e=>e})}catch{}const gr=Gs?e=>Gs.createHTML(e):e=>e,ml="http://www.w3.org/2000/svg",_l="http://www.w3.org/1998/Math/MathML",Ue=typeof document<"u"?document:null,Nn=Ue&&Ue.createElement("template"),bl={insert:(e,t,s)=>{t.insertBefore(e,s||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,s,n)=>{const i=t==="svg"?Ue.createElementNS(ml,e):t==="mathml"?Ue.createElementNS(_l,e):s?Ue.createElement(e,{is:s}):Ue.createElement(e);return e==="select"&&n&&n.multiple!=null&&i.setAttribute("multiple",n.multiple),i},createText:e=>Ue.createTextNode(e),createComment:e=>Ue.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Ue.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,s,n,i,r){const o=s?s.previousSibling:t.lastChild;if(i&&(i===r||i.nextSibling))for(;t.insertBefore(i.cloneNode(!0),s),!(i===r||!(i=i.nextSibling)););else{Nn.innerHTML=gr(n==="svg"?`<svg>${e}</svg>`:n==="mathml"?`<math>${e}</math>`:e);const l=Nn.content;if(n==="svg"||n==="mathml"){const f=l.firstChild;for(;f.firstChild;)l.appendChild(f.firstChild);l.removeChild(f)}t.insertBefore(l,s)}return[o?o.nextSibling:t.firstChild,s?s.previousSibling:t.lastChild]}},Ge="transition",At="animation",Vt=Symbol("_vtc"),mr={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},yl=ie({},ki,mr),vl=e=>(e.displayName="Transition",e.props=yl,e),xl=vl((e,{slots:t})=>pl(ho,wl(e),t)),lt=(e,t=[])=>{F(e)?e.forEach(s=>s(...t)):e&&e(...t)},Hn=e=>e?F(e)?e.some(t=>t.length>1):e.length>1:!1;function wl(e){const t={};for(const L in e)L in mr||(t[L]=e[L]);if(e.css===!1)return t;const{name:s="v",type:n,duration:i,enterFromClass:r=`${s}-enter-from`,enterActiveClass:o=`${s}-enter-active`,enterToClass:l=`${s}-enter-to`,appearFromClass:f=r,appearActiveClass:d=o,appearToClass:u=l,leaveFromClass:h=`${s}-leave-from`,leaveActiveClass:v=`${s}-leave-active`,leaveToClass:g=`${s}-leave-to`}=e,T=Cl(i),S=T&&T[0],M=T&&T[1],{onBeforeEnter:O,onEnter:k,onEnterCancelled:B,onLeave:R,onLeaveCancelled:z,onBeforeAppear:te=O,onAppear:fe=k,onAppearCancelled:pe=B}=t,N=(L,X,oe,He)=>{L._enterCancelled=He,ct(L,X?u:l),ct(L,X?d:o),oe&&oe()},K=(L,X)=>{L._isLeaving=!1,ct(L,h),ct(L,g),ct(L,v),X&&X()},Z=L=>(X,oe)=>{const He=L?fe:k,se=()=>N(X,L,oe);lt(He,[X,se]),jn(()=>{ct(X,L?f:r),Be(X,L?u:l),Hn(He)||Bn(X,n,S,se)})};return ie(t,{onBeforeEnter(L){lt(O,[L]),Be(L,r),Be(L,o)},onBeforeAppear(L){lt(te,[L]),Be(L,f),Be(L,d)},onEnter:Z(!1),onAppear:Z(!0),onLeave(L,X){L._isLeaving=!0;const oe=()=>K(L,X);Be(L,h),L._enterCancelled?(Be(L,v),Kn()):(Kn(),Be(L,v)),jn(()=>{L._isLeaving&&(ct(L,h),Be(L,g),Hn(R)||Bn(L,n,M,oe))}),lt(R,[L,oe])},onEnterCancelled(L){N(L,!1,void 0,!0),lt(B,[L])},onAppearCancelled(L){N(L,!0,void 0,!0),lt(pe,[L])},onLeaveCancelled(L){K(L),lt(z,[L])}})}function Cl(e){if(e==null)return null;if(Y(e))return[Is(e.enter),Is(e.leave)];{const t=Is(e);return[t,t]}}function Is(e){return Sr(e)}function Be(e,t){t.split(/\s+/).forEach(s=>s&&e.classList.add(s)),(e[Vt]||(e[Vt]=new Set)).add(t)}function ct(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.remove(n));const s=e[Vt];s&&(s.delete(t),s.size||(e[Vt]=void 0))}function jn(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Sl=0;function Bn(e,t,s,n){const i=e._endId=++Sl,r=()=>{i===e._endId&&n()};if(s!=null)return setTimeout(r,s);const{type:o,timeout:l,propCount:f}=Tl(e,t);if(!o)return n();const d=o+"end";let u=0;const h=()=>{e.removeEventListener(d,v),r()},v=g=>{g.target===e&&++u>=f&&h()};setTimeout(()=>{u<f&&h()},l+1),e.addEventListener(d,v)}function Tl(e,t){const s=window.getComputedStyle(e),n=T=>(s[T]||"").split(", "),i=n(`${Ge}Delay`),r=n(`${Ge}Duration`),o=Un(i,r),l=n(`${At}Delay`),f=n(`${At}Duration`),d=Un(l,f);let u=null,h=0,v=0;t===Ge?o>0&&(u=Ge,h=o,v=r.length):t===At?d>0&&(u=At,h=d,v=f.length):(h=Math.max(o,d),u=h>0?o>d?Ge:At:null,v=u?u===Ge?r.length:f.length:0);const g=u===Ge&&/\b(transform|all)(,|$)/.test(n(`${Ge}Property`).toString());return{type:u,timeout:h,propCount:v,hasTransform:g}}function Un(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((s,n)=>Vn(s)+Vn(e[n])))}function Vn(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function Kn(){return document.body.offsetHeight}function El(e,t,s){const n=e[Vt];n&&(t=(t?[t,...n]:[...n]).join(" ")),t==null?e.removeAttribute("class"):s?e.setAttribute("class",t):e.className=t}const Wn=Symbol("_vod"),Al=Symbol("_vsh"),Ml=Symbol(""),Ll=/(^|;)\s*display\s*:/;function Ol(e,t,s){const n=e.style,i=ee(s);let r=!1;if(s&&!i){if(t)if(ee(t))for(const o of t.split(";")){const l=o.slice(0,o.indexOf(":")).trim();s[l]==null&&ts(n,l,"")}else for(const o in t)s[o]==null&&ts(n,o,"");for(const o in s)o==="display"&&(r=!0),ts(n,o,s[o])}else if(i){if(t!==s){const o=n[Ml];o&&(s+=";"+o),n.cssText=s,r=Ll.test(s)}}else t&&e.removeAttribute("style");Wn in e&&(e[Wn]=r?n.display:"",e[Al]&&(n.display="none"))}const zn=/\s*!important$/;function ts(e,t,s){if(F(s))s.forEach(n=>ts(e,t,n));else if(s==null&&(s=""),t.startsWith("--"))e.setProperty(t,s);else{const n=Dl(e,t);zn.test(s)?e.setProperty(ht(n),s.replace(zn,""),"important"):e[n]=s}}const qn=["Webkit","Moz","ms"],Rs={};function Dl(e,t){const s=Rs[t];if(s)return s;let n=Qe(t);if(n!=="filter"&&n in e)return Rs[t]=n;n=ci(n);for(let i=0;i<qn.length;i++){const r=qn[i]+n;if(r in e)return Rs[t]=r}return t}const Gn="http://www.w3.org/1999/xlink";function Jn(e,t,s,n,i,r=Or(t)){n&&t.startsWith("xlink:")?s==null?e.removeAttributeNS(Gn,t.slice(6,t.length)):e.setAttributeNS(Gn,t,s):s==null||r&&!fi(s)?e.removeAttribute(t):e.setAttribute(t,r?"":st(s)?String(s):s)}function Yn(e,t,s,n,i){if(t==="innerHTML"||t==="textContent"){s!=null&&(e[t]=t==="innerHTML"?gr(s):s);return}const r=e.tagName;if(t==="value"&&r!=="PROGRESS"&&!r.includes("-")){const l=r==="OPTION"?e.getAttribute("value")||"":e.value,f=s==null?e.type==="checkbox"?"on":"":String(s);(l!==f||!("_value"in e))&&(e.value=f),s==null&&e.removeAttribute(t),e._value=s;return}let o=!1;if(s===""||s==null){const l=typeof e[t];l==="boolean"?s=fi(s):s==null&&l==="string"?(s="",o=!0):l==="number"&&(s=0,o=!0)}try{e[t]=s}catch{}o&&e.removeAttribute(i||t)}function mt(e,t,s,n){e.addEventListener(t,s,n)}function Il(e,t,s,n){e.removeEventListener(t,s,n)}const Xn=Symbol("_vei");function Rl(e,t,s,n,i=null){const r=e[Xn]||(e[Xn]={}),o=r[t];if(n&&o)o.value=n;else{const[l,f]=Fl(t);if(n){const d=r[t]=$l(n,i);mt(e,l,d,f)}else o&&(Il(e,l,o,f),r[t]=void 0)}}const Zn=/(?:Once|Passive|Capture)$/;function Fl(e){let t;if(Zn.test(e)){t={};let n;for(;n=e.match(Zn);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):ht(e.slice(2)),t]}let Fs=0;const Pl=Promise.resolve(),kl=()=>Fs||(Pl.then(()=>Fs=0),Fs=Date.now());function $l(e,t){const s=n=>{if(!n._vts)n._vts=Date.now();else if(n._vts<=s.attached)return;Le(Nl(n,s.value),t,5,[n])};return s.value=e,s.attached=kl(),s}function Nl(e,t){if(F(t)){const s=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{s.call(e),e._stopped=!0},t.map(n=>i=>!i._stopped&&n&&n(i))}else return t}const Qn=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Hl=(e,t,s,n,i,r)=>{const o=i==="svg";t==="class"?El(e,n,o):t==="style"?Ol(e,s,n):fs(t)?Ys(t)||Rl(e,t,s,n,r):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):jl(e,t,n,o))?(Yn(e,t,n),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Jn(e,t,n,o,r,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!ee(n))?Yn(e,Qe(t),n,r,t):(t==="true-value"?e._trueValue=n:t==="false-value"&&(e._falseValue=n),Jn(e,t,n,o))};function jl(e,t,s,n){if(n)return!!(t==="innerHTML"||t==="textContent"||t in e&&Qn(t)&&$(s));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="autocorrect"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const i=e.tagName;if(i==="IMG"||i==="VIDEO"||i==="CANVAS"||i==="SOURCE")return!1}return Qn(t)&&ee(s)?!1:t in e}const ei=e=>{const t=e.props["onUpdate:modelValue"]||!1;return F(t)?s=>Zt(t,s):t};function Bl(e){e.target.composing=!0}function ti(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Ps=Symbol("_assign"),si={created(e,{modifiers:{lazy:t,trim:s,number:n}},i){e[Ps]=ei(i);const r=n||i.props&&i.props.type==="number";mt(e,t?"change":"input",o=>{if(o.target.composing)return;let l=e.value;s&&(l=l.trim()),r&&(l=$s(l)),e[Ps](l)}),s&&mt(e,"change",()=>{e.value=e.value.trim()}),t||(mt(e,"compositionstart",Bl),mt(e,"compositionend",ti),mt(e,"change",ti))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,oldValue:s,modifiers:{lazy:n,trim:i,number:r}},o){if(e[Ps]=ei(o),e.composing)return;const l=(r||e.type==="number")&&!/^0\d/.test(e.value)?$s(e.value):e.value,f=t??"";l!==f&&(document.activeElement===e&&e.type!=="range"&&(n&&t===s||i&&e.value.trim()===f)||(e.value=f))}},Ul=ie({patchProp:Hl},bl);let ni;function Vl(){return ni||(ni=jo(Ul))}const Kl=(...e)=>{const t=Vl().createApp(...e),{mount:s}=t;return t.mount=n=>{const i=zl(n);if(!i)return;const r=t._component;!$(r)&&!r.render&&!r.template&&(r.template=i.innerHTML),i.nodeType===1&&(i.textContent="");const o=s(i,!1,Wl(i));return i instanceof Element&&(i.removeAttribute("v-cloak"),i.setAttribute("data-v-app","")),o},t};function Wl(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function zl(e){return ee(e)?document.querySelector(e):e}const ql=["id"],Gl={class:"bg-white border border-gray-200 rounded-lg p-6"},Jl={class:"space-y-4"},Yl={class:"flex gap-3"},Xl={class:"flex-shrink-0"},Zl={class:"w-8 h-8 bg-gray-300 rounded-full flex items-center justify-center avatar"},Ql={class:"text-sm font-medium text-gray-600"},ec={class:"flex-1 min-w-0"},tc={class:"flex items-center gap-2 mb-1"},sc={class:"font-medium text-gray-900"},nc={class:"text-sm text-gray-500"},ic={class:"text-gray-700 mb-3"},rc={class:"flex items-center gap-4"},oc=["onClick"],lc=["onClick"],cc=["onClick"],fc={key:0,class:"ml-11 mt-4 space-y-3"},ac={class:"flex-shrink-0"},uc={class:"w-6 h-6 bg-gray-300 rounded-full flex items-center justify-center avatar"},dc={class:"text-xs font-medium text-gray-600"},hc={class:"flex-1 min-w-0"},pc={class:"flex items-center gap-2 mb-1"},gc={class:"font-medium text-gray-900"},mc={class:"text-sm text-gray-500"},_c={class:"text-gray-700 mb-2"},bc={class:"flex items-center gap-4"},yc=["onClick"],vc=["onClick"],xc=["onClick"],wc={class:"mt-6 pt-6 border-t border-gray-200"},Cc={class:"flex gap-3"},Sc={class:"flex-1"},Tc={class:"flex justify-between items-center"},Ec=["disabled"],Ac={key:0,class:"mt-4 p-4 bg-gray-50 rounded-lg"},Mc={class:"flex gap-3"},Lc={class:"flex-1"},Oc={class:"flex gap-2"},Dc=["disabled"],Ic=gs({__name:"CommentsWidget",props:{comments:{},onAddComment:{type:Function},onReply:{type:Function},onLike:{type:Function},onShare:{type:Function},id:{},className:{},style:{}},emits:["addComment","reply","like","share"],setup(e,{emit:t}){const s=t,n=ut(""),i=ut(""),r=ut(null),o=S=>{const M=new Date,O=Math.floor((M.getTime()-S.getTime())/(1e3*60*60));return O<1?`${Math.floor((M.getTime()-S.getTime())/6e4)}m`:O<24?`${O}h`:`${Math.floor(O/24)}d`},l=()=>{n.value.trim()&&(s("addComment",n.value.trim()),n.value="")},f=S=>{(S.metaKey||S.ctrlKey)&&S.key==="Enter"&&(S.preventDefault(),l())},d=S=>{(S.metaKey||S.ctrlKey)&&S.key==="Enter"&&(S.preventDefault(),h()),S.key==="Escape"&&(S.preventDefault(),v())},u=S=>{r.value=S,i.value="",Li(()=>{const M=document.querySelector(".reply-textarea");M&&M.focus()})},h=()=>{i.value.trim()&&r.value&&(s("reply",r.value,i.value.trim()),v())},v=()=>{r.value=null,i.value=""},g=S=>{s("like",S)},T=S=>{s("share",S)};return(S,M)=>(be(),xe("div",{class:$e(["max-w-4xl mx-auto font-sans",S.className]),id:S.id,style:wt(S.style)},[x("div",Gl,[M[12]||(M[12]=x("div",{class:"mb-4"},[x("h4",{class:"text-lg font-semibold text-gray-900"}," Comments ")],-1)),x("div",Jl,[(be(!0),xe(Se,null,Sn(S.comments,O=>(be(),xe("div",{key:O.id,class:"comment-item"},[x("div",Yl,[x("div",Xl,[x("div",Zl,[x("span",Ql,Ae(O.author.charAt(0).toUpperCase()),1)])]),x("div",ec,[x("div",tc,[x("span",sc,Ae(O.author),1),x("span",nc,Ae(o(O.timestamp)),1)]),x("div",ic,Ae(O.content),1),x("div",rc,[x("button",{onClick:k=>g(O.id),class:$e(["flex items-center gap-1 text-sm text-gray-600 hover:text-blue-600 transition-colors duration-200 like-button",O.isLiked?"liked":""])},[(be(),xe("svg",{class:$e(["w-4 h-4",O.isLiked?"text-blue-600 fill-current":"text-gray-400"]),viewBox:"0 0 20 20",fill:"currentColor"},M[2]||(M[2]=[x("path",{"fill-rule":"evenodd",d:"M3.172 5.172a4 4 0 015.656 0L10 6.343l1.172-1.171a4 4 0 115.656 5.656L10 17.657l-6.828-6.829a4 4 0 010-5.656z","clip-rule":"evenodd"},null,-1)]),2)),x("span",null,Ae(O.likes),1)],10,oc),x("button",{onClick:k=>u(O.id),class:"flex items-center gap-1 text-sm text-gray-600 hover:text-gray-800 transition-colors duration-200"},M[3]||(M[3]=[x("svg",{class:"w-4 h-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[x("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"})],-1),x("span",null,"Reply",-1)]),8,lc),x("button",{onClick:k=>T(O.id),class:"flex items-center gap-1 text-sm text-gray-600 hover:text-gray-800 transition-colors duration-200"},M[4]||(M[4]=[x("svg",{class:"w-4 h-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[x("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8.684 13.342C8.886 12.938 9 12.482 9 12c0-.482-.114-.938-.316-1.342m0 2.684a3 3 0 110-2.684m0 2.684l6.632 3.316m-6.632-6l6.632-3.316m0 0a3 3 0 105.367-2.684 3 3 0 00-5.367 2.684zm0 9.316a3 3 0 105.367 2.684 3 3 0 00-5.367-2.684z"})],-1),x("span",null,"Share",-1)]),8,cc)])])]),O.replies&&O.replies.length>0?(be(),xe("div",fc,[(be(!0),xe(Se,null,Sn(O.replies,k=>(be(),xe("div",{key:k.id,class:"flex gap-3"},[x("div",ac,[x("div",uc,[x("span",dc,Ae(k.author.charAt(0).toUpperCase()),1)])]),x("div",hc,[x("div",pc,[x("span",gc,Ae(k.author),1),x("span",mc,Ae(o(k.timestamp)),1)]),x("div",_c,Ae(k.content),1),x("div",bc,[x("button",{onClick:B=>g(k.id),class:$e(["flex items-center gap-1 text-sm text-gray-600 hover:text-blue-600 transition-colors duration-200 like-button",k.isLiked?"liked":""])},[(be(),xe("svg",{class:$e(["w-3 h-3",k.isLiked?"text-blue-600 fill-current":"text-gray-400"]),viewBox:"0 0 20 20",fill:"currentColor"},M[5]||(M[5]=[x("path",{"fill-rule":"evenodd",d:"M3.172 5.172a4 4 0 015.656 0L10 6.343l1.172-1.171a4 4 0 115.656 5.656L10 17.657l-6.828-6.829a4 4 0 010-5.656z","clip-rule":"evenodd"},null,-1)]),2)),x("span",null,Ae(k.likes),1)],10,yc),x("button",{onClick:B=>u(k.id),class:"flex items-center gap-1 text-sm text-gray-600 hover:text-gray-800 transition-colors duration-200"},M[6]||(M[6]=[x("svg",{class:"w-3 h-3",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[x("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"})],-1),x("span",null,"Reply",-1)]),8,vc),x("button",{onClick:B=>T(k.id),class:"flex items-center gap-1 text-sm text-gray-600 hover:text-gray-800 transition-colors duration-200"},M[7]||(M[7]=[x("svg",{class:"w-3 h-3",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[x("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8.684 13.342C8.886 12.938 9 12.482 9 12c0-.482-.114-.938-.316-1.342m0 2.684a3 3 0 110-2.684m0 2.684l6.632 3.316m-6.632-6l6.632-3.316m0 0a3 3 0 105.367-2.684 3 3 0 00-5.367 2.684zm0 9.316a3 3 0 105.367 2.684 3 3 0 00-5.367-2.684z"})],-1),x("span",null,"Share",-1)]),8,xc)])])]))),128))])):Fn("",!0)]))),128))]),x("div",wc,[x("div",Cc,[M[10]||(M[10]=x("div",{class:"flex-shrink-0"},[x("div",{class:"w-8 h-8 bg-gray-300 rounded-full flex items-center justify-center avatar"},[x("span",{class:"text-sm font-medium text-gray-600"},"U")])],-1)),x("div",Sc,[wn(x("textarea",{"onUpdate:modelValue":M[0]||(M[0]=O=>n.value=O),placeholder:"Add a comment...",class:"w-full min-h-[80px] px-3 py-2 border border-gray-300 rounded-lg resize-none font-sans mb-2 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-colors duration-200",onKeydown:f},null,544),[[si,n.value]]),x("div",Tc,[M[9]||(M[9]=x("span",{class:"text-sm text-gray-500"},"Cmd+Enter to send",-1)),x("button",{onClick:l,disabled:!n.value.trim(),class:"px-4 py-2 bg-gray-600 text-white rounded-lg text-sm font-medium hover:bg-gray-700 disabled:bg-gray-400 disabled:cursor-not-allowed transition-colors duration-200 flex items-center gap-2"},M[8]||(M[8]=[x("svg",{class:"w-4 h-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[x("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 19l9 2-9-18-9 18 9-2zm0 0v-8"})],-1),ur(" Send ",-1)]),8,Ec)])])])]),ne(xl,{name:"reply-form"},{default:Fi(()=>[r.value?(be(),xe("div",Ac,[x("div",Mc,[M[11]||(M[11]=x("div",{class:"flex-shrink-0"},[x("div",{class:"w-6 h-6 bg-gray-300 rounded-full flex items-center justify-center avatar"},[x("span",{class:"text-xs font-medium text-gray-600"},"U")])],-1)),x("div",Lc,[wn(x("textarea",{"onUpdate:modelValue":M[1]||(M[1]=O=>i.value=O),placeholder:"Write a reply...",class:"w-full min-h-[60px] px-3 py-2 border border-gray-300 rounded-lg resize-none font-sans mb-3 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-colors duration-200 reply-textarea",onKeydown:d},null,544),[[si,i.value]]),x("div",Oc,[x("button",{onClick:h,disabled:!i.value.trim(),class:"px-3 py-1 bg-blue-600 text-white rounded text-sm font-medium hover:bg-blue-700 disabled:bg-gray-400 disabled:cursor-not-allowed transition-colors duration-200"}," Reply ",8,Dc),x("button",{onClick:v,class:"px-3 py-1 bg-gray-500 text-white rounded text-sm font-medium hover:bg-gray-600 transition-colors duration-200"}," Cancel ")])])])])):Fn("",!0)]),_:1})])],14,ql))}}),dn=(e,t)=>{const s=e.__vccOpts||e;for(const[n,i]of t)s[n]=i;return s},Rc=dn(Ic,[["__scopeId","data-v-6d9f29d5"]]),Fc={},Pc={class:"max-w-4xl mx-auto font-sans"};function kc(e,t){return be(),xe("div",Pc,t[0]||(t[0]=[x("div",{class:"mb-6"},[x("h3",{class:"text-xl font-semibold text-gray-900 mb-0"},"Віджет історії")],-1)]))}const $c=dn(Fc,[["render",kc]]),Nc=["id"],Hc=gs({__name:"FilesWidget",props:{files:{},onUpload:{type:Function},onDelete:{type:Function},id:{},className:{},style:{}},setup(e){return(t,s)=>(be(),xe("div",{class:$e(["max-w-4xl mx-auto font-sans",t.className]),id:t.id,style:wt(t.style)},s[0]||(s[0]=[x("div",{class:"mb-6"},[x("h3",{class:"text-xl font-semibold text-gray-900 mb-0"},"Віджет файлів")],-1)]),14,Nc))}}),jc=dn(Hc,[["__scopeId","data-v-c88cedfa"]]),Bc=["id"],Uc=gs({__name:"GalleryWidget",props:{items:{},columns:{},onItemClick:{type:Function},id:{},className:{},style:{}},setup(e){return(t,s)=>(be(),xe("div",{class:$e(["max-w-4xl mx-auto font-sans",t.className]),id:t.id,style:wt(t.style)},s[0]||(s[0]=[x("h3",{class:"text-xl font-semibold text-gray-900 mb-0"},"Віджет галереї",-1)]),14,Bc))}}),Vc={class:"min-h-screen bg-gray-50"},Kc={class:"max-w-6xl mx-auto py-10 px-5"},Wc={class:"card mb-8"},zc={class:"card mb-8"},qc={class:"card mb-8"},Gc={class:"card mb-8"},Jc=gs({__name:"App",setup(e){const t=ut([{id:"1",author:"Alex Johnson",content:"This looks great! I really like the new design direction we're taking.",timestamp:new Date(Date.now()-72e5),likes:5,isLiked:!1,replies:[{id:"1-1",author:"Sarah Chen",content:"I agree! The color scheme works really well.",timestamp:new Date(Date.now()-36e5),likes:2,isLiked:!0},{id:"1-2",author:"Mike Wilson",content:"Should we consider accessibility implications?",timestamp:new Date(Date.now()-27e5),likes:1,isLiked:!1}]},{id:"2",author:"Emma Davis",content:"Could we explore some alternative layouts? I have a few ideas that might work better for mobile users.",timestamp:new Date(Date.now()-144e5),likes:3,isLiked:!0},{id:"3",author:"David Kim",content:"The performance improvements are impressive. Load times have decreased by 40%!",timestamp:new Date(Date.now()-216e5),likes:8,isLiked:!1,replies:[{id:"3-1",author:"Lisa Park",content:"That's amazing! What optimizations did you implement?",timestamp:new Date(Date.now()-18e6),likes:3,isLiked:!1}]},{id:"4",author:"Tom Rodriguez",content:"Great work on the responsive design. Everything looks perfect on mobile now.",timestamp:new Date(Date.now()-288e5),likes:4,isLiked:!1},{id:"5",author:"Nina Patel",content:"The loading animations are smooth and professional. Nice attention to detail!",timestamp:new Date(Date.now()-432e5),likes:6,isLiked:!0}]),s=ut([{id:"1",type:"created",timestamp:new Date("2024-01-15T14:30:00"),user:"admin"},{id:"2",type:"changed",field:"File",oldValue:"Old version",newValue:"New version",timestamp:new Date("2024-01-15T13:15:00"),user:"user1"},{id:"3",type:"added",note:"Новий коментар до проекту",timestamp:new Date("2024-01-15T12:00:00"),user:"user2"}]),n=ut([{id:"1",name:"presentation.pdf",size:2048576,type:"application/pdf",url:"#",uploadedAt:new Date("2024-01-15T10:00:00")},{id:"2",name:"image.jpg",size:512e3,type:"image/jpeg",url:"#",uploadedAt:new Date("2024-01-14T16:30:00")},{id:"3",name:"document.docx",size:1024e3,type:"application/vnd.openxmlformats-officedocument.wordprocessingml.document",url:"#",uploadedAt:new Date("2024-01-13T09:15:00")}]),i=ut([{id:"1",src:"https://picsum.photos/300/200?random=1",alt:"Природа",title:"Красивий пейзаж",description:"Гори та озеро"},{id:"2",src:"https://picsum.photos/300/200?random=2",alt:"Місто",title:"Міський пейзаж",description:"Сучасна архітектура"},{id:"3",src:"https://picsum.photos/300/200?random=3",alt:"Технології",title:"Інновації",description:"Сучасні технології"},{id:"4",src:"https://picsum.photos/300/200?random=4",alt:"Творчість",title:"Мистецтво",description:"Креативні рішення"}]),r=g=>{const T={id:Date.now().toString(),author:"Current User",content:g,timestamp:new Date,likes:0,isLiked:!1};t.value.unshift(T),console.log("Added new comment:",g)},o=(g,T)=>{const S=t.value.find(M=>M.id===g);S&&(S.replies||(S.replies=[]),S.replies.push({id:`${g}-${Date.now()}`,author:"Current User",content:T,timestamp:new Date,likes:0,isLiked:!1})),console.log("Added reply to comment:",g,T)},l=g=>{let T=t.value.find(S=>S.id===g);if(T){T.isLiked=!T.isLiked,T.likes+=T.isLiked?1:-1,console.log("Toggled like for comment:",g);return}for(const S of t.value)if(S.replies){const M=S.replies.find(O=>O.id===g);if(M){M.isLiked=!M.isLiked,M.likes+=M.isLiked?1:-1,console.log("Toggled like for reply:",g);return}}},f=g=>{console.log("Share comment:",g),alert(`Sharing comment: ${g}`)},d=g=>{console.log("View mode changed to:",g)},u=g=>{const T={id:Date.now().toString(),name:g.name,size:g.size,type:g.type,url:URL.createObjectURL(g),uploadedAt:new Date};n.value.unshift(T),console.log("Завантажено файл:",g.name)},h=g=>{const T=n.value.findIndex(S=>S.id===g);T!==-1&&n.value.splice(T,1),console.log("Видалено файл:",g)},v=g=>{console.log("Клік по зображенню:",g.title||g.alt),alert(`Відкрито: ${g.title||g.alt}`)};return(g,T)=>(be(),xe("div",Vc,[T[4]||(T[4]=x("header",{class:"bg-gradient-to-br from-primary-600 to-primary-800 text-white text-center py-10 px-5"},[x("h1",{class:"text-4xl font-light mb-2"},"OpenGIS Widgets Demo"),x("p",{class:"text-lg opacity-90"},"Демонстрація незалежних віджетів")],-1)),x("main",Kc,[x("section",Wc,[T[0]||(T[0]=x("h2",{class:"text-2xl font-semibold text-gray-900 mb-6 pb-3 border-b-2 border-gray-100"},"Віджет коментарів",-1)),ne(Mt(Rc),{comments:t.value,onAddComment:r,onReply:o,onLike:l,onShare:f,onViewModeChange:d},null,8,["comments"])]),x("section",zc,[T[1]||(T[1]=x("h2",{class:"text-2xl font-semibold text-gray-900 mb-6 pb-3 border-b-2 border-gray-100"},"Віджет історії",-1)),ne(Mt($c),{items:s.value,"max-items":10},null,8,["items"])]),x("section",qc,[T[2]||(T[2]=x("h2",{class:"text-2xl font-semibold text-gray-900 mb-6 pb-3 border-b-2 border-gray-100"},"Віджет файлів",-1)),ne(Mt(jc),{files:n.value,onUpload:u,onDelete:h},null,8,["files"])]),x("section",Gc,[T[3]||(T[3]=x("h2",{class:"text-2xl font-semibold text-gray-900 mb-6 pb-3 border-b-2 border-gray-100"},"Віджет галереї",-1)),ne(Mt(Uc),{items:i.value,columns:4,onItemClick:v},null,8,["items"])])])]))}});Kl(Jc).mount("#app");
@@ -0,0 +1 @@
1
+ *,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}*{margin:0;box-sizing:border-box;padding:0}body{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1));font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity, 1))}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.card{border-radius:.5rem;border-width:1px;--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1));padding:1.5rem;--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.mx-auto{margin-left:auto;margin-right:auto}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-11{margin-left:2.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.flex{display:flex}.h-3{height:.75rem}.h-4{height:1rem}.h-6{height:1.5rem}.h-8{height:2rem}.min-h-\[60px\]{min-height:60px}.min-h-\[80px\]{min-height:80px}.min-h-screen{min-height:100vh}.w-3{width:.75rem}.w-4{width:1rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-full{width:100%}.min-w-0{min-width:0px}.max-w-4xl{max-width:56rem}.max-w-6xl{max-width:72rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.resize-none{resize:none}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.75rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.border{border-width:1px}.border-b-2{border-bottom-width:2px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity: 1;border-color:rgb(243 244 246 / var(--tw-border-opacity, 1))}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity, 1))}.border-gray-300{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity, 1))}.bg-blue-600{--tw-bg-opacity: 1;background-color:rgb(37 99 235 / var(--tw-bg-opacity, 1))}.bg-gray-300{--tw-bg-opacity: 1;background-color:rgb(209 213 219 / var(--tw-bg-opacity, 1))}.bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity, 1))}.bg-gray-600{--tw-bg-opacity: 1;background-color:rgb(75 85 99 / var(--tw-bg-opacity, 1))}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.from-primary-600{--tw-gradient-from: #2563eb var(--tw-gradient-from-position);--tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.to-primary-800{--tw-gradient-to: #1e40af var(--tw-gradient-to-position)}.fill-current{fill:currentColor}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pb-3{padding-bottom:.75rem}.pt-6{padding-top:1.5rem}.text-center{text-align:center}.font-sans{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-light{font-weight:300}.font-medium{font-weight:500}.font-semibold{font-weight:600}.text-blue-600{--tw-text-opacity: 1;color:rgb(37 99 235 / var(--tw-text-opacity, 1))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity, 1))}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity, 1))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity, 1))}.text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity, 1))}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity, 1))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.opacity-90{opacity:.9}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.hover\:bg-blue-700:hover{--tw-bg-opacity: 1;background-color:rgb(29 78 216 / var(--tw-bg-opacity, 1))}.hover\:bg-gray-600:hover{--tw-bg-opacity: 1;background-color:rgb(75 85 99 / var(--tw-bg-opacity, 1))}.hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity, 1))}.hover\:text-blue-600:hover{--tw-text-opacity: 1;color:rgb(37 99 235 / var(--tw-text-opacity, 1))}.hover\:text-gray-800:hover{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity, 1))}.focus\:border-transparent:focus{border-color:transparent}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-blue-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-400:disabled{--tw-bg-opacity: 1;background-color:rgb(156 163 175 / var(--tw-bg-opacity, 1))}.comment-item[data-v-6d9f29d5]{padding:16px 0;border-bottom:1px solid #f3f4f6;transition:all .2s ease-in-out}.comment-item[data-v-6d9f29d5]:last-child{border-bottom:none}.comment-item[data-v-6d9f29d5]:hover{background-color:#f9fafb;border-radius:8px;padding-left:8px;padding-right:8px;margin-left:-8px;margin-right:-8px}.reply-form-enter-active[data-v-6d9f29d5],.reply-form-leave-active[data-v-6d9f29d5]{transition:all .3s ease}.reply-form-enter-from[data-v-6d9f29d5],.reply-form-leave-to[data-v-6d9f29d5]{opacity:0;transform:translateY(-10px);max-height:0}.reply-form-enter-to[data-v-6d9f29d5],.reply-form-leave-from[data-v-6d9f29d5]{opacity:1;transform:translateY(0);max-height:200px}button[data-v-6d9f29d5]{transition:all .2s ease-in-out}button[data-v-6d9f29d5]:hover{transform:translateY(-1px)}button[data-v-6d9f29d5]:active{transform:translateY(0)}.avatar[data-v-6d9f29d5]{transition:transform .2s ease-in-out}.avatar[data-v-6d9f29d5]:hover{transform:scale(1.1)}textarea[data-v-6d9f29d5]::-webkit-scrollbar{width:6px}textarea[data-v-6d9f29d5]::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}textarea[data-v-6d9f29d5]::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:3px}textarea[data-v-6d9f29d5]::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.like-button[data-v-6d9f29d5]{transition:all .2s ease-in-out}.like-button[data-v-6d9f29d5]:hover{transform:scale(1.1)}.like-button.liked[data-v-6d9f29d5]{animation:likePulse-6d9f29d5 .3s ease-in-out}@keyframes likePulse-6d9f29d5{0%{transform:scale(1)}50%{transform:scale(1.2)}to{transform:scale(1)}}.files-widget[data-v-c88cedfa]{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;max-width:600px;margin:0 auto}.files-header[data-v-c88cedfa]{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}.files-header h3[data-v-c88cedfa]{margin:0;color:#333;font-size:18px}.upload-button[data-v-c88cedfa]{background:#27ae60;color:#fff;border:none;padding:8px 16px;border-radius:4px;cursor:pointer;font-size:14px}.upload-button[data-v-c88cedfa]:hover{background:#229954}.files-list[data-v-c88cedfa]{margin-bottom:20px}.file-item[data-v-c88cedfa]{display:flex;align-items:center;border:1px solid #e1e5e9;border-radius:8px;padding:12px;margin-bottom:12px;background:#fff}.file-icon[data-v-c88cedfa]{margin-right:12px}.icon[data-v-c88cedfa]{width:32px;height:32px;border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:16px;color:#fff}.icon-file[data-v-c88cedfa]{background:#95a5a6}.icon-image[data-v-c88cedfa]{background:#e74c3c}.icon-video[data-v-c88cedfa]{background:#9b59b6}.icon-audio[data-v-c88cedfa]{background:#f39c12}.icon-pdf[data-v-c88cedfa]{background:#e74c3c}.icon-document[data-v-c88cedfa]{background:#3498db}.icon-spreadsheet[data-v-c88cedfa]{background:#27ae60}.file-info[data-v-c88cedfa]{flex:1;margin-right:12px}.file-name[data-v-c88cedfa]{font-weight:500;color:#2c3e50;margin-bottom:4px;word-break:break-word}.file-meta[data-v-c88cedfa]{display:flex;gap:12px;font-size:12px;color:#7f8c8d}.file-actions[data-v-c88cedfa]{display:flex;gap:8px}.action-button[data-v-c88cedfa]{padding:6px 12px;border:none;border-radius:4px;cursor:pointer;font-size:12px;color:#fff}.action-button.download[data-v-c88cedfa]{background:#3498db}.action-button.download[data-v-c88cedfa]:hover{background:#2980b9}.action-button.delete[data-v-c88cedfa]{background:#e74c3c}.action-button.delete[data-v-c88cedfa]:hover{background:#c0392b}.empty-state[data-v-c88cedfa]{text-align:center;padding:40px 20px;color:#7f8c8d}.empty-state p[data-v-c88cedfa]{margin:0 0 16px;font-size:16px}
@@ -0,0 +1,14 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Vite + Vue + TS</title>
8
+ <script type="module" crossorigin src="/assets/index-CddWIj8Q.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/assets/index-wCsFdfxg.css">
10
+ </head>
11
+ <body>
12
+ <div id="app"></div>
13
+ </body>
14
+ </html>
package/dist/vite.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@opengis/widgets",
3
+ "private": false,
4
+ "version": "1.0.0",
5
+ "type": "module",
6
+ "description": "A collection of independent widgets for comments, history, files, and gallery",
7
+ "main": "dist/index.js",
8
+ "module": "dist/index.es.js",
9
+ "types": "dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/index.es.js",
13
+ "require": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "scripts": {
21
+ "dev": "vite",
22
+ "build": "vue-tsc -b && vite build",
23
+ "preview": "vite preview",
24
+ "build:lib": "vite build --config vite.lib.config.ts",
25
+ "type-check": "vue-tsc --noEmit"
26
+ },
27
+ "keywords": [
28
+ "widgets",
29
+ "comments",
30
+ "history",
31
+ "files",
32
+ "gallery",
33
+ "vue",
34
+ "components",
35
+ "opengis"
36
+ ],
37
+ "author": "OpenGIS",
38
+ "license": "MIT",
39
+ "dependencies": {
40
+ "vue": "^3.5.17"
41
+ },
42
+ "devDependencies": {
43
+ "@vitejs/plugin-vue": "^6.0.0",
44
+ "@vue/tsconfig": "^0.7.0",
45
+ "typescript": "~5.8.3",
46
+ "vite": "^7.0.4",
47
+ "vue-tsc": "^2.2.12",
48
+ "dts-bundle-generator": "^8.0.0",
49
+ "tailwindcss": "^3.4.0",
50
+ "postcss": "^8.4.31",
51
+ "autoprefixer": "^10.4.16"
52
+ },
53
+ "peerDependencies": {
54
+ "vue": "^3.0.0"
55
+ }
56
+ }