@mlightcad/common 1.4.6 → 1.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 mlight-lee
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 mlight-lee
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,133 +1,133 @@
1
- # @mlightcad/common
2
-
3
- The common package provides shared utilities and base classes that are used across the RealDWG-Web ecosystem. This package contains fundamental components for color management, event handling, logging, performance monitoring, and file loading operations.
4
-
5
- ## Overview
6
-
7
- This package serves as the foundation for the RealDWG-Web project, providing essential utilities and base classes that mimic AutoCAD ObjectARX's AcCm (Common) classes. It includes color management, event dispatching, logging utilities, performance monitoring, and file loading capabilities.
8
-
9
- ## Key Features
10
-
11
- - **Color Management**: Comprehensive color handling with support for AutoCAD color indices and RGB values
12
- - **Event System**: Event dispatching and management for decoupled communication between components
13
- - **Logging**: Structured logging utilities with different log levels
14
- - **Performance Monitoring**: Tools for collecting and analyzing performance metrics
15
- - **File Loading**: Asynchronous file loading with progress tracking and error handling
16
- - **Task Scheduling**: Background task management and scheduling capabilities
17
-
18
- ## Installation
19
-
20
- ```bash
21
- npm install @mlightcad/common
22
- ```
23
-
24
- ## Key Classes
25
-
26
- ### Color Management
27
- - **AcCmColor**: Represents colors in AutoCAD format with support for color indices and RGB values
28
- - **AcCmColorUtil**: Utility functions for color conversion and manipulation
29
-
30
- ### Event System
31
- - **AcCmEventDispatcher**: Dispatches events to registered listeners
32
- - **AcCmEventManager**: Manages event registration and dispatching across the application
33
-
34
- ### Logging and Utilities
35
- - **AcCmLogUtil**: Structured logging with different log levels (debug, info, warn, error)
36
- - **AcCmStringUtil**: String manipulation and formatting utilities
37
- - **AcCmErrors**: Error handling and custom error types
38
-
39
- ### Performance and Tasks
40
- - **AcCmPerformanceCollector**: Collects and analyzes performance metrics
41
- - **AcCmTaskScheduler**: Manages background tasks and scheduling
42
-
43
- ### File Loading
44
- - **AcCmFileLoader**: Handles asynchronous file loading with progress tracking
45
- - **AcCmLoadingManager**: Manages multiple file loading operations
46
- - **AcCmLoader**: Base class for implementing custom file loaders
47
-
48
- ### Base Classes
49
- - **AcCmObject**: Base class for common objects with event handling capabilities
50
-
51
- ## Usage Examples
52
-
53
- ### Color Management
54
- ```typescript
55
- import { AcCmColor, AcCmColorUtil } from '@mlightcad/common';
56
-
57
- // Create a color from AutoCAD color index
58
- const color = new AcCmColor(1); // Red
59
-
60
- // Create a color from RGB values
61
- const rgbColor = new AcCmColor(255, 0, 0);
62
-
63
- // Convert between formats
64
- const rgb = AcCmColorUtil.toRgb(color);
65
- const index = AcCmColorUtil.toColorIndex(rgbColor);
66
- ```
67
-
68
- ### Event Handling
69
- ```typescript
70
- import { AcCmEventManager, AcCmEventDispatcher } from '@mlightcad/common';
71
-
72
- // Create an event dispatcher
73
- const dispatcher = new AcCmEventDispatcher();
74
-
75
- // Register an event listener
76
- dispatcher.addEventListener('fileLoaded', (event) => {
77
- console.log('File loaded:', event.data);
78
- });
79
-
80
- // Dispatch an event
81
- dispatcher.dispatchEvent('fileLoaded', { fileName: 'drawing.dwg' });
82
- ```
83
-
84
- ### Logging
85
- ```typescript
86
- import { AcCmLogUtil } from '@mlightcad/common';
87
-
88
- // Configure logging
89
- AcCmLogUtil.setLevel('info');
90
-
91
- // Log messages
92
- AcCmLogUtil.info('Application started');
93
- AcCmLogUtil.warn('Deprecated feature used');
94
- AcCmLogUtil.error('Failed to load file', error);
95
- ```
96
-
97
- ### File Loading
98
- ```typescript
99
- import { AcCmFileLoader, AcCmLoadingManager } from '@mlightcad/common';
100
-
101
- // Create a file loader
102
- const loader = new AcCmFileLoader();
103
-
104
- // Load a file with progress tracking
105
- loader.load('drawing.dwg', {
106
- onProgress: (progress) => {
107
- console.log(`Loading: ${progress}%`);
108
- },
109
- onComplete: (data) => {
110
- console.log('File loaded successfully');
111
- },
112
- onError: (error) => {
113
- console.error('Failed to load file:', error);
114
- }
115
- });
116
-
117
- // Use loading manager for multiple files
118
- const manager = new AcCmLoadingManager();
119
- manager.addLoader(loader);
120
- manager.start();
121
- ```
122
-
123
- ## Dependencies
124
-
125
- - **loglevel**: For logging functionality
126
-
127
- ## API Documentation
128
-
129
- For detailed API documentation, visit the [RealDWG-Web documentation](https://mlight-lee.github.io/realdwg-web/).
130
-
131
- ## Contributing
132
-
1
+ # @mlightcad/common
2
+
3
+ The common package provides shared utilities and base classes that are used across the RealDWG-Web ecosystem. This package contains fundamental components for color management, event handling, logging, performance monitoring, and file loading operations.
4
+
5
+ ## Overview
6
+
7
+ This package serves as the foundation for the RealDWG-Web project, providing essential utilities and base classes that mimic AutoCAD ObjectARX's AcCm (Common) classes. It includes color management, event dispatching, logging utilities, performance monitoring, and file loading capabilities.
8
+
9
+ ## Key Features
10
+
11
+ - **Color Management**: Comprehensive color handling with support for AutoCAD color indices and RGB values
12
+ - **Event System**: Event dispatching and management for decoupled communication between components
13
+ - **Logging**: Structured logging utilities with different log levels
14
+ - **Performance Monitoring**: Tools for collecting and analyzing performance metrics
15
+ - **File Loading**: Asynchronous file loading with progress tracking and error handling
16
+ - **Task Scheduling**: Background task management and scheduling capabilities
17
+
18
+ ## Installation
19
+
20
+ ```bash
21
+ npm install @mlightcad/common
22
+ ```
23
+
24
+ ## Key Classes
25
+
26
+ ### Color Management
27
+ - **AcCmColor**: Represents colors in AutoCAD format with support for color indices and RGB values
28
+ - **AcCmColorUtil**: Utility functions for color conversion and manipulation
29
+
30
+ ### Event System
31
+ - **AcCmEventDispatcher**: Dispatches events to registered listeners
32
+ - **AcCmEventManager**: Manages event registration and dispatching across the application
33
+
34
+ ### Logging and Utilities
35
+ - **AcCmLogUtil**: Structured logging with different log levels (debug, info, warn, error)
36
+ - **AcCmStringUtil**: String manipulation and formatting utilities
37
+ - **AcCmErrors**: Error handling and custom error types
38
+
39
+ ### Performance and Tasks
40
+ - **AcCmPerformanceCollector**: Collects and analyzes performance metrics
41
+ - **AcCmTaskScheduler**: Manages background tasks and scheduling
42
+
43
+ ### File Loading
44
+ - **AcCmFileLoader**: Handles asynchronous file loading with progress tracking
45
+ - **AcCmLoadingManager**: Manages multiple file loading operations
46
+ - **AcCmLoader**: Base class for implementing custom file loaders
47
+
48
+ ### Base Classes
49
+ - **AcCmObject**: Base class for common objects with event handling capabilities
50
+
51
+ ## Usage Examples
52
+
53
+ ### Color Management
54
+ ```typescript
55
+ import { AcCmColor, AcCmColorUtil } from '@mlightcad/common';
56
+
57
+ // Create a color from AutoCAD color index
58
+ const color = new AcCmColor(1); // Red
59
+
60
+ // Create a color from RGB values
61
+ const rgbColor = new AcCmColor(255, 0, 0);
62
+
63
+ // Convert between formats
64
+ const rgb = AcCmColorUtil.toRgb(color);
65
+ const index = AcCmColorUtil.toColorIndex(rgbColor);
66
+ ```
67
+
68
+ ### Event Handling
69
+ ```typescript
70
+ import { AcCmEventManager, AcCmEventDispatcher } from '@mlightcad/common';
71
+
72
+ // Create an event dispatcher
73
+ const dispatcher = new AcCmEventDispatcher();
74
+
75
+ // Register an event listener
76
+ dispatcher.addEventListener('fileLoaded', (event) => {
77
+ console.log('File loaded:', event.data);
78
+ });
79
+
80
+ // Dispatch an event
81
+ dispatcher.dispatchEvent('fileLoaded', { fileName: 'drawing.dwg' });
82
+ ```
83
+
84
+ ### Logging
85
+ ```typescript
86
+ import { AcCmLogUtil } from '@mlightcad/common';
87
+
88
+ // Configure logging
89
+ AcCmLogUtil.setLevel('info');
90
+
91
+ // Log messages
92
+ AcCmLogUtil.info('Application started');
93
+ AcCmLogUtil.warn('Deprecated feature used');
94
+ AcCmLogUtil.error('Failed to load file', error);
95
+ ```
96
+
97
+ ### File Loading
98
+ ```typescript
99
+ import { AcCmFileLoader, AcCmLoadingManager } from '@mlightcad/common';
100
+
101
+ // Create a file loader
102
+ const loader = new AcCmFileLoader();
103
+
104
+ // Load a file with progress tracking
105
+ loader.load('drawing.dwg', {
106
+ onProgress: (progress) => {
107
+ console.log(`Loading: ${progress}%`);
108
+ },
109
+ onComplete: (data) => {
110
+ console.log('File loaded successfully');
111
+ },
112
+ onError: (error) => {
113
+ console.error('Failed to load file:', error);
114
+ }
115
+ });
116
+
117
+ // Use loading manager for multiple files
118
+ const manager = new AcCmLoadingManager();
119
+ manager.addLoader(loader);
120
+ manager.start();
121
+ ```
122
+
123
+ ## Dependencies
124
+
125
+ - **loglevel**: For logging functionality
126
+
127
+ ## API Documentation
128
+
129
+ For detailed API documentation, visit the [RealDWG-Web documentation](https://mlight-lee.github.io/realdwg-web/).
130
+
131
+ ## Contributing
132
+
133
133
  This package is part of the RealDWG-Web monorepo. Please refer to the main project README for contribution guidelines.
package/dist/common.js CHANGED
@@ -499,7 +499,7 @@ class w {
499
499
  return this.getNameByColor(t);
500
500
  }
501
501
  }
502
- class B {
502
+ class _ {
503
503
  /**
504
504
  * Constructs a new AcCmColor.
505
505
  * @param method Initial color method (defaults to `ByColor`)
@@ -638,6 +638,15 @@ class B {
638
638
  if (e != null)
639
639
  return `rgb(${e >> 16 & 255},${e >> 8 & 255},${e & 255})`;
640
640
  }
641
+ /**
642
+ * Returns a CSS rgba() color string with the specified alpha value.
643
+ * @param alpha - Opacity value between 0 (transparent) and 1 (opaque)
644
+ */
645
+ cssColorAlpha(e) {
646
+ const t = this.RGB;
647
+ if (t != null)
648
+ return `rgba(${t >> 16 & 255},${t >> 8 & 255},${t & 255},${e})`;
649
+ }
641
650
  // ---------------------------------------------------------------------
642
651
  // ACI accessors (ByACI)
643
652
  // ---------------------------------------------------------------------
@@ -759,7 +768,7 @@ class B {
759
768
  * @returns A new AcCmColor instance with the same method and value
760
769
  */
761
770
  clone() {
762
- const e = new B();
771
+ const e = new _();
763
772
  return e._colorMethod = this._colorMethod, e._value = this._value, e;
764
773
  }
765
774
  /**
@@ -812,34 +821,34 @@ class B {
812
821
  if (!e) return;
813
822
  const t = e.trim();
814
823
  if (/^bylayer$/i.test(t))
815
- return new B(i.ByLayer);
824
+ return new _(i.ByLayer);
816
825
  if (/^byblock$/i.test(t))
817
- return new B(i.ByBlock);
826
+ return new _(i.ByBlock);
818
827
  const s = t.match(
819
828
  /^rgb\s*:\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})$/i
820
829
  );
821
830
  if (s) {
822
- const n = Number(s[1]), l = Number(s[2]), c = Number(s[3]), v = new B(i.ByColor);
831
+ const n = Number(s[1]), l = Number(s[2]), c = Number(s[3]), v = new _(i.ByColor);
823
832
  return v.setRGB(n, l, c), v;
824
833
  }
825
834
  if (/^\d{1,3},\d{1,3},\d{1,3}$/.test(t)) {
826
- const [n, l, c] = t.split(",").map(Number), v = new B(i.ByColor);
835
+ const [n, l, c] = t.split(",").map(Number), v = new _(i.ByColor);
827
836
  return v.setRGB(n, l, c), v;
828
837
  }
829
838
  if (/^\d+$/.test(t)) {
830
839
  const n = parseInt(t, 10);
831
- return new B(i.ByACI, n);
840
+ return new _(i.ByACI, n);
832
841
  }
833
842
  if (/^book\$/i.test(t)) {
834
843
  const n = t.substring(t.indexOf("$") + 1), l = w.getColorByName(n);
835
844
  if (l != null)
836
- return new B(i.ByColor, l);
845
+ return new _(i.ByColor, l);
837
846
  console.warn("Unknown color book entry:", e);
838
847
  return;
839
848
  }
840
849
  const o = w.getColorByName(t);
841
850
  if (o != null)
842
- return new B(i.ByColor, o);
851
+ return new _(i.ByColor, o);
843
852
  console.warn("Unknown color name:", e);
844
853
  }
845
854
  }
@@ -1064,7 +1073,7 @@ class ie {
1064
1073
  }
1065
1074
  }
1066
1075
  }
1067
- class F {
1076
+ class U {
1068
1077
  constructor() {
1069
1078
  this.listeners = [];
1070
1079
  }
@@ -1101,7 +1110,7 @@ class F {
1101
1110
  function C(r) {
1102
1111
  return r === null || typeof r != "object" ? r : Array.isArray(r) ? [...r] : { ...r };
1103
1112
  }
1104
- function $(r) {
1113
+ function F(r) {
1105
1114
  if (r === null || typeof r != "object")
1106
1115
  return r;
1107
1116
  if (r instanceof Date)
@@ -1109,10 +1118,10 @@ function $(r) {
1109
1118
  if (r instanceof RegExp)
1110
1119
  return new RegExp(r.source, r.flags);
1111
1120
  if (Array.isArray(r))
1112
- return r.map($);
1121
+ return r.map(F);
1113
1122
  const e = {};
1114
1123
  for (const t in r)
1115
- Object.prototype.hasOwnProperty.call(r, t) && (e[t] = $(r[t]));
1124
+ Object.prototype.hasOwnProperty.call(r, t) && (e[t] = F(r[t]));
1116
1125
  return e;
1117
1126
  }
1118
1127
  function Y(r, ...e) {
@@ -1238,9 +1247,9 @@ var D = { exports: {} };
1238
1247
  }
1239
1248
  if (typeof u === t)
1240
1249
  try {
1241
- var g = window.document.cookie, A = encodeURIComponent(p), U = g.indexOf(A + "=");
1242
- U !== -1 && (u = /^([^;]+)/.exec(
1243
- g.slice(U + A.length + 1)
1250
+ var g = window.document.cookie, A = encodeURIComponent(p), $ = g.indexOf(A + "=");
1251
+ $ !== -1 && (u = /^([^;]+)/.exec(
1252
+ g.slice($ + A.length + 1)
1244
1253
  )[1]);
1245
1254
  } catch {
1246
1255
  }
@@ -1333,8 +1342,8 @@ class V {
1333
1342
  */
1334
1343
  constructor(e, t) {
1335
1344
  this.events = {
1336
- attrChanged: new F(),
1337
- modelChanged: new F()
1345
+ attrChanged: new U(),
1346
+ modelChanged: new U()
1338
1347
  }, this._changing = !1, this._previousAttributes = {}, this._pending = !1;
1339
1348
  const s = e || {};
1340
1349
  t && Y(s, t), this.attributes = s, this.changed = {};
@@ -1531,7 +1540,7 @@ class he {
1531
1540
  }
1532
1541
  }
1533
1542
  var y = /* @__PURE__ */ ((r) => (r[r.ByLayer = 0] = "ByLayer", r[r.ByBlock = 1] = "ByBlock", r[r.ByAlpha = 2] = "ByAlpha", r[r.ErrorValue = 3] = "ErrorValue", r))(y || {});
1534
- class _ {
1543
+ class B {
1535
1544
  /**
1536
1545
  * Creates a new transparency object.
1537
1546
  *
@@ -1540,7 +1549,7 @@ class _ {
1540
1549
  * Must be between 0 and 255.
1541
1550
  */
1542
1551
  constructor(e) {
1543
- e !== void 0 ? (this._method = y.ByAlpha, this._alpha = _.clampAlpha(e)) : (this._method = y.ByLayer, this._alpha = 255);
1552
+ e !== void 0 ? (this._method = y.ByAlpha, this._alpha = B.clampAlpha(e)) : (this._method = y.ByLayer, this._alpha = 255);
1544
1553
  }
1545
1554
  /** Gets the current transparency method */
1546
1555
  get method() {
@@ -1568,7 +1577,7 @@ class _ {
1568
1577
  * @param alpha 0–255 alpha, clamped internally if out of range
1569
1578
  */
1570
1579
  set alpha(e) {
1571
- this._alpha = _.clampAlpha(e), this._method = y.ByAlpha;
1580
+ this._alpha = B.clampAlpha(e), this._method = y.ByAlpha;
1572
1581
  }
1573
1582
  /**
1574
1583
  * Gets the AutoCAD-style transparency percentage.
@@ -1683,7 +1692,7 @@ class _ {
1683
1692
  * @returns A new `AcCmTransparency` instance with identical state.
1684
1693
  */
1685
1694
  clone() {
1686
- const e = new _();
1695
+ const e = new B();
1687
1696
  return e._method = this._method, e._alpha = this._alpha, e;
1688
1697
  }
1689
1698
  /**
@@ -1749,17 +1758,17 @@ class _ {
1749
1758
  static fromString(e) {
1750
1759
  const t = e.trim();
1751
1760
  if (/^bylayer$/i.test(t)) {
1752
- const n = new _();
1761
+ const n = new B();
1753
1762
  return n._method = y.ByLayer, n;
1754
1763
  }
1755
1764
  if (/^byblock$/i.test(t)) {
1756
- const n = new _();
1765
+ const n = new B();
1757
1766
  return n._method = y.ByBlock, n;
1758
1767
  }
1759
1768
  const s = Number(t);
1760
1769
  if (Number.isInteger(s) && s >= 0 && s <= 255)
1761
- return new _(s);
1762
- const o = new _();
1770
+ return new B(s);
1771
+ const o = new B();
1763
1772
  return o._method = y.ErrorValue, o;
1764
1773
  }
1765
1774
  /**
@@ -1768,8 +1777,8 @@ class _ {
1768
1777
  * @param value 32-bit stored transparency representation
1769
1778
  */
1770
1779
  static deserialize(e) {
1771
- const t = e >>> 24 & 255, s = e & 255, o = Object.values(y)[t] ?? y.ErrorValue, n = new _();
1772
- return n._method = o, n._alpha = _.clampAlpha(s), n;
1780
+ const t = e >>> 24 & 255, s = e & 255, o = Object.values(y)[t] ?? y.ErrorValue, n = new B();
1781
+ return n._method = o, n._alpha = B.clampAlpha(s), n;
1773
1782
  }
1774
1783
  }
1775
1784
  class ue {
@@ -2022,26 +2031,26 @@ class de {
2022
2031
  }
2023
2032
  }
2024
2033
  export {
2025
- B as AcCmColor,
2034
+ _ as AcCmColor,
2026
2035
  i as AcCmColorMethod,
2027
2036
  w as AcCmColorUtil,
2028
2037
  oe as AcCmEntityColor,
2029
2038
  ne as AcCmErrors,
2030
2039
  ie as AcCmEventDispatcher,
2031
- F as AcCmEventManager,
2040
+ U as AcCmEventManager,
2032
2041
  de as AcCmLoader,
2033
2042
  re as AcCmLoadingManager,
2034
2043
  V as AcCmObject,
2035
2044
  M as AcCmPerformanceCollector,
2036
2045
  ue as AcCmTask,
2037
2046
  ce as AcCmTaskScheduler,
2038
- _ as AcCmTransparency,
2047
+ B as AcCmTransparency,
2039
2048
  y as AcCmTransparencyMethod,
2040
2049
  he as AcTrStringUtil,
2041
2050
  le as DEBUG_MODE,
2042
2051
  se as DefaultLoadingManager,
2043
2052
  C as clone,
2044
- $ as deepClone,
2053
+ F as deepClone,
2045
2054
  Y as defaults,
2046
2055
  Z as has,
2047
2056
  J as isEmpty,
@@ -1 +1 @@
1
- (function(h,C){typeof exports=="object"&&typeof module<"u"?C(exports):typeof define=="function"&&define.amd?define(["exports"],C):(h=typeof globalThis<"u"?globalThis:h||self,C(h.common={}))})(this,function(h){"use strict";function C(r,e){for(var t=0;t<e.length;t++){const o=e[t];if(typeof o!="string"&&!Array.isArray(o)){for(const n in o)if(n!=="default"&&!(n in r)){const i=Object.getOwnPropertyDescriptor(o,n);i&&Object.defineProperty(r,n,i.get?i:{enumerable:!0,get:()=>o[n]})}}}return Object.freeze(Object.defineProperty(r,Symbol.toStringTag,{value:"Module"}))}var s=(r=>(r[r.ByColor=1]="ByColor",r[r.ByACI=2]="ByACI",r[r.ByLayer=3]="ByLayer",r[r.ByBlock=4]="ByBlock",r[r.None=0]="None",r))(s||{});const D={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},S=[0,16711680,16776960,65280,65535,255,16711935,16777215,8421504,12632256,16711680,16744319,13369344,13395558,10027008,10046540,8323072,8339263,4980736,4990502,16727808,16752511,13382400,13401958,10036736,10051404,8331008,8343359,4985600,4992806,16744192,16760703,13395456,13408614,10046464,10056268,8339200,8347455,4990464,4995366,16760576,16768895,13408512,13415014,10056192,10061132,8347392,8351551,4995328,4997670,16776960,16777087,13421568,13421670,10000384,10000460,8355584,8355647,5000192,5000230,12582656,14679935,10079232,11717734,7510016,8755276,6258432,7307071,3755008,4344870,8388352,12582783,6736896,10079334,5019648,7510092,4161280,6258495,2509824,3755046,4194048,10485631,3394560,8375398,2529280,6264908,2064128,5209919,1264640,3099686,65280,8388479,52224,6736998,38912,5019724,32512,4161343,19456,2509862,65343,8388511,52275,6737023,38950,5019743,32543,4161359,19475,2509871,65407,8388543,52326,6737049,38988,5019762,32575,4161375,19494,2509881,65471,8388575,52377,6737074,39026,5019781,32607,4161391,19513,2509890,65535,8388607,52428,6737100,39064,5019800,32639,4161407,19532,2509900,49151,8380415,39372,6730444,29336,5014936,24447,4157311,14668,2507340,32767,8372223,26316,6724044,19608,5010072,16255,4153215,9804,2505036,16383,8364031,13260,6717388,9880,5005208,8063,4149119,4940,2502476,255,8355839,204,6710988,152,5000344,127,4145023,76,2500172,4129023,10452991,3342540,8349388,2490520,6245528,2031743,5193599,1245260,3089996,8323327,12550143,6684876,10053324,4980888,7490712,4128895,6242175,2490444,3745356,12517631,14647295,10027212,11691724,7471256,8735896,6226047,7290751,3735628,4335180,16711935,16744447,13369548,13395660,9961624,9981080,8323199,8339327,4980812,4990540,16711871,16744415,13369497,13395634,9961586,9981061,8323167,8339311,4980793,4990530,16711807,16744383,13369446,13395609,9961548,9981042,8323135,8339295,4980774,4990521,16711743,16744351,13369395,13395583,9961510,9981023,8323103,8339279,4980755,4990511,3355443,5987163,8684676,11382189,14079702,16777215,0];class b{static getColorByIndex(e){return S[e]}static getIndexByColor(e){const t=S.length-1;for(let o=1;o<t;++o)if(S[o]===e)return o}static getColorByName(e){return D[e.toLowerCase()]}static getNameByColor(e){for(const[t,o]of Object.entries(D))if(o===e)return t}static getNameByIndex(e){const t=this.getColorByIndex(e);return this.getNameByColor(t)}}class _{constructor(e=s.ByLayer,t){this._colorMethod=e,this._colorMethod==s.ByColor&&t==null?this._value=16777215:this._colorMethod==s.ByACI?t==null?this._value=8:t===0?this._colorMethod=s.ByBlock:t===256?this._colorMethod=s.ByLayer:this._value=Math.max(0,Math.min(t,256)):this._value=t}get colorMethod(){return this._colorMethod}set colorMethod(e){this._colorMethod=e}get red(){const e=this.RGB;return e!=null?e>>16&255:void 0}get green(){const e=this.RGB;return e!=null?e>>8&255:void 0}get blue(){const e=this.RGB;return e!=null?e&255:void 0}get RGB(){switch(this._colorMethod){case s.ByColor:case s.ByBlock:case s.ByLayer:return this._value;case s.ByACI:return this._value?b.getColorByIndex(this._value):this._value;default:return}}setRGB(e,t,o){const n=Math.max(0,Math.min(255,Math.round(e))),i=Math.max(0,Math.min(255,Math.round(t))),l=Math.max(0,Math.min(255,Math.round(o)));return this._value=n<<16|i<<8|l,this._colorMethod=s.ByColor,this}setRGBValue(e){return e==null||!Number.isFinite(e)?(console.warn("Invalid RGB value:",e),this):(this._value=e&16777215,this._colorMethod=s.ByColor,this)}setRGBFromCss(e){if(!e)return this;const t=e.trim().toLowerCase();if(t.startsWith("#")){let i=0,l=0,d=0;if(t.length===7)i=parseInt(t.substr(1,2),16),l=parseInt(t.substr(3,2),16),d=parseInt(t.substr(5,2),16);else if(t.length===4)i=parseInt(t[1]+t[1],16),l=parseInt(t[2]+t[2],16),d=parseInt(t[3]+t[3],16);else return console.warn("Invalid hex color:",e),this;return this.setRGB(i,l,d)}const o=t.match(/^rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);if(o){const i=parseInt(o[1],10),l=parseInt(o[2],10),d=parseInt(o[3],10);return this.setRGB(i,l,d)}const n=b.getColorByName(e);return n!==void 0?this.setRGBValue(n):(console.warn("Unknown CSS color string:",e),this)}setScalar(e){return this.setRGB(e,e,e)}get hexColor(){const e=this.RGB;return e==null?void 0:"0x"+e.toString(16).padStart(6,"0").toUpperCase()}get cssColor(){const e=this.RGB;if(e!=null)return`rgb(${e>>16&255},${e>>8&255},${e&255})`}get colorIndex(){return this._colorMethod===s.ByACI?this._value:this._colorMethod===s.ByLayer?256:this._colorMethod===s.ByBlock?0:void 0}set colorIndex(e){if(e==null)return;const t=Math.max(0,Math.min(256,Math.round(e)));t===0?(this._colorMethod=s.ByBlock,this._value=void 0):t===256?(this._colorMethod=s.ByLayer,this._value=void 0):(this._colorMethod=s.ByACI,this._value=t)}get isByColor(){return this._colorMethod===s.ByColor}get isByACI(){return this._colorMethod===s.ByACI}get isForeground(){return this._colorMethod===s.ByACI&&this._value===7}setForeground(){return this._colorMethod=s.ByACI,this._value=7,this}get isByLayer(){return this._colorMethod===s.ByLayer}setByLayer(e){return this._colorMethod=s.ByLayer,e==null?this._value=256:this._value=e,this}get isByBlock(){return this._colorMethod===s.ByBlock}setByBlock(e){return this._colorMethod=s.ByBlock,e==null?this._value=0:this._value=e,this}get colorName(){switch(this._colorMethod){case s.ByLayer:return"ByLayer";case s.ByBlock:return"ByBlock";case s.ByColor:return this._value?b.getNameByColor(this._value):"";case s.ByACI:return this._value?b.getNameByIndex(this._value):"";default:return}}set colorName(e){if(!e)return;const t=b.getColorByName(e);t!==void 0?(this._value=t,this._colorMethod=s.ByColor):console.warn("Unknown color name:",e)}clone(){const e=new _;return e._colorMethod=this._colorMethod,e._value=this._value,e}copy(e){return this._colorMethod=e._colorMethod,this._value=e._value,this}equals(e){return this._colorMethod===e._colorMethod&&this._value===e._value}toString(){switch(this._colorMethod){case s.ByLayer:return"ByLayer";case s.ByBlock:return"ByBlock";case s.ByACI:return this._value!==void 0?String(this._value):"";case s.ByColor:return this._value?`${this.red},${this.green},${this.blue}`:"";default:return""}}static fromString(e){if(!e)return;const t=e.trim();if(/^bylayer$/i.test(t))return new _(s.ByLayer);if(/^byblock$/i.test(t))return new _(s.ByBlock);const o=t.match(/^rgb\s*:\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})$/i);if(o){const i=Number(o[1]),l=Number(o[2]),d=Number(o[3]),B=new _(s.ByColor);return B.setRGB(i,l,d),B}if(/^\d{1,3},\d{1,3},\d{1,3}$/.test(t)){const[i,l,d]=t.split(",").map(Number),B=new _(s.ByColor);return B.setRGB(i,l,d),B}if(/^\d+$/.test(t)){const i=parseInt(t,10);return new _(s.ByACI,i)}if(/^book\$/i.test(t)){const i=t.substring(t.indexOf("$")+1),l=b.getColorByName(i);if(l!=null)return new _(s.ByColor,l);console.warn("Unknown color book entry:",e);return}const n=b.getColorByName(t);if(n!=null)return new _(s.ByColor,n);console.warn("Unknown color name:",e)}}class J{constructor(e=s.ByColor,t=0){this._colorMethod=e,this._value=t}get colorMethd(){return this._colorMethod}get red(){return this._value>>16&255}set red(e){this._colorMethod=s.ByColor,this._value=this._value&65535|(e&255)<<16}get green(){return this._value>>8&255}set green(e){this._colorMethod=s.ByColor,this._value=this._value&16711935|(e&255)<<8}get blue(){return this._value&255}set blue(e){this._colorMethod=s.ByColor,this._value=this._value&16776960|e&255}setRGB(e,t,o){this._colorMethod=s.ByColor,this._value=(e&255)<<16|(t&255)<<8|o&255}get colorIndex(){return this._value}set colorIndex(e){this._colorMethod=s.ByACI,this._value=e}get layerIndex(){return this._value}set layerIndex(e){this._colorMethod=s.ByLayer,this._value=e}isByColor(){return this._colorMethod===s.ByColor}isByLayer(){return this._colorMethod===s.ByLayer}isByBlock(){return this._colorMethod===s.ByBlock}isByACI(){return this._colorMethod===s.ByACI}isNone(){return this._colorMethod===s.None}get rawValue(){return this._value}set rawValue(e){this._value=e}}const X={get ILLEGAL_PARAMETERS(){return new ReferenceError("Illegal Parameters")},get ZERO_DIVISION(){return new Error("Zero division")},get UNRESOLVED_BOUNDARY_CONFLICT(){return new Error("Unresolved boundary conflict in boolean operation")},get INFINITE_LOOP(){return new Error("Infinite loop")},get CANNOT_INVOKE_ABSTRACT_METHOD(){return new Error("Abstract method cannot be invoked")},get OPERATION_IS_NOT_SUPPORTED(){return new Error("Operation is not supported")},get NOT_IMPLEMENTED(){return new Error("Not implemented yet")}};class Q{constructor(){this._listeners={}}addEventListener(e,t){this._listeners===void 0&&(this._listeners={});const o=this._listeners;o[e]===void 0&&(o[e]=[]),o[e].indexOf(t)===-1&&o[e].push(t)}hasEventListener(e,t){if(this._listeners===void 0)return!1;const o=this._listeners;return o[e]!==void 0&&o[e].indexOf(t)!==-1}removeEventListener(e,t){if(this._listeners===void 0)return;const n=this._listeners[e];if(n!==void 0){const i=n.indexOf(t);i!==-1&&n.splice(i,1)}}dispatchEvent(e){if(this._listeners===void 0)return;const o=this._listeners[e.type];if(o!==void 0){e.target=this;const n=o.slice(0);for(let i=0,l=n.length;i<l;i++)n[i].call(this,e)}}}class T{constructor(){this.listeners=[]}addEventListener(e){this.listeners.push(e)}removeEventListener(e){this.listeners=this.listeners.filter(t=>t!==e)}replaceEventListener(e){this.removeEventListener(e),this.addEventListener(e)}dispatch(e,...t){for(const o of this.listeners)o.call(null,e,...t)}}function I(r){return r===null||typeof r!="object"?r:Array.isArray(r)?[...r]:{...r}}function P(r){if(r===null||typeof r!="object")return r;if(r instanceof Date)return new Date(r.getTime());if(r instanceof RegExp)return new RegExp(r.source,r.flags);if(Array.isArray(r))return r.map(P);const e={};for(const t in r)Object.prototype.hasOwnProperty.call(r,t)&&(e[t]=P(r[t]));return e}function F(r,...e){for(const t of e)if(t)for(const o in t)Object.prototype.hasOwnProperty.call(t,o)&&r[o]===void 0&&(r[o]=t[o]);return r}function $(r,e){return r!=null&&Object.prototype.hasOwnProperty.call(r,e)}function j(r){return r==null?!0:Array.isArray(r)||typeof r=="string"?r.length===0:r instanceof Map||r instanceof Set?r.size===0:typeof r=="object"?Object.keys(r).length===0:!1}function L(r,e){if(r===e)return!0;if(r==null||e==null)return r===e;if(typeof r!=typeof e)return!1;if(typeof r!="object")return r===e;if(Array.isArray(r)!==Array.isArray(e))return!1;if(Array.isArray(r)){if(r.length!==e.length)return!1;for(let n=0;n<r.length;n++)if(!L(r[n],e[n]))return!1;return!0}const t=Object.keys(r),o=Object.keys(e);if(t.length!==o.length)return!1;for(const n of t)if(!Object.prototype.hasOwnProperty.call(e,n)||!L(r[n],e[n]))return!1;return!0}var ee=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function te(r){return r&&r.__esModule&&Object.prototype.hasOwnProperty.call(r,"default")?r.default:r}var q={exports:{}};(function(r){(function(e,t){r.exports?r.exports=t():e.log=t()})(ee,function(){var e=function(){},t="undefined",o=typeof window!==t&&typeof window.navigator!==t&&/Trident\/|MSIE /.test(window.navigator.userAgent),n=["trace","debug","info","warn","error"],i={},l=null;function d(u,g){var a=u[g];if(typeof a.bind=="function")return a.bind(u);try{return Function.prototype.bind.call(a,u)}catch{return function(){return Function.prototype.apply.apply(a,[u,arguments])}}}function B(){console.log&&(console.log.apply?console.log.apply(console,arguments):Function.prototype.apply.apply(console.log,[console,arguments])),console.trace&&console.trace()}function k(u){return u==="debug"&&(u="log"),typeof console===t?!1:u==="trace"&&o?B:console[u]!==void 0?d(console,u):console.log!==void 0?d(console,"log"):e}function w(){for(var u=this.getLevel(),g=0;g<n.length;g++){var a=n[g];this[a]=g<u?e:this.methodFactory(a,u,this.name)}if(this.log=this.debug,typeof console===t&&u<this.levels.SILENT)return"No console available for logging"}function x(u){return function(){typeof console!==t&&(w.call(this),this[u].apply(this,arguments))}}function p(u,g,a){return k(u)||x.apply(this,arguments)}function K(u,g){var a=this,N,G,E,m="loglevel";typeof u=="string"?m+=":"+u:typeof u=="symbol"&&(m=void 0);function ue(c){var f=(n[c]||"silent").toUpperCase();if(!(typeof window===t||!m)){try{window.localStorage[m]=f;return}catch{}try{window.document.cookie=encodeURIComponent(m)+"="+f+";"}catch{}}}function W(){var c;if(!(typeof window===t||!m)){try{c=window.localStorage[m]}catch{}if(typeof c===t)try{var f=window.document.cookie,R=encodeURIComponent(m),Z=f.indexOf(R+"=");Z!==-1&&(c=/^([^;]+)/.exec(f.slice(Z+R.length+1))[1])}catch{}return a.levels[c]===void 0&&(c=void 0),c}}function ce(){if(!(typeof window===t||!m)){try{window.localStorage.removeItem(m)}catch{}try{window.document.cookie=encodeURIComponent(m)+"=; expires=Thu, 01 Jan 1970 00:00:00 UTC"}catch{}}}function O(c){var f=c;if(typeof f=="string"&&a.levels[f.toUpperCase()]!==void 0&&(f=a.levels[f.toUpperCase()]),typeof f=="number"&&f>=0&&f<=a.levels.SILENT)return f;throw new TypeError("log.setLevel() called with invalid level: "+c)}a.name=u,a.levels={TRACE:0,DEBUG:1,INFO:2,WARN:3,ERROR:4,SILENT:5},a.methodFactory=g||p,a.getLevel=function(){return E??G??N},a.setLevel=function(c,f){return E=O(c),f!==!1&&ue(E),w.call(a)},a.setDefaultLevel=function(c){G=O(c),W()||a.setLevel(c,!1)},a.resetLevel=function(){E=null,ce(),w.call(a)},a.enableAll=function(c){a.setLevel(a.levels.TRACE,c)},a.disableAll=function(c){a.setLevel(a.levels.SILENT,c)},a.rebuild=function(){if(l!==a&&(N=O(l.getLevel())),w.call(a),l===a)for(var c in i)i[c].rebuild()},N=O(l?l.getLevel():"WARN");var Y=W();Y!=null&&(E=O(Y)),w.call(a)}l=new K,l.getLogger=function(g){if(typeof g!="symbol"&&typeof g!="string"||g==="")throw new TypeError("You must supply a name when creating a logger.");var a=i[g];return a||(a=i[g]=new K(g,l.methodFactory)),a};var he=typeof window!==t?window.log:void 0;return l.noConflict=function(){return typeof window!==t&&window.log===l&&(window.log=he),l},l.getLoggers=function(){return i},l.default=l,l})})(q);var V=q.exports;const re=C({__proto__:null,default:te(V)},[V]),oe=!0,A=re;A.setLevel("debug");const ne=r=>{try{A.setLevel(r)}catch(e){A.setLevel("error"),A.error(e)}};class U{constructor(e,t){this.events={attrChanged:new T,modelChanged:new T},this._changing=!1,this._previousAttributes={},this._pending=!1;const o=e||{};t&&F(o,t),this.attributes=o,this.changed={}}get(e){return this.attributes[e]}set(e,t,o){if(e==null)return this;let n;typeof e=="object"?(n=e,o=t):(n={},n[e]=t),o||(o={});const i=o.unset,l=o.silent,d=[],B=this._changing;this._changing=!0,B||(this._previousAttributes=I(this.attributes),this.changed={});const k=this.attributes,w=this.changed,x=this._previousAttributes;for(const p in n)t=n[p],L(k[p],t)||d.push(p),L(x[p],t)?delete w[p]:w[p]=t,i?delete k[p]:k[p]=t;if(!l){d.length&&(this._pending=o);for(let p=0;p<d.length;p++)this.events.attrChanged.dispatch({object:this,attrName:d[p],attrValue:k[d[p]],options:o})}if(B)return this;if(!l)for(;this._pending;)o=this._pending,this._pending=!1,this.events.modelChanged.dispatch({object:this,options:o});return this._pending=!1,this._changing=!1,this}has(e){return this.get(e)!=null}hasChanged(e){return e==null?!j(this.changed):$(this.changed,e)}changedAttributes(e){if(!e)return this.hasChanged()?I(this.changed):{};const t=this._changing?this._previousAttributes:this.attributes,o={};for(const n in e){const i=e[n];L(t[n],i)||(o[n]=i)}return o}previous(e){return e==null||!this._previousAttributes?null:this._previousAttributes[e]}previousAttributes(){return I(this._previousAttributes)}clone(){const e=I(this.attributes);return new U(e)}}class M{constructor(){this.entries=new Map}static getInstance(){return M.instance||(M.instance=new M),M.instance}collect(e){this.entries.set(e.name,e)}printAll(){for(const[e,t]of this.entries)console.log(`${e}:`),console.log(t.format())}clear(){this.entries.clear()}getAll(){return Array.from(this.entries.values())}getEntry(e){return this.entries.get(e)}remove(e){return this.entries.delete(e)}}class se{static formatBytes(e,t=2){if(e===0)return"0 B";const o=1024,n=Math.max(0,t),i=["B","KB","MB","GB","TB"],l=Math.floor(Math.log(e)/Math.log(o)),d=e/Math.pow(o,l);return`${parseFloat(d.toFixed(n))} ${i[l]}`}}var y=(r=>(r[r.ByLayer=0]="ByLayer",r[r.ByBlock=1]="ByBlock",r[r.ByAlpha=2]="ByAlpha",r[r.ErrorValue=3]="ErrorValue",r))(y||{});class v{constructor(e){e!==void 0?(this._method=y.ByAlpha,this._alpha=v.clampAlpha(e)):(this._method=y.ByLayer,this._alpha=255)}get method(){return this._method}set method(e){this._method=e}get alpha(){return this._alpha}set alpha(e){this._alpha=v.clampAlpha(e),this._method=y.ByAlpha}get percentage(){if(this._method===y.ByAlpha)return Math.round((1-this._alpha/255)*100)}set percentage(e){const t=Math.max(0,Math.min(100,e)),o=Math.round(255*(1-t/100));this.alpha=o}static clampAlpha(e){return Math.max(0,Math.min(255,Math.floor(e)))}get isByAlpha(){return this._method===y.ByAlpha}get isByBlock(){return this._method===y.ByBlock}get isByLayer(){return this._method===y.ByLayer}get isClear(){return this.isByAlpha&&this._alpha===0}get isSolid(){return this.isByAlpha&&this._alpha===255}get isInvalid(){return this._method===y.ErrorValue}serialize(){return this._method<<24|this._alpha}clone(){const e=new v;return e._method=this._method,e._alpha=this._alpha,e}equals(e){return this._method===e._method&&this._alpha===e._alpha}toString(){return this.isByLayer?"ByLayer":this.isByBlock?"ByBlock":this._alpha.toString()}static fromString(e){const t=e.trim();if(/^bylayer$/i.test(t)){const i=new v;return i._method=y.ByLayer,i}if(/^byblock$/i.test(t)){const i=new v;return i._method=y.ByBlock,i}const o=Number(t);if(Number.isInteger(o)&&o>=0&&o<=255)return new v(o);const n=new v;return n._method=y.ErrorValue,n}static deserialize(e){const t=e>>>24&255,o=e&255,n=Object.values(y)[t]??y.ErrorValue,i=new v;return i._method=n,i._alpha=v.clampAlpha(o),i}}class ie{constructor(e){this.name=e}run(e){throw new Error("run() must be implemented by subclass")}}class le{constructor(){this.tasks=[],this.onProgress=()=>{},this.onComplete=()=>{},this.onError=()=>!1}scheduleTask(e){return new Promise((t,o)=>{const n=()=>{Promise.resolve(e()).then(t).catch(o)};typeof window<"u"&&typeof window.requestAnimationFrame=="function"?window.requestAnimationFrame(n):setTimeout(n,0)})}addTask(e){this.tasks.push(e)}setProgressCallback(e){this.onProgress=e}setCompleteCallback(e){this.onComplete=e}setErrorCallback(e){this.onError=e}async run(e){const t=this.tasks.length;let o=e;for(let n=0;n<t;n++){const i=this.tasks[n];try{o=await this.scheduleTask(async()=>{const l=await i.run(o);return this.onProgress((n+1)/t,i),l})}catch(l){if(this.onError({error:l,taskIndex:n,task:i}))return Promise.reject(l)}}this.onComplete(o)}}class z{constructor(e,t,o){this.isLoading=!1,this.itemsLoaded=0,this.itemsTotal=0,this.urlModifier=void 0,this.handlers=[],this.onStart=void 0,this.onLoad=e,this.onProgress=t,this.onError=o}itemStart(e){this.itemsTotal++,this.isLoading===!1&&this.onStart!==void 0&&this.onStart(e,this.itemsLoaded,this.itemsTotal),this.isLoading=!0}itemEnd(e){this.itemsLoaded++,this.onProgress!==void 0&&this.onProgress(e,this.itemsLoaded,this.itemsTotal),this.itemsLoaded===this.itemsTotal&&(this.isLoading=!1,this.onLoad!==void 0&&this.onLoad())}itemError(e){this.onError!==void 0&&this.onError(e)}resolveURL(e){return this.urlModifier?this.urlModifier(e):e}setURLModifier(e){return this.urlModifier=e,this}addHandler(e,t){return this.handlers.push(e,t),this}removeHandler(e){const t=this.handlers.indexOf(e);return t!==-1&&this.handlers.splice(t,2),this}getHandler(e){for(let t=0,o=this.handlers.length;t<o;t+=2){const n=this.handlers[t],i=this.handlers[t+1];if(n.global&&(n.lastIndex=0),n.test(e))return i}return null}}const H=new z;class ae{constructor(e){this.manager=e!==void 0?e:H,this.crossOrigin="anonymous",this.withCredentials=!1,this.path="",this.resourcePath="",this.requestHeader={}}loadAsync(e,t){return new Promise((o,n)=>{this.load(e,o,t,n)})}parse(e){}setCrossOrigin(e){return this.crossOrigin=e,this}setWithCredentials(e){return this.withCredentials=e,this}setPath(e){return this.path=e,this}setResourcePath(e){return this.resourcePath=e,this}setRequestHeader(e){return this.requestHeader=e,this}}h.AcCmColor=_,h.AcCmColorMethod=s,h.AcCmColorUtil=b,h.AcCmEntityColor=J,h.AcCmErrors=X,h.AcCmEventDispatcher=Q,h.AcCmEventManager=T,h.AcCmLoader=ae,h.AcCmLoadingManager=z,h.AcCmObject=U,h.AcCmPerformanceCollector=M,h.AcCmTask=ie,h.AcCmTaskScheduler=le,h.AcCmTransparency=v,h.AcCmTransparencyMethod=y,h.AcTrStringUtil=se,h.DEBUG_MODE=oe,h.DefaultLoadingManager=H,h.clone=I,h.deepClone=P,h.defaults=F,h.has=$,h.isEmpty=j,h.isEqual=L,h.log=A,h.setLogLevel=ne,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})});
1
+ (function(h,C){typeof exports=="object"&&typeof module<"u"?C(exports):typeof define=="function"&&define.amd?define(["exports"],C):(h=typeof globalThis<"u"?globalThis:h||self,C(h.common={}))})(this,function(h){"use strict";function C(r,e){for(var t=0;t<e.length;t++){const o=e[t];if(typeof o!="string"&&!Array.isArray(o)){for(const n in o)if(n!=="default"&&!(n in r)){const i=Object.getOwnPropertyDescriptor(o,n);i&&Object.defineProperty(r,n,i.get?i:{enumerable:!0,get:()=>o[n]})}}}return Object.freeze(Object.defineProperty(r,Symbol.toStringTag,{value:"Module"}))}var s=(r=>(r[r.ByColor=1]="ByColor",r[r.ByACI=2]="ByACI",r[r.ByLayer=3]="ByLayer",r[r.ByBlock=4]="ByBlock",r[r.None=0]="None",r))(s||{});const $={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},S=[0,16711680,16776960,65280,65535,255,16711935,16777215,8421504,12632256,16711680,16744319,13369344,13395558,10027008,10046540,8323072,8339263,4980736,4990502,16727808,16752511,13382400,13401958,10036736,10051404,8331008,8343359,4985600,4992806,16744192,16760703,13395456,13408614,10046464,10056268,8339200,8347455,4990464,4995366,16760576,16768895,13408512,13415014,10056192,10061132,8347392,8351551,4995328,4997670,16776960,16777087,13421568,13421670,10000384,10000460,8355584,8355647,5000192,5000230,12582656,14679935,10079232,11717734,7510016,8755276,6258432,7307071,3755008,4344870,8388352,12582783,6736896,10079334,5019648,7510092,4161280,6258495,2509824,3755046,4194048,10485631,3394560,8375398,2529280,6264908,2064128,5209919,1264640,3099686,65280,8388479,52224,6736998,38912,5019724,32512,4161343,19456,2509862,65343,8388511,52275,6737023,38950,5019743,32543,4161359,19475,2509871,65407,8388543,52326,6737049,38988,5019762,32575,4161375,19494,2509881,65471,8388575,52377,6737074,39026,5019781,32607,4161391,19513,2509890,65535,8388607,52428,6737100,39064,5019800,32639,4161407,19532,2509900,49151,8380415,39372,6730444,29336,5014936,24447,4157311,14668,2507340,32767,8372223,26316,6724044,19608,5010072,16255,4153215,9804,2505036,16383,8364031,13260,6717388,9880,5005208,8063,4149119,4940,2502476,255,8355839,204,6710988,152,5000344,127,4145023,76,2500172,4129023,10452991,3342540,8349388,2490520,6245528,2031743,5193599,1245260,3089996,8323327,12550143,6684876,10053324,4980888,7490712,4128895,6242175,2490444,3745356,12517631,14647295,10027212,11691724,7471256,8735896,6226047,7290751,3735628,4335180,16711935,16744447,13369548,13395660,9961624,9981080,8323199,8339327,4980812,4990540,16711871,16744415,13369497,13395634,9961586,9981061,8323167,8339311,4980793,4990530,16711807,16744383,13369446,13395609,9961548,9981042,8323135,8339295,4980774,4990521,16711743,16744351,13369395,13395583,9961510,9981023,8323103,8339279,4980755,4990511,3355443,5987163,8684676,11382189,14079702,16777215,0];class b{static getColorByIndex(e){return S[e]}static getIndexByColor(e){const t=S.length-1;for(let o=1;o<t;++o)if(S[o]===e)return o}static getColorByName(e){return $[e.toLowerCase()]}static getNameByColor(e){for(const[t,o]of Object.entries($))if(o===e)return t}static getNameByIndex(e){const t=this.getColorByIndex(e);return this.getNameByColor(t)}}class B{constructor(e=s.ByLayer,t){this._colorMethod=e,this._colorMethod==s.ByColor&&t==null?this._value=16777215:this._colorMethod==s.ByACI?t==null?this._value=8:t===0?this._colorMethod=s.ByBlock:t===256?this._colorMethod=s.ByLayer:this._value=Math.max(0,Math.min(t,256)):this._value=t}get colorMethod(){return this._colorMethod}set colorMethod(e){this._colorMethod=e}get red(){const e=this.RGB;return e!=null?e>>16&255:void 0}get green(){const e=this.RGB;return e!=null?e>>8&255:void 0}get blue(){const e=this.RGB;return e!=null?e&255:void 0}get RGB(){switch(this._colorMethod){case s.ByColor:case s.ByBlock:case s.ByLayer:return this._value;case s.ByACI:return this._value?b.getColorByIndex(this._value):this._value;default:return}}setRGB(e,t,o){const n=Math.max(0,Math.min(255,Math.round(e))),i=Math.max(0,Math.min(255,Math.round(t))),l=Math.max(0,Math.min(255,Math.round(o)));return this._value=n<<16|i<<8|l,this._colorMethod=s.ByColor,this}setRGBValue(e){return e==null||!Number.isFinite(e)?(console.warn("Invalid RGB value:",e),this):(this._value=e&16777215,this._colorMethod=s.ByColor,this)}setRGBFromCss(e){if(!e)return this;const t=e.trim().toLowerCase();if(t.startsWith("#")){let i=0,l=0,d=0;if(t.length===7)i=parseInt(t.substr(1,2),16),l=parseInt(t.substr(3,2),16),d=parseInt(t.substr(5,2),16);else if(t.length===4)i=parseInt(t[1]+t[1],16),l=parseInt(t[2]+t[2],16),d=parseInt(t[3]+t[3],16);else return console.warn("Invalid hex color:",e),this;return this.setRGB(i,l,d)}const o=t.match(/^rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);if(o){const i=parseInt(o[1],10),l=parseInt(o[2],10),d=parseInt(o[3],10);return this.setRGB(i,l,d)}const n=b.getColorByName(e);return n!==void 0?this.setRGBValue(n):(console.warn("Unknown CSS color string:",e),this)}setScalar(e){return this.setRGB(e,e,e)}get hexColor(){const e=this.RGB;return e==null?void 0:"0x"+e.toString(16).padStart(6,"0").toUpperCase()}get cssColor(){const e=this.RGB;if(e!=null)return`rgb(${e>>16&255},${e>>8&255},${e&255})`}cssColorAlpha(e){const t=this.RGB;if(t!=null)return`rgba(${t>>16&255},${t>>8&255},${t&255},${e})`}get colorIndex(){return this._colorMethod===s.ByACI?this._value:this._colorMethod===s.ByLayer?256:this._colorMethod===s.ByBlock?0:void 0}set colorIndex(e){if(e==null)return;const t=Math.max(0,Math.min(256,Math.round(e)));t===0?(this._colorMethod=s.ByBlock,this._value=void 0):t===256?(this._colorMethod=s.ByLayer,this._value=void 0):(this._colorMethod=s.ByACI,this._value=t)}get isByColor(){return this._colorMethod===s.ByColor}get isByACI(){return this._colorMethod===s.ByACI}get isForeground(){return this._colorMethod===s.ByACI&&this._value===7}setForeground(){return this._colorMethod=s.ByACI,this._value=7,this}get isByLayer(){return this._colorMethod===s.ByLayer}setByLayer(e){return this._colorMethod=s.ByLayer,e==null?this._value=256:this._value=e,this}get isByBlock(){return this._colorMethod===s.ByBlock}setByBlock(e){return this._colorMethod=s.ByBlock,e==null?this._value=0:this._value=e,this}get colorName(){switch(this._colorMethod){case s.ByLayer:return"ByLayer";case s.ByBlock:return"ByBlock";case s.ByColor:return this._value?b.getNameByColor(this._value):"";case s.ByACI:return this._value?b.getNameByIndex(this._value):"";default:return}}set colorName(e){if(!e)return;const t=b.getColorByName(e);t!==void 0?(this._value=t,this._colorMethod=s.ByColor):console.warn("Unknown color name:",e)}clone(){const e=new B;return e._colorMethod=this._colorMethod,e._value=this._value,e}copy(e){return this._colorMethod=e._colorMethod,this._value=e._value,this}equals(e){return this._colorMethod===e._colorMethod&&this._value===e._value}toString(){switch(this._colorMethod){case s.ByLayer:return"ByLayer";case s.ByBlock:return"ByBlock";case s.ByACI:return this._value!==void 0?String(this._value):"";case s.ByColor:return this._value?`${this.red},${this.green},${this.blue}`:"";default:return""}}static fromString(e){if(!e)return;const t=e.trim();if(/^bylayer$/i.test(t))return new B(s.ByLayer);if(/^byblock$/i.test(t))return new B(s.ByBlock);const o=t.match(/^rgb\s*:\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})$/i);if(o){const i=Number(o[1]),l=Number(o[2]),d=Number(o[3]),_=new B(s.ByColor);return _.setRGB(i,l,d),_}if(/^\d{1,3},\d{1,3},\d{1,3}$/.test(t)){const[i,l,d]=t.split(",").map(Number),_=new B(s.ByColor);return _.setRGB(i,l,d),_}if(/^\d+$/.test(t)){const i=parseInt(t,10);return new B(s.ByACI,i)}if(/^book\$/i.test(t)){const i=t.substring(t.indexOf("$")+1),l=b.getColorByName(i);if(l!=null)return new B(s.ByColor,l);console.warn("Unknown color book entry:",e);return}const n=b.getColorByName(t);if(n!=null)return new B(s.ByColor,n);console.warn("Unknown color name:",e)}}class J{constructor(e=s.ByColor,t=0){this._colorMethod=e,this._value=t}get colorMethd(){return this._colorMethod}get red(){return this._value>>16&255}set red(e){this._colorMethod=s.ByColor,this._value=this._value&65535|(e&255)<<16}get green(){return this._value>>8&255}set green(e){this._colorMethod=s.ByColor,this._value=this._value&16711935|(e&255)<<8}get blue(){return this._value&255}set blue(e){this._colorMethod=s.ByColor,this._value=this._value&16776960|e&255}setRGB(e,t,o){this._colorMethod=s.ByColor,this._value=(e&255)<<16|(t&255)<<8|o&255}get colorIndex(){return this._value}set colorIndex(e){this._colorMethod=s.ByACI,this._value=e}get layerIndex(){return this._value}set layerIndex(e){this._colorMethod=s.ByLayer,this._value=e}isByColor(){return this._colorMethod===s.ByColor}isByLayer(){return this._colorMethod===s.ByLayer}isByBlock(){return this._colorMethod===s.ByBlock}isByACI(){return this._colorMethod===s.ByACI}isNone(){return this._colorMethod===s.None}get rawValue(){return this._value}set rawValue(e){this._value=e}}const X={get ILLEGAL_PARAMETERS(){return new ReferenceError("Illegal Parameters")},get ZERO_DIVISION(){return new Error("Zero division")},get UNRESOLVED_BOUNDARY_CONFLICT(){return new Error("Unresolved boundary conflict in boolean operation")},get INFINITE_LOOP(){return new Error("Infinite loop")},get CANNOT_INVOKE_ABSTRACT_METHOD(){return new Error("Abstract method cannot be invoked")},get OPERATION_IS_NOT_SUPPORTED(){return new Error("Operation is not supported")},get NOT_IMPLEMENTED(){return new Error("Not implemented yet")}};class Q{constructor(){this._listeners={}}addEventListener(e,t){this._listeners===void 0&&(this._listeners={});const o=this._listeners;o[e]===void 0&&(o[e]=[]),o[e].indexOf(t)===-1&&o[e].push(t)}hasEventListener(e,t){if(this._listeners===void 0)return!1;const o=this._listeners;return o[e]!==void 0&&o[e].indexOf(t)!==-1}removeEventListener(e,t){if(this._listeners===void 0)return;const n=this._listeners[e];if(n!==void 0){const i=n.indexOf(t);i!==-1&&n.splice(i,1)}}dispatchEvent(e){if(this._listeners===void 0)return;const o=this._listeners[e.type];if(o!==void 0){e.target=this;const n=o.slice(0);for(let i=0,l=n.length;i<l;i++)n[i].call(this,e)}}}class T{constructor(){this.listeners=[]}addEventListener(e){this.listeners.push(e)}removeEventListener(e){this.listeners=this.listeners.filter(t=>t!==e)}replaceEventListener(e){this.removeEventListener(e),this.addEventListener(e)}dispatch(e,...t){for(const o of this.listeners)o.call(null,e,...t)}}function I(r){return r===null||typeof r!="object"?r:Array.isArray(r)?[...r]:{...r}}function P(r){if(r===null||typeof r!="object")return r;if(r instanceof Date)return new Date(r.getTime());if(r instanceof RegExp)return new RegExp(r.source,r.flags);if(Array.isArray(r))return r.map(P);const e={};for(const t in r)Object.prototype.hasOwnProperty.call(r,t)&&(e[t]=P(r[t]));return e}function D(r,...e){for(const t of e)if(t)for(const o in t)Object.prototype.hasOwnProperty.call(t,o)&&r[o]===void 0&&(r[o]=t[o]);return r}function F(r,e){return r!=null&&Object.prototype.hasOwnProperty.call(r,e)}function j(r){return r==null?!0:Array.isArray(r)||typeof r=="string"?r.length===0:r instanceof Map||r instanceof Set?r.size===0:typeof r=="object"?Object.keys(r).length===0:!1}function L(r,e){if(r===e)return!0;if(r==null||e==null)return r===e;if(typeof r!=typeof e)return!1;if(typeof r!="object")return r===e;if(Array.isArray(r)!==Array.isArray(e))return!1;if(Array.isArray(r)){if(r.length!==e.length)return!1;for(let n=0;n<r.length;n++)if(!L(r[n],e[n]))return!1;return!0}const t=Object.keys(r),o=Object.keys(e);if(t.length!==o.length)return!1;for(const n of t)if(!Object.prototype.hasOwnProperty.call(e,n)||!L(r[n],e[n]))return!1;return!0}var ee=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function te(r){return r&&r.__esModule&&Object.prototype.hasOwnProperty.call(r,"default")?r.default:r}var q={exports:{}};(function(r){(function(e,t){r.exports?r.exports=t():e.log=t()})(ee,function(){var e=function(){},t="undefined",o=typeof window!==t&&typeof window.navigator!==t&&/Trident\/|MSIE /.test(window.navigator.userAgent),n=["trace","debug","info","warn","error"],i={},l=null;function d(u,g){var a=u[g];if(typeof a.bind=="function")return a.bind(u);try{return Function.prototype.bind.call(a,u)}catch{return function(){return Function.prototype.apply.apply(a,[u,arguments])}}}function _(){console.log&&(console.log.apply?console.log.apply(console,arguments):Function.prototype.apply.apply(console.log,[console,arguments])),console.trace&&console.trace()}function k(u){return u==="debug"&&(u="log"),typeof console===t?!1:u==="trace"&&o?_:console[u]!==void 0?d(console,u):console.log!==void 0?d(console,"log"):e}function w(){for(var u=this.getLevel(),g=0;g<n.length;g++){var a=n[g];this[a]=g<u?e:this.methodFactory(a,u,this.name)}if(this.log=this.debug,typeof console===t&&u<this.levels.SILENT)return"No console available for logging"}function x(u){return function(){typeof console!==t&&(w.call(this),this[u].apply(this,arguments))}}function p(u,g,a){return k(u)||x.apply(this,arguments)}function K(u,g){var a=this,N,G,E,m="loglevel";typeof u=="string"?m+=":"+u:typeof u=="symbol"&&(m=void 0);function ue(c){var f=(n[c]||"silent").toUpperCase();if(!(typeof window===t||!m)){try{window.localStorage[m]=f;return}catch{}try{window.document.cookie=encodeURIComponent(m)+"="+f+";"}catch{}}}function W(){var c;if(!(typeof window===t||!m)){try{c=window.localStorage[m]}catch{}if(typeof c===t)try{var f=window.document.cookie,R=encodeURIComponent(m),Z=f.indexOf(R+"=");Z!==-1&&(c=/^([^;]+)/.exec(f.slice(Z+R.length+1))[1])}catch{}return a.levels[c]===void 0&&(c=void 0),c}}function ce(){if(!(typeof window===t||!m)){try{window.localStorage.removeItem(m)}catch{}try{window.document.cookie=encodeURIComponent(m)+"=; expires=Thu, 01 Jan 1970 00:00:00 UTC"}catch{}}}function O(c){var f=c;if(typeof f=="string"&&a.levels[f.toUpperCase()]!==void 0&&(f=a.levels[f.toUpperCase()]),typeof f=="number"&&f>=0&&f<=a.levels.SILENT)return f;throw new TypeError("log.setLevel() called with invalid level: "+c)}a.name=u,a.levels={TRACE:0,DEBUG:1,INFO:2,WARN:3,ERROR:4,SILENT:5},a.methodFactory=g||p,a.getLevel=function(){return E??G??N},a.setLevel=function(c,f){return E=O(c),f!==!1&&ue(E),w.call(a)},a.setDefaultLevel=function(c){G=O(c),W()||a.setLevel(c,!1)},a.resetLevel=function(){E=null,ce(),w.call(a)},a.enableAll=function(c){a.setLevel(a.levels.TRACE,c)},a.disableAll=function(c){a.setLevel(a.levels.SILENT,c)},a.rebuild=function(){if(l!==a&&(N=O(l.getLevel())),w.call(a),l===a)for(var c in i)i[c].rebuild()},N=O(l?l.getLevel():"WARN");var Y=W();Y!=null&&(E=O(Y)),w.call(a)}l=new K,l.getLogger=function(g){if(typeof g!="symbol"&&typeof g!="string"||g==="")throw new TypeError("You must supply a name when creating a logger.");var a=i[g];return a||(a=i[g]=new K(g,l.methodFactory)),a};var he=typeof window!==t?window.log:void 0;return l.noConflict=function(){return typeof window!==t&&window.log===l&&(window.log=he),l},l.getLoggers=function(){return i},l.default=l,l})})(q);var V=q.exports;const re=C({__proto__:null,default:te(V)},[V]),oe=!0,A=re;A.setLevel("debug");const ne=r=>{try{A.setLevel(r)}catch(e){A.setLevel("error"),A.error(e)}};class U{constructor(e,t){this.events={attrChanged:new T,modelChanged:new T},this._changing=!1,this._previousAttributes={},this._pending=!1;const o=e||{};t&&D(o,t),this.attributes=o,this.changed={}}get(e){return this.attributes[e]}set(e,t,o){if(e==null)return this;let n;typeof e=="object"?(n=e,o=t):(n={},n[e]=t),o||(o={});const i=o.unset,l=o.silent,d=[],_=this._changing;this._changing=!0,_||(this._previousAttributes=I(this.attributes),this.changed={});const k=this.attributes,w=this.changed,x=this._previousAttributes;for(const p in n)t=n[p],L(k[p],t)||d.push(p),L(x[p],t)?delete w[p]:w[p]=t,i?delete k[p]:k[p]=t;if(!l){d.length&&(this._pending=o);for(let p=0;p<d.length;p++)this.events.attrChanged.dispatch({object:this,attrName:d[p],attrValue:k[d[p]],options:o})}if(_)return this;if(!l)for(;this._pending;)o=this._pending,this._pending=!1,this.events.modelChanged.dispatch({object:this,options:o});return this._pending=!1,this._changing=!1,this}has(e){return this.get(e)!=null}hasChanged(e){return e==null?!j(this.changed):F(this.changed,e)}changedAttributes(e){if(!e)return this.hasChanged()?I(this.changed):{};const t=this._changing?this._previousAttributes:this.attributes,o={};for(const n in e){const i=e[n];L(t[n],i)||(o[n]=i)}return o}previous(e){return e==null||!this._previousAttributes?null:this._previousAttributes[e]}previousAttributes(){return I(this._previousAttributes)}clone(){const e=I(this.attributes);return new U(e)}}class M{constructor(){this.entries=new Map}static getInstance(){return M.instance||(M.instance=new M),M.instance}collect(e){this.entries.set(e.name,e)}printAll(){for(const[e,t]of this.entries)console.log(`${e}:`),console.log(t.format())}clear(){this.entries.clear()}getAll(){return Array.from(this.entries.values())}getEntry(e){return this.entries.get(e)}remove(e){return this.entries.delete(e)}}class se{static formatBytes(e,t=2){if(e===0)return"0 B";const o=1024,n=Math.max(0,t),i=["B","KB","MB","GB","TB"],l=Math.floor(Math.log(e)/Math.log(o)),d=e/Math.pow(o,l);return`${parseFloat(d.toFixed(n))} ${i[l]}`}}var y=(r=>(r[r.ByLayer=0]="ByLayer",r[r.ByBlock=1]="ByBlock",r[r.ByAlpha=2]="ByAlpha",r[r.ErrorValue=3]="ErrorValue",r))(y||{});class v{constructor(e){e!==void 0?(this._method=y.ByAlpha,this._alpha=v.clampAlpha(e)):(this._method=y.ByLayer,this._alpha=255)}get method(){return this._method}set method(e){this._method=e}get alpha(){return this._alpha}set alpha(e){this._alpha=v.clampAlpha(e),this._method=y.ByAlpha}get percentage(){if(this._method===y.ByAlpha)return Math.round((1-this._alpha/255)*100)}set percentage(e){const t=Math.max(0,Math.min(100,e)),o=Math.round(255*(1-t/100));this.alpha=o}static clampAlpha(e){return Math.max(0,Math.min(255,Math.floor(e)))}get isByAlpha(){return this._method===y.ByAlpha}get isByBlock(){return this._method===y.ByBlock}get isByLayer(){return this._method===y.ByLayer}get isClear(){return this.isByAlpha&&this._alpha===0}get isSolid(){return this.isByAlpha&&this._alpha===255}get isInvalid(){return this._method===y.ErrorValue}serialize(){return this._method<<24|this._alpha}clone(){const e=new v;return e._method=this._method,e._alpha=this._alpha,e}equals(e){return this._method===e._method&&this._alpha===e._alpha}toString(){return this.isByLayer?"ByLayer":this.isByBlock?"ByBlock":this._alpha.toString()}static fromString(e){const t=e.trim();if(/^bylayer$/i.test(t)){const i=new v;return i._method=y.ByLayer,i}if(/^byblock$/i.test(t)){const i=new v;return i._method=y.ByBlock,i}const o=Number(t);if(Number.isInteger(o)&&o>=0&&o<=255)return new v(o);const n=new v;return n._method=y.ErrorValue,n}static deserialize(e){const t=e>>>24&255,o=e&255,n=Object.values(y)[t]??y.ErrorValue,i=new v;return i._method=n,i._alpha=v.clampAlpha(o),i}}class ie{constructor(e){this.name=e}run(e){throw new Error("run() must be implemented by subclass")}}class le{constructor(){this.tasks=[],this.onProgress=()=>{},this.onComplete=()=>{},this.onError=()=>!1}scheduleTask(e){return new Promise((t,o)=>{const n=()=>{Promise.resolve(e()).then(t).catch(o)};typeof window<"u"&&typeof window.requestAnimationFrame=="function"?window.requestAnimationFrame(n):setTimeout(n,0)})}addTask(e){this.tasks.push(e)}setProgressCallback(e){this.onProgress=e}setCompleteCallback(e){this.onComplete=e}setErrorCallback(e){this.onError=e}async run(e){const t=this.tasks.length;let o=e;for(let n=0;n<t;n++){const i=this.tasks[n];try{o=await this.scheduleTask(async()=>{const l=await i.run(o);return this.onProgress((n+1)/t,i),l})}catch(l){if(this.onError({error:l,taskIndex:n,task:i}))return Promise.reject(l)}}this.onComplete(o)}}class z{constructor(e,t,o){this.isLoading=!1,this.itemsLoaded=0,this.itemsTotal=0,this.urlModifier=void 0,this.handlers=[],this.onStart=void 0,this.onLoad=e,this.onProgress=t,this.onError=o}itemStart(e){this.itemsTotal++,this.isLoading===!1&&this.onStart!==void 0&&this.onStart(e,this.itemsLoaded,this.itemsTotal),this.isLoading=!0}itemEnd(e){this.itemsLoaded++,this.onProgress!==void 0&&this.onProgress(e,this.itemsLoaded,this.itemsTotal),this.itemsLoaded===this.itemsTotal&&(this.isLoading=!1,this.onLoad!==void 0&&this.onLoad())}itemError(e){this.onError!==void 0&&this.onError(e)}resolveURL(e){return this.urlModifier?this.urlModifier(e):e}setURLModifier(e){return this.urlModifier=e,this}addHandler(e,t){return this.handlers.push(e,t),this}removeHandler(e){const t=this.handlers.indexOf(e);return t!==-1&&this.handlers.splice(t,2),this}getHandler(e){for(let t=0,o=this.handlers.length;t<o;t+=2){const n=this.handlers[t],i=this.handlers[t+1];if(n.global&&(n.lastIndex=0),n.test(e))return i}return null}}const H=new z;class ae{constructor(e){this.manager=e!==void 0?e:H,this.crossOrigin="anonymous",this.withCredentials=!1,this.path="",this.resourcePath="",this.requestHeader={}}loadAsync(e,t){return new Promise((o,n)=>{this.load(e,o,t,n)})}parse(e){}setCrossOrigin(e){return this.crossOrigin=e,this}setWithCredentials(e){return this.withCredentials=e,this}setPath(e){return this.path=e,this}setResourcePath(e){return this.resourcePath=e,this}setRequestHeader(e){return this.requestHeader=e,this}}h.AcCmColor=B,h.AcCmColorMethod=s,h.AcCmColorUtil=b,h.AcCmEntityColor=J,h.AcCmErrors=X,h.AcCmEventDispatcher=Q,h.AcCmEventManager=T,h.AcCmLoader=ae,h.AcCmLoadingManager=z,h.AcCmObject=U,h.AcCmPerformanceCollector=M,h.AcCmTask=ie,h.AcCmTaskScheduler=le,h.AcCmTransparency=v,h.AcCmTransparencyMethod=y,h.AcTrStringUtil=se,h.DEBUG_MODE=oe,h.DefaultLoadingManager=H,h.clone=I,h.deepClone=P,h.defaults=D,h.has=F,h.isEmpty=j,h.isEqual=L,h.log=A,h.setLogLevel=ne,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})});
@@ -89,6 +89,11 @@ export declare class AcCmColor {
89
89
  * Gets the CSS RGB color string (e.g., "rgb(255,0,255)").
90
90
  */
91
91
  get cssColor(): string | undefined;
92
+ /**
93
+ * Returns a CSS rgba() color string with the specified alpha value.
94
+ * @param alpha - Opacity value between 0 (transparent) and 1 (opaque)
95
+ */
96
+ cssColorAlpha(alpha: number): string | undefined;
92
97
  /** Gets the AutoCAD Color Index (ACI), or undefined if not ByACI, ByBlock, or ByLayer. */
93
98
  get colorIndex(): number | undefined;
94
99
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"AcCmColor.d.ts","sourceRoot":"","sources":["../src/AcCmColor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAGnD;;;;;;GAMG;AACH,qBAAa,SAAS;IACpB,sDAAsD;IACtD,OAAO,CAAC,YAAY,CAAiB;IAErC;;;;;;OAMG;IACH,OAAO,CAAC,MAAM,CAAC,CAAQ;IAEvB;;;;OAIG;gBAED,MAAM,GAAE,eAAyC,EACjD,KAAK,CAAC,EAAE,MAAM;IAwBhB,qCAAqC;IACrC,IAAI,WAAW,IAAI,eAAe,CAEjC;IAED;;;;OAIG;IACH,IAAI,WAAW,CAAC,MAAM,EAAE,eAAe,EAEtC;IAMD,sCAAsC;IACtC,IAAI,GAAG,IAAI,MAAM,GAAG,SAAS,CAG5B;IAED,wCAAwC;IACxC,IAAI,KAAK,IAAI,MAAM,GAAG,SAAS,CAG9B;IAED,uCAAuC;IACvC,IAAI,IAAI,IAAI,MAAM,GAAG,SAAS,CAG7B;IAED;;;;;;OAMG;IACH,IAAI,GAAG,IAAI,MAAM,GAAG,SAAS,CAa5B;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAStC;;;;OAIG;IACH,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI;IAU5C;;;;;;;;;;;;OAYG;IACH,aAAa,CAAC,SAAS,EAAE,MAAM;IA4C/B;;;;;OAKG;IACH,SAAS,CAAC,MAAM,EAAE,MAAM;IAIxB;;OAEG;IACH,IAAI,QAAQ,IAAI,MAAM,GAAG,SAAS,CAOjC;IAED;;OAEG;IACH,IAAI,QAAQ,IAAI,MAAM,GAAG,SAAS,CAIjC;IAMD,0FAA0F;IAC1F,IAAI,UAAU,IAAI,MAAM,GAAG,SAAS,CAKnC;IAED;;;;;;;;OAQG;IACH,IAAI,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,EAcvC;IAED;;OAEG;IACH,IAAI,SAAS,IAAI,OAAO,CAEvB;IAED;;OAEG;IACH,IAAI,OAAO,IAAI,OAAO,CAErB;IAED;;;;;;;;;OASG;IACH,IAAI,YAAY,IAAI,OAAO,CAE1B;IAED;;OAEG;IACH,aAAa;IAUb,mDAAmD;IACnD,IAAI,SAAS,IAAI,OAAO,CAEvB;IAED;;;OAGG;IACH,UAAU,CAAC,KAAK,CAAC,EAAE,MAAM;IAUzB,mDAAmD;IACnD,IAAI,SAAS,IAAI,OAAO,CAEvB;IAED;;;OAGG;IACH,UAAU,CAAC,KAAK,CAAC,EAAE,MAAM;IAczB;;;;;OAKG;IACH,IAAI,SAAS,IAAI,MAAM,GAAG,SAAS,CAalC;IAED;;;;;;OAMG;IACH,IAAI,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,EASrC;IAMD;;;;OAIG;IACH,KAAK,IAAI,SAAS;IAOlB;;;;;OAKG;IACH,IAAI,CAAC,KAAK,EAAE,SAAS;IAMrB;;;;;OAKG;IACH,MAAM,CAAC,KAAK,EAAE,SAAS;IAUvB;;;;;;;OAOG;IACH,QAAQ,IAAI,MAAM;IAiBlB;;OAEG;IACH,MAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS;CA8EvD"}
1
+ {"version":3,"file":"AcCmColor.d.ts","sourceRoot":"","sources":["../src/AcCmColor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAGnD;;;;;;GAMG;AACH,qBAAa,SAAS;IACpB,sDAAsD;IACtD,OAAO,CAAC,YAAY,CAAiB;IAErC;;;;;;OAMG;IACH,OAAO,CAAC,MAAM,CAAC,CAAQ;IAEvB;;;;OAIG;gBAED,MAAM,GAAE,eAAyC,EACjD,KAAK,CAAC,EAAE,MAAM;IAwBhB,qCAAqC;IACrC,IAAI,WAAW,IAAI,eAAe,CAEjC;IAED;;;;OAIG;IACH,IAAI,WAAW,CAAC,MAAM,EAAE,eAAe,EAEtC;IAMD,sCAAsC;IACtC,IAAI,GAAG,IAAI,MAAM,GAAG,SAAS,CAG5B;IAED,wCAAwC;IACxC,IAAI,KAAK,IAAI,MAAM,GAAG,SAAS,CAG9B;IAED,uCAAuC;IACvC,IAAI,IAAI,IAAI,MAAM,GAAG,SAAS,CAG7B;IAED;;;;;;OAMG;IACH,IAAI,GAAG,IAAI,MAAM,GAAG,SAAS,CAa5B;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAStC;;;;OAIG;IACH,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI;IAU5C;;;;;;;;;;;;OAYG;IACH,aAAa,CAAC,SAAS,EAAE,MAAM;IA4C/B;;;;;OAKG;IACH,SAAS,CAAC,MAAM,EAAE,MAAM;IAIxB;;OAEG;IACH,IAAI,QAAQ,IAAI,MAAM,GAAG,SAAS,CAOjC;IAED;;OAEG;IACH,IAAI,QAAQ,IAAI,MAAM,GAAG,SAAS,CAIjC;IAED;;;OAGG;IACH,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAUhD,0FAA0F;IAC1F,IAAI,UAAU,IAAI,MAAM,GAAG,SAAS,CAKnC;IAED;;;;;;;;OAQG;IACH,IAAI,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,EAcvC;IAED;;OAEG;IACH,IAAI,SAAS,IAAI,OAAO,CAEvB;IAED;;OAEG;IACH,IAAI,OAAO,IAAI,OAAO,CAErB;IAED;;;;;;;;;OASG;IACH,IAAI,YAAY,IAAI,OAAO,CAE1B;IAED;;OAEG;IACH,aAAa;IAUb,mDAAmD;IACnD,IAAI,SAAS,IAAI,OAAO,CAEvB;IAED;;;OAGG;IACH,UAAU,CAAC,KAAK,CAAC,EAAE,MAAM;IAUzB,mDAAmD;IACnD,IAAI,SAAS,IAAI,OAAO,CAEvB;IAED;;;OAGG;IACH,UAAU,CAAC,KAAK,CAAC,EAAE,MAAM;IAczB;;;;;OAKG;IACH,IAAI,SAAS,IAAI,MAAM,GAAG,SAAS,CAalC;IAED;;;;;;OAMG;IACH,IAAI,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,EASrC;IAMD;;;;OAIG;IACH,KAAK,IAAI,SAAS;IAOlB;;;;;OAKG;IACH,IAAI,CAAC,KAAK,EAAE,SAAS;IAMrB;;;;;OAKG;IACH,MAAM,CAAC,KAAK,EAAE,SAAS;IAUvB;;;;;;;OAOG;IACH,QAAQ,IAAI,MAAM;IAiBlB;;OAEG;IACH,MAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS;CA8EvD"}
package/lib/AcCmColor.js CHANGED
@@ -246,6 +246,16 @@ var AcCmColor = /** @class */ (function () {
246
246
  enumerable: false,
247
247
  configurable: true
248
248
  });
249
+ /**
250
+ * Returns a CSS rgba() color string with the specified alpha value.
251
+ * @param alpha - Opacity value between 0 (transparent) and 1 (opaque)
252
+ */
253
+ AcCmColor.prototype.cssColorAlpha = function (alpha) {
254
+ var rgb = this.RGB;
255
+ if (rgb == null)
256
+ return undefined;
257
+ return "rgba(".concat((rgb >> 16) & 0xff, ",").concat((rgb >> 8) & 0xff, ",").concat(rgb & 0xff, ",").concat(alpha, ")");
258
+ };
249
259
  Object.defineProperty(AcCmColor.prototype, "colorIndex", {
250
260
  // ---------------------------------------------------------------------
251
261
  // ACI accessors (ByACI)
@@ -1 +1 @@
1
- {"version":3,"file":"AcCmColor.js","sourceRoot":"","sources":["../src/AcCmColor.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"AcCmColor.js","sourceRoot":"","sources":["../src/AcCmColor.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mlightcad/common",
3
- "version": "1.4.6",
3
+ "version": "1.4.8",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {