@uniformdev/context-devtools 20.50.1 → 20.50.2-alpha.109
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/esm/index.js +0 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +0 -2
- package/package.json +6 -7
package/dist/esm/index.js
CHANGED
|
@@ -638,10 +638,8 @@ function computeOverrideEffects({ manifest, visitor, override }) {
|
|
|
638
638
|
return changes;
|
|
639
639
|
}
|
|
640
640
|
var CopyTransitionDataStore = class extends TransitionDataStore {
|
|
641
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
642
641
|
async handleDelete() {
|
|
643
642
|
}
|
|
644
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
645
643
|
async handleUpdateData() {
|
|
646
644
|
}
|
|
647
645
|
};
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
2
|
-
import { ManifestV2, VisitorData,
|
|
2
|
+
import { ManifestV2, VisitorData, DevToolsState, DevToolsActions, OutputSeverity, Context } from '@uniformdev/context';
|
|
3
3
|
import { DimensionDisplayData, Quirk } from '@uniformdev/context/api';
|
|
4
4
|
|
|
5
5
|
type FullDimensionData = DimensionDisplayData & {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
2
|
-
import { ManifestV2, VisitorData,
|
|
2
|
+
import { ManifestV2, VisitorData, DevToolsState, DevToolsActions, OutputSeverity, Context } from '@uniformdev/context';
|
|
3
3
|
import { DimensionDisplayData, Quirk } from '@uniformdev/context/api';
|
|
4
4
|
|
|
5
5
|
type FullDimensionData = DimensionDisplayData & {
|
package/dist/index.js
CHANGED
|
@@ -671,10 +671,8 @@ function computeOverrideEffects({ manifest, visitor, override }) {
|
|
|
671
671
|
return changes;
|
|
672
672
|
}
|
|
673
673
|
var CopyTransitionDataStore = class extends import_context.TransitionDataStore {
|
|
674
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
675
674
|
async handleDelete() {
|
|
676
675
|
}
|
|
677
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
678
676
|
async handleUpdateData() {
|
|
679
677
|
}
|
|
680
678
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/context-devtools",
|
|
3
|
-
"version": "20.50.
|
|
3
|
+
"version": "20.50.2-alpha.109+846837c66a",
|
|
4
4
|
"description": "Uniform Context developer tools components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -11,10 +11,9 @@
|
|
|
11
11
|
"build": "tsup",
|
|
12
12
|
"dev": "tsup --watch",
|
|
13
13
|
"clean": "rimraf dist",
|
|
14
|
-
"test": "
|
|
15
|
-
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
|
14
|
+
"test": "vitest run",
|
|
16
15
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\"",
|
|
17
|
-
"
|
|
16
|
+
"apidocs-extract": "api-extractor run --local"
|
|
18
17
|
},
|
|
19
18
|
"peerDependencies": {
|
|
20
19
|
"react": ">=17 || 17 || 18",
|
|
@@ -31,8 +30,8 @@
|
|
|
31
30
|
},
|
|
32
31
|
"dependencies": {
|
|
33
32
|
"@emotion/react": "11.14.0",
|
|
34
|
-
"@uniformdev/context": "20.50.
|
|
35
|
-
"@uniformdev/design-system": "20.50.
|
|
33
|
+
"@uniformdev/context": "20.50.2-alpha.109+846837c66a",
|
|
34
|
+
"@uniformdev/design-system": "20.50.2-alpha.109+846837c66a",
|
|
36
35
|
"formik": "^2.2.9",
|
|
37
36
|
"react-use": "^17.4.0",
|
|
38
37
|
"yup": "^0.32.11"
|
|
@@ -43,5 +42,5 @@
|
|
|
43
42
|
"publishConfig": {
|
|
44
43
|
"access": "public"
|
|
45
44
|
},
|
|
46
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "846837c66ad0f518683c100615b59b27f91498ba"
|
|
47
46
|
}
|