kitchen-simulator 1.0.0-clark.103 → 1.0.0-clark.105
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/es/models.js +2 -3
- package/lib/models.js +2 -3
- package/package.json +1 -1
package/es/models.js
CHANGED
|
@@ -33,14 +33,13 @@ export var Grid = /*#__PURE__*/function (_Record) {
|
|
|
33
33
|
type: '',
|
|
34
34
|
properties: Map()
|
|
35
35
|
}, 'Grid'));
|
|
36
|
-
var color = new THREE.Color('rgb(193, 202, 228)');
|
|
37
36
|
export var DefaultGrids = new Map({
|
|
38
37
|
h1: new Grid({
|
|
39
38
|
id: 'h1',
|
|
40
39
|
type: 'horizontal-streak',
|
|
41
40
|
properties: {
|
|
42
41
|
step: 24,
|
|
43
|
-
colors: ['
|
|
42
|
+
colors: ['#c1cae473'] // dot's color
|
|
44
43
|
}
|
|
45
44
|
}),
|
|
46
45
|
v1: new Grid({
|
|
@@ -48,7 +47,7 @@ export var DefaultGrids = new Map({
|
|
|
48
47
|
type: 'vertical-streak',
|
|
49
48
|
properties: {
|
|
50
49
|
step: 24,
|
|
51
|
-
colors: ['
|
|
50
|
+
colors: ['#c1cae473'] // dot's color
|
|
52
51
|
}
|
|
53
52
|
})
|
|
54
53
|
});
|
package/lib/models.js
CHANGED
|
@@ -40,14 +40,13 @@ var Grid = exports.Grid = /*#__PURE__*/function (_Record) {
|
|
|
40
40
|
type: '',
|
|
41
41
|
properties: (0, _immutable.Map)()
|
|
42
42
|
}, 'Grid'));
|
|
43
|
-
var color = new THREE.Color('rgb(193, 202, 228)');
|
|
44
43
|
var DefaultGrids = exports.DefaultGrids = new _immutable.Map({
|
|
45
44
|
h1: new Grid({
|
|
46
45
|
id: 'h1',
|
|
47
46
|
type: 'horizontal-streak',
|
|
48
47
|
properties: {
|
|
49
48
|
step: 24,
|
|
50
|
-
colors: ['
|
|
49
|
+
colors: ['#c1cae473'] // dot's color
|
|
51
50
|
}
|
|
52
51
|
}),
|
|
53
52
|
v1: new Grid({
|
|
@@ -55,7 +54,7 @@ var DefaultGrids = exports.DefaultGrids = new _immutable.Map({
|
|
|
55
54
|
type: 'vertical-streak',
|
|
56
55
|
properties: {
|
|
57
56
|
step: 24,
|
|
58
|
-
colors: ['
|
|
57
|
+
colors: ['#c1cae473'] // dot's color
|
|
59
58
|
}
|
|
60
59
|
})
|
|
61
60
|
});
|