@uniformdev/context-devtools 12.2.1-alpha.184 → 13.0.1-alpha.132
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 +914 -0
- package/dist/index.d.ts +83 -0
- package/dist/index.js +881 -4
- package/package.json +19 -33
- 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,57 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/context-devtools",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.1-alpha.132+8cada5baa",
|
|
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
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"eslint-plugin-react": "7.28.0",
|
|
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"
|
|
19
|
+
"@types/chrome": "0.0.180",
|
|
20
|
+
"@types/react": "17.0.44",
|
|
21
|
+
"autoprefixer": "10.4.4",
|
|
22
|
+
"postcss": "8.4.12",
|
|
23
|
+
"tsup": "5.12.1"
|
|
44
24
|
},
|
|
45
25
|
"dependencies": {
|
|
46
|
-
"@
|
|
26
|
+
"@emotion/react": "^11.8.1",
|
|
27
|
+
"@uniformdev/context": "^13.0.1-alpha.132+8cada5baa",
|
|
28
|
+
"@uniformdev/design-system": "^13.0.1-alpha.132+8cada5baa",
|
|
47
29
|
"formik": "2.2.9",
|
|
48
30
|
"react": "^17.0.2",
|
|
49
31
|
"react-dom": "^17.0.2",
|
|
50
32
|
"react-use": "17.3.2",
|
|
33
|
+
"reakit": "1.3.11",
|
|
51
34
|
"yup": "^0.32.11"
|
|
52
35
|
},
|
|
53
36
|
"files": [
|
|
54
37
|
"/dist"
|
|
55
38
|
],
|
|
56
|
-
"
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public"
|
|
41
|
+
},
|
|
42
|
+
"gitHead": "8cada5baa3a3cb2a601eeca9c7587ac358d476b3"
|
|
57
43
|
}
|