cmswift 1.0.1 → 1.0.3
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/cmswift.js +10 -10
- package/dist/cmswift.min.js +34 -0
- package/dist/css/min-ui.css +1 -1
- package/dist/css/ui.css +0 -19944
- package/dist/css/ui.min.css +1 -0
- package/dist/min-cmswift.js +1 -1
- package/package.json +3 -2
- package/dist/css/tabler-icons-out.css +0 -19942
package/dist/cmswift.js
CHANGED
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
CMSwift.uiSizes = ["xxs", "xs", "sm", "md", "lg", "xl", "xxl", "xxxl"];
|
|
42
42
|
CMSwift.uiColors = ["primary", "secondary", "success", "warning", "danger", "info", "light", "dark"];
|
|
43
43
|
CMSwift.meta = CMSwift.meta || {
|
|
44
|
-
version: "
|
|
44
|
+
version: "1.0.3",
|
|
45
45
|
policy: {
|
|
46
46
|
sourceOfTruth: "docs/reference/core.md",
|
|
47
47
|
syncRule: "Quando cambia un modulo core, aggiornare sia questo meta sia docs/reference/core.md."
|
|
@@ -4347,7 +4347,7 @@ _.dynamic = function (renderFn) {
|
|
|
4347
4347
|
function renderTabGroupFallback(_, rows) {
|
|
4348
4348
|
return _.div({ class: "cms-doc-fallback" },
|
|
4349
4349
|
rows.map((row) => _.div({ class: "cms-doc-fallback-item" },
|
|
4350
|
-
_.
|
|
4350
|
+
_.h4({ class: "cms-doc-fallback-title" }, row.label || row.name),
|
|
4351
4351
|
row.content
|
|
4352
4352
|
))
|
|
4353
4353
|
);
|
|
@@ -4558,7 +4558,7 @@ _.dynamic = function (renderFn) {
|
|
|
4558
4558
|
meta.signature ? _.div({ class: "cms-doc-table-signature" }, String(meta.signature).replaceAll("UI.", "_.")) : null
|
|
4559
4559
|
),
|
|
4560
4560
|
taps.length
|
|
4561
|
-
? _.
|
|
4561
|
+
? _.h4({ class: "cms-doc-table-section-title" }, propsTab.length ? "Props" : "Documentation")
|
|
4562
4562
|
: _.p({ class: "cms-muted" }, "Nessuna documentazione strutturata disponibile."),
|
|
4563
4563
|
taps.length
|
|
4564
4564
|
? (hasTabPanel ? _.TabPanel({
|
|
@@ -5019,13 +5019,13 @@ _.dynamic = function (renderFn) {
|
|
|
5019
5019
|
if (CMSwift.config?.debug) {
|
|
5020
5020
|
window.$router = CMSwift.router;
|
|
5021
5021
|
}
|
|
5022
|
-
// alias per compatibilità
|
|
5023
|
-
CMSwift.signal = CMSwift.reactive.signal;
|
|
5024
|
-
CMSwift.effect = CMSwift.reactive.effect;
|
|
5025
|
-
CMSwift.computed = CMSwift.reactive.computed;
|
|
5026
|
-
CMSwift.untracked = CMSwift.reactive.untracked;
|
|
5027
|
-
CMSwift.batch = CMSwift.reactive.batch;
|
|
5028
|
-
})();
|
|
5022
|
+
// alias per compatibilità
|
|
5023
|
+
CMSwift.signal = CMSwift.reactive.signal;
|
|
5024
|
+
CMSwift.effect = CMSwift.reactive.effect;
|
|
5025
|
+
CMSwift.computed = CMSwift.reactive.computed;
|
|
5026
|
+
CMSwift.untracked = CMSwift.reactive.untracked;
|
|
5027
|
+
CMSwift.batch = CMSwift.reactive.batch;
|
|
5028
|
+
})();
|
|
5029
5029
|
|
|
5030
5030
|
|
|
5031
5031
|
// ===============================
|