modern-idoc 0.12.3 → 0.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +13 -25
- package/dist/index.d.cts +6 -5
- package/dist/index.d.mts +6 -5
- package/dist/index.d.ts +6 -5
- package/dist/index.js +1 -1
- package/dist/index.mjs +13 -25
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -312,24 +312,11 @@ function propertyOffsetSet(target, key, newValue, declaration) {
|
|
|
312
312
|
);
|
|
313
313
|
}
|
|
314
314
|
function propertyOffsetGet(target, key, declaration) {
|
|
315
|
-
const
|
|
316
|
-
|
|
317
|
-
internalKey
|
|
318
|
-
} = declaration;
|
|
319
|
-
let result;
|
|
320
|
-
if (alias) {
|
|
321
|
-
result = getObjectValueByPath(target, alias);
|
|
322
|
-
} else {
|
|
323
|
-
result = target[internalKey];
|
|
324
|
-
}
|
|
325
|
-
result = result ?? propertyOffsetFallback(target, key, declaration);
|
|
326
|
-
return result;
|
|
315
|
+
const result = declaration.alias ? getObjectValueByPath(target, declaration.alias) : target[declaration.internalKey];
|
|
316
|
+
return result ?? propertyOffsetFallback(target, key, declaration);
|
|
327
317
|
}
|
|
328
318
|
function propertyOffsetFallback(target, key, declaration) {
|
|
329
|
-
const
|
|
330
|
-
default: _default,
|
|
331
|
-
fallback
|
|
332
|
-
} = declaration;
|
|
319
|
+
const _default = declaration.default;
|
|
333
320
|
let result;
|
|
334
321
|
if (_default !== void 0 && !target[initedSymbol]?.[key]) {
|
|
335
322
|
if (!target[initedSymbol]) {
|
|
@@ -342,22 +329,25 @@ function propertyOffsetFallback(target, key, declaration) {
|
|
|
342
329
|
result = defaultValue;
|
|
343
330
|
}
|
|
344
331
|
}
|
|
345
|
-
if (result === void 0
|
|
346
|
-
|
|
332
|
+
if (result === void 0) {
|
|
333
|
+
const fallback = declaration.fallback;
|
|
334
|
+
if (fallback !== void 0) {
|
|
335
|
+
result = typeof fallback === "function" ? fallback() : fallback;
|
|
336
|
+
}
|
|
347
337
|
}
|
|
348
338
|
return result;
|
|
349
339
|
}
|
|
350
340
|
function getPropertyDescriptor(key, declaration) {
|
|
351
341
|
function get() {
|
|
352
342
|
if (this.getProperty) {
|
|
353
|
-
return this.getProperty(key);
|
|
343
|
+
return this.getProperty(key, declaration);
|
|
354
344
|
} else {
|
|
355
345
|
return propertyOffsetGet(this, key, declaration);
|
|
356
346
|
}
|
|
357
347
|
}
|
|
358
348
|
function set(newValue) {
|
|
359
349
|
if (this.setProperty) {
|
|
360
|
-
this.setProperty(key, newValue);
|
|
350
|
+
this.setProperty(key, newValue, declaration);
|
|
361
351
|
} else {
|
|
362
352
|
propertyOffsetSet(this, key, newValue, declaration);
|
|
363
353
|
}
|
|
@@ -479,8 +469,7 @@ class Reactivable extends Observable {
|
|
|
479
469
|
}
|
|
480
470
|
return this;
|
|
481
471
|
}
|
|
482
|
-
getProperty(key) {
|
|
483
|
-
const declaration = this.getPropertyDeclaration(key);
|
|
472
|
+
getProperty(key, declaration = this.getPropertyDeclaration(key)) {
|
|
484
473
|
if (declaration) {
|
|
485
474
|
if (declaration.internal || declaration.alias) {
|
|
486
475
|
return propertyOffsetGet(this, key, declaration);
|
|
@@ -490,15 +479,14 @@ class Reactivable extends Observable {
|
|
|
490
479
|
if (accessor && accessor.getProperty) {
|
|
491
480
|
result = accessor.getProperty(key);
|
|
492
481
|
} else {
|
|
493
|
-
result = this.
|
|
482
|
+
result = this._properties[key];
|
|
494
483
|
}
|
|
495
484
|
return result ?? propertyOffsetFallback(this, key, declaration);
|
|
496
485
|
}
|
|
497
486
|
}
|
|
498
487
|
return void 0;
|
|
499
488
|
}
|
|
500
|
-
setProperty(key, newValue) {
|
|
501
|
-
const declaration = this.getPropertyDeclaration(key);
|
|
489
|
+
setProperty(key, newValue, declaration = this.getPropertyDeclaration(key)) {
|
|
502
490
|
if (declaration) {
|
|
503
491
|
if (declaration.internal || declaration.alias) {
|
|
504
492
|
propertyOffsetSet(this, key, newValue, declaration);
|
package/dist/index.d.cts
CHANGED
|
@@ -494,8 +494,9 @@ interface PropertyDeclaration {
|
|
|
494
494
|
internalKey: symbol | string;
|
|
495
495
|
}
|
|
496
496
|
interface PropertyAccessor {
|
|
497
|
-
|
|
498
|
-
|
|
497
|
+
/** `declaration` is a fast-path hint from decorated accessors; implementations may ignore it. */
|
|
498
|
+
getProperty?: (key: string, declaration?: PropertyDeclaration) => any;
|
|
499
|
+
setProperty?: (key: string, newValue: any, declaration?: PropertyDeclaration) => void;
|
|
499
500
|
onUpdateProperty?: (key: string, newValue: any, oldValue: any) => void;
|
|
500
501
|
}
|
|
501
502
|
declare function getDeclarations(constructor: any): Record<string, PropertyDeclaration>;
|
|
@@ -725,7 +726,7 @@ declare function normalizeShape(shape: Shape): NormalizedShape;
|
|
|
725
726
|
type StyleUnit = `${number}%` | number;
|
|
726
727
|
type Display = 'inherit' | 'freeform' | 'flex';
|
|
727
728
|
type Direction = 'inherit' | 'ltr' | 'rtl';
|
|
728
|
-
type Overflow = 'hidden' | 'visible';
|
|
729
|
+
type Overflow = 'hidden' | 'visible' | 'clip' | 'scroll' | 'auto';
|
|
729
730
|
type Visibility = 'hidden' | 'visible';
|
|
730
731
|
type FontWeight = 'normal' | 'bold' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
|
|
731
732
|
type FontStyle = 'normal' | 'italic' | 'oblique' | `oblique ${string}`;
|
|
@@ -1167,8 +1168,8 @@ declare class Reactivable extends Observable implements PropertyAccessor {
|
|
|
1167
1168
|
offsetSetProperty(key: string, value: any): void;
|
|
1168
1169
|
offsetGetProperties(keys?: string[]): Record<string, any>;
|
|
1169
1170
|
offsetSetProperties(properties?: Record<string, any>): this;
|
|
1170
|
-
getProperty(key: string): any;
|
|
1171
|
-
setProperty(key: string, newValue: any): void;
|
|
1171
|
+
getProperty(key: string, declaration?: PropertyDeclaration | undefined): any;
|
|
1172
|
+
setProperty(key: string, newValue: any, declaration?: PropertyDeclaration | undefined): void;
|
|
1172
1173
|
getProperties(keys?: string[]): Record<string, any>;
|
|
1173
1174
|
setProperties(properties?: Record<string, any>): this;
|
|
1174
1175
|
resetProperties(): this;
|
package/dist/index.d.mts
CHANGED
|
@@ -494,8 +494,9 @@ interface PropertyDeclaration {
|
|
|
494
494
|
internalKey: symbol | string;
|
|
495
495
|
}
|
|
496
496
|
interface PropertyAccessor {
|
|
497
|
-
|
|
498
|
-
|
|
497
|
+
/** `declaration` is a fast-path hint from decorated accessors; implementations may ignore it. */
|
|
498
|
+
getProperty?: (key: string, declaration?: PropertyDeclaration) => any;
|
|
499
|
+
setProperty?: (key: string, newValue: any, declaration?: PropertyDeclaration) => void;
|
|
499
500
|
onUpdateProperty?: (key: string, newValue: any, oldValue: any) => void;
|
|
500
501
|
}
|
|
501
502
|
declare function getDeclarations(constructor: any): Record<string, PropertyDeclaration>;
|
|
@@ -725,7 +726,7 @@ declare function normalizeShape(shape: Shape): NormalizedShape;
|
|
|
725
726
|
type StyleUnit = `${number}%` | number;
|
|
726
727
|
type Display = 'inherit' | 'freeform' | 'flex';
|
|
727
728
|
type Direction = 'inherit' | 'ltr' | 'rtl';
|
|
728
|
-
type Overflow = 'hidden' | 'visible';
|
|
729
|
+
type Overflow = 'hidden' | 'visible' | 'clip' | 'scroll' | 'auto';
|
|
729
730
|
type Visibility = 'hidden' | 'visible';
|
|
730
731
|
type FontWeight = 'normal' | 'bold' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
|
|
731
732
|
type FontStyle = 'normal' | 'italic' | 'oblique' | `oblique ${string}`;
|
|
@@ -1167,8 +1168,8 @@ declare class Reactivable extends Observable implements PropertyAccessor {
|
|
|
1167
1168
|
offsetSetProperty(key: string, value: any): void;
|
|
1168
1169
|
offsetGetProperties(keys?: string[]): Record<string, any>;
|
|
1169
1170
|
offsetSetProperties(properties?: Record<string, any>): this;
|
|
1170
|
-
getProperty(key: string): any;
|
|
1171
|
-
setProperty(key: string, newValue: any): void;
|
|
1171
|
+
getProperty(key: string, declaration?: PropertyDeclaration | undefined): any;
|
|
1172
|
+
setProperty(key: string, newValue: any, declaration?: PropertyDeclaration | undefined): void;
|
|
1172
1173
|
getProperties(keys?: string[]): Record<string, any>;
|
|
1173
1174
|
setProperties(properties?: Record<string, any>): this;
|
|
1174
1175
|
resetProperties(): this;
|
package/dist/index.d.ts
CHANGED
|
@@ -494,8 +494,9 @@ interface PropertyDeclaration {
|
|
|
494
494
|
internalKey: symbol | string;
|
|
495
495
|
}
|
|
496
496
|
interface PropertyAccessor {
|
|
497
|
-
|
|
498
|
-
|
|
497
|
+
/** `declaration` is a fast-path hint from decorated accessors; implementations may ignore it. */
|
|
498
|
+
getProperty?: (key: string, declaration?: PropertyDeclaration) => any;
|
|
499
|
+
setProperty?: (key: string, newValue: any, declaration?: PropertyDeclaration) => void;
|
|
499
500
|
onUpdateProperty?: (key: string, newValue: any, oldValue: any) => void;
|
|
500
501
|
}
|
|
501
502
|
declare function getDeclarations(constructor: any): Record<string, PropertyDeclaration>;
|
|
@@ -725,7 +726,7 @@ declare function normalizeShape(shape: Shape): NormalizedShape;
|
|
|
725
726
|
type StyleUnit = `${number}%` | number;
|
|
726
727
|
type Display = 'inherit' | 'freeform' | 'flex';
|
|
727
728
|
type Direction = 'inherit' | 'ltr' | 'rtl';
|
|
728
|
-
type Overflow = 'hidden' | 'visible';
|
|
729
|
+
type Overflow = 'hidden' | 'visible' | 'clip' | 'scroll' | 'auto';
|
|
729
730
|
type Visibility = 'hidden' | 'visible';
|
|
730
731
|
type FontWeight = 'normal' | 'bold' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
|
|
731
732
|
type FontStyle = 'normal' | 'italic' | 'oblique' | `oblique ${string}`;
|
|
@@ -1167,8 +1168,8 @@ declare class Reactivable extends Observable implements PropertyAccessor {
|
|
|
1167
1168
|
offsetSetProperty(key: string, value: any): void;
|
|
1168
1169
|
offsetGetProperties(keys?: string[]): Record<string, any>;
|
|
1169
1170
|
offsetSetProperties(properties?: Record<string, any>): this;
|
|
1170
|
-
getProperty(key: string): any;
|
|
1171
|
-
setProperty(key: string, newValue: any): void;
|
|
1171
|
+
getProperty(key: string, declaration?: PropertyDeclaration | undefined): any;
|
|
1172
|
+
setProperty(key: string, newValue: any, declaration?: PropertyDeclaration | undefined): void;
|
|
1172
1173
|
getProperties(keys?: string[]): Record<string, any>;
|
|
1173
1174
|
setProperties(properties?: Record<string, any>): this;
|
|
1174
1175
|
resetProperties(): this;
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
(function(e,t){typeof exports==`object`&&typeof module<`u`?t(exports):typeof define==`function`&&define.amd?define([`exports`],t):(e=typeof globalThis<`u`?globalThis:e||self,t(e.modernIdoc={}))})(this,function(e){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`});function t(e){return typeof e==`string`?{src:e}:e}var n={grad:.9,turn:360,rad:360/(2*Math.PI)},r=function(e){return typeof e==`string`?e.length>0:typeof e==`number`},i=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=10**t),Math.round(n*e)/n+0},a=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e>t?e:t},o=function(e){return(e=isFinite(e)?e%360:0)>0?e:e+360},s=function(e){return{r:a(e.r,0,255),g:a(e.g,0,255),b:a(e.b,0,255),a:a(e.a)}},c=function(e){return{r:i(e.r),g:i(e.g),b:i(e.b),a:i(e.a,3)}},l=/^#([0-9a-f]{3,8})$/i,u=function(e){var t=e.toString(16);return t.length<2?`0`+t:t},d=function(e){var t=e.r,n=e.g,r=e.b,i=e.a,a=Math.max(t,n,r),o=a-Math.min(t,n,r),s=o?a===t?(n-r)/o:a===n?2+(r-t)/o:4+(t-n)/o:0;return{h:60*(s<0?s+6:s),s:a?o/a*100:0,v:a/255*100,a:i}},f=function(e){var t=e.h,n=e.s,r=e.v,i=e.a;t=t/360*6,n/=100,r/=100;var a=Math.floor(t),o=r*(1-n),s=r*(1-(t-a)*n),c=r*(1-(1-t+a)*n),l=a%6;return{r:255*[r,s,o,o,c,r][l],g:255*[c,r,r,s,o,o][l],b:255*[o,o,c,r,r,s][l],a:i}},p=function(e){return{h:o(e.h),s:a(e.s,0,100),l:a(e.l,0,100),a:a(e.a)}},m=function(e){return{h:i(e.h),s:i(e.s),l:i(e.l),a:i(e.a,3)}},h=function(e){return f((n=(t=e).s,{h:t.h,s:(n*=((r=t.l)<50?r:100-r)/100)>0?2*n/(r+n)*100:0,v:r+n,a:t.a}));var t,n,r},g=function(e){return{h:(t=d(e)).h,s:(i=(200-(n=t.s))*(r=t.v)/100)>0&&i<200?n*r/100/(i<=100?i:200-i)*100:0,l:i/2,a:t.a};var t,n,r,i},_=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s*,\s*([+-]?\d*\.?\d+)%\s*,\s*([+-]?\d*\.?\d+)%\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,ee=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s+([+-]?\d*\.?\d+)%\s+([+-]?\d*\.?\d+)%\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,v=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,te=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,ne={string:[[function(e){var t=l.exec(e);return t?(e=t[1]).length<=4?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:e.length===4?i(parseInt(e[3]+e[3],16)/255,2):1}:e.length===6||e.length===8?{r:parseInt(e.substr(0,2),16),g:parseInt(e.substr(2,2),16),b:parseInt(e.substr(4,2),16),a:e.length===8?i(parseInt(e.substr(6,2),16)/255,2):1}:null:null},`hex`],[function(e){var t=v.exec(e)||te.exec(e);return t?t[2]!==t[4]||t[4]!==t[6]?null:s({r:Number(t[1])/(t[2]?100/255:1),g:Number(t[3])/(t[4]?100/255:1),b:Number(t[5])/(t[6]?100/255:1),a:t[7]===void 0?1:Number(t[7])/(t[8]?100:1)}):null},`rgb`],[function(e){var t=_.exec(e)||ee.exec(e);if(!t)return null;var r,i;return h(p({h:(r=t[1],i=t[2],i===void 0&&(i=`deg`),Number(r)*(n[i]||1)),s:Number(t[3]),l:Number(t[4]),a:t[5]===void 0?1:Number(t[5])/(t[6]?100:1)}))},`hsl`]],object:[[function(e){var t=e.r,n=e.g,i=e.b,a=e.a,o=a===void 0?1:a;return r(t)&&r(n)&&r(i)?s({r:Number(t),g:Number(n),b:Number(i),a:Number(o)}):null},`rgb`],[function(e){var t=e.h,n=e.s,i=e.l,a=e.a,o=a===void 0?1:a;return!r(t)||!r(n)||!r(i)?null:h(p({h:Number(t),s:Number(n),l:Number(i),a:Number(o)}))},`hsl`],[function(e){var t=e.h,n=e.s,i=e.v,s=e.a,c=s===void 0?1:s;return!r(t)||!r(n)||!r(i)?null:f(function(e){return{h:o(e.h),s:a(e.s,0,100),v:a(e.v,0,100),a:a(e.a)}}({h:Number(t),s:Number(n),v:Number(i),a:Number(c)}))},`hsv`]]},y=function(e,t){for(var n=0;n<t.length;n++){var r=t[n][0](e);if(r)return[r,t[n][1]]}return[null,void 0]},re=function(e){return typeof e==`string`?y(e.trim(),ne.string):typeof e==`object`&&e?y(e,ne.object):[null,void 0]},b=function(e,t){var n=g(e);return{h:n.h,s:a(n.s+100*t,0,100),l:n.l,a:n.a}},x=function(e){return(299*e.r+587*e.g+114*e.b)/1e3/255},S=function(e,t){var n=g(e);return{h:n.h,s:n.s,l:a(n.l+100*t,0,100),a:n.a}},ie=function(){function e(e){this.parsed=re(e)[0],this.rgba=this.parsed||{r:0,g:0,b:0,a:1}}return e.prototype.isValid=function(){return this.parsed!==null},e.prototype.brightness=function(){return i(x(this.rgba),2)},e.prototype.isDark=function(){return x(this.rgba)<.5},e.prototype.isLight=function(){return x(this.rgba)>=.5},e.prototype.toHex=function(){return e=c(this.rgba),t=e.r,n=e.g,r=e.b,o=(a=e.a)<1?u(i(255*a)):``,`#`+u(t)+u(n)+u(r)+o;var e,t,n,r,a,o},e.prototype.toRgb=function(){return c(this.rgba)},e.prototype.toRgbString=function(){return e=c(this.rgba),t=e.r,n=e.g,r=e.b,(i=e.a)<1?`rgba(`+t+`, `+n+`, `+r+`, `+i+`)`:`rgb(`+t+`, `+n+`, `+r+`)`;var e,t,n,r,i},e.prototype.toHsl=function(){return m(g(this.rgba))},e.prototype.toHslString=function(){return e=m(g(this.rgba)),t=e.h,n=e.s,r=e.l,(i=e.a)<1?`hsla(`+t+`, `+n+`%, `+r+`%, `+i+`)`:`hsl(`+t+`, `+n+`%, `+r+`%)`;var e,t,n,r,i},e.prototype.toHsv=function(){return e=d(this.rgba),{h:i(e.h),s:i(e.s),v:i(e.v),a:i(e.a,3)};var e},e.prototype.invert=function(){return C({r:255-(e=this.rgba).r,g:255-e.g,b:255-e.b,a:e.a});var e},e.prototype.saturate=function(e){return e===void 0&&(e=.1),C(b(this.rgba,e))},e.prototype.desaturate=function(e){return e===void 0&&(e=.1),C(b(this.rgba,-e))},e.prototype.grayscale=function(){return C(b(this.rgba,-1))},e.prototype.lighten=function(e){return e===void 0&&(e=.1),C(S(this.rgba,e))},e.prototype.darken=function(e){return e===void 0&&(e=.1),C(S(this.rgba,-e))},e.prototype.rotate=function(e){return e===void 0&&(e=15),this.hue(this.hue()+e)},e.prototype.alpha=function(e){return typeof e==`number`?C({r:(t=this.rgba).r,g:t.g,b:t.b,a:e}):i(this.rgba.a,3);var t},e.prototype.hue=function(e){var t=g(this.rgba);return typeof e==`number`?C({h:e,s:t.s,l:t.l,a:t.a}):i(t.h)},e.prototype.isEqual=function(e){return this.toHex()===C(e).toHex()},e}(),C=function(e){return e instanceof ie?e:new ie(e)},ae=class{eventListeners=new Map;addEventListener(e,t,n){let r={value:t,options:n},i=this.eventListeners.get(e);return i?Array.isArray(i)?i.push(r):this.eventListeners.set(e,[i,r]):this.eventListeners.set(e,r),this}removeEventListener(e,t,n){if(!t)return this.eventListeners.delete(e),this;let r=this.eventListeners.get(e);if(!r)return this;if(Array.isArray(r)){let i=[];for(let e=0,a=r.length;e<a;e++){let a=r[e];(a.value!==t||typeof n==`object`&&n?.once&&(typeof a.options==`boolean`||!a.options?.once))&&i.push(a)}i.length?this.eventListeners.set(e,i.length===1?i[0]:i):this.eventListeners.delete(e)}else r.value===t&&(typeof n==`boolean`||!n?.once||typeof r.options==`boolean`||r.options?.once)&&this.eventListeners.delete(e);return this}removeAllListeners(){return this.eventListeners.clear(),this}hasEventListener(e){return this.eventListeners.has(e)}dispatchEvent(e,...t){let n=this.eventListeners.get(e);if(n){if(Array.isArray(n))for(let r=n.length,i=0;i<r;i++){let r=n[i];typeof r.options==`object`&&r.options?.once&&this.off(e,r.value,r.options),r.value.apply(this,t)}else typeof n.options==`object`&&n.options?.once&&this.off(e,n.value,n.options),n.value.apply(this,t);return!0}else return!1}on(e,t,n){return this.addEventListener(e,t,n)}once(e,t){return this.addEventListener(e,t,{once:!0})}off(e,t,n){return this.removeEventListener(e,t,n)}emit(e,...t){this.dispatchEvent(e,...t)}};function w(e){return e==null||e===``||e===`none`}function T(e,t=0,n=10**t){return Math.round(n*e)/n+0}function E(e,t){if(typeof e==`number`)return Number.isFinite(e)?e:t;if(typeof e==`string`){let n=Number.parseFloat(e);return Number.isFinite(n)?n:t}return t}function D(e,t=!1){if(typeof e!=`object`||!e)return e;if(Array.isArray(e))return t?e.map(e=>D(e,t)):e;let n={};for(let r in e){let i=e[r];i!=null&&(t?n[r]=D(i,t):n[r]=i)}return n}function O(e,t){let n={};return t.forEach(t=>{t in e&&(n[t]=e[t])}),n}function k(e,t){if(e===t)return!0;if(e&&t&&typeof e==`object`&&typeof t==`object`){let n=Array.from(new Set([...Object.keys(e),...Object.keys(t)]));return!n.length||n.every(n=>e[n]===t[n])}return!1}function A(e,t,n){let r=t.length-1;if(r<0)return e===void 0?n:e;for(let i=0;i<r;i++){if(e==null)return n;e=e[t[i]]}return e==null||e[t[r]]===void 0?n:e[t[r]]}function j(e,t,n){let r=t.length-1;for(let n=0;n<r;n++)typeof e[t[n]]!=`object`&&(e[t[n]]={}),e=e[t[n]];e[t[r]]=n}function oe(e,t,n){return e==null||!t||typeof t!=`string`?n:e[t]===void 0?(t=t.replace(/\[(\w+)\]/g,`.$1`),t=t.replace(/^\./,``),A(e,t.split(`.`),n)):e[t]}function se(e,t,n){if(!(typeof e!=`object`||!t))return t=t.replace(/\[(\w+)\]/g,`.$1`),t=t.replace(/^\./,``),j(e,t.split(`.`),n)}var ce=class{_eventListeners={};on(e,t){let n=this._eventListeners[e];n===void 0&&(n=[],this._eventListeners[e]=n);let r=n.indexOf(t);return r>-1&&n.splice(r,1),n.push(t),this}once(e,t){let n=(...r)=>{this.off(e,n),t.apply(this,r)};return this.on(e,n),this}off(e,t){let n=this._eventListeners[e];if(n!==void 0){let e=n.indexOf(t);e>-1&&n.splice(e,1)}return this}emit(e,...t){let n=this._eventListeners[e];if(n!==void 0){let e=n.length;if(e>0)for(let r=0;r<e;r++)n[r].apply(this,t)}return this}removeAllListeners(){return this._eventListeners={},this}hasEventListener(e){return!!this._eventListeners[e]}destroy(){this.removeAllListeners()}},le=class{_map=new WeakMap;_toRaw(e){if(e&&typeof e==`object`){let t=e.__v_raw;t&&(e=this._toRaw(t))}return e}delete(e){return this._map.delete(this._toRaw(e))}get(e){return this._map.get(this._toRaw(e))}has(e){return this._map.has(this._toRaw(e))}set(e,t){return this._map.set(this._toRaw(e),this._toRaw(t)),this}},M=Symbol.for(`declarations`),N=Symbol.for(`inited`);function P(e){let t;if(Object.hasOwn(e,M))t=e[M];else{let n=Object.getPrototypeOf(e);t={...n?P(n):{}},e[M]=t}return t}function F(e,t,n,r){let{alias:i,internalKey:a}=r,o=e[t];i?se(e,i,n):e[a]=n,e.onUpdateProperty?.(t,n??I(e,t,r),o)}function ue(e,t,n){let{alias:r,internalKey:i}=n,a;return a=r?oe(e,r):e[i],a??=I(e,t,n),a}function I(e,t,n){let{default:r,fallback:i}=n,a;if(r!==void 0&&!e[N]?.[t]){e[N]||(e[N]={}),e[N][t]=!0;let n=typeof r==`function`?r():r;n!==void 0&&(e[t]=n,a=n)}return a===void 0&&i!==void 0&&(a=typeof i==`function`?i():i),a}function de(e,t){function n(){return this.getProperty?this.getProperty(e):ue(this,e,t)}function r(n){this.setProperty?this.setProperty(e,n):F(this,e,n,t)}return{get:n,set:r}}function fe(e,t,n={}){let r={...n,internalKey:Symbol.for(t)},i=P(e);i[t]=r;let{get:a,set:o}=de(t,r);Object.defineProperty(e.prototype,t,{get(){return a.call(this)},set(e){o.call(this,e)},configurable:!0,enumerable:!0})}function pe(e){return function(t,n){if(typeof n!=`string`)throw TypeError(`Failed to @property decorator, prop name cannot be a symbol`);fe(t.constructor,n,e)}}function me(e={}){return function(t,n){let r=n.name;if(typeof r!=`string`)throw TypeError(`Failed to @property decorator, prop name cannot be a symbol`);let i={...e,internalKey:Symbol.for(r)},a=de(r,i);return{init(e){let t=P(this.constructor);return t[r]=i,a.set.call(this,e),e},get(){return a.get.call(this)},set(e){a.set.call(this,e)}}}}var he=class extends ce{_propertyAccessor;_properties={};_updatedProperties={};_changedProperties=new Set;_updatingPromise=Promise.resolve();_updating=!1;constructor(e){super(),this.setProperties(e)}isDirty(e){return e?!!this._updatedProperties[e]:Object.keys(this._updatedProperties).length>0}offsetGetProperty(e){return this._properties[e]}offsetSetProperty(e,t){t===void 0?delete this._properties[e]:this._properties[e]=t}offsetGetProperties(e){let t=this._properties,n=Object.keys(t),r={};for(let i,a,o=0;o<n.length;o++)i=n[o],a=t[i],a!==void 0&&(!e||e.includes(i))&&(a&&typeof a==`object`?`toJSON`in a?r[i]=a.toJSON():Array.isArray(a)?r[i]=[...a]:r[i]={...a}:r[i]=a);return r}offsetSetProperties(e){if(e&&typeof e==`object`){let t=Object.keys(e);for(let n,r=0;r<t.length;r++)n=t[r],this.offsetSetProperty(n,e[n])}return this}getProperty(e){let t=this.getPropertyDeclaration(e);if(t){if(t.internal||t.alias)return ue(this,e,t);{let n=this._propertyAccessor,r;return r=n&&n.getProperty?n.getProperty(e):this.offsetGetProperty(e),r??I(this,e,t)}}}setProperty(e,t){let n=this.getPropertyDeclaration(e);if(n)if(n.internal||n.alias)F(this,e,t,n);else{let r=this.offsetGetProperty(e);if(Object.is(r,t))return;let i=this.getProperty(e);this._propertyAccessor?.setProperty?.(e,t),this.offsetSetProperty(e,t),this.onUpdateProperty?.(e,t??I(this,e,n),i)}}getProperties(e){let t={},n=this.getPropertyDeclarations(),r=Object.keys(n);for(let i=0,a=r.length;i<a;i++){let a=r[i],o=n[a];o.internal||o.alias||(!e||e.includes(a))&&(t[a]=this.getProperty(a))}return t}setProperties(e){if(e&&typeof e==`object`)for(let t in e)this.setProperty(t,e[t]);return this}resetProperties(){let e=this.getPropertyDeclarations(),t=Object.keys(e);for(let n=0,r=t.length;n<r;n++){let r=t[n],i=e[r];this.setProperty(r,typeof i.default==`function`?i.default():i.default)}return this}getPropertyDeclarations(){return P(this.constructor)}getPropertyDeclaration(e){return this.getPropertyDeclarations()[e]}setPropertyAccessor(e){let t=this.getPropertyDeclarations(),n=[];if(e&&e.getProperty&&e.setProperty){let r=Object.keys(t);for(let i=0,a=r.length;i<a;i++){let a=r[i],o=t[a];if(o.internal||o.alias)continue;let s=this.offsetGetProperty(a),c=e.getProperty(a);c!==void 0&&!Object.is(s,c)&&(this.offsetSetProperty(a,c),n.push({key:a,newValue:c,oldValue:s}))}}this._propertyAccessor=e;for(let e=0,t=n.length;e<t;e++){let{key:t,newValue:r,oldValue:i}=n[e];this.requestUpdate(t,r,i)}return this}async _nextTick(){return`requestAnimationFrame`in globalThis?new Promise(e=>globalThis.requestAnimationFrame(e)):Promise.resolve()}async _enqueueUpdate(){this._updating=!0;try{await this._updatingPromise}catch(e){Promise.reject(e)}await this._nextTick(),this._updating&&=(this.onUpdate(),!1)}onUpdate(){this._update(this._updatedProperties),this._updatedProperties={}}onUpdateProperty(e,t,n){Object.is(t,n)||this.requestUpdate(e,t,n)}requestUpdate(e,t,n){e!==void 0&&(this._updatedProperties[e]=n,this._changedProperties.add(e),this._updateProperty(e,t,n),this.emit(`updateProperty`,e,t,n)),this._updating||(this._updatingPromise=this._enqueueUpdate())}_update(e){}_updateProperty(e,t,n){}toJSON(){return this.offsetGetProperties()}clone(){return new this.constructor(this.toJSON())}destroy(){this.emit(`destroy`),super.destroy()}};function ge(e){let t;return t=typeof e==`number`?{r:e>>24&255,g:e>>16&255,b:e>>8&255,a:(e&255)/255}:e,C(t)}function _e(e){return{r:T(e.r),g:T(e.g),b:T(e.b),a:T(e.a,3)}}function L(e){let t=e.toString(16);return t.length<2?`0${t}`:t}var ve=`#000000FF`;function ye(e){return ge(e).isValid()}function R(e,t=!1){let n=ge(e);if(!n.isValid()){if(typeof e==`string`)return e;let n=`Failed to normalizeColor ${e}`;if(t)throw Error(n);return console.warn(n),ve}let{r,g:i,b:a,a:o}=_e(n.rgba);return`#${L(r)}${L(i)}${L(a)}${L(T(o*255))}`}var z=z||{};z.parse=(function(){let e={linearGradient:/^(-(webkit|o|ms|moz)-)?(linear-gradient)/i,repeatingLinearGradient:/^(-(webkit|o|ms|moz)-)?(repeating-linear-gradient)/i,radialGradient:/^(-(webkit|o|ms|moz)-)?(radial-gradient)/i,repeatingRadialGradient:/^(-(webkit|o|ms|moz)-)?(repeating-radial-gradient)/i,sideOrCorner:/^to (left (top|bottom)|right (top|bottom)|top (left|right)|bottom (left|right)|left|right|top|bottom)/i,extentKeywords:/^(closest-side|closest-corner|farthest-side|farthest-corner|contain|cover)/,positionKeywords:/^(left|center|right|top|bottom)/i,pixelValue:/^(-?((\d*\.\d+)|(\d+\.?)))px/,percentageValue:/^(-?((\d*\.\d+)|(\d+\.?)))%/,emValue:/^(-?((\d*\.\d+)|(\d+\.?)))em/,angleValue:/^(-?((\d*\.\d+)|(\d+\.?)))deg/,radianValue:/^(-?((\d*\.\d+)|(\d+\.?)))rad/,startCall:/^\(/,endCall:/^\)/,comma:/^,/,hexColor:/^#([0-9a-f]+)/i,literalColor:/^([a-z]+)/i,rgbColor:/^rgb/i,rgbaColor:/^rgba/i,varColor:/^var/i,calcValue:/^calc/i,variableName:/^(--[a-z0-9-,\s#]+)/i,number:/^((\d*\.\d+)|(\d+\.?))/,hslColor:/^hsl/i,hslaColor:/^hsla/i},t=``;function n(e){let n=Error(`${t}: ${e}`);throw n.source=t,n}function r(){let e=i();return t.length>0&&n(`Invalid input not EOF`),e}function i(){return v(a)}function a(){return o(`linear-gradient`,e.linearGradient,c)||o(`repeating-linear-gradient`,e.repeatingLinearGradient,c)||o(`radial-gradient`,e.radialGradient,d)||o(`repeating-radial-gradient`,e.repeatingRadialGradient,d)}function o(t,r,i){return s(r,r=>{let a=i();return a&&(A(e.comma)||n(`Missing comma before color stops`)),{type:t,orientation:a,colorStops:v(te)}})}function s(t,r){let i=A(t);if(i){A(e.startCall)||n(`Missing (`);let t=r(i);return A(e.endCall)||n(`Missing )`),t}}function c(){let t=l();if(t)return t;let n=k(`position-keyword`,e.positionKeywords,1);return n?{type:`directional`,value:n.value}:u()}function l(){return k(`directional`,e.sideOrCorner,1)}function u(){return k(`angular`,e.angleValue,1)||k(`angular`,e.radianValue,1)}function d(){let n,r=f(),i;return r&&(n=[],n.push(r),i=t,A(e.comma)&&(r=f(),r?n.push(r):t=i)),n}function f(){let e=p()||m();if(e)e.at=g();else{let t=h();if(t){e=t;let n=g();n&&(e.at=n)}else{let t=g();if(t)e={type:`default-radial`,at:t};else{let t=_();t&&(e={type:`default-radial`,at:t})}}}return e}function p(){let e=k(`shape`,/^(circle)/i,0);return e&&(e.style=O()||h()),e}function m(){let e=k(`shape`,/^(ellipse)/i,0);return e&&(e.style=_()||T()||h()),e}function h(){return k(`extent-keyword`,e.extentKeywords,1)}function g(){if(k(`position`,/^at/,0)){let e=_();return e||n(`Missing positioning value`),e}}function _(){let e=ee();if(e.x||e.y)return{type:`position`,value:e}}function ee(){return{x:T(),y:T()}}function v(t){let r=t(),i=[];if(r)for(i.push(r);A(e.comma);)r=t(),r?i.push(r):n(`One extra comma`);return i}function te(){let e=ne();return e||n(`Expected color definition`),e.length=T(),e}function ne(){return re()||C()||ie()||x()||b()||S()||y()}function y(){return k(`literal`,e.literalColor,0)}function re(){return k(`hex`,e.hexColor,1)}function b(){return s(e.rgbColor,()=>({type:`rgb`,value:v(w)}))}function x(){return s(e.rgbaColor,()=>({type:`rgba`,value:v(w)}))}function S(){return s(e.varColor,()=>({type:`var`,value:ae()}))}function ie(){return s(e.hslColor,()=>{A(e.percentageValue)&&n(`HSL hue value must be a number in degrees (0-360) or normalized (-360 to 360), not a percentage`);let t=w();A(e.comma);let r=A(e.percentageValue),i=r?r[1]:null;A(e.comma),r=A(e.percentageValue);let a=r?r[1]:null;return(!i||!a)&&n(`Expected percentage value for saturation and lightness in HSL`),{type:`hsl`,value:[t,i,a]}})}function C(){return s(e.hslaColor,()=>{let t=w();A(e.comma);let r=A(e.percentageValue),i=r?r[1]:null;A(e.comma),r=A(e.percentageValue);let a=r?r[1]:null;A(e.comma);let o=w();return(!i||!a)&&n(`Expected percentage value for saturation and lightness in HSLA`),{type:`hsla`,value:[t,i,a,o]}})}function ae(){return A(e.variableName)[1]}function w(){return A(e.number)[1]}function T(){return k(`%`,e.percentageValue,1)||E()||D()||O()}function E(){return k(`position-keyword`,e.positionKeywords,1)}function D(){return s(e.calcValue,()=>{let e=1,r=0;for(;e>0&&r<t.length;){let n=t.charAt(r);n===`(`?e++:n===`)`&&e--,r++}e>0&&n(`Missing closing parenthesis in calc() expression`);let i=t.substring(0,r-1);return j(r-1),{type:`calc`,value:i}})}function O(){return k(`px`,e.pixelValue,1)||k(`em`,e.emValue,1)}function k(e,t,n){let r=A(t);if(r)return{type:e,value:r[n]}}function A(e){let n,r;return r=/^\s+/.exec(t),r&&j(r[0].length),n=e.exec(t),n&&j(n[0].length),n}function j(e){t=t.substr(e)}return function(e){return t=e.toString().trim(),t.endsWith(`;`)&&(t=t.slice(0,-1)),r()}})();var be=z.parse.bind(z),B=B||{};B.stringify=(function(){var e={"visit_linear-gradient":function(t){return e.visit_gradient(t)},"visit_repeating-linear-gradient":function(t){return e.visit_gradient(t)},"visit_radial-gradient":function(t){return e.visit_gradient(t)},"visit_repeating-radial-gradient":function(t){return e.visit_gradient(t)},visit_gradient:function(t){var n=e.visit(t.orientation);return n&&(n+=`, `),t.type+`(`+n+e.visit(t.colorStops)+`)`},visit_shape:function(t){var n=t.value,r=e.visit(t.at),i=e.visit(t.style);return i&&(n+=` `+i),r&&(n+=` at `+r),n},"visit_default-radial":function(t){var n=``,r=e.visit(t.at);return r&&(n+=r),n},"visit_extent-keyword":function(t){var n=t.value,r=e.visit(t.at);return r&&(n+=` at `+r),n},"visit_position-keyword":function(e){return e.value},visit_position:function(t){return e.visit(t.value.x)+` `+e.visit(t.value.y)},"visit_%":function(e){return e.value+`%`},visit_em:function(e){return e.value+`em`},visit_px:function(e){return e.value+`px`},visit_calc:function(e){return`calc(`+e.value+`)`},visit_literal:function(t){return e.visit_color(t.value,t)},visit_hex:function(t){return e.visit_color(`#`+t.value,t)},visit_rgb:function(t){return e.visit_color(`rgb(`+t.value.join(`, `)+`)`,t)},visit_rgba:function(t){return e.visit_color(`rgba(`+t.value.join(`, `)+`)`,t)},visit_hsl:function(t){return e.visit_color(`hsl(`+t.value[0]+`, `+t.value[1]+`%, `+t.value[2]+`%)`,t)},visit_hsla:function(t){return e.visit_color(`hsla(`+t.value[0]+`, `+t.value[1]+`%, `+t.value[2]+`%, `+t.value[3]+`)`,t)},visit_var:function(t){return e.visit_color(`var(`+t.value+`)`,t)},visit_color:function(t,n){var r=t,i=e.visit(n.length);return i&&(r+=` `+i),r},visit_angular:function(e){return e.value+`deg`},visit_directional:function(e){return`to `+e.value},visit_array:function(t){var n=``,r=t.length;return t.forEach(function(t,i){n+=e.visit(t),i<r-1&&(n+=`, `)}),n},visit_object:function(t){return t.width&&t.height?e.visit(t.width)+` `+e.visit(t.height):``},visit:function(t){if(!t)return``;if(t instanceof Array)return e.visit_array(t);if(typeof t==`object`&&!t.type)return e.visit_object(t);if(t.type){var n=e[`visit_`+t.type];if(n)return n(t);throw Error(`Missing visitor visit_`+t.type)}else throw Error(`Invalid node.`)}};return function(t){return e.visit(t)}})();var xe=B.stringify.bind(B);function Se(e){let t=e.length-1;return e.map((e,n)=>{let r=e.value,i=T(n/t,3),a=`#00000000`;switch(e.type){case`rgb`:a=R({r:Number(r[0]??0),g:Number(r[1]??0),b:Number(r[2]??0)});break;case`rgba`:a=R({r:Number(r[0]??0),g:Number(r[1]??0),b:Number(r[2]??0),a:Number(r[3]??0)});break;case`literal`:a=R(e.value);break;case`hex`:a=R(`#${e.value}`);break}switch(e.length?.type){case`%`:i=Number(e.length.value)/100;break;case`px`:break;case`em`:break}return{offset:i,color:a}})}function Ce(e){let t=0;switch(e.orientation?.type){case`angular`:t=Number(e.orientation.value);break;case`directional`:break}return{type:`linear-gradient`,angle:t,stops:Se(e.colorStops)}}function we(e){return e.orientation?.map(e=>{switch(e?.type){default:return null}}),{type:`radial-gradient`,stops:Se(e.colorStops)}}function V(e){return e.startsWith(`linear-gradient(`)||e.startsWith(`radial-gradient(`)}function Te(e){return be(e).map(e=>{switch(e?.type){case`linear-gradient`:return Ce(e);case`repeating-linear-gradient`:return{...Ce(e),repeat:!0};case`radial-gradient`:return we(e);case`repeating-radial-gradient`:return{...we(e),repeat:!0};default:return}}).filter(Boolean)}var H=[`color`];function Ee(e){let t;return t=typeof e==`string`?{color:e}:{...e},t.color&&=R(t.color),O(t,H)}var U=[`linearGradient`,`radialGradient`,`rotateWithShape`];function De(e){let t;if(t=typeof e==`string`?{image:e}:{...e},t.image){let{type:e,...n}=Te(t.image)[0]??{};switch(e){case`radial-gradient`:return{radialGradient:n};case`linear-gradient`:return{linearGradient:n}}}return O(t,U)}function Oe(e){return D({name:e.name,params:e.params})}var W=[`image`,`cropRect`,`stretchRect`,`tile`,`dpi`,`opacity`,`rotateWithShape`,`imagePipelines`];function ke(e){let t;t=typeof e==`string`?{image:e}:{...e};let n=O(t,W);return n.imagePipelines=t.imagePipelines?.length?t.imagePipelines.map(Oe):void 0,D(n)}var G=[`preset`,`foregroundColor`,`backgroundColor`];function Ae(e){let t;return t=typeof e==`string`?{preset:e}:{...e},w(t.foregroundColor)?delete t.foregroundColor:t.foregroundColor=R(t.foregroundColor),w(t.backgroundColor)?delete t.backgroundColor:t.backgroundColor=R(t.backgroundColor),O(t,G)}function je(e){return!w(e.color)}function Me(e){return typeof e==`string`?ye(e):je(e)}function Ne(e){return!w(e.image)&&V(e.image)||!!e.linearGradient||!!e.radialGradient}function Pe(e){return typeof e==`string`?V(e):Ne(e)}function Fe(e){return!w(e.image)&&!V(e.image)}function Ie(e){return typeof e==`string`?!ye(e)&&!V(e):Fe(e)}function Le(e){return!w(e.preset)}function Re(e){return typeof e==`string`?!1:Le(e)}function K(e){let t={enabled:e&&typeof e==`object`?e.enabled??!0:!0};return Me(e)&&Object.assign(t,Ee(e)),Pe(e)&&Object.assign(t,De(e)),Ie(e)&&Object.assign(t,ke(e)),Re(e)&&Object.assign(t,Ae(e)),O(D(t),Array.from(new Set([`enabled`,...H,...W,...U,...G])))}function ze(e){return typeof e==`string`?{...K(e)}:{...K(e),...O(e,[`fillWithShape`])}}function Be(){return{backgroundImage:`none`,backgroundSize:`auto, auto`,backgroundColor:`none`,backgroundColormap:`none`}}function Ve(e){return(e??[]).map(e=>E(e)??0)}function He(e){return D({name:e.name,values:Ve(e.values),xValues:e.xValues?Ve(e.xValues):void 0,color:e.color})}function Ue(e){return D({title:e.title,min:E(e.min),max:E(e.max),visible:e.visible})}function We(e){return D({enabled:e.enabled??!0,type:e.type??`column`,grouping:e.grouping,categories:e.categories??[],series:(e.series??[]).map(He),title:e.title,legend:e.legend,categoryAxis:e.categoryAxis?Ue(e.categoryAxis):void 0,valueAxis:e.valueAxis?Ue(e.valueAxis):void 0})}var Ge=`useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict`,Ke=(e=21)=>{let t=``,n=crypto.getRandomValues(new Uint8Array(e|=0));for(;e--;)t+=Ge[n[e]&63];return t},qe=()=>Ke(10),q=qe;function Je(e){return{x:E(e.x)??0,y:E(e.y)??0}}function Ye(e){return D({id:e.id,name:e.name,color:e.color,initials:e.initials})}function Xe(e){return D({id:e.id??q(),author:e.author?Ye(e.author):void 0,body:e.body??``,createdAt:E(e.createdAt)})}function Ze(e){return D({id:e.id??q(),offset:e.offset?Je(e.offset):void 0,resolved:e.resolved,messages:(e.messages??[]).map(Xe)})}function Qe(e){if(e?.length)return e.map(Ze)}function $e(e){return D({start:e.start,end:e.end,mode:e.mode??`straight`})}function J(e){return typeof e==`string`?{...K(e)}:{...K(e),...O(e,[`width`,`style`,`lineCap`,`lineJoin`,`headEnd`,`tailEnd`])}}function et(){return{outlineWidth:0,outlineOffset:0,outlineColor:`none`,outlineStyle:`none`}}function tt(e){return typeof e==`string`?{enabled:!0,color:R(e)}:{...e,enabled:e.enabled??!0,color:w(e.color)?ve:R(e.color)}}function nt(){return{boxShadow:`none`}}function rt(e){return D({blur:e.blur,brightness:e.brightness,contrast:e.contrast,grayscale:e.grayscale,hueRotate:e.hueRotate,invert:e.invert,opacity:e.opacity,saturate:e.saturate,sepia:e.sepia,duotone:e.duotone?[R(e.duotone[0]),R(e.duotone[1])]:void 0,biLevel:e.biLevel,colorChange:e.colorChange?{from:R(e.colorChange.from),to:R(e.colorChange.to)}:void 0})}function it(e){let t=[];return e.blur!==void 0&&t.push(`blur(${e.blur}px)`),e.brightness!==void 0&&t.push(`brightness(${e.brightness})`),e.contrast!==void 0&&t.push(`contrast(${e.contrast})`),e.grayscale!==void 0&&t.push(`grayscale(${e.grayscale})`),e.hueRotate!==void 0&&t.push(`hue-rotate(${e.hueRotate}deg)`),e.invert!==void 0&&t.push(`invert(${e.invert})`),e.opacity!==void 0&&t.push(`opacity(${e.opacity})`),e.saturate!==void 0&&t.push(`saturate(${e.saturate})`),e.sepia!==void 0&&t.push(`sepia(${e.sepia})`),t.join(` `)}var at=[`fill`,`outline`,`shadow`,`transform`,`transformOrigin`,`filter`];function ot(e){let t=O(e,at),{rotate:n,scaleX:r,scaleY:i,skewX:a,skewY:o,translateX:s,translateY:c}=e,l=[];return(s||c)&&l.push(`translate(${s||0}, ${c||0})`),n&&l.push(`rotate(${n}deg)`),(r||i)&&l.push(`scale(${r??1}, ${i??1})`),a&&l.push(`skewX(${a}deg)`),o&&l.push(`skewY(${o}deg)`),l.length>0&&(t.transform=l.join(` `)),(e.textStrokeWidth||e.textStrokeColor)&&(t.outline={color:e.textStrokeColor,width:e.textStrokeWidth}),e.color&&(t.fill={color:e.color}),(e.shadowOffsetX||e.shadowOffsetY||e.shadowBlur||e.shadowColor)&&(t.shadow={offsetX:e.shadowOffsetX,offsetY:e.shadowOffsetY,blur:e.shadowBlur,color:e.shadowColor}),t}function Y(e){let t=ot(e);return D({fill:w(t.fill)?void 0:K(t.fill),outline:w(t.outline)?void 0:J(t.outline),shadow:w(t.shadow)?void 0:tt(t.shadow),transform:w(t.transform)?void 0:t.transform,transformOrigin:t.transformOrigin,filter:t.filter?rt(t.filter):void 0})}function st(e){return typeof e==`string`?{...K(e)}:D({...K(e),...O(e,[`fillWithShape`])})}function ct(e){return typeof e==`string`?e.startsWith(`<svg`)?{enabled:!0,svg:e}:{enabled:!0,paths:[{data:e}]}:Array.isArray(e)?{enabled:!0,paths:e.map(e=>typeof e==`string`?{data:e}:e)}:e}function lt(){return{overflow:`visible`,direction:void 0,display:void 0,boxSizing:void 0,width:void 0,height:void 0,maxHeight:void 0,maxWidth:void 0,minHeight:void 0,minWidth:void 0,position:void 0,left:0,top:0,right:void 0,bottom:void 0,borderTop:void 0,borderLeft:void 0,borderRight:void 0,borderBottom:void 0,borderWidth:0,border:void 0,flex:void 0,flexBasis:void 0,flexDirection:void 0,flexGrow:void 0,flexShrink:void 0,flexWrap:void 0,justifyContent:void 0,gap:void 0,alignContent:void 0,alignItems:void 0,alignSelf:void 0,marginTop:void 0,marginLeft:void 0,marginRight:void 0,marginBottom:void 0,margin:void 0,paddingTop:void 0,paddingLeft:void 0,paddingRight:void 0,paddingBottom:void 0,padding:void 0}}function ut(){return{rotate:0,scaleX:1,scaleY:1,skewX:0,skewY:0,translateX:0,translateY:0,transform:`none`,transformOrigin:`center`}}function dt(){return{...lt(),...ut(),...nt(),...Be(),...et(),borderRadius:0,borderColor:`none`,borderStyle:`solid`,visibility:`visible`,filter:`none`,opacity:1,pointerEvents:`auto`,maskImage:`none`}}function ft(){return{highlight:{},highlightImage:`none`,highlightReferImage:`none`,highlightColormap:`none`,highlightLine:`none`,highlightSize:`cover`,highlightThickness:`100%`}}function pt(){return{listStyle:{},listStyleType:`none`,listStyleImage:`none`,listStyleColormap:`none`,listStyleSize:`cover`,listStylePosition:`outside`}}function mt(){return{...ft(),color:`#000000`,verticalAlign:`baseline`,letterSpacing:0,wordSpacing:0,fontSize:14,fontWeight:`normal`,fontFamily:``,fontStyle:`normal`,fontKerning:`normal`,textTransform:`none`,textOrientation:`mixed`,textDecoration:`none`}}function ht(){return{...pt(),writingMode:`horizontal-tb`,textWrap:`wrap`,textAlign:`start`,textIndent:0,lineHeight:1.2}}function gt(){return{...ht(),...mt(),textStrokeWidth:0,textStrokeColor:`none`}}var _t=[`textIndent`,`lineHeight`,`letterSpacing`,`wordSpacing`,`fontSize`,`textStrokeWidth`,`borderRadius`,`opacity`,`rotate`,`scaleX`,`scaleY`,`skewX`,`skewY`,`translateX`,`translateY`,`borderWidth`,`flex`,`flexGrow`,`flexShrink`];function X(e){let t=D({...e,color:w(e.color)?void 0:R(e.color),backgroundColor:w(e.backgroundColor)?void 0:R(e.backgroundColor),borderColor:w(e.borderColor)?void 0:R(e.borderColor),outlineColor:w(e.outlineColor)?void 0:R(e.outlineColor),shadowColor:w(e.shadowColor)?void 0:R(e.shadowColor),textStrokeColor:w(e.textStrokeColor)?void 0:R(e.textStrokeColor)});for(let e of _t)if(e in t){let n=E(t[e]);n===void 0?delete t[e]:t[e]=n}return t}function vt(){return{...dt(),...gt()}}function yt(e){return D({width:E(e.width)})}function bt(e){return D({height:E(e.height)})}function xt(e){return D({row:E(e.row)??0,col:E(e.col)??0,rowSpan:E(e.rowSpan),colSpan:E(e.colSpan),children:(e.children??[]).map(e=>$(e)),background:w(e.background)?void 0:ze(e.background),style:w(e.style)?void 0:X(e.style)})}function St(e){return D({enabled:e.enabled??!0,columns:(e.columns??[]).map(yt),rows:(e.rows??[]).map(bt),cells:(e.cells??[]).map(xt)})}var Ct=/\r\n|\n\r|\n|\r/,wt=RegExp(`${Ct.source}|<br\\/>`,`g`),Tt=RegExp(`^(${Ct.source})$`),Et=`
|
|
1
|
+
(function(e,t){typeof exports==`object`&&typeof module<`u`?t(exports):typeof define==`function`&&define.amd?define([`exports`],t):(e=typeof globalThis<`u`?globalThis:e||self,t(e.modernIdoc={}))})(this,function(e){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`});function t(e){return typeof e==`string`?{src:e}:e}var n={grad:.9,turn:360,rad:360/(2*Math.PI)},r=function(e){return typeof e==`string`?e.length>0:typeof e==`number`},i=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=10**t),Math.round(n*e)/n+0},a=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e>t?e:t},o=function(e){return(e=isFinite(e)?e%360:0)>0?e:e+360},s=function(e){return{r:a(e.r,0,255),g:a(e.g,0,255),b:a(e.b,0,255),a:a(e.a)}},c=function(e){return{r:i(e.r),g:i(e.g),b:i(e.b),a:i(e.a,3)}},l=/^#([0-9a-f]{3,8})$/i,u=function(e){var t=e.toString(16);return t.length<2?`0`+t:t},d=function(e){var t=e.r,n=e.g,r=e.b,i=e.a,a=Math.max(t,n,r),o=a-Math.min(t,n,r),s=o?a===t?(n-r)/o:a===n?2+(r-t)/o:4+(t-n)/o:0;return{h:60*(s<0?s+6:s),s:a?o/a*100:0,v:a/255*100,a:i}},f=function(e){var t=e.h,n=e.s,r=e.v,i=e.a;t=t/360*6,n/=100,r/=100;var a=Math.floor(t),o=r*(1-n),s=r*(1-(t-a)*n),c=r*(1-(1-t+a)*n),l=a%6;return{r:255*[r,s,o,o,c,r][l],g:255*[c,r,r,s,o,o][l],b:255*[o,o,c,r,r,s][l],a:i}},p=function(e){return{h:o(e.h),s:a(e.s,0,100),l:a(e.l,0,100),a:a(e.a)}},m=function(e){return{h:i(e.h),s:i(e.s),l:i(e.l),a:i(e.a,3)}},h=function(e){return f((n=(t=e).s,{h:t.h,s:(n*=((r=t.l)<50?r:100-r)/100)>0?2*n/(r+n)*100:0,v:r+n,a:t.a}));var t,n,r},g=function(e){return{h:(t=d(e)).h,s:(i=(200-(n=t.s))*(r=t.v)/100)>0&&i<200?n*r/100/(i<=100?i:200-i)*100:0,l:i/2,a:t.a};var t,n,r,i},_=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s*,\s*([+-]?\d*\.?\d+)%\s*,\s*([+-]?\d*\.?\d+)%\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,ee=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s+([+-]?\d*\.?\d+)%\s+([+-]?\d*\.?\d+)%\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,v=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,te=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,ne={string:[[function(e){var t=l.exec(e);return t?(e=t[1]).length<=4?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:e.length===4?i(parseInt(e[3]+e[3],16)/255,2):1}:e.length===6||e.length===8?{r:parseInt(e.substr(0,2),16),g:parseInt(e.substr(2,2),16),b:parseInt(e.substr(4,2),16),a:e.length===8?i(parseInt(e.substr(6,2),16)/255,2):1}:null:null},`hex`],[function(e){var t=v.exec(e)||te.exec(e);return t?t[2]!==t[4]||t[4]!==t[6]?null:s({r:Number(t[1])/(t[2]?100/255:1),g:Number(t[3])/(t[4]?100/255:1),b:Number(t[5])/(t[6]?100/255:1),a:t[7]===void 0?1:Number(t[7])/(t[8]?100:1)}):null},`rgb`],[function(e){var t=_.exec(e)||ee.exec(e);if(!t)return null;var r,i;return h(p({h:(r=t[1],i=t[2],i===void 0&&(i=`deg`),Number(r)*(n[i]||1)),s:Number(t[3]),l:Number(t[4]),a:t[5]===void 0?1:Number(t[5])/(t[6]?100:1)}))},`hsl`]],object:[[function(e){var t=e.r,n=e.g,i=e.b,a=e.a,o=a===void 0?1:a;return r(t)&&r(n)&&r(i)?s({r:Number(t),g:Number(n),b:Number(i),a:Number(o)}):null},`rgb`],[function(e){var t=e.h,n=e.s,i=e.l,a=e.a,o=a===void 0?1:a;return!r(t)||!r(n)||!r(i)?null:h(p({h:Number(t),s:Number(n),l:Number(i),a:Number(o)}))},`hsl`],[function(e){var t=e.h,n=e.s,i=e.v,s=e.a,c=s===void 0?1:s;return!r(t)||!r(n)||!r(i)?null:f(function(e){return{h:o(e.h),s:a(e.s,0,100),v:a(e.v,0,100),a:a(e.a)}}({h:Number(t),s:Number(n),v:Number(i),a:Number(c)}))},`hsv`]]},y=function(e,t){for(var n=0;n<t.length;n++){var r=t[n][0](e);if(r)return[r,t[n][1]]}return[null,void 0]},re=function(e){return typeof e==`string`?y(e.trim(),ne.string):typeof e==`object`&&e?y(e,ne.object):[null,void 0]},b=function(e,t){var n=g(e);return{h:n.h,s:a(n.s+100*t,0,100),l:n.l,a:n.a}},x=function(e){return(299*e.r+587*e.g+114*e.b)/1e3/255},S=function(e,t){var n=g(e);return{h:n.h,s:n.s,l:a(n.l+100*t,0,100),a:n.a}},ie=function(){function e(e){this.parsed=re(e)[0],this.rgba=this.parsed||{r:0,g:0,b:0,a:1}}return e.prototype.isValid=function(){return this.parsed!==null},e.prototype.brightness=function(){return i(x(this.rgba),2)},e.prototype.isDark=function(){return x(this.rgba)<.5},e.prototype.isLight=function(){return x(this.rgba)>=.5},e.prototype.toHex=function(){return e=c(this.rgba),t=e.r,n=e.g,r=e.b,o=(a=e.a)<1?u(i(255*a)):``,`#`+u(t)+u(n)+u(r)+o;var e,t,n,r,a,o},e.prototype.toRgb=function(){return c(this.rgba)},e.prototype.toRgbString=function(){return e=c(this.rgba),t=e.r,n=e.g,r=e.b,(i=e.a)<1?`rgba(`+t+`, `+n+`, `+r+`, `+i+`)`:`rgb(`+t+`, `+n+`, `+r+`)`;var e,t,n,r,i},e.prototype.toHsl=function(){return m(g(this.rgba))},e.prototype.toHslString=function(){return e=m(g(this.rgba)),t=e.h,n=e.s,r=e.l,(i=e.a)<1?`hsla(`+t+`, `+n+`%, `+r+`%, `+i+`)`:`hsl(`+t+`, `+n+`%, `+r+`%)`;var e,t,n,r,i},e.prototype.toHsv=function(){return e=d(this.rgba),{h:i(e.h),s:i(e.s),v:i(e.v),a:i(e.a,3)};var e},e.prototype.invert=function(){return C({r:255-(e=this.rgba).r,g:255-e.g,b:255-e.b,a:e.a});var e},e.prototype.saturate=function(e){return e===void 0&&(e=.1),C(b(this.rgba,e))},e.prototype.desaturate=function(e){return e===void 0&&(e=.1),C(b(this.rgba,-e))},e.prototype.grayscale=function(){return C(b(this.rgba,-1))},e.prototype.lighten=function(e){return e===void 0&&(e=.1),C(S(this.rgba,e))},e.prototype.darken=function(e){return e===void 0&&(e=.1),C(S(this.rgba,-e))},e.prototype.rotate=function(e){return e===void 0&&(e=15),this.hue(this.hue()+e)},e.prototype.alpha=function(e){return typeof e==`number`?C({r:(t=this.rgba).r,g:t.g,b:t.b,a:e}):i(this.rgba.a,3);var t},e.prototype.hue=function(e){var t=g(this.rgba);return typeof e==`number`?C({h:e,s:t.s,l:t.l,a:t.a}):i(t.h)},e.prototype.isEqual=function(e){return this.toHex()===C(e).toHex()},e}(),C=function(e){return e instanceof ie?e:new ie(e)},ae=class{eventListeners=new Map;addEventListener(e,t,n){let r={value:t,options:n},i=this.eventListeners.get(e);return i?Array.isArray(i)?i.push(r):this.eventListeners.set(e,[i,r]):this.eventListeners.set(e,r),this}removeEventListener(e,t,n){if(!t)return this.eventListeners.delete(e),this;let r=this.eventListeners.get(e);if(!r)return this;if(Array.isArray(r)){let i=[];for(let e=0,a=r.length;e<a;e++){let a=r[e];(a.value!==t||typeof n==`object`&&n?.once&&(typeof a.options==`boolean`||!a.options?.once))&&i.push(a)}i.length?this.eventListeners.set(e,i.length===1?i[0]:i):this.eventListeners.delete(e)}else r.value===t&&(typeof n==`boolean`||!n?.once||typeof r.options==`boolean`||r.options?.once)&&this.eventListeners.delete(e);return this}removeAllListeners(){return this.eventListeners.clear(),this}hasEventListener(e){return this.eventListeners.has(e)}dispatchEvent(e,...t){let n=this.eventListeners.get(e);if(n){if(Array.isArray(n))for(let r=n.length,i=0;i<r;i++){let r=n[i];typeof r.options==`object`&&r.options?.once&&this.off(e,r.value,r.options),r.value.apply(this,t)}else typeof n.options==`object`&&n.options?.once&&this.off(e,n.value,n.options),n.value.apply(this,t);return!0}else return!1}on(e,t,n){return this.addEventListener(e,t,n)}once(e,t){return this.addEventListener(e,t,{once:!0})}off(e,t,n){return this.removeEventListener(e,t,n)}emit(e,...t){this.dispatchEvent(e,...t)}};function w(e){return e==null||e===``||e===`none`}function T(e,t=0,n=10**t){return Math.round(n*e)/n+0}function E(e,t){if(typeof e==`number`)return Number.isFinite(e)?e:t;if(typeof e==`string`){let n=Number.parseFloat(e);return Number.isFinite(n)?n:t}return t}function D(e,t=!1){if(typeof e!=`object`||!e)return e;if(Array.isArray(e))return t?e.map(e=>D(e,t)):e;let n={};for(let r in e){let i=e[r];i!=null&&(t?n[r]=D(i,t):n[r]=i)}return n}function O(e,t){let n={};return t.forEach(t=>{t in e&&(n[t]=e[t])}),n}function k(e,t){if(e===t)return!0;if(e&&t&&typeof e==`object`&&typeof t==`object`){let n=Array.from(new Set([...Object.keys(e),...Object.keys(t)]));return!n.length||n.every(n=>e[n]===t[n])}return!1}function A(e,t,n){let r=t.length-1;if(r<0)return e===void 0?n:e;for(let i=0;i<r;i++){if(e==null)return n;e=e[t[i]]}return e==null||e[t[r]]===void 0?n:e[t[r]]}function j(e,t,n){let r=t.length-1;for(let n=0;n<r;n++)typeof e[t[n]]!=`object`&&(e[t[n]]={}),e=e[t[n]];e[t[r]]=n}function oe(e,t,n){return e==null||!t||typeof t!=`string`?n:e[t]===void 0?(t=t.replace(/\[(\w+)\]/g,`.$1`),t=t.replace(/^\./,``),A(e,t.split(`.`),n)):e[t]}function se(e,t,n){if(!(typeof e!=`object`||!t))return t=t.replace(/\[(\w+)\]/g,`.$1`),t=t.replace(/^\./,``),j(e,t.split(`.`),n)}var ce=class{_eventListeners={};on(e,t){let n=this._eventListeners[e];n===void 0&&(n=[],this._eventListeners[e]=n);let r=n.indexOf(t);return r>-1&&n.splice(r,1),n.push(t),this}once(e,t){let n=(...r)=>{this.off(e,n),t.apply(this,r)};return this.on(e,n),this}off(e,t){let n=this._eventListeners[e];if(n!==void 0){let e=n.indexOf(t);e>-1&&n.splice(e,1)}return this}emit(e,...t){let n=this._eventListeners[e];if(n!==void 0){let e=n.length;if(e>0)for(let r=0;r<e;r++)n[r].apply(this,t)}return this}removeAllListeners(){return this._eventListeners={},this}hasEventListener(e){return!!this._eventListeners[e]}destroy(){this.removeAllListeners()}},le=class{_map=new WeakMap;_toRaw(e){if(e&&typeof e==`object`){let t=e.__v_raw;t&&(e=this._toRaw(t))}return e}delete(e){return this._map.delete(this._toRaw(e))}get(e){return this._map.get(this._toRaw(e))}has(e){return this._map.has(this._toRaw(e))}set(e,t){return this._map.set(this._toRaw(e),this._toRaw(t)),this}},M=Symbol.for(`declarations`),N=Symbol.for(`inited`);function P(e){let t;if(Object.hasOwn(e,M))t=e[M];else{let n=Object.getPrototypeOf(e);t={...n?P(n):{}},e[M]=t}return t}function F(e,t,n,r){let{alias:i,internalKey:a}=r,o=e[t];i?se(e,i,n):e[a]=n,e.onUpdateProperty?.(t,n??I(e,t,r),o)}function ue(e,t,n){return(n.alias?oe(e,n.alias):e[n.internalKey])??I(e,t,n)}function I(e,t,n){let r=n.default,i;if(r!==void 0&&!e[N]?.[t]){e[N]||(e[N]={}),e[N][t]=!0;let n=typeof r==`function`?r():r;n!==void 0&&(e[t]=n,i=n)}if(i===void 0){let e=n.fallback;e!==void 0&&(i=typeof e==`function`?e():e)}return i}function de(e,t){function n(){return this.getProperty?this.getProperty(e,t):ue(this,e,t)}function r(n){this.setProperty?this.setProperty(e,n,t):F(this,e,n,t)}return{get:n,set:r}}function fe(e,t,n={}){let r={...n,internalKey:Symbol.for(t)},i=P(e);i[t]=r;let{get:a,set:o}=de(t,r);Object.defineProperty(e.prototype,t,{get(){return a.call(this)},set(e){o.call(this,e)},configurable:!0,enumerable:!0})}function pe(e){return function(t,n){if(typeof n!=`string`)throw TypeError(`Failed to @property decorator, prop name cannot be a symbol`);fe(t.constructor,n,e)}}function me(e={}){return function(t,n){let r=n.name;if(typeof r!=`string`)throw TypeError(`Failed to @property decorator, prop name cannot be a symbol`);let i={...e,internalKey:Symbol.for(r)},a=de(r,i);return{init(e){let t=P(this.constructor);return t[r]=i,a.set.call(this,e),e},get(){return a.get.call(this)},set(e){a.set.call(this,e)}}}}var he=class extends ce{_propertyAccessor;_properties={};_updatedProperties={};_changedProperties=new Set;_updatingPromise=Promise.resolve();_updating=!1;constructor(e){super(),this.setProperties(e)}isDirty(e){return e?!!this._updatedProperties[e]:Object.keys(this._updatedProperties).length>0}offsetGetProperty(e){return this._properties[e]}offsetSetProperty(e,t){t===void 0?delete this._properties[e]:this._properties[e]=t}offsetGetProperties(e){let t=this._properties,n=Object.keys(t),r={};for(let i,a,o=0;o<n.length;o++)i=n[o],a=t[i],a!==void 0&&(!e||e.includes(i))&&(a&&typeof a==`object`?`toJSON`in a?r[i]=a.toJSON():Array.isArray(a)?r[i]=[...a]:r[i]={...a}:r[i]=a);return r}offsetSetProperties(e){if(e&&typeof e==`object`){let t=Object.keys(e);for(let n,r=0;r<t.length;r++)n=t[r],this.offsetSetProperty(n,e[n])}return this}getProperty(e,t=this.getPropertyDeclaration(e)){if(t){if(t.internal||t.alias)return ue(this,e,t);{let n=this._propertyAccessor,r;return r=n&&n.getProperty?n.getProperty(e):this._properties[e],r??I(this,e,t)}}}setProperty(e,t,n=this.getPropertyDeclaration(e)){if(n)if(n.internal||n.alias)F(this,e,t,n);else{let r=this.offsetGetProperty(e);if(Object.is(r,t))return;let i=this.getProperty(e);this._propertyAccessor?.setProperty?.(e,t),this.offsetSetProperty(e,t),this.onUpdateProperty?.(e,t??I(this,e,n),i)}}getProperties(e){let t={},n=this.getPropertyDeclarations(),r=Object.keys(n);for(let i=0,a=r.length;i<a;i++){let a=r[i],o=n[a];o.internal||o.alias||(!e||e.includes(a))&&(t[a]=this.getProperty(a))}return t}setProperties(e){if(e&&typeof e==`object`)for(let t in e)this.setProperty(t,e[t]);return this}resetProperties(){let e=this.getPropertyDeclarations(),t=Object.keys(e);for(let n=0,r=t.length;n<r;n++){let r=t[n],i=e[r];this.setProperty(r,typeof i.default==`function`?i.default():i.default)}return this}getPropertyDeclarations(){return P(this.constructor)}getPropertyDeclaration(e){return this.getPropertyDeclarations()[e]}setPropertyAccessor(e){let t=this.getPropertyDeclarations(),n=[];if(e&&e.getProperty&&e.setProperty){let r=Object.keys(t);for(let i=0,a=r.length;i<a;i++){let a=r[i],o=t[a];if(o.internal||o.alias)continue;let s=this.offsetGetProperty(a),c=e.getProperty(a);c!==void 0&&!Object.is(s,c)&&(this.offsetSetProperty(a,c),n.push({key:a,newValue:c,oldValue:s}))}}this._propertyAccessor=e;for(let e=0,t=n.length;e<t;e++){let{key:t,newValue:r,oldValue:i}=n[e];this.requestUpdate(t,r,i)}return this}async _nextTick(){return`requestAnimationFrame`in globalThis?new Promise(e=>globalThis.requestAnimationFrame(e)):Promise.resolve()}async _enqueueUpdate(){this._updating=!0;try{await this._updatingPromise}catch(e){Promise.reject(e)}await this._nextTick(),this._updating&&=(this.onUpdate(),!1)}onUpdate(){this._update(this._updatedProperties),this._updatedProperties={}}onUpdateProperty(e,t,n){Object.is(t,n)||this.requestUpdate(e,t,n)}requestUpdate(e,t,n){e!==void 0&&(this._updatedProperties[e]=n,this._changedProperties.add(e),this._updateProperty(e,t,n),this.emit(`updateProperty`,e,t,n)),this._updating||(this._updatingPromise=this._enqueueUpdate())}_update(e){}_updateProperty(e,t,n){}toJSON(){return this.offsetGetProperties()}clone(){return new this.constructor(this.toJSON())}destroy(){this.emit(`destroy`),super.destroy()}};function ge(e){let t;return t=typeof e==`number`?{r:e>>24&255,g:e>>16&255,b:e>>8&255,a:(e&255)/255}:e,C(t)}function _e(e){return{r:T(e.r),g:T(e.g),b:T(e.b),a:T(e.a,3)}}function L(e){let t=e.toString(16);return t.length<2?`0${t}`:t}var ve=`#000000FF`;function ye(e){return ge(e).isValid()}function R(e,t=!1){let n=ge(e);if(!n.isValid()){if(typeof e==`string`)return e;let n=`Failed to normalizeColor ${e}`;if(t)throw Error(n);return console.warn(n),ve}let{r,g:i,b:a,a:o}=_e(n.rgba);return`#${L(r)}${L(i)}${L(a)}${L(T(o*255))}`}var z=z||{};z.parse=(function(){let e={linearGradient:/^(-(webkit|o|ms|moz)-)?(linear-gradient)/i,repeatingLinearGradient:/^(-(webkit|o|ms|moz)-)?(repeating-linear-gradient)/i,radialGradient:/^(-(webkit|o|ms|moz)-)?(radial-gradient)/i,repeatingRadialGradient:/^(-(webkit|o|ms|moz)-)?(repeating-radial-gradient)/i,sideOrCorner:/^to (left (top|bottom)|right (top|bottom)|top (left|right)|bottom (left|right)|left|right|top|bottom)/i,extentKeywords:/^(closest-side|closest-corner|farthest-side|farthest-corner|contain|cover)/,positionKeywords:/^(left|center|right|top|bottom)/i,pixelValue:/^(-?((\d*\.\d+)|(\d+\.?)))px/,percentageValue:/^(-?((\d*\.\d+)|(\d+\.?)))%/,emValue:/^(-?((\d*\.\d+)|(\d+\.?)))em/,angleValue:/^(-?((\d*\.\d+)|(\d+\.?)))deg/,radianValue:/^(-?((\d*\.\d+)|(\d+\.?)))rad/,startCall:/^\(/,endCall:/^\)/,comma:/^,/,hexColor:/^#([0-9a-f]+)/i,literalColor:/^([a-z]+)/i,rgbColor:/^rgb/i,rgbaColor:/^rgba/i,varColor:/^var/i,calcValue:/^calc/i,variableName:/^(--[a-z0-9-,\s#]+)/i,number:/^((\d*\.\d+)|(\d+\.?))/,hslColor:/^hsl/i,hslaColor:/^hsla/i},t=``;function n(e){let n=Error(`${t}: ${e}`);throw n.source=t,n}function r(){let e=i();return t.length>0&&n(`Invalid input not EOF`),e}function i(){return v(a)}function a(){return o(`linear-gradient`,e.linearGradient,c)||o(`repeating-linear-gradient`,e.repeatingLinearGradient,c)||o(`radial-gradient`,e.radialGradient,d)||o(`repeating-radial-gradient`,e.repeatingRadialGradient,d)}function o(t,r,i){return s(r,r=>{let a=i();return a&&(A(e.comma)||n(`Missing comma before color stops`)),{type:t,orientation:a,colorStops:v(te)}})}function s(t,r){let i=A(t);if(i){A(e.startCall)||n(`Missing (`);let t=r(i);return A(e.endCall)||n(`Missing )`),t}}function c(){let t=l();if(t)return t;let n=k(`position-keyword`,e.positionKeywords,1);return n?{type:`directional`,value:n.value}:u()}function l(){return k(`directional`,e.sideOrCorner,1)}function u(){return k(`angular`,e.angleValue,1)||k(`angular`,e.radianValue,1)}function d(){let n,r=f(),i;return r&&(n=[],n.push(r),i=t,A(e.comma)&&(r=f(),r?n.push(r):t=i)),n}function f(){let e=p()||m();if(e)e.at=g();else{let t=h();if(t){e=t;let n=g();n&&(e.at=n)}else{let t=g();if(t)e={type:`default-radial`,at:t};else{let t=_();t&&(e={type:`default-radial`,at:t})}}}return e}function p(){let e=k(`shape`,/^(circle)/i,0);return e&&(e.style=O()||h()),e}function m(){let e=k(`shape`,/^(ellipse)/i,0);return e&&(e.style=_()||T()||h()),e}function h(){return k(`extent-keyword`,e.extentKeywords,1)}function g(){if(k(`position`,/^at/,0)){let e=_();return e||n(`Missing positioning value`),e}}function _(){let e=ee();if(e.x||e.y)return{type:`position`,value:e}}function ee(){return{x:T(),y:T()}}function v(t){let r=t(),i=[];if(r)for(i.push(r);A(e.comma);)r=t(),r?i.push(r):n(`One extra comma`);return i}function te(){let e=ne();return e||n(`Expected color definition`),e.length=T(),e}function ne(){return re()||C()||ie()||x()||b()||S()||y()}function y(){return k(`literal`,e.literalColor,0)}function re(){return k(`hex`,e.hexColor,1)}function b(){return s(e.rgbColor,()=>({type:`rgb`,value:v(w)}))}function x(){return s(e.rgbaColor,()=>({type:`rgba`,value:v(w)}))}function S(){return s(e.varColor,()=>({type:`var`,value:ae()}))}function ie(){return s(e.hslColor,()=>{A(e.percentageValue)&&n(`HSL hue value must be a number in degrees (0-360) or normalized (-360 to 360), not a percentage`);let t=w();A(e.comma);let r=A(e.percentageValue),i=r?r[1]:null;A(e.comma),r=A(e.percentageValue);let a=r?r[1]:null;return(!i||!a)&&n(`Expected percentage value for saturation and lightness in HSL`),{type:`hsl`,value:[t,i,a]}})}function C(){return s(e.hslaColor,()=>{let t=w();A(e.comma);let r=A(e.percentageValue),i=r?r[1]:null;A(e.comma),r=A(e.percentageValue);let a=r?r[1]:null;A(e.comma);let o=w();return(!i||!a)&&n(`Expected percentage value for saturation and lightness in HSLA`),{type:`hsla`,value:[t,i,a,o]}})}function ae(){return A(e.variableName)[1]}function w(){return A(e.number)[1]}function T(){return k(`%`,e.percentageValue,1)||E()||D()||O()}function E(){return k(`position-keyword`,e.positionKeywords,1)}function D(){return s(e.calcValue,()=>{let e=1,r=0;for(;e>0&&r<t.length;){let n=t.charAt(r);n===`(`?e++:n===`)`&&e--,r++}e>0&&n(`Missing closing parenthesis in calc() expression`);let i=t.substring(0,r-1);return j(r-1),{type:`calc`,value:i}})}function O(){return k(`px`,e.pixelValue,1)||k(`em`,e.emValue,1)}function k(e,t,n){let r=A(t);if(r)return{type:e,value:r[n]}}function A(e){let n,r;return r=/^\s+/.exec(t),r&&j(r[0].length),n=e.exec(t),n&&j(n[0].length),n}function j(e){t=t.substr(e)}return function(e){return t=e.toString().trim(),t.endsWith(`;`)&&(t=t.slice(0,-1)),r()}})();var be=z.parse.bind(z),B=B||{};B.stringify=(function(){var e={"visit_linear-gradient":function(t){return e.visit_gradient(t)},"visit_repeating-linear-gradient":function(t){return e.visit_gradient(t)},"visit_radial-gradient":function(t){return e.visit_gradient(t)},"visit_repeating-radial-gradient":function(t){return e.visit_gradient(t)},visit_gradient:function(t){var n=e.visit(t.orientation);return n&&(n+=`, `),t.type+`(`+n+e.visit(t.colorStops)+`)`},visit_shape:function(t){var n=t.value,r=e.visit(t.at),i=e.visit(t.style);return i&&(n+=` `+i),r&&(n+=` at `+r),n},"visit_default-radial":function(t){var n=``,r=e.visit(t.at);return r&&(n+=r),n},"visit_extent-keyword":function(t){var n=t.value,r=e.visit(t.at);return r&&(n+=` at `+r),n},"visit_position-keyword":function(e){return e.value},visit_position:function(t){return e.visit(t.value.x)+` `+e.visit(t.value.y)},"visit_%":function(e){return e.value+`%`},visit_em:function(e){return e.value+`em`},visit_px:function(e){return e.value+`px`},visit_calc:function(e){return`calc(`+e.value+`)`},visit_literal:function(t){return e.visit_color(t.value,t)},visit_hex:function(t){return e.visit_color(`#`+t.value,t)},visit_rgb:function(t){return e.visit_color(`rgb(`+t.value.join(`, `)+`)`,t)},visit_rgba:function(t){return e.visit_color(`rgba(`+t.value.join(`, `)+`)`,t)},visit_hsl:function(t){return e.visit_color(`hsl(`+t.value[0]+`, `+t.value[1]+`%, `+t.value[2]+`%)`,t)},visit_hsla:function(t){return e.visit_color(`hsla(`+t.value[0]+`, `+t.value[1]+`%, `+t.value[2]+`%, `+t.value[3]+`)`,t)},visit_var:function(t){return e.visit_color(`var(`+t.value+`)`,t)},visit_color:function(t,n){var r=t,i=e.visit(n.length);return i&&(r+=` `+i),r},visit_angular:function(e){return e.value+`deg`},visit_directional:function(e){return`to `+e.value},visit_array:function(t){var n=``,r=t.length;return t.forEach(function(t,i){n+=e.visit(t),i<r-1&&(n+=`, `)}),n},visit_object:function(t){return t.width&&t.height?e.visit(t.width)+` `+e.visit(t.height):``},visit:function(t){if(!t)return``;if(t instanceof Array)return e.visit_array(t);if(typeof t==`object`&&!t.type)return e.visit_object(t);if(t.type){var n=e[`visit_`+t.type];if(n)return n(t);throw Error(`Missing visitor visit_`+t.type)}else throw Error(`Invalid node.`)}};return function(t){return e.visit(t)}})();var xe=B.stringify.bind(B);function Se(e){let t=e.length-1;return e.map((e,n)=>{let r=e.value,i=T(n/t,3),a=`#00000000`;switch(e.type){case`rgb`:a=R({r:Number(r[0]??0),g:Number(r[1]??0),b:Number(r[2]??0)});break;case`rgba`:a=R({r:Number(r[0]??0),g:Number(r[1]??0),b:Number(r[2]??0),a:Number(r[3]??0)});break;case`literal`:a=R(e.value);break;case`hex`:a=R(`#${e.value}`);break}switch(e.length?.type){case`%`:i=Number(e.length.value)/100;break;case`px`:break;case`em`:break}return{offset:i,color:a}})}function Ce(e){let t=0;switch(e.orientation?.type){case`angular`:t=Number(e.orientation.value);break;case`directional`:break}return{type:`linear-gradient`,angle:t,stops:Se(e.colorStops)}}function we(e){return e.orientation?.map(e=>{switch(e?.type){default:return null}}),{type:`radial-gradient`,stops:Se(e.colorStops)}}function V(e){return e.startsWith(`linear-gradient(`)||e.startsWith(`radial-gradient(`)}function Te(e){return be(e).map(e=>{switch(e?.type){case`linear-gradient`:return Ce(e);case`repeating-linear-gradient`:return{...Ce(e),repeat:!0};case`radial-gradient`:return we(e);case`repeating-radial-gradient`:return{...we(e),repeat:!0};default:return}}).filter(Boolean)}var H=[`color`];function Ee(e){let t;return t=typeof e==`string`?{color:e}:{...e},t.color&&=R(t.color),O(t,H)}var U=[`linearGradient`,`radialGradient`,`rotateWithShape`];function De(e){let t;if(t=typeof e==`string`?{image:e}:{...e},t.image){let{type:e,...n}=Te(t.image)[0]??{};switch(e){case`radial-gradient`:return{radialGradient:n};case`linear-gradient`:return{linearGradient:n}}}return O(t,U)}function Oe(e){return D({name:e.name,params:e.params})}var W=[`image`,`cropRect`,`stretchRect`,`tile`,`dpi`,`opacity`,`rotateWithShape`,`imagePipelines`];function ke(e){let t;t=typeof e==`string`?{image:e}:{...e};let n=O(t,W);return n.imagePipelines=t.imagePipelines?.length?t.imagePipelines.map(Oe):void 0,D(n)}var G=[`preset`,`foregroundColor`,`backgroundColor`];function Ae(e){let t;return t=typeof e==`string`?{preset:e}:{...e},w(t.foregroundColor)?delete t.foregroundColor:t.foregroundColor=R(t.foregroundColor),w(t.backgroundColor)?delete t.backgroundColor:t.backgroundColor=R(t.backgroundColor),O(t,G)}function je(e){return!w(e.color)}function Me(e){return typeof e==`string`?ye(e):je(e)}function Ne(e){return!w(e.image)&&V(e.image)||!!e.linearGradient||!!e.radialGradient}function Pe(e){return typeof e==`string`?V(e):Ne(e)}function Fe(e){return!w(e.image)&&!V(e.image)}function Ie(e){return typeof e==`string`?!ye(e)&&!V(e):Fe(e)}function Le(e){return!w(e.preset)}function Re(e){return typeof e==`string`?!1:Le(e)}function K(e){let t={enabled:e&&typeof e==`object`?e.enabled??!0:!0};return Me(e)&&Object.assign(t,Ee(e)),Pe(e)&&Object.assign(t,De(e)),Ie(e)&&Object.assign(t,ke(e)),Re(e)&&Object.assign(t,Ae(e)),O(D(t),Array.from(new Set([`enabled`,...H,...W,...U,...G])))}function ze(e){return typeof e==`string`?{...K(e)}:{...K(e),...O(e,[`fillWithShape`])}}function Be(){return{backgroundImage:`none`,backgroundSize:`auto, auto`,backgroundColor:`none`,backgroundColormap:`none`}}function Ve(e){return(e??[]).map(e=>E(e)??0)}function He(e){return D({name:e.name,values:Ve(e.values),xValues:e.xValues?Ve(e.xValues):void 0,color:e.color})}function Ue(e){return D({title:e.title,min:E(e.min),max:E(e.max),visible:e.visible})}function We(e){return D({enabled:e.enabled??!0,type:e.type??`column`,grouping:e.grouping,categories:e.categories??[],series:(e.series??[]).map(He),title:e.title,legend:e.legend,categoryAxis:e.categoryAxis?Ue(e.categoryAxis):void 0,valueAxis:e.valueAxis?Ue(e.valueAxis):void 0})}var Ge=`useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict`,Ke=(e=21)=>{let t=``,n=crypto.getRandomValues(new Uint8Array(e|=0));for(;e--;)t+=Ge[n[e]&63];return t},qe=()=>Ke(10),q=qe;function Je(e){return{x:E(e.x)??0,y:E(e.y)??0}}function Ye(e){return D({id:e.id,name:e.name,color:e.color,initials:e.initials})}function Xe(e){return D({id:e.id??q(),author:e.author?Ye(e.author):void 0,body:e.body??``,createdAt:E(e.createdAt)})}function Ze(e){return D({id:e.id??q(),offset:e.offset?Je(e.offset):void 0,resolved:e.resolved,messages:(e.messages??[]).map(Xe)})}function Qe(e){if(e?.length)return e.map(Ze)}function $e(e){return D({start:e.start,end:e.end,mode:e.mode??`straight`})}function J(e){return typeof e==`string`?{...K(e)}:{...K(e),...O(e,[`width`,`style`,`lineCap`,`lineJoin`,`headEnd`,`tailEnd`])}}function et(){return{outlineWidth:0,outlineOffset:0,outlineColor:`none`,outlineStyle:`none`}}function tt(e){return typeof e==`string`?{enabled:!0,color:R(e)}:{...e,enabled:e.enabled??!0,color:w(e.color)?ve:R(e.color)}}function nt(){return{boxShadow:`none`}}function rt(e){return D({blur:e.blur,brightness:e.brightness,contrast:e.contrast,grayscale:e.grayscale,hueRotate:e.hueRotate,invert:e.invert,opacity:e.opacity,saturate:e.saturate,sepia:e.sepia,duotone:e.duotone?[R(e.duotone[0]),R(e.duotone[1])]:void 0,biLevel:e.biLevel,colorChange:e.colorChange?{from:R(e.colorChange.from),to:R(e.colorChange.to)}:void 0})}function it(e){let t=[];return e.blur!==void 0&&t.push(`blur(${e.blur}px)`),e.brightness!==void 0&&t.push(`brightness(${e.brightness})`),e.contrast!==void 0&&t.push(`contrast(${e.contrast})`),e.grayscale!==void 0&&t.push(`grayscale(${e.grayscale})`),e.hueRotate!==void 0&&t.push(`hue-rotate(${e.hueRotate}deg)`),e.invert!==void 0&&t.push(`invert(${e.invert})`),e.opacity!==void 0&&t.push(`opacity(${e.opacity})`),e.saturate!==void 0&&t.push(`saturate(${e.saturate})`),e.sepia!==void 0&&t.push(`sepia(${e.sepia})`),t.join(` `)}var at=[`fill`,`outline`,`shadow`,`transform`,`transformOrigin`,`filter`];function ot(e){let t=O(e,at),{rotate:n,scaleX:r,scaleY:i,skewX:a,skewY:o,translateX:s,translateY:c}=e,l=[];return(s||c)&&l.push(`translate(${s||0}, ${c||0})`),n&&l.push(`rotate(${n}deg)`),(r||i)&&l.push(`scale(${r??1}, ${i??1})`),a&&l.push(`skewX(${a}deg)`),o&&l.push(`skewY(${o}deg)`),l.length>0&&(t.transform=l.join(` `)),(e.textStrokeWidth||e.textStrokeColor)&&(t.outline={color:e.textStrokeColor,width:e.textStrokeWidth}),e.color&&(t.fill={color:e.color}),(e.shadowOffsetX||e.shadowOffsetY||e.shadowBlur||e.shadowColor)&&(t.shadow={offsetX:e.shadowOffsetX,offsetY:e.shadowOffsetY,blur:e.shadowBlur,color:e.shadowColor}),t}function Y(e){let t=ot(e);return D({fill:w(t.fill)?void 0:K(t.fill),outline:w(t.outline)?void 0:J(t.outline),shadow:w(t.shadow)?void 0:tt(t.shadow),transform:w(t.transform)?void 0:t.transform,transformOrigin:t.transformOrigin,filter:t.filter?rt(t.filter):void 0})}function st(e){return typeof e==`string`?{...K(e)}:D({...K(e),...O(e,[`fillWithShape`])})}function ct(e){return typeof e==`string`?e.startsWith(`<svg`)?{enabled:!0,svg:e}:{enabled:!0,paths:[{data:e}]}:Array.isArray(e)?{enabled:!0,paths:e.map(e=>typeof e==`string`?{data:e}:e)}:e}function lt(){return{overflow:`visible`,direction:void 0,display:void 0,boxSizing:void 0,width:void 0,height:void 0,maxHeight:void 0,maxWidth:void 0,minHeight:void 0,minWidth:void 0,position:void 0,left:0,top:0,right:void 0,bottom:void 0,borderTop:void 0,borderLeft:void 0,borderRight:void 0,borderBottom:void 0,borderWidth:0,border:void 0,flex:void 0,flexBasis:void 0,flexDirection:void 0,flexGrow:void 0,flexShrink:void 0,flexWrap:void 0,justifyContent:void 0,gap:void 0,alignContent:void 0,alignItems:void 0,alignSelf:void 0,marginTop:void 0,marginLeft:void 0,marginRight:void 0,marginBottom:void 0,margin:void 0,paddingTop:void 0,paddingLeft:void 0,paddingRight:void 0,paddingBottom:void 0,padding:void 0}}function ut(){return{rotate:0,scaleX:1,scaleY:1,skewX:0,skewY:0,translateX:0,translateY:0,transform:`none`,transformOrigin:`center`}}function dt(){return{...lt(),...ut(),...nt(),...Be(),...et(),borderRadius:0,borderColor:`none`,borderStyle:`solid`,visibility:`visible`,filter:`none`,opacity:1,pointerEvents:`auto`,maskImage:`none`}}function ft(){return{highlight:{},highlightImage:`none`,highlightReferImage:`none`,highlightColormap:`none`,highlightLine:`none`,highlightSize:`cover`,highlightThickness:`100%`}}function pt(){return{listStyle:{},listStyleType:`none`,listStyleImage:`none`,listStyleColormap:`none`,listStyleSize:`cover`,listStylePosition:`outside`}}function mt(){return{...ft(),color:`#000000`,verticalAlign:`baseline`,letterSpacing:0,wordSpacing:0,fontSize:14,fontWeight:`normal`,fontFamily:``,fontStyle:`normal`,fontKerning:`normal`,textTransform:`none`,textOrientation:`mixed`,textDecoration:`none`}}function ht(){return{...pt(),writingMode:`horizontal-tb`,textWrap:`wrap`,textAlign:`start`,textIndent:0,lineHeight:1.2}}function gt(){return{...ht(),...mt(),textStrokeWidth:0,textStrokeColor:`none`}}var _t=[`textIndent`,`lineHeight`,`letterSpacing`,`wordSpacing`,`fontSize`,`textStrokeWidth`,`borderRadius`,`opacity`,`rotate`,`scaleX`,`scaleY`,`skewX`,`skewY`,`translateX`,`translateY`,`borderWidth`,`flex`,`flexGrow`,`flexShrink`];function X(e){let t=D({...e,color:w(e.color)?void 0:R(e.color),backgroundColor:w(e.backgroundColor)?void 0:R(e.backgroundColor),borderColor:w(e.borderColor)?void 0:R(e.borderColor),outlineColor:w(e.outlineColor)?void 0:R(e.outlineColor),shadowColor:w(e.shadowColor)?void 0:R(e.shadowColor),textStrokeColor:w(e.textStrokeColor)?void 0:R(e.textStrokeColor)});for(let e of _t)if(e in t){let n=E(t[e]);n===void 0?delete t[e]:t[e]=n}return t}function vt(){return{...dt(),...gt()}}function yt(e){return D({width:E(e.width)})}function bt(e){return D({height:E(e.height)})}function xt(e){return D({row:E(e.row)??0,col:E(e.col)??0,rowSpan:E(e.rowSpan),colSpan:E(e.colSpan),children:(e.children??[]).map(e=>$(e)),background:w(e.background)?void 0:ze(e.background),style:w(e.style)?void 0:X(e.style)})}function St(e){return D({enabled:e.enabled??!0,columns:(e.columns??[]).map(yt),rows:(e.rows??[]).map(bt),cells:(e.cells??[]).map(xt)})}var Ct=/\r\n|\n\r|\n|\r/,wt=RegExp(`${Ct.source}|<br\\/>`,`g`),Tt=RegExp(`^(${Ct.source})$`),Et=`
|
|
2
2
|
`;function Dt(e){return Ct.test(e)}function Ot(e){return Tt.test(e)}function kt(e){return e.replace(wt,Et)}function Z(e){let t=[];function n(){return t[t.length-1]}function r(e,n,r){let i=e?X(e):{},a=n?K(n):void 0,o=r?J(r):void 0,s=D({...i,fill:a,outline:o,fragments:[]});return t[t.length-1]?.fragments.length===0?t[t.length-1]=s:t.push(s),s}function i(e=``,t,i,a){let o=t?X(t):{},s=i?K(i):void 0,c=a?J(a):void 0;Array.from(e).forEach(e=>{if(Ot(e)){let{fragments:e,fill:t,outline:i,...a}=n()||r();e.length||e.push(D({...o,fill:s,outline:c,content:Et})),r(a,t,i)}else{let t=n()||r(),i=t.fragments[t.fragments.length-1];if(i){let{content:t,fill:n,outline:r,...a}=i;if(k(s,n)&&k(c,r)&&k(o,a)){i.content=`${t}${e}`;return}}t.fragments.push(D({...o,fill:s,outline:c,content:e}))}})}(Array.isArray(e)?e:[e]).forEach(e=>{if(typeof e==`string`)r(),i(e);else if(Q(e)){let{content:t,fill:n,outline:a,...o}=e;r(o,n,a),i(t)}else if(At(e)){let{fragments:t,fill:n,outline:a,...o}=e;r(o,n,a),t.forEach(e=>{let{content:t,fill:n,outline:r,...a}=e;i(t,a,n,r)})}else Array.isArray(e)?(r(),e.forEach(e=>{if(typeof e==`string`)i(e);else if(Q(e)){let{content:t,fill:n,outline:r,...a}=e;i(t,a,n,r)}})):console.warn(`Failed to parse text content`,e)});let a=n();return a&&!a.fragments.length&&a.fragments.push({content:``}),t}function At(e){return e&&typeof e==`object`&&`fragments`in e&&Array.isArray(e.fragments)}function Q(e){return e&&typeof e==`object`&&`content`in e&&typeof e.content==`string`}function jt(e){return D({type:e.type,intensities:e.intensities,maxFontSize:e.maxFontSize??100})}function Mt(e){return typeof e==`string`||Array.isArray(e)?{enabled:!0,content:Z(e)}:D({enabled:e.enabled??!0,content:Z(e.content??``),style:e.style?X(e.style):void 0,deformation:e.deformation?jt(e.deformation):void 0,measureDom:e.measureDom,fonts:e.fonts,...Y(e),effects:e.effects?e.effects.map(e=>Y(e)):void 0})}function Nt(e){return Z(e).map(e=>{let t=kt(e.fragments.flatMap(e=>e.content).join(``));return Ot(t)?``:t}).join(Et)}function Pt(e){return typeof e==`string`?{src:e}:e}function $(e){return D({id:e.id??q(),style:w(e.style)?void 0:X(e.style),text:w(e.text)?void 0:Mt(e.text),background:w(e.background)?void 0:ze(e.background),shape:w(e.shape)?void 0:ct(e.shape),foreground:w(e.foreground)?void 0:st(e.foreground),video:w(e.video)?void 0:Pt(e.video),audio:w(e.audio)?void 0:t(e.audio),connection:w(e.connection)?void 0:$e(e.connection),table:w(e.table)?void 0:St(e.table),chart:w(e.chart)?void 0:We(e.chart),comments:Qe(e.comments),...Y(e),children:e.children?.map(e=>$(e))})}function Ft(e){return $(e)}function It(e){let t={};for(let n in e.children){let r=$(e.children[n]);delete r.children,t[n]=r}return{...e,children:t}}function Lt(e){let{children:t,...n}=e;function r(e){let{parentId:t,childrenIds:n,...r}=e;return{...r,children:[]}}let i={},a=[],o={...n,children:a};function s(e){if(!t[e]||i[e])return;let n=t[e],o=r(n);i[e]=o;let c=n.parentId;if(c){s(c);let n=t[c],r=i[c];if(!r)return;n?.childrenIds&&r?.children&&(r.children[n.childrenIds.indexOf(e)]=o)}else a.push(o)}for(let e in t)s(e);return o}e.EventEmitter=ae,e.Observable=ce,e.RawWeakMap=le,e.Reactivable=he,e.clearUndef=D,e.colorFillFields=H,e.defaultColor=ve,e.defineProperty=fe,e.effectFields=at,e.flatDocumentToDocument=Lt,e.getDeclarations=P,e.getDefaultBackgroundStyle=Be,e.getDefaultElementStyle=dt,e.getDefaultHighlightStyle=ft,e.getDefaultLayoutStyle=lt,e.getDefaultListStyleStyle=pt,e.getDefaultOutlineStyle=et,e.getDefaultShadowStyle=nt,e.getDefaultStyle=vt,e.getDefaultTextInlineStyle=mt,e.getDefaultTextLineStyle=ht,e.getDefaultTextStyle=gt,e.getDefaultTransformStyle=ut,e.getNestedValue=A,e.getObjectValueByPath=oe,e.getPropertyDescriptor=de,e.gradientFillFields=U,e.hasCRLF=Dt,e.idGenerator=q,e.imageFillFiedls=W,e.isCRLF=Ot,e.isColor=ye,e.isColorFill=Me,e.isColorFillObject=je,e.isEqualObject=k,e.isFragmentObject=Q,e.isGradient=V,e.isGradientFill=Pe,e.isGradientFillObject=Ne,e.isImageFill=Ie,e.isImageFillObject=Fe,e.isNone=w,e.isParagraphObject=At,e.isPresetFill=Re,e.isPresetFillObject=Le,e.nanoid=qe,e.normalizeAudio=t,e.normalizeBackground=ze,e.normalizeCRLF=kt,e.normalizeChart=We,e.normalizeColor=R,e.normalizeColorFill=Ee,e.normalizeCommentMessage=Xe,e.normalizeCommentThread=Ze,e.normalizeComments=Qe,e.normalizeConnection=$e,e.normalizeDocument=Ft,e.normalizeEffect=Y,e.normalizeElement=$,e.normalizeFill=K,e.normalizeFilter=rt,e.normalizeFlatDocument=It,e.normalizeForeground=st,e.normalizeGradient=Te,e.normalizeGradientFill=De,e.normalizeImageFill=ke,e.normalizeImagePipeline=Oe,e.normalizeNumber=E,e.normalizeOutline=J,e.normalizePresetFill=Ae,e.normalizeShadow=tt,e.normalizeShape=ct,e.normalizeStyle=X,e.normalizeTable=St,e.normalizeText=Mt,e.normalizeTextContent=Z,e.normalizeTextDeformation=jt,e.normalizeVideo=Pt,e.parseColor=ge,e.parseGradient=be,e.pick=O,e.presetFillFiedls=G,e.property=pe,e.property2=me,e.propertyOffsetFallback=I,e.propertyOffsetGet=ue,e.propertyOffsetSet=F,e.round=T,e.setNestedValue=j,e.setObjectValueByPath=se,e.stringifyFilter=it,e.stringifyGradient=xe,e.textContentToString=Nt});
|
package/dist/index.mjs
CHANGED
|
@@ -310,24 +310,11 @@ function propertyOffsetSet(target, key, newValue, declaration) {
|
|
|
310
310
|
);
|
|
311
311
|
}
|
|
312
312
|
function propertyOffsetGet(target, key, declaration) {
|
|
313
|
-
const
|
|
314
|
-
|
|
315
|
-
internalKey
|
|
316
|
-
} = declaration;
|
|
317
|
-
let result;
|
|
318
|
-
if (alias) {
|
|
319
|
-
result = getObjectValueByPath(target, alias);
|
|
320
|
-
} else {
|
|
321
|
-
result = target[internalKey];
|
|
322
|
-
}
|
|
323
|
-
result = result ?? propertyOffsetFallback(target, key, declaration);
|
|
324
|
-
return result;
|
|
313
|
+
const result = declaration.alias ? getObjectValueByPath(target, declaration.alias) : target[declaration.internalKey];
|
|
314
|
+
return result ?? propertyOffsetFallback(target, key, declaration);
|
|
325
315
|
}
|
|
326
316
|
function propertyOffsetFallback(target, key, declaration) {
|
|
327
|
-
const
|
|
328
|
-
default: _default,
|
|
329
|
-
fallback
|
|
330
|
-
} = declaration;
|
|
317
|
+
const _default = declaration.default;
|
|
331
318
|
let result;
|
|
332
319
|
if (_default !== void 0 && !target[initedSymbol]?.[key]) {
|
|
333
320
|
if (!target[initedSymbol]) {
|
|
@@ -340,22 +327,25 @@ function propertyOffsetFallback(target, key, declaration) {
|
|
|
340
327
|
result = defaultValue;
|
|
341
328
|
}
|
|
342
329
|
}
|
|
343
|
-
if (result === void 0
|
|
344
|
-
|
|
330
|
+
if (result === void 0) {
|
|
331
|
+
const fallback = declaration.fallback;
|
|
332
|
+
if (fallback !== void 0) {
|
|
333
|
+
result = typeof fallback === "function" ? fallback() : fallback;
|
|
334
|
+
}
|
|
345
335
|
}
|
|
346
336
|
return result;
|
|
347
337
|
}
|
|
348
338
|
function getPropertyDescriptor(key, declaration) {
|
|
349
339
|
function get() {
|
|
350
340
|
if (this.getProperty) {
|
|
351
|
-
return this.getProperty(key);
|
|
341
|
+
return this.getProperty(key, declaration);
|
|
352
342
|
} else {
|
|
353
343
|
return propertyOffsetGet(this, key, declaration);
|
|
354
344
|
}
|
|
355
345
|
}
|
|
356
346
|
function set(newValue) {
|
|
357
347
|
if (this.setProperty) {
|
|
358
|
-
this.setProperty(key, newValue);
|
|
348
|
+
this.setProperty(key, newValue, declaration);
|
|
359
349
|
} else {
|
|
360
350
|
propertyOffsetSet(this, key, newValue, declaration);
|
|
361
351
|
}
|
|
@@ -477,8 +467,7 @@ class Reactivable extends Observable {
|
|
|
477
467
|
}
|
|
478
468
|
return this;
|
|
479
469
|
}
|
|
480
|
-
getProperty(key) {
|
|
481
|
-
const declaration = this.getPropertyDeclaration(key);
|
|
470
|
+
getProperty(key, declaration = this.getPropertyDeclaration(key)) {
|
|
482
471
|
if (declaration) {
|
|
483
472
|
if (declaration.internal || declaration.alias) {
|
|
484
473
|
return propertyOffsetGet(this, key, declaration);
|
|
@@ -488,15 +477,14 @@ class Reactivable extends Observable {
|
|
|
488
477
|
if (accessor && accessor.getProperty) {
|
|
489
478
|
result = accessor.getProperty(key);
|
|
490
479
|
} else {
|
|
491
|
-
result = this.
|
|
480
|
+
result = this._properties[key];
|
|
492
481
|
}
|
|
493
482
|
return result ?? propertyOffsetFallback(this, key, declaration);
|
|
494
483
|
}
|
|
495
484
|
}
|
|
496
485
|
return void 0;
|
|
497
486
|
}
|
|
498
|
-
setProperty(key, newValue) {
|
|
499
|
-
const declaration = this.getPropertyDeclaration(key);
|
|
487
|
+
setProperty(key, newValue, declaration = this.getPropertyDeclaration(key)) {
|
|
500
488
|
if (declaration) {
|
|
501
489
|
if (declaration.internal || declaration.alias) {
|
|
502
490
|
propertyOffsetSet(this, key, newValue, declaration);
|