@tessera-ui/angular 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -0
- package/dist/cjs/directives/angular-component-lib/utils.js +66 -0
- package/dist/cjs/directives/index.js +91 -0
- package/dist/cjs/directives/proxies.js +1422 -0
- package/dist/cjs/index.js +22 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -0
- package/package.json +21 -6
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.DIRECTIVES = void 0;
|
|
18
|
+
// Auto-import Tessera UI design tokens (global CSS custom properties)
|
|
19
|
+
require("@tessera-ui/core/dist/tessera-ui/tessera-ui.css");
|
|
20
|
+
__exportStar(require("./directives/proxies"), exports);
|
|
21
|
+
var directives_1 = require("./directives");
|
|
22
|
+
Object.defineProperty(exports, "DIRECTIVES", { enumerable: true, get: function () { return directives_1.DIRECTIVES; } });
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,16 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tessera-ui/angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Angular wrappers for Tessera UI web components",
|
|
5
|
-
"main": "dist/index.
|
|
5
|
+
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"require": "./dist/cjs/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"sideEffects": [
|
|
16
|
+
"**/*.css",
|
|
17
|
+
"./dist/index.js",
|
|
18
|
+
"./dist/cjs/index.js"
|
|
19
|
+
],
|
|
8
20
|
"files": [
|
|
9
|
-
"dist/"
|
|
21
|
+
"dist/",
|
|
22
|
+
"README.md"
|
|
10
23
|
],
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@tessera-ui/core": "^0.5.0"
|
|
26
|
+
},
|
|
11
27
|
"peerDependencies": {
|
|
12
|
-
"@angular/core": ">=17.0.0"
|
|
13
|
-
"@tessera-ui/core": "0.4.0"
|
|
28
|
+
"@angular/core": ">=17.0.0"
|
|
14
29
|
},
|
|
15
30
|
"devDependencies": {
|
|
16
31
|
"@angular/core": "^18.0.0",
|
|
@@ -24,6 +39,6 @@
|
|
|
24
39
|
},
|
|
25
40
|
"license": "MIT",
|
|
26
41
|
"scripts": {
|
|
27
|
-
"build": "tsc -p tsconfig.json"
|
|
42
|
+
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json"
|
|
28
43
|
}
|
|
29
44
|
}
|