@uniformdev/context-devtools 12.2.1-alpha.184 → 14.2.1-alpha.145
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 +768 -0
- package/dist/index.d.ts +55 -0
- package/dist/index.js +735 -4
- package/package.json +13 -32
- package/dist/index.mjs +0 -997
- package/dist/modules.d.ts +0 -9
- package/dist/src/components/Accordion/Accordion.d.ts +0 -7
- package/dist/src/components/Buttons/Button.d.ts +0 -5
- package/dist/src/components/Buttons/EmbedToggleButton.d.ts +0 -2
- package/dist/src/components/CallToAction/ConnectApiKey.d.ts +0 -3
- package/dist/src/components/CallToAction/NoActiveDimensions.d.ts +0 -8
- package/dist/src/components/CallToAction/index.d.ts +0 -2
- package/dist/src/components/ContextDevTools.d.ts +0 -22
- package/dist/src/components/EmbeddedContextDevTools.d.ts +0 -18
- package/dist/src/components/Form/Fieldset.d.ts +0 -5
- package/dist/src/components/Form/Legend.d.ts +0 -2
- package/dist/src/components/Form/index.d.ts +0 -3
- package/dist/src/components/Inputs/InputText.d.ts +0 -7
- package/dist/src/components/Inputs/SelectInput.d.ts +0 -11
- package/dist/src/components/Inputs/SwitchInput.d.ts +0 -5
- package/dist/src/components/Navigation/Menu.d.ts +0 -4
- package/dist/src/components/NotFound/NotFound.d.ts +0 -2
- package/dist/src/components/Personalization/Dimensions.d.ts +0 -3
- package/dist/src/components/Personalization/Quirks.d.ts +0 -3
- package/dist/src/components/Personalization/Settings.d.ts +0 -3
- package/dist/src/components/Personalization/index.d.ts +0 -4
- package/dist/src/components/Table/Table.d.ts +0 -17
- package/dist/src/components/Table/index.d.ts +0 -2
- package/dist/src/hooks/useDimensionIndex.d.ts +0 -12
- package/dist/src/index.d.ts +0 -2
- package/dist/style.css +0 -1
package/package.json
CHANGED
|
@@ -1,49 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/context-devtools",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.2.1-alpha.145+a3b9cfa67",
|
|
4
4
|
"description": "Uniform Context developer tools components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
|
-
"module": "./dist/index.
|
|
8
|
-
"
|
|
9
|
-
".": {
|
|
10
|
-
"import": "./dist/index.mjs",
|
|
11
|
-
"require": "./dist/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./style": "./dist/style.css"
|
|
14
|
-
},
|
|
15
|
-
"types": "./dist/src/index.d.ts",
|
|
7
|
+
"module": "./dist/esm/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
16
9
|
"sideEffects": false,
|
|
17
10
|
"scripts": {
|
|
18
|
-
"build": "
|
|
19
|
-
"dev": "
|
|
11
|
+
"build": "tsup --minify",
|
|
12
|
+
"dev": "tsup --watch",
|
|
20
13
|
"clean": "rimraf dist",
|
|
21
14
|
"test": "jest --maxWorkers=1 --passWithNoTests",
|
|
22
15
|
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
|
23
|
-
"format": "prettier --write \"src/**/*.{js,ts,tsx}\""
|
|
24
|
-
"ci:verify": "run-p lint test",
|
|
25
|
-
"ci:build": "vite build --minify --emptyOutDir"
|
|
16
|
+
"format": "prettier --write \"src/**/*.{js,ts,tsx}\""
|
|
26
17
|
},
|
|
27
18
|
"devDependencies": {
|
|
28
|
-
"@types/
|
|
29
|
-
"@types/
|
|
30
|
-
"@types/react": "17.0.39",
|
|
19
|
+
"@types/chrome": "0.0.179",
|
|
20
|
+
"@types/react": "17.0.40",
|
|
31
21
|
"autoprefixer": "10.4.2",
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"eslint-plugin-react-hooks": "4.3.0",
|
|
35
|
-
"jest": "27.4.7",
|
|
36
|
-
"npm-run-all": "4.1.5",
|
|
37
|
-
"postcss": "8.4.6",
|
|
38
|
-
"rimraf": "3.0.2",
|
|
39
|
-
"ts-jest": "27.1.3",
|
|
40
|
-
"typescript": "4.5.5",
|
|
41
|
-
"typescript-plugin-css-modules": "^3.4.0",
|
|
42
|
-
"vite": "2.6.14",
|
|
43
|
-
"vite-plugin-dts": "^0.9.9"
|
|
22
|
+
"postcss": "8.4.8",
|
|
23
|
+
"tsup": "5.12.1"
|
|
44
24
|
},
|
|
45
25
|
"dependencies": {
|
|
46
|
-
"@
|
|
26
|
+
"@emotion/react": "^11.8.1",
|
|
27
|
+
"@uniformdev/context": "^14.2.1-alpha.145+a3b9cfa67",
|
|
47
28
|
"formik": "2.2.9",
|
|
48
29
|
"react": "^17.0.2",
|
|
49
30
|
"react-dom": "^17.0.2",
|
|
@@ -53,5 +34,5 @@
|
|
|
53
34
|
"files": [
|
|
54
35
|
"/dist"
|
|
55
36
|
],
|
|
56
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "a3b9cfa674c238d67d33e04527fc43f97cc1a20e"
|
|
57
38
|
}
|