@uxf/cms 11.118.2 → 11.119.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxf/cms",
3
- "version": "11.118.2",
3
+ "version": "11.119.0",
4
4
  "description": "UXF Cms",
5
5
  "author": "UXFans <dev@uxf.cz>",
6
6
  "homepage": "https://gitlab.com/uxf-npm/cms#readme",
@@ -33,13 +33,13 @@
33
33
  "@dnd-kit/utilities": "^3.2.2",
34
34
  "@floating-ui/react": "^0.27.17",
35
35
  "@uxf/core": "11.114.0",
36
- "@uxf/core-react": "11.114.0",
37
- "@uxf/data-grid": "11.118.2",
38
- "@uxf/form": "11.118.2",
36
+ "@uxf/core-react": "11.119.0",
37
+ "@uxf/data-grid": "11.119.0",
38
+ "@uxf/form": "11.119.0",
39
39
  "@uxf/router": "11.114.0",
40
40
  "@uxf/styles": "11.114.0",
41
- "@uxf/ui": "11.118.2",
42
- "@uxf/wysiwyg": "11.118.2",
41
+ "@uxf/ui": "11.119.0",
42
+ "@uxf/wysiwyg": "11.119.0",
43
43
  "axios": "^1.13.4",
44
44
  "axios-hooks": "^5.1.1",
45
45
  "next": ">=13.2.0",
@@ -57,13 +57,13 @@
57
57
  "@types/react": "18.3.27",
58
58
  "@types/react-dom": "18.3.7",
59
59
  "@uxf/core": "11.114.0",
60
- "@uxf/core-react": "11.114.0",
61
- "@uxf/data-grid": "11.118.2",
62
- "@uxf/form": "11.118.2",
60
+ "@uxf/core-react": "11.119.0",
61
+ "@uxf/data-grid": "11.119.0",
62
+ "@uxf/form": "11.119.0",
63
63
  "@uxf/router": "11.114.0",
64
64
  "@uxf/styles": "11.114.0",
65
- "@uxf/ui": "11.118.2",
66
- "@uxf/wysiwyg": "11.118.2",
65
+ "@uxf/ui": "11.119.0",
66
+ "@uxf/wysiwyg": "11.119.0",
67
67
  "axios": "^1.13.4",
68
68
  "axios-hooks": "^5.1.1",
69
69
  "next": "16.1.6",
@@ -34,9 +34,10 @@ var __importStar = (this && this.__importStar) || (function () {
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
36
  exports.DetailsVisibilityProvider = exports.useDetailsVisibilityControls = exports.useDetailsVisibilityForSection = void 0;
37
+ const global_context_1 = require("@uxf/core-react/global-context");
37
38
  const noop_1 = require("@uxf/core/utils/noop");
38
39
  const react_1 = __importStar(require("react"));
39
- const detailsVisibilityContext = (0, react_1.createContext)([[], noop_1.noop, true, noop_1.noop]);
40
+ const detailsVisibilityContext = (0, global_context_1.createGlobalContext)("cms/content-builder/details-visibility", [[], noop_1.noop, true, noop_1.noop]);
40
41
  const useDetailsVisibility = () => (0, react_1.useContext)(detailsVisibilityContext);
41
42
  const useDetailsVisibilityForSection = (sectionId) => {
42
43
  var _a;