@roomle/embedding-lib 1.0.0-alpha.1
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/.releaserc.json +60 -0
- package/README.md +13 -0
- package/docs/md/web/embedding/CHANGELOG.md +2121 -0
- package/index.d.ts +72 -0
- package/package.json +35 -0
- package/roomle-embedding-lib.es.js +431 -0
- package/roomle-embedding-lib.es.min.js +8 -0
- package/roomle-embedding-lib.umd.js +8 -0
- package/roomle-embedding-lib.umd.min.js +8 -0
|
@@ -0,0 +1,2121 @@
|
|
|
1
|
+
## 1.0.0-alpha.1 (2024-08-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* instead of returning only the fullList we return now the whole partList object
|
|
7
|
+
|
|
8
|
+
This means that you need to change from `fullList` to `partList.fullList`, this affects the following parts:
|
|
9
|
+
|
|
10
|
+
**Callbacks (onPartListUpdate)**:
|
|
11
|
+
```typescript
|
|
12
|
+
// old
|
|
13
|
+
onPartListUpdate = (fullList, hash) => console.log(fullList, hash);
|
|
14
|
+
// new
|
|
15
|
+
onPartListUpdate = (partList, hash) => console.log(partList.fullList, hash);
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
**Methods (loadObject and loadConfigurationString)**:
|
|
19
|
+
```typescript
|
|
20
|
+
// old
|
|
21
|
+
const fullList = await loadObject(/*...*/); // /*...*/ is only a placeholder and it's the same for loadConfigurationString
|
|
22
|
+
console.log(fullList);
|
|
23
|
+
|
|
24
|
+
// new
|
|
25
|
+
const loadResponse = await loadObject(/*...*/);
|
|
26
|
+
console.log(loadResponse?.partList.fullList);
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
|
|
31
|
+
* (wip), test for sdk * ([fbc8054](https://github.com/roomle-dev/roomle-ui/commit/fbc8054d29c190124b046f045e020e1e13ef1a59))
|
|
32
|
+
* 2D Implement object to wall measurements ([b2c07e7](https://github.com/roomle-dev/roomle-ui/commit/b2c07e776dbaba29de49bac43ffd3412e0f6a298))
|
|
33
|
+
* 2D implement objects measurements ([82c85b2](https://github.com/roomle-dev/roomle-ui/commit/82c85b2a9b8847f7123488a11669348952675937))
|
|
34
|
+
* ability to override default button behaviour ([a790eac](https://github.com/roomle-dev/roomle-ui/commit/a790eacc7b614f531a58cfc85b661a2cfb1d936f))
|
|
35
|
+
* Adapt deletion warning overlay for featureFlags.reDock=true ([659418b](https://github.com/roomle-dev/roomle-ui/commit/659418b478c1674f4918b95acfad6b091e7d0327))
|
|
36
|
+
* add "back button" for parameter groups ([e30030d](https://github.com/roomle-dev/roomle-ui/commit/e30030d07b9658ba16fa03aa06a8c66cb9194f54))
|
|
37
|
+
* **export-3d:** add 3d export icon to toolbar ([e68134d](https://github.com/roomle-dev/roomle-ui/commit/e68134d35e6015a4c1db65d1ec4a758c68f7640c))
|
|
38
|
+
* add a circle progress bar to glb loading ([fe4ac34](https://github.com/roomle-dev/roomle-ui/commit/fe4ac34f3f7273338f835596d3831c2a248f82f9))
|
|
39
|
+
* add a message if a parameter is disabled ([043a349](https://github.com/roomle-dev/roomle-ui/commit/043a3492c38dc68da75bf1045c2e4cec31f4b222))
|
|
40
|
+
* add actionButtons instead of selectionButtons in planner mode ([8e70298](https://github.com/roomle-dev/roomle-ui/commit/8e70298c3039b24c84a3157b8d7a7ee8085b7d8e))
|
|
41
|
+
* add animation when go back to init position ([04edadc](https://github.com/roomle-dev/roomle-ui/commit/04edadc711e80f33220cd961e3996ed6c0f7bb8c))
|
|
42
|
+
* add AR service for building and launching into AR ([fea3df8](https://github.com/roomle-dev/roomle-ui/commit/fea3df89eb2439ce5998460f4624b1ed88a86c35))
|
|
43
|
+
* **ts-doc:** Add auto generated api documentation for embedding ([4b71e29](https://github.com/roomle-dev/roomle-ui/commit/4b71e2945d879ab8255ed4d36866db5dc4c46f98))
|
|
44
|
+
* add aux button slot ([21605c3](https://github.com/roomle-dev/roomle-ui/commit/21605c31c0aad5e1752beee0173b76efd74af069))
|
|
45
|
+
* add better responsivness to AddonsTrigger and MenuButton ([9f8fa5d](https://github.com/roomle-dev/roomle-ui/commit/9f8fa5dfbadfe4903365eb8e7442b05bfab15afd))
|
|
46
|
+
* add better testing possibilities for embedding.html either append ?runAll=true or ?number01=true to run a specific embedding ([6f3e929](https://github.com/roomle-dev/roomle-ui/commit/6f3e9298502a8298f570f57bfbddf154209c17e9))
|
|
47
|
+
* add bigger thumbnail design ([fb0e917](https://github.com/roomle-dev/roomle-ui/commit/fb0e917dd99c6bf55cb69067b7cbc80c1084cf6c))
|
|
48
|
+
* add bottom bar to configurator in moc ([3196aa6](https://github.com/roomle-dev/roomle-ui/commit/3196aa6ef73a687637b5f56c2e384db434155b75))
|
|
49
|
+
* add bottom bar to planner ([603f4f0](https://github.com/roomle-dev/roomle-ui/commit/603f4f0833e775aa8a0cd495c55efcbae1f0bade))
|
|
50
|
+
* add button for multi select ([b773c62](https://github.com/roomle-dev/roomle-ui/commit/b773c62046c6b2b6896d330b72a58a43565c2cf0))
|
|
51
|
+
* **embedding:** add button to start configuration if screen size is initially to small and configurator is started in view only mode ([86a30a5](https://github.com/roomle-dev/roomle-ui/commit/86a30a5a7cd7c5ed65628f8f590458dae4b26b71))
|
|
52
|
+
* add call back to exposed api for on plan update ([ca48218](https://github.com/roomle-dev/roomle-ui/commit/ca482184ae8caabd6a931c77c2232a0586d7a814))
|
|
53
|
+
* add callback and mouse listener for when dragging happens ([91b7732](https://github.com/roomle-dev/roomle-ui/commit/91b7732dc15233d140da5fd13b77e00abd4b97cc))
|
|
54
|
+
* add callback for closing tooltip ([066e623](https://github.com/roomle-dev/roomle-ui/commit/066e62342b9829b3ab133972793f67d4d9228f0e))
|
|
55
|
+
* add callbacks for adding and removing element of the plan ([8d280da](https://github.com/roomle-dev/roomle-ui/commit/8d280da0e3c5a7d0d6175cc8ab3c3bf5b896be39))
|
|
56
|
+
* add cancel selection button to parameter groups ([5622284](https://github.com/roomle-dev/roomle-ui/commit/5622284f1d1813ec8f72c1a9daed6958c147b0f1))
|
|
57
|
+
* add check for active package ([2975309](https://github.com/roomle-dev/roomle-ui/commit/2975309cc36f7848c525c9dcf887612b7bb06db4))
|
|
58
|
+
* add configure now button for planner if it is embedded ([a26cdd2](https://github.com/roomle-dev/roomle-ui/commit/a26cdd2c83ba5e1f314740af43e2abf785219f03))
|
|
59
|
+
* add cookie banner to roomle.com ([1c80d14](https://github.com/roomle-dev/roomle-ui/commit/1c80d14e3842babfe8496d072870745ff7073c13))
|
|
60
|
+
* add correct styling of thumbnails in mobile ([bf3fd0f](https://github.com/roomle-dev/roomle-ui/commit/bf3fd0f28309c292e470f47fafaef458b9b6632b))
|
|
61
|
+
* add delete warning when selected component (component to delete) has children ([643ad2c](https://github.com/roomle-dev/roomle-ui/commit/643ad2c96348be2f91709a8d5b4e5f5f8d7a4007))
|
|
62
|
+
* **print:** add dependencies for pdf generation ([8a333e3](https://github.com/roomle-dev/roomle-ui/commit/8a333e30814f0c025289a99464e77f8522a4c2ea))
|
|
63
|
+
* add design feedback and make sidebar nav arrow smaller ([74eaf60](https://github.com/roomle-dev/roomle-ui/commit/74eaf601fe4dcfcab8a9531e940e43d044000769))
|
|
64
|
+
* **AR:** add desktop AR overlay ([a7eb7e8](https://github.com/roomle-dev/roomle-ui/commit/a7eb7e8993bae0b91bd676c630f884677d4c1b99))
|
|
65
|
+
* add direct access to Rubens API on same origin ([3a6c900](https://github.com/roomle-dev/roomle-ui/commit/3a6c90010e8d4267911b4f60c88e597d8a26eea1))
|
|
66
|
+
* add documentation for onTooltipClose callback ([e43a621](https://github.com/roomle-dev/roomle-ui/commit/e43a62174896cb4db3561c781b42ee3a0945cb2f))
|
|
67
|
+
* **save draft:** add email to save draft overlay ([6f059c0](https://github.com/roomle-dev/roomle-ui/commit/6f059c00e9d6d6c0015c9ad52d488d4ebefb6ec9))
|
|
68
|
+
* **translation:** Add en and de translations for save draft button ([24fc886](https://github.com/roomle-dev/roomle-ui/commit/24fc886210d1c1a54363b2152aadccc7852a2381))
|
|
69
|
+
* add first idea on how to add a room ([26aa788](https://github.com/roomle-dev/roomle-ui/commit/26aa78845bc6e751cc8057fc63db6e9d18d576a6))
|
|
70
|
+
* add flag for disabling starting in the configure mode if only one object in the scene ([19b6917](https://github.com/roomle-dev/roomle-ui/commit/19b691772d52b54a806df2dfa035a98c5e3216e4))
|
|
71
|
+
* add flag to disable applying of global parameter on variant switch ([b94d980](https://github.com/roomle-dev/roomle-ui/commit/b94d980b10da31cb24fbb12ece52137ead68254e))
|
|
72
|
+
* **AR:** add flag to enable appless AR ([d056caa](https://github.com/roomle-dev/roomle-ui/commit/d056caa50b3d824629061577a023b27126aecb4e))
|
|
73
|
+
* add fp button, xlation, logic ([ca5c20d](https://github.com/roomle-dev/roomle-ui/commit/ca5c20d990f0fc184bc04142613d2a3d23547221))
|
|
74
|
+
* add fullscreen modus on mobile planner too ([db76d7b](https://github.com/roomle-dev/roomle-ui/commit/db76d7b7539e268f1d81d3ec1f26556d04770e74))
|
|
75
|
+
* add func to determine which measurement system to use ([4dd2b4a](https://github.com/roomle-dev/roomle-ui/commit/4dd2b4a96ca1764072c141d13824a834cba05554))
|
|
76
|
+
* add functionality to exist button in the overlays ([e653fc7](https://github.com/roomle-dev/roomle-ui/commit/e653fc7c595a5aab2a773ae11bfeee35b494a9c8))
|
|
77
|
+
* add gap between boolean buttons, because of style reasons ([62ef422](https://github.com/roomle-dev/roomle-ui/commit/62ef42288187872fbfa1273f5381cd359dc08c35))
|
|
78
|
+
* add glb-viewer and refactor accordingly ([e9ff598](https://github.com/roomle-dev/roomle-ui/commit/e9ff59877f53846a5dea029e01d481a12e725e0a))
|
|
79
|
+
* **variants:** add helper method to prepare variants for collection view ([8e9a5ac](https://github.com/roomle-dev/roomle-ui/commit/8e9a5ac6e4713cbda66e36c57953f7de6dd7d8e3))
|
|
80
|
+
* add icon and functions for creating a snapshot of the camera perspective ([9b55f2f](https://github.com/roomle-dev/roomle-ui/commit/9b55f2fabc74a8a210cfd8faf12cc9ce8c294d6d))
|
|
81
|
+
* add insertObject API to add items to the MOC scene ([213d465](https://github.com/roomle-dev/roomle-ui/commit/213d4659523d8660ca99da5b41b772a1307d6a04))
|
|
82
|
+
* add Japanese translations ([aa29c06](https://github.com/roomle-dev/roomle-ui/commit/aa29c06a7a615e893c246bfd9fb521e5d980cbda))
|
|
83
|
+
* **variants:** add load options so we can apply global parameters on variant changes ([9cb3559](https://github.com/roomle-dev/roomle-ui/commit/9cb355992ff5e7ce3263d21bbff6d786a21218c9))
|
|
84
|
+
* add loading screen for init configurator if only one item in planner ([1427bb6](https://github.com/roomle-dev/roomle-ui/commit/1427bb665b3769df60f2698f9e62554186112c5f))
|
|
85
|
+
* add logic for opening configuring mode if only one object in plan ([d574770](https://github.com/roomle-dev/roomle-ui/commit/d574770da5fe3e2e7f48da1d3d6787dd2834e743))
|
|
86
|
+
* add measurement unit for room sidebar ([b97249c](https://github.com/roomle-dev/roomle-ui/commit/b97249cd4ff516540567ae89afd16d7b83c706da))
|
|
87
|
+
* add metric/imperial query params ([914f56b](https://github.com/roomle-dev/roomle-ui/commit/914f56b230e8b89d3f1be4398aace4826b52a57b))
|
|
88
|
+
* add missing translations ([a02bf99](https://github.com/roomle-dev/roomle-ui/commit/a02bf99ad2e8ef63721488c235a04798763605c0))
|
|
89
|
+
* **variants:** add missing types ([88dd004](https://github.com/roomle-dev/roomle-ui/commit/88dd00434b54b42161a3e0433781ac9e98f2c2a4))
|
|
90
|
+
* add moc docs ([8f8d83f](https://github.com/roomle-dev/roomle-ui/commit/8f8d83fb76cc5eaf8afb73cf019e1d699926076e))
|
|
91
|
+
* add new languages: fr, es, it ([d1061f9](https://github.com/roomle-dev/roomle-ui/commit/d1061f9dec183c9f50dc987b87cd788da215f6be))
|
|
92
|
+
* add new more generic RoomSidebar ([88a0e70](https://github.com/roomle-dev/roomle-ui/commit/88a0e70d3db1b678dcfbac2288b6192e035e8cab))
|
|
93
|
+
* add new select dropdown component ([e00457f](https://github.com/roomle-dev/roomle-ui/commit/e00457fabc8aa11222b95c7f0da0287f31cc369b))
|
|
94
|
+
* add new sidebar nav for rooms drawer ([a379743](https://github.com/roomle-dev/roomle-ui/commit/a379743b01e1235228c77cbd75f3096020ac1bed))
|
|
95
|
+
* add new structure for embedding docu ([8e3a563](https://github.com/roomle-dev/roomle-ui/commit/8e3a56324c345d2d45d6202415109e5629477224))
|
|
96
|
+
* add onButtonClick callback with button name ([1efdb62](https://github.com/roomle-dev/roomle-ui/commit/1efdb62f09d8f0ae6f6ac3677becd4584ef3912b))
|
|
97
|
+
* add onPlanElementChanged callbacks ([2524f90](https://github.com/roomle-dev/roomle-ui/commit/2524f90fa520ea0c4070c58b53dec8c31fb74ea8))
|
|
98
|
+
* **print:** add parameters to print ([61b1a48](https://github.com/roomle-dev/roomle-ui/commit/61b1a482417fda8d420ffd9066de6f63af3b1770))
|
|
99
|
+
* add perspective image generation to moc ([04826f4](https://github.com/roomle-dev/roomle-ui/commit/04826f4018b8723af425fdad960fc68b696ecc23))
|
|
100
|
+
* add playwright ([a1059f8](https://github.com/roomle-dev/roomle-ui/commit/a1059f8ce06d68b587c618350806adf6b94e58cc))
|
|
101
|
+
* add possibility to disable and overwrite undo and redo button ([e06e55c](https://github.com/roomle-dev/roomle-ui/commit/e06e55c06db2bfef09cdf41c9367c9e4e05bae76))
|
|
102
|
+
* add possibility to override default button behaviour ([c0b750b](https://github.com/roomle-dev/roomle-ui/commit/c0b750b92b20df44fa19a6e549d2ce5026e7d4b2))
|
|
103
|
+
* add powered by component to always show that the tech is provided by roomle ([6ae478b](https://github.com/roomle-dev/roomle-ui/commit/6ae478bf3fcd1f14dc529deef8358c44b0b9b74e))
|
|
104
|
+
* add prettier config ([3c7332f](https://github.com/roomle-dev/roomle-ui/commit/3c7332fbc99b508383228d81ae3a29fca6abf88a))
|
|
105
|
+
* add product settings positions ([75ed52b](https://github.com/roomle-dev/roomle-ui/commit/75ed52b7d721faf17d9fb09205154d236803a968))
|
|
106
|
+
* Add products from external catalogue to the Room designer scene ([a0392e9](https://github.com/roomle-dev/roomle-ui/commit/a0392e935ef3e1ec08ffe18020d5bcfa555917f8))
|
|
107
|
+
* add rapi access to sdk-wrapper ([1db08af](https://github.com/roomle-dev/roomle-ui/commit/1db08afad5b6d3f00b8caae3b7a8ed04f8b974f2))
|
|
108
|
+
* add reset camera button & test ([28d6261](https://github.com/roomle-dev/roomle-ui/commit/28d626185f0bdc985521d3f1a5bd33ada4b42548))
|
|
109
|
+
* add right behaviour for fullscreen modus on mobile ([a8329bf](https://github.com/roomle-dev/roomle-ui/commit/a8329bf60bd9eb9f824fd18b4fd55232dc4f2ddf))
|
|
110
|
+
* add room area ([f629730](https://github.com/roomle-dev/roomle-ui/commit/f62973002ff59b39a928cabc5b508f3eaa9cb0a7))
|
|
111
|
+
* add room parameters on mobile ([e8b14ed](https://github.com/roomle-dev/roomle-ui/commit/e8b14edae98824a5b6b65c8cc9db427c60562f65))
|
|
112
|
+
* add rotate button indicator ([35812c4](https://github.com/roomle-dev/roomle-ui/commit/35812c461218ed30f8175adf48717f58ab8829c2))
|
|
113
|
+
* add rotate button, show hide logic ([d99411b](https://github.com/roomle-dev/roomle-ui/commit/d99411bf54fd3365b0b4f9903de3235b1092bc24))
|
|
114
|
+
* add rotation of plan object ([c2b3c30](https://github.com/roomle-dev/roomle-ui/commit/c2b3c3002fd35db8da23a1f5ecd72da2f9dbff6b))
|
|
115
|
+
* add second drawer level indicator ([756312a](https://github.com/roomle-dev/roomle-ui/commit/756312a62fe1b4ca1a1b0c8ffa445030827db677))
|
|
116
|
+
* add selection icon for selected wall color ([96d5b2a](https://github.com/roomle-dev/roomle-ui/commit/96d5b2a0b18600217ad7270d597ad0450c1d719c))
|
|
117
|
+
* add setting for multi select materials ([15cbc21](https://github.com/roomle-dev/roomle-ui/commit/15cbc21af7a123ceb90bf7f2f7b6c94e89d13664))
|
|
118
|
+
* add shadow component which can overlay 3D scene ([aca542a](https://github.com/roomle-dev/roomle-ui/commit/aca542a94e72885a486cdc7e0061d5499a571f1f))
|
|
119
|
+
* add share (save) draft overlay and enable button by default ([81803a4](https://github.com/roomle-dev/roomle-ui/commit/81803a489077352fc6b35d98f97310cbfdaecc84))
|
|
120
|
+
* add share to moc ([29aba7b](https://github.com/roomle-dev/roomle-ui/commit/29aba7b79ba438f9f13f55fd924211b0a627a345))
|
|
121
|
+
* add shortUrl param to init data ([cdf52ad](https://github.com/roomle-dev/roomle-ui/commit/cdf52add31c5ba9c0048f4db849541f046d6ecd6))
|
|
122
|
+
* add snapping button to MOC ([b18ec7e](https://github.com/roomle-dev/roomle-ui/commit/b18ec7e1e9d58f0a9c5b11fe20f3bd9b5fba7885))
|
|
123
|
+
* add snapping parameter, reflect in UI ([150cf24](https://github.com/roomle-dev/roomle-ui/commit/150cf24a0824620d88698b64f0dbd06d5bbc9739))
|
|
124
|
+
* add sorting to kernel parameter list ([243a1f5](https://github.com/roomle-dev/roomle-ui/commit/243a1f59a437a33bc23caae6573493a7b4e48347))
|
|
125
|
+
* add states which indicate if viewer or configurator is used ([65ece2a](https://github.com/roomle-dev/roomle-ui/commit/65ece2a1209e3a97fbd87777002494d199692509))
|
|
126
|
+
* add switch button for sidebar ([67c155e](https://github.com/roomle-dev/roomle-ui/commit/67c155ecff77029fa4f44903c427253a4ab2befd))
|
|
127
|
+
* add switch in 2d on selecting draw tab category ([41207b5](https://github.com/roomle-dev/roomle-ui/commit/41207b58e9a6566457e5d6d85055ef989a519fe5))
|
|
128
|
+
* add tests for checking if id gets set properly in store and if callback function sets store to null again ([3bcbdfb](https://github.com/roomle-dev/roomle-ui/commit/3bcbdfb8d3d51279f2a103e1a126dea937da7cc0))
|
|
129
|
+
* add the possibility to always start configurator/Room Designer therefore the autoStart flag is introduced ([c22a513](https://github.com/roomle-dev/roomle-ui/commit/c22a513c7b58df27468e3cd08411b82cb88d184a))
|
|
130
|
+
* add timer ([5002912](https://github.com/roomle-dev/roomle-ui/commit/50029125c3fe92e7d93c6247486fb69877fdd9b5))
|
|
131
|
+
* add tooltip component and closing configurator content ([209cd26](https://github.com/roomle-dev/roomle-ui/commit/209cd26054851099a8012725bc2f03bce4c77818))
|
|
132
|
+
* add tooltips for desktop ([e12f1d4](https://github.com/roomle-dev/roomle-ui/commit/e12f1d4c4c941aca39741afde7edee6a21a33e0f))
|
|
133
|
+
* **lang:** add translations for "domain error" ([aca4e99](https://github.com/roomle-dev/roomle-ui/commit/aca4e997ceeaa6485be7cabd558f47695457e18d))
|
|
134
|
+
* **translation:** add translations for cancel selection button ([d24a41c](https://github.com/roomle-dev/roomle-ui/commit/d24a41c1f648b6bb2eb4f5b29ce97868cdfa1206))
|
|
135
|
+
* **translations:** add translations for da, nl, no and sv ([f221320](https://github.com/roomle-dev/roomle-ui/commit/f221320fcb43bcdd95fb5e017443e6a715c0479c))
|
|
136
|
+
* add translations for missing languages ([87fafec](https://github.com/roomle-dev/roomle-ui/commit/87fafec39c0bd3281ab110b38bc14847401e8bf1))
|
|
137
|
+
* add translations for Russian (ru) and Chinese (zh) ([f850891](https://github.com/roomle-dev/roomle-ui/commit/f8508912b14b7679d07ce4a13b62f92aefdfbf76))
|
|
138
|
+
* add typescript role to prefix the store action/getters name so we can avoid collisions ([0b56116](https://github.com/roomle-dev/roomle-ui/commit/0b56116a298f0479db7fc8d588766fc53dc95c96))
|
|
139
|
+
* add ui callback for setting selected parameter group ([ba9f960](https://github.com/roomle-dev/roomle-ui/commit/ba9f960cb73304271303e550120b9c5d908d07cf))
|
|
140
|
+
* add undo and redo key binds, ignore if text input is focused ([58505c2](https://github.com/roomle-dev/roomle-ui/commit/58505c2aa62650c5b6956ac87bc98074fb3bbf2e))
|
|
141
|
+
* add undo redo functionality to buttons in planner ([b44c342](https://github.com/roomle-dev/roomle-ui/commit/b44c342d44034468cf43feeb3a310e68f6ca0beb))
|
|
142
|
+
* add undo/redo button in topbar, add callback function and save it to the store ([497a91c](https://github.com/roomle-dev/roomle-ui/commit/497a91c22d7d908135453dab0d676fbc21bd3c18))
|
|
143
|
+
* add unit formatter for displaying cm and inch correctly ([5a0e020](https://github.com/roomle-dev/roomle-ui/commit/5a0e02087b7aab57b121d233ed64af0fc49e45e3))
|
|
144
|
+
* add user interface for planner and refactor existing stuff so we can re-use it ([1989982](https://github.com/roomle-dev/roomle-ui/commit/1989982e0e69f992c4708e5c0ef7a2a7873df192))
|
|
145
|
+
* **variants:** add variants to collection view ([1352272](https://github.com/roomle-dev/roomle-ui/commit/135227273c0b4c66c2b3eb46b29138e92a50f521))
|
|
146
|
+
* add viewer main component ([308f7f5](https://github.com/roomle-dev/roomle-ui/commit/308f7f58d577331dfdd9f026b7eabf723de98505))
|
|
147
|
+
* add wall/floor general color settings ([dfea7ac](https://github.com/roomle-dev/roomle-ui/commit/dfea7acce2af7da51120da77d149c3d319b4f3d6))
|
|
148
|
+
* add window parameters settings ([5454c59](https://github.com/roomle-dev/roomle-ui/commit/5454c59e0e32c7d738edca2f98246c1c78f2c2fa))
|
|
149
|
+
* added AR page /ar ([9df10af](https://github.com/roomle-dev/roomle-ui/commit/9df10af6c591b54985ebabfcac0ec1d545ddcbac))
|
|
150
|
+
* adding fullscreen as default view on mobile ([93bb33e](https://github.com/roomle-dev/roomle-ui/commit/93bb33e86a8cc0b1a2065bf98ab359d4906827c0))
|
|
151
|
+
* adding Parameter information tooltip ([d49449c](https://github.com/roomle-dev/roomle-ui/commit/d49449c7b983da695551e26692ae0e082fefabd2))
|
|
152
|
+
* adjust top bar design and fix loads of bugs concerning wall drawing ([e906b15](https://github.com/roomle-dev/roomle-ui/commit/e906b157453dd7ee681fc1337143036df5dad6ab))
|
|
153
|
+
* **translations:** all languages now use english as fallback for labels ([b2dadc3](https://github.com/roomle-dev/roomle-ui/commit/b2dadc3b7ce9876fac999b1d8086946c55620d57))
|
|
154
|
+
* **part-list:** also make it possible to print a grouped part list ([39085ab](https://github.com/roomle-dev/roomle-ui/commit/39085abddfda6846f476dffe4fae3033c3a0f27c))
|
|
155
|
+
* always check domain no matter if we are in iframe or not skip domain check for roomle.com ([dbf176a](https://github.com/roomle-dev/roomle-ui/commit/dbf176a327484d6e91671254adbf731d05ad8849))
|
|
156
|
+
* **planner:** always enable drawing mode in 2D ([4dc532b](https://github.com/roomle-dev/roomle-ui/commit/4dc532b5a189e585b0c8126feff384e2310ef921))
|
|
157
|
+
* always show sidebar on mobile and desktop ([f5e0b3a](https://github.com/roomle-dev/roomle-ui/commit/f5e0b3a0be7e60fe581721995fe083de6207d355))
|
|
158
|
+
* **AR:** always use asset urls when possible ([08d7f8e](https://github.com/roomle-dev/roomle-ui/commit/08d7f8ee127348b5c788d6dd448c0b2b964e0f77))
|
|
159
|
+
* annotate colors and support colors with leading 0x ([b6af3c9](https://github.com/roomle-dev/roomle-ui/commit/b6af3c98df3c27c0f9e19ea1573f0595f72a0737))
|
|
160
|
+
* autofill email fields during a session ([7416f5b](https://github.com/roomle-dev/roomle-ui/commit/7416f5b68d08ccd142805210d1e7854e67a1fbeb))
|
|
161
|
+
* build embedding lib again ([9a16988](https://github.com/roomle-dev/roomle-ui/commit/9a16988eded103fe26ad4a76452d68b1ae28b4af))
|
|
162
|
+
* cancel drawing on click Escape button ([0c7bd6b](https://github.com/roomle-dev/roomle-ui/commit/0c7bd6baf6ea96bc80e7693ad073e25f1b9ea126))
|
|
163
|
+
* change color of material check mark for better visibility ([581f2f1](https://github.com/roomle-dev/roomle-ui/commit/581f2f110edfe1c16f020aaed5a68acdb5e6eb0a))
|
|
164
|
+
* change draw section design on desktop ([97c6e3f](https://github.com/roomle-dev/roomle-ui/commit/97c6e3f7c4986640ffdfd5d16631a1570d762216))
|
|
165
|
+
* change t.t for translation service to intl.t for more readability ([22c5b09](https://github.com/roomle-dev/roomle-ui/commit/22c5b0916a5557e9a8ad7dd5f426c21eaf85b252))
|
|
166
|
+
* change the intermediate overlay in the bottom bar to have a proper buttons based on the position of the save button ([3fe4d0c](https://github.com/roomle-dev/roomle-ui/commit/3fe4d0c79a79756f6e0a0aef4efee388d56eb14c))
|
|
167
|
+
* check for AR Quicklook on iOS and show warning if configurator is opened in WebView ([8bace91](https://github.com/roomle-dev/roomle-ui/commit/8bace910c8b84cf55934fc40c58597b1627ebb42))
|
|
168
|
+
* check for packages versions before run Vite server ([3e3fbc9](https://github.com/roomle-dev/roomle-ui/commit/3e3fbc953c5996f41006257806d327084db1efc6))
|
|
169
|
+
* Core snap mode API ([3c818dd](https://github.com/roomle-dev/roomle-ui/commit/3c818dd41810ae6f6d09111947267cb917f412b0))
|
|
170
|
+
* **partlist:** create a component which does all the heavy lifting to print the PDF ([4b18aad](https://github.com/roomle-dev/roomle-ui/commit/4b18aad10bf2f820d33e6d441601d2769625beb4))
|
|
171
|
+
* **variants:** create a helper to fetch all possible variants and add needed data ([c1747fe](https://github.com/roomle-dev/roomle-ui/commit/c1747fe5876fed5bea064f9b646754a4d9afbe76))
|
|
172
|
+
* create a numeric input component that can be used in range param as well ([60fcbe3](https://github.com/roomle-dev/roomle-ui/commit/60fcbe3eeb19632d174885fddfd7e4655c10a94a))
|
|
173
|
+
* create a wrapper component for mains (viewer, configurator, planner) ([00a8dfc](https://github.com/roomle-dev/roomle-ui/commit/00a8dfc90da07ddb2c90087a555745d1929c019b))
|
|
174
|
+
* Create API call for save plans in case of hidden bottom Bar ([5e3cfdf](https://github.com/roomle-dev/roomle-ui/commit/5e3cfdfae6da44bba6c9323e28f93942e4b3c516))
|
|
175
|
+
* **print:** create components to use for print ([5032023](https://github.com/roomle-dev/roomle-ui/commit/5032023dbb8304dced20e1132bb62362b70bb171))
|
|
176
|
+
* create custom event emitter for reduce the load on Vuex store ([36c4a3f](https://github.com/roomle-dev/roomle-ui/commit/36c4a3feb134e2b764f673e5d6ab560b65b6b7be))
|
|
177
|
+
* create duplicated object at free position in plan ([0a2e035](https://github.com/roomle-dev/roomle-ui/commit/0a2e03557b237d6e8cf211d49ecce86204ea3347))
|
|
178
|
+
* create plan with object id if moc=true ([2a2515a](https://github.com/roomle-dev/roomle-ui/commit/2a2515a959c057bcdd64ab395cfa2bc83fb85962))
|
|
179
|
+
* create release workflow ([7806f8d](https://github.com/roomle-dev/roomle-ui/commit/7806f8d1f930bd1a46062c190532eef746639d95))
|
|
180
|
+
* disable collapse on desktop ([97fe7df](https://github.com/roomle-dev/roomle-ui/commit/97fe7df039d0354227d58198c6d14d8e88f64ab3))
|
|
181
|
+
* disable construction element coordinates depend on the wall angle ([f192aaa](https://github.com/roomle-dev/roomle-ui/commit/f192aaa422f04224fb2f2be685371cdc41577409))
|
|
182
|
+
* **planner:** disable multi-select if snapping is active and vice versa ([1aa8967](https://github.com/roomle-dev/roomle-ui/commit/1aa896730fc6629fe5ad5323e351f5a245034c2c))
|
|
183
|
+
* Display 3rd party catalogue in Rubens ([65f0c21](https://github.com/roomle-dev/roomle-ui/commit/65f0c21ed05c273dff4832a53389b40730e389c2))
|
|
184
|
+
* display the units in the input properly and editable ([d59234a](https://github.com/roomle-dev/roomle-ui/commit/d59234a9c1a7aabdd91b10afbd04e9d70cbd747d))
|
|
185
|
+
* do not save configuration if nothing changed ([28ddd24](https://github.com/roomle-dev/roomle-ui/commit/28ddd24d7deaf515d46679c4023cdb0715d2d849))
|
|
186
|
+
* do not show preview boxes but a loading screen ([1b039dd](https://github.com/roomle-dev/roomle-ui/commit/1b039ddad020b4f38bc182141f6d1e5843569735))
|
|
187
|
+
* do not show rotation button on construction elements like doors and windows ([08889ab](https://github.com/roomle-dev/roomle-ui/commit/08889ab21f40022a242aaab767710be224dcd08b))
|
|
188
|
+
* do not show warning if we didn't change anything ([8388a31](https://github.com/roomle-dev/roomle-ui/commit/8388a31ba238a4e3f391a286e5d9355a97d30e77))
|
|
189
|
+
* editable measurement bubbles mvp ([3dcdfa8](https://github.com/roomle-dev/roomle-ui/commit/3dcdfa80f825d30d4c8df8acdffd837fb534ab17))
|
|
190
|
+
* enable 3D export of plans ([6f71279](https://github.com/roomle-dev/roomle-ui/commit/6f712791f9804c2b885161c334e980d2b150045a))
|
|
191
|
+
* enable AR in MOC as well ([ea74197](https://github.com/roomle-dev/roomle-ui/commit/ea74197788895465b9377d57dad06bd0ff480729))
|
|
192
|
+
* enable AR view for MOC as well ([1eab0c9](https://github.com/roomle-dev/roomle-ui/commit/1eab0c9a5c5dec3ce0fe1b1a1e485f617779a1e0))
|
|
193
|
+
* enable automatic merge for dependancies upgrade ([2af2e68](https://github.com/roomle-dev/roomle-ui/commit/2af2e686c372cbcddce68fdf7633fe7431c2ec8b))
|
|
194
|
+
* enable camera snapshot ([82ee01b](https://github.com/roomle-dev/roomle-ui/commit/82ee01b3c1374b8eeb0d7c00ec36519baa6526c0))
|
|
195
|
+
* enable drag-in of TC Articles ([b39e7a7](https://github.com/roomle-dev/roomle-ui/commit/b39e7a7935e567d64bec15597b38d0f9c0c508ca))
|
|
196
|
+
* Enable drawing mode when in room mode and 2d ([3ad533a](https://github.com/roomle-dev/roomle-ui/commit/3ad533a93638b81a690ae03962e2c6ed0e5d8b54))
|
|
197
|
+
* Enable duplicate product in the room designer ([38c97ec](https://github.com/roomle-dev/roomle-ui/commit/38c97ecd0903ffe272e111108584e309b301429c))
|
|
198
|
+
* enable MM ([0a31003](https://github.com/roomle-dev/roomle-ui/commit/0a3100378bfd9e67f687d15833816ee6e73add95))
|
|
199
|
+
* enable possibility to color both wall sides ([09c236f](https://github.com/roomle-dev/roomle-ui/commit/09c236fb4358da24a51851033e899e4b043e526f))
|
|
200
|
+
* enable roomAr by default ([b7f7e86](https://github.com/roomle-dev/roomle-ui/commit/b7f7e862bd6abec145242ffbb6a3cdab8c275901))
|
|
201
|
+
* enable rotation using the cursor ([cc8343b](https://github.com/roomle-dev/roomle-ui/commit/cc8343b5855efaf125518a8ec2aa54528a101d45))
|
|
202
|
+
* enable scrollbars in configurator ([ac3c628](https://github.com/roomle-dev/roomle-ui/commit/ac3c628383ca1ec9bbab9e097101db6ecfb3935b))
|
|
203
|
+
* enable SDK wrapper to start/stop configurator and viewer ([ebbec4b](https://github.com/roomle-dev/roomle-ui/commit/ebbec4b604802d870adfb91e038f6955ae9ae543))
|
|
204
|
+
* enable selection of multiple categories for materials ([8ba5739](https://github.com/roomle-dev/roomle-ui/commit/8ba5739efa0a1511a99ad7d524da1de2c43bab17))
|
|
205
|
+
* enable the drag in of TC Articles ([a6cbe2c](https://github.com/roomle-dev/roomle-ui/commit/a6cbe2cb26fa919e0b60103011f09155e7129f34))
|
|
206
|
+
* enable url params to handle nested init data ([2278c89](https://github.com/roomle-dev/roomle-ui/commit/2278c89ab808ce6bc3350f208f3c604f87accc34))
|
|
207
|
+
* enable vertical AR on Android devices ([e2f3af5](https://github.com/roomle-dev/roomle-ui/commit/e2f3af5fbe68247b86ecf5719cb4a963abdd18e2))
|
|
208
|
+
* enable wall drawing in MOC ([26afd29](https://github.com/roomle-dev/roomle-ui/commit/26afd29a930838bf5ae9083906c6a3f8ce7765e1))
|
|
209
|
+
* enable wall drawing on mobile RML-5095 ([7ed0e52](https://github.com/roomle-dev/roomle-ui/commit/7ed0e52fc04d20bc286f28bd9ad12c28213a4f9f))
|
|
210
|
+
* enable wall/object selection based on room mode ([666c81a](https://github.com/roomle-dev/roomle-ui/commit/666c81a5f362aa443e5def9b9d464f9f04ec2cea))
|
|
211
|
+
* enabled switch to viewer ([db71490](https://github.com/roomle-dev/roomle-ui/commit/db7149077cd2a35a5ddddc0a0a7558b98307e431))
|
|
212
|
+
* **embedding:** enforce correct domain for safety reasons ([4e04ae3](https://github.com/roomle-dev/roomle-ui/commit/4e04ae3771f8e221dce8f1e118829e84237b455c))
|
|
213
|
+
* expose a method to trigger request product from outside of the iframe ([0a2c46b](https://github.com/roomle-dev/roomle-ui/commit/0a2c46be8b5e804773e71ebaca2c758009143f4d))
|
|
214
|
+
* expose drag-start, drag-move, drag-end ([f03e914](https://github.com/roomle-dev/roomle-ui/commit/f03e9148f1c50f2aaba3f3dfb97bc7ce9d09e815))
|
|
215
|
+
* expose global callbacks via embedding ([3fadcd4](https://github.com/roomle-dev/roomle-ui/commit/3fadcd4da1b68058e599e89254ee73b9266d0dce))
|
|
216
|
+
* **embedding:** expose method loadConfigurationString this is especially useful for our scripters and the testing-page ([af2d5e9](https://github.com/roomle-dev/roomle-ui/commit/af2d5e9c555c6f1674c8d15cabe4242ecaea4269))
|
|
217
|
+
* fetch construction catalog ([1f74fb4](https://github.com/roomle-dev/roomle-ui/commit/1f74fb41d5ebcafaaf6a0b56a38efc6a0542859f))
|
|
218
|
+
* fix disable coordinate for angles 0 and 270 and show product positions for static construction elements ([8911426](https://github.com/roomle-dev/roomle-ui/commit/89114267b5aae508380546d50bcd3c1dda4cb282))
|
|
219
|
+
* general product settings second level draw ([fede697](https://github.com/roomle-dev/roomle-ui/commit/fede69734c26629c1f9ea121db5e315be8ce0726))
|
|
220
|
+
* handle init data ([14fe256](https://github.com/roomle-dev/roomle-ui/commit/14fe256433eef8acd8423e0e8bc40cbefc3c7ec0))
|
|
221
|
+
* **AR:** hide AR button for static items when no assets exist ([2c618e5](https://github.com/roomle-dev/roomle-ui/commit/2c618e507a1f66f4ab43e7cf01b3886dc06db40a))
|
|
222
|
+
* Hide room measurements when object is selected ([205e3ff](https://github.com/roomle-dev/roomle-ui/commit/205e3fff626e99bb2ef3f58e94365f082526eb86))
|
|
223
|
+
* highlight parts in the scene when hovering over them in the partlist ([275985c](https://github.com/roomle-dev/roomle-ui/commit/275985cb36d15c7ed9141a027bcff9b975c9a388))
|
|
224
|
+
* Hold camera perspective icon behavior ([066a809](https://github.com/roomle-dev/roomle-ui/commit/066a8090bb458d5196a750e036ad462bf1c91a99))
|
|
225
|
+
* implement 2d view button ([487e8d8](https://github.com/roomle-dev/roomle-ui/commit/487e8d87d634544f0b6ad6d15b19716ce8ad7987))
|
|
226
|
+
* **variants:** implement a interstitial pop up which is shown before switching the configuration ([5c2ee84](https://github.com/roomle-dev/roomle-ui/commit/5c2ee8445ee2628dcb8293cacc416213f265c709))
|
|
227
|
+
* implement add product button and change selection buttons styling ([7fcb65d](https://github.com/roomle-dev/roomle-ui/commit/7fcb65d0d3741d3c2b8cceef5321670f9388b085))
|
|
228
|
+
* implement Bottom Bar on mobile screens ([efd889e](https://github.com/roomle-dev/roomle-ui/commit/efd889e1aa81e17841f2dab1db82061386c880e4))
|
|
229
|
+
* implement delete ([f0405c5](https://github.com/roomle-dev/roomle-ui/commit/f0405c5e342147c0f52cf7567529ab8e19f6fe61))
|
|
230
|
+
* implement delete button for walls ([7ef90cc](https://github.com/roomle-dev/roomle-ui/commit/7ef90cc2377f4c37dd6a204ba4ed2bf17d677f40))
|
|
231
|
+
* implement event bus in planner product list and part list ([1385fca](https://github.com/roomle-dev/roomle-ui/commit/1385fca6fd2c93ae4cd4fe22114fa2c6f9205ef1))
|
|
232
|
+
* implement generic overlay for planner sidebar ([6ddadef](https://github.com/roomle-dev/roomle-ui/commit/6ddadefac7a07ea0cdb8b4ffa0fb0da1c999643c))
|
|
233
|
+
* implement meaningful switch between glb-viewer and configurator ([70f1fb7](https://github.com/roomle-dev/roomle-ui/commit/70f1fb7e52690d65c3f873d6a44ac76d46298020))
|
|
234
|
+
* implement new rotation button behaviour ([6da18ba](https://github.com/roomle-dev/roomle-ui/commit/6da18bad3fbb09415947a89770c16e0e0a3d347e))
|
|
235
|
+
* implement parsing, displaying ([4bc2c34](https://github.com/roomle-dev/roomle-ui/commit/4bc2c344353e2c8d301fa8bf077a6d4b0f97139c))
|
|
236
|
+
* implement part list and product list feature ([9919dad](https://github.com/roomle-dev/roomle-ui/commit/9919dada3f8ef389ac726a632bda09dffbde7122))
|
|
237
|
+
* implement product list and part list with bounds create a helper file for it ([349c58c](https://github.com/roomle-dev/roomle-ui/commit/349c58ce45ee7a8bfb80957c4f86b969a1a273a7))
|
|
238
|
+
* Implement purchasable section in partlist ([ca7ed31](https://github.com/roomle-dev/roomle-ui/commit/ca7ed312dd669e8f1a6514f2ca2be272c619fc7a))
|
|
239
|
+
* implement saving to plan snapshots instead of real plans ([6839fd5](https://github.com/roomle-dev/roomle-ui/commit/6839fd535b2d5e2dce5683100d0a9104206fb2d2))
|
|
240
|
+
* implement timer to hide notifications ([ac18e12](https://github.com/roomle-dev/roomle-ui/commit/ac18e128d05bdbb43d46c7ef934da525d5c23e65))
|
|
241
|
+
* implement triggerRequestPlan into UI ([4c2af4f](https://github.com/roomle-dev/roomle-ui/commit/4c2af4f303f0d2ec6e9ca584713a65df6803649d))
|
|
242
|
+
* improve word-wrap ([b3be4d8](https://github.com/roomle-dev/roomle-ui/commit/b3be4d84190e0b576871a924fdc54786c31b8a70))
|
|
243
|
+
* improved translations for japanese and french ([a29e9c4](https://github.com/roomle-dev/roomle-ui/commit/a29e9c420f279bb50279de2fb2559263fe9010f2))
|
|
244
|
+
* increase parameter width on desktop ([d83c182](https://github.com/roomle-dev/roomle-ui/commit/d83c182065a1c2bd6958249c0ac54512b7c49fb1))
|
|
245
|
+
* initial basic implementation ([bd578dc](https://github.com/roomle-dev/roomle-ui/commit/bd578dc28cfd5de3399da60a050ae4d0388863b5))
|
|
246
|
+
* initial implementation ([72fe65f](https://github.com/roomle-dev/roomle-ui/commit/72fe65f20b5aa718a577a0684c04ec25e8f0fad3))
|
|
247
|
+
* initial implementation ([71c3163](https://github.com/roomle-dev/roomle-ui/commit/71c31638f3fd4a3a79ce3c8faf0f9807b2e582b1))
|
|
248
|
+
* integrate drag and drop from SDK ([d5bfbdb](https://github.com/roomle-dev/roomle-ui/commit/d5bfbdb8243adeb9ee879d0fb5cc4deba7d43069))
|
|
249
|
+
* integrate husky for better commit message and debugger check ([e4bb1d5](https://github.com/roomle-dev/roomle-ui/commit/e4bb1d5fb6db950eba45012be78d55558f70bf72))
|
|
250
|
+
* integrate sonarqube in the Rubens configurator project ([24a8f33](https://github.com/roomle-dev/roomle-ui/commit/24a8f33c48e0f7c44b3fe61df758b7079c5087c9))
|
|
251
|
+
* introduce new input for metric stuff ([4c0b809](https://github.com/roomle-dev/roomle-ui/commit/4c0b809c876144071b53d2766b0a50b121dcd04c))
|
|
252
|
+
* introduce onPartlistPrint callback so external users can print their own style of PDF ([871cbaa](https://github.com/roomle-dev/roomle-ui/commit/871cbaa3e934d3d07cc861687e43db6d24786579))
|
|
253
|
+
* keep planner state when entering configuration ([718667e](https://github.com/roomle-dev/roomle-ui/commit/718667ecba134eaa95bde8729c8fd9a30f9ea514))
|
|
254
|
+
* **planner:** keep sidebar open on drag item ([fad22ea](https://github.com/roomle-dev/roomle-ui/commit/fad22ead204d4f98490312f80b54b62f7d9bb883))
|
|
255
|
+
* load component ids using the prefix component: ([28c3182](https://github.com/roomle-dev/roomle-ui/commit/28c318208b3ff680df7adbb4ed871afed2fd13c7))
|
|
256
|
+
* Load configuration ID in product list ([1b04170](https://github.com/roomle-dev/roomle-ui/commit/1b04170589b67239e4035fc9e76968d86121325d))
|
|
257
|
+
* load configurator settings in embedding ([fa96c86](https://github.com/roomle-dev/roomle-ui/commit/fa96c86f537524b0c4ab14711c9da4b32d9be208))
|
|
258
|
+
* load overlays on demand using dynamic imports ([63ef12a](https://github.com/roomle-dev/roomle-ui/commit/63ef12a5c32fb3b9fda6c4602c8b2b1a21f0cf51))
|
|
259
|
+
* **AR:** load qr code component dynamically ([cf225ee](https://github.com/roomle-dev/roomle-ui/commit/cf225ee3140ba3f3b05ab23595746bceaa51b44e))
|
|
260
|
+
* **variants:** load variants if a new configuration is loaded ([59bf6c7](https://github.com/roomle-dev/roomle-ui/commit/59bf6c703f8dda2d985e7b2c7948ca523570ea15))
|
|
261
|
+
* load variations in planner therefore use "configuratorId=testMoc" ([1184597](https://github.com/roomle-dev/roomle-ui/commit/118459716d5525775356d9d0d3c0b10d0ee0d3c6))
|
|
262
|
+
* log current package version to console ([9cebfe3](https://github.com/roomle-dev/roomle-ui/commit/9cebfe3c1cb77e350f95945d51720f4540802bd4))
|
|
263
|
+
* log script info when debug flag is enabled ([d2e5284](https://github.com/roomle-dev/roomle-ui/commit/d2e528425afa6e0de0d622a27a7bdbfdf4b976f9))
|
|
264
|
+
* make a mousePos composable, get the menu showing on item selection ([f9242e7](https://github.com/roomle-dev/roomle-ui/commit/f9242e767fb01745cd294bd60c344859069a41ad))
|
|
265
|
+
* Make bottom bar hideable ([aa681f2](https://github.com/roomle-dev/roomle-ui/commit/aa681f2f4037b6bff0d3f9f27b8e15d6967ecc46))
|
|
266
|
+
* make clicking on the floor bring up the floor color selector UI ([7f5b6d8](https://github.com/roomle-dev/roomle-ui/commit/7f5b6d89f23286701e605fa476380699d2809087))
|
|
267
|
+
* make doors/windows deleteable ([71f753d](https://github.com/roomle-dev/roomle-ui/commit/71f753d38075e71f8f4f9f40d06ac6f49488ffb4))
|
|
268
|
+
* make font customize able ([a78b1d0](https://github.com/roomle-dev/roomle-ui/commit/a78b1d0eb4a1575a54421c9fea1c4290f71b17e4))
|
|
269
|
+
* make global callbacks optionally and add them to feature flag so that they do not break old embedding libs ([1c2acd0](https://github.com/roomle-dev/roomle-ui/commit/1c2acd0dfae9fee7f704c1fd215ee1d0ae01e143))
|
|
270
|
+
* make interaction arrow icon collapsed the interaction container and not close it ([0ffb73b](https://github.com/roomle-dev/roomle-ui/commit/0ffb73b4b821389b6a9c09b17910c79b81edab40))
|
|
271
|
+
* make it possible to deactivate and reactivate Google Analytics if the embedding webshop collects consent to Google Analytics ([f180330](https://github.com/roomle-dev/roomle-ui/commit/f180330f5f676deaf9534096b695f6a606e91fc2))
|
|
272
|
+
* make it possible to deactivate landscape hint on mobile ([d5bb141](https://github.com/roomle-dev/roomle-ui/commit/d5bb141cc5afd02ddc8a9b154e3913e14dc97130))
|
|
273
|
+
* **part-list:** make it possible to display part-list grouped or non-grouped ([c656755](https://github.com/roomle-dev/roomle-ui/commit/c6567551be8c539a91adc898e9e2ec48e9fbcf93))
|
|
274
|
+
* make it possible to load configurator in iframe without embedding-lib ([990c004](https://github.com/roomle-dev/roomle-ui/commit/990c00431eb5636313d7515c385dc23d7929896f))
|
|
275
|
+
* make loading smoother ([eef19a6](https://github.com/roomle-dev/roomle-ui/commit/eef19a6876955cae4e07fe3f137cee377dfcb5bc))
|
|
276
|
+
* make object context menu always visible in all modes ([fd467bd](https://github.com/roomle-dev/roomle-ui/commit/fd467bd29c9d59a2430c47b8dab268cb5ff3fbc8))
|
|
277
|
+
* Make object to wall measurement bubbles editable ([8158a18](https://github.com/roomle-dev/roomle-ui/commit/8158a18cf34e9a6258f53efe80563eb46a3ba253))
|
|
278
|
+
* Make RAL colors for floors/walls/objects always available ([6f2c7cd](https://github.com/roomle-dev/roomle-ui/commit/6f2c7cde7b23ef4deaaefbe51c0e4540ca2397d0))
|
|
279
|
+
* make tagged colors for wall, floor, window, doors ([262e8a2](https://github.com/roomle-dev/roomle-ui/commit/262e8a23afa01731e73d39b95e1ceb26d9ee8724))
|
|
280
|
+
* make thumbnails configurable ([f8b6817](https://github.com/roomle-dev/roomle-ui/commit/f8b68179588494d91c04e064383ee3cf956e4e41))
|
|
281
|
+
* Measurements - visual improvements ([0443fbe](https://github.com/roomle-dev/roomle-ui/commit/0443fbecaa6910ee285a8a19a185443e68eab9b5))
|
|
282
|
+
* Merge product in RD scene UI ([9bd54fc](https://github.com/roomle-dev/roomle-ui/commit/9bd54fc6a441c6fa0439eb294f37e78510b39576))
|
|
283
|
+
* mirror master branch for docs staging ([e0aa429](https://github.com/roomle-dev/roomle-ui/commit/e0aa429520a12853893e6d7281829669d5729840))
|
|
284
|
+
* mobile layout ([6854d3a](https://github.com/roomle-dev/roomle-ui/commit/6854d3a8065be9063592a8287efa93f1421e3f3c))
|
|
285
|
+
* mobile layout ([c74916b](https://github.com/roomle-dev/roomle-ui/commit/c74916bc7cfc40e3a8253992afd3648e14185fb1))
|
|
286
|
+
* MOC Rubens: Access SOC to MOC, over edit mode ([7894d88](https://github.com/roomle-dev/roomle-ui/commit/7894d889871e0afa5f2f53bb721c5f1017fb6ec7))
|
|
287
|
+
* MoC: Add wall edit mode ([410bbfc](https://github.com/roomle-dev/roomle-ui/commit/410bbfcf4d8c5e991b042b65fb392e3acd48df44))
|
|
288
|
+
* MoC: create predefined rooms ([2e5757e](https://github.com/roomle-dev/roomle-ui/commit/2e5757eb412cbb8d08fb889bc660bcd48d577131))
|
|
289
|
+
* MOC: Doors - parameter infos on click ((step 3) ([45bead2](https://github.com/roomle-dev/roomle-ui/commit/45bead23bffdee7f694fd253d0940373a53ed509))
|
|
290
|
+
* MOC: doors and windows - edit variant(s) (step 4) ([1dbec18](https://github.com/roomle-dev/roomle-ui/commit/1dbec18ca0f512de7ddc744a625079e23ebd4cb9))
|
|
291
|
+
* MOC: doors and windows - edit variant(s) (step 4) ([4319736](https://github.com/roomle-dev/roomle-ui/commit/4319736c0c1b238895bdd06d0ea819d07465064b))
|
|
292
|
+
* MoC: First time room behavior ([b7891c3](https://github.com/roomle-dev/roomle-ui/commit/b7891c37cc5fc1d0c8d29ece3ca533e16216fc1f))
|
|
293
|
+
* MOC: Navigation issue - drawing mode switch to 2D automatically ([0a8d055](https://github.com/roomle-dev/roomle-ui/commit/0a8d055f19e06c15470b7644456fbccde2f08736))
|
|
294
|
+
* MoC: Show Action buttons on object ([b2f78d4](https://github.com/roomle-dev/roomle-ui/commit/b2f78d4ca617393777f09f53062205c416a189f5))
|
|
295
|
+
* MoC: show measurements for walls in 2D ([298e3ed](https://github.com/roomle-dev/roomle-ui/commit/298e3ed20288f8049f383131d7af253c25b29bcf))
|
|
296
|
+
* MoC: switch to 2D scene ([faf273a](https://github.com/roomle-dev/roomle-ui/commit/faf273ac6e25d8fc0e517b2d2209bc427efee5d7))
|
|
297
|
+
* mostly working implementation ([d688fff](https://github.com/roomle-dev/roomle-ui/commit/d688fff8ae7b32b1c4150024b10a0a15b6500864))
|
|
298
|
+
* notification system ([264a723](https://github.com/roomle-dev/roomle-ui/commit/264a7239692af39341b001ccf60618791c5315f7))
|
|
299
|
+
* only open tooltip once ([1505918](https://github.com/roomle-dev/roomle-ui/commit/1505918108ce600bc74696aaa3aa18e2f3234bb9))
|
|
300
|
+
* only show price header in part list if a price is available ([226cdbf](https://github.com/roomle-dev/roomle-ui/commit/226cdbfdab06cd424f32f434ebb8491fe493df66))
|
|
301
|
+
* only show variant warning if necessary ([3cdf3aa](https://github.com/roomle-dev/roomle-ui/commit/3cdf3aab0027f11b6e54f0b0f094ba051e3bd6d8))
|
|
302
|
+
* open AR directly on Android ([b2c5421](https://github.com/roomle-dev/roomle-ui/commit/b2c54212c3281fe155c2fdba94652cd1b9d73dd4))
|
|
303
|
+
* **planner:** open catalog view if set in init data ([1c7b700](https://github.com/roomle-dev/roomle-ui/commit/1c7b7006ec2ae577cfddd30472ed6e36daf60d4d))
|
|
304
|
+
* possibility to override labels in configurator settings ([f43bb9f](https://github.com/roomle-dev/roomle-ui/commit/f43bb9f4902fe32408dbaae943ab7f76a99bdf07))
|
|
305
|
+
* **variants:** prepare store to be able to handle variants ([a19b73f](https://github.com/roomle-dev/roomle-ui/commit/a19b73fd4f02eb8161cdf6255808c2f6fd865794))
|
|
306
|
+
* react on selection in 3D ([fe9926b](https://github.com/roomle-dev/roomle-ui/commit/fe9926b496863a8fb337f3c289cba1bc06ab0530))
|
|
307
|
+
* refactor addons and catalog trigger button and implement generic icon button for it ([1e86efd](https://github.com/roomle-dev/roomle-ui/commit/1e86efd6434e7238beaa9906af627d5cffc27938))
|
|
308
|
+
* refactor rangparameter to generic component and add component for general room range parameters ([988f840](https://github.com/roomle-dev/roomle-ui/commit/988f840befe51648f174c749686c7770aa491615))
|
|
309
|
+
* **partlist:** refine layout for desktop partlist ([4329707](https://github.com/roomle-dev/roomle-ui/commit/4329707a8d2ebe602d7938b156dc7f07e3ec27c2))
|
|
310
|
+
* **variants:** refine parameter group buttons so we can highlight variants as well ([a7be9f9](https://github.com/roomle-dev/roomle-ui/commit/a7be9f93e2b4be007132ede719c303325e9d7d0c))
|
|
311
|
+
* remove add product on open catalog, remove selection if catalog gets open and add product button label to loco ([36a9b77](https://github.com/roomle-dev/roomle-ui/commit/36a9b777bb8802428c5481b3c4665abf81788bda))
|
|
312
|
+
* remove app deeplink for AR ([baaba2e](https://github.com/roomle-dev/roomle-ui/commit/baaba2eb7e95342f853205aafcba00f39a1c3a8b))
|
|
313
|
+
* remove automatically generated walls before adding new walls ([d3a1f6c](https://github.com/roomle-dev/roomle-ui/commit/d3a1f6c9d9cc87474fa85946467145a6d418d516))
|
|
314
|
+
* remove interactions header if it is a second level drawer ([5d87fda](https://github.com/roomle-dev/roomle-ui/commit/5d87fda58d47f471a247e0c593422a103dae9c6b))
|
|
315
|
+
* remove tracking of views from UI ([bffcf36](https://github.com/roomle-dev/roomle-ui/commit/bffcf360fb292f70aa0d09eac4409299dfe0abeb))
|
|
316
|
+
* remove welcome page as default sidebar ([048c73e](https://github.com/roomle-dev/roomle-ui/commit/048c73e1c9ff68fc63c52bc727c1bf08da2a34c2))
|
|
317
|
+
* Replace rotation icon of construction elements with flip icon/functionality ([f912d63](https://github.com/roomle-dev/roomle-ui/commit/f912d63e403c7b90e93ac38e67ddec9ab8c18b59))
|
|
318
|
+
* reset camera 2D button ([a61282f](https://github.com/roomle-dev/roomle-ui/commit/a61282f074571a5758d1f7ec877ce6abbe0a2ca6))
|
|
319
|
+
* reset scroll if change from product list to part list ([005b982](https://github.com/roomle-dev/roomle-ui/commit/005b982acdbe6ca72901beefeafb9dd1a4b2539d))
|
|
320
|
+
* restructure bottom buttons and add 2d and 3d view to top bar ([7898c0b](https://github.com/roomle-dev/roomle-ui/commit/7898c0bb409eb1fe34f2feb5cd77e1da28030e99))
|
|
321
|
+
* restyling bottom bar overlays ([87ac180](https://github.com/roomle-dev/roomle-ui/commit/87ac1802c0ce0851c9fbefff9e9924eddbb0eb23))
|
|
322
|
+
* **part-list:** return the true partlist to the embedding website as well, ([ecfbe2b](https://github.com/roomle-dev/roomle-ui/commit/ecfbe2b5ea35267f86a3d8ee6eeca9b8d674897d))
|
|
323
|
+
* return the whole object of the partlist instead of only fullList ([1a55801](https://github.com/roomle-dev/roomle-ui/commit/1a5580151ce695de2441e3ea401162177a2ea6fd))
|
|
324
|
+
* rework first time room behaviour ([e82512e](https://github.com/roomle-dev/roomle-ui/commit/e82512e7569ebbf6f585de6cd8081f995c60e360))
|
|
325
|
+
* room designer 2D measurements tool ([dc7659d](https://github.com/roomle-dev/roomle-ui/commit/dc7659de8d449225501f33a0b5890fb85accf266))
|
|
326
|
+
* Room Designer Switch products functionality ([7b459ce](https://github.com/roomle-dev/roomle-ui/commit/7b459ceb74bb10a2bc92a39326d55700f229e8db))
|
|
327
|
+
* Rubens MOC: Basket count Desktop ([bab8fa8](https://github.com/roomle-dev/roomle-ui/commit/bab8fa8eade955b154b0d3c7e61e42fe9b258f1c))
|
|
328
|
+
* Rubens: Bottom Bar mobile ([7ea1953](https://github.com/roomle-dev/roomle-ui/commit/7ea19530c19f28213fd73d91f6084c3678da7724))
|
|
329
|
+
* save configuration on back ([7c662ed](https://github.com/roomle-dev/roomle-ui/commit/7c662ed7206f29a0fde0487751ccd85b2193069e))
|
|
330
|
+
* **variants:** save current variants so we can use it in the UI ([9e20632](https://github.com/roomle-dev/roomle-ui/commit/9e206325fb13041096d10b10b409223e1d05b2aa))
|
|
331
|
+
* save plan when clicking on bottom bar ([3acc326](https://github.com/roomle-dev/roomle-ui/commit/3acc326120f040a2d8667b80e4134b057baf163a))
|
|
332
|
+
* select object on insert or drag to the scene ([290e0f4](https://github.com/roomle-dev/roomle-ui/commit/290e0f4f718fe2ae22798b005f20d00ea9ce54eb))
|
|
333
|
+
* send current configuration using email, added privacy url ([0f58393](https://github.com/roomle-dev/roomle-ui/commit/0f583938bab5fe45bca72897aff1293f9f9f5dfe))
|
|
334
|
+
* set measurementUnit on mount based on url parameter ([365f03a](https://github.com/roomle-dev/roomle-ui/commit/365f03af613edb472f517a20a89a6b616c576054))
|
|
335
|
+
* **embedding:** set tenant based on configurator object ([4ff945f](https://github.com/roomle-dev/roomle-ui/commit/4ff945f6640bc3682a798403a61fb08fa7197c84))
|
|
336
|
+
* set the position of the flying menu to center of selected element after the camera stops moving ([0cc6697](https://github.com/roomle-dev/roomle-ui/commit/0cc6697eec0fe4b5bd7345b1a9b89a2e74b3b8a8))
|
|
337
|
+
* **variants:** set variants if init data changes ([b936f44](https://github.com/roomle-dev/roomle-ui/commit/b936f4474ae6090d276f7beaa00ce109711dde1f))
|
|
338
|
+
* share MOC with email ([9cb4f89](https://github.com/roomle-dev/roomle-ui/commit/9cb4f89ec192ee3d4b364102ae5f6ddf10f99b43))
|
|
339
|
+
* should change in 2d mode on select drawing tab in sidebar nav ([d0f5418](https://github.com/roomle-dev/roomle-ui/commit/d0f5418acc5b4c29d67e76b4c3199527b9d588d4))
|
|
340
|
+
* show app AR url only on iOS ([1133539](https://github.com/roomle-dev/roomle-ui/commit/11335396fdd3ff613b73ba5355703a779b7ad14b))
|
|
341
|
+
* Show components information in Rubens ([68b11cd](https://github.com/roomle-dev/roomle-ui/commit/68b11cd8597a2d0fa69d0a76d1da7cbb14b00610))
|
|
342
|
+
* show confirm button and other bottom bar buttons next to each other ([5d8c770](https://github.com/roomle-dev/roomle-ui/commit/5d8c770302a49052fe96c48a868b1094f7d93f47))
|
|
343
|
+
* Show embedded item infos in Rubens iFrame ([dca946c](https://github.com/roomle-dev/roomle-ui/commit/dca946ca0f39dd601939d8cbcc9bdb869c203a57))
|
|
344
|
+
* **AR:** show loading screen when opening AR overlay ([798166a](https://github.com/roomle-dev/roomle-ui/commit/798166a8c41ddcc3a0bd1c6d2d09b3df6bbaf0a3))
|
|
345
|
+
* Show Material information in rubens ([f3cf08b](https://github.com/roomle-dev/roomle-ui/commit/f3cf08b38d9f59544967f325f7f3deffb5bf9feb))
|
|
346
|
+
* Show measurements for doors&windows in 2D ([d7e18c4](https://github.com/roomle-dev/roomle-ui/commit/d7e18c40fa472add702fdcc253ed0abab556adf2))
|
|
347
|
+
* show parameters when changing groups or addons ([3dd4809](https://github.com/roomle-dev/roomle-ui/commit/3dd4809ea4b9d1098be1240e652792e2e88bc843))
|
|
348
|
+
* show request product button only when embedded ([d3c4e16](https://github.com/roomle-dev/roomle-ui/commit/d3c4e16aca49860e01006424462349625bbd009a))
|
|
349
|
+
* show save button on the overlays onPlanChange ([7c8533c](https://github.com/roomle-dev/roomle-ui/commit/7c8533ca88d3c2b88354d9ebf823e6ae28111da2))
|
|
350
|
+
* **share:** show url after save ([3e0a4a8](https://github.com/roomle-dev/roomle-ui/commit/3e0a4a821b42a03f75ec9ebc721b0e9eebdd635a))
|
|
351
|
+
* **share:** show url after successfully sending e-mail ([371c4ff](https://github.com/roomle-dev/roomle-ui/commit/371c4ff4b7e9956a9749551a63ef5bfd951d0466))
|
|
352
|
+
* **variants:** show variants button if there is a variant ([ef8400a](https://github.com/roomle-dev/roomle-ui/commit/ef8400acaf38270384eb64e14f4109fecaf0523f))
|
|
353
|
+
* style room drawer "room shape" register ([b1dba20](https://github.com/roomle-dev/roomle-ui/commit/b1dba20b3507ed0434fc260dc5c8eb7c3097f0e8))
|
|
354
|
+
* switch between planner & configurator ([8a22ef9](https://github.com/roomle-dev/roomle-ui/commit/8a22ef9744692956907a61ea5c07416f03f97dbd))
|
|
355
|
+
* switch between planner, viewer and configurator ([dc491b2](https://github.com/roomle-dev/roomle-ui/commit/dc491b2df04a7006e7c0d54433a7e02b08fc74f8))
|
|
356
|
+
* switch request product and save draft buttons ([7e0db51](https://github.com/roomle-dev/roomle-ui/commit/7e0db51682d7b47a510b4052f4adedfce4b8825e))
|
|
357
|
+
* tell SDK to ignore certain UI elements ([be1a4d4](https://github.com/roomle-dev/roomle-ui/commit/be1a4d4adbdc91f0a47e19acc6f01f9d74521d23))
|
|
358
|
+
* tooltip should be tranparent ([1684b99](https://github.com/roomle-dev/roomle-ui/commit/1684b99d4200515dd16e9a89b29bcbd8672f38bc))
|
|
359
|
+
* track conversion rate and AR ([60cf49a](https://github.com/roomle-dev/roomle-ui/commit/60cf49a587eb79700b45619fe5914c3caf99ad15))
|
|
360
|
+
* track loading of product initially ([8316f30](https://github.com/roomle-dev/roomle-ui/commit/8316f306f101f9ceadf57124de99074cb99437c7))
|
|
361
|
+
* try to expose partList arguments for doing custom PDF printing ([b17e2d2](https://github.com/roomle-dev/roomle-ui/commit/b17e2d2416d48566cb2f6566caecd58c50f70a1d))
|
|
362
|
+
* **ux:** unfold parameter if there is only one parameter ([743c9e4](https://github.com/roomle-dev/roomle-ui/commit/743c9e47d439b11b9ec46229ce4bc48c8791caac))
|
|
363
|
+
* **ux:** unfold parameter, variants and addons if there is only one ([c6af7fc](https://github.com/roomle-dev/roomle-ui/commit/c6af7fcbeedcf78e61f8440c50512e1f43cdd6c2))
|
|
364
|
+
* unify the interaction headers in MOC ([6ffea9a](https://github.com/roomle-dev/roomle-ui/commit/6ffea9a6e995419d96239ef86c58bc2194fb000a))
|
|
365
|
+
* update sdk to 2.10.0-alpha.3 ([16c4c87](https://github.com/roomle-dev/roomle-ui/commit/16c4c879da8eb05db48e8cbcb6d4a97be87f4609))
|
|
366
|
+
* update SDK to latest snapshot ([24a82e1](https://github.com/roomle-dev/roomle-ui/commit/24a82e180a51574e196746f59f1556aef2fa12f9))
|
|
367
|
+
* update to newest SDK version 2.24.0-alpha.1 ([4ecc431](https://github.com/roomle-dev/roomle-ui/commit/4ecc43199849854df35fd19b933f9c07112ba9fe))
|
|
368
|
+
* update translations ([e7061d9](https://github.com/roomle-dev/roomle-ui/commit/e7061d93773cb74efa4da2bf8c633fca12809d80))
|
|
369
|
+
* updated translations for DA, DE, ES, FR, IT, NL, NO and SV ([b0c433f](https://github.com/roomle-dev/roomle-ui/commit/b0c433fa0a0713626efad4c0d446d859ff8d4b8d))
|
|
370
|
+
* upgrade roomle web sdk to snapshot version 92 ([03d1944](https://github.com/roomle-dev/roomle-ui/commit/03d1944c7d59fb930d218d82795f074bdb765c9a))
|
|
371
|
+
* upgrade SDK to 2.1.1-alpha.1 ([e5e174c](https://github.com/roomle-dev/roomle-ui/commit/e5e174c330c6d155fce7f53468dfaa5b153ea175))
|
|
372
|
+
* upgrade sdk to 2.11.0-alpha.1 ([7b28185](https://github.com/roomle-dev/roomle-ui/commit/7b28185de839d75793292edbe60d031e3d77f7e5))
|
|
373
|
+
* upgrade sdk to 2.12.0-alpha.3 ([3dd0589](https://github.com/roomle-dev/roomle-ui/commit/3dd058979b63a71ccf2b95643492cfbaaf26d95e))
|
|
374
|
+
* upgrade SDK to 2.20.0-alpha.1 ([4d3914d](https://github.com/roomle-dev/roomle-ui/commit/4d3914dc8493ed6b2c77c75baf7a2224ef89935d))
|
|
375
|
+
* upgrade SDK to 2.3.0.alpha.1 ([41fe6bd](https://github.com/roomle-dev/roomle-ui/commit/41fe6bda17389cdbb22f33d32593786d42d8cbde))
|
|
376
|
+
* upgrade SDK to 2.34.0 ([c222dce](https://github.com/roomle-dev/roomle-ui/commit/c222dce6720fe07d7ded3eee3fe5ea23eaf246c0))
|
|
377
|
+
* upgrade SDK to 2.4.0-alpha.1 ([3b5fc2b](https://github.com/roomle-dev/roomle-ui/commit/3b5fc2b188f7d739c56f378d229cd2e59dbb0ea7))
|
|
378
|
+
* **SDK:** upgrade SDK to 2.42.0-alpha.1 ([327bc9a](https://github.com/roomle-dev/roomle-ui/commit/327bc9a4bf0c1fdbc5b5341879623717d31c2921))
|
|
379
|
+
* upgrade sdk to 2.48.0 ([93f57cc](https://github.com/roomle-dev/roomle-ui/commit/93f57ccb83d9cc6389bd3cf830641981c7e13d42))
|
|
380
|
+
* upgrade SDK to 2.5.0-alpha.1 ([dec4583](https://github.com/roomle-dev/roomle-ui/commit/dec4583853628e79569f3d111e1c859267766771))
|
|
381
|
+
* upgrade SDK to 2.6.0-alpha.1 ([ad472d2](https://github.com/roomle-dev/roomle-ui/commit/ad472d2f160dfda4446f8894f8803234127cd9d6))
|
|
382
|
+
* upgrade SDK to 2.6.0-alpha.2 ([0c498fd](https://github.com/roomle-dev/roomle-ui/commit/0c498fd4ac1907f4cd79fb9a675c6d99f7104070))
|
|
383
|
+
* upgrade SDK to 2.6.1-alpha.1 ([7c6cd15](https://github.com/roomle-dev/roomle-ui/commit/7c6cd15e32922bd6f560af6e6b1bd5ab35323d87))
|
|
384
|
+
* upgrade SDK to 2.7.0-alpha.1 ([7688efc](https://github.com/roomle-dev/roomle-ui/commit/7688efc022525efed70d9545d0a9d6ce03171ac6))
|
|
385
|
+
* upgrade SDK to 2.7.0-alpha.2 ([cf9cb22](https://github.com/roomle-dev/roomle-ui/commit/cf9cb22e0bbc40240984d7c8556dafba237edf69))
|
|
386
|
+
* upgrade sdk to latest snap which is 110 so we can test prices ([6a67b6a](https://github.com/roomle-dev/roomle-ui/commit/6a67b6a6ec7234027289f2f0bcc54ae6818e996d))
|
|
387
|
+
* upgrade SDK to version 104 ([63dd1e6](https://github.com/roomle-dev/roomle-ui/commit/63dd1e670d01a2bb828558c4848f9fcea91cb217))
|
|
388
|
+
* upgrade SDK to version 2.1.0 ([5a4cafa](https://github.com/roomle-dev/roomle-ui/commit/5a4cafad51fcc61e4029ce895e29661663e515ba))
|
|
389
|
+
* upgrade SDK to version 2.1.1 ([6e73cf3](https://github.com/roomle-dev/roomle-ui/commit/6e73cf3211c2177808ea724c9083a8d02d8f7730))
|
|
390
|
+
* upgrade SDK to version 2.10.0-alpha.4 ([84afe5d](https://github.com/roomle-dev/roomle-ui/commit/84afe5d0e9dda1fd9e85746287e73cace248f5f7))
|
|
391
|
+
* upgrade SDK to version 2.11.0 ([3306ff2](https://github.com/roomle-dev/roomle-ui/commit/3306ff2509820a9423e23d612e3f717d5c56b445))
|
|
392
|
+
* upgrade SDK to version 2.11.0-alpha.1 ([7d9afd1](https://github.com/roomle-dev/roomle-ui/commit/7d9afd12f3f0dfc8925c985c47daaaf68f47fa42))
|
|
393
|
+
* upgrade SDK to version 2.11.0-alpha.2 ([89f4a5d](https://github.com/roomle-dev/roomle-ui/commit/89f4a5dba3b7390c3e6dd9caa77873fb6cbcdc05))
|
|
394
|
+
* upgrade SDK to version 2.12.0-alpha.1 ([76fd306](https://github.com/roomle-dev/roomle-ui/commit/76fd306778abc43f11cb5929fa891a12251da4b6))
|
|
395
|
+
* upgrade SDK to version 2.12.0-alpha.4 ([9e6aec5](https://github.com/roomle-dev/roomle-ui/commit/9e6aec5f9f2bb9944fd73e6715d5926c8a63285d))
|
|
396
|
+
* upgrade SDK to version 2.13.0-alpha.1 ([ca58851](https://github.com/roomle-dev/roomle-ui/commit/ca5885131900cd2fe9e378718b921f893b5ce64d))
|
|
397
|
+
* upgrade SDK to version 2.13.0-alpha.2 ([3c55d7a](https://github.com/roomle-dev/roomle-ui/commit/3c55d7a222cc071a95eaa539caf9e6c0a94a4f25))
|
|
398
|
+
* upgrade SDK to version 2.14.0 ([874d161](https://github.com/roomle-dev/roomle-ui/commit/874d161640eaa354fc4c03e87b957d41a2f7ab49))
|
|
399
|
+
* upgrade SDK to version 2.14.0-alpha.1 ([ba5c3f5](https://github.com/roomle-dev/roomle-ui/commit/ba5c3f50c2ebe2d51716a7151717acc510f724c1))
|
|
400
|
+
* upgrade SDK to version 2.14.0-alpha.2 ([c8cb283](https://github.com/roomle-dev/roomle-ui/commit/c8cb28353ad727a308bbec4d0edfbcd2953048f1))
|
|
401
|
+
* upgrade SDK to version 2.14.0-alpha.4 ([f1f0cd0](https://github.com/roomle-dev/roomle-ui/commit/f1f0cd0d72bcc0445ea5f4e4756b3435c7227e56))
|
|
402
|
+
* upgrade SDK to version 2.14.0-alpha.5 ([2ef9e56](https://github.com/roomle-dev/roomle-ui/commit/2ef9e56dc4d654d373af02fe2fa1d5fb45f12554))
|
|
403
|
+
* upgrade SDK to version 2.15.0-alpha.1 ([8c12b89](https://github.com/roomle-dev/roomle-ui/commit/8c12b89bb855f6e6ae0722ada5abb36c8c1831e8))
|
|
404
|
+
* upgrade SDK to version 2.15.0-alpha.2 ([e76e677](https://github.com/roomle-dev/roomle-ui/commit/e76e677161da386421bea0bb83574d1ebe047efd))
|
|
405
|
+
* upgrade SDK to version 2.15.0-alpha.3 ([e9ecafc](https://github.com/roomle-dev/roomle-ui/commit/e9ecafc2f61ff3b172b2d3d4289a60fcb8665964))
|
|
406
|
+
* upgrade SDK to version 2.16.0-alpha.1 ([983f5de](https://github.com/roomle-dev/roomle-ui/commit/983f5de04aea44e9aa906fad8df57479da446c6e))
|
|
407
|
+
* upgrade SDK to version 2.18.0-alpha.1 ([b2a47cd](https://github.com/roomle-dev/roomle-ui/commit/b2a47cd12dea5f46ccc8fae658ee2e3cefad8578))
|
|
408
|
+
* upgrade SDK to version 2.18.0-alpha.2 ([d1d1b13](https://github.com/roomle-dev/roomle-ui/commit/d1d1b1364b6e4710f8591be55f9261d55d1dfd49))
|
|
409
|
+
* upgrade SDK to version 2.19.0 ([34c7760](https://github.com/roomle-dev/roomle-ui/commit/34c7760ec4877beef0e6645f9e12e466de185f08))
|
|
410
|
+
* upgrade SDK to version 2.19.0-alpha.1 ([f9e573f](https://github.com/roomle-dev/roomle-ui/commit/f9e573f08bb9718c1597ad4bc53198f87117e63f))
|
|
411
|
+
* upgrade SDK to version 2.19.0-alpha.2 ([71936ac](https://github.com/roomle-dev/roomle-ui/commit/71936ac4aa9ecf09966f563df96e2d9b35ddb54c))
|
|
412
|
+
* upgrade SDK to version 2.19.0-alpha.3 ([c4942f2](https://github.com/roomle-dev/roomle-ui/commit/c4942f2e13316c0c4d179199227c9a75c1b8673e))
|
|
413
|
+
* upgrade SDK to version 2.19.0-alpha.4 ([16da2cb](https://github.com/roomle-dev/roomle-ui/commit/16da2cb8d691fadeba8d3dfe7a39e57b5d9f25eb))
|
|
414
|
+
* upgrade SDK to version 2.19.0-alpha.5 ([f8732a7](https://github.com/roomle-dev/roomle-ui/commit/f8732a7d9cb4a0e39d593bfea7a04d14fc9b52c2))
|
|
415
|
+
* upgrade SDK to version 2.20.0 ([07bd456](https://github.com/roomle-dev/roomle-ui/commit/07bd45669613da41d9d72c436b93c224e11eb93a))
|
|
416
|
+
* upgrade SDK to version 2.20.0-alpha.3 ([b29f317](https://github.com/roomle-dev/roomle-ui/commit/b29f3171a6521479665742fae79ef285bbb5acd5))
|
|
417
|
+
* upgrade SDK to version 2.20.0-alpha.4 ([e3db2b7](https://github.com/roomle-dev/roomle-ui/commit/e3db2b74748c23c079259bb69c1597eb780cbb64))
|
|
418
|
+
* upgrade SDK to version 2.21.0-alpha.1 ([24c7202](https://github.com/roomle-dev/roomle-ui/commit/24c7202cd676421b4166b50468eddc1920063caa))
|
|
419
|
+
* upgrade SDK to version 2.22.0 ([a25ed2a](https://github.com/roomle-dev/roomle-ui/commit/a25ed2a0aa33f794a71c9a431dd02680420e7e38))
|
|
420
|
+
* upgrade SDK to version 2.22.0-alpha.1 ([d746132](https://github.com/roomle-dev/roomle-ui/commit/d746132d00156854749c9e0ea0678c3f6463abec))
|
|
421
|
+
* upgrade SDK to version 2.22.0-alpha.2 ([393ea48](https://github.com/roomle-dev/roomle-ui/commit/393ea485386c2cc2556ef8b56e648fc826972903))
|
|
422
|
+
* upgrade SDK to version 2.22.0-alpha.3 ([7e1f511](https://github.com/roomle-dev/roomle-ui/commit/7e1f5111790a5b0ad7fda3f9a0d8a814a9b84173))
|
|
423
|
+
* upgrade SDK to version 2.22.0-alpha.4 ([f0f7450](https://github.com/roomle-dev/roomle-ui/commit/f0f7450e97b6c9214102f8c08d0a74f5c88bb1b7))
|
|
424
|
+
* upgrade SDK to version 2.23.0 ([c12b566](https://github.com/roomle-dev/roomle-ui/commit/c12b56610067f103d5a81763979b66c0ed4030d2))
|
|
425
|
+
* upgrade SDK to version 2.23.0-alpha.1 ([8be7069](https://github.com/roomle-dev/roomle-ui/commit/8be70698546aff1498d34f389f9ec17f0c955029))
|
|
426
|
+
* upgrade SDK to version 2.24.0-alpha.1 ([d9b36f8](https://github.com/roomle-dev/roomle-ui/commit/d9b36f862c23d6ecd5cf76e0871d70091184ec6d))
|
|
427
|
+
* upgrade SDK to version 2.24.0-alpha.2 ([fac1868](https://github.com/roomle-dev/roomle-ui/commit/fac18686fbdfc3087b3ef4612b862c769fbdfc41))
|
|
428
|
+
* upgrade SDK to version 2.28.0-alpha.2 ([b87ec4a](https://github.com/roomle-dev/roomle-ui/commit/b87ec4a9cb579f0f913e9d15aa2e55aba61b71c2))
|
|
429
|
+
* upgrade SDK to version 2.28.0-alpha.3 ([65cb89b](https://github.com/roomle-dev/roomle-ui/commit/65cb89b96da9ea0cca095034e5fde2a92545da0c))
|
|
430
|
+
* upgrade SDK to version 2.29.0-alpha.1 ([c44c6bd](https://github.com/roomle-dev/roomle-ui/commit/c44c6bdd98348e1b844deb27b56dfc0ce0a6a613))
|
|
431
|
+
* upgrade SDK to version 2.29.0-alpha.2 ([894f169](https://github.com/roomle-dev/roomle-ui/commit/894f1692026104759ef28fe78db12f373222c3d4))
|
|
432
|
+
* upgrade SDK to version 2.3.0 ([9d3e827](https://github.com/roomle-dev/roomle-ui/commit/9d3e8276149cecd349d10c53a37d81a95101ab7c))
|
|
433
|
+
* upgrade SDK to version 2.30.0-alpha.1 ([c9555dc](https://github.com/roomle-dev/roomle-ui/commit/c9555dcd4710c4d5ddb8b1f3ee5dd3cc265eb758))
|
|
434
|
+
* **SDK:** upgrade SDK to version 2.35.0-alpha.2 ([d307caf](https://github.com/roomle-dev/roomle-ui/commit/d307caf01e51c2e236df62d7b9be3feeebef1f87))
|
|
435
|
+
* **SDK:** upgrade SDK to version 2.35.0-alpha.3 ([48045c6](https://github.com/roomle-dev/roomle-ui/commit/48045c6234b84cb9e1740b97907c3cc09d5c6530))
|
|
436
|
+
* **SDK:** upgrade SDK to version 2.35.0-alpha.4 ([6adf875](https://github.com/roomle-dev/roomle-ui/commit/6adf8756031b2dbec9e02f88c0a0703ba5f73279))
|
|
437
|
+
* **SDK:** upgrade SDK to version 2.35.0-alpha.6 ([b2a6fb9](https://github.com/roomle-dev/roomle-ui/commit/b2a6fb9ddbb63866bc086f7661fe3d4af717409e))
|
|
438
|
+
* **SDK:** upgrade SDK to version 2.35.0-alpha.9 ([d635fd8](https://github.com/roomle-dev/roomle-ui/commit/d635fd86161c24bbe5bb8d24787ad10f43493e3c))
|
|
439
|
+
* **SDK:** upgrade SDK to version 2.40.0 ([beaeafa](https://github.com/roomle-dev/roomle-ui/commit/beaeafae237caeb272f7da72b35b44f838ae2538))
|
|
440
|
+
* **SDK:** upgrade SDK to version 2.41.0-alpha.3 ([6c9b58b](https://github.com/roomle-dev/roomle-ui/commit/6c9b58bd6578eedb51fd1cdc2b2ceaf4b51803f2))
|
|
441
|
+
* **SDK:** upgrade SDK to version 2.42.0-alpha.3 ([99b08cb](https://github.com/roomle-dev/roomle-ui/commit/99b08cb6cbf78ac1de40f3cc45f9124381bb40f5))
|
|
442
|
+
* **SDK:** upgrade SDK to version 2.44.0-alpha.1 ([bbe254b](https://github.com/roomle-dev/roomle-ui/commit/bbe254b12d9bfd65e635611f52094e74dcc0d06d))
|
|
443
|
+
* upgrade SDK to version 2.6.0 ([dfdb93d](https://github.com/roomle-dev/roomle-ui/commit/dfdb93db2a5df3b21febc895240d5fdf9fc95dbc))
|
|
444
|
+
* upgrade SDK to version 2.6.0-alpha.5 ([3657218](https://github.com/roomle-dev/roomle-ui/commit/3657218954e8b84e69290c056f8deac5efd9fc9d))
|
|
445
|
+
* upgrade SDK to version 2.8.0-alpha.1 ([c4ebf1f](https://github.com/roomle-dev/roomle-ui/commit/c4ebf1f7755fae7416aa359afc9ea522eefb9f96))
|
|
446
|
+
* upgrade SDK to version 2.9.0-alpha.1 ([23144cc](https://github.com/roomle-dev/roomle-ui/commit/23144cc01ec686b460f7ff2262b2554649dd0cd6))
|
|
447
|
+
* upgrade SDK to version 2.9.0-alpha.2 ([61d2fd4](https://github.com/roomle-dev/roomle-ui/commit/61d2fd417557b8cbf64237495d3782d9ad61f812))
|
|
448
|
+
* upgrade SDK to version 2.9.1 ([e87b37e](https://github.com/roomle-dev/roomle-ui/commit/e87b37e5f1343216bcaad838946132270f318289))
|
|
449
|
+
* Upgrade SDK to version 37 ([cd94a79](https://github.com/roomle-dev/roomle-ui/commit/cd94a79680b6439fd11ec06935f2c40273f7af85))
|
|
450
|
+
* Upgrade SDK version to snapshot 98 ([19df017](https://github.com/roomle-dev/roomle-ui/commit/19df0171ce58de9c321f90676468b1d46745f5b9))
|
|
451
|
+
* upgrade to latest SDK version ([ce24d64](https://github.com/roomle-dev/roomle-ui/commit/ce24d641d140c18b5f90520fcdceb70476af6684))
|
|
452
|
+
* upgrade to sdk 2.10.0.-alpha4 ([6bdceba](https://github.com/roomle-dev/roomle-ui/commit/6bdceba40d7f110e068caa283fd9eca156f3f37a))
|
|
453
|
+
* **sdk:** upgrade to sdk 2.13.0-alpha.3 ([04126ea](https://github.com/roomle-dev/roomle-ui/commit/04126ea317b737c79a9a7b61acec512dc25ccfcc))
|
|
454
|
+
* **SDK:** upgrade to SDK version 2.2.0-alpha.3 ([8f6d83b](https://github.com/roomle-dev/roomle-ui/commit/8f6d83bd1fbae4cdf0e028efaaaf7f1677e4faa6))
|
|
455
|
+
* **SDK:** upgrade to SDK version 2.41.0-alpha.1 ([09efc56](https://github.com/roomle-dev/roomle-ui/commit/09efc560538b4373a9a53464228a4a4cb80886b1))
|
|
456
|
+
* **SDK:** upgrade to version 2.10.0 ([28512a0](https://github.com/roomle-dev/roomle-ui/commit/28512a0cbfa355e3db7680dac45b654652728bcf))
|
|
457
|
+
* **SDK:** upgrade to version 2.12.0 ([6aadc1a](https://github.com/roomle-dev/roomle-ui/commit/6aadc1a65beb805f407088b432e70e8d326af61a))
|
|
458
|
+
* **SDK:** upgrade to version 2.13.0 ([9462b92](https://github.com/roomle-dev/roomle-ui/commit/9462b926bc918ed0f7062a0356bb84316ebdefc9))
|
|
459
|
+
* **SDK:** upgrade to version 2.13.1 ([1715d55](https://github.com/roomle-dev/roomle-ui/commit/1715d55fb2f1f951b0ed5a2e57c583fabc386d9f))
|
|
460
|
+
* **SDK:** upgrade to version 2.15.0 ([bbf9dcc](https://github.com/roomle-dev/roomle-ui/commit/bbf9dcca8b886c17342db3145b24277b323e0d52))
|
|
461
|
+
* **SDK:** upgrade to version 2.16.0 ([2382175](https://github.com/roomle-dev/roomle-ui/commit/2382175343eff3227751d36f73fb649325403931))
|
|
462
|
+
* **SDK:** upgrade to version 2.17.0 ([09ed57c](https://github.com/roomle-dev/roomle-ui/commit/09ed57c538f7b196aa2886e40a06adc77473dc3d))
|
|
463
|
+
* **SDK:** upgrade to version 2.18.0 ([7100c2a](https://github.com/roomle-dev/roomle-ui/commit/7100c2a480d2ab707a74bf24673fc687559f750c))
|
|
464
|
+
* **SDK:** upgrade to version 2.2.1 ([b2e9b46](https://github.com/roomle-dev/roomle-ui/commit/b2e9b462565ca3199d45bf162647455e1ee34a0e))
|
|
465
|
+
* **SDK:** upgrade to version 2.2.2 ([86fbadc](https://github.com/roomle-dev/roomle-ui/commit/86fbadce9e062c14e779d09b7b2ab37e7568535f))
|
|
466
|
+
* **SDK:** upgrade to version 2.2.2 ([2c629fc](https://github.com/roomle-dev/roomle-ui/commit/2c629fc4485d71b7481b3fa3adf97809ee887f30))
|
|
467
|
+
* **SDK:** upgrade to version 2.21.0 ([b16a2e3](https://github.com/roomle-dev/roomle-ui/commit/b16a2e3336677c520192a7cb4e99372bab830c50))
|
|
468
|
+
* **SDK:** upgrade to version 2.24.0 ([a239abd](https://github.com/roomle-dev/roomle-ui/commit/a239abdda583a92c7873e11f53b000ec5985e2e0))
|
|
469
|
+
* **SDK:** upgrade to version 2.25.0 ([8a4e033](https://github.com/roomle-dev/roomle-ui/commit/8a4e0339d668cb38500604e51c4070a37441f6d4))
|
|
470
|
+
* **SDK:** upgrade to version 2.26.0 ([708f644](https://github.com/roomle-dev/roomle-ui/commit/708f644f912e3b5b63aad1845470036bf815eca5))
|
|
471
|
+
* **SDK:** upgrade to version 2.27.0-alpha.2 ([202a9a3](https://github.com/roomle-dev/roomle-ui/commit/202a9a3b4f01aad618164a81c17031e1f9800b50))
|
|
472
|
+
* **SDK:** upgrade to version 2.27.0 ([49e703a](https://github.com/roomle-dev/roomle-ui/commit/49e703ac28aac0abf0fdfa0bb135902330e9221c))
|
|
473
|
+
* **SDK:** upgrade to version 2.29.1 ([b1115c5](https://github.com/roomle-dev/roomle-ui/commit/b1115c5347f1dd6f5a6c103b701c1961b9be90af))
|
|
474
|
+
* **SDK:** upgrade to version 2.30.0-alpha.2 ([d2e469f](https://github.com/roomle-dev/roomle-ui/commit/d2e469f063100ae43a685a9a8725929a2eb143ba))
|
|
475
|
+
* **SDK:** upgrade to version 2.30.0-alpha.3 ([99d815a](https://github.com/roomle-dev/roomle-ui/commit/99d815a74b33fdf0960f40550366565da8e6e48f))
|
|
476
|
+
* **SDK:** upgrade to version 2.30.0-alpha.4 ([b4654ff](https://github.com/roomle-dev/roomle-ui/commit/b4654ffdde96eb7cc580054e3dde0e0db44bf8aa))
|
|
477
|
+
* **SDK:** upgrade to version 2.30.0 ([cd4f785](https://github.com/roomle-dev/roomle-ui/commit/cd4f78525ef61ad1bc3d5e5dc4c6fab1caa6fc99))
|
|
478
|
+
* **SDK:** upgrade to version 2.31.0-alpha.1 ([50a566e](https://github.com/roomle-dev/roomle-ui/commit/50a566e620560f7c7b1cb213265b3be3984778d1))
|
|
479
|
+
* **SDK:** upgrade to version 2.31.0-alpha.2 ([638cf4b](https://github.com/roomle-dev/roomle-ui/commit/638cf4b91650f35fbfff4f5b9ecee5caf2a3af5d))
|
|
480
|
+
* **SDK:** upgrade to version 2.31.0-alpha.3 ([e198e51](https://github.com/roomle-dev/roomle-ui/commit/e198e513ed99d203f3eeabb0a218033d27a12aca))
|
|
481
|
+
* **SDK:** upgrade to version 2.31.0-alpha.4 ([52ad6a1](https://github.com/roomle-dev/roomle-ui/commit/52ad6a1687f3af6c4e18020a2ff5834f76d44d26))
|
|
482
|
+
* **SDK:** upgrade to version 2.31.0 ([2938571](https://github.com/roomle-dev/roomle-ui/commit/29385711dc9bc3f3438e5fe5984aebb8a7044d47))
|
|
483
|
+
* **SDK:** upgrade to version 2.32.0-alpha.1 ([d0541af](https://github.com/roomle-dev/roomle-ui/commit/d0541afb0953d9069a7d3dfc2ad820e207757ad6))
|
|
484
|
+
* **SDK:** upgrade to version 2.32.0-alpha.2 ([7cd8cc7](https://github.com/roomle-dev/roomle-ui/commit/7cd8cc7424210cadc984beeb1acfaeacfe7061bf))
|
|
485
|
+
* **SDK:** upgrade to version 2.32.0-alpha.3 ([59618bc](https://github.com/roomle-dev/roomle-ui/commit/59618bc09047e0753da95534331214b85e5838c2))
|
|
486
|
+
* **SDK:** upgrade to version 2.32.0 ([6acb7d4](https://github.com/roomle-dev/roomle-ui/commit/6acb7d4b1277ecb381a42db7791c40b49021380f))
|
|
487
|
+
* **SDK:** upgrade to version 2.33.0-alpha.1 ([fd60867](https://github.com/roomle-dev/roomle-ui/commit/fd6086715cabd6d1814f1555c07d9428d3c0e423))
|
|
488
|
+
* **SDK:** upgrade to version 2.33.0-alpha.2 ([6e395cd](https://github.com/roomle-dev/roomle-ui/commit/6e395cd0841d04065c6ce2e7b07eef65e1203427))
|
|
489
|
+
* **SDK:** upgrade to version 2.34.0 ([040fff7](https://github.com/roomle-dev/roomle-ui/commit/040fff75928768578a6ce5e7d5fcdef71d103a42))
|
|
490
|
+
* **SDK:** upgrade to version 2.35.0-alpha.1 ([c13174a](https://github.com/roomle-dev/roomle-ui/commit/c13174afd3c6df810aa2fda8f9c79df5fa14d40b))
|
|
491
|
+
* **SDK:** upgrade to version 2.35.0-alpha.2 ([bb7cd51](https://github.com/roomle-dev/roomle-ui/commit/bb7cd5198956026c646d2fbafbd96f9c33e3b6e1))
|
|
492
|
+
* **SDK:** upgrade to version 2.35.0-alpha.2 ([ee0cfe3](https://github.com/roomle-dev/roomle-ui/commit/ee0cfe3630858e8a2eeeff0a9d29afd2646d1e41))
|
|
493
|
+
* **SDK:** upgrade to version 2.35.0-alpha.3 ([ca28a34](https://github.com/roomle-dev/roomle-ui/commit/ca28a34fcc1614ef007d2d53328f0210c94345e6))
|
|
494
|
+
* **SDK:** upgrade to version 2.35.0-alpha.3 ([1a293b0](https://github.com/roomle-dev/roomle-ui/commit/1a293b03b9e6c0d624ab2fc35bdba49bc682263f))
|
|
495
|
+
* **SDK:** upgrade to version 2.35.0-alpha.5 ([c90d419](https://github.com/roomle-dev/roomle-ui/commit/c90d41949df8af6e959ff52ffed8d0a3dda161a6))
|
|
496
|
+
* **SDK:** upgrade to version 2.35.1-alpha.1 ([d864df7](https://github.com/roomle-dev/roomle-ui/commit/d864df7261fd7ba8dccc86f206bbe03620e38c11))
|
|
497
|
+
* **SDK:** upgrade to version 2.35.1-alpha.1 ([bfd3d24](https://github.com/roomle-dev/roomle-ui/commit/bfd3d24c3d2d66b0d9270bb8625fb1b5e68e92c2))
|
|
498
|
+
* **SDK:** upgrade to version 2.36.0-alpha.1 ([6d5fae3](https://github.com/roomle-dev/roomle-ui/commit/6d5fae3851988aa6f77d0f46dc3a3f364c1df292))
|
|
499
|
+
* **SDK:** upgrade to version 2.36.0-alpha.2 ([66197b1](https://github.com/roomle-dev/roomle-ui/commit/66197b1699f22229614c753948c233d30456c6e4))
|
|
500
|
+
* **SDK:** upgrade to version 2.36.0-alpha.3 ([92c3065](https://github.com/roomle-dev/roomle-ui/commit/92c30653eb3e625d5c69e748f3fb447547573d8d))
|
|
501
|
+
* **SDK:** upgrade to version 2.36.0-alpha.4 ([2317abf](https://github.com/roomle-dev/roomle-ui/commit/2317abf9349aff15705e13fcaf97ce9a0555ef53))
|
|
502
|
+
* **SDK:** upgrade to version 2.36.0-alpha.5 ([10a31d2](https://github.com/roomle-dev/roomle-ui/commit/10a31d262362ed6523d62fedd43a18f2aa34568d))
|
|
503
|
+
* **SDK:** upgrade to version 2.37.0-alpha.1 ([d73ad76](https://github.com/roomle-dev/roomle-ui/commit/d73ad769380c3ca94f8e56e6d05a292b7b782d2b))
|
|
504
|
+
* **SDK:** upgrade to version 2.37.0 ([47866eb](https://github.com/roomle-dev/roomle-ui/commit/47866eb12e1ed304fcb49f1501086830f24872a6))
|
|
505
|
+
* **SDK:** upgrade to version 2.38.0-alpha.1 ([6324149](https://github.com/roomle-dev/roomle-ui/commit/632414927a14d3ac323c1786b5268e943257300d))
|
|
506
|
+
* **SDK:** upgrade to version 2.38.0 ([4e41522](https://github.com/roomle-dev/roomle-ui/commit/4e41522025ba9daa892ebbd38e022b1ae901ad54))
|
|
507
|
+
* **SDK:** upgrade to version 2.39.0-alpha.1 ([a1dca3e](https://github.com/roomle-dev/roomle-ui/commit/a1dca3ed1cc4f8ee4bc888a6fc1da14266d03102))
|
|
508
|
+
* **SDK:** upgrade to version 2.39.0-alpha.2 ([9d32d1b](https://github.com/roomle-dev/roomle-ui/commit/9d32d1b10c95d59a11b951a0aefc80a3e1a24634))
|
|
509
|
+
* **SDK:** upgrade to version 2.39.0-alpha.3 ([7c812cf](https://github.com/roomle-dev/roomle-ui/commit/7c812cfbec49d87af1f13ca6bde983a649850637))
|
|
510
|
+
* **SDK:** upgrade to version 2.39.0 ([e13eba3](https://github.com/roomle-dev/roomle-ui/commit/e13eba3c87068bccd6aca69bad6e0d0c8e7163a6))
|
|
511
|
+
* **SDK:** upgrade to version 2.4.0 ([67b8124](https://github.com/roomle-dev/roomle-ui/commit/67b8124dfd6e031b530db7641c7746dead5c4e7e))
|
|
512
|
+
* **SDK:** upgrade to version 2.40.0-alpha.1 ([f6be2d6](https://github.com/roomle-dev/roomle-ui/commit/f6be2d61896f2223811aa86dca112e4d0921eec5))
|
|
513
|
+
* **SDK:** upgrade to version 2.40.0-alpha.2 ([8a9a3f9](https://github.com/roomle-dev/roomle-ui/commit/8a9a3f9bc7af1b3900f8760b1ec56fe51fc1b729))
|
|
514
|
+
* **SDK:** upgrade to version 2.40.0-alpha.3 ([8833fc5](https://github.com/roomle-dev/roomle-ui/commit/8833fc519f4983409212ead36eb38a8c1a93aef1))
|
|
515
|
+
* **SDK:** upgrade to version 2.40.0-alpha.4 ([c0940c1](https://github.com/roomle-dev/roomle-ui/commit/c0940c13b40b10c3fe779c28571e5a96c67acd48))
|
|
516
|
+
* **SDK:** upgrade to version 2.40.0-alpha.5 ([579a79a](https://github.com/roomle-dev/roomle-ui/commit/579a79af6358eb13e9a3b3efd5e857a3d558ba23))
|
|
517
|
+
* **SDK:** upgrade to version 2.40.0-alpha.6 ([e1323da](https://github.com/roomle-dev/roomle-ui/commit/e1323dada1fca1a61a09e2ad79530d8f3d325a05))
|
|
518
|
+
* **SDK:** upgrade to version 2.40.0-alpha.7 ([6aa4032](https://github.com/roomle-dev/roomle-ui/commit/6aa40325dcc514b490ed6ca41206ea29f63461f4))
|
|
519
|
+
* **SDK:** upgrade to version 2.40.0-alpha.8 ([c721d2e](https://github.com/roomle-dev/roomle-ui/commit/c721d2ee71c09fa5452f36d078be4415aa6c4a4e))
|
|
520
|
+
* **SDK:** upgrade to version 2.41.0-alpha.2 ([afdd6e4](https://github.com/roomle-dev/roomle-ui/commit/afdd6e447dcc2c3e9606bb31e7d808c661e70072))
|
|
521
|
+
* **SDK:** upgrade to version 2.42.0-alpha.5 ([cc0e48b](https://github.com/roomle-dev/roomle-ui/commit/cc0e48b9da91bc5380573a323bca1d73bbe8c98a))
|
|
522
|
+
* **SDK:** upgrade to version 2.42.0-alpha.6 ([3165ee7](https://github.com/roomle-dev/roomle-ui/commit/3165ee781aea9fa06eb706f47b9888c2942603c1))
|
|
523
|
+
* **SDK:** upgrade to version 2.43.0-alpha.1 ([edac9d3](https://github.com/roomle-dev/roomle-ui/commit/edac9d31a0bde5b2f9a53e15e767dc4da2fe7b7b))
|
|
524
|
+
* **SDK:** upgrade to version 2.43.0-alpha.2 ([6f8589c](https://github.com/roomle-dev/roomle-ui/commit/6f8589c03eadbf5e910c957e63b60ac0f6b94526))
|
|
525
|
+
* **SDK:** upgrade to version 2.43.0-alpha.4 ([0287545](https://github.com/roomle-dev/roomle-ui/commit/028754585692e2468090e76e8a4f7a7af4675237))
|
|
526
|
+
* **SDK:** upgrade to version 2.43.0 ([a288283](https://github.com/roomle-dev/roomle-ui/commit/a288283d9954b72d4940931edc0eafd281fd2587))
|
|
527
|
+
* **SDK:** upgrade to version 2.44.0-alpha.10 ([1548ad4](https://github.com/roomle-dev/roomle-ui/commit/1548ad47db2925714e3ed6b619f9b668c84724ae))
|
|
528
|
+
* **SDK:** upgrade to version 2.44.0-alpha.11 ([098c8ae](https://github.com/roomle-dev/roomle-ui/commit/098c8ae08129df9ed77230982b382b97a0ed019d))
|
|
529
|
+
* **SDK:** upgrade to version 2.44.0-alpha.12 ([b711456](https://github.com/roomle-dev/roomle-ui/commit/b7114568bb5e05dbbd585ba0f59b039246c468a7))
|
|
530
|
+
* **SDK:** upgrade to version 2.44.0-alpha.2 ([8aef07e](https://github.com/roomle-dev/roomle-ui/commit/8aef07e61f808480ccc77a9d4c9c6920e049f711))
|
|
531
|
+
* **SDK:** upgrade to version 2.44.0-alpha.3 ([e627217](https://github.com/roomle-dev/roomle-ui/commit/e6272175b488275a84303306e0e8ae489de666d9))
|
|
532
|
+
* **SDK:** upgrade to version 2.44.0-alpha.5 ([54193a7](https://github.com/roomle-dev/roomle-ui/commit/54193a7e5f1d3971cce4d7bf92e2d0129f4a1b8a))
|
|
533
|
+
* **SDK:** upgrade to version 2.44.0-alpha.6 ([34c5276](https://github.com/roomle-dev/roomle-ui/commit/34c5276cffe790a7c3b96dad21d622a25b7bcfc5))
|
|
534
|
+
* **SDK:** upgrade to version 2.44.0-alpha.7 ([c711752](https://github.com/roomle-dev/roomle-ui/commit/c711752a16188aca9a705122f3c52ea01eecebda))
|
|
535
|
+
* **SDK:** upgrade to version 2.44.0-alpha.8 ([80ec91d](https://github.com/roomle-dev/roomle-ui/commit/80ec91dc3fc1e9ad0f3fda1444d2f2058e0a1215))
|
|
536
|
+
* **SDK:** upgrade to version 2.44.0-alpha.9 ([8079b3b](https://github.com/roomle-dev/roomle-ui/commit/8079b3b9102be5b274f1831ffb22e8e091d872e0))
|
|
537
|
+
* **SDK:** upgrade to version 2.44.0 ([4493bb4](https://github.com/roomle-dev/roomle-ui/commit/4493bb4e039a3d94ebed236692eb0f6f8791cf03))
|
|
538
|
+
* **SDK:** upgrade to version 2.45.0-alpha.1 ([9ff15c8](https://github.com/roomle-dev/roomle-ui/commit/9ff15c850443340f4964e243cfddd14a8312f510))
|
|
539
|
+
* **SDK:** upgrade to version 2.45.0-alpha.2 ([8b2713b](https://github.com/roomle-dev/roomle-ui/commit/8b2713b95bc5f4ee0f739b88cb2a0400e45a5c64))
|
|
540
|
+
* **SDK:** upgrade to version 2.45.0-alpha.3 ([4470bf7](https://github.com/roomle-dev/roomle-ui/commit/4470bf791d6a75ba92c03c941e47126b5969c34b))
|
|
541
|
+
* **SDK:** upgrade to version 2.45.0-alpha.4 ([6a2237f](https://github.com/roomle-dev/roomle-ui/commit/6a2237f22774848aac67997ada9f465cee92e3d9))
|
|
542
|
+
* **SDK:** upgrade to version 2.45.0-alpha.5 ([e66f315](https://github.com/roomle-dev/roomle-ui/commit/e66f31520834f4dcbbcfe3a6e8bcf6cba311b48a))
|
|
543
|
+
* **SDK:** upgrade to version 2.45.0-alpha.6 ([80a2521](https://github.com/roomle-dev/roomle-ui/commit/80a252147cb3c64d678b7f2a3c538038793689e7))
|
|
544
|
+
* **SDK:** upgrade to version 2.45.0-alpha.7 ([ed266f5](https://github.com/roomle-dev/roomle-ui/commit/ed266f567ee859b0ca26c29e8da483522c4bee91))
|
|
545
|
+
* **SDK:** upgrade to version 2.45.0 ([7d3425a](https://github.com/roomle-dev/roomle-ui/commit/7d3425a911431d3ff50afe33c021a768421ebee7))
|
|
546
|
+
* **SDK:** upgrade to version 2.45.1-alpha.1 ([7e3fbbe](https://github.com/roomle-dev/roomle-ui/commit/7e3fbbea546db4ef1ada05e6a77160fc2589f5f7))
|
|
547
|
+
* **SDK:** upgrade to version 2.46.0-alpha.1 ([91eb35c](https://github.com/roomle-dev/roomle-ui/commit/91eb35c1e7c5679174cea866ef7650b1816cbcaa))
|
|
548
|
+
* **SDK:** upgrade to version 2.46.0-alpha.2 ([4f013b7](https://github.com/roomle-dev/roomle-ui/commit/4f013b7a491a50462316a4e84b39f687f4d376cb))
|
|
549
|
+
* **SDK:** upgrade to version 2.46.0-alpha.3 ([57b7c60](https://github.com/roomle-dev/roomle-ui/commit/57b7c60c784520519e762ef382f7dd81a504964b))
|
|
550
|
+
* **SDK:** upgrade to version 2.46.0 ([bd1d4da](https://github.com/roomle-dev/roomle-ui/commit/bd1d4daa9f45cfd50189b8e92ff9ce963f06845a))
|
|
551
|
+
* **SDK:** upgrade to version 2.47.0-alpha.1 ([1652dc8](https://github.com/roomle-dev/roomle-ui/commit/1652dc8e1afb878e3bd531deb292acf4f0906b2c))
|
|
552
|
+
* **SDK:** upgrade to version 2.47.0-alpha.2 ([bb5c4c1](https://github.com/roomle-dev/roomle-ui/commit/bb5c4c139206744250ed257c75272ad9c2f02f2f))
|
|
553
|
+
* **SDK:** upgrade to version 2.47.0-alpha.3 ([e0eea69](https://github.com/roomle-dev/roomle-ui/commit/e0eea696b331966959c70ad9bc4d193350ef6dcd))
|
|
554
|
+
* **SDK:** upgrade to version 2.47.0-alpha.4 ([fe577b6](https://github.com/roomle-dev/roomle-ui/commit/fe577b6598cf7baaee4d476d341582fc0d9124e9))
|
|
555
|
+
* **SDK:** upgrade to version 2.47.0-alpha.5 ([9a11f8d](https://github.com/roomle-dev/roomle-ui/commit/9a11f8d6c2ab04ee9e3be58d4690bd43835786a6))
|
|
556
|
+
* **SDK:** upgrade to version 2.47.0 ([cf36ca6](https://github.com/roomle-dev/roomle-ui/commit/cf36ca6510f5b0e3afb3cb7c59283c72f93c1935))
|
|
557
|
+
* **SDK:** upgrade to version 2.47.0 ([e6370b8](https://github.com/roomle-dev/roomle-ui/commit/e6370b8bc688fb3b4684659c9815746dc3369213))
|
|
558
|
+
* **SDK:** upgrade to version 2.48.0 ([bc0b13f](https://github.com/roomle-dev/roomle-ui/commit/bc0b13fa9960dc144d815d020de937083cc6bdb7))
|
|
559
|
+
* **SDK:** upgrade to version 2.49.0-alpha.1 ([3f72da8](https://github.com/roomle-dev/roomle-ui/commit/3f72da82c56b1103bc5d5045bbac7670999c16c9))
|
|
560
|
+
* **SDK:** upgrade to version 2.49.0-alpha.3 ([1436a06](https://github.com/roomle-dev/roomle-ui/commit/1436a06bd6730d3cc84d42c8674d47c40e01a61d))
|
|
561
|
+
* **SDK:** upgrade to version 2.49.0-alpha.4 ([0316119](https://github.com/roomle-dev/roomle-ui/commit/0316119874f93ce2608a2fbb5bce9756b48a393a))
|
|
562
|
+
* **SDK:** upgrade to version 2.49.0-alpha.5 ([c13de91](https://github.com/roomle-dev/roomle-ui/commit/c13de912ca414f5794585db85c2a2ff8559dbe3c))
|
|
563
|
+
* **SDK:** upgrade to version 2.49.0 ([0e568dc](https://github.com/roomle-dev/roomle-ui/commit/0e568dcc6495c0513228b98d4213f45bd174d883))
|
|
564
|
+
* **SDK:** upgrade to version 2.49.1 ([4eecb1d](https://github.com/roomle-dev/roomle-ui/commit/4eecb1dc039459022f508e0245a8cd220e8860ac))
|
|
565
|
+
* **SDK:** upgrade to version 2.49.2-alpha.1 ([abe425c](https://github.com/roomle-dev/roomle-ui/commit/abe425cb9ed8025160dc7b9378152664b8334d17))
|
|
566
|
+
* **SDK:** upgrade to version 2.49.2-alpha.2 ([8ef1264](https://github.com/roomle-dev/roomle-ui/commit/8ef12643a6400edf8a90c5676024faff5369e0c0))
|
|
567
|
+
* **SDK:** upgrade to version 2.5.0 ([a844f19](https://github.com/roomle-dev/roomle-ui/commit/a844f19b99015a16b7c149a45473b29c813870fa))
|
|
568
|
+
* **SDK:** upgrade to version 2.50.0-alpha.1 ([52d69b9](https://github.com/roomle-dev/roomle-ui/commit/52d69b9d9153363f7ad3fc08fa624614763a8bad))
|
|
569
|
+
* **SDK:** upgrade to version 2.50.0-alpha.2 ([1450736](https://github.com/roomle-dev/roomle-ui/commit/145073623cd541c6fd3ca786d1290e54d24e6ec8))
|
|
570
|
+
* **SDK:** upgrade to version 2.50.0-alpha.3 ([ccb0f23](https://github.com/roomle-dev/roomle-ui/commit/ccb0f2314e26a1d428d96684863d7c257aebdef5))
|
|
571
|
+
* **SDK:** upgrade to version 2.50.0-alpha.4 ([b63b6c9](https://github.com/roomle-dev/roomle-ui/commit/b63b6c9b4b4a09b88e52d12f6e1409c3c1fc9e2e))
|
|
572
|
+
* **SDK:** upgrade to version 2.50.0 ([f0ad212](https://github.com/roomle-dev/roomle-ui/commit/f0ad21212e70a556418499e68c24583e181f518c))
|
|
573
|
+
* **SDK:** upgrade to version 2.51.0-alpha.1 ([f284e93](https://github.com/roomle-dev/roomle-ui/commit/f284e9368799e7791c5e7096ef2e2f8e9fc77950))
|
|
574
|
+
* **SDK:** upgrade to version 2.51.0-alpha.2 ([631fbc5](https://github.com/roomle-dev/roomle-ui/commit/631fbc564d940f1564f450e76034c0a346f2e655))
|
|
575
|
+
* **SDK:** upgrade to version 2.51.0-alpha.3 ([80d3a87](https://github.com/roomle-dev/roomle-ui/commit/80d3a87cb62fc05813746ed308cdae7b0e717817))
|
|
576
|
+
* **SDK:** upgrade to version 2.51.0 ([f53a8d3](https://github.com/roomle-dev/roomle-ui/commit/f53a8d3bfe78f9237d692eebb31883697ea075f4))
|
|
577
|
+
* **SDK:** upgrade to version 2.52.0-alpha.1 ([f7b0541](https://github.com/roomle-dev/roomle-ui/commit/f7b054158a45ff62e0aa2d263f15ad1cd39abfc4))
|
|
578
|
+
* **SDK:** upgrade to version 2.52.0-alpha.2 ([c660e4e](https://github.com/roomle-dev/roomle-ui/commit/c660e4e7b95f0d40d245194a71df284e59a89ad1))
|
|
579
|
+
* **SDK:** upgrade to version 2.52.0-alpha.3 ([8e67402](https://github.com/roomle-dev/roomle-ui/commit/8e67402d38fc22bac710637c59684332d3b1b595))
|
|
580
|
+
* **SDK:** upgrade to version 2.52.0-alpha.4 ([bd795df](https://github.com/roomle-dev/roomle-ui/commit/bd795df5bc1d2e78bf483ce90d823c65ce163739))
|
|
581
|
+
* **SDK:** upgrade to version 2.52.0-alpha.5 ([9c014ab](https://github.com/roomle-dev/roomle-ui/commit/9c014ab161ecd4d7fa1cd4b542e6da0730b93c46))
|
|
582
|
+
* **SDK:** upgrade to version 2.52.0 ([5e8a909](https://github.com/roomle-dev/roomle-ui/commit/5e8a9096f633b28ba4315366aeb03606b63ed6df))
|
|
583
|
+
* **SDK:** upgrade to version 2.53.0-alpha.1 ([0a774b7](https://github.com/roomle-dev/roomle-ui/commit/0a774b709cec0da6fe64ff58ffe2d8f6d87a1cdc))
|
|
584
|
+
* **SDK:** upgrade to version 2.53.0-alpha.2 ([1477e36](https://github.com/roomle-dev/roomle-ui/commit/1477e36fc1850c9bcc4917c2d22e98e6d33110a1))
|
|
585
|
+
* **SDK:** upgrade to version 2.53.0-alpha.3 ([affbd1e](https://github.com/roomle-dev/roomle-ui/commit/affbd1e675dc572eb06e4a88f865867101e36a83))
|
|
586
|
+
* **SDK:** upgrade to version 2.53.0-alpha.4 ([e4e15c4](https://github.com/roomle-dev/roomle-ui/commit/e4e15c42a5af3a2a4a3e44a6ba80e50c2d3815d9))
|
|
587
|
+
* **SDK:** upgrade to version 2.53.0-alpha.5 ([74a6658](https://github.com/roomle-dev/roomle-ui/commit/74a66588039ec863af9161e902eb9da44433e952))
|
|
588
|
+
* **SDK:** upgrade to version 2.53.0-alpha.6 ([f8318ac](https://github.com/roomle-dev/roomle-ui/commit/f8318ac4401d94066c30a802081be46a75c1ace5))
|
|
589
|
+
* **SDK:** upgrade to version 2.53.0 ([8e9c989](https://github.com/roomle-dev/roomle-ui/commit/8e9c9893d333b4f0ad452dc373e46b06fbb91372))
|
|
590
|
+
* **SDK:** upgrade to version 2.54.0-alpha.1 ([97c59fb](https://github.com/roomle-dev/roomle-ui/commit/97c59fbde93232c757414f7844d710496ee33c8e))
|
|
591
|
+
* **SDK:** upgrade to version 2.54.0-alpha.2 ([4b5b491](https://github.com/roomle-dev/roomle-ui/commit/4b5b491dd4b6dd99ea1bdc1f11327e4be0e3c428))
|
|
592
|
+
* **SDK:** upgrade to version 2.54.0-alpha.3 ([8b85b34](https://github.com/roomle-dev/roomle-ui/commit/8b85b34a86d1862d045af134fa7a9d779a995bf3))
|
|
593
|
+
* **SDK:** upgrade to version 2.54.0-alpha.4 ([0258303](https://github.com/roomle-dev/roomle-ui/commit/0258303d4bf5f275f49b0588e635003a968ef8d6))
|
|
594
|
+
* **SDK:** upgrade to version 2.54.0-alpha.5 ([f7b2f2a](https://github.com/roomle-dev/roomle-ui/commit/f7b2f2ab948c729e92512f727df8697629b1e890))
|
|
595
|
+
* **SDK:** upgrade to version 2.54.0-alpha.6 ([242eafa](https://github.com/roomle-dev/roomle-ui/commit/242eafa08b71dff8b4a1d18e85aed08579b9983f))
|
|
596
|
+
* **SDK:** upgrade to version 2.54.0-alpha.7 ([3b1b8ca](https://github.com/roomle-dev/roomle-ui/commit/3b1b8ca96aedc7496ad14e4ed4fe5cde08eec78e))
|
|
597
|
+
* **SDK:** upgrade to version 2.54.0-alpha.8 ([de51cea](https://github.com/roomle-dev/roomle-ui/commit/de51cea551378e3d60140a40ab1961eeba64e3e7))
|
|
598
|
+
* **SDK:** upgrade to version 2.54.0-alpha.9 ([c4c2844](https://github.com/roomle-dev/roomle-ui/commit/c4c2844e0fc4e1018ff459793e6eb572a10cce82))
|
|
599
|
+
* **SDK:** upgrade to version 2.54.0 ([f2e91b4](https://github.com/roomle-dev/roomle-ui/commit/f2e91b48ee19774db223f05ef38e2bacdeda9395))
|
|
600
|
+
* **SDK:** upgrade to version 2.55.0-alpha.1 ([9b053fe](https://github.com/roomle-dev/roomle-ui/commit/9b053fe6541b26ff8aaeb98ef464952b1af1e09b))
|
|
601
|
+
* **SDK:** upgrade to version 2.55.0-alpha.2 ([d465a3f](https://github.com/roomle-dev/roomle-ui/commit/d465a3f716db8f857a50932c14a0f59b7f5f5af7))
|
|
602
|
+
* **SDK:** upgrade to version 2.55.0-alpha.3 ([f7bf0e1](https://github.com/roomle-dev/roomle-ui/commit/f7bf0e199f094ac65a20e0afd01ba4d2fc07408c))
|
|
603
|
+
* **SDK:** upgrade to version 2.55.0-alpha.4 ([9abb5b8](https://github.com/roomle-dev/roomle-ui/commit/9abb5b883a91a7d5a4aecd9f04385624b2c1898f))
|
|
604
|
+
* **SDK:** upgrade to version 2.55.1-alpha.1 ([4150f0a](https://github.com/roomle-dev/roomle-ui/commit/4150f0a2d3a9229dbe24573553112c2996a789ce))
|
|
605
|
+
* **SDK:** upgrade to version 2.56.0-alpha.1 ([0bf2e20](https://github.com/roomle-dev/roomle-ui/commit/0bf2e20b282ded36f9a0410ad0ea9aa7b42b90ef))
|
|
606
|
+
* **SDK:** upgrade to version 2.56.0-alpha.2 ([0e34bb3](https://github.com/roomle-dev/roomle-ui/commit/0e34bb34dd215cb3d6214077fb4aebe19b54f505))
|
|
607
|
+
* **SDK:** upgrade to version 2.56.0-alpha.3 ([16ead33](https://github.com/roomle-dev/roomle-ui/commit/16ead330b1cd6ecd8a9f5ebe07087261cdc3f825))
|
|
608
|
+
* **SDK:** upgrade to version 2.56.0-alpha.4 ([c8a6060](https://github.com/roomle-dev/roomle-ui/commit/c8a6060e82250f41b6ee61f05a698a44fddaf393))
|
|
609
|
+
* **SDK:** upgrade to version 2.56.0 ([c888618](https://github.com/roomle-dev/roomle-ui/commit/c8886187f819c91123eb2d95ab98d5577ad0bdfe))
|
|
610
|
+
* **SDK:** upgrade to version 2.57.0-alpha.1 ([e0e5787](https://github.com/roomle-dev/roomle-ui/commit/e0e57879ce924a0866354a8cd7a935aaf1c48481))
|
|
611
|
+
* **SDK:** upgrade to version 2.57.0-alpha.2 ([33f66cb](https://github.com/roomle-dev/roomle-ui/commit/33f66cb816590f0d3a887501ebc030640533648c))
|
|
612
|
+
* **SDK:** upgrade to version 2.57.0-alpha.3 ([2986ba4](https://github.com/roomle-dev/roomle-ui/commit/2986ba4c47b35052f36c3266cb8a4022ea790438))
|
|
613
|
+
* **SDK:** upgrade to version 2.57.0 ([9db6cfb](https://github.com/roomle-dev/roomle-ui/commit/9db6cfb4fbf70ded2bd8de5714380219f1166231))
|
|
614
|
+
* **SDK:** upgrade to version 2.58.0-alpha.10 ([0a1d56e](https://github.com/roomle-dev/roomle-ui/commit/0a1d56e4e6b14609c60b1953ca100c9b8562a353))
|
|
615
|
+
* **SDK:** upgrade to version 2.58.0-alpha.11 ([ce3338e](https://github.com/roomle-dev/roomle-ui/commit/ce3338e9e526baf0c89fb9bfdd23ef3d1c635c96))
|
|
616
|
+
* **SDK:** upgrade to version 2.58.0-alpha.1 ([cc10805](https://github.com/roomle-dev/roomle-ui/commit/cc1080537aa0f1c87bd7794edb7cc4992542cf6b))
|
|
617
|
+
* **SDK:** upgrade to version 2.58.0-alpha.2 ([9df26eb](https://github.com/roomle-dev/roomle-ui/commit/9df26eb1e70a08d19e44e0feb61d350a5c533214))
|
|
618
|
+
* **SDK:** upgrade to version 2.58.0-alpha.3 ([0a8e9f4](https://github.com/roomle-dev/roomle-ui/commit/0a8e9f4b09145e7e408868c17e85a8892bfa049e))
|
|
619
|
+
* **SDK:** upgrade to version 2.58.0-alpha.4 ([0a2d4af](https://github.com/roomle-dev/roomle-ui/commit/0a2d4afdd0083f93131331082176c20b89b61bf3))
|
|
620
|
+
* **SDK:** upgrade to version 2.58.0-alpha.5 ([8872c3f](https://github.com/roomle-dev/roomle-ui/commit/8872c3f2f5d65f04d65f0c65e0b789d9dadc9820))
|
|
621
|
+
* **SDK:** upgrade to version 2.58.0-alpha.7 ([2ba9cc4](https://github.com/roomle-dev/roomle-ui/commit/2ba9cc4386153c01f2173b06ef56b11640f6afe9))
|
|
622
|
+
* **SDK:** upgrade to version 2.58.0-alpha.8 ([a487c09](https://github.com/roomle-dev/roomle-ui/commit/a487c097549d87d0e9e09c3685ab476971742ca3))
|
|
623
|
+
* **SDK:** upgrade to version 2.58.0-alpha.9 ([883656d](https://github.com/roomle-dev/roomle-ui/commit/883656dfe86e929e42a1400cb1e3bbad8a7073ba))
|
|
624
|
+
* **SDK:** upgrade to version 2.58.0 ([d195069](https://github.com/roomle-dev/roomle-ui/commit/d1950698b9af3aed5bc83be00bca7d94af7ec32a))
|
|
625
|
+
* **SDK:** upgrade to version 2.59.0-alpha.3 ([7b26b34](https://github.com/roomle-dev/roomle-ui/commit/7b26b349f10d78d218ad97ed8dcff3b8c1f63e2c))
|
|
626
|
+
* **SDK:** upgrade to version 2.59.0-alpha.4 ([3a92510](https://github.com/roomle-dev/roomle-ui/commit/3a92510150123d6d12757bcba6c955b7e5da3736))
|
|
627
|
+
* **SDK:** upgrade to version 2.59.0-alpha.5 ([4934532](https://github.com/roomle-dev/roomle-ui/commit/493453242f07a5cd80e82ae41146d18dc6cd2462))
|
|
628
|
+
* **SDK:** upgrade to version 2.59.0-alpha.6 ([602c08a](https://github.com/roomle-dev/roomle-ui/commit/602c08a6e2e7f152762c454f5797750e32ebd4d3))
|
|
629
|
+
* **SDK:** upgrade to version 2.59.0 ([a26d7c7](https://github.com/roomle-dev/roomle-ui/commit/a26d7c7f75dc377536d8a9512cfb321f0fb2ded1))
|
|
630
|
+
* **SDK:** upgrade to version 2.60.0-alpha.10 ([37d89fb](https://github.com/roomle-dev/roomle-ui/commit/37d89fb2ba4096900bf11871e1167bd25bf7408c))
|
|
631
|
+
* **SDK:** upgrade to version 2.60.0-alpha.11 ([d80e1aa](https://github.com/roomle-dev/roomle-ui/commit/d80e1aaaeb542d596f63684e5c7e0ebbc4353463))
|
|
632
|
+
* **SDK:** upgrade to version 2.60.0-alpha.12 ([27e43c0](https://github.com/roomle-dev/roomle-ui/commit/27e43c012ec759f798c9268dddccd00f627ea8ac))
|
|
633
|
+
* **SDK:** upgrade to version 2.60.0-alpha.13 ([603238c](https://github.com/roomle-dev/roomle-ui/commit/603238c713bef216f65728dcc7c58b84e243fdf1))
|
|
634
|
+
* **SDK:** upgrade to version 2.60.0-alpha.14 ([a9f3f30](https://github.com/roomle-dev/roomle-ui/commit/a9f3f3061e79c6bbd310b323d95ceabb639c51bb))
|
|
635
|
+
* **SDK:** upgrade to version 2.60.0-alpha.15 ([50a4daf](https://github.com/roomle-dev/roomle-ui/commit/50a4daf2bcd1b45d6c0c7d90e7920582b4cbc964))
|
|
636
|
+
* **SDK:** upgrade to version 2.60.0-alpha.1 ([82ec36e](https://github.com/roomle-dev/roomle-ui/commit/82ec36ee2534a499c1c80badb6a8d48277f9ce95))
|
|
637
|
+
* **SDK:** upgrade to version 2.60.0-alpha.3 ([43808f6](https://github.com/roomle-dev/roomle-ui/commit/43808f630682308fc738b91459129b8f82686175))
|
|
638
|
+
* **SDK:** upgrade to version 2.60.0-alpha.4 ([78880df](https://github.com/roomle-dev/roomle-ui/commit/78880dfff21fd900ba0ab4902f667fdb4595711a))
|
|
639
|
+
* **SDK:** upgrade to version 2.60.0-alpha.5 ([9feadad](https://github.com/roomle-dev/roomle-ui/commit/9feadad436f828bb8c216b52f0ca4cdc59aee6e5))
|
|
640
|
+
* **SDK:** upgrade to version 2.60.0-alpha.6 ([78dad8d](https://github.com/roomle-dev/roomle-ui/commit/78dad8d653b2af60afd916eaeef6213acdf3e624))
|
|
641
|
+
* **SDK:** upgrade to version 2.60.0-alpha.7 ([064187a](https://github.com/roomle-dev/roomle-ui/commit/064187abf146e21890f947a8ab216106419e2011))
|
|
642
|
+
* **SDK:** upgrade to version 2.60.0-alpha.8 ([e90efb9](https://github.com/roomle-dev/roomle-ui/commit/e90efb9807bfaf1843a1a0e9ce3a2af5014ec894))
|
|
643
|
+
* **SDK:** upgrade to version 2.60.0 ([184057c](https://github.com/roomle-dev/roomle-ui/commit/184057c8c66b3a0237c6c9f89d2b66ed09b1b797))
|
|
644
|
+
* **SDK:** upgrade to version 2.61.0-alpha.1 ([9dc991e](https://github.com/roomle-dev/roomle-ui/commit/9dc991ea9d4d3bd56505b4e3f410d18e5fa8f281))
|
|
645
|
+
* **SDK:** upgrade to version 2.61.0-alpha.2 ([db4e89e](https://github.com/roomle-dev/roomle-ui/commit/db4e89e4a045f2d232cbfea6436386d5532855c7))
|
|
646
|
+
* **SDK:** upgrade to version 2.61.0-alpha.3 ([c987e09](https://github.com/roomle-dev/roomle-ui/commit/c987e0951bee62b1b8999de1e162819d2023bfa1))
|
|
647
|
+
* **SDK:** upgrade to version 2.61.0-alpha.4 ([577741f](https://github.com/roomle-dev/roomle-ui/commit/577741f93a91384c6b32d7503931b2c5e1916a27))
|
|
648
|
+
* **SDK:** upgrade to version 2.61.0 ([cec476b](https://github.com/roomle-dev/roomle-ui/commit/cec476b7085d268f9390e4675df59ea70c8d3cf5))
|
|
649
|
+
* **SDK:** upgrade to version 2.62.0-alpha.1 ([bc6a6d8](https://github.com/roomle-dev/roomle-ui/commit/bc6a6d850dfb75a1757074e3e3e258100406833c))
|
|
650
|
+
* **SDK:** upgrade to version 2.62.0-alpha.2 ([1c4ee8a](https://github.com/roomle-dev/roomle-ui/commit/1c4ee8a53ae2f78f78f6b7d86772da1212d85151))
|
|
651
|
+
* **SDK:** upgrade to version 2.62.0-alpha.3 ([4bc00cf](https://github.com/roomle-dev/roomle-ui/commit/4bc00cf99abf717ffc739451c8b4f8385891a100))
|
|
652
|
+
* **SDK:** upgrade to version 2.62.0-alpha.4 ([9e747af](https://github.com/roomle-dev/roomle-ui/commit/9e747af13df9174543283fece1e525b5a5eab201))
|
|
653
|
+
* **SDK:** upgrade to version 2.62.0 ([7a2c4c8](https://github.com/roomle-dev/roomle-ui/commit/7a2c4c879cb3d6a6c26d513635667fa9d0632892))
|
|
654
|
+
* **SDK:** upgrade to version 2.63.0-alpha.1 ([b21a273](https://github.com/roomle-dev/roomle-ui/commit/b21a273b92aaa9def3e22b0edd373f5f6c6b4c21))
|
|
655
|
+
* **SDK:** upgrade to version 2.63.0 ([6f3f778](https://github.com/roomle-dev/roomle-ui/commit/6f3f778c497333791deae2bae29d00832a127dee))
|
|
656
|
+
* **SDK:** upgrade to version 2.64.0-alpha.2 ([ba5ec1e](https://github.com/roomle-dev/roomle-ui/commit/ba5ec1e91b8d1fc5984caccd55c5a3dcc51e2945))
|
|
657
|
+
* **SDK:** upgrade to version 2.64.0-alpha.3 ([9d78f04](https://github.com/roomle-dev/roomle-ui/commit/9d78f047cbe26bd693ef10d9a9f0ddec17a23bac))
|
|
658
|
+
* **SDK:** upgrade to version 2.64.0-alpha.4 ([3556e3e](https://github.com/roomle-dev/roomle-ui/commit/3556e3eca39c99a7d1393417d770f6a97d0c0d10))
|
|
659
|
+
* **SDK:** upgrade to version 2.64.0-alpha.5 ([9d66428](https://github.com/roomle-dev/roomle-ui/commit/9d6642884731de43e005e91e578e4b7e9610a0fa))
|
|
660
|
+
* **SDK:** upgrade to version 2.64.0-alpha.6 ([a9b1d3a](https://github.com/roomle-dev/roomle-ui/commit/a9b1d3afbc5cee7ffbc3342beeabb64fba8e1d4b))
|
|
661
|
+
* **SDK:** upgrade to version 2.64.0-alpha.7 ([a689fbc](https://github.com/roomle-dev/roomle-ui/commit/a689fbc3cf6c2426df64f91476d61d31cfdb244e))
|
|
662
|
+
* **SDK:** upgrade to version 2.64.0 ([f6fcdd3](https://github.com/roomle-dev/roomle-ui/commit/f6fcdd3ba3177b1850701f3cfc8d08b806d160ee))
|
|
663
|
+
* **SDK:** upgrade to version 2.64.1-alpha.1 ([5b8c495](https://github.com/roomle-dev/roomle-ui/commit/5b8c495eb5adf5d41b9db725e6e1d10460e3a24a))
|
|
664
|
+
* **SDK:** upgrade to version 2.65.0-alpha.1 ([ceb6ee0](https://github.com/roomle-dev/roomle-ui/commit/ceb6ee0f63cb8df1042eb7c553b8bce458993e7c))
|
|
665
|
+
* **SDK:** upgrade to version 2.65.0-alpha.2 ([19cda81](https://github.com/roomle-dev/roomle-ui/commit/19cda8189f42483ae983e4c9938ffa1811e4edb1))
|
|
666
|
+
* **SDK:** upgrade to version 2.65.0-alpha.3 ([cfa8909](https://github.com/roomle-dev/roomle-ui/commit/cfa8909d967d6b19a1fd83d68a5f38cceab28117))
|
|
667
|
+
* **SDK:** upgrade to version 2.65.0-alpha.5 ([2f5abf1](https://github.com/roomle-dev/roomle-ui/commit/2f5abf18e24a6aa0efd80c7c6950f71de7244e10))
|
|
668
|
+
* **SDK:** upgrade to version 2.65.0 ([1c66830](https://github.com/roomle-dev/roomle-ui/commit/1c668303b6c2f266f89c605b314a24b2620fc580))
|
|
669
|
+
* **SDK:** upgrade to version 2.66.0-alpha.1 ([42cf5b8](https://github.com/roomle-dev/roomle-ui/commit/42cf5b87aec70f22e4ab74b112053da02b6df0c3))
|
|
670
|
+
* **SDK:** upgrade to version 2.66.0 ([0a1baa1](https://github.com/roomle-dev/roomle-ui/commit/0a1baa10d10ad7e081f879ecc6cd67d746ca0894))
|
|
671
|
+
* **SDK:** upgrade to version 2.67.0-alpha.1 ([239f41d](https://github.com/roomle-dev/roomle-ui/commit/239f41d693d126bae8938422e5867321c16f4fcb))
|
|
672
|
+
* **SDK:** upgrade to version 2.67.0 ([4c89095](https://github.com/roomle-dev/roomle-ui/commit/4c890955e20eb739a5ca61d4b6b0300b2b093054))
|
|
673
|
+
* **SDK:** upgrade to version 2.68.0-alpha.1 ([4e54fa2](https://github.com/roomle-dev/roomle-ui/commit/4e54fa263243d95d0b33fb920e02b80574959370))
|
|
674
|
+
* **SDK:** upgrade to version 2.68.0-alpha.2 ([9e5c761](https://github.com/roomle-dev/roomle-ui/commit/9e5c7615353e34123a3b71f41e4e133218403b01))
|
|
675
|
+
* **SDK:** upgrade to version 2.68.0-alpha.3 ([00e00cb](https://github.com/roomle-dev/roomle-ui/commit/00e00cbb63a023d1cf336bc58c59b6f8cdd7e449))
|
|
676
|
+
* **SDK:** upgrade to version 2.68.0-alpha.4 ([19d7579](https://github.com/roomle-dev/roomle-ui/commit/19d75799606ff965d659726a7d758b9ea31c32f1))
|
|
677
|
+
* **SDK:** upgrade to version 2.68.0-alpha.5 ([4f55d0f](https://github.com/roomle-dev/roomle-ui/commit/4f55d0f38e0a09887448fedd70f5bb99da990598))
|
|
678
|
+
* **SDK:** upgrade to version 2.68.0-alpha.6 ([051c0f6](https://github.com/roomle-dev/roomle-ui/commit/051c0f6f59bfff74c8cfba57749419df820315af))
|
|
679
|
+
* **SDK:** upgrade to version 2.68.0 ([fd367b5](https://github.com/roomle-dev/roomle-ui/commit/fd367b5cc6f66cb76e50d900cbc08595afcb33d7))
|
|
680
|
+
* **SDK:** upgrade to version 2.69.0 ([73f2c9e](https://github.com/roomle-dev/roomle-ui/commit/73f2c9e8e5830b7afc8ca9e944268bc4c5fb2b42))
|
|
681
|
+
* **SDK:** upgrade to version 2.7.0 ([7b0a3b0](https://github.com/roomle-dev/roomle-ui/commit/7b0a3b08a0eac81e2bddc0f8b9066cc567bfb51c))
|
|
682
|
+
* **SDK:** upgrade to version 2.70.0-alpha.10 ([f616ad3](https://github.com/roomle-dev/roomle-ui/commit/f616ad3974b3e2327f2af1ffd65186339b4a69ca))
|
|
683
|
+
* **SDK:** upgrade to version 2.70.0-alpha.1 ([ac9b027](https://github.com/roomle-dev/roomle-ui/commit/ac9b0272727c6c1e47ba65b1a1001b72c0377763))
|
|
684
|
+
* **SDK:** upgrade to version 2.70.0-alpha.3 ([a831241](https://github.com/roomle-dev/roomle-ui/commit/a8312415b85085f71321899bb1b1f491795c6b47))
|
|
685
|
+
* **SDK:** upgrade to version 2.70.0-alpha.4 ([326c404](https://github.com/roomle-dev/roomle-ui/commit/326c404aabfdb2033d4825a6fa5ae1cd8b223bee))
|
|
686
|
+
* **SDK:** upgrade to version 2.70.0-alpha.5 ([c159883](https://github.com/roomle-dev/roomle-ui/commit/c1598834b58050e518c410bd53f738d74ebb951c))
|
|
687
|
+
* **SDK:** upgrade to version 2.70.0-alpha.6 ([ffa192f](https://github.com/roomle-dev/roomle-ui/commit/ffa192f68e015fb8e40bb53797dc4ba47bef03a9))
|
|
688
|
+
* **SDK:** upgrade to version 2.70.0-alpha.7 ([771c397](https://github.com/roomle-dev/roomle-ui/commit/771c397fc260c8a8ec505c1582694c9f27389c43))
|
|
689
|
+
* **SDK:** upgrade to version 2.70.0-alpha.8 ([d280814](https://github.com/roomle-dev/roomle-ui/commit/d280814c2a07ecf1aeb5c089e82cf20560e2e4c8))
|
|
690
|
+
* **SDK:** upgrade to version 2.70.0-alpha.9 ([d4036ed](https://github.com/roomle-dev/roomle-ui/commit/d4036ed06c4c2043ccd16b13c74791758eebf739))
|
|
691
|
+
* **SDK:** upgrade to version 2.70.0 ([67b1ac5](https://github.com/roomle-dev/roomle-ui/commit/67b1ac5d5f28c93f52c43e592818af7edb6191bf))
|
|
692
|
+
* **SDK:** upgrade to version 2.71.0-alpha.2 ([091f11d](https://github.com/roomle-dev/roomle-ui/commit/091f11d034c4715a52e8a91c207bed2814e31bc4))
|
|
693
|
+
* **SDK:** upgrade to version 2.71.0-alpha.3 ([768d4fc](https://github.com/roomle-dev/roomle-ui/commit/768d4fcef9957215ef940e1ea1c4b1b042439580))
|
|
694
|
+
* **SDK:** upgrade to version 2.71.0 ([a219fed](https://github.com/roomle-dev/roomle-ui/commit/a219fed38edc4fae8279cc250f52b06f352c58fd))
|
|
695
|
+
* **SDK:** upgrade to version 2.72.0-alpha.2 ([dc1607b](https://github.com/roomle-dev/roomle-ui/commit/dc1607b7deb9e014eec2fb4322d4ab5b72274135))
|
|
696
|
+
* **SDK:** upgrade to version 2.72.0-alpha.3 ([c86fee4](https://github.com/roomle-dev/roomle-ui/commit/c86fee4f566f0920a55548bd30352fc553902f99))
|
|
697
|
+
* **SDK:** upgrade to version 2.72.0-alpha.4 ([289b549](https://github.com/roomle-dev/roomle-ui/commit/289b549e02acbaed4d772bc1f653383c6af35258))
|
|
698
|
+
* **SDK:** upgrade to version 2.72.0-alpha.5 ([bcb54be](https://github.com/roomle-dev/roomle-ui/commit/bcb54beadc93393609ddc3603207f2854d9c6aa7))
|
|
699
|
+
* **SDK:** upgrade to version 2.72.0-alpha.6 ([be2675f](https://github.com/roomle-dev/roomle-ui/commit/be2675fdfffcf7e13b0a52afaa8e1eb0f565975f))
|
|
700
|
+
* **SDK:** upgrade to version 2.72.0-alpha.7 ([e495e3e](https://github.com/roomle-dev/roomle-ui/commit/e495e3e1ca0cb4b36307d81334631d44202473b7))
|
|
701
|
+
* **SDK:** upgrade to version 2.72.0-alpha.8 ([4ac85e5](https://github.com/roomle-dev/roomle-ui/commit/4ac85e587b0289e37089af2d5630179d6e4dba64))
|
|
702
|
+
* **SDK:** upgrade to version 2.73.0-alpha.1 ([15eabcc](https://github.com/roomle-dev/roomle-ui/commit/15eabcc9c1ff0603ab6937ec5d8645f948e699d7))
|
|
703
|
+
* **SDK:** upgrade to version 2.73.0-alpha.2 ([f80ef08](https://github.com/roomle-dev/roomle-ui/commit/f80ef087b12e1555a52b92e63d36501eda8fce1d))
|
|
704
|
+
* **SDK:** upgrade to version 2.73.0-alpha.3 ([3e35a1c](https://github.com/roomle-dev/roomle-ui/commit/3e35a1ccdd6d8ec0f2b687826119d1325bc49246))
|
|
705
|
+
* **SDK:** upgrade to version 2.73.0-alpha.4 ([7d1440f](https://github.com/roomle-dev/roomle-ui/commit/7d1440f2f1d205d29a95e559346d5adacd87c071))
|
|
706
|
+
* **SDK:** upgrade to version 2.73.0-alpha.5 ([2e98459](https://github.com/roomle-dev/roomle-ui/commit/2e9845950cbb5d7920c9a28e6eb44cdd094de446))
|
|
707
|
+
* **SDK:** upgrade to version 2.73.0-alpha.6 ([2622247](https://github.com/roomle-dev/roomle-ui/commit/26222475921543a3d5b96d67dc9950d572d2a92a))
|
|
708
|
+
* **SDK:** upgrade to version 2.73.0-alpha.7 ([db1d3d1](https://github.com/roomle-dev/roomle-ui/commit/db1d3d1c2af76bb0ee708b66b7f33cef77decbbf))
|
|
709
|
+
* **SDK:** upgrade to version 2.73.0 ([c8a0b08](https://github.com/roomle-dev/roomle-ui/commit/c8a0b0896cc587f1f85c4f3796ad69ce59b7e01b))
|
|
710
|
+
* **SDK:** upgrade to version 2.73.2-alpha.1 ([450cfc3](https://github.com/roomle-dev/roomle-ui/commit/450cfc3e85dfb0ec0bcb9777064a27b84daaeb06))
|
|
711
|
+
* **SDK:** upgrade to version 2.74.0-alpha.1 ([4fde035](https://github.com/roomle-dev/roomle-ui/commit/4fde0355e49dd715309e864122b66bc823771cab))
|
|
712
|
+
* **SDK:** upgrade to version 2.74.0-alpha.2 ([2f57d8e](https://github.com/roomle-dev/roomle-ui/commit/2f57d8e0ecc4ee1df172cc66dbe601ccd5499cb8))
|
|
713
|
+
* **SDK:** upgrade to version 2.74.0-alpha.4 ([621ed7a](https://github.com/roomle-dev/roomle-ui/commit/621ed7acc7d9ab3989decda03203375c95a7d9aa))
|
|
714
|
+
* **SDK:** upgrade to version 2.74.0-alpha.5 ([5d2abfc](https://github.com/roomle-dev/roomle-ui/commit/5d2abfc00e4e6645ec4be1c8d4d06112326d49af))
|
|
715
|
+
* **SDK:** upgrade to version 2.74.0 ([dedb7d5](https://github.com/roomle-dev/roomle-ui/commit/dedb7d51d211d956f91d8fbd7f76a8f5bf92b6da))
|
|
716
|
+
* **SDK:** upgrade to version 2.75.0-alpha.1 ([5479fc5](https://github.com/roomle-dev/roomle-ui/commit/5479fc562d79fcd0a6afd06f2348889d81d826b6))
|
|
717
|
+
* **SDK:** upgrade to version 2.75.0-alpha.2 ([25d236e](https://github.com/roomle-dev/roomle-ui/commit/25d236e52686c3e276fa67b4df45e250144f3bd7))
|
|
718
|
+
* **SDK:** upgrade to version 2.75.0-alpha.3 ([eb2476c](https://github.com/roomle-dev/roomle-ui/commit/eb2476c049e22bc5dc4ec4cd57a9e6acfccbdb73))
|
|
719
|
+
* **SDK:** upgrade to version 2.75.0-alpha.4 ([401b1c4](https://github.com/roomle-dev/roomle-ui/commit/401b1c43fe602493b53168ca831fd8abfaabc0b2))
|
|
720
|
+
* **SDK:** upgrade to version 2.75.0 ([6ccc3bb](https://github.com/roomle-dev/roomle-ui/commit/6ccc3bb7bfb5fa54b5fbca56b4b3c4be48206c75))
|
|
721
|
+
* **SDK:** upgrade to version 2.76.0-alpha.1 ([a4a9f95](https://github.com/roomle-dev/roomle-ui/commit/a4a9f9572bb34b7aa58957123c5ae7cb0cb5d81b))
|
|
722
|
+
* **SDK:** upgrade to version 2.76.0-alpha.2 ([5a1ad03](https://github.com/roomle-dev/roomle-ui/commit/5a1ad03e0f69851c36cabce7806736680c957989))
|
|
723
|
+
* **SDK:** upgrade to version 2.76.0-alpha.3 ([70278e5](https://github.com/roomle-dev/roomle-ui/commit/70278e5113d8fd6be3a01422cddf1782cf6cd968))
|
|
724
|
+
* **SDK:** upgrade to version 2.76.0-alpha.4 ([759d06c](https://github.com/roomle-dev/roomle-ui/commit/759d06cc5b3e67f6bcdcce90eda6ea8e95804dcd))
|
|
725
|
+
* **SDK:** upgrade to version 2.76.0-alpha.5 ([a50b51b](https://github.com/roomle-dev/roomle-ui/commit/a50b51b0aff071751adb14b7b5ccff50e5e5ef69))
|
|
726
|
+
* **SDK:** upgrade to version 2.76.0-alpha.6 ([b4af00d](https://github.com/roomle-dev/roomle-ui/commit/b4af00df353f1bd7e41cc74eebbcfed1592bc6e4))
|
|
727
|
+
* **SDK:** upgrade to version 2.77.0-alpha.1 ([a71d1d4](https://github.com/roomle-dev/roomle-ui/commit/a71d1d4de672b63dcf2691508a070be3b1d54cf5))
|
|
728
|
+
* **SDK:** upgrade to version 2.77.0-alpha.2 ([2cee3cb](https://github.com/roomle-dev/roomle-ui/commit/2cee3cb06821f994ba37fec205804f4baf09b748))
|
|
729
|
+
* **SDK:** upgrade to version 2.77.0-alpha.3 ([23de2c2](https://github.com/roomle-dev/roomle-ui/commit/23de2c2988eda9237a139e7d4f5624a8cb443ace))
|
|
730
|
+
* **SDK:** upgrade to version 2.77.0-alpha.4 ([fec0679](https://github.com/roomle-dev/roomle-ui/commit/fec0679e32ed225a2819bf9c6e8c520a4967aeb1))
|
|
731
|
+
* **SDK:** upgrade to version 2.77.0-alpha.5 ([ad9a178](https://github.com/roomle-dev/roomle-ui/commit/ad9a178e334c0462738fcca0b850055f5e16953c))
|
|
732
|
+
* **SDK:** upgrade to version 2.78.0-alpha.1 ([8bfbf64](https://github.com/roomle-dev/roomle-ui/commit/8bfbf643ae5440fd6dfb880ba9ee21cbf689bd8b))
|
|
733
|
+
* **SDK:** upgrade to version 2.79.0-alpha.1 ([86b61ce](https://github.com/roomle-dev/roomle-ui/commit/86b61ce04f59050705b969d930e854a32ddcac32))
|
|
734
|
+
* **SDK:** upgrade to version 2.79.0-alpha.2 ([fa9c0f6](https://github.com/roomle-dev/roomle-ui/commit/fa9c0f6b54a7f2cf972312a336ef3c79dde517e6))
|
|
735
|
+
* **SDK:** upgrade to version 2.79.0-alpha.3 ([#1081](https://github.com/roomle-dev/roomle-ui/issues/1081)) ([6b225c6](https://github.com/roomle-dev/roomle-ui/commit/6b225c6a4b176783b821c57a4564fc2c71a14b63))
|
|
736
|
+
* **SDK:** upgrade to version 2.8.0 ([dd483d4](https://github.com/roomle-dev/roomle-ui/commit/dd483d4237b6ea011700844d63d6f78654912767))
|
|
737
|
+
* **SDK:** upgrade to version 2.80.0 ([#1118](https://github.com/roomle-dev/roomle-ui/issues/1118)) ([9508e23](https://github.com/roomle-dev/roomle-ui/commit/9508e236d959e3f31d6de1cc2f0c27feeb7b452d))
|
|
738
|
+
* **SDK:** upgrade to version 2.80.0-alpha.1 ([#1097](https://github.com/roomle-dev/roomle-ui/issues/1097)) ([1f27d32](https://github.com/roomle-dev/roomle-ui/commit/1f27d32ee4d7c13df2691d1d0bdf1e76843c6139))
|
|
739
|
+
* **SDK:** upgrade to version 2.80.0-alpha.3 ([#1111](https://github.com/roomle-dev/roomle-ui/issues/1111)) ([3f7ba51](https://github.com/roomle-dev/roomle-ui/commit/3f7ba51b2280ac135973ddd8a807b0e441b2c014))
|
|
740
|
+
* **SDK:** upgrade to version 2.80.0-alpha.4 ([#1113](https://github.com/roomle-dev/roomle-ui/issues/1113)) ([547ba30](https://github.com/roomle-dev/roomle-ui/commit/547ba3091074ee85e919032a6b93d0b3ca045fd0))
|
|
741
|
+
* **SDK:** upgrade to version 2.80.0-alpha.5 ([#1116](https://github.com/roomle-dev/roomle-ui/issues/1116)) ([ba44bd8](https://github.com/roomle-dev/roomle-ui/commit/ba44bd80fdb959941e524663ddb3506a677292ba))
|
|
742
|
+
* **SDK:** upgrade to version 2.81.0 ([#1136](https://github.com/roomle-dev/roomle-ui/issues/1136)) ([49554d4](https://github.com/roomle-dev/roomle-ui/commit/49554d491df256d22fc95f61f3ebf57aa59f7f13))
|
|
743
|
+
* **SDK:** upgrade to version 2.81.0-alpha.1 ([#1120](https://github.com/roomle-dev/roomle-ui/issues/1120)) ([4c7f5af](https://github.com/roomle-dev/roomle-ui/commit/4c7f5afc242fc4aeca93b84ad5b010fac97cc0ed))
|
|
744
|
+
* **SDK:** upgrade to version 2.81.0-alpha.3 ([#1131](https://github.com/roomle-dev/roomle-ui/issues/1131)) ([baea8c2](https://github.com/roomle-dev/roomle-ui/commit/baea8c24fee0291d0e570dbf383cdb217173b6be))
|
|
745
|
+
* **SDK:** upgrade to version 2.82.0 ([#1168](https://github.com/roomle-dev/roomle-ui/issues/1168)) ([5b662c0](https://github.com/roomle-dev/roomle-ui/commit/5b662c0b896fe8b90fdcea430f0b4ce6670450f9))
|
|
746
|
+
* **SDK:** upgrade to version 2.82.0-alpha.1 ([#1151](https://github.com/roomle-dev/roomle-ui/issues/1151)) ([6acfb15](https://github.com/roomle-dev/roomle-ui/commit/6acfb155633a2cc631383f88d8b6edebd5a0661a))
|
|
747
|
+
* **SDK:** upgrade to version 2.82.0-alpha.2 ([17f3861](https://github.com/roomle-dev/roomle-ui/commit/17f38610b2c3034bef8d98b2c0ea908c3f20fa60))
|
|
748
|
+
* **SDK:** upgrade to version 2.82.0-alpha.3 ([7ea006e](https://github.com/roomle-dev/roomle-ui/commit/7ea006eac9691e786284c70abf2aeee55eb73a74))
|
|
749
|
+
* **SDK:** upgrade to version 2.82.0-alpha.4 ([#1165](https://github.com/roomle-dev/roomle-ui/issues/1165)) ([629e130](https://github.com/roomle-dev/roomle-ui/commit/629e130f47fc3a4ff0c93ccdae1551a187c6bef1))
|
|
750
|
+
* **SDK:** upgrade to version 2.83.0-alpha.1 ([#1171](https://github.com/roomle-dev/roomle-ui/issues/1171)) ([4585d8e](https://github.com/roomle-dev/roomle-ui/commit/4585d8e8145714ec3697f344ff6d033c342ffe79))
|
|
751
|
+
* **SDK:** upgrade to version 2.83.0-alpha.2 ([#1173](https://github.com/roomle-dev/roomle-ui/issues/1173)) ([7e3fe29](https://github.com/roomle-dev/roomle-ui/commit/7e3fe29a8817bdfc76ee7a93a355f35a38c2e16a))
|
|
752
|
+
* **SDK:** upgrade to version 2.83.0-alpha.3 ([#1188](https://github.com/roomle-dev/roomle-ui/issues/1188)) ([8328c4a](https://github.com/roomle-dev/roomle-ui/commit/8328c4a32d425a36e11af914582430812a7204c6))
|
|
753
|
+
* **SDK:** upgrade to version 2.83.0-alpha.4 ([#1189](https://github.com/roomle-dev/roomle-ui/issues/1189)) ([87dcc27](https://github.com/roomle-dev/roomle-ui/commit/87dcc271f473782cdc819c193940861084ea28ba))
|
|
754
|
+
* ure flag ([c0e0c52](https://github.com/roomle-dev/roomle-ui/commit/c0e0c52de0f46a1a230e8451206e05beb79c6cfa))
|
|
755
|
+
* use async-component definition with loading screen for loading configurator ([a764f31](https://github.com/roomle-dev/roomle-ui/commit/a764f3108521554bc6f8cb6dda84f80893fd8b49))
|
|
756
|
+
* use correct spinner as defined in the ticket ([848e39d](https://github.com/roomle-dev/roomle-ui/commit/848e39d8ed00a1b101d829102f4eff47f8d109ba))
|
|
757
|
+
* use deep merge to combine init data from server and local ([23f2f97](https://github.com/roomle-dev/roomle-ui/commit/23f2f9757bab648917af0ec55a12d6cd74983c32))
|
|
758
|
+
* **AR:** use glb & usdz asset url if it already exists ([c7191ab](https://github.com/roomle-dev/roomle-ui/commit/c7191abec20b83168fe331b1eeb8e2662c6168eb))
|
|
759
|
+
* use loadObject from sdkConnector to initially load static item or configuration/configurableItem ([aa4a5a0](https://github.com/roomle-dev/roomle-ui/commit/aa4a5a014ff8366b6b8307b8d2b695a941f09e73))
|
|
760
|
+
* use new global init data in sdk wrapper ([84f005e](https://github.com/roomle-dev/roomle-ui/commit/84f005ecaf9c6df32efd10768197105d687bc76f))
|
|
761
|
+
* use new SDK functions with init data and context ([c7058b0](https://github.com/roomle-dev/roomle-ui/commit/c7058b071644cdf6193163e3a52d0eee83b5ce78))
|
|
762
|
+
* use same behavior to confirm a room on mobile and desktop needed a hack because ([255aecb](https://github.com/roomle-dev/roomle-ui/commit/255aecbc6a151904085e1d5c1938e0df927b6da9))
|
|
763
|
+
* **sdk:** use sdk version which supports fetching configurator settings ([8d8ce02](https://github.com/roomle-dev/roomle-ui/commit/8d8ce029d9643ca9040e02be5047bb31ec6bfee0))
|
|
764
|
+
* use viewer or configurator based on the items data ([dd36da6](https://github.com/roomle-dev/roomle-ui/commit/dd36da69b65b9e672e85777c77e259c3e7fc749b))
|
|
765
|
+
* use working SDK ([7dd93f7](https://github.com/roomle-dev/roomle-ui/commit/7dd93f7f4954812954d8bae75f030e5e56359bc7))
|
|
766
|
+
* variable width inputs ([ff2b9de](https://github.com/roomle-dev/roomle-ui/commit/ff2b9de956de5741dce077d11ffaa446cca8c277))
|
|
767
|
+
* wip initial implementation ([8f225f7](https://github.com/roomle-dev/roomle-ui/commit/8f225f7cec206c2cf61e10532cfb48e59c362f16))
|
|
768
|
+
* wip: introduce composables for button visibility, start configuring and delete button ([121dd90](https://github.com/roomle-dev/roomle-ui/commit/121dd906119ede024bdd9fa77a33634f24ca1fff))
|
|
769
|
+
* working implementation ([6092322](https://github.com/roomle-dev/roomle-ui/commit/6092322f42997e2c95624e20c2d23bd2d9736e9b))
|
|
770
|
+
* working tooltip pos ([db3256d](https://github.com/roomle-dev/roomle-ui/commit/db3256d538b892563f8ded47baa1339fd2ac12ba))
|
|
771
|
+
* write E2E test for SOC interaction ([e4a7917](https://github.com/roomle-dev/roomle-ui/commit/e4a791748ed9fe3ccb8fe1e1f7b2521f9765077f))
|
|
772
|
+
* write helper to cast init data, currently we only cast boolean strings ([432fcb7](https://github.com/roomle-dev/roomle-ui/commit/432fcb7197acad8282f6c823ffd7c49a21ffa718))
|
|
773
|
+
* z axis refinement for construction elements ([c7091f8](https://github.com/roomle-dev/roomle-ui/commit/c7091f80613bb1b5f9cfe812f03c24c8771f70f0))
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
### Bug Fixes
|
|
777
|
+
|
|
778
|
+
* dpr_auto works differently than we expect on Cloudinary ([eb0905d](https://github.com/roomle-dev/roomle-ui/commit/eb0905d563c93f4a195b29021b867559e43fbe9b))
|
|
779
|
+
* /NoDocking.spec.ts ([5f3a9a8](https://github.com/roomle-dev/roomle-ui/commit/5f3a9a8b8964b4cfbbb04c37504ffc4b5c187285))
|
|
780
|
+
* 1 more proptype ([13418c8](https://github.com/roomle-dev/roomle-ui/commit/13418c8baed38d8d2a7c6a7a773a88889913e08b))
|
|
781
|
+
* a bunch of different fixes ([87bdf26](https://github.com/roomle-dev/roomle-ui/commit/87bdf26f1093da0bce8da5e650046babf9720346))
|
|
782
|
+
* accept room button will be outside of collapsible ([0ff8a43](https://github.com/roomle-dev/roomle-ui/commit/0ff8a4326e46c18f7dbb9e83dceffb46df95b014))
|
|
783
|
+
* ActionButtons tets ([10f9c39](https://github.com/roomle-dev/roomle-ui/commit/10f9c39f5e1fd4173d9c40662d3cf3f03613d3b6))
|
|
784
|
+
* ActionButtonsParameterGroups.spec.ts ([7094761](https://github.com/roomle-dev/roomle-ui/commit/7094761ceca7aad54b194afed8129cc24a1d2dc5))
|
|
785
|
+
* ActionButtonsWall.spec.ts ([ce0bf0d](https://github.com/roomle-dev/roomle-ui/commit/ce0bf0dcff07f185e0a0fbf113dc41f062c67918))
|
|
786
|
+
* activate snapping also when switch from configurator to Room Designer ([5927f3a](https://github.com/roomle-dev/roomle-ui/commit/5927f3acd716075db0c2c2a8d1174f150006599a))
|
|
787
|
+
* adapt configurator ([74f25f5](https://github.com/roomle-dev/roomle-ui/commit/74f25f513ae01daedc91949ff62080f169e23973))
|
|
788
|
+
* adapt eventEmitter with notification stuff ([537866c](https://github.com/roomle-dev/roomle-ui/commit/537866ca74955a85df17aa7ac6e52a72b8e6b0da))
|
|
789
|
+
* adapt helpcenter settings, add tests ([29e64a7](https://github.com/roomle-dev/roomle-ui/commit/29e64a707f9b00f31f842a8dc40cc93adce852fc))
|
|
790
|
+
* adapt options parameter calculation for desktop and mobile ([9791cdf](https://github.com/roomle-dev/roomle-ui/commit/9791cdf4fbdb63e871488af15bf5e60bfb755813))
|
|
791
|
+
* adapt tests ([57cb982](https://github.com/roomle-dev/roomle-ui/commit/57cb9821e3438850f8569b740b302d6c6a90eaf0))
|
|
792
|
+
* add [@internal](https://github.com/internal) *minor ([4b06c20](https://github.com/roomle-dev/roomle-ui/commit/4b06c200a130d8bbd2ce2040db5ff657113b117d))
|
|
793
|
+
* add a component which fallbacks to SVG if image is broken or no URL specified ([1813b80](https://github.com/roomle-dev/roomle-ui/commit/1813b807466e45ac1ac996811db81293e0c84ae1))
|
|
794
|
+
* add a small delay for animations so that they are not accidentally combined by the browser ([abc7e3f](https://github.com/roomle-dev/roomle-ui/commit/abc7e3f372bcb56b37388070912df34e2c54a346))
|
|
795
|
+
* Add addons icon on mobile need some right padding ([63fd194](https://github.com/roomle-dev/roomle-ui/commit/63fd1947e955e2415f49c0b32b88a21d0cec00a0))
|
|
796
|
+
* add and remove event listnener ([ec20e2c](https://github.com/roomle-dev/roomle-ui/commit/ec20e2c8e0abd844316fcbf1aaf022918669e38d))
|
|
797
|
+
* add better handling of primary color for borders ([eb7e306](https://github.com/roomle-dev/roomle-ui/commit/eb7e3068b78f70872f08bb1120a1c1be5a4845d9))
|
|
798
|
+
* add call to stop drawing ([c24070a](https://github.com/roomle-dev/roomle-ui/commit/c24070a3107248ea118847e8aa966ef8533de2c7))
|
|
799
|
+
* add check for multiselect ([db04929](https://github.com/roomle-dev/roomle-ui/commit/db04929d3d80ac0a65fc5bd4a1193db475b8512c))
|
|
800
|
+
* add comment ([c883f5b](https://github.com/roomle-dev/roomle-ui/commit/c883f5b20e10fc43e03d34ac1463d7200c64eb87))
|
|
801
|
+
* add configurator sdk to core-instances ([98be167](https://github.com/roomle-dev/roomle-ui/commit/98be167a9be6f08d4300eee3b9954d67782e0dcc))
|
|
802
|
+
* add correct header for sample room drawer ([1ff07ef](https://github.com/roomle-dev/roomle-ui/commit/1ff07ef3ce9bb73c05cb14ad5817e57c693381ef))
|
|
803
|
+
* add correct icon for back to planner button ([60853d1](https://github.com/roomle-dev/roomle-ui/commit/60853d173b9a3cac8e26d95b7dc622b93c50fc46))
|
|
804
|
+
* add correct icons for room nav sidebar ([80e6cbb](https://github.com/roomle-dev/roomle-ui/commit/80e6cbba4eb9a9017016c0e3a5dc3f7039b27948))
|
|
805
|
+
* add correct scss import ([44450e9](https://github.com/roomle-dev/roomle-ui/commit/44450e98b6bde83bf4c7aa4abb677af220c6de44))
|
|
806
|
+
* add correct snapshots for playwright tests ([b3d4554](https://github.com/roomle-dev/roomle-ui/commit/b3d45541e36f42d31c37cf281b0255e0367af1c6))
|
|
807
|
+
* add correct tab category labels and translations ([b718378](https://github.com/roomle-dev/roomle-ui/commit/b718378255bb54bb97a5ab4af7da24030cb4b647))
|
|
808
|
+
* add correct type assertions so TS won't break on compile ([6f10548](https://github.com/roomle-dev/roomle-ui/commit/6f10548eb5202a2cca51cefb67a5cdb6f6fcc307))
|
|
809
|
+
* add CSS classes so that container takes 100% height and HeightContainer can adjust to the parent div ([67bb44a](https://github.com/roomle-dev/roomle-ui/commit/67bb44ae7bdf6a2f7d5febf46b5c386e02f924c9))
|
|
810
|
+
* add delay on getting planXML initially, remove window blur listener ([867a98a](https://github.com/roomle-dev/roomle-ui/commit/867a98a3f169950aa8fe76618fe7e3d35e87648f))
|
|
811
|
+
* add delete warning to overlay test ([ad5ce0c](https://github.com/roomle-dev/roomle-ui/commit/ad5ce0c625e5262080c09228f6ef329113618ea0))
|
|
812
|
+
* add deselect button action on interaction container toggle ([d4648f9](https://github.com/roomle-dev/roomle-ui/commit/d4648f9b845d868d9ff154f6bf52ee830a814709))
|
|
813
|
+
* add drop-shadow as filter and use a transition on init ([6fcb8a2](https://github.com/roomle-dev/roomle-ui/commit/6fcb8a29d7d08ca321af83c632fe291eac6399c5))
|
|
814
|
+
* add dropshadow to triangle of naviagtion drop down closes RML-615 ([7f9208f](https://github.com/roomle-dev/roomle-ui/commit/7f9208fce8818315ea2be23a36130bc46dc18ad9))
|
|
815
|
+
* add dynamic import ([b80985f](https://github.com/roomle-dev/roomle-ui/commit/b80985fbfd0451aba629b6d671c8c9afb95823a4))
|
|
816
|
+
* add eventListener ([7a026a0](https://github.com/roomle-dev/roomle-ui/commit/7a026a0bd5147ee2663adf70455c9645ca70cd74))
|
|
817
|
+
* add failsafe to measurementUnit setter ([d5b75ff](https://github.com/roomle-dev/roomle-ui/commit/d5b75ff1f20b7a9fa4c40dd60ab6064694cf5438))
|
|
818
|
+
* add getUnitFormatter to tests where they fail ([067fc72](https://github.com/roomle-dev/roomle-ui/commit/067fc7238920ab59e6b46c22a2e40bd34356ef0b))
|
|
819
|
+
* add ignore mouse props ([585b87a](https://github.com/roomle-dev/roomle-ui/commit/585b87a8c7120e8c208335c8498e4eff21e4e8e4))
|
|
820
|
+
* add key so that Vue can cache list and render faster ([83c6360](https://github.com/roomle-dev/roomle-ui/commit/83c63607a108d0ebf783dae23894570e8589cb66))
|
|
821
|
+
* add last used room materials to store, bind to colorpicker ([f77bfe0](https://github.com/roomle-dev/roomle-ui/commit/f77bfe07d2e657b014c045adcf3e352d0ae63435))
|
|
822
|
+
* add margin to height header on desktop ([8065114](https://github.com/roomle-dev/roomle-ui/commit/80651140541044ec1236ad8f08a5dc10d8a13e03))
|
|
823
|
+
* add missing 3D export on mobile ([4dfa304](https://github.com/roomle-dev/roomle-ui/commit/4dfa304a2ed5eb882f87d5ffe32a06da98577580))
|
|
824
|
+
* add missing bottom-border ([2d9709d](https://github.com/roomle-dev/roomle-ui/commit/2d9709de999d73263ab9c8cb662c88beacb2bde6))
|
|
825
|
+
* add missing environment file for testServer ([756dad2](https://github.com/roomle-dev/roomle-ui/commit/756dad2dd568602d3adeafec848dc4f64837d490))
|
|
826
|
+
* add missing german translation and remove double wall parameter translation ([463d829](https://github.com/roomle-dev/roomle-ui/commit/463d829423b7af02de3ab33841e8f243b5e1514f))
|
|
827
|
+
* add missing npm run ([6fa2820](https://github.com/roomle-dev/roomle-ui/commit/6fa28208f9bf45989b9a87c85c824eb8ce74047f))
|
|
828
|
+
* add missing parameter groups for addon only groups ([48be3c6](https://github.com/roomle-dev/roomle-ui/commit/48be3c62aac2b953a08875822fa3fd220f4271e4))
|
|
829
|
+
* add missing snapshots so that CI can run ([e28c07e](https://github.com/roomle-dev/roomle-ui/commit/e28c07e32c74ce62f32edba19045851aa6a41034))
|
|
830
|
+
* add missing strings ([70409d5](https://github.com/roomle-dev/roomle-ui/commit/70409d57ad859f46fd2dbe997fd15523ecf6a781))
|
|
831
|
+
* add missing tests again ([26f2acc](https://github.com/roomle-dev/roomle-ui/commit/26f2acc741acfc16d9a6ef0a843b0fceae184d17))
|
|
832
|
+
* add missing tooltip ([5e8dd51](https://github.com/roomle-dev/roomle-ui/commit/5e8dd514e565fbd89a94f9b68172e4de81792567))
|
|
833
|
+
* add missing translation to close RML-5526 ([c857a77](https://github.com/roomle-dev/roomle-ui/commit/c857a77ef59a16d94c557823c73aa30d0cc40c43))
|
|
834
|
+
* add mouse events to save ([b32b647](https://github.com/roomle-dev/roomle-ui/commit/b32b64723760db1f479e6eea44a2f15ddbb6ae8e))
|
|
835
|
+
* add multiple entry points ([49ad065](https://github.com/roomle-dev/roomle-ui/commit/49ad0657ad579f53b12872880121f9e8e336e76a))
|
|
836
|
+
* add new callback to callback mock ([d525a9b](https://github.com/roomle-dev/roomle-ui/commit/d525a9b3f20f2f9882f2f4e532b8e1a8663abfdc))
|
|
837
|
+
* add new callbacks to exposed callbacks mock ([10486ae](https://github.com/roomle-dev/roomle-ui/commit/10486aedb42db3924764fdcc78ac63fab09bb389))
|
|
838
|
+
* add new word wrap algo for splitting words correctly each line ([a5300e1](https://github.com/roomle-dev/roomle-ui/commit/a5300e1dee586a92842a06eb26532004ed137aa3))
|
|
839
|
+
* add null check and cancel check if HTMLElement is not in DOM anymore ([a99e0ae](https://github.com/roomle-dev/roomle-ui/commit/a99e0ae6f64c0918d28dc89a048bf90100ce6903))
|
|
840
|
+
* add nullable ([f3de693](https://github.com/roomle-dev/roomle-ui/commit/f3de6930c67b15f55f227c56758de44564ea2898))
|
|
841
|
+
* add run to npm scripts ([188ee89](https://github.com/roomle-dev/roomle-ui/commit/188ee89a2f0bf78cad32d022ce89034fb5990def))
|
|
842
|
+
* add same behavior to mobile ([e9888ab](https://github.com/roomle-dev/roomle-ui/commit/e9888ab29e82258da47170e416f55f47c5675204))
|
|
843
|
+
* add SDK which fixes RML-803, RML-793 and should improve but possibly not solve RML-794 and RML-795 ([ccb846b](https://github.com/roomle-dev/roomle-ui/commit/ccb846b29e80e58007ad6e73f77af9012410370c))
|
|
844
|
+
* add stroke width to the svg's directly ([bda68dd](https://github.com/roomle-dev/roomle-ui/commit/bda68dd55b89c52977b6da4a885659d70f24fe4c))
|
|
845
|
+
* add stuff to make VSCode happy ([0b54a4b](https://github.com/roomle-dev/roomle-ui/commit/0b54a4bd97a6bda58917c4f358c390dcce2c9617))
|
|
846
|
+
* add temp fix ([df36745](https://github.com/roomle-dev/roomle-ui/commit/df36745ba6eb1e9a2e17950eb90122a45f0e0e9d))
|
|
847
|
+
* add temp proptype so vue doesnt throw exceptions ([49892e4](https://github.com/roomle-dev/roomle-ui/commit/49892e494a255648cba10b4ab554157d80a4a056))
|
|
848
|
+
* add test ([c698ae9](https://github.com/roomle-dev/roomle-ui/commit/c698ae9c3b61eeafd4489a866b2635876c821655))
|
|
849
|
+
* add text-overflow to top dropdown ([ec495f4](https://github.com/roomle-dev/roomle-ui/commit/ec495f4649861eda4ae10fd40c393cefcb2236be))
|
|
850
|
+
* add to first person to buttons ([9b3c150](https://github.com/roomle-dev/roomle-ui/commit/9b3c150f815cc33324d4e333d63a6849de8858c0))
|
|
851
|
+
* adding product should not close sidebar ([8cbae81](https://github.com/roomle-dev/roomle-ui/commit/8cbae81762d142b2180b0322fbc5be65c28930fb))
|
|
852
|
+
* Additional parameter info Tooltip not showing up ([3b4d29a](https://github.com/roomle-dev/roomle-ui/commit/3b4d29acdf121f49aa61c5ca10f421a8879b50de))
|
|
853
|
+
* addon trigger button is missing ([daeab78](https://github.com/roomle-dev/roomle-ui/commit/daeab78a6282ed55d4f1563ee5b0aa39a7a4afe6))
|
|
854
|
+
* Addons icon is so big in SOC ([d220e53](https://github.com/roomle-dev/roomle-ui/commit/d220e538d6e2be63adc6b333dd17825e734efe17))
|
|
855
|
+
* addons trigger button should be displayed right on mobile ([2631cdc](https://github.com/roomle-dev/roomle-ui/commit/2631cdc0d54e1218f0e3522cec9cb432def9b302))
|
|
856
|
+
* AddonsTrigger.spec.ts ([d6447d8](https://github.com/roomle-dev/roomle-ui/commit/d6447d8960c8e8f953ae8d946287e3ced551dea5))
|
|
857
|
+
* addonTrigger button is not centred inside configurator ([06f014d](https://github.com/roomle-dev/roomle-ui/commit/06f014da26ef16f55f93a7f6ce71967fa8c4ef4c))
|
|
858
|
+
* addToBasket.spec ([5c0257e](https://github.com/roomle-dev/roomle-ui/commit/5c0257e5fc367aef883f35c5af9d35955f3ba203))
|
|
859
|
+
* AddToBaskket ([d3acd79](https://github.com/roomle-dev/roomle-ui/commit/d3acd79e14138a46c050f64be2547a93c8cd91ce))
|
|
860
|
+
* adjust angles ([360a2fa](https://github.com/roomle-dev/roomle-ui/commit/360a2fa8a4a6e8a42d4c59f8ab042bec54e43dc2))
|
|
861
|
+
* adjust Cloudinary image sizes to next multiple of 64 ([e6ec517](https://github.com/roomle-dev/roomle-ui/commit/e6ec517053c3ec0a8ae6a60791cfccc5a80a2c53))
|
|
862
|
+
* adjust tests and fix failing ones ([7deb1c3](https://github.com/roomle-dev/roomle-ui/commit/7deb1c32ffd990400d330f2537d60529a09ae83e))
|
|
863
|
+
* adjust to new onSelectionChange callback and skip promise response if they do not fit together ([f13349f](https://github.com/roomle-dev/roomle-ui/commit/f13349ff36c7c046e9e1bec538924cc9e9bbf048))
|
|
864
|
+
* adjust to new types ([61e9605](https://github.com/roomle-dev/roomle-ui/commit/61e9605c4775496f5db5f54bb56551b299004f98))
|
|
865
|
+
* adjust to newest version of typedoc ([2c53d25](https://github.com/roomle-dev/roomle-ui/commit/2c53d25341f80904077a41f300f20ea19f98d3aa))
|
|
866
|
+
* adjust to SDK changes ([e5a3075](https://github.com/roomle-dev/roomle-ui/commit/e5a307547b7b172eab392ec231150492fb2855a8))
|
|
867
|
+
* adjust to working insertItem promise of SDK ([0a05224](https://github.com/roomle-dev/roomle-ui/commit/0a052249b563e49a29b139adcd297d2a964d2e62))
|
|
868
|
+
* adjustments so that build works ([b669d2e](https://github.com/roomle-dev/roomle-ui/commit/b669d2e3d69e187256c8a12c791671f6a26d4df0))
|
|
869
|
+
* again ([872c031](https://github.com/roomle-dev/roomle-ui/commit/872c03112a7f9c7e5da3fa1d28d217548c5bf8e2))
|
|
870
|
+
* alhamdulillah package-lock.json ([67a051d](https://github.com/roomle-dev/roomle-ui/commit/67a051d7b03246fbded31af3d9461ea357e40494))
|
|
871
|
+
* align icon of show less correctly and do not close interactions on desktop ([4d76789](https://github.com/roomle-dev/roomle-ui/commit/4d7678955c5046cbca61223bce7752bd199c4374))
|
|
872
|
+
* all tests passing ([c2ab7ac](https://github.com/roomle-dev/roomle-ui/commit/c2ab7ac7f8530ab683cfb8030f2c3854000fc309))
|
|
873
|
+
* all the things ([8d80fb0](https://github.com/roomle-dev/roomle-ui/commit/8d80fb0b5d1687b767b5d51bae09d9afae2e056f))
|
|
874
|
+
* all the TypeScript errors ([2881958](https://github.com/roomle-dev/roomle-ui/commit/288195861f449894a74c43c45cc906f341728585))
|
|
875
|
+
* allow long labels in part list to break on white space ([371dc39](https://github.com/roomle-dev/roomle-ui/commit/371dc391670519848e7eed61be27428519c1839c))
|
|
876
|
+
* allow to focus GDPR checkbox on save draft ([2c773bf](https://github.com/roomle-dev/roomle-ui/commit/2c773bf6ca98c491cdc54348890214726bf1522b))
|
|
877
|
+
* almost working wallGeneralSettings Sidebar ([86c1d6f](https://github.com/roomle-dev/roomle-ui/commit/86c1d6fe487c1bf45ae2d7f95d1473f23406292c))
|
|
878
|
+
* also add confirm wall drawing to desktop to fix RML-5519 ([064c10f](https://github.com/roomle-dev/roomle-ui/commit/064c10f9d5b9dee07e148253630024e59655e9b5))
|
|
879
|
+
* also check validity of email on blur event ([9740b1b](https://github.com/roomle-dev/roomle-ui/commit/9740b1b7e2568196edde2ce8a2946ab40b6d42fb))
|
|
880
|
+
* also make add to cart button interactive if customer didn't startConfigure (e.g.: on mobile devices) ([1ed393b](https://github.com/roomle-dev/roomle-ui/commit/1ed393b51b1bd62192856c012555f83e77d09a72))
|
|
881
|
+
* **embedding:** also replace process.env in embedding lib ([b71327f](https://github.com/roomle-dev/roomle-ui/commit/b71327f6fc849020f0df53149616e7ae768811db))
|
|
882
|
+
* also return on global callbacks ([e476c6b](https://github.com/roomle-dev/roomle-ui/commit/e476c6ba9e8c6d57dff44ab4fefebe05e84b32bb))
|
|
883
|
+
* also set the selection ([eececfb](https://github.com/roomle-dev/roomle-ui/commit/eececfbf757873955a560f60fb771ab6b932387a))
|
|
884
|
+
* also show confirm button when we are already in drawing mode ([8e98ffe](https://github.com/roomle-dev/roomle-ui/commit/8e98ffe9434696fbd657a502bcaef7fa8938872d))
|
|
885
|
+
* also show general wall settings on mobile ([3d1209c](https://github.com/roomle-dev/roomle-ui/commit/3d1209c6b7f1705d00b14d18cc11b4ad43e3571b))
|
|
886
|
+
* also use text filter if "all groups" option is selected ([0f0db02](https://github.com/roomle-dev/roomle-ui/commit/0f0db0245810d8cf8b03ce0873019f958cda65ad))
|
|
887
|
+
* always load settings ([5ae1744](https://github.com/roomle-dev/roomle-ui/commit/5ae1744c2322bf3a8a592af057c569648dd03a30))
|
|
888
|
+
* always mark "(...) button" as active if we are drawing, because then room mode has to be active ([8719508](https://github.com/roomle-dev/roomle-ui/commit/8719508ae40b0725c947a349c158788c9d32b4f1))
|
|
889
|
+
* always render product name ([bce206e](https://github.com/roomle-dev/roomle-ui/commit/bce206e5d57ba85ccb89ee5f2afb84ca89869f35))
|
|
890
|
+
* **variants:** always select first group if variants are active ([46c1082](https://github.com/roomle-dev/roomle-ui/commit/46c10822b9671d6f5f8c42cbb4453bbf8ef69eac))
|
|
891
|
+
* always set id when loading plan xml ([f672b68](https://github.com/roomle-dev/roomle-ui/commit/f672b68c5ff856fbf4c4a3a233d513d59a13eb90))
|
|
892
|
+
* always show back button if we are in planner modus ([a4e473b](https://github.com/roomle-dev/roomle-ui/commit/a4e473bbad32ee8e76cb4bd461adb45530d5919e))
|
|
893
|
+
* always show SampleRooms when there are no walls ([6b9ea4d](https://github.com/roomle-dev/roomle-ui/commit/6b9ea4d2b2ff1609876415cb4d45f3817732aa64))
|
|
894
|
+
* always use resizer to set offset in the API ([b0b6499](https://github.com/roomle-dev/roomle-ui/commit/b0b6499394cb210f85e32ed7cc4b38fec421c96f))
|
|
895
|
+
* animation ([ffae07d](https://github.com/roomle-dev/roomle-ui/commit/ffae07dc87141356c56b3d8805bde103fdab8e8e))
|
|
896
|
+
* another setup componenent ([8c3a2fd](https://github.com/roomle-dev/roomle-ui/commit/8c3a2fda79b96c1745ecf238ead2e9bbd2f760d2))
|
|
897
|
+
* api call ([a807de6](https://github.com/roomle-dev/roomle-ui/commit/a807de65042d3d91672d0866b4ab2ba814335b5c))
|
|
898
|
+
* app test ([c684860](https://github.com/roomle-dev/roomle-ui/commit/c6848600cb81f991344a5ab2d7ce9fc0787ef2a7))
|
|
899
|
+
* app.vue types ([b355c2b](https://github.com/roomle-dev/roomle-ui/commit/b355c2b43192f75e1c2b439b45f88c03a84f1709))
|
|
900
|
+
* app.vue types ([528c25a](https://github.com/roomle-dev/roomle-ui/commit/528c25a78d1ddb6c62276384499fdec0654002d4))
|
|
901
|
+
* appease tsc ([f6b95fd](https://github.com/roomle-dev/roomle-ui/commit/f6b95fd984ac3ecc1e1a5fafd8c59310038ef834))
|
|
902
|
+
* appease tsc ([630e60e](https://github.com/roomle-dev/roomle-ui/commit/630e60e0ca77b1af882df7dae09704ad540a2eb3))
|
|
903
|
+
* appease tsc ([d52075b](https://github.com/roomle-dev/roomle-ui/commit/d52075bdd2e2f55fd1599f6178544c70b9e468af))
|
|
904
|
+
* AR break for component ids ([2ddc0f6](https://github.com/roomle-dev/roomle-ui/commit/2ddc0f678260a3f08d7d2837af8f24d042bd8737))
|
|
905
|
+
* AR button not working on desktop neither mobile ([4e4df6b](https://github.com/roomle-dev/roomle-ui/commit/4e4df6b0e20f47b921465ef6cfb58a7523f5deb0))
|
|
906
|
+
* AR overlay transparent ([4e7b403](https://github.com/roomle-dev/roomle-ui/commit/4e7b40352d98e5d4d934437d9c304ed4fa9e29e6))
|
|
907
|
+
* AR page does not remove spinner on iOS and Android ([082e56d](https://github.com/roomle-dev/roomle-ui/commit/082e56d7de222e972aa515fd47f6a2bf6625f581))
|
|
908
|
+
* ARButton.spec.ts ([5a1c70b](https://github.com/roomle-dev/roomle-ui/commit/5a1c70b3c5d62cd01fcddcea0e0bfbd6f02d2393))
|
|
909
|
+
* arPlugin, popup ([3c69849](https://github.com/roomle-dev/roomle-ui/commit/3c69849d1c2b98d7e38554551bf8da5ddd3c7fad))
|
|
910
|
+
* Arrow button is overlapped by shadow ([eca9e47](https://github.com/roomle-dev/roomle-ui/commit/eca9e476eaed02db6f3e7e0a13bc713db0cbf683))
|
|
911
|
+
* arrow size again ([b7b99dc](https://github.com/roomle-dev/roomle-ui/commit/b7b99dce72b69aa3d39cfe60d9501262d6203193))
|
|
912
|
+
* arrow sizes ([da7ad5c](https://github.com/roomle-dev/roomle-ui/commit/da7ad5cc57b1eced09bc0805de1bac8e7b5ff1de))
|
|
913
|
+
* arrow sizes ([bcb81ec](https://github.com/roomle-dev/roomle-ui/commit/bcb81ec9cc517782db2c287fdac781a09cce7113))
|
|
914
|
+
* attempt at fixing type errors ([077905a](https://github.com/roomle-dev/roomle-ui/commit/077905a79a0e6700d1c1cafa56ec03c5407dfd96))
|
|
915
|
+
* attempt to remove retry flag ([a650c48](https://github.com/roomle-dev/roomle-ui/commit/a650c48acc7a76fff1e60cd27ca7e8886e42ba0b))
|
|
916
|
+
* autocomplete of email input at save draft ([d0c72b6](https://github.com/roomle-dev/roomle-ui/commit/d0c72b6dee313e3cd8275dfcdf3f3f8f01a54278))
|
|
917
|
+
* autocomplete of email input with right line spacing at save draft ([0ea5900](https://github.com/roomle-dev/roomle-ui/commit/0ea5900b88cbb80e75db7f6eb380403abcdaa744))
|
|
918
|
+
* avoid button overlaying on desktop also ([ee117da](https://github.com/roomle-dev/roomle-ui/commit/ee117da6e88eb7dbd4f186abad556d277505e7c9))
|
|
919
|
+
* BackParameterGroupButton.spec ([245e865](https://github.com/roomle-dev/roomle-ui/commit/245e865d0a8011e06b4a3fd774ad6f545353eb5d))
|
|
920
|
+
* being back end lines ([2a5fb3b](https://github.com/roomle-dev/roomle-ui/commit/2a5fb3bb97f682e31bea8c1e762ce98cfb71a667))
|
|
921
|
+
* better method name ([a2fe1e5](https://github.com/roomle-dev/roomle-ui/commit/a2fe1e5cf7066806030c4f7437edcb9d40917ab6))
|
|
922
|
+
* Big thumbnail uses wrong Cloudinary parameter ([364dd8b](https://github.com/roomle-dev/roomle-ui/commit/364dd8b6c07de16ea95aef41902f346d5dc0a508))
|
|
923
|
+
* big thumbnails should have the same padding left and right ([a5a4ea6](https://github.com/roomle-dev/roomle-ui/commit/a5a4ea6de717b69e306d74f423e65ad5765cc93f))
|
|
924
|
+
* bold save icon ([1062f98](https://github.com/roomle-dev/roomle-ui/commit/1062f98941b0f3e98aff0ac4c2de4fa9965d1af2))
|
|
925
|
+
* boolean ([92f9084](https://github.com/roomle-dev/roomle-ui/commit/92f90848493397af4d46042d3cce33212d95cbfd))
|
|
926
|
+
* boolean parameters should not show 0/1 ([e7a4700](https://github.com/roomle-dev/roomle-ui/commit/e7a4700e0f9a4939b26937772495625616db6a1d))
|
|
927
|
+
* Border of "exit configuration" is broken ([a22b750](https://github.com/roomle-dev/roomle-ui/commit/a22b75018b5a6ed2380d6cb2b18b0521c44b4881))
|
|
928
|
+
* bottom position of flying menu above bottombuttons on mobile ([c45baa2](https://github.com/roomle-dev/roomle-ui/commit/c45baa266adb83d7a92b10043354735e3f173b9a))
|
|
929
|
+
* bottomBar.spec ([8f7640d](https://github.com/roomle-dev/roomle-ui/commit/8f7640d75fbc1d33a26e25a38bad8e074cbb0277))
|
|
930
|
+
* bottombar.vue types ([facad14](https://github.com/roomle-dev/roomle-ui/commit/facad14fcf9d3a3d3be722053aac95c463cbfd9f))
|
|
931
|
+
* bottombar.vue types ([c779fe9](https://github.com/roomle-dev/roomle-ui/commit/c779fe9e8b10efa4caface422bdef8a571b35893))
|
|
932
|
+
* BottomButtons.spec.ts ([75fab22](https://github.com/roomle-dev/roomle-ui/commit/75fab224ec7c603603e368c1585b70503f12987e))
|
|
933
|
+
* bring back borders to the topbar in mobile ([138878c](https://github.com/roomle-dev/roomle-ui/commit/138878cae122c3ec74e0216d1e2f07bd4d047d67))
|
|
934
|
+
* bring floorColor up to date with rest of components, problem is materials is empty so it doesnt render yet... ([62b1b7f](https://github.com/roomle-dev/roomle-ui/commit/62b1b7fac99e907d813da3091fed74890fa9575f))
|
|
935
|
+
* bring icons to tabbedNav ([b2a092d](https://github.com/roomle-dev/roomle-ui/commit/b2a092d2a830fd28df107a82c962ff258078c83b))
|
|
936
|
+
* broken icons ([0b0b937](https://github.com/roomle-dev/roomle-ui/commit/0b0b937a12f92a1a998fbf07d56513e070cc5f2e))
|
|
937
|
+
* broken tests ([b0e754b](https://github.com/roomle-dev/roomle-ui/commit/b0e754b1674edb4bb83ee1e04e2e3e191861454d))
|
|
938
|
+
* broken tests on github actions ([468ca08](https://github.com/roomle-dev/roomle-ui/commit/468ca08a70f1f6cd8aeb0a66175db3638386cbe1))
|
|
939
|
+
* broken types ([6fc1f73](https://github.com/roomle-dev/roomle-ui/commit/6fc1f739a0bd08ff917b3503234aaeb37acafa06))
|
|
940
|
+
* bug if expand catalog ([3f3d4f7](https://github.com/roomle-dev/roomle-ui/commit/3f3d4f794719bcca714a085880f79fe8b29f4972))
|
|
941
|
+
* bugs ([6f258fd](https://github.com/roomle-dev/roomle-ui/commit/6f258fd25e57b716621bbe08507c74e681fefc03))
|
|
942
|
+
* builds succeed ([9132a7a](https://github.com/roomle-dev/roomle-ui/commit/9132a7a769d9b2d74ac7f788ad1559175f805555))
|
|
943
|
+
* bump sdk ver ([8730ed5](https://github.com/roomle-dev/roomle-ui/commit/8730ed5319463ce0b0fc8a39c2d0e9ba4dcf1224))
|
|
944
|
+
* calculate price correctly ([fa190be](https://github.com/roomle-dev/roomle-ui/commit/fa190be934b6382fbc6c36a0b4949a553e18f108))
|
|
945
|
+
* call checkGlb to fix broken embedding lib ([419137f](https://github.com/roomle-dev/roomle-ui/commit/419137fd77357f6d580dac01285fed781741d492))
|
|
946
|
+
* call clear history on back button press ([2577e79](https://github.com/roomle-dev/roomle-ui/commit/2577e79bd74f5cf4734bd8a34ef06070e8d2126a))
|
|
947
|
+
* call getObjects only after plan has been loaded ([dcdb863](https://github.com/roomle-dev/roomle-ui/commit/dcdb86352df110616f318335df3c04ad898a470e))
|
|
948
|
+
* call new sdk method to update price by parts list ([ec2da7a](https://github.com/roomle-dev/roomle-ui/commit/ec2da7aaf00c483d2bee88266f06fbbcbd27d79b))
|
|
949
|
+
* call onChange onInput ([71a3fa6](https://github.com/roomle-dev/roomle-ui/commit/71a3fa64385bcc3521358ae2b6d1e482ceed86e4))
|
|
950
|
+
* Camera does not frame object correctly when going into isolation mode ([246a570](https://github.com/roomle-dev/roomle-ui/commit/246a570f381250f9e80ec2e41e323869503e2db9))
|
|
951
|
+
* Camera does not frame object correctly when going into isolation mode ([c1af05d](https://github.com/roomle-dev/roomle-ui/commit/c1af05d29c6cafedcc39ceca24b82422d36af1e6))
|
|
952
|
+
* Camera jumps in "first-time room behavior" when selecting "free draw" ([cf5238d](https://github.com/roomle-dev/roomle-ui/commit/cf5238d62e2bbcf397062f2edee7cdceeecf3111))
|
|
953
|
+
* Can't draw on mobile and add room ([715789e](https://github.com/roomle-dev/roomle-ui/commit/715789e6142d86aebd65ea67f89a6cbf9d380647))
|
|
954
|
+
* cancel drawing before undo ([c90c370](https://github.com/roomle-dev/roomle-ui/commit/c90c37012b552a84b3cc4d8e4d5c7b8585a7f0c5))
|
|
955
|
+
* cancel selection on open TopBar menu on mobile ([401ec65](https://github.com/roomle-dev/roomle-ui/commit/401ec657a34f2eacccf7e091edab0f9ae224d902))
|
|
956
|
+
* Cart-Count is 0 (zero) in embedding ([924d70b](https://github.com/roomle-dev/roomle-ui/commit/924d70ba5237ae1aafb620d60505f52e34a958e7))
|
|
957
|
+
* catalog items order ([2500576](https://github.com/roomle-dev/roomle-ui/commit/250057673b281d85b13fafcfde9c4fa0081b1f23))
|
|
958
|
+
* CatalogTrigger.spec.ts ([15fa4c6](https://github.com/roomle-dev/roomle-ui/commit/15fa4c68c1772ee8bf7fab71878793413b8b8c44))
|
|
959
|
+
* catch exception if some rapi call fails closes RML-441 ([ddf3e9c](https://github.com/roomle-dev/roomle-ui/commit/ddf3e9c97170546d5b85b2073ad559dba81fbc31))
|
|
960
|
+
* change bottom bar label as in the designs ([5157813](https://github.com/roomle-dev/roomle-ui/commit/51578131c49095cc97429d5cc619c0a971a7d810))
|
|
961
|
+
* change data structure so that we can change link based on location and that it follows our regular translation strategy ([19f85d4](https://github.com/roomle-dev/roomle-ui/commit/19f85d4ce61f3db66bfb82b95b7d426b285a252a))
|
|
962
|
+
* change german translation for width ([a7bb5e3](https://github.com/roomle-dev/roomle-ui/commit/a7bb5e3bec7c3b9c89b57f0c68805a62c62dbe71))
|
|
963
|
+
* change incorrect german spelling ([10f6e6a](https://github.com/roomle-dev/roomle-ui/commit/10f6e6ad7311b3020e5560a99cb18e677d8f2638))
|
|
964
|
+
* change logic ([f2b2145](https://github.com/roomle-dev/roomle-ui/commit/f2b21457f151bb9db725e1936de34357ff5b514b))
|
|
965
|
+
* change mockstore signature ([5b26973](https://github.com/roomle-dev/roomle-ui/commit/5b26973fefeaf2d65ebb9f3bce31fb3717c33e43))
|
|
966
|
+
* change padding to margin so warning does not overlap close button ([8869e6a](https://github.com/roomle-dev/roomle-ui/commit/8869e6aa2c024b36c2e939cf99eae1922b868f8e))
|
|
967
|
+
* change search icon ([cf23443](https://github.com/roomle-dev/roomle-ui/commit/cf234432df9da1f1756c298e840ee160c7af9415))
|
|
968
|
+
* change selectors so that they come after each other ([ef45db7](https://github.com/roomle-dev/roomle-ui/commit/ef45db77891e2f4dc67023ce1a91579072717caf))
|
|
969
|
+
* change the wrong header for room sidebar ([3e94e1c](https://github.com/roomle-dev/roomle-ui/commit/3e94e1c99653c215ffb779e8d2ca8c6d62c2af55))
|
|
970
|
+
* change top offset on mobile if parameter groups exist to 0.9 ([f47568b](https://github.com/roomle-dev/roomle-ui/commit/f47568b326a075de43eef8be0a7feb1bba147d26))
|
|
971
|
+
* Change View hard to tap on touch devices ([9c25c7a](https://github.com/roomle-dev/roomle-ui/commit/9c25c7a4f9449ceb5ffeb6fa96b14a9aa5601bea))
|
|
972
|
+
* change wrong visibility in Safari parts list ([5be3493](https://github.com/roomle-dev/roomle-ui/commit/5be3493a8f816aa90262bd74112f86dc186557f1))
|
|
973
|
+
* changed computed so that Vue.js recognizes if the values change ([2bb4164](https://github.com/roomle-dev/roomle-ui/commit/2bb4164be443e84ce45fb6b0dd59ccec018ce74f))
|
|
974
|
+
* changed object can be also in the ui null ([44b29d4](https://github.com/roomle-dev/roomle-ui/commit/44b29d4120c837d46e31627ccba25fcb76c28bea))
|
|
975
|
+
* changes made to unhide the close button and the header titles ([4877cc6](https://github.com/roomle-dev/roomle-ui/commit/4877cc60bb6020505587d31144de8984ccafabe5))
|
|
976
|
+
* check active packages also for viewer ([d8772a2](https://github.com/roomle-dev/roomle-ui/commit/d8772a2318930953f145c944b759462618a4bb6d))
|
|
977
|
+
* **embedding:** check configurator id when we have remote and local init data ([c91bf69](https://github.com/roomle-dev/roomle-ui/commit/c91bf69727a448161924a1291b530231cbd3d15b))
|
|
978
|
+
* check for correct id of static item ([d3badbe](https://github.com/roomle-dev/roomle-ui/commit/d3badbe108cde489edfecc6163fa8a1d613e6942))
|
|
979
|
+
* check for haswalls ([f24df3c](https://github.com/roomle-dev/roomle-ui/commit/f24df3c3edd892e0cb1b56ca4dd4065b8468f874))
|
|
980
|
+
* check for invalid rgb value ([0ac4534](https://github.com/roomle-dev/roomle-ui/commit/0ac4534f099469edf539cee5ebfe594ca64e7d63))
|
|
981
|
+
* check for overflow when component updates this fixes timing issues on Safari ([32e2cfd](https://github.com/roomle-dev/roomle-ui/commit/32e2cfd48192aa6ffd7a456699208fce548968d4))
|
|
982
|
+
* check if array, update tests ([d7a9bee](https://github.com/roomle-dev/roomle-ui/commit/d7a9beeb594df59274998085db78ffabab4af6bf))
|
|
983
|
+
* check if select parameter group is set ([7d3ac77](https://github.com/roomle-dev/roomle-ui/commit/7d3ac77801cac6afc8f5faf5c824a8c69476fab7))
|
|
984
|
+
* check if undo or redo button fuctionalitiy are overwritten ([5b65415](https://github.com/roomle-dev/roomle-ui/commit/5b65415b07846d6e52075edfd66c9a1c76c1ad41))
|
|
985
|
+
* check if vnode is a fragment ([634fb3b](https://github.com/roomle-dev/roomle-ui/commit/634fb3b9b37e65b1a32122d8f2cf38ee9fc6cc90))
|
|
986
|
+
* check if we already loaded a configuration ([ee6a7c9](https://github.com/roomle-dev/roomle-ui/commit/ee6a7c9b1124316dddf713cd10875f2a8033f478))
|
|
987
|
+
* check if we are actually drawing a wall or not ([9423d3d](https://github.com/roomle-dev/roomle-ui/commit/9423d3d1e5d5c1e4b698746279461ea11a273948))
|
|
988
|
+
* check on hasPlanner instead ([5b40c47](https://github.com/roomle-dev/roomle-ui/commit/5b40c4700d90043cba0b54d34b895685d3031dbf))
|
|
989
|
+
* Checkmark not visible on white material ([5ab3f85](https://github.com/roomle-dev/roomle-ui/commit/5ab3f8570696ebd494fd7837d70cb54481ff2c8a))
|
|
990
|
+
* clean ([ff3e93c](https://github.com/roomle-dev/roomle-ui/commit/ff3e93cb004015a87ef97b02c3a9646c7aa4119c))
|
|
991
|
+
* clean ([e6db8ef](https://github.com/roomle-dev/roomle-ui/commit/e6db8ef87f8ebbb9fadefd8515db61be9b47082b))
|
|
992
|
+
* clean ([6f10ab1](https://github.com/roomle-dev/roomle-ui/commit/6f10ab1a76e72d90a5d880206bc5346b868d58c0))
|
|
993
|
+
* clean a bit ([c83f9e9](https://github.com/roomle-dev/roomle-ui/commit/c83f9e9334a421b30e7608c3092ba1ff8bfb0e0e))
|
|
994
|
+
* clean clgs ([239c2c9](https://github.com/roomle-dev/roomle-ui/commit/239c2c9c4d09cd2941a967f8fc404bb8f2e5b75e))
|
|
995
|
+
* cleanup ([9bf9bbf](https://github.com/roomle-dev/roomle-ui/commit/9bf9bbf2da5adb5caeada78a4a3d46e371786187))
|
|
996
|
+
* cleanup ([db5a0e6](https://github.com/roomle-dev/roomle-ui/commit/db5a0e661d56de812fee2a3ef90c3bc166eb15ee))
|
|
997
|
+
* cleanup ([82d19fb](https://github.com/roomle-dev/roomle-ui/commit/82d19fb7436c994e380e137c317026107fef7be0))
|
|
998
|
+
* cleanup ([c33bc6d](https://github.com/roomle-dev/roomle-ui/commit/c33bc6dc7fdb067c48dde0594208ce39f5150f49))
|
|
999
|
+
* cleanup ([d724354](https://github.com/roomle-dev/roomle-ui/commit/d72435452b3ebbd448336db3071bce2439ce6390))
|
|
1000
|
+
* cleanup ([0c964ea](https://github.com/roomle-dev/roomle-ui/commit/0c964ea05d7a51019b9a531dc30abe9553ad5eb3))
|
|
1001
|
+
* cleanup ([28f0138](https://github.com/roomle-dev/roomle-ui/commit/28f01383dfd1ace30e86c226424b31e025081649))
|
|
1002
|
+
* cleanup ([c141f06](https://github.com/roomle-dev/roomle-ui/commit/c141f06cfb0786ab3f8ca9d88ff7d89213039a68))
|
|
1003
|
+
* cleanup ([3b7f8ce](https://github.com/roomle-dev/roomle-ui/commit/3b7f8ce7c31ca5e7ed0f5bdb3a706e7fb8e712c5))
|
|
1004
|
+
* cleanup ([6761de9](https://github.com/roomle-dev/roomle-ui/commit/6761de92fb9807bcb73d7c257600be35e57f6ddf))
|
|
1005
|
+
* cleanup ([b7a2c9a](https://github.com/roomle-dev/roomle-ui/commit/b7a2c9ab5d052e7a3f89842f792f0c285889949c))
|
|
1006
|
+
* cleanup ([b489ba5](https://github.com/roomle-dev/roomle-ui/commit/b489ba5652a9c0b45b97e12d71abad6d23709b82))
|
|
1007
|
+
* cleanup ([9518055](https://github.com/roomle-dev/roomle-ui/commit/9518055158daa4242fbcc0b43a2b926b5968a934))
|
|
1008
|
+
* cleanup ([221aa79](https://github.com/roomle-dev/roomle-ui/commit/221aa797bdf0a6bfc1d45ad5ac8fbbc0dcd4b50c))
|
|
1009
|
+
* cleanup ([328aa88](https://github.com/roomle-dev/roomle-ui/commit/328aa88b1e4c7375c8934477fb4de0eafde96a9f))
|
|
1010
|
+
* cleanup ([6101378](https://github.com/roomle-dev/roomle-ui/commit/6101378fb0310475e2e91d6cb075f932849f1212))
|
|
1011
|
+
* cleanup ([614f598](https://github.com/roomle-dev/roomle-ui/commit/614f5988b906536743302ce05c24b24e452013d7))
|
|
1012
|
+
* cleanup ([3c72189](https://github.com/roomle-dev/roomle-ui/commit/3c7218905bdbc9456aa601dd7c2c855aced7bdac))
|
|
1013
|
+
* cleanup ([5c1505f](https://github.com/roomle-dev/roomle-ui/commit/5c1505f0060d04325be3f58775d7c5d23271ed41))
|
|
1014
|
+
* cleanup positions ([da0f507](https://github.com/roomle-dev/roomle-ui/commit/da0f5075f0120c031b2884871c4947605b9ee893))
|
|
1015
|
+
* cleanup refs ([a566c81](https://github.com/roomle-dev/roomle-ui/commit/a566c811b6c7ac21601922f266958fd3ce81afa6))
|
|
1016
|
+
* cleanup, implement in other places ([4d1038c](https://github.com/roomle-dev/roomle-ui/commit/4d1038cb36f5996d20cb35bad2e21d357333336f))
|
|
1017
|
+
* cleanups ([07019c5](https://github.com/roomle-dev/roomle-ui/commit/07019c562b592eac02d62db04b7897272d4921c2))
|
|
1018
|
+
* cleanups, try fix action button state flipping ([affc42e](https://github.com/roomle-dev/roomle-ui/commit/affc42e88775299f71972f3ba6fd6a5ed4103708))
|
|
1019
|
+
* clear store after loading ([92d1094](https://github.com/roomle-dev/roomle-ui/commit/92d10942fbcf3fe80cb10064f2b1067c2b656d34))
|
|
1020
|
+
* clear store on close ([8bf280f](https://github.com/roomle-dev/roomle-ui/commit/8bf280ff7c43f0d2185f707c4fda7d14e3e963fd))
|
|
1021
|
+
* close all open message channels after tests are done this prevents the following error: ([0eb40a8](https://github.com/roomle-dev/roomle-ui/commit/0eb40a83d050ffde3e806bdbac9e9fcd9edb9916))
|
|
1022
|
+
* close expanded addon view if you click on back and not jump out completelly ([d1178cf](https://github.com/roomle-dev/roomle-ui/commit/d1178cf45731271c2672883f1ff18bc639a6e2d5))
|
|
1023
|
+
* close mobile menu on reset camera ([22f7cd2](https://github.com/roomle-dev/roomle-ui/commit/22f7cd2f6f0de2842f7930ff22d1790b04f52525))
|
|
1024
|
+
* Closes RML-578 so that prices with 0 (not null or undefined) are shown again in UI ([5236888](https://github.com/roomle-dev/roomle-ui/commit/52368886b6e5de499d4bae4c43bf12845b28b866))
|
|
1025
|
+
* closes RML-7829 so that you can also share the plan in moc=false ([15d17e9](https://github.com/roomle-dev/roomle-ui/commit/15d17e9713789456cbf771a4cad7982cbf67a755))
|
|
1026
|
+
* code-review cast init data before we add properties ([7519423](https://github.com/roomle-dev/roomle-ui/commit/7519423cb68f202e00d327b884b51e5e0554d1f7))
|
|
1027
|
+
* code-review do not run click when it was a long-click ([f599a1e](https://github.com/roomle-dev/roomle-ui/commit/f599a1e26941539a55795dbc8e96dcfe905e8a57))
|
|
1028
|
+
* code-review fix failing test because of too early return ([9c05e30](https://github.com/roomle-dev/roomle-ui/commit/9c05e3019cdc613177166a2ac38c6dc9b79c2c10))
|
|
1029
|
+
* CollapsedView.vue types ([68a950f](https://github.com/roomle-dev/roomle-ui/commit/68a950fb294f37a1f619b95c0984fe591631b673))
|
|
1030
|
+
* collection view issue when item selected in other collection view ([39e9b13](https://github.com/roomle-dev/roomle-ui/commit/39e9b13efc737e0efc61987ba3fcad29bc9ddd76))
|
|
1031
|
+
* CollectionView on mobile becomes empty ([b623d74](https://github.com/roomle-dev/roomle-ui/commit/b623d7452d79e58fd5c88f77a76081d7a62041b3))
|
|
1032
|
+
* collectionViewElement tooltips ([47a9ee8](https://github.com/roomle-dev/roomle-ui/commit/47a9ee8044e2a30f2d2b7b0cb4eb7c6d9af2a9c7))
|
|
1033
|
+
* ColorParameter.vue ([977a9b4](https://github.com/roomle-dev/roomle-ui/commit/977a9b4cafc7bafba997d1e8b8009125af0ab4a7))
|
|
1034
|
+
* compile error of github ([10c2e67](https://github.com/roomle-dev/roomle-ui/commit/10c2e67560f99d6770e265328979d89d6e61f99d))
|
|
1035
|
+
* concurrent wall attempt ([c5b746f](https://github.com/roomle-dev/roomle-ui/commit/c5b746f6552f54ec03040029f674ecf03e8baebe))
|
|
1036
|
+
* conditional avoidance of sidebar ([386783e](https://github.com/roomle-dev/roomle-ui/commit/386783e1656c117179a4ea92b06d03005ec4daec))
|
|
1037
|
+
* conditionally mobile ([55ccfa1](https://github.com/roomle-dev/roomle-ui/commit/55ccfa1b66cc12801bdb9a40c52612e89972c632))
|
|
1038
|
+
* configurator delete button, don't show old delete button ([937bb24](https://github.com/roomle-dev/roomle-ui/commit/937bb2417f1b2cfbb75260100f52c2c2dbc1a998))
|
|
1039
|
+
* configuratorMain test ([13ab8c5](https://github.com/roomle-dev/roomle-ui/commit/13ab8c5341a61f8274e42044c1de0c06c860b71f))
|
|
1040
|
+
* configuratorMain.spec ([4c9c132](https://github.com/roomle-dev/roomle-ui/commit/4c9c132225bec081bb8d547779fc1ddbbeb97bc7))
|
|
1041
|
+
* ConfiguratorSidebar.spec.ts ([2df2930](https://github.com/roomle-dev/roomle-ui/commit/2df293057cd1b4f19af30ad946baf602ab270543))
|
|
1042
|
+
* consistency in unit type switch based on measurementSystem ([01c93e5](https://github.com/roomle-dev/roomle-ui/commit/01c93e578a0f9c1b109877a40cc0a554fa9d4ed6))
|
|
1043
|
+
* ConstructionVariants.spec.ts ([dbf45df](https://github.com/roomle-dev/roomle-ui/commit/dbf45df380d20e05ae48d9e5ba21b5c06eb12d0f))
|
|
1044
|
+
* cookie banner on safari is not translated ([7cf8622](https://github.com/roomle-dev/roomle-ui/commit/7cf8622c6d336a71aa2e9f0f118a4235278b1fec))
|
|
1045
|
+
* CookieBanner.spec.ts ([f66e0f9](https://github.com/roomle-dev/roomle-ui/commit/f66e0f916432d82daf530c1c15e117a0bf159875))
|
|
1046
|
+
* correct uneeded test ([505cfed](https://github.com/roomle-dev/roomle-ui/commit/505cfed2389d6faee7dbe5a8ad05ded7a19ebe38))
|
|
1047
|
+
* create a solution which does not break the build ([6846689](https://github.com/roomle-dev/roomle-ui/commit/6846689151fc5b05a542e388b36c2ebb73ee6be3))
|
|
1048
|
+
* create correct mock ([d9cc7a0](https://github.com/roomle-dev/roomle-ui/commit/d9cc7a05f5bc77047bf6309a306f54db8dfd3f05))
|
|
1049
|
+
* create new array to prevent problems with reactivity caveat for more see: ([a7e4c86](https://github.com/roomle-dev/roomle-ui/commit/a7e4c86a7ae88d50695918218548a052fe2d7825))
|
|
1050
|
+
* create static tabbed nav for 1 label use only ([cf14193](https://github.com/roomle-dev/roomle-ui/commit/cf141936eb5b3274b143178a456a361efc382778))
|
|
1051
|
+
* cropped inch ([f884757](https://github.com/roomle-dev/roomle-ui/commit/f88475763e6e61e370b296f950b5bfd78114bd9d))
|
|
1052
|
+
* css glitches due to merge ([5a175ec](https://github.com/roomle-dev/roomle-ui/commit/5a175ec34cd1282d844b830b4633e26bcdb01c37))
|
|
1053
|
+
* CSS tweaks ([ca7c1e9](https://github.com/roomle-dev/roomle-ui/commit/ca7c1e9950e62e876e015476248e12f613859fbc))
|
|
1054
|
+
* cut in the save-draft button ([362b87b](https://github.com/roomle-dev/roomle-ui/commit/362b87bc69941a8bc02ee11d7c92fb40f979f933))
|
|
1055
|
+
* Czech capitals do not fit in MOC main label ([8b2abbd](https://github.com/roomle-dev/roomle-ui/commit/8b2abbd18ebe7e065bf091ffdb642e827a4566f8))
|
|
1056
|
+
* deactivate mobile test because it does not run in Github Action ([b3f372d](https://github.com/roomle-dev/roomle-ui/commit/b3f372d84078e9a70937cbf00a606fd346728c26))
|
|
1057
|
+
* delete exclamation mark of german "error message" translation ([cf43bae](https://github.com/roomle-dev/roomle-ui/commit/cf43baed2cf4eb1424099d6d6fd8ba26edd05852))
|
|
1058
|
+
* delete irrelevant test, moved equivalent test into flyingmenubuttons.spec.ts ([dddf401](https://github.com/roomle-dev/roomle-ui/commit/dddf401e566d6a8c27c0fe441343c35525ce998c))
|
|
1059
|
+
* delete room if there are previous walls ([1286812](https://github.com/roomle-dev/roomle-ui/commit/12868129cdb240b19d8db4000434a048767ac503))
|
|
1060
|
+
* delete welcome page component ([06fbcd1](https://github.com/roomle-dev/roomle-ui/commit/06fbcd116c2648e85f7c3d1dd1c5e1f10cde90b4))
|
|
1061
|
+
* deselect all items if undo or redo is called ([758fc37](https://github.com/roomle-dev/roomle-ui/commit/758fc3779e572118c76d410a368b1586344b639a))
|
|
1062
|
+
* deselect on duplication ([1a8c535](https://github.com/roomle-dev/roomle-ui/commit/1a8c53538528bbf80305b37c2823264ef42a7f1e))
|
|
1063
|
+
* deselect sidebar action buttons if toggle interaction menu ([bf5cc92](https://github.com/roomle-dev/roomle-ui/commit/bf5cc9207175739796c9cb802895796f5b62a1a6))
|
|
1064
|
+
* design issue of sidebar nav ([ba635e0](https://github.com/roomle-dev/roomle-ui/commit/ba635e08bddb873fb8fbfd4a1eca451713a93f67))
|
|
1065
|
+
* disable broken tests? ([1c08da1](https://github.com/roomle-dev/roomle-ui/commit/1c08da1f92b86afcad1b7f19f2264dc4d12457b6))
|
|
1066
|
+
* disable devtools in prod ([1bc38f7](https://github.com/roomle-dev/roomle-ui/commit/1bc38f7d8a1396630b6a3cb51c88e9b3795f53fa))
|
|
1067
|
+
* disable fadeIn of tooltip on stopconfiguringButton ([89adef6](https://github.com/roomle-dev/roomle-ui/commit/89adef688ba03089e5021bb565c565e043c45fa9))
|
|
1068
|
+
* disable fp ([3166aa2](https://github.com/roomle-dev/roomle-ui/commit/3166aa214c9a11dcb9f818e2532b415542818ba8))
|
|
1069
|
+
* disable fp for now ([34a99db](https://github.com/roomle-dev/roomle-ui/commit/34a99dbc6e749ce245a58b30880457009da61ab4))
|
|
1070
|
+
* disable help center by default ([a4bd5dd](https://github.com/roomle-dev/roomle-ui/commit/a4bd5ddd8075d190f6f30b4a7e375b3de45a430d))
|
|
1071
|
+
* **planner:** disable measurement text focus when clicking on canvas ([bf143b5](https://github.com/roomle-dev/roomle-ui/commit/bf143b5fce718e9b022ba78bc8406173306fcc34))
|
|
1072
|
+
* disable multi-select when snapping is enabled ([da0b41b](https://github.com/roomle-dev/roomle-ui/commit/da0b41b2067e28b54c3ca9c001e9b31363081337))
|
|
1073
|
+
* disable savedraft and requestPlan button in planner ([cd66284](https://github.com/roomle-dev/roomle-ui/commit/cd66284a6adcb2c1bea4965b069f7babc06c52d7))
|
|
1074
|
+
* disable snapping button if there is more than one item selected ([96985de](https://github.com/roomle-dev/roomle-ui/commit/96985de7a0cf0ec5a00477b726727b85d146d1c8))
|
|
1075
|
+
* disable snapping button when multiselect is enabled. ([b5f8b49](https://github.com/roomle-dev/roomle-ui/commit/b5f8b4911952bf8a2fb3f543cd18815efc77654c))
|
|
1076
|
+
* disable snapping when input mode is changed to multi ([2a2b1c2](https://github.com/roomle-dev/roomle-ui/commit/2a2b1c29813fe8c5cce0f7d8cb1b31e007532468))
|
|
1077
|
+
* disable some tests for now until further defintitaion ([a3314f4](https://github.com/roomle-dev/roomle-ui/commit/a3314f415adc4f9d8741049d6a987df0fc34ba7d))
|
|
1078
|
+
* disable UI on floor selection ([7c34ae7](https://github.com/roomle-dev/roomle-ui/commit/7c34ae72be5d76e14d470cdb7ce7e893fec974e0))
|
|
1079
|
+
* disable undo and redo button completely by initData ([4420916](https://github.com/roomle-dev/roomle-ui/commit/44209162cc11c865f018d615da9b796cd8bf018f))
|
|
1080
|
+
* disable undo and redo in configurator when in MOC ([63c322c](https://github.com/roomle-dev/roomle-ui/commit/63c322cc53c3fe0af698cfdaf87b0b9a69fd1273))
|
|
1081
|
+
* display catalog trigger only when there is a catalog available ([ed073e3](https://github.com/roomle-dev/roomle-ui/commit/ed073e3b890ba6c1373e88e73d7e9c433eafb21c))
|
|
1082
|
+
* do early return if we have *no* instance ([cfeab2c](https://github.com/roomle-dev/roomle-ui/commit/cfeab2c05c1bf7b23ddaf31fbe5709d0b3c53c5e))
|
|
1083
|
+
* do not add random methods to the global object ([465f8d6](https://github.com/roomle-dev/roomle-ui/commit/465f8d694bbdd6ab08e9ffefcc690caed25d3d74))
|
|
1084
|
+
* do not await api ([4ae34c7](https://github.com/roomle-dev/roomle-ui/commit/4ae34c7e1f9716bf12cbc425981193f1d9e16aa9))
|
|
1085
|
+
* do not break cells to next page and add catalog name to pdf ([4eaf055](https://github.com/roomle-dev/roomle-ui/commit/4eaf055872c535294a9f53f814e8138d2fd04153))
|
|
1086
|
+
* do not break if selection-payload has no perspective image ([eb76c44](https://github.com/roomle-dev/roomle-ui/commit/eb76c449975d916bdecf2f76281d640eef7b2b03))
|
|
1087
|
+
* do not cancel on selection ([61d667e](https://github.com/roomle-dev/roomle-ui/commit/61d667ed3d31db5d4c915a6676ff4b7d99dcda09))
|
|
1088
|
+
* do not change view mode while user is searching ([d6d8f2a](https://github.com/roomle-dev/roomle-ui/commit/d6d8f2a612ae11090bddbb55e35f49eb9d5cbcaf))
|
|
1089
|
+
* do not check configurator setting when configurator id is not set ([023dbe2](https://github.com/roomle-dev/roomle-ui/commit/023dbe28c1fa2f0d1495284d5de5fcf6e9922227))
|
|
1090
|
+
* do not check version if we run "npm run serveSdk" ([b657aab](https://github.com/roomle-dev/roomle-ui/commit/b657aab5e58547b57c0c034756a597ffdaf92278))
|
|
1091
|
+
* do not collapse buttons in E2E ([0c7d845](https://github.com/roomle-dev/roomle-ui/commit/0c7d845729fe3a118e8bf100a9ff19e35030564c))
|
|
1092
|
+
* do not crash if a timing is missing, ([f1584bc](https://github.com/roomle-dev/roomle-ui/commit/f1584bcbbd04b4f7fe15c38244d199ce36b3e5ca))
|
|
1093
|
+
* do not expand interactions on mobile if catalog trigger is clicked ([10b1531](https://github.com/roomle-dev/roomle-ui/commit/10b153145b93d533b92fa815ea28239aaf716738))
|
|
1094
|
+
* do not import scss in embedding lib ([fcca831](https://github.com/roomle-dev/roomle-ui/commit/fcca831b993df263d6991b47b646761823ffb9c0))
|
|
1095
|
+
* do not load another object if loading is still in progress ([0de4eca](https://github.com/roomle-dev/roomle-ui/commit/0de4ecaa39f47e8512bda46ff44bb3bc6596dfdb))
|
|
1096
|
+
* do not nullify objposonplanner ([7a6a3ca](https://github.com/roomle-dev/roomle-ui/commit/7a6a3ca97d914b57f4bf00dc21889707d2b1f98e))
|
|
1097
|
+
* do not open interactions for rooms on mobile ([a0fd3da](https://github.com/roomle-dev/roomle-ui/commit/a0fd3da8fb92b4e9009b17bdc223b9df29e37d73))
|
|
1098
|
+
* do not output a false warning ([e13e0fe](https://github.com/roomle-dev/roomle-ui/commit/e13e0fe3fb342e0be7817f5281af844fecc40369))
|
|
1099
|
+
* do not override remote init data with fallback values ([f41904a](https://github.com/roomle-dev/roomle-ui/commit/f41904aa8e3fee5ef291fa7631713bd3074fa296))
|
|
1100
|
+
* do not remove es lint plugin on serveSdk ([ad87ede](https://github.com/roomle-dev/roomle-ui/commit/ad87ede74e7b91982bc0bf577919ed511a15b15d))
|
|
1101
|
+
* do not remove loading screen when SDK loads something ([83b33cc](https://github.com/roomle-dev/roomle-ui/commit/83b33cce47b1b542f941f4d38cfb3284f12386dd))
|
|
1102
|
+
* do not reveal which password manager we use ([24d42b8](https://github.com/roomle-dev/roomle-ui/commit/24d42b8bd42de864526083e8efe5a0f5418ce1e8))
|
|
1103
|
+
* do not send images to Cloudinary which are not accessible ([8758fcf](https://github.com/roomle-dev/roomle-ui/commit/8758fcf70718e94311f8d67b319d53857216a122))
|
|
1104
|
+
* do not show addon button when delete button is visible ([2cedcb6](https://github.com/roomle-dev/roomle-ui/commit/2cedcb61e001e393c3f108c6adf0e76ba8ee3a37))
|
|
1105
|
+
* do not show label of parameter if we are on mobile and parameter is expanded ([b4f3ddc](https://github.com/roomle-dev/roomle-ui/commit/b4f3ddc7727655db5cc7f7184f79d2340d9dae92))
|
|
1106
|
+
* do not show parameters if there is a multi-selection ([54b2445](https://github.com/roomle-dev/roomle-ui/commit/54b24458e0bc6e2d597a79ceb6fdce723217c1fd))
|
|
1107
|
+
* do not show sample rooms if user explicitly decided to draw a room ([c460589](https://github.com/roomle-dev/roomle-ui/commit/c46058966c0f17547b4bc1bf263d5af218fc3328))
|
|
1108
|
+
* do not swallow loading errors resolves RML-2843 ([888f322](https://github.com/roomle-dev/roomle-ui/commit/888f3221e39d07d1c58e10bae7c26a5a5caae7bb))
|
|
1109
|
+
* do not use fallback ids in embedding ([94845c7](https://github.com/roomle-dev/roomle-ui/commit/94845c706cb5726e080100c1f9f1e914276f0374))
|
|
1110
|
+
* does not show catalog trigger button on mobile and collapse interaction menu on deselect partlist toggle on mobile ([257a6c7](https://github.com/roomle-dev/roomle-ui/commit/257a6c785fd111837d76c798f02ab58773484f8e))
|
|
1111
|
+
* don't add products double on mobile drag in ([c93a982](https://github.com/roomle-dev/roomle-ui/commit/c93a982f84d5f2813739bdcf99ea4d1ddc168654))
|
|
1112
|
+
* don't close first time room behavior on "free draw" ([39b94aa](https://github.com/roomle-dev/roomle-ui/commit/39b94aafabbdc5602935ddc4cd2541fb475affa9))
|
|
1113
|
+
* don't disable undo/redo button fully to prevent jumping buttons ([c459504](https://github.com/roomle-dev/roomle-ui/commit/c459504d13ab2ef343e7bfb1e5d24823c5a39448))
|
|
1114
|
+
* don't include runtime ID in idb saved planXMLs ([9c4c90c](https://github.com/roomle-dev/roomle-ui/commit/9c4c90c6917743af864c1dfc73e2fcc11eb578ee))
|
|
1115
|
+
* don't open on mobile ([694ca99](https://github.com/roomle-dev/roomle-ui/commit/694ca9908c21de540a0c041a3d0c070f5fc9abf4))
|
|
1116
|
+
* don't show back button in configurator only ([0616358](https://github.com/roomle-dev/roomle-ui/commit/061635885de98f514bdd09b01766b70d932a9e90))
|
|
1117
|
+
* don't show delete button on floors ([c8b9e3f](https://github.com/roomle-dev/roomle-ui/commit/c8b9e3ffd1e4a23ed110b247a82ff5e2c679b8ee))
|
|
1118
|
+
* don't show product positions on construction items ([c87deb9](https://github.com/roomle-dev/roomle-ui/commit/c87deb9cc6196c86e27ccda2c0ed711cad14ae19))
|
|
1119
|
+
* don't show rotation UI if floor is selected, update test ([58be04e](https://github.com/roomle-dev/roomle-ui/commit/58be04e465468e7be15effa03215a314c15f8027))
|
|
1120
|
+
* dont enable wall drawing when measurement line updates ([7101aa2](https://github.com/roomle-dev/roomle-ui/commit/7101aa26adc16125fca91da8e51bbd6b73f3bb93))
|
|
1121
|
+
* dont fully hide productlist mobile ([365d207](https://github.com/roomle-dev/roomle-ui/commit/365d207bc196ae40b558569a4bc9df1c0f11ce3a))
|
|
1122
|
+
* dont move menu on clicking non canvas elements ([20163ed](https://github.com/roomle-dev/roomle-ui/commit/20163edf1faf053ee6c49a0d1dc6401986e59c2d))
|
|
1123
|
+
* dont offset down when using position2d ([7206b2d](https://github.com/roomle-dev/roomle-ui/commit/7206b2da849460e181e053243fecb11c5a7e0798))
|
|
1124
|
+
* dont show close button on catalog drawer ([027f62c](https://github.com/roomle-dev/roomle-ui/commit/027f62cb8c6ab5bd048b46ee56f5ecd6c7e52503))
|
|
1125
|
+
* dont show CollectionViewHint when gridview is open ([429b768](https://github.com/roomle-dev/roomle-ui/commit/429b7682e6217d7df165e6b8f73e0fbf04db62f0))
|
|
1126
|
+
* dont show indicators if there is no scrolling on the tab list ([e7ff499](https://github.com/roomle-dev/roomle-ui/commit/e7ff499d51e39a8fc928f12589abbc875b453bed))
|
|
1127
|
+
* dont show price if it's zero ([bbf4c30](https://github.com/roomle-dev/roomle-ui/commit/bbf4c3083a57a319869ca2284c261a6340dbacb8))
|
|
1128
|
+
* dont show reset, camera angles in fp mode ([55bb5ca](https://github.com/roomle-dev/roomle-ui/commit/55bb5ca53f8b7eaaeeb965ff0a59a7d269b53a3b))
|
|
1129
|
+
* door settings ([2572b80](https://github.com/roomle-dev/roomle-ui/commit/2572b8073ff11e66148e408df8558d4addcaea2e))
|
|
1130
|
+
* Dragging a door flickers sidebar ([f1e48a8](https://github.com/roomle-dev/roomle-ui/commit/f1e48a8d3b1560d41acdbb5e47a65c7b657b9943))
|
|
1131
|
+
* drawing on mobile when there are a walls in the scene ([7f013c3](https://github.com/roomle-dev/roomle-ui/commit/7f013c31f848f5b89a846c31e3e2e3f3465baae4))
|
|
1132
|
+
* drawing UI issues ([f7bbb0b](https://github.com/roomle-dev/roomle-ui/commit/f7bbb0b3792dedd2ddc577d0768260442d959b01))
|
|
1133
|
+
* Drawing walls on desktop is weird - 😭 arrows do not fit anymore 😓 ([d159acd](https://github.com/roomle-dev/roomle-ui/commit/d159acd47c1bf5f8f651e4deacbf5432c6425e81))
|
|
1134
|
+
* Drawing walls on desktop is weird - sometimes not the whole text of the focused input is selected ([97e7e1e](https://github.com/roomle-dev/roomle-ui/commit/97e7e1ecd024804c8fb9261185626c97ce9709c3))
|
|
1135
|
+
* duplicate label in thumbnail parameter ([b40d60b](https://github.com/roomle-dev/roomle-ui/commit/b40d60b5a27e24438bd9ac362909754c67f3dfef))
|
|
1136
|
+
* Edit Product button not working in Room Designer on Mobile ([504cabd](https://github.com/roomle-dev/roomle-ui/commit/504cabd8a54e440241787240aad9b114ff24a443))
|
|
1137
|
+
* elements label should only be displayed if there are no group labels ([81d71a4](https://github.com/roomle-dev/roomle-ui/commit/81d71a4ac4336ebc361945b18d75cd8a49588785))
|
|
1138
|
+
* embedding moc should display start planner button instead of action and bottom buttons ([831cd91](https://github.com/roomle-dev/roomle-ui/commit/831cd91f016f06b26131da82583b48393d976836))
|
|
1139
|
+
* Embedding: startInDetail is not working ([e512dfc](https://github.com/roomle-dev/roomle-ui/commit/e512dfc250e31a7a27352334db912b3cd34605da))
|
|
1140
|
+
* enable feature flag by default ([5748b55](https://github.com/roomle-dev/roomle-ui/commit/5748b5553cc5bcd6992ba7e3a3baf373b7896c8e))
|
|
1141
|
+
* enable save button when email is valid ([0b11012](https://github.com/roomle-dev/roomle-ui/commit/0b110122c40cbe1b8e2435b25a42c610ff8d10fd))
|
|
1142
|
+
* enable scrollbars only for certain components ([455fe01](https://github.com/roomle-dev/roomle-ui/commit/455fe01f5b695cf6ac02b250426001632b50aa5e))
|
|
1143
|
+
* enable tooltip parameter on tabbedNav ([037e4f0](https://github.com/roomle-dev/roomle-ui/commit/037e4f0470aa2a89d11e04c0b77d8c79e423c094))
|
|
1144
|
+
* entering a value above 360 brings it to an equivalent under 360 ([850ae7c](https://github.com/roomle-dev/roomle-ui/commit/850ae7cd72ad03cee5ff9fd13cc4a7d3f7ea441e))
|
|
1145
|
+
* enumify ([0f94416](https://github.com/roomle-dev/roomle-ui/commit/0f944165b773121fe41f4e9cae3d526e3456c8d1))
|
|
1146
|
+
* error message bug, added rightly in loco ([a530ef6](https://github.com/roomle-dev/roomle-ui/commit/a530ef6930126a4738b8449fb35bcd2c881668f1))
|
|
1147
|
+
* es-lint warnings ([cb027c9](https://github.com/roomle-dev/roomle-ui/commit/cb027c9239987416ea30ddae58c10527762b5cf8))
|
|
1148
|
+
* eslint errors ([5c8ab2a](https://github.com/roomle-dev/roomle-ui/commit/5c8ab2affb37a1ab060a3a39a8319f4e4e0d55e7))
|
|
1149
|
+
* eslint errors ([a0d4573](https://github.com/roomle-dev/roomle-ui/commit/a0d4573e8d93400f6375a3551b5fcfe5c7c60a6c))
|
|
1150
|
+
* eslint warnings ([a42a64e](https://github.com/roomle-dev/roomle-ui/commit/a42a64e653196616b66b29c04705ae70e07fb4e3))
|
|
1151
|
+
* eslint warnings ([2b187a0](https://github.com/roomle-dev/roomle-ui/commit/2b187a0d62fb851e9305ab0d4cc5c2a318bd3543))
|
|
1152
|
+
* even more stuff is working ([d69b031](https://github.com/roomle-dev/roomle-ui/commit/d69b031bf363996aaab05f99fdf54888d056a663))
|
|
1153
|
+
* even more things are working right now ([0182eb8](https://github.com/roomle-dev/roomle-ui/commit/0182eb8af96712bb4b958204beb5e2e70afdb4aa))
|
|
1154
|
+
* exception if the product doesn't have perspective image ([9123d23](https://github.com/roomle-dev/roomle-ui/commit/9123d23dd703a64f19bb375740292772242885ed))
|
|
1155
|
+
* ExpandableIcons.vue ([6f7a01e](https://github.com/roomle-dev/roomle-ui/commit/6f7a01e23ef3d4a871e6a9a0cdaa6c38d1c99c31))
|
|
1156
|
+
* expandedview not visible ([de695be](https://github.com/roomle-dev/roomle-ui/commit/de695be97e8f3206ea924470ef5ee1f28259e623))
|
|
1157
|
+
* expandedview not visible ([bdc6f2e](https://github.com/roomle-dev/roomle-ui/commit/bdc6f2e76ffadf3ece67cce32e0af58f7ded529b))
|
|
1158
|
+
* ExpandedView.spec ([46542d9](https://github.com/roomle-dev/roomle-ui/commit/46542d91601c6232bec6bf80c2b0d6a72af1a5ce))
|
|
1159
|
+
* Export3D.spec ([047a573](https://github.com/roomle-dev/roomle-ui/commit/047a5734117137013e1a0838d7542d0db677c776))
|
|
1160
|
+
* exposed-api.spec.ts ([66e6b85](https://github.com/roomle-dev/roomle-ui/commit/66e6b85f35120b99edb389aa1a9fd340e290ad75))
|
|
1161
|
+
* extend isios check ([36eaefa](https://github.com/roomle-dev/roomle-ui/commit/36eaefacf3bd65dda6d06d13c6a1868e437e6268))
|
|
1162
|
+
* extend SDK feature flags ([a7e1c97](https://github.com/roomle-dev/roomle-ui/commit/a7e1c97d2cd46082af7b915740b3069c53605221))
|
|
1163
|
+
* extended callbacks should be added in planner and configurator ([6bcb1e5](https://github.com/roomle-dev/roomle-ui/commit/6bcb1e50133717dd073f587ea2a82cac998dc9da))
|
|
1164
|
+
* extract the qr code lib and monkey patch it ([6cf42b2](https://github.com/roomle-dev/roomle-ui/commit/6cf42b2a73c5d0ef97279eef0dd23b7b18a77912))
|
|
1165
|
+
* failing E2E tests ([91a2f19](https://github.com/roomle-dev/roomle-ui/commit/91a2f1960b7870c0b32bbad0eace1414ed08ab21))
|
|
1166
|
+
* failing pipeline test ([eba9910](https://github.com/roomle-dev/roomle-ui/commit/eba9910a2bb9fdcab569d9b2e8cd4c992fcbb55b))
|
|
1167
|
+
* failing playwright tests ([693a00c](https://github.com/roomle-dev/roomle-ui/commit/693a00c73d3cf5a048171913ef24567a7edeb5b4))
|
|
1168
|
+
* failing test ([dae64d4](https://github.com/roomle-dev/roomle-ui/commit/dae64d4989eacb6b33b781e7caea3b1a60aba04a))
|
|
1169
|
+
* failing test ([0c04e25](https://github.com/roomle-dev/roomle-ui/commit/0c04e253d9b846a17ab468485d3ce78f0831d443))
|
|
1170
|
+
* failing test ([a41d804](https://github.com/roomle-dev/roomle-ui/commit/a41d80433f99481ad6459e221b04f6509a352f7a))
|
|
1171
|
+
* failing test ([7ea5d07](https://github.com/roomle-dev/roomle-ui/commit/7ea5d074f62c84d06fa22a281623edc7bd43427f))
|
|
1172
|
+
* failing test ([2c85461](https://github.com/roomle-dev/roomle-ui/commit/2c85461fa0a8599a11883ff4622b3ec1d213ee58))
|
|
1173
|
+
* failing test ([3e39290](https://github.com/roomle-dev/roomle-ui/commit/3e39290836a99dfb93f0c7635d543c0338fca0ac))
|
|
1174
|
+
* failing test ([5a28afc](https://github.com/roomle-dev/roomle-ui/commit/5a28afc99be963e01363887a6667e93497eaa337))
|
|
1175
|
+
* failing test ([9985ced](https://github.com/roomle-dev/roomle-ui/commit/9985ced693718b8d052116e1ee25f875c9d274d2))
|
|
1176
|
+
* failing test ([ef7d626](https://github.com/roomle-dev/roomle-ui/commit/ef7d62699bbe17d060de7c608bd6837139ce44ea))
|
|
1177
|
+
* failing test ([e07bc89](https://github.com/roomle-dev/roomle-ui/commit/e07bc893445243c90fc5f4931dbb713024848b21))
|
|
1178
|
+
* failing test ([2661f39](https://github.com/roomle-dev/roomle-ui/commit/2661f39b5a9f452f522597bad9217a2a7dc36b9d))
|
|
1179
|
+
* failing test because of missing mock data ([1287cb8](https://github.com/roomle-dev/roomle-ui/commit/1287cb84da9246e3d174254716daf793af5d8bb8))
|
|
1180
|
+
* failing test cases ([907102d](https://github.com/roomle-dev/roomle-ui/commit/907102d49e681fdcd5501c04bd8291409b655abc))
|
|
1181
|
+
* failing test due to pixel rounding errors ([ac6f143](https://github.com/roomle-dev/roomle-ui/commit/ac6f14326d92be240e958811779180015ecb9844))
|
|
1182
|
+
* failing tests ([a8c775b](https://github.com/roomle-dev/roomle-ui/commit/a8c775bc94c76e9da94181c785ca88f99b635610))
|
|
1183
|
+
* failing tests ([3b22924](https://github.com/roomle-dev/roomle-ui/commit/3b22924159c0f1c3e085f900dfd4a14fd2a68f66))
|
|
1184
|
+
* failing tests ([fd49e17](https://github.com/roomle-dev/roomle-ui/commit/fd49e17b92148cbae8a9d3a04f2d25450304e428))
|
|
1185
|
+
* failing tests ([b445959](https://github.com/roomle-dev/roomle-ui/commit/b445959f477df554c0b9ce722bc1dbd7116d253c))
|
|
1186
|
+
* failing tests ([2b2aa0d](https://github.com/roomle-dev/roomle-ui/commit/2b2aa0d7f9a72258582fa7b03b90f5493fc7fe03))
|
|
1187
|
+
* failing tests ([d7025ef](https://github.com/roomle-dev/roomle-ui/commit/d7025efd8dc5cadd004e7989265bc120ccbf96c4))
|
|
1188
|
+
* failing tests ([456dcd6](https://github.com/roomle-dev/roomle-ui/commit/456dcd61898dc089c084eec1c10bb5844dfcb50e))
|
|
1189
|
+
* failing tests ([a1f9b5b](https://github.com/roomle-dev/roomle-ui/commit/a1f9b5b6ba7d2ce05631926d28130077acc4ba1e))
|
|
1190
|
+
* failing tests and lint errors ([db8491a](https://github.com/roomle-dev/roomle-ui/commit/db8491ad5130cd50fe09f8584eea688b27e9c698))
|
|
1191
|
+
* failing tests and skip hard to fix tests ([bf08acb](https://github.com/roomle-dev/roomle-ui/commit/bf08acb2caddb728a865a51e7b610f42f6ff7e1c))
|
|
1192
|
+
* fallback to partlist if no view selected ([d23565a](https://github.com/roomle-dev/roomle-ui/commit/d23565a92b13f58e169633999b41fa0df9f3c10b))
|
|
1193
|
+
* feedback ([06a0c8c](https://github.com/roomle-dev/roomle-ui/commit/06a0c8c6cddbfdf05f6af3be4174664e4f7ec4fb))
|
|
1194
|
+
* feedback ([125373b](https://github.com/roomle-dev/roomle-ui/commit/125373b2427eb0eb61a71947424cbcf1ca3318f5))
|
|
1195
|
+
* feedback fixes ([5b5ade5](https://github.com/roomle-dev/roomle-ui/commit/5b5ade5de615e771c87aec8fa49712eab69a3bd2))
|
|
1196
|
+
* feedback fixes ([4fa67ad](https://github.com/roomle-dev/roomle-ui/commit/4fa67ad08947616080e8fa1e165102ecd8cfdb98))
|
|
1197
|
+
* feedback fixes ([8840b2c](https://github.com/roomle-dev/roomle-ui/commit/8840b2c3b642ac62ec3b30fcd81ec44b300376ee))
|
|
1198
|
+
* feedback fixes ([e8af506](https://github.com/roomle-dev/roomle-ui/commit/e8af506c092e5f971371b319e2811b2ea3592f76))
|
|
1199
|
+
* feedback fixes ([af0ebc9](https://github.com/roomle-dev/roomle-ui/commit/af0ebc9fce4b3b07c1f368f361eb39210c32bff1))
|
|
1200
|
+
* feedback fixes ([c96dbd7](https://github.com/roomle-dev/roomle-ui/commit/c96dbd79c993db9a5368de18eeb16d0203f9d846))
|
|
1201
|
+
* feedback fixes ([b01978a](https://github.com/roomle-dev/roomle-ui/commit/b01978a9b830fe1ece589f33550482aa084dc00d))
|
|
1202
|
+
* feedback fixes ([7e24578](https://github.com/roomle-dev/roomle-ui/commit/7e245789f2f814efbb01e4b5e00cc895d95b59ba))
|
|
1203
|
+
* feedback fixes pt1 ([799f11e](https://github.com/roomle-dev/roomle-ui/commit/799f11e62778e077e258316340372cbaad6523ef))
|
|
1204
|
+
* feedback fixes pt2 ([8ccb036](https://github.com/roomle-dev/roomle-ui/commit/8ccb0363fd945c9fc1b0e57466af7d58c816eb09))
|
|
1205
|
+
* feedback fixes pt3++ ([5b7df35](https://github.com/roomle-dev/roomle-ui/commit/5b7df35c2cb09b1beef57a0ec02414f263279f15))
|
|
1206
|
+
* filter duplicate grid elements with same key ([de5b28e](https://github.com/roomle-dev/roomle-ui/commit/de5b28e5624bda8d6d43df077d2717b6dcf6c7fd))
|
|
1207
|
+
* finalize ([c4b4cce](https://github.com/roomle-dev/roomle-ui/commit/c4b4cced87dc6e85dc4eb18fb399cb0fc7373bc7))
|
|
1208
|
+
* finalize debugging commands ([9af41ac](https://github.com/roomle-dev/roomle-ui/commit/9af41ac704a960346489ec6c22501a686f6e9d1a))
|
|
1209
|
+
* finalize fragment support ([2bfa27f](https://github.com/roomle-dev/roomle-ui/commit/2bfa27f127df12f5297ee4b85d931631630ecf01))
|
|
1210
|
+
* findFreeSpaceInPlan ([0206c0a](https://github.com/roomle-dev/roomle-ui/commit/0206c0ab2eabedd15ad3b2d5995ed7ce916bc979))
|
|
1211
|
+
* finish loading after loading static item ([476a307](https://github.com/roomle-dev/roomle-ui/commit/476a3071b181292a5e306cf5ab784e47d1b50f66))
|
|
1212
|
+
* first label is now displayed correctly in safari, rsolves: RML-434 ([7f3a64e](https://github.com/roomle-dev/roomle-ui/commit/7f3a64e6131c6a4d93aac02bf017dcef6de068e2))
|
|
1213
|
+
* **AR:** fix Android appless AR ([eeeda1b](https://github.com/roomle-dev/roomle-ui/commit/eeeda1bc8f0b63a72e893393742bb40259b2b059))
|
|
1214
|
+
* **test:** fix broken test so it works also without requestIdleCallback polyfill ([ac714fb](https://github.com/roomle-dev/roomle-ui/commit/ac714fbd11d7ad97873b9c61bb2a94b0d484f74c))
|
|
1215
|
+
* fix broken tests and do some clean up ([b974284](https://github.com/roomle-dev/roomle-ui/commit/b974284722620e107cee15d080ab0e35647a99cf))
|
|
1216
|
+
* fix design issue of action button and refactor css to component intern ([63f5555](https://github.com/roomle-dev/roomle-ui/commit/63f555518de306b77002f1f890162035dd7bbe58))
|
|
1217
|
+
* fix docs ([d342dae](https://github.com/roomle-dev/roomle-ui/commit/d342daeceeaf7b532c90b481dbfd09617102f00b))
|
|
1218
|
+
* fix eslint errors ([2414844](https://github.com/roomle-dev/roomle-ui/commit/24148447bc756a5bddbc56fe9f559e868002e6c6))
|
|
1219
|
+
* fix exposed api after multi object refactor ([eeb58f9](https://github.com/roomle-dev/roomle-ui/commit/eeb58f95eca7716f9b255f7f962a481c35e24871))
|
|
1220
|
+
* Fix failing RoomGeneralSettings.spec.ts test ([54a0ed2](https://github.com/roomle-dev/roomle-ui/commit/54a0ed2d088405015aa7121a99e4fdd082db51d8))
|
|
1221
|
+
* fix failing tests ([d6cfa77](https://github.com/roomle-dev/roomle-ui/commit/d6cfa7731ed52ab2793be0c4e5351042beb9647b))
|
|
1222
|
+
* **save-draft:** fix mobile design for save draft overlay ([7eff344](https://github.com/roomle-dev/roomle-ui/commit/7eff344f9a1f8978044aff1cb003c32a1921719e))
|
|
1223
|
+
* fix multi object configurator selection ([3921140](https://github.com/roomle-dev/roomle-ui/commit/39211404c3e426c3b6376418e0385cc73b145448))
|
|
1224
|
+
* fix TS error ([29a9420](https://github.com/roomle-dev/roomle-ui/commit/29a94206f359fd8c964db111f50e630a6a28595d))
|
|
1225
|
+
* fixes, tests ([ca3a956](https://github.com/roomle-dev/roomle-ui/commit/ca3a9562d6c1cb5a1142a419cf3b6e44f4f10698))
|
|
1226
|
+
* Flip icon is shown in SOC ([7156d39](https://github.com/roomle-dev/roomle-ui/commit/7156d3946f02c1e33c56dd4b6e2557394fd64157))
|
|
1227
|
+
* flip some flags, super crazy stuff probably I broke everything... ([ea9b110](https://github.com/roomle-dev/roomle-ui/commit/ea9b1104ebada958cb84cb0b4837525a49107e7e))
|
|
1228
|
+
* FloorColor.spec.ts ([eac4c64](https://github.com/roomle-dev/roomle-ui/commit/eac4c648cc80910872892494aa5ef03331aca5bc))
|
|
1229
|
+
* Flying menu should not include merge icons for construction elements ([593dcd7](https://github.com/roomle-dev/roomle-ui/commit/593dcd70a8f02db25e3e9025e1cc1f54aa1e72ad))
|
|
1230
|
+
* For windows that are static items the parapet height is behaving strangely ([d5e0270](https://github.com/roomle-dev/roomle-ui/commit/d5e02700fa9b2882287ed740b5091066af091e21))
|
|
1231
|
+
* force position above bottom menu on mobile ([668a98a](https://github.com/roomle-dev/roomle-ui/commit/668a98a18c799f9d9e3d5bf9e49799f3201f8834))
|
|
1232
|
+
* format length value to length with unit string in ui so it gets called on unit change ([c2ec290](https://github.com/roomle-dev/roomle-ui/commit/c2ec290cd20e847a934b0726944ceb2a0ec7897a))
|
|
1233
|
+
* fragment render function - omg it almost works ([1e904b9](https://github.com/roomle-dev/roomle-ui/commit/1e904b9cfbdfd6ef14e24109dae325176b9c17ba))
|
|
1234
|
+
* from feedback ([42090ce](https://github.com/roomle-dev/roomle-ui/commit/42090cea1123dc6bf01aff402b6811c6b72a78ac))
|
|
1235
|
+
* fullscreen open and close button ([2000cf7](https://github.com/roomle-dev/roomle-ui/commit/2000cf7566662598cdde0f16e78dbb57762a3a33))
|
|
1236
|
+
* FullscreenContainer.spec ([538e019](https://github.com/roomle-dev/roomle-ui/commit/538e019a2e9039656d61e04e03efd723a96b8d90))
|
|
1237
|
+
* function invocation missing ([a7cfb98](https://github.com/roomle-dev/roomle-ui/commit/a7cfb9811854656cd97ca776812d52f2ef421a87))
|
|
1238
|
+
* function not defined error ([535d3b8](https://github.com/roomle-dev/roomle-ui/commit/535d3b8d5e095bfd05b8e315d4a7d4f8b9ea6cf2))
|
|
1239
|
+
* GdprEmailInput.spec.ts ([f7b1c42](https://github.com/roomle-dev/roomle-ui/commit/f7b1c42c9768f8010383ed1484e6ba06f659b769))
|
|
1240
|
+
* generic error and popups not displaying ([1b199b7](https://github.com/roomle-dev/roomle-ui/commit/1b199b74554a0f8f4d7b94ffd4fd9205c7826070))
|
|
1241
|
+
* get 2d angle ([09fc223](https://github.com/roomle-dev/roomle-ui/commit/09fc22312a4ea3787612b6fb4af5983ca4f2c7d3))
|
|
1242
|
+
* get angles working in 2d ([b836e1c](https://github.com/roomle-dev/roomle-ui/commit/b836e1c3e51e28de89312199d1759f6a93759b81))
|
|
1243
|
+
* get current selection for currencySymbol ([43e87ac](https://github.com/roomle-dev/roomle-ui/commit/43e87ac0a7a5bdb0d5830e8de74a60e3d5468669))
|
|
1244
|
+
* get floor color selection semi working ([80d2160](https://github.com/roomle-dev/roomle-ui/commit/80d21601f56143324279f9abeabcde512e4ad30f))
|
|
1245
|
+
* get null as object when wall added, removed or changed ([92d700c](https://github.com/roomle-dev/roomle-ui/commit/92d700c9d67893da1f59e3260265d2ef52358845))
|
|
1246
|
+
* get sdkconnector in separate await in onMount ([be773c5](https://github.com/roomle-dev/roomle-ui/commit/be773c5fbea67372aaba6b8e5bafeb2d4f1d0ccf))
|
|
1247
|
+
* get the sdk to render properly, interactions, etc ([d067519](https://github.com/roomle-dev/roomle-ui/commit/d0675195f118087b7da0a481aaffa68fd3fc9ba7))
|
|
1248
|
+
* getprice-setup return total price of all parts if no parts are sent ([f135b7b](https://github.com/roomle-dev/roomle-ui/commit/f135b7bb2f372586898af53136d17684bad2f558))
|
|
1249
|
+
* GLBViewer: AR icon is broken on mobile ([e896253](https://github.com/roomle-dev/roomle-ui/commit/e896253891ab3695ddccbf76fb1e044b53b657c1))
|
|
1250
|
+
* glitch ([19e5881](https://github.com/roomle-dev/roomle-ui/commit/19e58815c3c205fbed632876697d6f7b6d9f2b86))
|
|
1251
|
+
* global store types, upgrade vue-tsc, get the app building successfully ([2aa66f3](https://github.com/roomle-dev/roomle-ui/commit/2aa66f32ac2e11abe6ad4b999d8fdfc41cdde5e1))
|
|
1252
|
+
* global typings ([1431569](https://github.com/roomle-dev/roomle-ui/commit/14315699ad5b91b6076fc36768ff6c28a83f27c3))
|
|
1253
|
+
* gradient height, show on scroll only ([adc3b58](https://github.com/roomle-dev/roomle-ui/commit/adc3b58933c1a8bffbf065e068418aea358178b0))
|
|
1254
|
+
* GridView.spec ([a9222d9](https://github.com/roomle-dev/roomle-ui/commit/a9222d9108c599951f43af449bacd451825e1872))
|
|
1255
|
+
* gridView.vue proptype ([10a277e](https://github.com/roomle-dev/roomle-ui/commit/10a277ebe8f15e70826870bda908b72a2b6be096))
|
|
1256
|
+
* GridView.vue type mismatch ([22cf0a6](https://github.com/roomle-dev/roomle-ui/commit/22cf0a68aad2004629f219daa54cfe7669723d12))
|
|
1257
|
+
* GridViewElement.spec.ts ([139e035](https://github.com/roomle-dev/roomle-ui/commit/139e0353c00c4ddcc34f0bf9a97a781a9d852f79))
|
|
1258
|
+
* GridViewMaterialElement.spec.ts ([2fc1c60](https://github.com/roomle-dev/roomle-ui/commit/2fc1c6036b84b5342c8dbee7057ab97865bf1230))
|
|
1259
|
+
* GridViewMaterialElement.spec.ts ([7c142ae](https://github.com/roomle-dev/roomle-ui/commit/7c142ae345d548d8730bee5d962b30b02456e6ff))
|
|
1260
|
+
* Group label of materials are missing ([d99727a](https://github.com/roomle-dev/roomle-ui/commit/d99727ab3d3bb58bb50a3ade8eb6cda4dc3e4a75))
|
|
1261
|
+
* hand over correct method to child components ([d98038d](https://github.com/roomle-dev/roomle-ui/commit/d98038d14fe2381023167d230673f82a635dcd25))
|
|
1262
|
+
* handle case where last visible parameter label is bigger than screensize this resolves RML-1399 ([d89c952](https://github.com/roomle-dev/roomle-ui/commit/d89c952b463192bea4477681f589d2e724ba1216))
|
|
1263
|
+
* handle genImageUrl exception ([4aa223a](https://github.com/roomle-dev/roomle-ui/commit/4aa223a36acef40490fbdd70b867d183c6eddcda))
|
|
1264
|
+
* Header not sticky ([057326a](https://github.com/roomle-dev/roomle-ui/commit/057326ae7689a87010bf606409f18931a2c635f7))
|
|
1265
|
+
* HeightToggle.spec.ts ([314f731](https://github.com/roomle-dev/roomle-ui/commit/314f731112ec41e7d4425899ac04aeea1850d9ae))
|
|
1266
|
+
* helpcenter default to true ([832e19e](https://github.com/roomle-dev/roomle-ui/commit/832e19e4832a6809bd6069437debec5e757a9f49))
|
|
1267
|
+
* hide archived items in MOC ([fd8a57b](https://github.com/roomle-dev/roomle-ui/commit/fd8a57ba849fd2acc706669ebebb17ca5319cfd0))
|
|
1268
|
+
* hide behind feature flag ([fa3fac1](https://github.com/roomle-dev/roomle-ui/commit/fa3fac1ecb100d09f300cda9ea3ba71ece29c4f8))
|
|
1269
|
+
* hide bottombuttons in fp mode ([01d2b04](https://github.com/roomle-dev/roomle-ui/commit/01d2b04a13c1c36bcc751f3420dee21aac543a23))
|
|
1270
|
+
* hide bottomButtons when flying menu is shown on mobile ([9b46bc8](https://github.com/roomle-dev/roomle-ui/commit/9b46bc8da404abadc91d83952fbac71e086a3ce6))
|
|
1271
|
+
* hide cart count if there is no purchasable items in the scene ([6afa4fa](https://github.com/roomle-dev/roomle-ui/commit/6afa4fa70bb02796a3846878271c6434560fe699))
|
|
1272
|
+
* hide delete button ([e3aed15](https://github.com/roomle-dev/roomle-ui/commit/e3aed15aad286d7ab151343e270f4b1017685a74))
|
|
1273
|
+
* hide expanded view label when element has only 1 child ([d28b03f](https://github.com/roomle-dev/roomle-ui/commit/d28b03f88178999142ad2b46d32f64fdb09ca5c9))
|
|
1274
|
+
* hide flip icon for multiSelect ([7e2164b](https://github.com/roomle-dev/roomle-ui/commit/7e2164ba78d1ed39eb5cdad14e64281bcafcf869))
|
|
1275
|
+
* hide flying menu on camera move ([234d282](https://github.com/roomle-dev/roomle-ui/commit/234d28284af6a91d3fdf8dc7dd29bc2370a683d6))
|
|
1276
|
+
* hide flying menu on camera move in configurator ([60a0a5b](https://github.com/roomle-dev/roomle-ui/commit/60a0a5bbef26e9a3913ce03718e075ff691153a2))
|
|
1277
|
+
* hide flying menu on startConfiguring ([933f88c](https://github.com/roomle-dev/roomle-ui/commit/933f88c97862d01b77477d6f289a102b015cf1a8))
|
|
1278
|
+
* hide flying menu when changing the product positions and rotations ([9401045](https://github.com/roomle-dev/roomle-ui/commit/94010451fa5ef3fb9f7eb407aa9ff6e182262a47))
|
|
1279
|
+
* hide interaction close when there is showBack button visible ([ce798ff](https://github.com/roomle-dev/roomle-ui/commit/ce798ff18d1c28406db6240e9c4f844d606afa9b))
|
|
1280
|
+
* hide measurements when switching between configurator to planner ([3c9335b](https://github.com/roomle-dev/roomle-ui/commit/3c9335badfabdef116d79fa01bda9da3333e3355))
|
|
1281
|
+
* hide menu while dragging ([9fbfd8c](https://github.com/roomle-dev/roomle-ui/commit/9fbfd8c1796761c8b61a39f4def88e444126ff41))
|
|
1282
|
+
* hide NaN value as a valid price ([bc918e4](https://github.com/roomle-dev/roomle-ui/commit/bc918e45172e2beed90ea9fac418277835b63c4b))
|
|
1283
|
+
* hide next group button when detail view is expanded ([a61b2c5](https://github.com/roomle-dev/roomle-ui/commit/a61b2c500ceb0d887e1a1286fdee88e42056919c))
|
|
1284
|
+
* hide parameters on planner for e2e test ([d47a0d3](https://github.com/roomle-dev/roomle-ui/commit/d47a0d374977ef838d9d11baf08897f56aadf4f6))
|
|
1285
|
+
* hide rotation button for construction elements ([d01f0b8](https://github.com/roomle-dev/roomle-ui/commit/d01f0b85f7fd544cb0d419b26f0f33e79dc24479))
|
|
1286
|
+
* hide second level sidebar after closing sidebar ([5f90bd8](https://github.com/roomle-dev/roomle-ui/commit/5f90bd8ac0a51f440e5159f4327a7424f13930e8))
|
|
1287
|
+
* hide show sidebar on configurator ([48ac342](https://github.com/roomle-dev/roomle-ui/commit/48ac342be6d64fb2e125926d6010f3581333ab22))
|
|
1288
|
+
* hide sidebar on init with fp mode, add test ([7f16c57](https://github.com/roomle-dev/roomle-ui/commit/7f16c57cdee3b2454797e09272cbc603bea93273))
|
|
1289
|
+
* hide some productSettings sections during multi-select ([1f8186e](https://github.com/roomle-dev/roomle-ui/commit/1f8186e4dc807b49c9767580608a9ecf6913b52d))
|
|
1290
|
+
* hide stopConfiguring tooltip if there is a notification visible ([86e03f1](https://github.com/roomle-dev/roomle-ui/commit/86e03f1d5969ffb287949d77c74357e080f6abd6))
|
|
1291
|
+
* hide the cart overlay in SOC only ([1b85273](https://github.com/roomle-dev/roomle-ui/commit/1b852737b6dbf76e6d068cb7567d0cb5e63dfb93))
|
|
1292
|
+
* hide the menu onZoomComponentStart ([2eb6c67](https://github.com/roomle-dev/roomle-ui/commit/2eb6c673ee4b7b17b91c3ae6b1071ef94f7e997c))
|
|
1293
|
+
* hide wall dimensions when resetting camera ([767c400](https://github.com/roomle-dev/roomle-ui/commit/767c4003dfcc3588705831a1ed6eba0eb90b893a))
|
|
1294
|
+
* hooks go at the bottom ([48955e5](https://github.com/roomle-dev/roomle-ui/commit/48955e55517eab4134fe16746c0feec53fbd0743))
|
|
1295
|
+
* HTMLElement typecast on queryselector ([86eb0b8](https://github.com/roomle-dev/roomle-ui/commit/86eb0b81259f3f0763daf951a6b5d253a8c2182b))
|
|
1296
|
+
* icon padding on stopCOnfiguring button ([755263a](https://github.com/roomle-dev/roomle-ui/commit/755263a47df6056e8c9ca67934325de4f60bad4b))
|
|
1297
|
+
* icon size? ([b5348f3](https://github.com/roomle-dev/roomle-ui/commit/b5348f32bae1a0b8991485173a19a7463aa80029))
|
|
1298
|
+
* IconButton.spec.ts ([7653e63](https://github.com/roomle-dev/roomle-ui/commit/7653e63e38184ab43a30ec73434392915ca5c6c5))
|
|
1299
|
+
* if click catalog trigger, other buttons should not be active anymore ([a499cd2](https://github.com/roomle-dev/roomle-ui/commit/a499cd299429ffc204733619d629d7e7ee20b49b))
|
|
1300
|
+
* if expand catalog, it should not clear add rooms ([21eb4b0](https://github.com/roomle-dev/roomle-ui/commit/21eb4b0cef76472d5fcac3873729340c2c5e8400))
|
|
1301
|
+
* if not desktop fullscreen mode should be disabled but interaction menu expand on toggle ([4487fbe](https://github.com/roomle-dev/roomle-ui/commit/4487fbe9534bbcfd6d9de3ebfc612a2976024d10))
|
|
1302
|
+
* if the number is over 360, yes ([ef064ae](https://github.com/roomle-dev/roomle-ui/commit/ef064ae2e2d6f85d75bcc01cf679f5df24416311))
|
|
1303
|
+
* if there is a label for booleans use them ([63c1523](https://github.com/roomle-dev/roomle-ui/commit/63c15238d8cd69fd6138cd8c0c8d7de4ad1ea6fd))
|
|
1304
|
+
* if trigger toggle product list and part list should be closed ([711e357](https://github.com/roomle-dev/roomle-ui/commit/711e357c2db2175b2dcccdb3c5053ff648dfcfc8))
|
|
1305
|
+
* ignore null elements in toGridViewElements ([fb41288](https://github.com/roomle-dev/roomle-ui/commit/fb41288666ff33b338f87273290988d03651b442))
|
|
1306
|
+
* ImageWithFallback.spec. ([890066b](https://github.com/roomle-dev/roomle-ui/commit/890066b8fe20eb24078447b83c6a4fb7c726575c))
|
|
1307
|
+
* ImageWithFallback.spec.ts ([4a33e1a](https://github.com/roomle-dev/roomle-ui/commit/4a33e1ae7b7c41dda6aad47f57d246f4a4f1cda1))
|
|
1308
|
+
* implement correct mobile design of room icons ([f2b8f57](https://github.com/roomle-dev/roomle-ui/commit/f2b8f577029439b5c4d5064389c40dab90b955c6))
|
|
1309
|
+
* implement correct WallExtensionType ([397da6d](https://github.com/roomle-dev/roomle-ui/commit/397da6d7be49d9d0672f3c8d15d2f9a6579c6701))
|
|
1310
|
+
* implement feedback ([002ddc9](https://github.com/roomle-dev/roomle-ui/commit/002ddc92a000fc563f2cf3cd34bc89752c28146d))
|
|
1311
|
+
* implement solution ([36322e8](https://github.com/roomle-dev/roomle-ui/commit/36322e80b751605a702796269f1b207a43f6e836))
|
|
1312
|
+
* import package json version directly ([44c8f94](https://github.com/roomle-dev/roomle-ui/commit/44c8f94bcadaa0d0443b8b738602fa4c4fff7909))
|
|
1313
|
+
* import SampleRooms component so it can be used in template ([e01a62c](https://github.com/roomle-dev/roomle-ui/commit/e01a62c24db204422b6e905f26733b29fa5c751c))
|
|
1314
|
+
* improve action button state ([1010774](https://github.com/roomle-dev/roomle-ui/commit/1010774ee29a08f1d4669c7e7ba139e8ecb14e9c))
|
|
1315
|
+
* include version to planXML ([aa39d7d](https://github.com/roomle-dev/roomle-ui/commit/aa39d7ddf7d7f0773d4be5f7af95d8c1e5dafc17))
|
|
1316
|
+
* incorrect function should also check if value is undefined or null ([b06386d](https://github.com/roomle-dev/roomle-ui/commit/b06386df3b714703a95599d2171c8e7888dceed5))
|
|
1317
|
+
* incorrect icons ([a530d65](https://github.com/roomle-dev/roomle-ui/commit/a530d65da0393eccb01e18696ada619c5168a781))
|
|
1318
|
+
* incorrect initData buttons check on toolbar for 2d view ([3ce08fe](https://github.com/roomle-dev/roomle-ui/commit/3ce08fe572a029e818cd74cc8c1742839408a421))
|
|
1319
|
+
* incorrect isConfiguratorOnly function and failing tests ([33e44a0](https://github.com/roomle-dev/roomle-ui/commit/33e44a0c0300e12c96d1d2acef3e532d74f8ceb6))
|
|
1320
|
+
* incorrect loco translation ([ad0c303](https://github.com/roomle-dev/roomle-ui/commit/ad0c303331364014c87ad4426564214727a35e7f))
|
|
1321
|
+
* individualize planner in selection preview ([9222b6e](https://github.com/roomle-dev/roomle-ui/commit/9222b6ebe5fac4c5c38b3242a34667ae0cb94276))
|
|
1322
|
+
* Information tooltip mobile not highlighted red ([67cb29f](https://github.com/roomle-dev/roomle-ui/commit/67cb29fa9dfe71874254933c224639f407c3ad88))
|
|
1323
|
+
* init the configurator alongside planner ([3f6231a](https://github.com/roomle-dev/roomle-ui/commit/3f6231a06f26b030711145da4d7e8c089e1f9c64))
|
|
1324
|
+
* init view mode state is wrong ([f81b2cc](https://github.com/roomle-dev/roomle-ui/commit/f81b2ccdff0a2df9429b5b6eef4e41c614d8d27a))
|
|
1325
|
+
* **planner:** init with product list by default ([6fb42ed](https://github.com/roomle-dev/roomle-ui/commit/6fb42ed5ffb2a65cf3b282d84ac832a707c091ce))
|
|
1326
|
+
* initData accessor types ([5dab6fc](https://github.com/roomle-dev/roomle-ui/commit/5dab6fcace6bead31031b50b6ca2776d52b4f2b0))
|
|
1327
|
+
* initial room mode should start in the second level drawer ([4c7f116](https://github.com/roomle-dev/roomle-ui/commit/4c7f1160e32546c5a113d4e88899685594d2552e))
|
|
1328
|
+
* interaction container exposes eventBus ([d2e1a7b](https://github.com/roomle-dev/roomle-ui/commit/d2e1a7ba77074a63fe2a6e8238665d8cba08c57f))
|
|
1329
|
+
* interaction sidebar issues in the static item viewer ([dae66be](https://github.com/roomle-dev/roomle-ui/commit/dae66be67efa321bf887bdbaead851e8229bf21e))
|
|
1330
|
+
* InteractionContainer.spec.ts ([a1931f0](https://github.com/roomle-dev/roomle-ui/commit/a1931f06fdaef2cec8635b0afb2c937e5d486043))
|
|
1331
|
+
* InteractionHeader.spec ([c980051](https://github.com/roomle-dev/roomle-ui/commit/c98005190f946c7cec0ea11c1064e1db2eefd708))
|
|
1332
|
+
* interesting template issue ([521f333](https://github.com/roomle-dev/roomle-ui/commit/521f333f4c178363b36b1b582ae6568965707604))
|
|
1333
|
+
* intermediate fix for typescript problems ([a7c0e02](https://github.com/roomle-dev/roomle-ui/commit/a7c0e02e710e338a02209d3479e6869223369f67))
|
|
1334
|
+
* introduce check for switch mode ([0ab276f](https://github.com/roomle-dev/roomle-ui/commit/0ab276f1be80a1a8be84d9d1c0ee7a63f7ee8738))
|
|
1335
|
+
* introduce start/end interaction on rotate ([f2923e2](https://github.com/roomle-dev/roomle-ui/commit/f2923e2a907fd97229214abb6d4478bc4b4e8370))
|
|
1336
|
+
* ismobile check ([d6aa20b](https://github.com/roomle-dev/roomle-ui/commit/d6aa20b68a92c45030df5b001d2eef3a470c4db4))
|
|
1337
|
+
* Issue with position input fields while using different units other than cm ([18cad47](https://github.com/roomle-dev/roomle-ui/commit/18cad47c0bb632d849bb592c902cf7c6ca0f6e4b))
|
|
1338
|
+
* it's possible to select the current parameter group again ([53351c6](https://github.com/roomle-dev/roomle-ui/commit/53351c635008e5dba523abace21b58901e45b033))
|
|
1339
|
+
* just check for ios instead of landscape orientation ([e87d77b](https://github.com/roomle-dev/roomle-ui/commit/e87d77b3603a3118a77195fa65734f8372e82b90))
|
|
1340
|
+
* keep icons from jumping around when moving camerfa ([59f81dd](https://github.com/roomle-dev/roomle-ui/commit/59f81ddbf4b562ea4490840c9afc1d432fa0e132))
|
|
1341
|
+
* keep parameter group selected when selecting component ([f36457d](https://github.com/roomle-dev/roomle-ui/commit/f36457dc14c441b589390775b1bfd86223fc85d0))
|
|
1342
|
+
* keep plan id until we detect changes ([6e7d332](https://github.com/roomle-dev/roomle-ui/commit/6e7d33295662ddca364dfbf49927d9c67ea17777))
|
|
1343
|
+
* keeping track of state in vuex ([3b6cdaa](https://github.com/roomle-dev/roomle-ui/commit/3b6cdaaaade5fc3014cfd81357ec39f5629d844c))
|
|
1344
|
+
* Label "object Object" is shown on print for partlist ([c8ee282](https://github.com/roomle-dev/roomle-ui/commit/c8ee282ac4aab76ebfe1adda5858e89d6abdba96))
|
|
1345
|
+
* label issue ([eead7ab](https://github.com/roomle-dev/roomle-ui/commit/eead7ab5f58dda670c51785e0278385891ae6a0d))
|
|
1346
|
+
* lets gooooo it works ([e7852e2](https://github.com/roomle-dev/roomle-ui/commit/e7852e2dff017bea77bff5ed9421af4f14a8dc8f))
|
|
1347
|
+
* lint, update depdancies ([8c29ad6](https://github.com/roomle-dev/roomle-ui/commit/8c29ad671a2afa8c7912596f30233b4a55cfd5ed))
|
|
1348
|
+
* make bottom bar clickable ([e905778](https://github.com/roomle-dev/roomle-ui/commit/e905778827a3a4447e902ab4e9f91c7d599c6e50))
|
|
1349
|
+
* make buttons.requestproduct override-able again ([edc5aec](https://github.com/roomle-dev/roomle-ui/commit/edc5aec087f499f935a66720424e76bfbab12fae))
|
|
1350
|
+
* make close button on no docking overlay clickable ([4fca32b](https://github.com/roomle-dev/roomle-ui/commit/4fca32bd2ac0ff5f193df6800103345a916feb30))
|
|
1351
|
+
* make collapsed button red or black ([f4bee0f](https://github.com/roomle-dev/roomle-ui/commit/f4bee0f9c88d6c827efd94f10ddfa6098b1a7522))
|
|
1352
|
+
* make drawer open when we have extCatalog ([9e7eda1](https://github.com/roomle-dev/roomle-ui/commit/9e7eda1beffb83804f2c8b0509fdec0629c1995d))
|
|
1353
|
+
* make environment optional to fix missing prop warning ([f606b0f](https://github.com/roomle-dev/roomle-ui/commit/f606b0f371c0fdc1cec0c07faacf51cf1e2bd5e4))
|
|
1354
|
+
* make examples work on gitlab.com as well ([429a7d8](https://github.com/roomle-dev/roomle-ui/commit/429a7d80de16b9831a7972219ddeca3cffbec045))
|
|
1355
|
+
* make fp icon bigger in mobile dropdown when selected ([f673234](https://github.com/roomle-dev/roomle-ui/commit/f6732340cc37f859aced820668aa5d98f0def68d))
|
|
1356
|
+
* make generic error pop unclickable ([5b9fb6e](https://github.com/roomle-dev/roomle-ui/commit/5b9fb6e3b08446c242d12c869ee301ee314dd5f6))
|
|
1357
|
+
* make getter side effect free ([f25f804](https://github.com/roomle-dev/roomle-ui/commit/f25f804e7724ea0e3d55c8992c20faac204f2816))
|
|
1358
|
+
* make it more clear ([54194e1](https://github.com/roomle-dev/roomle-ui/commit/54194e191ac94ad38a3ee9cd3712040b6abfd6e7))
|
|
1359
|
+
* make load_product button visible by default ([f8beb24](https://github.com/roomle-dev/roomle-ui/commit/f8beb24a702c64e9493908699199aa9baa8735ea))
|
|
1360
|
+
* make order network independent ([21bbd42](https://github.com/roomle-dev/roomle-ui/commit/21bbd42cd6633214fb2609cfa5a32969dbda73fe))
|
|
1361
|
+
* make parameters visible in planner work again ([67a1407](https://github.com/roomle-dev/roomle-ui/commit/67a14077320075b23eb463f55ebca0d72879f183))
|
|
1362
|
+
* make separate top-left-bar, move topbar styles to be sharable ([5c5bad1](https://github.com/roomle-dev/roomle-ui/commit/5c5bad199310cc76a19d5d8bafc36a80b0b72ceb))
|
|
1363
|
+
* make some tests pass 🎉 ([fc67734](https://github.com/roomle-dev/roomle-ui/commit/fc6773440dd1db6a5057b525aa44f2f3e439aecd))
|
|
1364
|
+
* make sure flying menu doesn't obscure the bottom bar on desktop ([e31ce43](https://github.com/roomle-dev/roomle-ui/commit/e31ce436dd2143dcd2259c0c3e42c1f5ceb3e555))
|
|
1365
|
+
* make sure the tooltip stays closed after closing it ([24b74f9](https://github.com/roomle-dev/roomle-ui/commit/24b74f9cb08997aa1a05488e04af09162b215e2c))
|
|
1366
|
+
* make test pass ([8da0074](https://github.com/roomle-dev/roomle-ui/commit/8da0074717b7fcd424f8b8fc8dedfd04af87a89b))
|
|
1367
|
+
* make tests happy ([b955475](https://github.com/roomle-dev/roomle-ui/commit/b9554757e9c9ebde5b37c43a1b742d83884cc48e))
|
|
1368
|
+
* make tests pass again ([916f3ce](https://github.com/roomle-dev/roomle-ui/commit/916f3ceaf3fd743fcbb7bf9061d7a509fdbd190a))
|
|
1369
|
+
* make VSCode happy ([85d3b7d](https://github.com/roomle-dev/roomle-ui/commit/85d3b7d2cc71f3f7552976c2865011b8374e2694))
|
|
1370
|
+
* make vue-tsc and volar happy 🥳 ([9fc8846](https://github.com/roomle-dev/roomle-ui/commit/9fc8846b5e1cc985d8acef9f347857ac5d53bd77))
|
|
1371
|
+
* make wall spec work ([2b522fc](https://github.com/roomle-dev/roomle-ui/commit/2b522fce7252a84c4f3d1824fcf043d4d5ebfb77))
|
|
1372
|
+
* make wider ([7cb9a8d](https://github.com/roomle-dev/roomle-ui/commit/7cb9a8db27d6a6493e9abc78d4f3d6709ba0ecfd))
|
|
1373
|
+
* margins ([9ceae1e](https://github.com/roomle-dev/roomle-ui/commit/9ceae1e25a8d3355bfd1c24773a7f11a167839ff))
|
|
1374
|
+
* MaterialParameter.spec.ts ([8deac96](https://github.com/roomle-dev/roomle-ui/commit/8deac96d4184cd3bc40de99feee4a4cdf49205de))
|
|
1375
|
+
* menu position, no margins when shown in sidebar ([e2369f9](https://github.com/roomle-dev/roomle-ui/commit/e2369f9d470de7cb5842e2d37d5ed536698feba1))
|
|
1376
|
+
* merge conflicts ([0eb02f7](https://github.com/roomle-dev/roomle-ui/commit/0eb02f73df95f14270b302294a0ea76b116af94f))
|
|
1377
|
+
* merge issues ([08c0a6b](https://github.com/roomle-dev/roomle-ui/commit/08c0a6bb0e99c334dc47e0b966065f225ab27da0))
|
|
1378
|
+
* merge master ([c646335](https://github.com/roomle-dev/roomle-ui/commit/c646335a814bfce0c7d532e4d000c7f5e9ba5f82))
|
|
1379
|
+
* merge master ([2f4c7cb](https://github.com/roomle-dev/roomle-ui/commit/2f4c7cbeafb6da824117c7b4bad64df7da8fcb8c))
|
|
1380
|
+
* merge master ([db8a6d5](https://github.com/roomle-dev/roomle-ui/commit/db8a6d5fb14f51052036e366727314b2d3d5a96c))
|
|
1381
|
+
* merge master ([e4f0e64](https://github.com/roomle-dev/roomle-ui/commit/e4f0e649aab687ef56e25dbc64956e16b13219e7))
|
|
1382
|
+
* merge translations into default language ([4643a24](https://github.com/roomle-dev/roomle-ui/commit/4643a2455ef451c1b75b196321acd2bcff5c3c13))
|
|
1383
|
+
* minor design glitches ([527a1d3](https://github.com/roomle-dev/roomle-ui/commit/527a1d388461a4878ec89bcb88caedfe1ea3bcbd))
|
|
1384
|
+
* minor fix for wallGeneralSettings ([a1d923d](https://github.com/roomle-dev/roomle-ui/commit/a1d923d7258e0029d9a280d0d7143772e46cde89))
|
|
1385
|
+
* minor glitches ([6ad4ce3](https://github.com/roomle-dev/roomle-ui/commit/6ad4ce3784350d0dda3eedb6f44c95399bd3ed9c))
|
|
1386
|
+
* minor* ([7ba583a](https://github.com/roomle-dev/roomle-ui/commit/7ba583a643ca14d60934599ff779bee5a4ca46a7))
|
|
1387
|
+
* minor* ([968febb](https://github.com/roomle-dev/roomle-ui/commit/968febb32087b9420008f1127d879d26b4a3b347))
|
|
1388
|
+
* misc ([e1ba788](https://github.com/roomle-dev/roomle-ui/commit/e1ba7889ff0ef5087277e1e7203f9a350f9f3c35))
|
|
1389
|
+
* missing ([bfdb909](https://github.com/roomle-dev/roomle-ui/commit/bfdb90974b937c4668532b8dfdd85d2a9f21c1bc))
|
|
1390
|
+
* mobile behavior on tooltips ([517635a](https://github.com/roomle-dev/roomle-ui/commit/517635adc88d103708958c004c5bacab4647bcd7))
|
|
1391
|
+
* mobile click and hide behavior ([3c6a56a](https://github.com/roomle-dev/roomle-ui/commit/3c6a56a84fd0a2933f1da85d5cbd3f2605c2e77c))
|
|
1392
|
+
* mobile show all ([ccdff52](https://github.com/roomle-dev/roomle-ui/commit/ccdff52e88ea24a01e04fcb7f80ab49859188cc4))
|
|
1393
|
+
* mobile stopconfiguringbutton width ([00787eb](https://github.com/roomle-dev/roomle-ui/commit/00787eb2a9f26169080e6810831b67e6d502983b))
|
|
1394
|
+
* moc case ([fd98e4f](https://github.com/roomle-dev/roomle-ui/commit/fd98e4f666192b266d9e11679cac2d66ec44ee66))
|
|
1395
|
+
* MOC Catalog: header is see through ([da37bbc](https://github.com/roomle-dev/roomle-ui/commit/da37bbca84b8d081f0d37300aabea8b50bb218da))
|
|
1396
|
+
* MoC mobile Shadow of popup still there on iphone ([96266c8](https://github.com/roomle-dev/roomle-ui/commit/96266c8666c8cd58e1014caf918a566cd71bd2cf))
|
|
1397
|
+
* MOC partlist print ([6a9dcde](https://github.com/roomle-dev/roomle-ui/commit/6a9dcde11f1f972d63174729460aa293333ffb39))
|
|
1398
|
+
* MOC, the Ceiling Height and Room Height labels are wrong ([06ff8b8](https://github.com/roomle-dev/roomle-ui/commit/06ff8b81a1cabeaa0a8ebcc9b4eb5e7a7b0e4260))
|
|
1399
|
+
* MOC: can't draw on mobile when i load the MOC with a plan id ([4fc0392](https://github.com/roomle-dev/roomle-ui/commit/4fc039235a65af745e0a423467ab44f11cb52317))
|
|
1400
|
+
* MOC: close wall sidebar should probably deselect wall ([b5f3868](https://github.com/roomle-dev/roomle-ui/commit/b5f3868f2860e4862dc78c73c293f7bd4e2d0ab0))
|
|
1401
|
+
* MOC: draw hint overlaps with navigation ([2063f6c](https://github.com/roomle-dev/roomle-ui/commit/2063f6c6f7d601b1da956c24ac221c38eddc11ea))
|
|
1402
|
+
* MOC: embedding icon is wrong ([98dc9fd](https://github.com/roomle-dev/roomle-ui/commit/98dc9fd22f05a081ae266ae13abf651321fdfbb7))
|
|
1403
|
+
* MOC: embedding icon is wrong ([abd64bc](https://github.com/roomle-dev/roomle-ui/commit/abd64bc376eadfc598666843140dca3d8b02f23f))
|
|
1404
|
+
* MOC: expand collectionView for construction item return wrong preview ([e12ea65](https://github.com/roomle-dev/roomle-ui/commit/e12ea65fe838d7c0468687c52672030537e96b7c))
|
|
1405
|
+
* MOC: first time room behavior - camera does not frame object correctly when drawing ([27a2649](https://github.com/roomle-dev/roomle-ui/commit/27a264949709ccd2a5d333c3d0712fc644c59307))
|
|
1406
|
+
* MOC: first time room behavior - camera does not frame object correctly when drawing ([1ec0be8](https://github.com/roomle-dev/roomle-ui/commit/1ec0be829b1392138a8010d1dfd41bcc52806722))
|
|
1407
|
+
* MOC: Header/desc inside AR popup misaligned ([aa0079b](https://github.com/roomle-dev/roomle-ui/commit/aa0079bf0d815e5da33efe10c04830405bf1c04b))
|
|
1408
|
+
* MOC: Icons inside Partlist is not displayed properly ([9830b3a](https://github.com/roomle-dev/roomle-ui/commit/9830b3a3e3e638fb263a6be1a8a3cf20c9c5b012))
|
|
1409
|
+
* MOC: interaction header is not sticky when i scroll through the catalog item container ([f5ec1bb](https://github.com/roomle-dev/roomle-ui/commit/f5ec1bbbce9a96f7a8dd7a318c8ed4ac4cb45ca6))
|
|
1410
|
+
* MOC: Partlist on mobile close in wrong way when selecting something else ([aab0c51](https://github.com/roomle-dev/roomle-ui/commit/aab0c516a64edbb13f365c7e15340e6e17a3312b))
|
|
1411
|
+
* MOC: Selection cancel exits drawing mode ([7a36123](https://github.com/roomle-dev/roomle-ui/commit/7a36123924cd56fb6e991bc68e4225140de1fe23))
|
|
1412
|
+
* MOC: Sidebar not closed when we select plan element ([e9c40b4](https://github.com/roomle-dev/roomle-ui/commit/e9c40b47e6ed49c0cc2efd8c30596d5f6157a652))
|
|
1413
|
+
* MOC: Some IDs (e.g.: schrankwerk) break sharing behavior ([04e41c6](https://github.com/roomle-dev/roomle-ui/commit/04e41c657973361795774eccd54dcf3162c44909))
|
|
1414
|
+
* MOC: the room header not exact like the design ([639ff5e](https://github.com/roomle-dev/roomle-ui/commit/639ff5ed326e38d31899b444fb853b112c50c606))
|
|
1415
|
+
* MOC(Mobile): disable 2D view toggle if we are in drawing mode ([052aa1a](https://github.com/roomle-dev/roomle-ui/commit/052aa1abcd794064a1934ec84b91ddfe76cb248f))
|
|
1416
|
+
* mock intersectionObserver ([8ed2fb7](https://github.com/roomle-dev/roomle-ui/commit/8ed2fb777d6a42034b03ea952b3a1ac3090722d4))
|
|
1417
|
+
* modify to accept additionalInfos from parametergroup payload ([2dd395c](https://github.com/roomle-dev/roomle-ui/commit/2dd395c926959d6bacf2c61adf38215658abaf3b))
|
|
1418
|
+
* modify top bar and tests ([d5eda6e](https://github.com/roomle-dev/roomle-ui/commit/d5eda6e61c46f67911d6dca9f749d3a4d1f530c0))
|
|
1419
|
+
* more dynamic imports ([6773da9](https://github.com/roomle-dev/roomle-ui/commit/6773da9f75b73cdd8dc6f9378bc3eec7eda92df4))
|
|
1420
|
+
* more render function hacks in CollectionViewStatic ([39d9be0](https://github.com/roomle-dev/roomle-ui/commit/39d9be0e1b97963915ace97b18b9f78e0bdf2113))
|
|
1421
|
+
* more things ([0873879](https://github.com/roomle-dev/roomle-ui/commit/08738797e2ee76eb90fb2bae40850d61816a4aac))
|
|
1422
|
+
* more various type fixes ([e83638a](https://github.com/roomle-dev/roomle-ui/commit/e83638a5c2ce1a9fcdf15e927cf92a741f1ac127))
|
|
1423
|
+
* more various type fixes ([63489e1](https://github.com/roomle-dev/roomle-ui/commit/63489e10b4750518cb6b054c89953b7341d6e62e))
|
|
1424
|
+
* more various typing stuff ([3d0a848](https://github.com/roomle-dev/roomle-ui/commit/3d0a848ff2e012a97a3d01fdd023c4769573def0))
|
|
1425
|
+
* most of BottomBar.spec working ([1cb0362](https://github.com/roomle-dev/roomle-ui/commit/1cb0362ee56575a6d209f2c81ee2f1bf8c668618))
|
|
1426
|
+
* Mouse cursor is not adopted on parameters ([dbe9050](https://github.com/roomle-dev/roomle-ui/commit/dbe90501792c162b3579f9c7cef78535ccbbf10d))
|
|
1427
|
+
* mouseUp outside of button creates infinite number increase party ([381056f](https://github.com/roomle-dev/roomle-ui/commit/381056f3fe7e695716aea24535778956ec599aa8))
|
|
1428
|
+
* move another store commit into SET_UP_ROOM_SIDEBAR_ON_LOAD ([e399cca](https://github.com/roomle-dev/roomle-ui/commit/e399ccaad36ee6e27617faf1ec90b2b55dabc8de))
|
|
1429
|
+
* move changes from addon-trigger to separate components ([5f578a4](https://github.com/roomle-dev/roomle-ui/commit/5f578a483d53ab5c7ffec3677c6d945295844ad6))
|
|
1430
|
+
* move corebound to computed ([4961e76](https://github.com/roomle-dev/roomle-ui/commit/4961e76566ee7537998540997922326f3ca63068))
|
|
1431
|
+
* move firstperson view outside featureflags ([35f1b5b](https://github.com/roomle-dev/roomle-ui/commit/35f1b5b18ddfcf79374495d62ff06830edf4d8cb))
|
|
1432
|
+
* move fullscreen handler to plannerUiState ([71293c0](https://github.com/roomle-dev/roomle-ui/commit/71293c0e65c96764e34589914383f5481ae84af1))
|
|
1433
|
+
* move fullscreen state handler into consistent position in view switch funcs ([c932d9a](https://github.com/roomle-dev/roomle-ui/commit/c932d9a59ac280e5d1e0b7319216cd448f767141))
|
|
1434
|
+
* move handling of static-elements into helper function ([63eb09e](https://github.com/roomle-dev/roomle-ui/commit/63eb09efe308bd5d08aca87d95d394b88548bd32))
|
|
1435
|
+
* move helpcenter outside featureflags ([ec5fd02](https://github.com/roomle-dev/roomle-ui/commit/ec5fd026dd32e735dcdbbc5fbbc66e4d941994a4))
|
|
1436
|
+
* move hide flying menu into startconfiguring ([c998904](https://github.com/roomle-dev/roomle-ui/commit/c9989046833a98f448d0f28133b58c8184e72632))
|
|
1437
|
+
* move InteractionHeader 1 div above in PartsList ([6924337](https://github.com/roomle-dev/roomle-ui/commit/6924337332179c45f718473359c0e4d0824394d0))
|
|
1438
|
+
* move isInch into rangeSlider because its the only place it's used ([faf68d8](https://github.com/roomle-dev/roomle-ui/commit/faf68d8ce1fc0e2c6498cd94c7da7e1d2d0f1452))
|
|
1439
|
+
* move measurementUnit into common ui state ([69eb7c4](https://github.com/roomle-dev/roomle-ui/commit/69eb7c413049f46169a0d6665f27dccf20f0cd20))
|
|
1440
|
+
* moved expression inside square brackets ([1214501](https://github.com/roomle-dev/roomle-ui/commit/1214501241bbc8199283d6f708fa022c7dd571ae))
|
|
1441
|
+
* nail global store provide pattern ([7d6aef6](https://github.com/roomle-dev/roomle-ui/commit/7d6aef6eccbd553bd5a1c1d9f9775cbc0a38548e))
|
|
1442
|
+
* named destructure ([91c16ce](https://github.com/roomle-dev/roomle-ui/commit/91c16cea385451a94df9d29bc4e1a5495c7ba87d))
|
|
1443
|
+
* Navigation bug - productlist not shown per default ([72382ed](https://github.com/roomle-dev/roomle-ui/commit/72382ed2cc650fcbea397a3d644b5790c206625b))
|
|
1444
|
+
* navigation issues closes RML-8907 RML-8812 RML-8900 RML-8882 ([1695544](https://github.com/roomle-dev/roomle-ui/commit/1695544f9517a9e75278a784ae9d65923852f66d))
|
|
1445
|
+
* new unit formatter calls ([ef2712f](https://github.com/roomle-dev/roomle-ui/commit/ef2712f59fb89087b3f2071da35080c7dcab2ae0))
|
|
1446
|
+
* next action button not centered in sidebar ([bae116d](https://github.com/roomle-dev/roomle-ui/commit/bae116d305e73aa357927b6a5a49d3b08da2eb4f))
|
|
1447
|
+
* next button is on top of all parameters ([ed8a3f8](https://github.com/roomle-dev/roomle-ui/commit/ed8a3f84a48cd6d2a0d54a306e4949d942163d6b))
|
|
1448
|
+
* next try to get CI running ([ef0892e](https://github.com/roomle-dev/roomle-ui/commit/ef0892e6bf5be019fc85ac108efae5513b7d0df3))
|
|
1449
|
+
* NextParameterGroupButton.spec.ts ([835bd53](https://github.com/roomle-dev/roomle-ui/commit/835bd537a91be3bbe22d82eb00a1d7f898d4e50b))
|
|
1450
|
+
* no need to check root tag for mode room ([6a2c125](https://github.com/roomle-dev/roomle-ui/commit/6a2c125f33eecd5db437eceaa55dffdcad3cf76d))
|
|
1451
|
+
* not cancel dockings after parameter change ([dfb3c91](https://github.com/roomle-dev/roomle-ui/commit/dfb3c91bbb47b13039edadc6b47659f6b7a1d220))
|
|
1452
|
+
* not save plan when nothing changed ([dab0aa6](https://github.com/roomle-dev/roomle-ui/commit/dab0aa6f5511d83634faa23f7658d45c847fadf8))
|
|
1453
|
+
* not showing in configurator ([fe6137e](https://github.com/roomle-dev/roomle-ui/commit/fe6137edb430750a0f455687bac63b9267d766b9))
|
|
1454
|
+
* null pointer if embedding tries to call a sdk-method ([322558c](https://github.com/roomle-dev/roomle-ui/commit/322558ce5a3d9988e9ab78527096014eb6043454))
|
|
1455
|
+
* **planner:** object to wall measurement bubbles collapse on focus out ([d936796](https://github.com/roomle-dev/roomle-ui/commit/d93679643a61fe609fc70a05b700c16e2a346a9c))
|
|
1456
|
+
* On Ipad the measurement lines do not show arrows ([32f44a7](https://github.com/roomle-dev/roomle-ui/commit/32f44a7f921922c87606402c3f81501c4a15d19b))
|
|
1457
|
+
* On mobile the menu is hidden behind the configuration menu ([6d76e05](https://github.com/roomle-dev/roomle-ui/commit/6d76e0556eecc0fbf357275800211afc8b13f3ce))
|
|
1458
|
+
* On small desktop screens "download link" button overflows ([2d9c8e0](https://github.com/roomle-dev/roomle-ui/commit/2d9c8e0b88e38eb4970f614da62f4dd00eb0c122))
|
|
1459
|
+
* onCollapse types ([148e84c](https://github.com/roomle-dev/roomle-ui/commit/148e84c3e661302649af7fd9144e6fca9e3d95ee))
|
|
1460
|
+
* only call drag end once on mobile ([1764ef6](https://github.com/roomle-dev/roomle-ui/commit/1764ef65f716b50d224c105566332e151712bbf8))
|
|
1461
|
+
* only change position on selection payload change ([f846eeb](https://github.com/roomle-dev/roomle-ui/commit/f846eeb211ae086f625db2f83f0ba1e7131cf346))
|
|
1462
|
+
* only close overlay when we opened the AR url ([029ce39](https://github.com/roomle-dev/roomle-ui/commit/029ce390eaea998e6b9b46e6654e0402446c143c))
|
|
1463
|
+
* only close part list not both part list and product list ([66bbefb](https://github.com/roomle-dev/roomle-ui/commit/66bbefb40168ed9056ef092184c5882390dafc05))
|
|
1464
|
+
* only load tutorial iframe once on click ([18c5d5b](https://github.com/roomle-dev/roomle-ui/commit/18c5d5b1fcd4105b48f23f6ebc334d4d71c9746f))
|
|
1465
|
+
* only open configurator in MOC when configuring is already started ([1814642](https://github.com/roomle-dev/roomle-ui/commit/1814642e053e79a35b646c695d97742a16e972a1))
|
|
1466
|
+
* only render collection after RoomGeneralSettings.vue is ready this is needed because mount is async (which it should not be because it's not supported in Vue) ([ae7859d](https://github.com/roomle-dev/roomle-ui/commit/ae7859d6aee0e810aab3102bacf79182087742ab))
|
|
1467
|
+
* only request configurator settings from RAPI if we get valid input data from embedding website ([b3cfe7d](https://github.com/roomle-dev/roomle-ui/commit/b3cfe7d9f4bd81e948edf1f6b2a3c2ceda08432a))
|
|
1468
|
+
* only reset last selected variant if some changes happened ([58a15c0](https://github.com/roomle-dev/roomle-ui/commit/58a15c0dcf10adf4b802405e7ab2e09f49f747e7))
|
|
1469
|
+
* only save when it is needed ([79e530b](https://github.com/roomle-dev/roomle-ui/commit/79e530b147ccaaf5117f7b67303ddf511a972dbb))
|
|
1470
|
+
* only set icon on mount ([e67528f](https://github.com/roomle-dev/roomle-ui/commit/e67528f43c2ce1b5d25b5ee298328036a863b735))
|
|
1471
|
+
* only show configurator hint once per session ([b02977f](https://github.com/roomle-dev/roomle-ui/commit/b02977f8e25046cdde3315f545d11787542b0869))
|
|
1472
|
+
* only show icon without text as request button, only 2 lines for main label RML-5021 ([05d050a](https://github.com/roomle-dev/roomle-ui/commit/05d050a4ec31338a6b2f1afdb0896a7fc2e470b9))
|
|
1473
|
+
* only show multi-select in productSettings header if multi-select is enabled, or there are multiple items selected in store ([016e71f](https://github.com/roomle-dev/roomle-ui/commit/016e71fed897ff4840f1342fb5d42813f658da35))
|
|
1474
|
+
* only show SampleRooms if user didn't select a sample room (or chose free draw) ([b62c74f](https://github.com/roomle-dev/roomle-ui/commit/b62c74fe6ae216032d18ddb25341d7b22b691364))
|
|
1475
|
+
* only show selection if really something is selected ([b31c4a7](https://github.com/roomle-dev/roomle-ui/commit/b31c4a7a7b47a488d3e36f33cc8d5710da4a9bcf))
|
|
1476
|
+
* only trigger button action if button is not disabled ([f331bc1](https://github.com/roomle-dev/roomle-ui/commit/f331bc151e07f8ce4f4ae6ddb7724179aff0a7a0))
|
|
1477
|
+
* only widen gap on mobile ([ae80e40](https://github.com/roomle-dev/roomle-ui/commit/ae80e4081d80956f9ffa842030f63cf5936ccb07))
|
|
1478
|
+
* onselect issue ([d4b8628](https://github.com/roomle-dev/roomle-ui/commit/d4b8628f268d0adecbd7d7eb588789a7c905fdc7))
|
|
1479
|
+
* onSelectElement wallGeneralSettings, window/doorVariants ([7a49a0d](https://github.com/roomle-dev/roomle-ui/commit/7a49a0d282b184a0b0a4d14388ac4b681b1fdd12))
|
|
1480
|
+
* open new tab on button click and set target later ([3ab3e68](https://github.com/roomle-dev/roomle-ui/commit/3ab3e68418af6dd92275b720e40a7c2a5c00426d))
|
|
1481
|
+
* **AR:** open overlay to start AR directly on iPad ([b5c46e9](https://github.com/roomle-dev/roomle-ui/commit/b5c46e99b060e6405fef304497efd9fe9f1fab18))
|
|
1482
|
+
* open the sidebar on wall or floor selection ([29bf33f](https://github.com/roomle-dev/roomle-ui/commit/29bf33fe487920f408ad90f5fde9f609e907bec2))
|
|
1483
|
+
* OpenARView.spec.ts ([f66b045](https://github.com/roomle-dev/roomle-ui/commit/f66b0457fbdf9c9e059a5481b195fd63bbfcac74))
|
|
1484
|
+
* Opening Partlist adds label to footer that can not be cleared anymore ([aac922d](https://github.com/roomle-dev/roomle-ui/commit/aac922db5913b84e4a3ca26b2c07c300bd0b1962))
|
|
1485
|
+
* optim svg ([52a8f4f](https://github.com/roomle-dev/roomle-ui/commit/52a8f4f733ef62a874339e410c2250e41c2f17cf))
|
|
1486
|
+
* optional ([9b7aad2](https://github.com/roomle-dev/roomle-ui/commit/9b7aad2f9c23de6bcd9c3d75b03acd58059ecc41))
|
|
1487
|
+
* OptionsParameter.spec.ts ([b65511b](https://github.com/roomle-dev/roomle-ui/commit/b65511bb45538a5bbb63b3d958a9bed85a9d814a))
|
|
1488
|
+
* optionsParamter buttons ([c67ceab](https://github.com/roomle-dev/roomle-ui/commit/c67ceabf79c83b5a31e3b5e3102d70bed6fa02fa))
|
|
1489
|
+
* order ([2746b2e](https://github.com/roomle-dev/roomle-ui/commit/2746b2e1bb54d89ba4230b05bd9b6920af05051f))
|
|
1490
|
+
* overflow icons for safari ([58060b0](https://github.com/roomle-dev/roomle-ui/commit/58060b0494fd61c8439fb7e36a90e7827821cdbc))
|
|
1491
|
+
* overlay background color on desktop is not white ([8f4a8a3](https://github.com/roomle-dev/roomle-ui/commit/8f4a8a3382ce962f72b4dc9dc3dc3b8940beaa8a))
|
|
1492
|
+
* overlay background colors ([e37f383](https://github.com/roomle-dev/roomle-ui/commit/e37f383f63be3408bc4534a7895a85044959d681))
|
|
1493
|
+
* Overlays.spec.ts ([32b115b](https://github.com/roomle-dev/roomle-ui/commit/32b115b10938e6fe00d942d36dce9f336de14b12))
|
|
1494
|
+
* override browser defaults for input ([366045f](https://github.com/roomle-dev/roomle-ui/commit/366045fdb4ee4b3890b8f68e904cb86e0b90d175))
|
|
1495
|
+
* package-lock ([3de1c30](https://github.com/roomle-dev/roomle-ui/commit/3de1c3084e707d3440e66c88ddfbaae26b424c7d))
|
|
1496
|
+
* package-lock ([252a7b7](https://github.com/roomle-dev/roomle-ui/commit/252a7b7c245d594f1455dc2561e0da338f82f58f))
|
|
1497
|
+
* package-lock ([a5c99bd](https://github.com/roomle-dev/roomle-ui/commit/a5c99bd241833f5fc045128e028eb570c6ba5d44))
|
|
1498
|
+
* package-lock ([771c03b](https://github.com/roomle-dev/roomle-ui/commit/771c03bf69694be0fa982ff5a037c9f9b61c4706))
|
|
1499
|
+
* package-lock ([70a4c05](https://github.com/roomle-dev/roomle-ui/commit/70a4c05aa5850ad0a73f1eff9ebd7e72d2223595))
|
|
1500
|
+
* package.lock ([3bd1153](https://github.com/roomle-dev/roomle-ui/commit/3bd115337bd4cea7f00c76a77f5943252d6b834a))
|
|
1501
|
+
* padding on tooltip ([929cfd5](https://github.com/roomle-dev/roomle-ui/commit/929cfd5f67db7ba7bbde0b45b6c68f5ba08c6cd5))
|
|
1502
|
+
* padding with calc ([56f648d](https://github.com/roomle-dev/roomle-ui/commit/56f648d23197470629d909d5818d0e27c3f8e6bd))
|
|
1503
|
+
* parameter tooltip value is not rendered correctly ([04b67e8](https://github.com/roomle-dev/roomle-ui/commit/04b67e8bfb1add5317a5964a4c0dca43079245b2))
|
|
1504
|
+
* parameter variants not clickable for parameter-groups-preview ([0139217](https://github.com/roomle-dev/roomle-ui/commit/0139217db12ec1b2530544404665a14faa91d6e3))
|
|
1505
|
+
* ParameterGroups spec ([ff0e2d9](https://github.com/roomle-dev/roomle-ui/commit/ff0e2d94e34de0bbe9a3136178e8f179e6fdb2f1))
|
|
1506
|
+
* parse float string as number to planinteractionhandler ([b91fb07](https://github.com/roomle-dev/roomle-ui/commit/b91fb076c073ce7eb77a7a8362c3a5f82d9b9176))
|
|
1507
|
+
* parse float string as number to planinteractionhandler ([6e06207](https://github.com/roomle-dev/roomle-ui/commit/6e062078044298c2d8dc1e036485b6ece34f961d))
|
|
1508
|
+
* parsefloat Number ([d4a76e0](https://github.com/roomle-dev/roomle-ui/commit/d4a76e05dcbed27880f6b1405f26be18f73267c5))
|
|
1509
|
+
* partial RangeParameter.spec.ts ([8cc0ce9](https://github.com/roomle-dev/roomle-ui/commit/8cc0ce9454ae1ef659a4087cbe40d45af99cdebe))
|
|
1510
|
+
* partial SampleRooms.spec.ts ([d45bd91](https://github.com/roomle-dev/roomle-ui/commit/d45bd912f8b8db5bf260a0547c46d98fd9cc9528))
|
|
1511
|
+
* partially fix PartList.spec ([87bc37e](https://github.com/roomle-dev/roomle-ui/commit/87bc37e2ff6bfe8971e04d4b96fdfc09608cbf63))
|
|
1512
|
+
* partially fix PossibleChildren.spec.t ([d57a89d](https://github.com/roomle-dev/roomle-ui/commit/d57a89d39e4cdf9a2fb615b003c8ea3857c65f96))
|
|
1513
|
+
* partially fix RoomGeneralSettings.spec.ts ([0d2527d](https://github.com/roomle-dev/roomle-ui/commit/0d2527dacad9930c02a8db50627b9de17e749cd7))
|
|
1514
|
+
* partially fix RoomGeneralSettings.spec.ts ([b10a91e](https://github.com/roomle-dev/roomle-ui/commit/b10a91e46ed845ce8422842f02d8acc59b77efe8))
|
|
1515
|
+
* partially fixed ConfiguratorSidebar.spec.ts ([9647fe1](https://github.com/roomle-dev/roomle-ui/commit/9647fe14e0306a372dcc17906c6faf6c4e7e957f))
|
|
1516
|
+
* Partlist container doesn't have close icon on Rubens ([a010523](https://github.com/roomle-dev/roomle-ui/commit/a010523edc027a70140457af9ddd2bead213bda2))
|
|
1517
|
+
* Partlist imports ([459ab0f](https://github.com/roomle-dev/roomle-ui/commit/459ab0f6e82809eeaa4573a4c7b6393efa44c9d6))
|
|
1518
|
+
* Partlist is not shown when the interaction container is collapsed ([de8a985](https://github.com/roomle-dev/roomle-ui/commit/de8a985e95840a162f4d90ecbc54bb866af151a0))
|
|
1519
|
+
* PartList.vue types ([5eaf7d4](https://github.com/roomle-dev/roomle-ui/commit/5eaf7d425244494ed43c2742010ed1508a020f95))
|
|
1520
|
+
* PartListPrint.spec.ts ([c22c44a](https://github.com/roomle-dev/roomle-ui/commit/c22c44a18d8936cd422dfd6228adcd0bb70d2829))
|
|
1521
|
+
* PartListRow.spec.ts ([a5490cb](https://github.com/roomle-dev/roomle-ui/commit/a5490cb481c471ae9cc1defc02fd8e10e50c7ab9))
|
|
1522
|
+
* Parts List Headers are missing ([48091d3](https://github.com/roomle-dev/roomle-ui/commit/48091d351c7f51c561b137a661017f17aabcb4fa))
|
|
1523
|
+
* pass args correctly to npm so that vue-cli can use them this is differently in yarn and npm ([0fdfa5c](https://github.com/roomle-dev/roomle-ui/commit/0fdfa5cdb242739868325d1be4d23a213c618eb9))
|
|
1524
|
+
* pass correct object in tests so that the test does not break ([c8d8c2d](https://github.com/roomle-dev/roomle-ui/commit/c8d8c2dcda2ab185f6ba211ccf7d6e4fa3ea4cfa))
|
|
1525
|
+
* pass needed instances to sdk-connector constructor ([0ff90a7](https://github.com/roomle-dev/roomle-ui/commit/0ff90a714e987649d9ccd40931fcc98a3dfd0463))
|
|
1526
|
+
* pass selectedElement correctly ([826010d](https://github.com/roomle-dev/roomle-ui/commit/826010d1709725b272d04cfecc66abb7aab835c7))
|
|
1527
|
+
* pass system to unitFormatter too ([5548176](https://github.com/roomle-dev/roomle-ui/commit/5548176266a49b4a1de5a69d036d7ccf5d352c2f))
|
|
1528
|
+
* persist selected floor colors ([45e32bb](https://github.com/roomle-dev/roomle-ui/commit/45e32bb5ec1773647ccd1583a1992dfd89c14266))
|
|
1529
|
+
* perspective image generation when starting in 2d ([f4985b3](https://github.com/roomle-dev/roomle-ui/commit/f4985b37454054e124e8905949f68cf898bd7dbf))
|
|
1530
|
+
* plannermain test ([65433c4](https://github.com/roomle-dev/roomle-ui/commit/65433c4afff67d92ba0d484ab47c1e3acd67db90))
|
|
1531
|
+
* PlannerMain.spec.ts ([797efe5](https://github.com/roomle-dev/roomle-ui/commit/797efe533be4688a9b0f02388a26233a4414114a))
|
|
1532
|
+
* pointer ([b606708](https://github.com/roomle-dev/roomle-ui/commit/b606708a19581701b6c01737c98224576354a776))
|
|
1533
|
+
* PopUp.spec.ts ([23af209](https://github.com/roomle-dev/roomle-ui/commit/23af209d926621f0d7399ff21b0c6453435c007d))
|
|
1534
|
+
* popups not working ([177adec](https://github.com/roomle-dev/roomle-ui/commit/177adec50c12c79e6732c7f40bb73d63bb94bf41))
|
|
1535
|
+
* Position of contextbar is off ([fc03a89](https://github.com/roomle-dev/roomle-ui/commit/fc03a896c440d0f53bfd62341249c845da787bfb))
|
|
1536
|
+
* positionFilled, rename component refs ([790c13b](https://github.com/roomle-dev/roomle-ui/commit/790c13bf5c2fda30681d781c27754899e6325c56))
|
|
1537
|
+
* PossibleChildren.spec.ts ([42caf45](https://github.com/roomle-dev/roomle-ui/commit/42caf454c70969aad9a1b31c165d60d1e5d88ab8))
|
|
1538
|
+
* pre-refactor-fix ([25a2421](https://github.com/roomle-dev/roomle-ui/commit/25a242165a78b34eb4fbbbace7244d4834e56cbf))
|
|
1539
|
+
* **embedding:** prepareInitData should not break if embedding website does not provide initData ([6b7db09](https://github.com/roomle-dev/roomle-ui/commit/6b7db098d907b178a2f78a45f8252bde1226ccb2))
|
|
1540
|
+
* prevent key events on slider to enable shifting the scene ([ebed576](https://github.com/roomle-dev/roomle-ui/commit/ebed576d0903cda0963ef0e1aca8e29a314c8ac7))
|
|
1541
|
+
* prevent mouse from being interrupted by parameter groups during drag ([f72efb1](https://github.com/roomle-dev/roomle-ui/commit/f72efb1a5c9b7575fd73bc11278d2581898271b4))
|
|
1542
|
+
* prevent possible null pointer exception ([42f02ef](https://github.com/roomle-dev/roomle-ui/commit/42f02ef7b7077c93bebcf2f3ccb29924695587cb))
|
|
1543
|
+
* prevent race condition on parameters if onUpdateParameters are comming in parallel ([c326ef5](https://github.com/roomle-dev/roomle-ui/commit/c326ef5d817af9d1a0bc418f97c6c931ea50ac5f))
|
|
1544
|
+
* prevent resetting the camera when adding measurement lines ([41186d2](https://github.com/roomle-dev/roomle-ui/commit/41186d236b767f6702a213b31f3f41b555c4e5e9))
|
|
1545
|
+
* preview selection always show configuration ([19cd7f3](https://github.com/roomle-dev/roomle-ui/commit/19cd7f38b957703bfe5036843d97e486ddd11813))
|
|
1546
|
+
* price selection change issues ([b16402f](https://github.com/roomle-dev/roomle-ui/commit/b16402f6837a170274295f35da2c9bd5dbb44424))
|
|
1547
|
+
* Prices in configurator not updating when page is translated ([46e2415](https://github.com/roomle-dev/roomle-ui/commit/46e24150f775ba7613462d435eea963bd492f5e1))
|
|
1548
|
+
* print should displayed in the bottom of the sidebar and second level indicator should pop sidebar view ([f16d262](https://github.com/roomle-dev/roomle-ui/commit/f16d2620845d05d941180470a4c035cb2a7a3d2e))
|
|
1549
|
+
* problems with packages ([95a22ea](https://github.com/roomle-dev/roomle-ui/commit/95a22ea0417ce54ec654336fc6608f70b1f186b0))
|
|
1550
|
+
* process url init data correctly ([8b4dfa7](https://github.com/roomle-dev/roomle-ui/commit/8b4dfa7699c33a9ed21ce3f3d30b1bdef34ad91b))
|
|
1551
|
+
* product-settings header ([d292975](https://github.com/roomle-dev/roomle-ui/commit/d292975c0c8914b8d036414f9179d279e25a67f4))
|
|
1552
|
+
* ProductListButton.spec.ts ([a27a5fb](https://github.com/roomle-dev/roomle-ui/commit/a27a5fb637aec1df0b7d599000a5d830a699dbb1))
|
|
1553
|
+
* productlistEntry proptype ([d5d38f6](https://github.com/roomle-dev/roomle-ui/commit/d5d38f6432e42fc89f6d8a249b4b3a5de757ab97))
|
|
1554
|
+
* Products that become deactivated in RuAd still show up in catalog view ([08744e0](https://github.com/roomle-dev/roomle-ui/commit/08744e0fb3e7a08c08ee117aff91f871e27c1c1a))
|
|
1555
|
+
* ProductVariant.spec.ts ([aacb9ca](https://github.com/roomle-dev/roomle-ui/commit/aacb9ca5bc982316fc942f30d3191d3a94176d02))
|
|
1556
|
+
* prohibit running GitHub approval workflow on clicking request changes ([f63977f](https://github.com/roomle-dev/roomle-ui/commit/f63977f1d9940f20f5edcce65d6832af530bb010))
|
|
1557
|
+
* prohibit show rotation icon when we click on wall node ([f7976ea](https://github.com/roomle-dev/roomle-ui/commit/f7976ea8a8ee2b2c16750b7c13820c99fb5dfc7b))
|
|
1558
|
+
* properly pass custom style ([5931838](https://github.com/roomle-dev/roomle-ui/commit/5931838f63e096fcccdeaca2c41df441f3ebd438))
|
|
1559
|
+
* provide entire grouped partlist instead of just the first item. ([fe5a36d](https://github.com/roomle-dev/roomle-ui/commit/fe5a36dd21b2f40725611972fdc3f30e315bae10))
|
|
1560
|
+
* range slider bugs and refactor functions into room general settings component ([9e2edc4](https://github.com/roomle-dev/roomle-ui/commit/9e2edc4538f87046499bdf5a47eb58782e48db79))
|
|
1561
|
+
* range sliders in room range ([d225c6b](https://github.com/roomle-dev/roomle-ui/commit/d225c6b911d8d2f415f5eb9af2367d2e666d46a8))
|
|
1562
|
+
* RangeParameter.spec.ts ([875c93f](https://github.com/roomle-dev/roomle-ui/commit/875c93f0e1777bdb0f9046f23c05d2fe8f01f5b8))
|
|
1563
|
+
* rangeslider input & refactor to composition ([70b0408](https://github.com/roomle-dev/roomle-ui/commit/70b0408b99ddfe578038ebe1977b7de0d96dde5b))
|
|
1564
|
+
* RAPI returns 400 when saving plansnapshot of room planner plan ([3eaa156](https://github.com/roomle-dev/roomle-ui/commit/3eaa156f76b203f4afcec3599e0618762e337baa))
|
|
1565
|
+
* RD: Bug when starting a plan with drawing ([6e2f364](https://github.com/roomle-dev/roomle-ui/commit/6e2f364381e2ab96e837365a2a874e1f319202a3))
|
|
1566
|
+
* re-add loading effect ([d9ebe95](https://github.com/roomle-dev/roomle-ui/commit/d9ebe9531214594b5f7da4672955088dfe7b3b7f))
|
|
1567
|
+
* re-enable startConfiguring for mobile again ([079f0fe](https://github.com/roomle-dev/roomle-ui/commit/079f0fe1df56ba56d70b14d77781623b1d733a28))
|
|
1568
|
+
* reactivate cypress tests and make them pass ([3747c04](https://github.com/roomle-dev/roomle-ui/commit/3747c041d188a00de41479c76860172962e23f86))
|
|
1569
|
+
* reactivate mobile tests for CI as well ([7ab075e](https://github.com/roomle-dev/roomle-ui/commit/7ab075e436cfd621f5aff9ac6f4b7f8eeb62f68c))
|
|
1570
|
+
* reactive intersectionObserver ([cea4362](https://github.com/roomle-dev/roomle-ui/commit/cea4362b8038db2e1c3393947f06512391b3b71e))
|
|
1571
|
+
* rearrange ([6793538](https://github.com/roomle-dev/roomle-ui/commit/679353831fe98c7a85192c358c28676b8178447b))
|
|
1572
|
+
* recalc pos on resize ([8ffaae5](https://github.com/roomle-dev/roomle-ui/commit/8ffaae504024dc5e2bb62a5434a893f62ccf71b4))
|
|
1573
|
+
* refactor ([b0c29ae](https://github.com/roomle-dev/roomle-ui/commit/b0c29ae4018a91f34f82ef3ec5d68a46479bf46f))
|
|
1574
|
+
* refactor names ([61ebbd9](https://github.com/roomle-dev/roomle-ui/commit/61ebbd9c678d2bd2a1981d5c7e6ecb5e872ef152))
|
|
1575
|
+
* refactor NumericInput ([c2cad91](https://github.com/roomle-dev/roomle-ui/commit/c2cad914a29fe02f33b28806050d4746305c8927))
|
|
1576
|
+
* refactor obtaining idb key ([71daf3f](https://github.com/roomle-dev/roomle-ui/commit/71daf3f7dfbe86765d8ec573e8e8a9fd8a47a404))
|
|
1577
|
+
* refactor possibleChildren ([51b88c5](https://github.com/roomle-dev/roomle-ui/commit/51b88c5e76328697b529ae73cb8341921e9b83cf))
|
|
1578
|
+
* refactor to composition API ([acc96f4](https://github.com/roomle-dev/roomle-ui/commit/acc96f47e3076a9e00f50cdd5daa4f9627ab5216))
|
|
1579
|
+
* remove :has because FF doesnt support it ([306bfa2](https://github.com/roomle-dev/roomle-ui/commit/306bfa26f60eeb35e36de561e31de4b63bcbbd6d))
|
|
1580
|
+
* remove @ from save draft url ([dd043d3](https://github.com/roomle-dev/roomle-ui/commit/dd043d36e0f9a21f8d88b959c3fe724b31e54416))
|
|
1581
|
+
* remove await ([137c136](https://github.com/roomle-dev/roomle-ui/commit/137c1368fbe3127a7afdb904cef626d3c0f5c2dc))
|
|
1582
|
+
* remove broken browser query ([7ec9f27](https://github.com/roomle-dev/roomle-ui/commit/7ec9f273b2cd886daff02fbac17d25063f01c731))
|
|
1583
|
+
* remove bun lockfile ([716def4](https://github.com/roomle-dev/roomle-ui/commit/716def42e8399081abbd356ad5b676695187c8f5))
|
|
1584
|
+
* remove camera idle show ([7b53ee7](https://github.com/roomle-dev/roomle-ui/commit/7b53ee7cc0f6056d804aa9149bfa0995e4a1fdc6))
|
|
1585
|
+
* remove clg ([a533b28](https://github.com/roomle-dev/roomle-ui/commit/a533b28e87c25ef9b21bd93d1f0df8e74f62fb4f))
|
|
1586
|
+
* remove clg ([46b2041](https://github.com/roomle-dev/roomle-ui/commit/46b2041adfaca21a216d05a02ef14f2444de54ed))
|
|
1587
|
+
* remove code smell and make dependency on plannerUiState.measurementUnit explicit ([d589ff7](https://github.com/roomle-dev/roomle-ui/commit/d589ff7eb88916b13f62798d984a00e8c8d54977))
|
|
1588
|
+
* remove counter dot fixed width ([6e555bc](https://github.com/roomle-dev/roomle-ui/commit/6e555bccf99a0e245e94768e0f0343be42a27fb1))
|
|
1589
|
+
* remove css ([58a6202](https://github.com/roomle-dev/roomle-ui/commit/58a6202066d420e40a55bb95a6582e7ec85eb46a))
|
|
1590
|
+
* remove default value from cast init data ([281532e](https://github.com/roomle-dev/roomle-ui/commit/281532e47e9dfaad8a2eb1ab08e93fd14c8637dd))
|
|
1591
|
+
* remove deprecation warnings ([c668854](https://github.com/roomle-dev/roomle-ui/commit/c668854bcf70799f41b0e2fd1c969200d05b00d3))
|
|
1592
|
+
* remove drag ghost in all browsers ([3865a5b](https://github.com/roomle-dev/roomle-ui/commit/3865a5b33b49c4b77a971163e9d4c72d0f475007))
|
|
1593
|
+
* remove early return * minor ([54886a7](https://github.com/roomle-dev/roomle-ui/commit/54886a762316170fcf284c0526120150896512b9))
|
|
1594
|
+
* remove endless loop which was caused by a mutation in v-if ([030cf8d](https://github.com/roomle-dev/roomle-ui/commit/030cf8d3ee0ee6b800fed71cfc1879cccd965212))
|
|
1595
|
+
* remove engines, cleanup ([b71445c](https://github.com/roomle-dev/roomle-ui/commit/b71445cc64e8db0953a477989b15ad80481b5d02))
|
|
1596
|
+
* remove erroneous check for internal network detection ([10e903d](https://github.com/roomle-dev/roomle-ui/commit/10e903d19be5748448ee7a601ae2aab37a448c18))
|
|
1597
|
+
* remove eslint errors ([35a6cb8](https://github.com/roomle-dev/roomle-ui/commit/35a6cb8de353e1fb22b7c4c6d61f32ad99798bcf))
|
|
1598
|
+
* remove eslint problems ([c978433](https://github.com/roomle-dev/roomle-ui/commit/c9784331ecc31987aaf0c16477cd48ce2e7b6028))
|
|
1599
|
+
* remove event listener at correct position ([f2dfca4](https://github.com/roomle-dev/roomle-ui/commit/f2dfca4330d7c91abe9fd9dddaf8ac9e48b8ed78))
|
|
1600
|
+
* remove event listener onunmount ([93d3abf](https://github.com/roomle-dev/roomle-ui/commit/93d3abfe4e25255b834d4a941ad11aaa4ea05911))
|
|
1601
|
+
* remove eventListeners ([e206d30](https://github.com/roomle-dev/roomle-ui/commit/e206d3029d5bbcda6352b8de22955f7af364910f))
|
|
1602
|
+
* remove extra icon ([1b6030d](https://github.com/roomle-dev/roomle-ui/commit/1b6030d24da4e0a73a7c7354a5c4b19790f62595))
|
|
1603
|
+
* remove filename from url so we can add ar.html ([2df81ad](https://github.com/roomle-dev/roomle-ui/commit/2df81adf899369635edcecaa575f01b272f57ddf))
|
|
1604
|
+
* **AR:** remove flag for appless ar ([ad2a5a9](https://github.com/roomle-dev/roomle-ui/commit/ad2a5a9b51e00ba4cd92e54cffd0f9359b9a97f7))
|
|
1605
|
+
* remove hardcoded exclamation mark in generic error and rename called function for css of save draft button ([bfe5f48](https://github.com/roomle-dev/roomle-ui/commit/bfe5f48e3649c7271f978399be2bbbe1aa603d76))
|
|
1606
|
+
* remove leaking css, scoped was removed so we have to use BEM ([3d227e9](https://github.com/roomle-dev/roomle-ui/commit/3d227e911877960437d1e5cce952f5fb22a76cbe))
|
|
1607
|
+
* remove listener after component is destroyed fixes RML-6583 and fixes RML-6576 ([ba1a8bc](https://github.com/roomle-dev/roomle-ui/commit/ba1a8bc44bf40ffd163e1110f671766043e0ecdd))
|
|
1608
|
+
* remove loco key ([d54594b](https://github.com/roomle-dev/roomle-ui/commit/d54594b1c671214e6be6831f9b89247fb562080f))
|
|
1609
|
+
* remove methods ([80a14cf](https://github.com/roomle-dev/roomle-ui/commit/80a14cf44a29754f65bb3e2e95d7a30f0ead84da))
|
|
1610
|
+
* remove NSDB symbol ([bc8136b](https://github.com/roomle-dev/roomle-ui/commit/bc8136b0601fdd2a38b014b5337ac8ad7295d9a9))
|
|
1611
|
+
* remove objectCenter ([dd4128f](https://github.com/roomle-dev/roomle-ui/commit/dd4128f7bd849e647b491adef4a7e778380833b7))
|
|
1612
|
+
* remove old code ([ed9e369](https://github.com/roomle-dev/roomle-ui/commit/ed9e369758a305fe91fed6ee5dbff8bf13dbc043))
|
|
1613
|
+
* Remove onRequest overlay everywhere ([cc38c35](https://github.com/roomle-dev/roomle-ui/commit/cc38c35cbbec5edb04b976d1267f5cc6c9d26303))
|
|
1614
|
+
* remove options dropdown arrow duplicate ([2577c3b](https://github.com/roomle-dev/roomle-ui/commit/2577c3b9a5392ae648526a7bb9b23ce707ed899d))
|
|
1615
|
+
* remove provide ([2d33d59](https://github.com/roomle-dev/roomle-ui/commit/2d33d59f7f4a21f2ca625b32e4d39b7de939a5de))
|
|
1616
|
+
* remove red outline in Firefox ([27e55bb](https://github.com/roomle-dev/roomle-ui/commit/27e55bbe514d6a99da3e870862759d82b97182b8))
|
|
1617
|
+
* remove reference to $roomleSdkWrapper because only $sdkConnector should have access and fix all the tests ([8b43005](https://github.com/roomle-dev/roomle-ui/commit/8b43005a0803e46a3fbcb118009da036856c7e94))
|
|
1618
|
+
* remove remaining . accesses ([a85b9b0](https://github.com/roomle-dev/roomle-ui/commit/a85b9b0c1433548679525d84fc0640db2865af02))
|
|
1619
|
+
* remove setInterval on umount ([34e9cef](https://github.com/roomle-dev/roomle-ui/commit/34e9cef7158792ee6d15190d739faf59198c0a19))
|
|
1620
|
+
* remove setupInjects ([4cce46b](https://github.com/roomle-dev/roomle-ui/commit/4cce46b85ce5a20d35e156d523e5b2f087a87d10))
|
|
1621
|
+
* remove shadow ([1a83a7c](https://github.com/roomle-dev/roomle-ui/commit/1a83a7cb64a0f5ab441b4dfac63492ed28f0bc30))
|
|
1622
|
+
* remove some glitches ([b937f3a](https://github.com/roomle-dev/roomle-ui/commit/b937f3abe38f182ea6eafa2da953d018609adc39))
|
|
1623
|
+
* **AR:** remove svg from button to make iOS hack work again ([4b890a8](https://github.com/roomle-dev/roomle-ui/commit/4b890a8622c96793969b89642358b8d3a427bf8d))
|
|
1624
|
+
* remove tests which are now unnecessary ([720f2ed](https://github.com/roomle-dev/roomle-ui/commit/720f2ed03801da75c8951f47583386a8a3630814))
|
|
1625
|
+
* remove the wired callback registration from embedding example RML-4804 RML-4806 ([5ffb735](https://github.com/roomle-dev/roomle-ui/commit/5ffb735357447d355b3d616938394b9ea00436d9))
|
|
1626
|
+
* remove top margin from no docking overlay ([9d478ac](https://github.com/roomle-dev/roomle-ui/commit/9d478ac0d8ef119676da091f809219a103dfbc6b))
|
|
1627
|
+
* remove top-level await problem ([b0a1a2c](https://github.com/roomle-dev/roomle-ui/commit/b0a1a2c881bbfab9d933bb5ee9e63d3e0f0552d0))
|
|
1628
|
+
* remove ts error ([bfd5b02](https://github.com/roomle-dev/roomle-ui/commit/bfd5b02d7cadd81079ca3b21c62b7bce712dcd49))
|
|
1629
|
+
* remove ts errors ([9cb8145](https://github.com/roomle-dev/roomle-ui/commit/9cb81450c7d4e021808047db19b8fd3b3894512b))
|
|
1630
|
+
* remove tslint errors ([3267b28](https://github.com/roomle-dev/roomle-ui/commit/3267b28da395825202c7155a4a3a921782918323))
|
|
1631
|
+
* remove typo ([c0e05db](https://github.com/roomle-dev/roomle-ui/commit/c0e05db546e61d7688ca526dd7c4e3dc4d67757e))
|
|
1632
|
+
* remove unavailable uiActions call ([92ec365](https://github.com/roomle-dev/roomle-ui/commit/92ec3657831784a056352d1d0d885161fafad23a))
|
|
1633
|
+
* remove uneccesary check * minor ([3b0f5ff](https://github.com/roomle-dev/roomle-ui/commit/3b0f5ffcc06d37b0f5e26f959306e7f128d5efaa))
|
|
1634
|
+
* remove uneeded change ([4fb3c84](https://github.com/roomle-dev/roomle-ui/commit/4fb3c84306571b872dcff2c3a03fce6fea2dd425))
|
|
1635
|
+
* remove uneeded div, lengthen notification time ([db83a05](https://github.com/roomle-dev/roomle-ui/commit/db83a05091a521fa4a91f2abdae3eb49a61088b0))
|
|
1636
|
+
* remove uneeded param ([2906906](https://github.com/roomle-dev/roomle-ui/commit/2906906918172e77fc7b00ab31f3e3757ea705f3))
|
|
1637
|
+
* remove uneeded param ([d49ab87](https://github.com/roomle-dev/roomle-ui/commit/d49ab87131eeb38bfef18ab40413e54238fa0a81))
|
|
1638
|
+
* remove uneeded revalidation ([c48cf15](https://github.com/roomle-dev/roomle-ui/commit/c48cf15dd5105263f716b9e00116bf063f2b90b6))
|
|
1639
|
+
* remove uneeded revalidation ([f51770c](https://github.com/roomle-dev/roomle-ui/commit/f51770cab0c5b40b4a3a0d5c53403bbf3d63e959))
|
|
1640
|
+
* remove uneeded slot ([5f50c07](https://github.com/roomle-dev/roomle-ui/commit/5f50c070fcd3e648f6fa79025772050523b26b67))
|
|
1641
|
+
* remove unit type string support ([5bae5c7](https://github.com/roomle-dev/roomle-ui/commit/5bae5c7b4a368efe1019c13abc572f49057b5c7b))
|
|
1642
|
+
* remove unneccesary check ([f04f3ba](https://github.com/roomle-dev/roomle-ui/commit/f04f3ba8015ccd811a52a70435452a2dbc1ca96d))
|
|
1643
|
+
* remove unnecessary "as const" cast ([cfa30c7](https://github.com/roomle-dev/roomle-ui/commit/cfa30c791cd9fe70fe83d4e41469cab8e4f41b9c))
|
|
1644
|
+
* remove unused drag end event for possible children ([7a9c9c6](https://github.com/roomle-dev/roomle-ui/commit/7a9c9c65779cfdec49d7547dfb3f79e9042ede2a))
|
|
1645
|
+
* remove vite dependency cache ([f6e5bc2](https://github.com/roomle-dev/roomle-ui/commit/f6e5bc22f6aebdb80ac6c0b1aa6b4697f4cc25f8))
|
|
1646
|
+
* remove vue-select, we don't need it lol ([8405b28](https://github.com/roomle-dev/roomle-ui/commit/8405b28d32150d0643bee513d2c62077b82aa5ff))
|
|
1647
|
+
* remove yarn from package json script and change "serve" to "dev" in serveSdk ([e7f3806](https://github.com/roomle-dev/roomle-ui/commit/e7f38061b158ae2559df0b4b50d73e36f9544470))
|
|
1648
|
+
* remove-non-null ([8030b01](https://github.com/roomle-dev/roomle-ui/commit/8030b01d3f4739db1a1d64e4e4b5066751be40f5))
|
|
1649
|
+
* rename function ([883fb06](https://github.com/roomle-dev/roomle-ui/commit/883fb0623dc458fd3cff450391c94941108e46b4))
|
|
1650
|
+
* rename some stuff ([e3ac9f7](https://github.com/roomle-dev/roomle-ui/commit/e3ac9f73c2a2490e7bf0e499870c6b5558f2dcdd))
|
|
1651
|
+
* rename tooltip prop ([fc9dadc](https://github.com/roomle-dev/roomle-ui/commit/fc9dadc3aea5a5cb118feca2bcc259a236b78cc1))
|
|
1652
|
+
* rename var to isCameraIdle ([79bdb35](https://github.com/roomle-dev/roomle-ui/commit/79bdb352725064a8cc04dec0bb9634669950fa95))
|
|
1653
|
+
* render a blank column if article number is missing otherwise the table is broken ([d3b9b72](https://github.com/roomle-dev/roomle-ui/commit/d3b9b7292cd74acb54d10a3c1f759a6772ef8a0d))
|
|
1654
|
+
* replace calls in template ([ba1e127](https://github.com/roomle-dev/roomle-ui/commit/ba1e127e63c0c28c75cc841e41309eb2391d5b7f))
|
|
1655
|
+
* replace destroyed with unmounted ([2cd8ed3](https://github.com/roomle-dev/roomle-ui/commit/2cd8ed3eb0854ef75819001fecb054b86b385151))
|
|
1656
|
+
* replace done() callbakcs ([b87c81a](https://github.com/roomle-dev/roomle-ui/commit/b87c81a9f86c67899a97e72dcbdb343d7069b68f))
|
|
1657
|
+
* replace propoptions with proptype, remove inject-mimic-vue-3 ([9cf1cfa](https://github.com/roomle-dev/roomle-ui/commit/9cf1cfab944c5adafc1d23b1d4a6a9219011f289))
|
|
1658
|
+
* replace propsData with props ([cf3b5e0](https://github.com/roomle-dev/roomle-ui/commit/cf3b5e0c925520d741c7d463c28a45d3274dc94b))
|
|
1659
|
+
* replace qrcode.js with qrcode.vue ([0e199db](https://github.com/roomle-dev/roomle-ui/commit/0e199db5b457dbba7982a41293620cf73ff71ab6))
|
|
1660
|
+
* replace second level active with higher level sidebar ([8559289](https://github.com/roomle-dev/roomle-ui/commit/85592895859cd9b30ab55c8b4bced0b05754ffcf))
|
|
1661
|
+
* replace swap product icon ([03de21e](https://github.com/roomle-dev/roomle-ui/commit/03de21e389a5e02b31863c8df11e3ed198b92834))
|
|
1662
|
+
* reset camera in SOC ([3b62e38](https://github.com/roomle-dev/roomle-ui/commit/3b62e386e30cd54d3287ec3c04cb2747d547b7b2))
|
|
1663
|
+
* reset collection view if we load something new ([c760da1](https://github.com/roomle-dev/roomle-ui/commit/c760da14f1fdf477c399484731c72c2410f464af))
|
|
1664
|
+
* reset collection view when selecting an element ([238eaec](https://github.com/roomle-dev/roomle-ui/commit/238eaec3c3fdb69833daee30521a715ca021f0a0))
|
|
1665
|
+
* reset dom when calling teardown ([7190878](https://github.com/roomle-dev/roomle-ui/commit/71908785b0ada81e83effc9e9faa910e95b88a96))
|
|
1666
|
+
* reset package json ([052d977](https://github.com/roomle-dev/roomle-ui/commit/052d977f3e88a54125a625623de82fcb6ddd09f9))
|
|
1667
|
+
* reset package-lock ([8975faa](https://github.com/roomle-dev/roomle-ui/commit/8975faa9ba8fac9b008c93d874578f5eba84f8e9))
|
|
1668
|
+
* reset package-lock to master ([d18f200](https://github.com/roomle-dev/roomle-ui/commit/d18f200234e00772e65ea81227ffc754cc477a41))
|
|
1669
|
+
* reset test ([c1be3b6](https://github.com/roomle-dev/roomle-ui/commit/c1be3b64bc343fe735e676b0d5c23cea9f3a030a))
|
|
1670
|
+
* **MOC:** reset UI after going back to MOC from configurator ([884dbfa](https://github.com/roomle-dev/roomle-ui/commit/884dbfa420124e7fe1b400dd0552950d0dbd29dd))
|
|
1671
|
+
* **AR:** reset url scheme to intent ([e9ae846](https://github.com/roomle-dev/roomle-ui/commit/e9ae8462d98a3326edd2efe6f51bae8974674f0d))
|
|
1672
|
+
* reset value on error in asyncFunction composable ([cc8d776](https://github.com/roomle-dev/roomle-ui/commit/cc8d7762203e05564757e603c9c1a93dc0bebca5))
|
|
1673
|
+
* resizing should work if mobileLandscape configuring is possible ([e448f66](https://github.com/roomle-dev/roomle-ui/commit/e448f6631d54be08619651def30e77d5f9602803))
|
|
1674
|
+
* resolve RML-5524 and cancel selection if some mode button is clicked ([0930830](https://github.com/roomle-dev/roomle-ui/commit/0930830376c22e81db83d033b4ad73c3417bc9dd))
|
|
1675
|
+
* resolves CONF-267 so that "show less" is aligned correctly on iPhone ([f5b050e](https://github.com/roomle-dev/roomle-ui/commit/f5b050e62d0dc8f707b484d33962c22f3a3962f0))
|
|
1676
|
+
* resolves RML-373 so that always the last loaded ID is used for AR ([d3f2103](https://github.com/roomle-dev/roomle-ui/commit/d3f2103cbb62f5a7cd9acc780e4fab7c95e7629c))
|
|
1677
|
+
* resolves RML-4018 ([1d3601d](https://github.com/roomle-dev/roomle-ui/commit/1d3601d4c94fdfd2bd1b401924541430f127ef97))
|
|
1678
|
+
* respect order of root tags ([25c3ce1](https://github.com/roomle-dev/roomle-ui/commit/25c3ce14cb1fb45d3f794879587c0bf8905bc0a1))
|
|
1679
|
+
* responsive issues of addonsTrigger button and selectionbuttons ([5551d57](https://github.com/roomle-dev/roomle-ui/commit/5551d5701886fc8b73d1c7187eeefcc702db9e9c))
|
|
1680
|
+
* responsiveness ([8d2d16c](https://github.com/roomle-dev/roomle-ui/commit/8d2d16cff02f4840833d3ac6501a978da30c0525))
|
|
1681
|
+
* restore old behavior of static item viewer if it's not moc ([42da4b7](https://github.com/roomle-dev/roomle-ui/commit/42da4b7853279cbe58a6f8482ea6422a668d07e1))
|
|
1682
|
+
* retry tests, no cache ([bb92f1e](https://github.com/roomle-dev/roomle-ui/commit/bb92f1ebb06c90333a931a42897f2aeab3c840ce))
|
|
1683
|
+
* return canvas-container also if callback was faster than the await call ([a3894b8](https://github.com/roomle-dev/roomle-ui/commit/a3894b8bdeefeda90088944bf0828f085df2dac2))
|
|
1684
|
+
* return false on no tenant found ([bf97568](https://github.com/roomle-dev/roomle-ui/commit/bf97568a2c4af727a114aa2d93d983f9fc49e418))
|
|
1685
|
+
* return the return value which happens during message handling ([6521d60](https://github.com/roomle-dev/roomle-ui/commit/6521d6032e67bfee96fe88e24ab0c879f88808a1))
|
|
1686
|
+
* return value of sendMessage result ([a7bd260](https://github.com/roomle-dev/roomle-ui/commit/a7bd260380aac91687c3f5759ae474a8b8f3260e))
|
|
1687
|
+
* reuse the check icon from save draft for product id check for import product overlay RML-11492 ([4b7d085](https://github.com/roomle-dev/roomle-ui/commit/4b7d08511263802ca7cc09b360cd393e7724f43b))
|
|
1688
|
+
* revert api getter ([421341d](https://github.com/roomle-dev/roomle-ui/commit/421341df23fdc4d14970e71eb0a71df527d329ea))
|
|
1689
|
+
* revert buttons behavior ([319cbb1](https://github.com/roomle-dev/roomle-ui/commit/319cbb1b170a84aac7b22d31d9d66950c38a04a7))
|
|
1690
|
+
* revert problems with deepMerge and restore old behaviour, see: ([d77a7c7](https://github.com/roomle-dev/roomle-ui/commit/d77a7c73ac91c27f71c2cd70a6a7efac5b43b3fe))
|
|
1691
|
+
* revert topbar test ([8f8b708](https://github.com/roomle-dev/roomle-ui/commit/8f8b708a02ae11951d15a76fbc8e8a3e45229649))
|
|
1692
|
+
* revert TS changes ([b9bb6bc](https://github.com/roomle-dev/roomle-ui/commit/b9bb6bcaa5857ab96a14df98f37b1e7faa75d1f2))
|
|
1693
|
+
* revert tutorials data ([0bc0b97](https://github.com/roomle-dev/roomle-ui/commit/0bc0b970d3fa1dfc22d2e4a9472ac933ba6adc85))
|
|
1694
|
+
* rewrite tutorials data structure ([65e36e3](https://github.com/roomle-dev/roomle-ui/commit/65e36e3a95d97977037e2020f9960088f8bb1989))
|
|
1695
|
+
* RML-6372 RML-6373 RML-6375 ([eddbdf3](https://github.com/roomle-dev/roomle-ui/commit/eddbdf31ce3f57416ab8c18b667620bbab8bc24b))
|
|
1696
|
+
* Room Designer: we do not remember the previous room mode when entering the Configurator standalone mode ([7728813](https://github.com/roomle-dev/roomle-ui/commit/77288139d645dd8528201372382dba603f5af3cf))
|
|
1697
|
+
* RoomGeneralSettings does not show after deselecting floor on mobile while expanded view is open. ([c341ef3](https://github.com/roomle-dev/roomle-ui/commit/c341ef3ed0e2ab159fc182cc105742eef90afc24))
|
|
1698
|
+
* roomRangeParameter and refactor to composition ([9eccd88](https://github.com/roomle-dev/roomle-ui/commit/9eccd88c6bb5764aba274f88a8bf4b3d4bedd164))
|
|
1699
|
+
* RoomRangeParameter.spec.ts ([f727cb7](https://github.com/roomle-dev/roomle-ui/commit/f727cb7838d71ba73950e48ddd732cf2c23bc070))
|
|
1700
|
+
* RoomRangeParameter.spec.ts tests ([2aefa49](https://github.com/roomle-dev/roomle-ui/commit/2aefa49a6a88f2ac870a446d15074e8c779caddd))
|
|
1701
|
+
* RoomSidebar.spec.ts ([009eb1f](https://github.com/roomle-dev/roomle-ui/commit/009eb1fa7a49283a92457d9f8fcfa6fda09128de))
|
|
1702
|
+
* rotation indicator should not be selectable ([636407c](https://github.com/roomle-dev/roomle-ui/commit/636407c191666182419361c9a46891b8adf4a9f1))
|
|
1703
|
+
* rotation wrapper jumping to corner ([4c97ded](https://github.com/roomle-dev/roomle-ui/commit/4c97dedd6e83ec22baf9c3710bd69990e4695c89))
|
|
1704
|
+
* RotationButtonWrapper.spec.ts ([8c020f7](https://github.com/roomle-dev/roomle-ui/commit/8c020f701526e7e67fdb1d35ee5bee0a81d90e64))
|
|
1705
|
+
* round count in part list so that we do not have a strange number in there ([105505b](https://github.com/roomle-dev/roomle-ui/commit/105505bbaf1d4a629067691214815da967ff22ad))
|
|
1706
|
+
* RuAd + RD: Sort tag does not have an impact in RD catalog item order ([b428505](https://github.com/roomle-dev/roomle-ui/commit/b4285059767f7cb870af3207bcbb0da164b4f15f))
|
|
1707
|
+
* Rubens Configurator: grouped partlist layout broken ([97cdb8c](https://github.com/roomle-dev/roomle-ui/commit/97cdb8ce472b1686d45ae78ab6e061d5de6ae254))
|
|
1708
|
+
* Rubens MOC: opening the partlist and going back causes problems ([4d52572](https://github.com/roomle-dev/roomle-ui/commit/4d5257293be79007eedcc43928bc9bc73338c2cf))
|
|
1709
|
+
* safari rounded edges on icons ([5b8c2c0](https://github.com/roomle-dev/roomle-ui/commit/5b8c2c074fd24130f60ebab53493044d336fc64c))
|
|
1710
|
+
* SampleRooms.spec.ts ([9269664](https://github.com/roomle-dev/roomle-ui/commit/9269664ae8c246264b191a774eb5f544c59ee411))
|
|
1711
|
+
* save configuration before we share and export resolves RML-440 ([c2ea1a2](https://github.com/roomle-dev/roomle-ui/commit/c2ea1a210caa8d62fe52fc9ed1bcb6d91564b9c8))
|
|
1712
|
+
* save configuration when using save draft ([90ac1b2](https://github.com/roomle-dev/roomle-ui/commit/90ac1b26b39376924b357cff2a194fadc6a91c08))
|
|
1713
|
+
* save lastWalls in store so that they are not lost when the component is destroyed ([0229f4b](https://github.com/roomle-dev/roomle-ui/commit/0229f4befa82119c90bce7e50c4ee536d601dda5))
|
|
1714
|
+
* save the current configurations before onRequestPlan ([a683187](https://github.com/roomle-dev/roomle-ui/commit/a6831872cf473369ca88f36b73603972e3a820f4))
|
|
1715
|
+
* SaveDraft.spec.ts ([9b0ecd4](https://github.com/roomle-dev/roomle-ui/commit/9b0ecd46862ead65eca8db6214ed7b9a76fbd393))
|
|
1716
|
+
* scroll to the top of sidebar if parameter group got changed ([84619ae](https://github.com/roomle-dev/roomle-ui/commit/84619aedf2ba5b1af3fa1e40a43cb8ce04b30b37))
|
|
1717
|
+
* scrollHint.spec.ts ([114f9c2](https://github.com/roomle-dev/roomle-ui/commit/114f9c28df6652cf82e7ca975a02747eb4a8fe62))
|
|
1718
|
+
* scrollhint.vue ([5165807](https://github.com/roomle-dev/roomle-ui/commit/51658070334e8c4010ba51f2eb7ba5c82af58779))
|
|
1719
|
+
* sdk version ([67ace42](https://github.com/roomle-dev/roomle-ui/commit/67ace42837a86ea5c9c56fcdc6ace2d62389d821))
|
|
1720
|
+
* sdk-connector-planner.spec ([3919ff6](https://github.com/roomle-dev/roomle-ui/commit/3919ff6601de25c0002a9b17c517592b98b46e14))
|
|
1721
|
+
* select dropdown staying open ([d055b55](https://github.com/roomle-dev/roomle-ui/commit/d055b55a38581b530b7cd1b5866eb29bf4a9ace2))
|
|
1722
|
+
* selected element on configurator ([5aa7131](https://github.com/roomle-dev/roomle-ui/commit/5aa71316908337a65f4465192b4367d58273a0d4))
|
|
1723
|
+
* selection of material parameters on tooltip clicking ([c7d644b](https://github.com/roomle-dev/roomle-ui/commit/c7d644b1bfe3860e0250a5d0559a1210df254f86))
|
|
1724
|
+
* SelectionButtons.spec.ts ([175d0dc](https://github.com/roomle-dev/roomle-ui/commit/175d0dc565bbec0b8f22a501f9e6511e1de3ded9))
|
|
1725
|
+
* selectionPayload Overwrite ([30170c5](https://github.com/roomle-dev/roomle-ui/commit/30170c58a454be71e8ef1932ec09f244c9318ed2))
|
|
1726
|
+
* semi fix unit switch ([e294d78](https://github.com/roomle-dev/roomle-ui/commit/e294d7803ce4f069d41e94306ae4febe3fda697c))
|
|
1727
|
+
* send AR user actions when opened with a QR code ([b855cb2](https://github.com/roomle-dev/roomle-ui/commit/b855cb2f49a21fc81f9b1281f888cead305d5ba6))
|
|
1728
|
+
* send correct params to RAPI so that it does not cause a 500 error this closes RML-446 ([091de05](https://github.com/roomle-dev/roomle-ui/commit/091de05d5532985cb87fb513367871f609660561))
|
|
1729
|
+
* send correct user action on open AR ([acd6f20](https://github.com/roomle-dev/roomle-ui/commit/acd6f20e0644565ed860f0a30262ca1626b13575))
|
|
1730
|
+
* send save draft user action when sharing a configuration ([2c25fbf](https://github.com/roomle-dev/roomle-ui/commit/2c25fbffd5a2361c0ea23a2885a3353568ceab59))
|
|
1731
|
+
* send user action save draft when not using emails ([98545f3](https://github.com/roomle-dev/roomle-ui/commit/98545f3c40485ef32c594acd19dfe157473c6609))
|
|
1732
|
+
* separate productlist and partlist ([d3e6e6e](https://github.com/roomle-dev/roomle-ui/commit/d3e6e6ec6f68ac789164979f88e2ce7c70fd3f5d))
|
|
1733
|
+
* separate sidebar and topbar ([ae783e7](https://github.com/roomle-dev/roomle-ui/commit/ae783e79c10feb8697f7cb8dab9885f07945ea4e))
|
|
1734
|
+
* serveSdk folder should be web-sdk instead of roomle-threejs ([7b5640f](https://github.com/roomle-dev/roomle-ui/commit/7b5640ff7d377bd7684a6c03d89292725e8a6395))
|
|
1735
|
+
* set configurator hint closed state on stop configurating ([88e61ae](https://github.com/roomle-dev/roomle-ui/commit/88e61ae7c89cd03cba310640f9289743c1271f7d))
|
|
1736
|
+
* set correct base path for roomle.com and localhost ([bfebebb](https://github.com/roomle-dev/roomle-ui/commit/bfebebb567bbaf50f6064c911bcac1747f371aef))
|
|
1737
|
+
* set correct callback to enable undo and redo in MOC ([22b66ba](https://github.com/roomle-dev/roomle-ui/commit/22b66ba30f65925d5fde68db032762e72ad11286))
|
|
1738
|
+
* set correct mail type for save configuration ([0531717](https://github.com/roomle-dev/roomle-ui/commit/05317177d3bfa122cb0955f2da0b9916cd0c02e6))
|
|
1739
|
+
* **AR:** set correct url for copy button ([29c5acb](https://github.com/roomle-dev/roomle-ui/commit/29c5acb807564dc7403b2b45fa7fed577b7c7048))
|
|
1740
|
+
* set de translation for floor oclor ([43a6ac0](https://github.com/roomle-dev/roomle-ui/commit/43a6ac0f61fc9e16dad19f634da0c4a0f299b040))
|
|
1741
|
+
* set default element for collection view the first item in the list ([d5051c2](https://github.com/roomle-dev/roomle-ui/commit/d5051c244e2701a122c973032095b174d899f358))
|
|
1742
|
+
* set default floor tag ([f59ae69](https://github.com/roomle-dev/roomle-ui/commit/f59ae692ebe8268193b2f3a4cdfea7df540b45f0))
|
|
1743
|
+
* set demoConfigurator as default for CI builds ([caf1a5f](https://github.com/roomle-dev/roomle-ui/commit/caf1a5f6839cd9e61e1b3e7114fc059b35e043c1))
|
|
1744
|
+
* set first time room behavior correctly ([40bcd39](https://github.com/roomle-dev/roomle-ui/commit/40bcd39a294616ccaff04aa929ac2e9f5370c8f3))
|
|
1745
|
+
* set global init data as soon as we have the init data to prevent race conditions, ([997f70b](https://github.com/roomle-dev/roomle-ui/commit/997f70b606a3878035a35383c064feb865aa064d))
|
|
1746
|
+
* set is fullscreen on fp switch ([02b67e8](https://github.com/roomle-dev/roomle-ui/commit/02b67e88ea54aa20693daab2ced4ee71a6b8667d))
|
|
1747
|
+
* set isPlannerEditMode correctly to close RML-9776 ([dbb7752](https://github.com/roomle-dev/roomle-ui/commit/dbb7752012df0478dd6c0558a99f9f9b5ab97d63))
|
|
1748
|
+
* **MOC:** set plan/scene visibly when saving draft ([3fada4a](https://github.com/roomle-dev/roomle-ui/commit/3fada4a14f781fbd379926f817dd3c41d9675a1c))
|
|
1749
|
+
* set requestplan to true by default ([ca67565](https://github.com/roomle-dev/roomle-ui/commit/ca675651e25b996422aedb4b78173accdfc1cab9))
|
|
1750
|
+
* set system also ([553b3ad](https://github.com/roomle-dev/roomle-ui/commit/553b3ad83028ef1ebef0092c8df235dacdac2973))
|
|
1751
|
+
* set to undefined instead ([205c1d9](https://github.com/roomle-dev/roomle-ui/commit/205c1d900b65c142f92b5f28b39d584d16f6b87e))
|
|
1752
|
+
* set unit from unit formatter in sdk connector inits ([fb5b753](https://github.com/roomle-dev/roomle-ui/commit/fb5b753d92b941d14f6ec311f9470effe4fdecb1))
|
|
1753
|
+
* shift has to be used also if word is added to line ([c6a2c8b](https://github.com/roomle-dev/roomle-ui/commit/c6a2c8bb42bc52a5a7cc81b43478dd3b765f8795))
|
|
1754
|
+
* Shopping basket does not show correct number ([4642393](https://github.com/roomle-dev/roomle-ui/commit/46423931723dd67513ce787b0226352735ae0a62))
|
|
1755
|
+
* should cancel dockings and selection when i go back from configuring to planner ([70baa16](https://github.com/roomle-dev/roomle-ui/commit/70baa165089038bf25857e504a665c81ad4edb87))
|
|
1756
|
+
* should close fullscreen and interaction state when stop configuring ([87a9dea](https://github.com/roomle-dev/roomle-ui/commit/87a9dea2f3b857a898ce9cc259db50ad8e4a464c))
|
|
1757
|
+
* should close sidebar on selection cancel and select correct color when wall is selected ([a26ef5c](https://github.com/roomle-dev/roomle-ui/commit/a26ef5c6e961e916b736222eb02af10c24b52fb3))
|
|
1758
|
+
* should drag item in scene only on longTouch on mobile, activate fullscreen when drag item ([86bff9b](https://github.com/roomle-dev/roomle-ui/commit/86bff9bf0c227e3d379252b78192fb0ea18e016e))
|
|
1759
|
+
* should have unique entries in tabbed nav menu ([f6afb5b](https://github.com/roomle-dev/roomle-ui/commit/f6afb5b4be9833a704e54773d7c95ac404a1f87d))
|
|
1760
|
+
* should log error message if return type of callback is incorrect ([52b3923](https://github.com/roomle-dev/roomle-ui/commit/52b3923f70630f3edc38563acebe633d5c28114d))
|
|
1761
|
+
* should not close interaction menu but fullscreen ([0d04c28](https://github.com/roomle-dev/roomle-ui/commit/0d04c28b88cc668324866649bbde59b66eed6ca3))
|
|
1762
|
+
* should not close sidebar if change selection ([027fd9f](https://github.com/roomle-dev/roomle-ui/commit/027fd9fa9a6b1e10b8196153649d82e536ea9daf))
|
|
1763
|
+
* should not expand interaction container on mobile when sample rooms is toggled ([9e3608b](https://github.com/roomle-dev/roomle-ui/commit/9e3608b0883edcb00e61d21eb046171c94ab821a))
|
|
1764
|
+
* should only reject if a function does not return true or false, but if all undefined it should resolven ([8df6818](https://github.com/roomle-dev/roomle-ui/commit/8df6818288b92f42b54b876171c31ef2616beb6b))
|
|
1765
|
+
* should open configurator not in fullscreen when open from moc ([2e70157](https://github.com/roomle-dev/roomle-ui/commit/2e70157ee86a35948b8bc2601301c1fd07019370))
|
|
1766
|
+
* should select dimension button on callback call ([0a930f5](https://github.com/roomle-dev/roomle-ui/commit/0a930f55bd3fb56068cf9553366b946be11a83c0))
|
|
1767
|
+
* should show error message if input is too great or low ([36ea24b](https://github.com/roomle-dev/roomle-ui/commit/36ea24bc5981f729c901e925322a287e25a8bc59))
|
|
1768
|
+
* should use sdk module planner when init moc ([2f87eff](https://github.com/roomle-dev/roomle-ui/commit/2f87eff0d7eb98498ff9a67f55d23c070fb5edbc))
|
|
1769
|
+
* should wait for load when loading a item by set in the init data ([2fe82e6](https://github.com/roomle-dev/roomle-ui/commit/2fe82e63cde706b0fde4ec14b95c0622dff82100))
|
|
1770
|
+
* show all ([75355cc](https://github.com/roomle-dev/roomle-ui/commit/75355cc7775b3d6f3f55adf59268bd3758db8938))
|
|
1771
|
+
* show back to website button when on mobile ([9d0be7a](https://github.com/roomle-dev/roomle-ui/commit/9d0be7a30f0a47f354347b23d0c664070a4e4015))
|
|
1772
|
+
* show cart button ([1777408](https://github.com/roomle-dev/roomle-ui/commit/17774085f6a9718218d23c036501db4bddeaa6e7))
|
|
1773
|
+
* show catalog trigger only if there is any catalog to show ([aaff214](https://github.com/roomle-dev/roomle-ui/commit/aaff214c3b3a211a811f482243aaf8e94b0e6e07))
|
|
1774
|
+
* show close button of standalone views only on desktop ([34ba73f](https://github.com/roomle-dev/roomle-ui/commit/34ba73f728eb58ecab1022b755f3c1885485b913))
|
|
1775
|
+
* show close x in embedding when transitioning from mobile to desktop size after configuring, add test ([8de8063](https://github.com/roomle-dev/roomle-ui/commit/8de806399b651f7d7054f0a63b0ca378dd79237c))
|
|
1776
|
+
* show correct versions of UI and SDK ([e852a52](https://github.com/roomle-dev/roomle-ui/commit/e852a521b1db4be029c639d0a8e71bfe665d8c86))
|
|
1777
|
+
* show default wall dimensions when user has finished drawing ([1251eb8](https://github.com/roomle-dev/roomle-ui/commit/1251eb8c93c1dc220893862589b000886f2a94d5))
|
|
1778
|
+
* show delete button on top of addon button on mobile ([578e184](https://github.com/roomle-dev/roomle-ui/commit/578e184c5022150cb0f804eacd2c9b95a51057e2))
|
|
1779
|
+
* show error message if configurable or static item breaks when loading ([68f01b3](https://github.com/roomle-dev/roomle-ui/commit/68f01b31c5ad5b824237fefc2835b65e6b07021f))
|
|
1780
|
+
* show expanded collection view ([afddba3](https://github.com/roomle-dev/roomle-ui/commit/afddba39fa70f89433d669915d6dcdecf957c75e))
|
|
1781
|
+
* show fullscreen on init and expand sidebar if view has changed from mobile to desktop ([4562b68](https://github.com/roomle-dev/roomle-ui/commit/4562b685490cd13200935a44da48db04873a5512))
|
|
1782
|
+
* show loading screen when loading a plan object ([bc22350](https://github.com/roomle-dev/roomle-ui/commit/bc223501a42708717f0f44d1f78cdb6a3df4b4f8))
|
|
1783
|
+
* show only one overlay in sidebar ([bb8c8e6](https://github.com/roomle-dev/roomle-ui/commit/bb8c8e619a6809c63da59e3d4270de13d0ec2e78))
|
|
1784
|
+
* show part list button properly in moc ([88084a4](https://github.com/roomle-dev/roomle-ui/commit/88084a49c58698a4894dbd58b0d946df7f723756))
|
|
1785
|
+
* show partlist by default if moc=true and no walls ([f312a94](https://github.com/roomle-dev/roomle-ui/commit/f312a94cf589b8f59e4852660a9b531f3c7276c0))
|
|
1786
|
+
* show product list tooltip on ios ([2917a21](https://github.com/roomle-dev/roomle-ui/commit/2917a21c6e293718d42fff6ac56122093a1e99f4))
|
|
1787
|
+
* show rotation, duplicate on multi-select ([4c9dfac](https://github.com/roomle-dev/roomle-ui/commit/4c9dfac9098b0b76f7c0be16e51d81eb392e6598))
|
|
1788
|
+
* show the correct bottom bar label for both, moc and configurator ([ffa6c33](https://github.com/roomle-dev/roomle-ui/commit/ffa6c33d69f860a828f5685ad8ab4754d9265245))
|
|
1789
|
+
* show the currently selected color on the floor color picker ([99b1a9f](https://github.com/roomle-dev/roomle-ui/commit/99b1a9f8108c475d1c4b0795c1264b9b94743350))
|
|
1790
|
+
* show the sidebar by default ([666d5d5](https://github.com/roomle-dev/roomle-ui/commit/666d5d5bc73a302ba1d5c622c63eeaea5229825d))
|
|
1791
|
+
* show topleftbar in configurator ([075c2ea](https://github.com/roomle-dev/roomle-ui/commit/075c2ea4f45ccb1c6b14e0c451a212324db34c2b))
|
|
1792
|
+
* show wall dimensions after plan completely loaded ([2153769](https://github.com/roomle-dev/roomle-ui/commit/215376948dcbca1e29da3a47c03f3a91c1c11262))
|
|
1793
|
+
* showing mobile view menu ([41d4e1f](https://github.com/roomle-dev/roomle-ui/commit/41d4e1fc17110b3a9c7fd157cbcfe335940dcc5e))
|
|
1794
|
+
* ShowWallMeasurements.spec ([fd4c1c7](https://github.com/roomle-dev/roomle-ui/commit/fd4c1c76e019187a9107aac2d31d193e526b4cbd))
|
|
1795
|
+
* sidebar ([850f59b](https://github.com/roomle-dev/roomle-ui/commit/850f59b3f32e17670aca84cb4617224b47d5cf06))
|
|
1796
|
+
* sidebar icon spacing ([b633291](https://github.com/roomle-dev/roomle-ui/commit/b6332913bb0c7cf3dc00e4ff9bc7c77e7b13097e))
|
|
1797
|
+
* sidebar should also close if i deselect a item ([d07a00e](https://github.com/roomle-dev/roomle-ui/commit/d07a00e971ccf95a3fbf6bcd8053fff8a571a366))
|
|
1798
|
+
* sidebar should be opened again after dragged in a object ([ba06ddc](https://github.com/roomle-dev/roomle-ui/commit/ba06ddc10bdfef45bd525168fa1a5459ade3795f))
|
|
1799
|
+
* SidebarNav.spec.ts ([b435d8e](https://github.com/roomle-dev/roomle-ui/commit/b435d8e244912579d5a793160a1e3418ff092570))
|
|
1800
|
+
* Size of configuration different in Room Designer and SoC ([cf514d4](https://github.com/roomle-dev/roomle-ui/commit/cf514d4e79cfdb8397df9f9780ac61418dd42fab))
|
|
1801
|
+
* skip domain check for configurator on localhost ([844e83e](https://github.com/roomle-dev/roomle-ui/commit/844e83e560f508b14b9bca701da8c962160b76c4))
|
|
1802
|
+
* small design glitches for unit switch and rangslider input field ([ffb67f4](https://github.com/roomle-dev/roomle-ui/commit/ffb67f42b6eb7f15e6e290a853315fc13c49a46c))
|
|
1803
|
+
* SOC: AR is broken on alpha ([a0b0b7d](https://github.com/roomle-dev/roomle-ui/commit/a0b0b7defe11c9258f82be67aad8d449ab9c47e4))
|
|
1804
|
+
* SOC: delete warning overlay buttons misaligned ([1028832](https://github.com/roomle-dev/roomle-ui/commit/1028832a2802b8192bc49405b87ea0a1bcc69293))
|
|
1805
|
+
* SOC: Disabled parameters overlays is not set correctly RML-6197 ([3f19011](https://github.com/roomle-dev/roomle-ui/commit/3f190116e8ed105a111c0118a388de1bf8235a9e))
|
|
1806
|
+
* SOC: multi-select icon is missing RML-6192 ([13ee2a4](https://github.com/roomle-dev/roomle-ui/commit/13ee2a4e86c5e7fcf4bbb5405bd66b8c44e8efe8))
|
|
1807
|
+
* SOC: navigating through context bar item is jumping on mobile RML-6194 ([6b2d2e7](https://github.com/roomle-dev/roomle-ui/commit/6b2d2e7c4957c738886e494a2c8cf54705b24ed2))
|
|
1808
|
+
* SOC: onPlanChanged is not called for some objects ids ([e652837](https://github.com/roomle-dev/roomle-ui/commit/e6528370d3e64c740bf8daae3d41258ebef3406e))
|
|
1809
|
+
* SOC: Parameters group is not transitioned when we click continue button in the interaction container ([22e9d26](https://github.com/roomle-dev/roomle-ui/commit/22e9d2618f6ead8d0804c012cf91d30a5c37377d))
|
|
1810
|
+
* SOC: show save button if the button inside the init data ([fb1429f](https://github.com/roomle-dev/roomle-ui/commit/fb1429ff21fa08d19205c77bf03f86fafc6433ac))
|
|
1811
|
+
* SOC: wrong delete button position RML-6193 ([0dbf55b](https://github.com/roomle-dev/roomle-ui/commit/0dbf55bb07db95a540c8551d2f522897a251b573))
|
|
1812
|
+
* SOC: wrong overflow on mobile screens and wrong borders ([5a09c75](https://github.com/roomle-dev/roomle-ui/commit/5a09c75b72df48b4a9286fd726dace3cd6b6b5b5))
|
|
1813
|
+
* SOC/MOC AR interstitial page broken ([1dfb9f2](https://github.com/roomle-dev/roomle-ui/commit/1dfb9f258551338c81c4bc765734297e1620f5c3))
|
|
1814
|
+
* some glitches ([716cd05](https://github.com/roomle-dev/roomle-ui/commit/716cd058379be72f9699a5bd1f01fa9b08ca96de))
|
|
1815
|
+
* some minor CSS glitches ([19320c5](https://github.com/roomle-dev/roomle-ui/commit/19320c5a970a01d8ed2b458939f49526c214a170))
|
|
1816
|
+
* some minor glitches ([becb694](https://github.com/roomle-dev/roomle-ui/commit/becb6945fa1fb6fe720fd6ea5230c5739fbf6f15))
|
|
1817
|
+
* some more stuff ([ec59fdb](https://github.com/roomle-dev/roomle-ui/commit/ec59fdb2f1d54a71edd978998aec5e612b1febe8))
|
|
1818
|
+
* some more tests ([dd8d3d1](https://github.com/roomle-dev/roomle-ui/commit/dd8d3d1f7e2ebe1fd8a012a19700a1b2c2f8eb81))
|
|
1819
|
+
* some stuff ([90c3171](https://github.com/roomle-dev/roomle-ui/commit/90c3171c8d20d7d4095a96b9162c523a5fe1155a))
|
|
1820
|
+
* some tests ([361c832](https://github.com/roomle-dev/roomle-ui/commit/361c8323cf7330569495248aca07dfa7f7a5a4bb))
|
|
1821
|
+
* some tests ([9996901](https://github.com/roomle-dev/roomle-ui/commit/999690176a721ab6d9ffbe8ed488fbd231267519))
|
|
1822
|
+
* some tests and some new ones ([4450518](https://github.com/roomle-dev/roomle-ui/commit/44505184488cddbceca634f2d1c01e6f48ea0b80))
|
|
1823
|
+
* some ts errors ([21932d6](https://github.com/roomle-dev/roomle-ui/commit/21932d644e0de3a5431e53d2d646361a41e9d502))
|
|
1824
|
+
* Sometimes translations are only loaded partially ([64bd5ae](https://github.com/roomle-dev/roomle-ui/commit/64bd5ae3e2885991827cb50ac948686b677a043e))
|
|
1825
|
+
* sonarqube import exception on CI ([3ead9f5](https://github.com/roomle-dev/roomle-ui/commit/3ead9f5aa0345e5857c930731b8c0a444651d9b2))
|
|
1826
|
+
* SonarQube randomly failing in roomle-ui ([6e56843](https://github.com/roomle-dev/roomle-ui/commit/6e56843630b2498c8b79c67a19b4259c7161935e))
|
|
1827
|
+
* start correct configurator in embedding demo page ([0c0f971](https://github.com/roomle-dev/roomle-ui/commit/0c0f9714ccb6e80e1a52380bac6f770d63464390))
|
|
1828
|
+
* start planner button should ned be displayed on the very right side ([aad2dd0](https://github.com/roomle-dev/roomle-ui/commit/aad2dd0c8a7e0d7a8265b2fecfd4371d63812605))
|
|
1829
|
+
* stop configuration button is not circular on expand false ([3898771](https://github.com/roomle-dev/roomle-ui/commit/3898771b69c441587d71bcc393ced66978d5d015))
|
|
1830
|
+
* stop configuring before loading planXML in moc while SoCing ([4d56032](https://github.com/roomle-dev/roomle-ui/commit/4d56032b9cb3afe741d456951571ca17d5403add))
|
|
1831
|
+
* **variants:** stop showing variants if we switch to another group ([53455fd](https://github.com/roomle-dev/roomle-ui/commit/53455fd8aa81d1c3c29dd95d5a2489f869831709))
|
|
1832
|
+
* StopConfiguringButton.spec.ts ([1abd387](https://github.com/roomle-dev/roomle-ui/commit/1abd38767f9981d46c2ef46da19457361fd0cf0d))
|
|
1833
|
+
* store references ([86373a6](https://github.com/roomle-dev/roomle-ui/commit/86373a629394b7c8520bcf4ca35dcf86785b5e55))
|
|
1834
|
+
* store.state.isplanner accesses ([60a5ff3](https://github.com/roomle-dev/roomle-ui/commit/60a5ff387440ef7201ba8bb7f6eca8f6e2d9e964))
|
|
1835
|
+
* style again ([afd813a](https://github.com/roomle-dev/roomle-ui/commit/afd813a10e8fd034384bcd85dbb96679618a4d70))
|
|
1836
|
+
* style checkbox individually, closes RML-484 ([2c43f60](https://github.com/roomle-dev/roomle-ui/commit/2c43f60268aeb0427c54315e967ad0f142dfedbb))
|
|
1837
|
+
* style issues, fonts, height-container margins ([42547cf](https://github.com/roomle-dev/roomle-ui/commit/42547cf8c20eeb6ae0399f51e566a641d413c33e))
|
|
1838
|
+
* style, mobile tooltip width ([89ef018](https://github.com/roomle-dev/roomle-ui/commit/89ef0185f14e4cbf9d1804224285233e1cfbc65a))
|
|
1839
|
+
* submit onBlur for measurements in 2D ([164e71b](https://github.com/roomle-dev/roomle-ui/commit/164e71bc78fa92dcc75939533f345448679ab506))
|
|
1840
|
+
* supply partlist with api prop ([2c45a82](https://github.com/roomle-dev/roomle-ui/commit/2c45a82b9058f9ea2b207c71ead4dc60470e9300))
|
|
1841
|
+
* supposed to be 4rem ([cfc71e5](https://github.com/roomle-dev/roomle-ui/commit/cfc71e55e7d3f1e7ed6ccfd28098d4ab6d091d1b))
|
|
1842
|
+
* svg icon dimensions to 32x32, only show button while configuring in planner ([7e65bd6](https://github.com/roomle-dev/roomle-ui/commit/7e65bd6e2b131ce6a889eca458a47fa45a581b8a))
|
|
1843
|
+
* svg import issue ([4ebb43d](https://github.com/roomle-dev/roomle-ui/commit/4ebb43dbcae01987329c04205fe0cfd89c59f296))
|
|
1844
|
+
* swap element tooltip side to correct side in collectionView ([768e3bf](https://github.com/roomle-dev/roomle-ui/commit/768e3bf6abbe7c8eabcf24c0c317002473552a5a))
|
|
1845
|
+
* switch button is missing in the flying menu ([a8c5278](https://github.com/roomle-dev/roomle-ui/commit/a8c527830f7771f6bbf2b57cc6417d45105f75cb))
|
|
1846
|
+
* switch margin from left to right so that there are no problems on line break ([498a35a](https://github.com/roomle-dev/roomle-ui/commit/498a35a6f149f70f0f3e5248ec8e178ab1541ac8))
|
|
1847
|
+
* switch to 3d mode when configuring ([381d381](https://github.com/roomle-dev/roomle-ui/commit/381d381603e6a701f90d5f3694f3217dc1b95dd1))
|
|
1848
|
+
* tabbed nav keys ([16a1994](https://github.com/roomle-dev/roomle-ui/commit/16a199460c7d01b5fd45e9ef149e76d7ee24eff4))
|
|
1849
|
+
* tabbed-nav can now take also the second element as selected ([f76ed87](https://github.com/roomle-dev/roomle-ui/commit/f76ed87d9f5c7730599cfdfd94eb9ac8fa5cc520))
|
|
1850
|
+
* tabbedNav toggle button ([45b4758](https://github.com/roomle-dev/roomle-ui/commit/45b47580838b70e9667eb2fa81a6fd70c82b8e54))
|
|
1851
|
+
* tabbedNav tooltips, tests ([f7dc61b](https://github.com/roomle-dev/roomle-ui/commit/f7dc61b47eddd58e88478ff16e6a0ef6c5eb66d4))
|
|
1852
|
+
* TabbedNav.spec.ts ([3805c17](https://github.com/roomle-dev/roomle-ui/commit/3805c179861a94dbdad63593fd5c4c85014741bf))
|
|
1853
|
+
* temp ([76567a5](https://github.com/roomle-dev/roomle-ui/commit/76567a58ca221e7a52d1d071ed3cf7b836d0f881))
|
|
1854
|
+
* test ([35d781f](https://github.com/roomle-dev/roomle-ui/commit/35d781fdfe6f39c84b5bfc7b96a0523a44ab83f3))
|
|
1855
|
+
* test ([183e488](https://github.com/roomle-dev/roomle-ui/commit/183e488134ce973b128551705905987d2ca90bfe))
|
|
1856
|
+
* test ([b0741e9](https://github.com/roomle-dev/roomle-ui/commit/b0741e97496ce3a34a7ed1cbc865d95266d887ac))
|
|
1857
|
+
* test ([cc997a3](https://github.com/roomle-dev/roomle-ui/commit/cc997a3cf5f877435874c88b4309a757d9d6016b))
|
|
1858
|
+
* test ([6943a86](https://github.com/roomle-dev/roomle-ui/commit/6943a862a39cf5eff88838e25e1e5fba3b3ddddd))
|
|
1859
|
+
* test ([33be841](https://github.com/roomle-dev/roomle-ui/commit/33be841d2335f63b44130202b7ebc6c47b922c43))
|
|
1860
|
+
* test ([f7b3194](https://github.com/roomle-dev/roomle-ui/commit/f7b3194a31271a046f8d385dfc41e9ec5c433a85))
|
|
1861
|
+
* test correct snapshot ([f371974](https://github.com/roomle-dev/roomle-ui/commit/f371974a6c56d033218ef46c6c7a62c51f7a94eb))
|
|
1862
|
+
* test name * minor (*minor) ([fe05962](https://github.com/roomle-dev/roomle-ui/commit/fe05962680326a56c6f2a6556a630c5a03632bea))
|
|
1863
|
+
* test script for changes ([34680ea](https://github.com/roomle-dev/roomle-ui/commit/34680ea320a860bdbcd24ad381671c95c5bced54))
|
|
1864
|
+
* testing mobile ([80af15b](https://github.com/roomle-dev/roomle-ui/commit/80af15b4dff170fba580b27f4982d88eae08d341))
|
|
1865
|
+
* tests ([ec1ed7d](https://github.com/roomle-dev/roomle-ui/commit/ec1ed7dc66282e99454c1720eac4f1098b97ebc4))
|
|
1866
|
+
* tests ([e2e4081](https://github.com/roomle-dev/roomle-ui/commit/e2e4081febfde06dcc791f0ef85eff0ccf4b5f25))
|
|
1867
|
+
* tests ([6467e4e](https://github.com/roomle-dev/roomle-ui/commit/6467e4e4a936d7d7602e221533518af65300eb66))
|
|
1868
|
+
* tests ([d11ae35](https://github.com/roomle-dev/roomle-ui/commit/d11ae356b98248a621fe88f8bf3aa13702ea4322))
|
|
1869
|
+
* tests ([aa37fa6](https://github.com/roomle-dev/roomle-ui/commit/aa37fa6069d3f4775957ee13238b76385956f010))
|
|
1870
|
+
* tests ([2795afb](https://github.com/roomle-dev/roomle-ui/commit/2795afb236a4be1a415ea636213213b7b28152f8))
|
|
1871
|
+
* tests ([b9c6a2d](https://github.com/roomle-dev/roomle-ui/commit/b9c6a2dbafdbb2b952d593f45c953294c41a343e))
|
|
1872
|
+
* tests ([72a8145](https://github.com/roomle-dev/roomle-ui/commit/72a8145a99761520c124c20d85479590da83d84d))
|
|
1873
|
+
* tests ([1466e6e](https://github.com/roomle-dev/roomle-ui/commit/1466e6ee6d3382dd27640f8e0e62c65faeeb9ffc))
|
|
1874
|
+
* tests ([6993d6f](https://github.com/roomle-dev/roomle-ui/commit/6993d6f9eaae8d9154ff8eebb8747b2b2245807f))
|
|
1875
|
+
* tests ([0b81859](https://github.com/roomle-dev/roomle-ui/commit/0b8185948d6484f5d6f35b843778498dba10e378))
|
|
1876
|
+
* tests ([570b853](https://github.com/roomle-dev/roomle-ui/commit/570b853cb4738b969ea7190e8bda06b597719e89))
|
|
1877
|
+
* tests ([372f088](https://github.com/roomle-dev/roomle-ui/commit/372f0885590b158acb0a25fc28b2c88be32e6a40))
|
|
1878
|
+
* tests ([952aeed](https://github.com/roomle-dev/roomle-ui/commit/952aeed58755cdeaffb45607475753819464b098))
|
|
1879
|
+
* tests ([a80780b](https://github.com/roomle-dev/roomle-ui/commit/a80780b4c54e2123a13c87e496c6a090d2234087))
|
|
1880
|
+
* tests ([2337e31](https://github.com/roomle-dev/roomle-ui/commit/2337e3128e2ceb1e8c10214a1535adbc2f8a9b5a))
|
|
1881
|
+
* tests ([52c6177](https://github.com/roomle-dev/roomle-ui/commit/52c6177b66f1dfbfb782e256bcc9f2015edf66a5))
|
|
1882
|
+
* tests ([e022f25](https://github.com/roomle-dev/roomle-ui/commit/e022f251adac7f1215e6e50f0ae9f871fb6beb50))
|
|
1883
|
+
* tests ([4a716ab](https://github.com/roomle-dev/roomle-ui/commit/4a716ab073344570c8e5f2a67e5f1d3c9d7bd15f))
|
|
1884
|
+
* tests, a bunch of feedback fixes, etc ([ccb4a1a](https://github.com/roomle-dev/roomle-ui/commit/ccb4a1ae3ce6da3f18617c95e15fb0c1608b8bed))
|
|
1885
|
+
* tests, remove unused code ([b10e022](https://github.com/roomle-dev/roomle-ui/commit/b10e02212d51f81cc4b379c4006c10ff2792a95e))
|
|
1886
|
+
* testss ([50151cf](https://github.com/roomle-dev/roomle-ui/commit/50151cf0d2c6a0270c36d667dff3d71c8f7a59df))
|
|
1887
|
+
* The burger icon has wrong active state on edit mode ([05ff459](https://github.com/roomle-dev/roomle-ui/commit/05ff459447a5d7f737705c08a60bfa72fe149fdc))
|
|
1888
|
+
* The rotation icon is broken on mobile on expanding action-buttons ([736e9f8](https://github.com/roomle-dev/roomle-ui/commit/736e9f815f5c14cbeb8979928666e2e3cc30303e))
|
|
1889
|
+
* The rotation icon is not updated in position when changing the position of the object ([687af9b](https://github.com/roomle-dev/roomle-ui/commit/687af9b0813e4da54ac21a009d33666c6923539e))
|
|
1890
|
+
* ThumbnailsParameter.spec.ts ([fba856d](https://github.com/roomle-dev/roomle-ui/commit/fba856d0fd2084542dfea4de68f3e97ce3122115))
|
|
1891
|
+
* toggle expand ([1706f0d](https://github.com/roomle-dev/roomle-ui/commit/1706f0dda0b0caf0a7e7ff463cd3aa078eef286d))
|
|
1892
|
+
* toggle interaction expanded when clicking on partlist on configurator ([27563e6](https://github.com/roomle-dev/roomle-ui/commit/27563e6d6aff4ddf0780aa3b867600d46e9bb734))
|
|
1893
|
+
* toggle work also on mobile ([dab5f1c](https://github.com/roomle-dev/roomle-ui/commit/dab5f1c5fc7e9a6a2ab7f87c9b6503489c7c1aa6))
|
|
1894
|
+
* tooltip icon is displayed with empty content ([aac09c8](https://github.com/roomle-dev/roomle-ui/commit/aac09c85ee1a7fccb180ab63c03cac549fad1136))
|
|
1895
|
+
* Tooltip.spec ([9c6c7a4](https://github.com/roomle-dev/roomle-ui/commit/9c6c7a40f9c0082b0b3fa172ed27ba827fec4658))
|
|
1896
|
+
* tooltip.vue types ([9f5478d](https://github.com/roomle-dev/roomle-ui/commit/9f5478d4c4891f6934658bc6e0ae234c18080c44))
|
|
1897
|
+
* top bar selected action refactoring rightly ([ecb00f5](https://github.com/roomle-dev/roomle-ui/commit/ecb00f5682068c35e88193fdf205ad81bc071900))
|
|
1898
|
+
* topBar.spec ([79e1e45](https://github.com/roomle-dev/roomle-ui/commit/79e1e45dd171e1813117944b97e2895c9629d420))
|
|
1899
|
+
* topbarWrapper.vue slots ([6e4c18c](https://github.com/roomle-dev/roomle-ui/commit/6e4c18cc5fab3425908f5ff7c745c6a0ed7c7ba5))
|
|
1900
|
+
* touch drag should be only triggered if there is not too much x movement ([5a1261e](https://github.com/roomle-dev/roomle-ui/commit/5a1261e2680e4c36137005baee8fa699f9d0584e))
|
|
1901
|
+
* tpyes ([c64395e](https://github.com/roomle-dev/roomle-ui/commit/c64395eb84a43710be2ee2156ebb64df1d322a29))
|
|
1902
|
+
* transform add product button to a a toggle button which does not hide ([d91295e](https://github.com/roomle-dev/roomle-ui/commit/d91295ee56aa26c2934d4c5ea861daeb98ae2fb8))
|
|
1903
|
+
* transparency & showing current btn ([d1fb8a3](https://github.com/roomle-dev/roomle-ui/commit/d1fb8a3e12b2c5fe75c9cbf2fe7c9517e0659168))
|
|
1904
|
+
* treat values which are below one feet and do not have decimals correctly ([5a5a77a](https://github.com/roomle-dev/roomle-ui/commit/5a5a77a051c26b943ce83e02d20e26e8eb87fe13))
|
|
1905
|
+
* try awaits in flaky test ([e9958c0](https://github.com/roomle-dev/roomle-ui/commit/e9958c03db064d32064e74430721adf3d2512132))
|
|
1906
|
+
* try check for constructionProduct ([ca723d9](https://github.com/roomle-dev/roomle-ui/commit/ca723d9498f0862665af78469c415787727202e5))
|
|
1907
|
+
* try find initData id if configuratorContext IDs are not there ([345b7c2](https://github.com/roomle-dev/roomle-ui/commit/345b7c2cb978099bbf7719ddf50be0d33daf420a))
|
|
1908
|
+
* try get currency symbol from partlist ([f922afd](https://github.com/roomle-dev/roomle-ui/commit/f922afd5074031bc319265e9c00456e8efe0666d))
|
|
1909
|
+
* try it in another place ([80db675](https://github.com/roomle-dev/roomle-ui/commit/80db675f76166c765b42d208b7ab23bc87488fbc))
|
|
1910
|
+
* try it in another place again ([07e93db](https://github.com/roomle-dev/roomle-ui/commit/07e93db0d5f3f6fb33f7e9182b84c8d2115d655f))
|
|
1911
|
+
* try to fix base path issue for more details see: ([fd42106](https://github.com/roomle-dev/roomle-ui/commit/fd4210651f2f6138a31ecd91ac0ce6fe43b177d7))
|
|
1912
|
+
* try to record the un-mocked requests if we have scene interaction after page evaluation ([b13d575](https://github.com/roomle-dev/roomle-ui/commit/b13d575802c6e4f425860bc7cdc6a4930e8507fb))
|
|
1913
|
+
* try to remove the Conflicting order in the UI project build in gitlab ([7ce8d42](https://github.com/roomle-dev/roomle-ui/commit/7ce8d428514d0202afc205b3944494aa57c79434))
|
|
1914
|
+
* try updated package-lock.json so that it does not fail on gitlab.com ([0b78260](https://github.com/roomle-dev/roomle-ui/commit/0b7826028cdd03e4beb6c6ba4a8892fc6bbb23dd))
|
|
1915
|
+
* ts FlyingMenu ([a95a8f1](https://github.com/roomle-dev/roomle-ui/commit/a95a8f188518c3df7ba6704a62c6af2f5044bfe9))
|
|
1916
|
+
* ts FlyingMenu ([d364ef1](https://github.com/roomle-dev/roomle-ui/commit/d364ef1f84c7b1225f0f7b97fc18680d902df51b))
|
|
1917
|
+
* ts openAR ([ca82d5c](https://github.com/roomle-dev/roomle-ui/commit/ca82d5c506b166f9719c303b3395550190f86c59))
|
|
1918
|
+
* ts openAR ([77bdb47](https://github.com/roomle-dev/roomle-ui/commit/77bdb47d5e4f8dedf4ae11b2f6e9d7309c416eb4))
|
|
1919
|
+
* ts partlist-setup ([f0e45a6](https://github.com/roomle-dev/roomle-ui/commit/f0e45a6fbf484297e9f3acab534a9dc7ef6ed8b7))
|
|
1920
|
+
* ts partlist-setup ([6a4577b](https://github.com/roomle-dev/roomle-ui/commit/6a4577b8866e3601a7518af67562e4212875d12c))
|
|
1921
|
+
* ts use-planner-actions-visibility.ts ([22277bc](https://github.com/roomle-dev/roomle-ui/commit/22277bc85a9585919dffcacb5e2d1229e9eed846))
|
|
1922
|
+
* ts use-planner-actions-visibility.ts ([569f54a](https://github.com/roomle-dev/roomle-ui/commit/569f54aa776a4eafd29a70a2af30ec07aa2e4e26))
|
|
1923
|
+
* ts-lint warnings ([b02659e](https://github.com/roomle-dev/roomle-ui/commit/b02659eeaf1b8db76f1f1654fce9c860f7a6f6c3))
|
|
1924
|
+
* tslint error ([54fa29e](https://github.com/roomle-dev/roomle-ui/commit/54fa29eb2d0dac0df702693914c7b3880ebc1c26))
|
|
1925
|
+
* tslint error ([60bdf3f](https://github.com/roomle-dev/roomle-ui/commit/60bdf3f2544e63b7b6368f4735d98c215d3ebb3a))
|
|
1926
|
+
* type * minor (* minor) ([a57b3a4](https://github.com/roomle-dev/roomle-ui/commit/a57b3a40b9fafdc8de5643a210afbd81c99b8a84))
|
|
1927
|
+
* type check on interface RoomlePlanner ([a749571](https://github.com/roomle-dev/roomle-ui/commit/a749571339b04599659f9950526d1db323f39a2c))
|
|
1928
|
+
* type errors ([fa1c9f4](https://github.com/roomle-dev/roomle-ui/commit/fa1c9f407f3c7dca419f2593d7edc240a0018f3a))
|
|
1929
|
+
* type import * minor (* minor) ([3fd25cd](https://github.com/roomle-dev/roomle-ui/commit/3fd25cd6aae0acb8584faf061ebf97a0045d03de))
|
|
1930
|
+
* type inferences ([9fe520f](https://github.com/roomle-dev/roomle-ui/commit/9fe520f8572eef3d33a2c58e101911e6cde169bc))
|
|
1931
|
+
* type inferences ([7f3faf9](https://github.com/roomle-dev/roomle-ui/commit/7f3faf9cdb345b556766242555a51f2880a30ca8))
|
|
1932
|
+
* type issue ([3005700](https://github.com/roomle-dev/roomle-ui/commit/3005700752d5f2131477a8bed4c3594a22880677))
|
|
1933
|
+
* type lint fail and jsdoc warning ([475358f](https://github.com/roomle-dev/roomle-ui/commit/475358fef496f10189de3e3372b2e4e75e84b6db))
|
|
1934
|
+
* types ([98acd21](https://github.com/roomle-dev/roomle-ui/commit/98acd21d62d6c7f2c1ed786db42f5722055118a1))
|
|
1935
|
+
* types ([eff15aa](https://github.com/roomle-dev/roomle-ui/commit/eff15aafef95176bea3cb2e8d185ec9c6d27c9a7))
|
|
1936
|
+
* types ([f62c3bb](https://github.com/roomle-dev/roomle-ui/commit/f62c3bba50c41b7c6990341329d4d3d7bbf201f4))
|
|
1937
|
+
* types ([de3181a](https://github.com/roomle-dev/roomle-ui/commit/de3181a4ba555ecc9892dc4f98baf3e101273f76))
|
|
1938
|
+
* types ([48a4ab2](https://github.com/roomle-dev/roomle-ui/commit/48a4ab27c8a0f95dd969d60a85a9af65f5abb6bf))
|
|
1939
|
+
* types ([359c16f](https://github.com/roomle-dev/roomle-ui/commit/359c16f14e372559ab027b7cdaa52b4102173d8e))
|
|
1940
|
+
* types ([4b782ff](https://github.com/roomle-dev/roomle-ui/commit/4b782ff1048b7d1156c4c5d47f6a0ff301802dd2))
|
|
1941
|
+
* types ([9b78309](https://github.com/roomle-dev/roomle-ui/commit/9b78309f58d5aa2b814477872465184250fb535e))
|
|
1942
|
+
* types ([14be31b](https://github.com/roomle-dev/roomle-ui/commit/14be31b0022a172ed8cfddbf5282f9b3ca333a01))
|
|
1943
|
+
* types ([700c73e](https://github.com/roomle-dev/roomle-ui/commit/700c73e6ff866bebb2ba28c463303668c4c3d9f7))
|
|
1944
|
+
* types * minor (* minor) ([2e31689](https://github.com/roomle-dev/roomle-ui/commit/2e31689da97e4e7b553023a57bbb5512bd2d1185))
|
|
1945
|
+
* types * minor (* minor) ([83b9add](https://github.com/roomle-dev/roomle-ui/commit/83b9add871468c7a45a26bc522da7916caba4545))
|
|
1946
|
+
* types on subcomponents ([4612f1d](https://github.com/roomle-dev/roomle-ui/commit/4612f1dcc25b6de7b97472cc35741c9848f3e925))
|
|
1947
|
+
* types1 ([bb70be0](https://github.com/roomle-dev/roomle-ui/commit/bb70be0831e2a7bb8c68d685d528dce69f5df6ba))
|
|
1948
|
+
* types2 ([faf7e18](https://github.com/roomle-dev/roomle-ui/commit/faf7e18ee4afca287ca48c4951194e65499721a4))
|
|
1949
|
+
* typescript as any ([a450a3f](https://github.com/roomle-dev/roomle-ui/commit/a450a3f1d2c75f2bf582c49d947141e844ee190c))
|
|
1950
|
+
* typescript errors ([c1797bd](https://github.com/roomle-dev/roomle-ui/commit/c1797bd88f0386578721218e6a739fcede1f9e59))
|
|
1951
|
+
* typescript errors ([636ba42](https://github.com/roomle-dev/roomle-ui/commit/636ba428b02094ec23764b7cce9a89b5bf17b9ad))
|
|
1952
|
+
* typo ([7b9fe5d](https://github.com/roomle-dev/roomle-ui/commit/7b9fe5d764c0b35a369905acc2241686a504972e))
|
|
1953
|
+
* typo ([b1bb867](https://github.com/roomle-dev/roomle-ui/commit/b1bb8677dcb23635ac96cbc6fb131e2dc7bd65e2))
|
|
1954
|
+
* typo ([36875ec](https://github.com/roomle-dev/roomle-ui/commit/36875ec133e840dfd7aec830ccfe0ae178859522))
|
|
1955
|
+
* typo ([6864068](https://github.com/roomle-dev/roomle-ui/commit/686406835dc8ad812070a17dab7bfdcbac1ba797))
|
|
1956
|
+
* unable to select first floor/wallcolor ([b408233](https://github.com/roomle-dev/roomle-ui/commit/b4082339d21b8b54cd613205f3ba74373fc986c2))
|
|
1957
|
+
* Unable to toggle multi select ([0d7a88a](https://github.com/roomle-dev/roomle-ui/commit/0d7a88afb3cb420f13f4874cfc901566f82b0974))
|
|
1958
|
+
* undo undo relative scss imports ([5402970](https://github.com/roomle-dev/roomle-ui/commit/54029704c82c022cd9343194dff172eb8c227c88))
|
|
1959
|
+
* uneeded CSS* (minor*) ([fba7756](https://github.com/roomle-dev/roomle-ui/commit/fba775634e69e2358b3247a568754e0f1a1a1b05))
|
|
1960
|
+
* uneeded v-if check ([85942da](https://github.com/roomle-dev/roomle-ui/commit/85942da104f99150bf4949e2b5dae416f2a3afc4))
|
|
1961
|
+
* Unfolding construction elements shows weird message ([3fa120d](https://github.com/roomle-dev/roomle-ui/commit/3fa120de852e5b39b798aa945fd271b3e9aafbae))
|
|
1962
|
+
* unit switch css ([00ed0fd](https://github.com/roomle-dev/roomle-ui/commit/00ed0fddf4e4dcc45fed38f15341a0076c99b045))
|
|
1963
|
+
* unit switch persist MM ([62f3a0c](https://github.com/roomle-dev/roomle-ui/commit/62f3a0c5b91ad088ab7d9228e9c37064cb58c03b))
|
|
1964
|
+
* unref instead of value access ([e1ad839](https://github.com/roomle-dev/roomle-ui/commit/e1ad83955f505a24f04ff4d70cdf9558b7befb87))
|
|
1965
|
+
* unref to value in use-planner-actions-visibility, it might be more performant ([59d98ab](https://github.com/roomle-dev/roomle-ui/commit/59d98abe156a0b133736f9ed16a709022cff0e41))
|
|
1966
|
+
* unused components ([6efac17](https://github.com/roomle-dev/roomle-ui/commit/6efac17d77c2d7a395f991754ac017ba31ab0a7f))
|
|
1967
|
+
* up xparensy ([c762c8a](https://github.com/roomle-dev/roomle-ui/commit/c762c8ad9bcb24be9b02d48090a37285acab2e2f))
|
|
1968
|
+
* update callback name ([3b82513](https://github.com/roomle-dev/roomle-ui/commit/3b8251321b5bd38d0acf8ca5352d5936cb759e32))
|
|
1969
|
+
* update callbacks, make dragging on mobile work ([314f3a3](https://github.com/roomle-dev/roomle-ui/commit/314f3a34a561183d060f7bb8cb37941efeddca68))
|
|
1970
|
+
* update comment ([19a1b98](https://github.com/roomle-dev/roomle-ui/commit/19a1b98437e0498c2d1197ed2b6e44f8ee86e76f))
|
|
1971
|
+
* update correct clicked state on wall measurement ([e69cdef](https://github.com/roomle-dev/roomle-ui/commit/e69cdef05368c512433f0e8b64ac4b9002ea7542))
|
|
1972
|
+
* update depts, tooltip tests ([0bb4cda](https://github.com/roomle-dev/roomle-ui/commit/0bb4cda1867dbffa22d3bc3ed8c42f8771cd5b58))
|
|
1973
|
+
* update getTemplate type ([8e1b6ac](https://github.com/roomle-dev/roomle-ui/commit/8e1b6ac8e95771be953172fc66b91c5215283a83))
|
|
1974
|
+
* update imports ([40cc66e](https://github.com/roomle-dev/roomle-ui/commit/40cc66e43530fa66fed2e932118374f4bfec4f01))
|
|
1975
|
+
* update link for docs bucket hosting ([ec2443a](https://github.com/roomle-dev/roomle-ui/commit/ec2443af77e89631164e8c325023f8451d5f3e32))
|
|
1976
|
+
* update loading and deleting flow post plan load ([b1b6315](https://github.com/roomle-dev/roomle-ui/commit/b1b63153c508a6d72f042304fe1a1b9bc2f4f223))
|
|
1977
|
+
* update packages ([214df66](https://github.com/roomle-dev/roomle-ui/commit/214df6650cbaef3e7f65ea90fac411d57f48ce88))
|
|
1978
|
+
* update part list on back ([b3e4f2e](https://github.com/roomle-dev/roomle-ui/commit/b3e4f2e7c7798f58ef961165a0a7688d14f74699))
|
|
1979
|
+
* update playwright assertions ([0108cbb](https://github.com/roomle-dev/roomle-ui/commit/0108cbb790a67dc27495f6ed74d837051e9bb59d))
|
|
1980
|
+
* update product positions and rotations in UI on move, rotate ([809c78d](https://github.com/roomle-dev/roomle-ui/commit/809c78d4520a1a58f2395529ab2d610fdaee5641))
|
|
1981
|
+
* update range filled amount ([f810441](https://github.com/roomle-dev/roomle-ui/commit/f810441e31958c0d0dea3e2f748b79754da0c23e))
|
|
1982
|
+
* update roomle-configurator-api for getting "createConfigurator" ([b725966](https://github.com/roomle-dev/roomle-ui/commit/b725966fefb8e04cee81b0a4f09332d3e8e03c5b))
|
|
1983
|
+
* update scene after inserting the initial moc object ([7c6fefe](https://github.com/roomle-dev/roomle-ui/commit/7c6fefeb9a1944db2838dfdad9d3ebd3d234415d))
|
|
1984
|
+
* update sdk ([1dc8892](https://github.com/roomle-dev/roomle-ui/commit/1dc889249169f009970502112b79bd82ef1b141e))
|
|
1985
|
+
* **hot:** update SDK to 2.72.0 ([97a2236](https://github.com/roomle-dev/roomle-ui/commit/97a22364c7cb6330714c50ce04e22291ca2ae770))
|
|
1986
|
+
* update sdk version ([45ed9c0](https://github.com/roomle-dev/roomle-ui/commit/45ed9c0fabc9de319fa0965dda912eb13e69b4d2))
|
|
1987
|
+
* update SO comment link * minor ([271dc41](https://github.com/roomle-dev/roomle-ui/commit/271dc4170263567576cf4165809e21d417d6b23a))
|
|
1988
|
+
* update tests ([1d6cc31](https://github.com/roomle-dev/roomle-ui/commit/1d6cc318ba33f5deb2956f4a2561ac14def2ac69))
|
|
1989
|
+
* update types ([1d025da](https://github.com/roomle-dev/roomle-ui/commit/1d025da06e5a8989685d474648db5f6f4f646484))
|
|
1990
|
+
* update usableVnode ([d0c788d](https://github.com/roomle-dev/roomle-ui/commit/d0c788d981c205b9a8ea77b2395aec5ebcf395c1))
|
|
1991
|
+
* **planner:** update wall length in drawer when using bubble ([66a3736](https://github.com/roomle-dev/roomle-ui/commit/66a373682ca465f9b3194166905cb573443cc333))
|
|
1992
|
+
* update wall measurements on update walls ([94acb6d](https://github.com/roomle-dev/roomle-ui/commit/94acb6d35a01dbf4f4b25b6aedf67d49bc53038d))
|
|
1993
|
+
* updated configurator and planner specific tutorials ([db6b6c6](https://github.com/roomle-dev/roomle-ui/commit/db6b6c6e820ab4ff8a4c4d1d52a88f9d408712ef))
|
|
1994
|
+
* upgrade SDK to version 2.28.0 ([35d549f](https://github.com/roomle-dev/roomle-ui/commit/35d549ffd3e7d22ae98bdbbae47ebbd364c33ed2))
|
|
1995
|
+
* upgrade sdk to version 39 which has kernel with null-check so that core does not crash ([669e3b9](https://github.com/roomle-dev/roomle-ui/commit/669e3b9a2747e72fa534a7d49bc90f9385b803fc))
|
|
1996
|
+
* upgrade to sdk 2.2.2-alpha.2 which should fix several issues from the Three.js upgrade ([7efbf89](https://github.com/roomle-dev/roomle-ui/commit/7efbf89ab0c8d9f9ea4fad0a62e153f4e09c9dbd))
|
|
1997
|
+
* url init data params ([54f6ce3](https://github.com/roomle-dev/roomle-ui/commit/54f6ce3757efc2e79ec64e99dfdd474790824859))
|
|
1998
|
+
* use "free drawing" only in mobile list view because on desktop we have the tabs ([afe59c4](https://github.com/roomle-dev/roomle-ui/commit/afe59c4350d36e18b35a88d3e19f974733ef58f9))
|
|
1999
|
+
* use a better description for the docking-not-possible popup ([be19841](https://github.com/roomle-dev/roomle-ui/commit/be19841ead88a9e9d98f06d2bd5ffd979e27b99b))
|
|
2000
|
+
* use a SDK version without the delta update bug ([d03c35f](https://github.com/roomle-dev/roomle-ui/commit/d03c35f707fa0100c1eec194fa11a1a1f3ab97be))
|
|
2001
|
+
* use alpha sdk ([0daeccd](https://github.com/roomle-dev/roomle-ui/commit/0daeccd98065d290f5f48d49abd9dd6bc677b236))
|
|
2002
|
+
* use anchor tag instead of markdown links to make the examples work in vuepress ([8cbbafe](https://github.com/roomle-dev/roomle-ui/commit/8cbbafe996f246800e8603adb7484c9257d98f89))
|
|
2003
|
+
* use arguments instead of env variables ([cb67d7f](https://github.com/roomle-dev/roomle-ui/commit/cb67d7fe7b5aa8f7987331ad529dea31d8acb593))
|
|
2004
|
+
* use aspect-ratio box so that image does not cause a layout shift ([a204063](https://github.com/roomle-dev/roomle-ui/commit/a204063c86d04ba6a69d82f440baffbb18434aa1))
|
|
2005
|
+
* use async method to select object ([e796a64](https://github.com/roomle-dev/roomle-ui/commit/e796a648fbd5252fef0f5dfd3bcfefa6afec4343))
|
|
2006
|
+
* use background-size: contain to not oversize the material thumbnail ([80a05e0](https://github.com/roomle-dev/roomle-ui/commit/80a05e0a3689ca0daeec1a1431bf09d0ec0914f7))
|
|
2007
|
+
* use class binding ([f96e338](https://github.com/roomle-dev/roomle-ui/commit/f96e338ab1e1cc12df01d79e86720a37dcc1792c))
|
|
2008
|
+
* use component runtimeId if available ([640ca63](https://github.com/roomle-dev/roomle-ui/commit/640ca631000b43e45bc072262d404341aa8c78d4))
|
|
2009
|
+
* use computed instead ([9220891](https://github.com/roomle-dev/roomle-ui/commit/92208913b19a02aa3b9732c75c8af23ab8f7f410))
|
|
2010
|
+
* **variants:** use configuration hash do find variations, this is needed because item ids do not have anything in common with root component ids ([83490d5](https://github.com/roomle-dev/roomle-ui/commit/83490d5b5e2567a889830eed607114f67074bb07))
|
|
2011
|
+
* use ConfiguratorParameter everywhere ([bdbd26f](https://github.com/roomle-dev/roomle-ui/commit/bdbd26f7820cfb30ea7a1e4bbdfe480da5e8c76f))
|
|
2012
|
+
* use coreBoundValue and revalidate data on rotation change ([c636d78](https://github.com/roomle-dev/roomle-ui/commit/c636d7897d44e16acd2c6768a86971aee5dedbb5))
|
|
2013
|
+
* use correct CSS ([0d2aea5](https://github.com/roomle-dev/roomle-ui/commit/0d2aea549719865cd018d7ec3c9efc8a3def8ef8))
|
|
2014
|
+
* use correct CSS positioning so that buttons are centered ([a5942f1](https://github.com/roomle-dev/roomle-ui/commit/a5942f12bbbe4476243ac74f33a5be77a4587d18))
|
|
2015
|
+
* use correct css variable for border ([f7f550f](https://github.com/roomle-dev/roomle-ui/commit/f7f550f80d2425411d285c178a1c448f0739f7fb))
|
|
2016
|
+
* use correct debug on ci ([a98fc52](https://github.com/roomle-dev/roomle-ui/commit/a98fc52400eb181846d7bccd8dcffc058f61b78f))
|
|
2017
|
+
* use correct fallback if no specific deeplink url is specified ([796cde0](https://github.com/roomle-dev/roomle-ui/commit/796cde02a811dec97e6b187fe4b202dbe0712bf9))
|
|
2018
|
+
* use correct function in Core to fix RML-5992 ([d2177ef](https://github.com/roomle-dev/roomle-ui/commit/d2177ef4faa17e5c954d3397ed9f98c4baaed723))
|
|
2019
|
+
* use correct generic type ([c00751b](https://github.com/roomle-dev/roomle-ui/commit/c00751b58e0547e79d87ecc018ee60c455c2fa40))
|
|
2020
|
+
* use correct icon name ([68f0480](https://github.com/roomle-dev/roomle-ui/commit/68f0480c9dc4fd33113f77bdb51e9eea04bac112))
|
|
2021
|
+
* use correct import ([c955ea0](https://github.com/roomle-dev/roomle-ui/commit/c955ea0bae81ddcc00279c558fa4d16f10623202))
|
|
2022
|
+
* use correct import for QR Code Lib for more details see: ([e901577](https://github.com/roomle-dev/roomle-ui/commit/e901577546c4d166f93f2dd8065e507422079481))
|
|
2023
|
+
* use correct init data configurator id when not embedded ([0e842e2](https://github.com/roomle-dev/roomle-ui/commit/0e842e280fbf401f49326b6a0946e862233c49d4))
|
|
2024
|
+
* use correct jsdoc ([b27c5af](https://github.com/roomle-dev/roomle-ui/commit/b27c5af4c8ff35cdd32f218e3778c7914fc0d8b0))
|
|
2025
|
+
* use correct link ([51bb894](https://github.com/roomle-dev/roomle-ui/commit/51bb894e673f37f12c4b484321cd0dd5ca49e29f))
|
|
2026
|
+
* use correct link format and remove double (( ([c32ecd4](https://github.com/roomle-dev/roomle-ui/commit/c32ecd4e89fd93adba1eb3996d89c184818e5c3c))
|
|
2027
|
+
* use correct link so that they do not point to 404 ([fe1c79c](https://github.com/roomle-dev/roomle-ui/commit/fe1c79c41ed039f7d84dcc88b098c6e193f32f44))
|
|
2028
|
+
* use correct links ([e36aab0](https://github.com/roomle-dev/roomle-ui/commit/e36aab0ebd5bb5bafd4bc3f506536f281813cefd))
|
|
2029
|
+
* use correct method name for getting configurator object ([8862cf4](https://github.com/roomle-dev/roomle-ui/commit/8862cf4e380cdd4e495495ab76a3c58431c3b320))
|
|
2030
|
+
* use correct names ([2fab753](https://github.com/roomle-dev/roomle-ui/commit/2fab753afe9770b0aac2f1a866746a6324b56e7b))
|
|
2031
|
+
* use correct object ID if nothing is selected ([2c7412d](https://github.com/roomle-dev/roomle-ui/commit/2c7412d4db37cdabf0bbcffd00015aca72067be8))
|
|
2032
|
+
* use correct object key to access roomSketch property ([0711d94](https://github.com/roomle-dev/roomle-ui/commit/0711d94d9dc925aa4ccb2d3f43c6db18a7150241))
|
|
2033
|
+
* use correct package-lock ([b35b743](https://github.com/roomle-dev/roomle-ui/commit/b35b74338fd8a237a018357c5a220cee6e056d64))
|
|
2034
|
+
* use correct padding for price so that it is not hidden behind table ([b37836f](https://github.com/roomle-dev/roomle-ui/commit/b37836f8efe94462221bdba9acc513832ccd3c6a))
|
|
2035
|
+
* use correct port ([808e2c3](https://github.com/roomle-dev/roomle-ui/commit/808e2c398d22aa860e8574758141828de4affbf8))
|
|
2036
|
+
* use correct primitive for help text ([6374ea3](https://github.com/roomle-dev/roomle-ui/commit/6374ea3d78b6c1c3a472633830fc93d18a23988d))
|
|
2037
|
+
* use correct sass variable ([9ce6451](https://github.com/roomle-dev/roomle-ui/commit/9ce6451e8a2065168d79aa83e23395d276914ab9))
|
|
2038
|
+
* use correct sdk version ([0f21316](https://github.com/roomle-dev/roomle-ui/commit/0f213166748adcd9042ba69bdc1e7bd8407c3c34))
|
|
2039
|
+
* use correct spread syntax ([febaacd](https://github.com/roomle-dev/roomle-ui/commit/febaacda6bafa1987cbb1b5618dc1c79130c4ad7))
|
|
2040
|
+
* **variants:** use correct type check for props ([4366ab4](https://github.com/roomle-dev/roomle-ui/commit/4366ab4fe0ce5b7728e9c276a44d3669bcc1d650))
|
|
2041
|
+
* use correct typescript types ([e29e3f5](https://github.com/roomle-dev/roomle-ui/commit/e29e3f5ba3f421970140fab327d816e21fb88b17))
|
|
2042
|
+
* use correct version of flag ([07b065b](https://github.com/roomle-dev/roomle-ui/commit/07b065bcf180f61e9fc30703728a6d46671df838))
|
|
2043
|
+
* use correct wordings ([b91436c](https://github.com/roomle-dev/roomle-ui/commit/b91436c0f2ac75e0696c1b55bc424cf97f97748b))
|
|
2044
|
+
* **embedding:** use custom api url if given so we also fetch configurator settings from correct API ([371cbe1](https://github.com/roomle-dev/roomle-ui/commit/371cbe1bf58dd39835dbeaace0df170d54b78a18))
|
|
2045
|
+
* use defineComponent instead of Vue.extend ([7f2dd98](https://github.com/roomle-dev/roomle-ui/commit/7f2dd988ec12f3bef6fe6bba8ea8af295493c924))
|
|
2046
|
+
* use ellipsis text overflow for label in list view ([840aa9b](https://github.com/roomle-dev/roomle-ui/commit/840aa9b3ad59fe259ab44eaef40b6685a45ee644))
|
|
2047
|
+
* use empty string instead of ([2523fc3](https://github.com/roomle-dev/roomle-ui/commit/2523fc3984373dfb5139daded0a3780f8155983f))
|
|
2048
|
+
* use error level M because there is a well known bug in the QR code library if string is between 192 and 220 chars and error level H is used, for more details see: ([5205dde](https://github.com/roomle-dev/roomle-ui/commit/5205dde66cfb930305fbf1ddf5db1b6c05463e57))
|
|
2049
|
+
* use getPartListOf ([b0328e5](https://github.com/roomle-dev/roomle-ui/commit/b0328e545808a1e6b2403fc2bc3016a866960ccc))
|
|
2050
|
+
* use import type instead of import ([e8556b9](https://github.com/roomle-dev/roomle-ui/commit/e8556b94a4d8fd12baaabd7e43eab0f3a6fc22f9))
|
|
2051
|
+
* use local lato fonts, copy google fonts config ([09e9282](https://github.com/roomle-dev/roomle-ui/commit/09e9282c807ccf980aa350396e6ae1707372555e))
|
|
2052
|
+
* use more space so that labels fit better, resolves RML-561 ([cdde038](https://github.com/roomle-dev/roomle-ui/commit/cdde0386217ebc0d6d26ee17a7bf02d580aa4ddb))
|
|
2053
|
+
* use passwords for dummy user in github action ([791b642](https://github.com/roomle-dev/roomle-ui/commit/791b6423c492ef2f345712807acc69ba38b2c11d))
|
|
2054
|
+
* use perparePerspectiveImageOf from SDK so that the correct part list image is rendered ([1ed3d77](https://github.com/roomle-dev/roomle-ui/commit/1ed3d77a0d1c7fd82c2bbbafa3a43684fa0fb477))
|
|
2055
|
+
* use plannerApi if method not available. ([e758769](https://github.com/roomle-dev/roomle-ui/commit/e75876978e430ffe3468459e96b0437e45d60659))
|
|
2056
|
+
* use plannerUiState instead of only state only ([52d6076](https://github.com/roomle-dev/roomle-ui/commit/52d6076b5f24679b7ed8f45dd32b2c95819a62c8))
|
|
2057
|
+
* use previous camera reset method ([4c18f31](https://github.com/roomle-dev/roomle-ui/commit/4c18f31342ead766c7634207f0e4f8d16eb8fd20))
|
|
2058
|
+
* use promise so that mock is "really" async ([ce83dd0](https://github.com/roomle-dev/roomle-ui/commit/ce83dd0a4608331aee98ba7c375c656f50743c48))
|
|
2059
|
+
* use proper arrow placement value ([6f5c963](https://github.com/roomle-dev/roomle-ui/commit/6f5c96386f744c5876e00998a16a45b94146defa))
|
|
2060
|
+
* use right method ([9404051](https://github.com/roomle-dev/roomle-ui/commit/9404051ee4372af65a50c22e2731c2c950858703))
|
|
2061
|
+
* use same behavior for toggle as for close for more details see: ([c2b61f0](https://github.com/roomle-dev/roomle-ui/commit/c2b61f0f26164aee102dd2cd0033703880e34b08)), closes [/github.com/roomle-dev/roomle-ui/pull/92#issuecomment-1378411874](https://github.com/roomle-dev//github.com/roomle-dev/roomle-ui/pull/92/issues/issuecomment-1378411874)
|
|
2062
|
+
* use SDK 2.73.1 which fixes RML-10403 ([ab9dafb](https://github.com/roomle-dev/roomle-ui/commit/ab9dafb4dd247508a006a9cf6533d66f65057ba6))
|
|
2063
|
+
* use sdk which fixes the following problems: ([a88fa9f](https://github.com/roomle-dev/roomle-ui/commit/a88fa9fb93177332fa155564c69a5024bceaf7c5))
|
|
2064
|
+
* use string instead of symbol so that it's usable from URL ([135bcbd](https://github.com/roomle-dev/roomle-ui/commit/135bcbd26dabcef79f716a3de2d535a6ba6bf210))
|
|
2065
|
+
* use the correct computed property ([dcf2a7a](https://github.com/roomle-dev/roomle-ui/commit/dcf2a7affe005ad20bf5e74be63a8130d5e9d02b))
|
|
2066
|
+
* use the correct mouse icon ([31aecf4](https://github.com/roomle-dev/roomle-ui/commit/31aecf402f9127491b933bc9e7ba06764391083b))
|
|
2067
|
+
* use the hide/show button option in init data to hide/show AR button on glb-viewer ([dfeacc0](https://github.com/roomle-dev/roomle-ui/commit/dfeacc05baad88960bb4b6384ac586d110caadbc))
|
|
2068
|
+
* use thickness for thickness and not parapetHeight ([49b3882](https://github.com/roomle-dev/roomle-ui/commit/49b38823ab30f39b59d4854838eacce568cad1a7))
|
|
2069
|
+
* use values which do not produce subpixel rendering e.g.: ([f484b92](https://github.com/roomle-dev/roomle-ui/commit/f484b92dcec373c63dd87e81f107e7b84b8d2e09))
|
|
2070
|
+
* use volta to pin node version which works on all machines ([170d7e2](https://github.com/roomle-dev/roomle-ui/commit/170d7e2380b8266ab09b9a0bd2250c9097c9227a))
|
|
2071
|
+
* use watcheffect instead of watch ([f81cc22](https://github.com/roomle-dev/roomle-ui/commit/f81cc223944c1fca0bfcf71d30c9161f16548c40))
|
|
2072
|
+
* use whitespace instead of nasty placeholder ([c512d6f](https://github.com/roomle-dev/roomle-ui/commit/c512d6fce917ca14dfb378202c5e734b52daead0))
|
|
2073
|
+
* use z-index so that addon button is not above top-bar, closes RML-614 ([1b7c177](https://github.com/roomle-dev/roomle-ui/commit/1b7c177ed334a35d278ad50ecb1b1e3c0cd924e1))
|
|
2074
|
+
* useAsyncFunction reactivity stuff ([991b4d5](https://github.com/roomle-dev/roomle-ui/commit/991b4d5a96ee0a5fd1bf06797740da90496039e6))
|
|
2075
|
+
* usePurchasableCount promise resolve issues ([e9253b3](https://github.com/roomle-dev/roomle-ui/commit/e9253b347af1169c95631d9886823e085c462bad))
|
|
2076
|
+
* validRange for parameter values - if you set '"valueTo": 0', the slider does not stop at this limit ([63e7e63](https://github.com/roomle-dev/roomle-ui/commit/63e7e63c9a92adc10854ff2a7e1b8ed361fbb52c))
|
|
2077
|
+
* variants Button not working anymore ([f134175](https://github.com/roomle-dev/roomle-ui/commit/f134175552041e3288de34807cf5032f683e135f))
|
|
2078
|
+
* variants is not clickable ([8755ac4](https://github.com/roomle-dev/roomle-ui/commit/8755ac438d8e204b001c4d431882a51fb74690a1))
|
|
2079
|
+
* VariantWarning.spec.ts ([7e47a89](https://github.com/roomle-dev/roomle-ui/commit/7e47a89e30488915167d6c213f08fdb37836ec8f))
|
|
2080
|
+
* various store accesses types ([6ebe4a3](https://github.com/roomle-dev/roomle-ui/commit/6ebe4a3cc3966681c34dc8d202bed20c7b922170))
|
|
2081
|
+
* various type errors ([6d2a4d1](https://github.com/roomle-dev/roomle-ui/commit/6d2a4d1eb3ef55e56c40abfd7ed85c7422f631b6))
|
|
2082
|
+
* View shifted to top when Keyboard was shown (* minor) ([2a4b8df](https://github.com/roomle-dev/roomle-ui/commit/2a4b8dfd59ebb00bc7ac50a43bd5ca0277173c25))
|
|
2083
|
+
* ViewerMain.spec.ts ([0f1b608](https://github.com/roomle-dev/roomle-ui/commit/0f1b608c5d4c9d12489b658b817845a89b9ffbc3))
|
|
2084
|
+
* Vue warning: size is missing ([8af21e9](https://github.com/roomle-dev/roomle-ui/commit/8af21e93888ef7022e82aea0be20b3bf22340dc3))
|
|
2085
|
+
* wait for everything to be initialised before loading an object ([468ffc1](https://github.com/roomle-dev/roomle-ui/commit/468ffc180fa467a332b18e7466931c0c664a95d7))
|
|
2086
|
+
* wall general param state on undo/redo ([c75eda2](https://github.com/roomle-dev/roomle-ui/commit/c75eda22fcb4a4397829d724414667f79d6074a3))
|
|
2087
|
+
* wall measurements not displayed after switch to 2D ([4ce0b1d](https://github.com/roomle-dev/roomle-ui/commit/4ce0b1d40ce1d299dafd5da19191c231e27bc4e4))
|
|
2088
|
+
* wall scaling typing ([c032013](https://github.com/roomle-dev/roomle-ui/commit/c032013aa4cc152267ab5bf73c1e0d79703129f2))
|
|
2089
|
+
* WallGeneralSettings.spec.ts ([d9ff482](https://github.com/roomle-dev/roomle-ui/commit/d9ff4826d01a8e0f88690b90dababfaa25205722))
|
|
2090
|
+
* wallRotationICon ([6d1aa56](https://github.com/roomle-dev/roomle-ui/commit/6d1aa56e1188987f71b71fd73a548d4eceee19b3))
|
|
2091
|
+
* WallSideIcon.spec ([ec5c2ad](https://github.com/roomle-dev/roomle-ui/commit/ec5c2ada0bc4f27a0f14d829eba7e6d9d0f782f9))
|
|
2092
|
+
* warp async calls into promise ([4e97cd3](https://github.com/roomle-dev/roomle-ui/commit/4e97cd32601ad13d2ec54945afab76cb96c529c2))
|
|
2093
|
+
* Webpage title broken on mobile ([8299165](https://github.com/roomle-dev/roomle-ui/commit/82991650fd79319d102f78cacd0d4ab971a58ec9))
|
|
2094
|
+
* when toggle sidebar, catalog trigger should also be enabled again ([b98c712](https://github.com/roomle-dev/roomle-ui/commit/b98c712ee4407cda56942001e12acba4dedd569d))
|
|
2095
|
+
* width on mobile ([c078439](https://github.com/roomle-dev/roomle-ui/commit/c0784393748f94f7913085e0a7e20f8102524dfa))
|
|
2096
|
+
* will not check document.referrer when allowedHosts is wildcard ([d2ba9d8](https://github.com/roomle-dev/roomle-ui/commit/d2ba9d8df2151ec75c144a866a7c93ce67cf1a7e))
|
|
2097
|
+
* wip ([eb80a2d](https://github.com/roomle-dev/roomle-ui/commit/eb80a2d282ea60b7c572772d1875b2d673393179))
|
|
2098
|
+
* wip configurator ([f0f9812](https://github.com/roomle-dev/roomle-ui/commit/f0f9812692197fb476a097cbf0a42d70d7fad6c8))
|
|
2099
|
+
* wip even more working subcomponents ([7ad3004](https://github.com/roomle-dev/roomle-ui/commit/7ad3004a746a377234bd37a0b6753f7394af2e4a))
|
|
2100
|
+
* wip kinda working onexpand ([81c0c14](https://github.com/roomle-dev/roomle-ui/commit/81c0c141c53faa2b784e9652086b61327793560f))
|
|
2101
|
+
* wip partial ([6b82051](https://github.com/roomle-dev/roomle-ui/commit/6b82051a4d80a266699b0f4d22de6788e74e1214))
|
|
2102
|
+
* wip progress on render function fragments ([37e700b](https://github.com/roomle-dev/roomle-ui/commit/37e700b26988003dbf38116de08a01b1a0abf57c))
|
|
2103
|
+
* wip working fragment renderer ([50feb44](https://github.com/roomle-dev/roomle-ui/commit/50feb4499a99c77b4e65c2c1e7abd6c90bf07073))
|
|
2104
|
+
* WordWrap.spec.ts ([4273552](https://github.com/roomle-dev/roomle-ui/commit/4273552c2328362a1b99beb2c2d1c05dc6bff564))
|
|
2105
|
+
* workaround the function array issue on collectionview again ([e72580d](https://github.com/roomle-dev/roomle-ui/commit/e72580d52e406d7c14d9138a5a22967e48d263bb))
|
|
2106
|
+
* working escape logic ([3d46ddb](https://github.com/roomle-dev/roomle-ui/commit/3d46ddb0ceedcbdfc8c27b7b434520e42ac603cb))
|
|
2107
|
+
* working implementation finally ([709ddcd](https://github.com/roomle-dev/roomle-ui/commit/709ddcd9867674c91e9d979ac3354000d7844828))
|
|
2108
|
+
* working tooltip placement order ([3c2bfd7](https://github.com/roomle-dev/roomle-ui/commit/3c2bfd7a1b229612c360d1b1540c5a9cbe9f4f6e))
|
|
2109
|
+
* working topBar.vue borders ([dec1ac5](https://github.com/roomle-dev/roomle-ui/commit/dec1ac5a175a6766a73b1f03aceac968867408de))
|
|
2110
|
+
* wrap email input in form for fix autocomplete bug in firefox, preventDefault because firefox only want one onClick action ([629b618](https://github.com/roomle-dev/roomle-ui/commit/629b618152c3d11a0b0abb7e485e273566330b6a))
|
|
2111
|
+
* wrap floor color in AssureSdkHandlers ([2a32b40](https://github.com/roomle-dev/roomle-ui/commit/2a32b406fa550b1bc4b37a589e06e0556cd98572))
|
|
2112
|
+
* wrap return values correctly so that the comply with the message format needed to send over iframe boundaries ([26b6d7b](https://github.com/roomle-dev/roomle-ui/commit/26b6d7be27dd76f94677c95e840b49913efa7227))
|
|
2113
|
+
* wrap tets ([bf467d4](https://github.com/roomle-dev/roomle-ui/commit/bf467d4062972742a6f0e9ebfa2bff8bb6e51b4d))
|
|
2114
|
+
* Wrong characters in french Boolean default labels ([69c0a65](https://github.com/roomle-dev/roomle-ui/commit/69c0a659976943ef32ef4736474bfbd19829531e))
|
|
2115
|
+
* wrong merging of merge conflicts ([4ac1f02](https://github.com/roomle-dev/roomle-ui/commit/4ac1f021ebc397c3a5814265f917be7ad4dda2d3))
|
|
2116
|
+
* wrong name of class ([41e8a6b](https://github.com/roomle-dev/roomle-ui/commit/41e8a6b10bdac6af7962028a8e4d7f0352f75256))
|
|
2117
|
+
* wrong page title on mobile ([e35b1d8](https://github.com/roomle-dev/roomle-ui/commit/e35b1d88519b27df5c4e672c14d6fafa8270dfee))
|
|
2118
|
+
* wrong svg stroke width ([ee93532](https://github.com/roomle-dev/roomle-ui/commit/ee93532ca05c18a4884c391708eedeb1dc1f1fbb))
|
|
2119
|
+
* wrong width of gradient in second level drawer ([7eed1a0](https://github.com/roomle-dev/roomle-ui/commit/7eed1a0d2e4cd7dd432741a8a9b7faeb1445f9f7))
|
|
2120
|
+
* z-index ([d9a5398](https://github.com/roomle-dev/roomle-ui/commit/d9a53987821fb7915b93caf8f91f6e7b9b99e05f))
|
|
2121
|
+
* z-index and position ([fd8d2fe](https://github.com/roomle-dev/roomle-ui/commit/fd8d2fee4402d5065bf02355f9efc2eb15388803))
|