@colijnit/homedecorator 262.1.1 → 262.1.3
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/app/core/components/dialog/co-hd-dialog.component.scss +39 -0
- package/app/plugins/render/render-progress/render-progress.component.scss +57 -10
- package/app/plugins/room-planner/components/configuration-preset-loader/configuration-preset-loader.component.scss +65 -0
- package/fesm2022/colijnit-homedecorator.mjs +1523 -1590
- package/fesm2022/colijnit-homedecorator.mjs.map +1 -1
- package/index.d.ts +162 -185
- package/package.json +2 -2
- package/style/_variables.scss +1 -1
- package/style/styles.scss +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/homedecorator",
|
|
3
|
-
"version": "262.1.
|
|
3
|
+
"version": "262.1.3",
|
|
4
4
|
"description": "Homedecorator application based on 262 version of iOne backend",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@colijnit/configurator": ">=262.1.0",
|
|
15
15
|
"@colijnit/configuratorapi": ">=262.1.0",
|
|
16
16
|
"@colijnit/corecomponents_v12": ">=262.1.0",
|
|
17
|
-
"@colijnit/ioneconnector": ">=262.1.
|
|
17
|
+
"@colijnit/ioneconnector": ">=262.1.3",
|
|
18
18
|
"@colijnit/mainapi": ">=262.1.1",
|
|
19
19
|
"@colijnit/relationapi": ">=262.1.0",
|
|
20
20
|
"@colijnit/transactionapi": ">=262.1.0"
|
package/style/_variables.scss
CHANGED
|
@@ -3,6 +3,6 @@ $add-to-cart-button-color: #da9803 !default;
|
|
|
3
3
|
$hd-color-main: #da9803 !default;
|
|
4
4
|
$hd-color-main-accent: #da980380 !default;
|
|
5
5
|
|
|
6
|
-
$hd-color-dialog-background: #
|
|
6
|
+
$hd-color-dialog-background: #FAF8F7 !default;
|
|
7
7
|
|
|
8
8
|
$hd-color-active-dark: #212437 !default;
|
package/style/styles.scss
CHANGED
|
@@ -423,7 +423,6 @@ canvas {
|
|
|
423
423
|
@import '@colijnit/configurator/lib/components/scene-options/style/material.scss';
|
|
424
424
|
@import '@colijnit/configurator/lib/components/progress-bar/style/material.scss';
|
|
425
425
|
@import '@colijnit/configurator/lib/components/configurator-dialog/style/material.scss';
|
|
426
|
-
@import '@colijnit/configurator/lib/components/threedselector/style/material.scss';
|
|
427
426
|
@import '@colijnit/configurator/lib/components/element-toolbar/style/material.scss';
|
|
428
427
|
@import '@colijnit/configurator/lib/components/element-buttons/style/material.scss';
|
|
429
428
|
@import '@colijnit/configurator/lib/components/product-configurator/style/material.scss';
|