@tailor-cms/ce-image-manifest 1.0.3 → 1.0.4
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/index.cjs +6 -6
- package/dist/index.js +3 -3
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -17,15 +17,15 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
17
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
18
|
|
|
19
19
|
// src/index.ts
|
|
20
|
-
var
|
|
21
|
-
__export(
|
|
22
|
-
default: () =>
|
|
20
|
+
var index_exports = {};
|
|
21
|
+
__export(index_exports, {
|
|
22
|
+
default: () => index_default,
|
|
23
23
|
initState: () => initState,
|
|
24
24
|
name: () => name,
|
|
25
25
|
type: () => type,
|
|
26
26
|
version: () => version
|
|
27
27
|
});
|
|
28
|
-
module.exports = __toCommonJS(
|
|
28
|
+
module.exports = __toCommonJS(index_exports);
|
|
29
29
|
var type = "IMAGE";
|
|
30
30
|
var name = "Image";
|
|
31
31
|
var initState = () => ({
|
|
@@ -39,7 +39,7 @@ var ui = {
|
|
|
39
39
|
icon: "mdi-image",
|
|
40
40
|
// Does element support only full width or can be used within layouts
|
|
41
41
|
// (e.g. 50/50 layout)
|
|
42
|
-
forceFullWidth:
|
|
42
|
+
forceFullWidth: false
|
|
43
43
|
};
|
|
44
44
|
var manifest = {
|
|
45
45
|
type,
|
|
@@ -49,7 +49,7 @@ var manifest = {
|
|
|
49
49
|
initState,
|
|
50
50
|
ui
|
|
51
51
|
};
|
|
52
|
-
var
|
|
52
|
+
var index_default = manifest;
|
|
53
53
|
// Annotate the CommonJS export names for ESM import in node:
|
|
54
54
|
0 && (module.exports = {
|
|
55
55
|
initState,
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ var ui = {
|
|
|
12
12
|
icon: "mdi-image",
|
|
13
13
|
// Does element support only full width or can be used within layouts
|
|
14
14
|
// (e.g. 50/50 layout)
|
|
15
|
-
forceFullWidth:
|
|
15
|
+
forceFullWidth: false
|
|
16
16
|
};
|
|
17
17
|
var manifest = {
|
|
18
18
|
type,
|
|
@@ -22,9 +22,9 @@ var manifest = {
|
|
|
22
22
|
initState,
|
|
23
23
|
ui
|
|
24
24
|
};
|
|
25
|
-
var
|
|
25
|
+
var index_default = manifest;
|
|
26
26
|
export {
|
|
27
|
-
|
|
27
|
+
index_default as default,
|
|
28
28
|
initState,
|
|
29
29
|
name,
|
|
30
30
|
type,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Tailor CMS image element manifest",
|
|
4
4
|
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.4",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"import": "./dist/index.js",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
],
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@tailor-cms/eslint-config": "0.0.2",
|
|
20
|
-
"tsup": "^
|
|
21
|
-
"typescript": "^5.
|
|
20
|
+
"tsup": "^8.3.6",
|
|
21
|
+
"typescript": "^5.7.3"
|
|
22
22
|
},
|
|
23
23
|
"tsup": {
|
|
24
24
|
"entry": [
|