@innovastudio/contentbuilder 1.4.2 → 1.4.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/license.txt +15 -6
- package/package.json +1 -1
- package/public/contentbuilder/contentbuilder.css +20 -0
- package/public/contentbuilder/contentbuilder.esm.js +389 -19
- package/public/contentbuilder/contentbuilder.min.js +8 -8
- package/public/contentbuilder/lang/en.js +4 -1
- package/public/contentbuilder/lang/fr.js +4 -1
- package/public/contentbuilder/plugins/preview/plugin.js +1 -1
package/license.txt
CHANGED
@@ -19,9 +19,12 @@ STANDARD DEVELOPER LICENSE AGREEMENT
|
|
19
19
|
|
20
20
|
4. You will be responsible for providing support to your clients, and InnovaStudio will not communicate directly with your clients under any circumstances.
|
21
21
|
|
22
|
-
5
|
22
|
+
5. InnovaStudio provides support and free Product upgrades/updates for 1 (One) year period since purchase date.
|
23
|
+
Upgrade/update is optional. Your license remains active even if you do not upgrade the Product.
|
23
24
|
|
24
|
-
6.
|
25
|
+
6 You are not allowed to re-distribute the Product as another plugin and/or sell the Product as is. You must include the Product in your custom application.
|
26
|
+
|
27
|
+
7. LIMITED WARRANTY
|
25
28
|
Although InnovaStudio has tested the Product and reviewed the documentation, InnovaStudio makes no warranty or representation, either expressed or implied, with respect to the Product, its quality, performance, merchantability, or fitness for a particular purpose. As a result, ContentBuilder.js is licensed AS-IS, and you are assuming the entire risk as to its quality and performance.
|
26
29
|
InnovaStudio shall not be liable for any claim or right to recover damages, including, but not limited to, loss of profit, data, or use of the software or special, incidental, or consequential damages, or other similar claims, even if InnovaStudio has been specifically advised of the possibility of such damages.
|
27
30
|
|
@@ -44,9 +47,12 @@ PRO DEVELOPER LICENSE AGREEMENT
|
|
44
47
|
|
45
48
|
6. You will be responsible for providing support to your clients, and InnovaStudio will not communicate directly with your clients under any circumstances.
|
46
49
|
|
47
|
-
7.
|
50
|
+
7. InnovaStudio provides support and free Product upgrades/updates for 1 (One) year period since purchase date.
|
51
|
+
Upgrade/update is optional. Your license remains active even if you do not upgrade the Product.
|
52
|
+
|
53
|
+
8. You are not allowed to re-distribute the Product as another plugin and/or sell the Product as is. You must include the Product in your custom application.
|
48
54
|
|
49
|
-
|
55
|
+
9. LIMITED WARRANTY
|
50
56
|
Although InnovaStudio has tested the Product and reviewed the documentation, InnovaStudio makes no warranty or representation, either expressed or implied, with respect to the Product, its quality, performance, merchantability, or fitness for a particular purpose. As a result, ContentBuilder.js is licensed AS-IS, and you are assuming the entire risk as to its quality and performance.
|
51
57
|
InnovaStudio shall not be liable for any claim or right to recover damages, including, but not limited to, loss of profit, data, or use of the software or special, incidental, or consequential damages, or other similar claims, even if InnovaStudio has been specifically advised of the possibility of such damages.
|
52
58
|
|
@@ -69,9 +75,12 @@ SUPER DEVELOPER LICENSE AGREEMENT
|
|
69
75
|
|
70
76
|
6. You will be responsible for providing support to your clients, and InnovaStudio will not communicate directly with your clients under any circumstances.
|
71
77
|
|
72
|
-
7.
|
78
|
+
7. InnovaStudio provides support and free Product upgrades/updates for 1 (One) year period since purchase date.
|
79
|
+
Upgrade/update is optional. Your license remains active even if you do not upgrade the Product.
|
80
|
+
|
81
|
+
8. You are not allowed to re-distribute the Product as another plugin and/or sell the Product as is. You must include the Product in your custom application.
|
73
82
|
|
74
|
-
|
83
|
+
9. LIMITED WARRANTY
|
75
84
|
Although InnovaStudio has tested the Product and reviewed the documentation, InnovaStudio makes no warranty or representation, either expressed or implied, with respect to the Product, its quality, performance, merchantability, or fitness for a particular purpose. As a result, ContentBuilder.js is licensed AS-IS, and you are assuming the entire risk as to its quality and performance.
|
76
85
|
InnovaStudio shall not be liable for any claim or right to recover damages, including, but not limited to, loss of profit, data, or use of the software or special, incidental, or consequential damages, or other similar claims, even if InnovaStudio has been specifically advised of the possibility of such damages.
|
77
86
|
|
package/package.json
CHANGED
@@ -5410,3 +5410,23 @@ button:focus-visible {
|
|
5410
5410
|
pointer-events: none;
|
5411
5411
|
user-select: none;
|
5412
5412
|
}
|
5413
|
+
|
5414
|
+
/*
|
5415
|
+
@media (min-width: 761px) and (max-width: 970px) {
|
5416
|
+
body.data-editor .sm-hidden {
|
5417
|
+
opacity: 0.5 !important;
|
5418
|
+
background-color: rgb(130 130 130 / 14%) !important;
|
5419
|
+
}
|
5420
|
+
}
|
5421
|
+
@media (min-width: 971px) and (max-width: 1280px) {
|
5422
|
+
body.data-editor .md-hidden {
|
5423
|
+
opacity: 0.5 !important;
|
5424
|
+
background-color: rgb(130 130 130 / 14%) !important;
|
5425
|
+
}
|
5426
|
+
}
|
5427
|
+
@media (min-width: 1281px) {
|
5428
|
+
body.data-editor .desktop-hidden {
|
5429
|
+
opacity: 0.5 !important;
|
5430
|
+
background-color: rgb(130 130 130 / 14%) !important;
|
5431
|
+
}
|
5432
|
+
}*/
|