@deephaven/grid 0.21.2-beta.2 → 0.21.2-beta.6
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/CellInputField.css.map +1 -1
- package/dist/Grid.css.map +1 -1
- package/package.json +6 -14
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../src/CellInputField.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AACA;EACE","file":"CellInputField.css"}
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../src/CellInputField.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AACA;EACE","file":"CellInputField.css","sourcesContent":[".grid-cell-input-field {\n color: #e5e5e5;\n background: #393939;\n border: none;\n width: 100%;\n height: 100%;\n padding: 2px 5px 3px 5px;\n border-radius: 2px;\n resize: none;\n\n &:focus {\n outline: none;\n border: none;\n box-shadow: 0 0 0 2px blue;\n }\n\n &.error {\n color: red;\n &:focus {\n box-shadow: 0 0 0 2px red;\n }\n }\n}\n"]}
|
package/dist/Grid.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../src/Grid.scss"],"names":[],"mappings":"AAAA;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE","file":"Grid.css"}
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../src/Grid.scss"],"names":[],"mappings":"AAAA;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE","file":"Grid.css","sourcesContent":[".grid-canvas {\n display: block;\n}\n.grid-canvas:focus {\n outline: none;\n}\n.grid-cursor-default {\n cursor: default;\n}\n.grid-cursor-move {\n cursor: grabbing;\n}\n.grid-cursor-not-allowed {\n cursor: not-allowed;\n}\n.grid-cursor-s-resize {\n cursor: s-resize;\n}\n.grid-cursor-row-resize {\n cursor: row-resize;\n}\n.grid-cursor-e-resize {\n cursor: e-resize;\n}\n.grid-cursor-col-resize {\n cursor: col-resize;\n}\n.grid-cursor-pointer {\n cursor: pointer;\n}\n.grid-block-events {\n pointer-events: none;\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven/grid",
|
|
3
|
-
"version": "0.21.2-beta.
|
|
3
|
+
"version": "0.21.2-beta.6+cc6ad9f",
|
|
4
4
|
"description": "Deephaven React grid component",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -18,28 +18,20 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "cross-env NODE_ENV=production run-p build:*",
|
|
21
|
-
"build
|
|
22
|
-
"
|
|
23
|
-
"sass": "sass ./src:./dist",
|
|
24
|
-
"build:babel": "npm run babel",
|
|
25
|
-
"build:sass": "npm run sass",
|
|
26
|
-
"watch": "run-p watch:*",
|
|
27
|
-
"watch:babel": "npm run babel -- -w --skip-initial-build",
|
|
28
|
-
"watch:sass": "npm run sass -- --watch --update",
|
|
29
|
-
"prestart": "npm run build-dev",
|
|
30
|
-
"start": "cross-env NODE_ENV=development npm run watch"
|
|
21
|
+
"build:babel": "babel ./src --out-dir ./dist --extensions \".ts,.tsx,.js,.jsx\" --source-maps --root-mode upward",
|
|
22
|
+
"build:sass": "sass --embed-sources --load-path=../../node_modules ./src:./dist"
|
|
31
23
|
},
|
|
32
24
|
"peerDependencies": {
|
|
33
25
|
"react": "^17.0.0"
|
|
34
26
|
},
|
|
35
27
|
"devDependencies": {
|
|
36
|
-
"@deephaven/tsconfig": "^0.21.2-beta.
|
|
28
|
+
"@deephaven/tsconfig": "^0.21.2-beta.6+cc6ad9f"
|
|
37
29
|
},
|
|
38
30
|
"files": [
|
|
39
31
|
"dist"
|
|
40
32
|
],
|
|
41
33
|
"dependencies": {
|
|
42
|
-
"@deephaven/utils": "^0.21.2-beta.
|
|
34
|
+
"@deephaven/utils": "^0.21.2-beta.6+cc6ad9f",
|
|
43
35
|
"classnames": "^2.3.1",
|
|
44
36
|
"color-convert": "^2.0.1",
|
|
45
37
|
"event-target-shim": "^6.0.2",
|
|
@@ -51,5 +43,5 @@
|
|
|
51
43
|
"publishConfig": {
|
|
52
44
|
"access": "public"
|
|
53
45
|
},
|
|
54
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "cc6ad9f17d6d744a3b80c5af92411f73fad2e6c4"
|
|
55
47
|
}
|