@zeus-js/output-wc 0.1.0-beta.1 → 0.1.0-beta.2
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/capabilities.cjs.js +39 -0
- package/dist/capabilities.cjs.prod.js +39 -0
- package/dist/capabilities.d.ts +31 -0
- package/dist/capabilities.js +30 -0
- package/dist/capabilities.prod.js +30 -0
- package/dist/output-wc.cjs.js +1 -1
- package/dist/output-wc.cjs.prod.js +1 -1
- package/dist/output-wc.esm-bundler.js +1 -1
- package/package.json +20 -5
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* output-wc v0.1.0-beta.2
|
|
3
|
+
* (c) 2026 baicie
|
|
4
|
+
* Released under the MIT License.
|
|
5
|
+
**/
|
|
6
|
+
Object.defineProperties(exports, {
|
|
7
|
+
__esModule: { value: true },
|
|
8
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
9
|
+
});
|
|
10
|
+
const ZEUS_OUTPUT_WC_CAPABILITIES = {
|
|
11
|
+
packageName: "@zeus-js/output-wc",
|
|
12
|
+
version: "0.1.0-beta.2",
|
|
13
|
+
output: {
|
|
14
|
+
webComponent: true,
|
|
15
|
+
customElements: true,
|
|
16
|
+
shadowDom: true,
|
|
17
|
+
lightDom: true,
|
|
18
|
+
slots: true,
|
|
19
|
+
props: true,
|
|
20
|
+
attrs: true,
|
|
21
|
+
events: true,
|
|
22
|
+
styles: true
|
|
23
|
+
},
|
|
24
|
+
manifest: {
|
|
25
|
+
componentManifest: true,
|
|
26
|
+
props: true,
|
|
27
|
+
events: true,
|
|
28
|
+
slots: true,
|
|
29
|
+
cssVars: true,
|
|
30
|
+
cssParts: true,
|
|
31
|
+
dts: true
|
|
32
|
+
},
|
|
33
|
+
wrappers: {
|
|
34
|
+
react: false,
|
|
35
|
+
vue: false
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
//#endregion
|
|
39
|
+
exports.ZEUS_OUTPUT_WC_CAPABILITIES = ZEUS_OUTPUT_WC_CAPABILITIES;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* output-wc v0.1.0-beta.2
|
|
3
|
+
* (c) 2026 baicie
|
|
4
|
+
* Released under the MIT License.
|
|
5
|
+
**/
|
|
6
|
+
Object.defineProperties(exports, {
|
|
7
|
+
__esModule: { value: true },
|
|
8
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
9
|
+
});
|
|
10
|
+
const ZEUS_OUTPUT_WC_CAPABILITIES = {
|
|
11
|
+
packageName: "@zeus-js/output-wc",
|
|
12
|
+
version: "0.1.0-beta.2",
|
|
13
|
+
output: {
|
|
14
|
+
webComponent: true,
|
|
15
|
+
customElements: true,
|
|
16
|
+
shadowDom: true,
|
|
17
|
+
lightDom: true,
|
|
18
|
+
slots: true,
|
|
19
|
+
props: true,
|
|
20
|
+
attrs: true,
|
|
21
|
+
events: true,
|
|
22
|
+
styles: true
|
|
23
|
+
},
|
|
24
|
+
manifest: {
|
|
25
|
+
componentManifest: true,
|
|
26
|
+
props: true,
|
|
27
|
+
events: true,
|
|
28
|
+
slots: true,
|
|
29
|
+
cssVars: true,
|
|
30
|
+
cssParts: true,
|
|
31
|
+
dts: true
|
|
32
|
+
},
|
|
33
|
+
wrappers: {
|
|
34
|
+
react: false,
|
|
35
|
+
vue: false
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
//#endregion
|
|
39
|
+
exports.ZEUS_OUTPUT_WC_CAPABILITIES = ZEUS_OUTPUT_WC_CAPABILITIES;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare const ZEUS_OUTPUT_WC_CAPABILITIES: {
|
|
2
|
+
readonly packageName: "@zeus-js/output-wc";
|
|
3
|
+
readonly version: string;
|
|
4
|
+
readonly output: {
|
|
5
|
+
readonly webComponent: true;
|
|
6
|
+
readonly customElements: true;
|
|
7
|
+
readonly shadowDom: true;
|
|
8
|
+
readonly lightDom: true;
|
|
9
|
+
readonly slots: true;
|
|
10
|
+
readonly props: true;
|
|
11
|
+
readonly attrs: true;
|
|
12
|
+
readonly events: true;
|
|
13
|
+
readonly styles: true;
|
|
14
|
+
};
|
|
15
|
+
readonly manifest: {
|
|
16
|
+
readonly componentManifest: true;
|
|
17
|
+
readonly props: true;
|
|
18
|
+
readonly events: true;
|
|
19
|
+
readonly slots: true;
|
|
20
|
+
readonly cssVars: true;
|
|
21
|
+
readonly cssParts: true;
|
|
22
|
+
readonly dts: true;
|
|
23
|
+
};
|
|
24
|
+
readonly wrappers: {
|
|
25
|
+
readonly react: false;
|
|
26
|
+
readonly vue: false;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
export type ZeusOutputWcCapabilities = typeof ZEUS_OUTPUT_WC_CAPABILITIES;
|
|
30
|
+
|
|
31
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const ZEUS_OUTPUT_WC_CAPABILITIES = {
|
|
2
|
+
packageName: "@zeus-js/output-wc",
|
|
3
|
+
version: "0.1.0-beta.2",
|
|
4
|
+
output: {
|
|
5
|
+
webComponent: true,
|
|
6
|
+
customElements: true,
|
|
7
|
+
shadowDom: true,
|
|
8
|
+
lightDom: true,
|
|
9
|
+
slots: true,
|
|
10
|
+
props: true,
|
|
11
|
+
attrs: true,
|
|
12
|
+
events: true,
|
|
13
|
+
styles: true
|
|
14
|
+
},
|
|
15
|
+
manifest: {
|
|
16
|
+
componentManifest: true,
|
|
17
|
+
props: true,
|
|
18
|
+
events: true,
|
|
19
|
+
slots: true,
|
|
20
|
+
cssVars: true,
|
|
21
|
+
cssParts: true,
|
|
22
|
+
dts: true
|
|
23
|
+
},
|
|
24
|
+
wrappers: {
|
|
25
|
+
react: false,
|
|
26
|
+
vue: false
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
//#endregion
|
|
30
|
+
export { ZEUS_OUTPUT_WC_CAPABILITIES };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const ZEUS_OUTPUT_WC_CAPABILITIES = {
|
|
2
|
+
packageName: "@zeus-js/output-wc",
|
|
3
|
+
version: "0.1.0-beta.2",
|
|
4
|
+
output: {
|
|
5
|
+
webComponent: true,
|
|
6
|
+
customElements: true,
|
|
7
|
+
shadowDom: true,
|
|
8
|
+
lightDom: true,
|
|
9
|
+
slots: true,
|
|
10
|
+
props: true,
|
|
11
|
+
attrs: true,
|
|
12
|
+
events: true,
|
|
13
|
+
styles: true
|
|
14
|
+
},
|
|
15
|
+
manifest: {
|
|
16
|
+
componentManifest: true,
|
|
17
|
+
props: true,
|
|
18
|
+
events: true,
|
|
19
|
+
slots: true,
|
|
20
|
+
cssVars: true,
|
|
21
|
+
cssParts: true,
|
|
22
|
+
dts: true
|
|
23
|
+
},
|
|
24
|
+
wrappers: {
|
|
25
|
+
react: false,
|
|
26
|
+
vue: false
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
//#endregion
|
|
30
|
+
export { ZEUS_OUTPUT_WC_CAPABILITIES };
|
package/dist/output-wc.cjs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeus-js/output-wc",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.2",
|
|
4
4
|
"description": "Zeus Web Component output plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -22,7 +22,16 @@
|
|
|
22
22
|
"import": "./dist/output-wc.esm-bundler.js",
|
|
23
23
|
"require": "./index.js"
|
|
24
24
|
},
|
|
25
|
-
"
|
|
25
|
+
"./capabilities": {
|
|
26
|
+
"types": "./dist/capabilities.d.ts",
|
|
27
|
+
"node": {
|
|
28
|
+
"production": "./dist/capabilities.cjs.prod.js",
|
|
29
|
+
"development": "./dist/capabilities.cjs.js",
|
|
30
|
+
"default": "./dist/capabilities.cjs.js"
|
|
31
|
+
},
|
|
32
|
+
"import": "./dist/capabilities.js",
|
|
33
|
+
"require": "./dist/capabilities.cjs.js"
|
|
34
|
+
}
|
|
26
35
|
},
|
|
27
36
|
"sideEffects": false,
|
|
28
37
|
"repository": {
|
|
@@ -34,12 +43,18 @@
|
|
|
34
43
|
"formats": [
|
|
35
44
|
"esm-bundler",
|
|
36
45
|
"cjs"
|
|
46
|
+
],
|
|
47
|
+
"additionalEntries": [
|
|
48
|
+
{
|
|
49
|
+
"entry": "capabilities.ts",
|
|
50
|
+
"output": "dist/capabilities.js"
|
|
51
|
+
}
|
|
37
52
|
]
|
|
38
53
|
},
|
|
39
54
|
"dependencies": {
|
|
40
|
-
"@zeus-js/bundler-plugin": "0.1.0-beta.
|
|
41
|
-
"@zeus-js/component-
|
|
42
|
-
"@zeus-js/component-
|
|
55
|
+
"@zeus-js/bundler-plugin": "0.1.0-beta.2",
|
|
56
|
+
"@zeus-js/component-analyzer": "0.1.0-beta.2",
|
|
57
|
+
"@zeus-js/component-dts": "0.1.0-beta.2"
|
|
43
58
|
},
|
|
44
59
|
"peerDependencies": {
|
|
45
60
|
"rollup": "^4.0.0"
|