hart-estate-widget 4.4.43 → 4.4.45
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/README.md +11 -0
- package/build/api.js +1 -1
- package/build/createWidget.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -275,6 +275,10 @@ Here you can see a list of accessible options and examples of usage. There are a
|
|
|
275
275
|
"isOverrideLinks": false,
|
|
276
276
|
// Enable room indexer button in rotation tab
|
|
277
277
|
"isRoomIndexerVisible": false,
|
|
278
|
+
// Enable room indexer button to rotate middle cuts
|
|
279
|
+
"isRoomIndexerRotate": false,
|
|
280
|
+
// Direction of rotation of rooms
|
|
281
|
+
"indexerButtonDirection": false,
|
|
278
282
|
// Show top view on rotation tab
|
|
279
283
|
"isShowTopViewOnRotationTab": true,
|
|
280
284
|
// Show left and right arrows in room scroll container
|
|
@@ -285,6 +289,13 @@ Here you can see a list of accessible options and examples of usage. There are a
|
|
|
285
289
|
// Show the "hide furniture" button with a separate switch
|
|
286
290
|
"isHiddenFurnitureSwitchVisible": true,
|
|
287
291
|
|
|
292
|
+
// Apply scale offset in 2D/3D
|
|
293
|
+
"isTransformScaleWithOffset": true,
|
|
294
|
+
// Apply transform offset in 2D/3D
|
|
295
|
+
"isTransformEnabled": true,
|
|
296
|
+
// Apply scale offset from screen center instead of cursor
|
|
297
|
+
"isTransformAlongScreenCenter": false,
|
|
298
|
+
|
|
288
299
|
// Ruler font settings
|
|
289
300
|
"rulerFontSettings": {
|
|
290
301
|
"fontSize": "38px",
|
package/build/api.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var r={d:(e,t)=>{for(var a in t)r.o(t,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o:(r,e)=>Object.prototype.hasOwnProperty.call(r,e)},e={};r.d(e,{j:()=>t});class t{baseUrl;constructor(r){this.baseUrl=r}get headers(){return{Accept:"application/json;widget-version=4.4.
|
|
1
|
+
var r={d:(e,t)=>{for(var a in t)r.o(t,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o:(r,e)=>Object.prototype.hasOwnProperty.call(r,e)},e={};r.d(e,{j:()=>t});class t{baseUrl;constructor(r){this.baseUrl=r}get headers(){return{Accept:"application/json;widget-version=4.4.45"}}loadCrmWidgetData=async r=>{if(!r)return this.makeError(404,"No crmPlanId!");try{const e=await this.fetch(`/api/crm/plans/${r}/v4/widget`);return e.ok?e.json():this.makeErrorFromResponse(e,"Failed to get CRM Plan widget data!")}catch(r){return this.makeError(520,r.message)}};loadWidgetData=async r=>{if(!r)return this.makeError(404,"No planId!");try{const e=await this.fetch(`/api/plans/${r}/v4/widget`);return e.ok?e.json():this.makeErrorFromResponse(e,"Failed to get Plan widget data!")}catch(r){return this.makeError(520,r.message)}};loadJson=async r=>{try{return(await fetch(r)).json()}catch(r){return this.makeError(500,r.message)}};makeError(r,e="Unknown error"){return{error:{status:r,message:e}}}async makeErrorFromResponse(r,e){if("application/json"===r.headers.get("Content-Type")){const e=await r.json();if("message"in e&&"string"==typeof e.message)return this.makeError(r.status,e.message)}return this.makeError(r.status,e)}fetch(r,e={headers:this.headers}){return fetch(`${this.baseUrl}${r}`,e)}}const a=e.j;export{a as Api};
|