@colijnit/configurator 262.1.8 → 262.1.10
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/fesm2022/colijnit-configurator.mjs +2430 -789
- package/fesm2022/colijnit-configurator.mjs.map +1 -1
- package/index.d.ts +321 -81
- package/lib/components/answer-info-dialog/style/_theme.scss +3 -3
- package/lib/components/answers-slideout/style/_layout.scss +10 -10
- package/lib/components/configuration-preset/style/_layout.scss +1 -1
- package/lib/components/configuration-preset/style/_theme.scss +2 -2
- package/lib/components/configuration-preset-dialog/style/_theme.scss +7 -7
- package/lib/components/configurator-dialog/style/_theme.scss +5 -5
- package/lib/components/configurator-scene/style/_layout.scss +1 -0
- package/lib/components/element-buttons/style/_layout.scss +13 -12
- package/lib/components/element-buttons/style/_material-definition.scss +9 -0
- package/lib/components/element-buttons/style/_theme.scss +15 -7
- package/lib/components/element-toolbar/style/_layout.scss +30 -4
- package/lib/components/element-toolbar/style/_material-definition.scss +3 -1
- package/lib/components/element-toolbar/style/_theme.scss +13 -12
- package/lib/components/product-configurator/style/_layout.scss +18 -7
- package/lib/components/product-configurator/style/_theme.scss +3 -3
- package/lib/components/product-configurator-grouped-repeatable-options/style/_layout.scss +74 -0
- package/lib/components/product-configurator-grouped-repeatable-options/style/_material-definition.scss +12 -0
- package/lib/components/product-configurator-grouped-repeatable-options/style/_theme.scss +75 -0
- package/lib/components/product-configurator-grouped-repeatable-options/style/material.scss +3 -0
- package/lib/components/product-configurator-repeat-buttons/style/_layout.scss +24 -0
- package/lib/components/product-configurator-repeat-buttons/style/_material-definition.scss +3 -0
- package/lib/components/product-configurator-repeat-buttons/style/_theme.scss +24 -0
- package/lib/components/product-configurator-repeat-buttons/style/material.scss +3 -0
- package/lib/components/product-configurator-selector/style/_layout.scss +36 -3
- package/lib/components/product-configurator-selector/style/_theme.scss +41 -22
- package/lib/components/product-configurator-selector-child-article/style/_layout.scss +40 -0
- package/lib/components/product-configurator-selector-child-article/style/_material-definition.scss +3 -0
- package/lib/components/product-configurator-selector-child-article/style/_theme.scss +29 -0
- package/lib/components/product-configurator-selector-child-article/style/material.scss +3 -0
- package/lib/components/product-configurator-selector-option/style/_theme.scss +18 -1
- package/lib/components/product-configurator-selector-option-button/style/_theme.scss +5 -5
- package/lib/components/product-configurator-selector-option-checkbox/style/_theme.scss +9 -9
- package/lib/components/product-configurator-selector-option-dropdown/style/_theme.scss +2 -2
- package/lib/components/product-configurator-selector-option-tile/style/_layout.scss +1 -1
- package/lib/components/product-configurator-selector-option-tile/style/_theme.scss +52 -21
- package/lib/components/product-configurator-slideout/style/_layout.scss +38 -0
- package/lib/components/product-configurator-slideout/style/_material-definition.scss +3 -0
- package/lib/components/product-configurator-slideout/style/_theme.scss +30 -0
- package/lib/components/product-configurator-slideout/style/material.scss +3 -0
- package/lib/components/summary-line/style/_theme.scss +6 -6
- package/lib/style/_variables.scss +50 -40
- package/package.json +10 -10
- package/colijnit-configurator-262.1.7.tgz +0 -0
|
@@ -1,58 +1,68 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
/* tile container */
|
|
3
|
-
--tile-container-background: #EBEBED;
|
|
3
|
+
--co-configurator-tile-container-background: #EBEBED;
|
|
4
4
|
|
|
5
5
|
/* tiles */
|
|
6
|
-
--border-color: transparent;
|
|
7
|
-
--border-color-active: #979284;
|
|
8
|
-
--default-border-radius: 3px;
|
|
9
|
-
--circle-border-radius: 50%;
|
|
10
|
-
--tile-background-color: #FFFFFF;
|
|
11
|
-
--default-padding: 5px;
|
|
6
|
+
--co-configurator-border-color: transparent;
|
|
7
|
+
--co-configurator-border-color-active: #979284;
|
|
8
|
+
--co-configurator-default-border-radius: 3px;
|
|
9
|
+
--co-configurator-circle-border-radius: 50%;
|
|
10
|
+
--co-configurator-tile-background-color: #FFFFFF;
|
|
11
|
+
--co-configurator-default-padding: 5px;
|
|
12
12
|
|
|
13
13
|
/* Dialog related */
|
|
14
|
-
--configurator-dialog-backdrop: rgba(0, 0, 0, 0.5);
|
|
15
|
-
--
|
|
14
|
+
--co-configurator-dialog-backdrop: rgba(0, 0, 0, 0.5);
|
|
15
|
+
--co-configurator-dialog-background: #fff;
|
|
16
16
|
|
|
17
17
|
/* checkmarks and icons */
|
|
18
|
-
--checked-icon-color: #FFFFFF;
|
|
19
|
-
--checked-icon-background: #979284;
|
|
20
|
-
--checked-icon-radius: 0 3px;
|
|
21
|
-
--checked-selected-icon-radius: 3px;
|
|
22
|
-
--checked-icon-padding: 3px;
|
|
23
|
-
--big-icon-height: 20px;
|
|
24
|
-
--big-icon-width: 20px;
|
|
25
|
-
--small-icon-height: 18px;
|
|
26
|
-
--small-icon-width: 18px;
|
|
27
|
-
--xs-icon-height: 16px;
|
|
28
|
-
--xs-icon-width: 16px;
|
|
18
|
+
--co-configurator-checked-icon-color: #FFFFFF;
|
|
19
|
+
--co-configurator-checked-icon-background: #979284;
|
|
20
|
+
--co-configurator-checked-icon-radius: 0 3px;
|
|
21
|
+
--co-configurator-checked-selected-icon-radius: 3px;
|
|
22
|
+
--co-configurator-checked-icon-padding: 3px;
|
|
23
|
+
--co-configurator-big-icon-height: 20px;
|
|
24
|
+
--co-configurator-big-icon-width: 20px;
|
|
25
|
+
--co-configurator-small-icon-height: 18px;
|
|
26
|
+
--co-configurator-small-icon-width: 18px;
|
|
27
|
+
--co-configurator-xs-icon-height: 16px;
|
|
28
|
+
--co-configurator-xs-icon-width: 16px;
|
|
29
29
|
|
|
30
30
|
/* states */
|
|
31
|
-
--error-color: #FF2C2C;
|
|
32
|
-
--warning-color: #ff9900;
|
|
31
|
+
--co-configurator-error-color: #FF2C2C;
|
|
32
|
+
--co-configurator-warning-color: #ff9900;
|
|
33
33
|
|
|
34
34
|
/* fontsizes */
|
|
35
|
-
--font-size-large: 20px;
|
|
36
|
-
--font-size-medium: 16px;
|
|
37
|
-
--font-size-normal: 14px;
|
|
38
|
-
--font-size-small: 12px;
|
|
39
|
-
--font-size-xs: 10px;
|
|
35
|
+
--co-configurator-font-size-large: 20px;
|
|
36
|
+
--co-configurator-font-size-medium: 16px;
|
|
37
|
+
--co-configurator-font-size-normal: 14px;
|
|
38
|
+
--co-configurator-font-size-small: 12px;
|
|
39
|
+
--co-configurator-font-size-xs: 10px;
|
|
40
40
|
|
|
41
41
|
/* fontweights */
|
|
42
|
-
--font-weight-light: 400;
|
|
43
|
-
--font-weight-normal: 500;
|
|
44
|
-
--font-weight-bold: 600;
|
|
45
|
-
--font-weight-bolder: 700;
|
|
42
|
+
--co-configurator-font-weight-light: 400;
|
|
43
|
+
--co-configurator-font-weight-normal: 500;
|
|
44
|
+
--co-configurator-font-weight-bold: 600;
|
|
45
|
+
--co-configurator-font-weight-bolder: 700;
|
|
46
46
|
|
|
47
47
|
/* Links and text color */
|
|
48
|
-
--text-color: #333333;
|
|
49
|
-
--text-color-hover: #333333;
|
|
50
|
-
--load-more-link-color: #da9803;
|
|
51
|
-
--white-text-color: #fff;
|
|
52
|
-
--link-text-color: #0070ba;
|
|
53
|
-
|
|
54
|
-
--success-text-color: #155724;
|
|
55
|
-
--success-background-color: #d4edda;
|
|
56
|
-
--success-border-color: #c3e6cb;
|
|
48
|
+
--co-configurator-text-color: #333333;
|
|
49
|
+
--co-configurator-text-color-hover: #333333;
|
|
50
|
+
--co-configurator-load-more-link-color: #da9803;
|
|
51
|
+
--co-configurator-white-text-color: #fff;
|
|
52
|
+
--co-configurator-link-text-color: #0070ba;
|
|
53
|
+
|
|
54
|
+
--co-configurator-success-text-color: #155724;
|
|
55
|
+
--co-configurator-success-background-color: #d4edda;
|
|
56
|
+
--co-configurator-success-border-color: #c3e6cb;
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
/* product-configurator-container shared styles */
|
|
60
|
+
--co-configurator-container-max-height: calc(100vh - 120px);
|
|
61
|
+
--co-configurator-container-top: 64px;
|
|
62
|
+
--co-configurator-container-padding: 15px;
|
|
63
|
+
--co-configurator-container-border-radius: 10px;
|
|
64
|
+
--co-configurator-container-right: 10px;
|
|
65
|
+
--co-configurator-container-width: 505px;
|
|
66
|
+
--co-configurator-container-background: #fff;
|
|
57
67
|
|
|
58
68
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/configurator",
|
|
3
|
-
"version": "262.1.
|
|
3
|
+
"version": "262.1.10",
|
|
4
4
|
"description": "iOne configurator specific for version 262",
|
|
5
5
|
"private": false,
|
|
6
6
|
"peerDependencies": {
|
|
@@ -9,24 +9,24 @@
|
|
|
9
9
|
"@angular/core": ">=20.0.0",
|
|
10
10
|
"@angular/material": "20.2.14",
|
|
11
11
|
"@colijnit/articleapi": ">=262.1.0",
|
|
12
|
-
"@colijnit/configuratorapi": ">=262.1.
|
|
12
|
+
"@colijnit/configuratorapi": ">=262.1.4",
|
|
13
|
+
"@colijnit/configuratorcore": ">=262.1.5",
|
|
13
14
|
"@colijnit/corecomponents_v12": ">=262.1.0",
|
|
14
|
-
"@colijnit/ioneconnector": ">=262.1.
|
|
15
|
+
"@colijnit/ioneconnector": ">=262.1.3",
|
|
15
16
|
"@colijnit/mainapi": ">=262.1.1",
|
|
16
|
-
"@colijnit/utilities": ">=262.1.
|
|
17
|
+
"@colijnit/utilities": ">=262.1.1",
|
|
18
|
+
"@types/three": "0.178.1",
|
|
19
|
+
"three": "0.178.0",
|
|
20
|
+
"three-bvh-csg": "0.0.17",
|
|
21
|
+
"three-gpu-pathtracer": "0.0.22",
|
|
22
|
+
"three-mesh-bvh": "^0.9.9"
|
|
17
23
|
},
|
|
18
24
|
"dependencies": {
|
|
19
|
-
"@colijnit/configuratorcore": "262.1.1",
|
|
20
25
|
"@tweenjs/tween.js": "25.0.0",
|
|
21
|
-
"@types/three": "0.178.1",
|
|
22
26
|
"jszip": "3.6.0",
|
|
23
27
|
"md5": "^2.3.0",
|
|
24
28
|
"n8ao": "^1.10.1",
|
|
25
29
|
"ngx-device-detector": "^10.1.0",
|
|
26
|
-
"three": "0.178.0",
|
|
27
|
-
"three-bvh-csg": "0.0.17",
|
|
28
|
-
"three-gpu-pathtracer": "0.0.22",
|
|
29
|
-
"three-mesh-bvh": "^0.9.9",
|
|
30
30
|
"tslib": "^2.3.0"
|
|
31
31
|
},
|
|
32
32
|
"module": "fesm2022/colijnit-configurator.mjs",
|
|
Binary file
|