@colijnit/configurator 1.0.21 → 1.0.22
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/builder.d.ts +53 -0
- package/app/components/answers/answer/answer.component.d.ts +11 -0
- package/app/components/answers/answers.component.d.ts +8 -0
- package/app/components/answers/answers.module.d.ts +2 -0
- package/app/components/selections/selections.component.d.ts +22 -0
- package/app/components/selections/selections.module.d.ts +2 -0
- package/app/components/shared/loader/loader.component.d.ts +2 -0
- package/app/components/shared/shared.module.d.ts +2 -0
- package/app/directives/visibility-observer-master.directive.d.ts +9 -0
- package/app/directives/visibility-observer.directive.d.ts +13 -0
- package/app/services/configurator.service.d.ts +22 -0
- package/app/services/image-cache.service.d.ts +10 -0
- package/app/services/locator.service.d.ts +4 -0
- package/bundles/colijnit-configurator.umd.js +2745 -0
- package/bundles/colijnit-configurator.umd.js.map +1 -0
- package/bundles/colijnit-configurator.umd.min.js +17 -0
- package/bundles/colijnit-configurator.umd.min.js.map +1 -0
- package/colijnit-configurator.d.ts +10 -0
- package/colijnit-configurator.metadata.json +1 -0
- package/esm2015/app/builder.js +477 -0
- package/esm2015/app/components/answers/answer/answer.component.js +69 -0
- package/esm2015/app/components/answers/answers.component.js +43 -0
- package/esm2015/app/components/answers/answers.module.js +29 -0
- package/esm2015/app/components/selections/selections.component.js +134 -0
- package/esm2015/app/components/selections/selections.module.js +23 -0
- package/esm2015/app/components/shared/loader/loader.component.js +24 -0
- package/esm2015/app/components/shared/shared.module.js +21 -0
- package/esm2015/app/directives/visibility-observer-master.directive.js +51 -0
- package/esm2015/app/directives/visibility-observer.directive.js +57 -0
- package/esm2015/app/services/configurator.service.js +94 -0
- package/esm2015/app/services/image-cache.service.js +66 -0
- package/esm2015/app/services/locator.service.js +10 -0
- package/esm2015/colijnit-configurator.js +11 -0
- package/esm2015/helper/variation-helper.js +216 -0
- package/esm2015/model/material.js +11 -0
- package/esm2015/model/variation-settings.js +6 -0
- package/esm2015/model/variation.js +3 -0
- package/esm2015/public_api.js +7 -0
- package/esm2015/utils/asset.utils.js +74 -0
- package/esm2015/utils/file.utils.js +139 -0
- package/esm2015/utils/image.utils.js +52 -0
- package/esm2015/utils/object.utils.js +49 -0
- package/esm2015/utils/scene-utils.js +94 -0
- package/esm2015/utils/threed.utils.js +222 -0
- package/esm2015/utils/variation-utils.js +224 -0
- package/esm5/app/builder.js +591 -0
- package/esm5/app/components/answers/answer/answer.component.js +64 -0
- package/esm5/app/components/answers/answers.component.js +27 -0
- package/esm5/app/components/answers/answers.module.js +32 -0
- package/esm5/app/components/selections/selections.component.js +104 -0
- package/esm5/app/components/selections/selections.module.js +26 -0
- package/esm5/app/components/shared/loader/loader.component.js +16 -0
- package/esm5/app/components/shared/shared.module.js +24 -0
- package/esm5/app/directives/visibility-observer-master.directive.js +64 -0
- package/esm5/app/directives/visibility-observer.directive.js +59 -0
- package/esm5/app/services/configurator.service.js +160 -0
- package/esm5/app/services/image-cache.service.js +69 -0
- package/esm5/app/services/locator.service.js +13 -0
- package/esm5/colijnit-configurator.js +11 -0
- package/esm5/helper/variation-helper.js +268 -0
- package/esm5/model/material.js +13 -0
- package/esm5/model/variation-settings.js +8 -0
- package/esm5/model/variation.js +7 -0
- package/esm5/public_api.js +7 -0
- package/esm5/utils/asset.utils.js +106 -0
- package/esm5/utils/file.utils.js +151 -0
- package/esm5/utils/image.utils.js +56 -0
- package/esm5/utils/object.utils.js +56 -0
- package/esm5/utils/scene-utils.js +98 -0
- package/esm5/utils/threed.utils.js +279 -0
- package/esm5/utils/variation-utils.js +327 -0
- package/fesm2015/colijnit-configurator.js +2109 -0
- package/fesm2015/colijnit-configurator.js.map +1 -0
- package/fesm5/colijnit-configurator.js +2527 -0
- package/fesm5/colijnit-configurator.js.map +1 -0
- package/helper/variation-helper.d.ts +14 -0
- package/model/material.d.ts +17 -0
- package/model/variation-settings.d.ts +14 -0
- package/model/variation.d.ts +10 -0
- package/package.json +12 -45
- package/{src/public_api.ts → public_api.d.ts} +6 -6
- package/utils/asset.utils.d.ts +13 -0
- package/utils/file.utils.d.ts +27 -0
- package/utils/image.utils.d.ts +8 -0
- package/utils/object.utils.d.ts +7 -0
- package/utils/scene-utils.d.ts +7 -0
- package/utils/threed.utils.d.ts +16 -0
- package/utils/variation-utils.d.ts +12 -0
- package/.idea/Configurator.iml +0 -12
- package/.idea/codeStyles/Project.xml +0 -21
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/misc.xml +0 -9
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/angular.json +0 -193
- package/configurator.iml +0 -11
- package/dist/configurator/index.html +0 -14
- package/dist/configurator/main-es2015.js +0 -3129
- package/dist/configurator/main-es2015.js.map +0 -1
- package/dist/configurator/main-es5.js +0 -5482
- package/dist/configurator/main-es5.js.map +0 -1
- package/dist/configurator/polyfills-es2015.js +0 -4520
- package/dist/configurator/polyfills-es2015.js.map +0 -1
- package/dist/configurator/polyfills-es5.js +0 -18375
- package/dist/configurator/polyfills-es5.js.map +0 -1
- package/dist/configurator/runtime-es2015.js +0 -155
- package/dist/configurator/runtime-es2015.js.map +0 -1
- package/dist/configurator/runtime-es5.js +0 -155
- package/dist/configurator/runtime-es5.js.map +0 -1
- package/dist/configurator/styles-es2015.js +0 -450
- package/dist/configurator/styles-es2015.js.map +0 -1
- package/dist/configurator/styles-es5.js +0 -432
- package/dist/configurator/styles-es5.js.map +0 -1
- package/dist/configurator/vendor-es2015.js +0 -155551
- package/dist/configurator/vendor-es2015.js.map +0 -1
- package/dist/configurator/vendor-es5.js +0 -183588
- package/dist/configurator/vendor-es5.js.map +0 -1
- package/ng-package.json +0 -9
- package/src/app/app.component.ts +0 -222
- package/src/app/app.module.ts +0 -34
- package/src/app/builder.ts +0 -480
- package/src/app/components/answers/answer/answer.component.ts +0 -61
- package/src/app/components/answers/answers.component.ts +0 -41
- package/src/app/components/answers/answers.module.ts +0 -26
- package/src/app/components/selections/selections.component.ts +0 -131
- package/src/app/components/selections/selections.module.ts +0 -20
- package/src/app/components/shared/loader/loader.component.scss +0 -33
- package/src/app/components/shared/loader/loader.component.ts +0 -20
- package/src/app/components/shared/shared.module.ts +0 -16
- package/src/app/directives/visibility-observer-master.directive.ts +0 -71
- package/src/app/directives/visibility-observer.directive.ts +0 -74
- package/src/app/services/configurator.service.ts +0 -86
- package/src/app/services/image-cache.service.ts +0 -56
- package/src/app/services/locator.service.ts +0 -6
- package/src/environments/environment.prod.ts +0 -3
- package/src/environments/environment.ts +0 -8
- package/src/helper/variation-helper.ts +0 -220
- package/src/index.html +0 -14
- package/src/main.ts +0 -11
- package/src/model/material.ts +0 -22
- package/src/model/variation-settings.ts +0 -14
- package/src/model/variation.ts +0 -11
- package/src/polyfills.ts +0 -73
- package/src/style/shared.scss +0 -173
- package/src/style/styles.scss +0 -45
- package/src/tsconfig.app.json +0 -16
- package/src/tsconfig.spec.json +0 -19
- package/src/utils/asset.utils.ts +0 -88
- package/src/utils/file.utils.ts +0 -156
- package/src/utils/file.utils.unit.test.ts +0 -8
- package/src/utils/image.utils.ts +0 -54
- package/src/utils/object.utils.ts +0 -52
- package/src/utils/scene-utils.ts +0 -119
- package/src/utils/threed.utils.ts +0 -219
- package/src/utils/variation-utils.ts +0 -216
- package/tsconfig.json +0 -23
- package/tslint.json +0 -132
package/tslint.json
DELETED
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"rulesDirectory": [
|
|
3
|
-
"node_modules/codelyzer"
|
|
4
|
-
],
|
|
5
|
-
"rules": {
|
|
6
|
-
"arrow-return-shorthand": true,
|
|
7
|
-
"callable-types": true,
|
|
8
|
-
"class-name": true,
|
|
9
|
-
"comment-format": [
|
|
10
|
-
true,
|
|
11
|
-
"check-space"
|
|
12
|
-
],
|
|
13
|
-
"curly": true,
|
|
14
|
-
"eofline": true,
|
|
15
|
-
"forin": true,
|
|
16
|
-
"import-blacklist": [
|
|
17
|
-
true
|
|
18
|
-
],
|
|
19
|
-
"import-spacing": true,
|
|
20
|
-
"indent": [
|
|
21
|
-
true,
|
|
22
|
-
"spaces"
|
|
23
|
-
],
|
|
24
|
-
"interface-over-type-literal": true,
|
|
25
|
-
"label-position": true,
|
|
26
|
-
"max-line-length": [
|
|
27
|
-
true,
|
|
28
|
-
140
|
|
29
|
-
],
|
|
30
|
-
"member-access": false,
|
|
31
|
-
"member-ordering": [
|
|
32
|
-
true,
|
|
33
|
-
"static-before-instance",
|
|
34
|
-
"variables-before-functions"
|
|
35
|
-
],
|
|
36
|
-
"no-arg": true,
|
|
37
|
-
"no-bitwise": true,
|
|
38
|
-
"no-console": [
|
|
39
|
-
true,
|
|
40
|
-
"debug",
|
|
41
|
-
"info",
|
|
42
|
-
"time",
|
|
43
|
-
"timeEnd",
|
|
44
|
-
"trace"
|
|
45
|
-
],
|
|
46
|
-
"no-construct": true,
|
|
47
|
-
"no-debugger": true,
|
|
48
|
-
"no-duplicate-super": true,
|
|
49
|
-
"no-empty": false,
|
|
50
|
-
"no-empty-interface": true,
|
|
51
|
-
"no-eval": true,
|
|
52
|
-
"no-inferrable-types": [
|
|
53
|
-
true,
|
|
54
|
-
"ignore-params"
|
|
55
|
-
],
|
|
56
|
-
"no-misused-new": true,
|
|
57
|
-
"no-non-null-assertion": true,
|
|
58
|
-
"no-shadowed-variable": true,
|
|
59
|
-
"no-string-literal": false,
|
|
60
|
-
"no-string-throw": true,
|
|
61
|
-
"no-switch-case-fall-through": true,
|
|
62
|
-
"no-trailing-whitespace": true,
|
|
63
|
-
"no-unnecessary-initializer": true,
|
|
64
|
-
"no-unused-expression": true,
|
|
65
|
-
"no-use-before-declare": true,
|
|
66
|
-
"no-var-keyword": true,
|
|
67
|
-
"object-literal-sort-keys": false,
|
|
68
|
-
"one-line": [
|
|
69
|
-
true,
|
|
70
|
-
"check-open-brace",
|
|
71
|
-
"check-catch",
|
|
72
|
-
"check-else",
|
|
73
|
-
"check-whitespace"
|
|
74
|
-
],
|
|
75
|
-
"prefer-const": true,
|
|
76
|
-
"quotemark": [
|
|
77
|
-
true,
|
|
78
|
-
"single"
|
|
79
|
-
],
|
|
80
|
-
"radix": true,
|
|
81
|
-
"semicolon": [
|
|
82
|
-
"always"
|
|
83
|
-
],
|
|
84
|
-
"triple-equals": [
|
|
85
|
-
true,
|
|
86
|
-
"allow-null-check"
|
|
87
|
-
],
|
|
88
|
-
"typedef-whitespace": [
|
|
89
|
-
true,
|
|
90
|
-
{
|
|
91
|
-
"call-signature": "nospace",
|
|
92
|
-
"index-signature": "nospace",
|
|
93
|
-
"parameter": "nospace",
|
|
94
|
-
"property-declaration": "nospace",
|
|
95
|
-
"variable-declaration": "nospace"
|
|
96
|
-
}
|
|
97
|
-
],
|
|
98
|
-
"typeof-compare": true,
|
|
99
|
-
"unified-signatures": true,
|
|
100
|
-
"variable-name": false,
|
|
101
|
-
"whitespace": [
|
|
102
|
-
true,
|
|
103
|
-
"check-branch",
|
|
104
|
-
"check-decl",
|
|
105
|
-
"check-operator",
|
|
106
|
-
"check-separator",
|
|
107
|
-
"check-type"
|
|
108
|
-
],
|
|
109
|
-
"directive-selector": [
|
|
110
|
-
true,
|
|
111
|
-
"attribute",
|
|
112
|
-
"camelCase"
|
|
113
|
-
],
|
|
114
|
-
"component-selector": [
|
|
115
|
-
true,
|
|
116
|
-
"element",
|
|
117
|
-
"kebab-case"
|
|
118
|
-
],
|
|
119
|
-
"no-inputs-metadata-property": true,
|
|
120
|
-
"no-outputs-metadata-property": true,
|
|
121
|
-
"no-host-metadata-property": true,
|
|
122
|
-
"no-input-rename": true,
|
|
123
|
-
"no-output-rename": true,
|
|
124
|
-
"use-lifecycle-interface": true,
|
|
125
|
-
"use-pipe-transform-interface": true,
|
|
126
|
-
"component-class-suffix": true,
|
|
127
|
-
"directive-class-suffix": true,
|
|
128
|
-
"no-access-missing-member": true,
|
|
129
|
-
"templates-use-public": true,
|
|
130
|
-
"invoke-injectable": true
|
|
131
|
-
}
|
|
132
|
-
}
|