@nexim/element 1.0.5 → 1.0.6
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 +4 -0
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.6](https://github.com/the-nexim/nanolib/compare/@nexim/element@1.0.5...@nexim/element@1.0.6) (2024-12-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @nexim/element
|
|
9
|
+
|
|
6
10
|
## [1.0.5](https://github.com/the-nexim/nanolib/compare/@nexim/element@1.0.4...@nexim/element@1.0.5) (2024-12-07)
|
|
7
11
|
|
|
8
12
|
### Bug Fixes
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @nexim/element v1.0.
|
|
1
|
+
/* @nexim/element v1.0.6 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -144,7 +144,7 @@ function LoggerMixin(superClass) {
|
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
// src/main.ts
|
|
147
|
-
__dev_mode__: import_package_tracer.packageTracer.add("@nexim/element", "1.0.
|
|
147
|
+
__dev_mode__: import_package_tracer.packageTracer.add("@nexim/element", "1.0.6");
|
|
148
148
|
// Annotate the CommonJS export names for ESM import in node:
|
|
149
149
|
0 && (module.exports = {
|
|
150
150
|
LightDomMixin,
|
package/dist/main.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @nexim/element v1.0.
|
|
1
|
+
/* @nexim/element v1.0.6 */
|
|
2
2
|
|
|
3
3
|
// src/main.ts
|
|
4
4
|
import { packageTracer } from "@alwatr/package-tracer";
|
|
@@ -120,7 +120,7 @@ function LoggerMixin(superClass) {
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
// src/main.ts
|
|
123
|
-
__dev_mode__: packageTracer.add("@nexim/element", "1.0.
|
|
123
|
+
__dev_mode__: packageTracer.add("@nexim/element", "1.0.6");
|
|
124
124
|
export {
|
|
125
125
|
LightDomMixin,
|
|
126
126
|
LoggerMixin
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexim/element",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Utility functions and mixins for building high-performance web components with Lit.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -66,12 +66,12 @@
|
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@alwatr/nano-build": "^5.0.0",
|
|
69
|
-
"@nexim/typescript-config": "^1.0.
|
|
69
|
+
"@nexim/typescript-config": "^1.0.1",
|
|
70
70
|
"ava": "^6.2.0",
|
|
71
71
|
"typescript": "^5.6.3"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "a02afd5953a471c872d63e4eb2e7ccbf90c21abb"
|
|
77
77
|
}
|