@movable/studio-framework 2.40.0-redondo-beach.4 → 2.40.0-redondo-beach.5
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.es.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +4 -4
package/dist/index.es.js
CHANGED
|
@@ -7718,9 +7718,9 @@ var StudioFramework = /*#__PURE__*/function () {
|
|
|
7718
7718
|
if (this.shouldPerformStaticCheck) {
|
|
7719
7719
|
var proxy = new Proxy(this, {
|
|
7720
7720
|
set: function set(target, key, value) {
|
|
7721
|
-
if (key in target) {
|
|
7721
|
+
if (key in target && key !== 'currentGrouping') {
|
|
7722
7722
|
window.RENDERED_STATICALLY = false;
|
|
7723
|
-
console.log("static status is false -
|
|
7723
|
+
console.log("static status is false - overridden StudioFramework class method ", key);
|
|
7724
7724
|
}
|
|
7725
7725
|
|
|
7726
7726
|
return set$2(target, key, value);
|
package/dist/index.js
CHANGED
|
@@ -7728,9 +7728,9 @@ var StudioFramework = /*#__PURE__*/function () {
|
|
|
7728
7728
|
if (this.shouldPerformStaticCheck) {
|
|
7729
7729
|
var proxy = new Proxy(this, {
|
|
7730
7730
|
set: function set(target, key, value) {
|
|
7731
|
-
if (key in target) {
|
|
7731
|
+
if (key in target && key !== 'currentGrouping') {
|
|
7732
7732
|
window.RENDERED_STATICALLY = false;
|
|
7733
|
-
console.log("static status is false -
|
|
7733
|
+
console.log("static status is false - overridden StudioFramework class method ", key);
|
|
7734
7734
|
}
|
|
7735
7735
|
|
|
7736
7736
|
return set$2(target, key, value);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@movable/studio-framework",
|
|
3
|
-
"version": "2.40.0-redondo-beach.
|
|
3
|
+
"version": "2.40.0-redondo-beach.5",
|
|
4
4
|
"description": "A Component library for reactive Studio apps.",
|
|
5
5
|
"author": "Movable Ink",
|
|
6
6
|
"repository": "movableink/studio-framework",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@babel/preset-react": "^7.14.5",
|
|
36
36
|
"@babel/preset-typescript": "^7.13.0",
|
|
37
37
|
"@movable/eslint-config-react": "^1.0.1",
|
|
38
|
-
"@movable/framework-types": "^2.40.0-redondo-beach.
|
|
39
|
-
"@movable/studio-framework-test-helpers": "^2.40.0-redondo-beach.
|
|
38
|
+
"@movable/framework-types": "^2.40.0-redondo-beach.5",
|
|
39
|
+
"@movable/studio-framework-test-helpers": "^2.40.0-redondo-beach.5",
|
|
40
40
|
"@types/qunit": "^2.11.1",
|
|
41
41
|
"@types/qunit-dom": "^0.7.0",
|
|
42
42
|
"@types/react": "^17.0.6",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"volta": {
|
|
69
69
|
"extends": "../../package.json"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "dda01715648e98dfe51e023fc60af9e9dd4d88ea"
|
|
72
72
|
}
|