@trunkjs/content-pane 1.0.2 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 1.0.5 (2025-08-29)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for content-pane to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 1.0.4 (2025-08-24)
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated browser-utils to 1.0.14
|
|
10
|
+
|
|
11
|
+
## 1.0.3 (2025-08-13)
|
|
12
|
+
|
|
13
|
+
### 🧱 Updated Dependencies
|
|
14
|
+
|
|
15
|
+
- Updated browser-utils to 1.0.13
|
|
16
|
+
|
|
1
17
|
## 1.0.2 (2025-08-13)
|
|
2
18
|
|
|
3
19
|
This was a version bump only for content-pane to align it with other projects, there were no code changes.
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { ReactiveElement } from 'lit';
|
|
2
2
|
declare const ContentAreaElement2_base: (abstract new (...args: any[]) => {
|
|
3
|
-
"__#
|
|
3
|
+
"__#2684@#debugCached": boolean | null;
|
|
4
|
+
"__#2684@#myElementId": number;
|
|
4
5
|
invalidateDebugCache(): void;
|
|
5
|
-
|
|
6
|
+
"__#2684@#myLoggerInstance": import('../../../../browser-utils/src/index.ts').Logger | null;
|
|
7
|
+
readonly _debug: boolean;
|
|
8
|
+
getLogger(instanceId?: string): import('../../../../browser-utils/src/index.ts').Logger;
|
|
6
9
|
log(...args: any[]): void;
|
|
7
10
|
warn(...args: any[]): void;
|
|
8
11
|
error(...args: any[]): void;
|
|
12
|
+
throwError(...args: any[]): never;
|
|
9
13
|
}) & typeof ReactiveElement;
|
|
10
14
|
export declare class ContentAreaElement2 extends ContentAreaElement2_base {
|
|
11
15
|
static get is(): string;
|
package/package.json
CHANGED