@realsee/dnalogel 3.45.0 → 3.46.0

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.
Files changed (96) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/dist/Sculpt/Meshes/Line.d.ts +6 -1
  3. package/dist/index.cjs.js +53 -53
  4. package/dist/index.js +29609 -29576
  5. package/dist/index.umd.js +49 -49
  6. package/dist/shared-utils/tag.d.ts +6 -3
  7. package/libs/AreaMakerPlugin/Controller.js +150 -78
  8. package/libs/AreaMakerPlugin/index.js +76 -4
  9. package/libs/AreaMakerPlugin/utils/Item.js +190 -111
  10. package/libs/CSS3DRenderPlugin/Controller.js +89 -29
  11. package/libs/CSS3DRenderPlugin/index.js +75 -15
  12. package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +132 -58
  13. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +181 -116
  14. package/libs/CruisePlugin/BaseController.js +121 -49
  15. package/libs/CruisePlugin/Move.js +73 -21
  16. package/libs/CruisePlugin/Work.js +98 -46
  17. package/libs/CruisePlugin/index.js +79 -27
  18. package/libs/CurrentPanoImagePlugin/Controller.js +176 -104
  19. package/libs/CurrentPanoImagePlugin/index.js +76 -4
  20. package/libs/GuideLinePlugin/Controller.js +82 -30
  21. package/libs/GuideLinePlugin/GuideLineItem.js +82 -30
  22. package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -2
  23. package/libs/GuideLinePlugin/GuideLineModeItem.js +81 -29
  24. package/libs/GuideLinePlugin/index.js +79 -27
  25. package/libs/ModelMakerPlugin/Controller.js +139 -82
  26. package/libs/ModelMakerPlugin/index.js +75 -18
  27. package/libs/ModelTVVideoPlugin/Plugin.js +117 -57
  28. package/libs/ModelTVVideoPlugin/index.js +68 -8
  29. package/libs/Object3DHelperPlugin/Controller.js +54 -31
  30. package/libs/Object3DHelperPlugin/index.js +35 -13
  31. package/libs/PanoCompassPlugin/Controller.js +97 -42
  32. package/libs/PanoCompassPlugin/index.js +71 -16
  33. package/libs/PanoDoorLabelPlugin/BaseController.js +98 -26
  34. package/libs/PanoDoorLabelPlugin/Controller.js +187 -115
  35. package/libs/PanoDoorLabelPlugin/index.js +76 -4
  36. package/libs/PanoMeasurePlugin/Components/Controller0.js +140 -88
  37. package/libs/PanoMeasurePlugin/Components/Controller1.js +178 -126
  38. package/libs/PanoMeasurePlugin/Controller/EditController.js +124 -72
  39. package/libs/PanoMeasurePlugin/Controller/WatchController.js +167 -92
  40. package/libs/PanoMeasurePlugin/Controller/index.js +109 -64
  41. package/libs/PanoMeasurePlugin/Model/area.js +114 -38
  42. package/libs/PanoMeasurePlugin/Modules/Magnifier.js +78 -0
  43. package/libs/PanoMeasurePlugin/Modules/UIController/index.js +97 -45
  44. package/libs/PanoMeasurePlugin/index.js +76 -31
  45. package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +98 -20
  46. package/libs/PanoSpatialTagPlugin/Plugin.js +210 -150
  47. package/libs/PanoSpatialTagPlugin/index.js +66 -6
  48. package/libs/PanoTagPlugin/Components/Common/TagPoint.js +133 -53
  49. package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +295 -216
  50. package/libs/PanoTagPlugin/Components/Tag/index.js +257 -187
  51. package/libs/PanoTagPlugin/Components/TagContainer.js +157 -87
  52. package/libs/PanoTagPlugin/Components/TagItem.js +144 -74
  53. package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +73 -3
  54. package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +109 -39
  55. package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +105 -35
  56. package/libs/PanoTagPlugin/controller/Tag/PointTag.js +113 -43
  57. package/libs/PanoTagPlugin/controller/TagRender.js +132 -80
  58. package/libs/PanoTagPlugin/controller/TagUtil.js +136 -84
  59. package/libs/PanoTagPlugin/controller/index.js +113 -61
  60. package/libs/PanoTagPlugin/index.js +89 -37
  61. package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +121 -41
  62. package/libs/PanoVideoPlugin/Controller.js +137 -65
  63. package/libs/PanoVideoPlugin/VideoMeshController.js +149 -69
  64. package/libs/PanoVideoPlugin/index.js +82 -10
  65. package/libs/PipelinePlugin/Controller.js +199 -128
  66. package/libs/PipelinePlugin/index.js +76 -5
  67. package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +102 -22
  68. package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +95 -15
  69. package/libs/PipelinePlugin/utils/Objects/Pipe.js +136 -56
  70. package/libs/Sculpt/Meshes/Box.js +6 -5
  71. package/libs/Sculpt/Meshes/Cylinder.js +7 -6
  72. package/libs/Sculpt/Meshes/Line.d.ts +6 -1
  73. package/libs/Sculpt/Meshes/Line.js +76 -56
  74. package/libs/Sculpt/Meshes/Point.js +6 -5
  75. package/libs/Sculpt/Meshes/Polyline.js +5 -4
  76. package/libs/Sculpt/Meshes/Rectangle.js +3 -2
  77. package/libs/Sculpt/Objects/Line/Editor.js +11 -10
  78. package/libs/Sculpt/utils/three/ColoredMesh.js +14 -13
  79. package/libs/base/BasePlugin.js +14 -13
  80. package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +128 -59
  81. package/libs/floorplan/MapviewFloorplanPlugin/index.js +75 -6
  82. package/libs/floorplan/ModelFloorplanPlugin/Controller.js +129 -59
  83. package/libs/floorplan/ModelFloorplanPlugin/index.js +75 -5
  84. package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +158 -86
  85. package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +76 -4
  86. package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +151 -81
  87. package/libs/floorplan/TopviewFloorplanPlugin/index.js +75 -5
  88. package/libs/floorplan/index.js +1 -0
  89. package/libs/index.js +67 -67
  90. package/libs/shared-utils/five/index.js +3 -2
  91. package/libs/shared-utils/five/lookObject.js +3 -2
  92. package/libs/shared-utils/logger.js +1 -1
  93. package/libs/shared-utils/tag.d.ts +6 -3
  94. package/libs/shared-utils/tag.js +38 -24
  95. package/libs/shared-utils/three/index.js +1 -0
  96. package/package.json +1 -1
@@ -1,272 +1,351 @@
1
- import { SvelteComponent as te, init as le, safe_not_equal as ie, append_styles as se, element as p, create_component as re, space as C, text as S, attr as d, set_style as L, null_to_empty as D, toggle_class as H, insert as y, mount_component as ne, append as q, set_data as P, transition_in as ae, transition_out as oe, detach as T, destroy_component as ce, src_url_equal as F, action_destroyer as fe, listen as me, destroy_each as O, run_all as ge } from "../../../vendor/svelte/internal/index.js";
1
+ import { SvelteComponent as te, init as ie, safe_not_equal as re, append_styles as le, element as d, create_component as se, space as C, text as S, attr as q, set_style as L, null_to_empty as D, toggle_class as H, insert as y, mount_component as oe, append as g, set_data as P, transition_in as ne, transition_out as ae, detach as T, destroy_component as me, src_url_equal as F, action_destroyer as ce, listen as pe, destroy_each as O, run_all as fe } from "../../../vendor/svelte/internal/index.js";
2
2
  import "three";
3
3
  import "hammerjs";
4
4
  import "three/examples/jsm/renderers/CSS3DRenderer";
5
5
  import "@realsee/five/line";
6
+ import "../../../Sculpt/utils/Modules/Global.js";
6
7
  import "../../../shared-utils/three/THREESphere.js";
7
8
  import "animejs";
8
- import { notNil as qe } from "../../../shared-utils/isNil.js";
9
+ import { notNil as ge } from "../../../shared-utils/isNil.js";
9
10
  import "../../../vendor/@tweenjs/tween/dist/tween.esm.js.js";
10
- import de from "../../utils/px2rem.js";
11
- import pe from "../Common/Shadow.js";
11
+ import qe from "../../utils/px2rem.js";
12
+ import de from "../Common/Shadow.js";
12
13
  import { svelteResizeObserver as ve } from "../../../shared-utils/svelte/resizeObserver.js";
14
+ import "../../../Sculpt/utils/Modules/Cursor.js";
15
+ import "../../../Object3DHelperPlugin/Controller.js";
16
+ import "../../../base/BasePlugin.js";
17
+ import "../../../shared-utils/Subscribe.js";
18
+ import "../../../shared-utils/Utils/FiveUtil.js";
19
+ import "../../../shared-utils/Utils/BaseUtil.js";
20
+ import "../../../shared-utils/Utils/WorkUtil.js";
21
+ import "../../../shared-utils/five/transformPosition.js";
22
+ import "../../../shared-utils/five/getFiveModel.js";
23
+ import "../../../shared-utils/url/absoluteUrl.js";
24
+ import "../../../shared-utils/Object3DHelper/Helper/MoveHelper.js";
25
+ import "../../../shared-utils/Object3DHelper/Base/BaseHelper.js";
26
+ import "../../../shared-utils/Object3DHelper/utils/setObjectQuaternion.js";
27
+ import "../../../shared-utils/three/IObject3D.js";
28
+ import "../../../shared-utils/three/boundingBox.js";
29
+ import "../../../shared-utils/Object3DHelper/Helper/Objects/ArrowGroup.js";
30
+ import "../../../shared-utils/Object3DHelper/utils/direction.js";
31
+ import "../../../shared-utils/Object3DHelper/Constants/color.js";
32
+ import "../../../shared-utils/Object3DHelper/utils/calculateScaleByCamera.js";
33
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DRender.js";
34
+ import "../../../shared-utils/positionToVector3.js";
35
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DRenderer.js";
36
+ import "../../../CSS3DRenderPlugin/utils/three/THREEJS_CSS3DRenderer.js";
37
+ import "../../../CSS3DRenderPlugin/utils/createResizeObserver.js";
38
+ import "../../../CSS3DRenderPlugin/utils/even.js";
39
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DObject.js";
40
+ import "../../../CSS3DRenderPlugin/utils/three/OpacityMesh.js";
41
+ import "../../../shared-utils/three/centerPoint.js";
42
+ import "../../../shared-utils/three/getObjectVisible.js";
43
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DScene.js";
44
+ import "../../../CSS3DRenderPlugin/utils/getAllCSS3DObject.js";
45
+ import "../../../shared-utils/util.js";
46
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DGroup.js";
47
+ import "../../../shared-utils/Object3DHelper/Helper/RotateHelper.js";
48
+ import "../../../shared-utils/Object3DHelper/Helper/HTML/tipsDom.js";
49
+ import "../../../shared-utils/Object3DHelper/Helper/HTML/utils/createElement.js";
50
+ import "../../../shared-utils/Object3DHelper/Helper/CSS3DScaleHelper.js";
51
+ import "../../../shared-utils/Object3DHelper/Helper/HTML/rectangleScaleDom.js";
52
+ import "../../../shared-utils/Object3DHelper/Helper/BoundingBoxHelper.js";
53
+ import "../../../shared-utils/Object3DHelper/Controller/MoveController.js";
54
+ import "../../../shared-utils/Object3DHelper/Base/BaseController.js";
55
+ import "../../../shared-utils/threex/domevents/index.js";
56
+ import "../../../shared-utils/Object3DHelper/utils/getMouseRaycaster.js";
57
+ import "../../../shared-utils/Object3DHelper/utils/calculateThreeMouse.js";
58
+ import "../../../Sculpt/utils/three/rayOnLine.js";
59
+ import "../../../Object3DHelperPlugin/FiveControllerWrapper.js";
60
+ import "../../../shared-utils/Object3DHelper/index.js";
61
+ import "../../../shared-utils/Object3DHelper/Controller/RotateController.js";
62
+ import "../../../shared-utils/math/rad2Deg.js";
63
+ import "../../../shared-utils/math/deg2Rad.js";
64
+ import "../../../shared-utils/Object3DHelper/Controller/CSS3DScaleController.js";
65
+ import "../../../shared-utils/Object3DHelper/Controller/RectangleScaleController.js";
66
+ import "../../../shared-utils/Object3DHelper/utils/vectorIsEqual.js";
67
+ import "../../../CSS3DRenderPlugin/utils/generateBehindFiveElement.js";
68
+ import "../../../shared-utils/Object3DHelper/Controller/BoundingBoxController.js";
69
+ import "../../../shared-utils/Object3DHelper/Helper/ScaleHelper.js";
70
+ import "../../../shared-utils/Object3DHelper/Controller/ScaleController.js";
71
+ import "../../../shared-utils/five/fiveModelLoad.js";
72
+ import "../../../shared-utils/five/FiveDomEvents.js";
73
+ import "../../../shared-utils/five/calculateThreeMouse.js";
74
+ import "../../../shared-utils/three/THREERaycaster.js";
75
+ import "../../../shared-utils/three/PointSelector/index.js";
76
+ import "../../../shared-utils/three/PointSelector/utils/PointSelectorHelper.js";
77
+ import "../../../shared-utils/three/Magnifier.js";
78
+ import "../../../shared-utils/three/PointSelector/utils/PointHelper.js";
79
+ import "../../../shared-utils/three/Assets/index.js";
80
+ import "../../../shared-utils/three/PointSelector/utils/html.js";
81
+ import "../../../shared-utils/five/initialCSS3DRender.js";
82
+ import "../../../shared-utils/three/PointSelector/utils/PointHelper2.js";
83
+ import "../../../Sculpt/Meshes/Line.js";
84
+ import "../../../Sculpt/typings/style.js";
85
+ import "../../../shared-utils/five/FiveLine.js";
86
+ import "../../../shared-utils/tag.js";
87
+ import "../../../shared-utils/five/vector3ToScreen.js";
88
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
89
+ import "../../../shared-utils/isTouchDevice.js";
90
+ import "../../../shared-utils/five/getPosition.js";
91
+ import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
13
92
  import "../../../vendor/svelte/transition/index.js";
14
93
  import "../../../vendor/svelte/easing/index.js";
15
94
  import "../../../vendor/resize-observer-polyfill/dist/ResizeObserver.es.js";
16
- function he(l) {
17
- se(l, "svelte-sezqcq", '@charset "UTF-8";.svelte-sezqcq.svelte-sezqcq{box-sizing:border-box}.marketing.svelte-sezqcq.svelte-sezqcq{transform:translateY(-100%)}.marketing.svelte-sezqcq .line.svelte-sezqcq{position:absolute;height:1.875rem;width:0.0625rem;left:50%;transform:translateX(-50%);background-color:white;bottom:0;transform-origin:bottom;transition:all 500ms}.marketing.svelte-sezqcq .content.svelte-sezqcq{position:relative;min-width:7.5rem;width:-moz-max-content;width:max-content;height:-moz-max-content;height:max-content;border-radius:0.25rem;top:-1.875rem;left:-1rem;padding:0.5rem 0rem 0.5625rem;transition-property:opacity, transform;transition-duration:500ms}.marketing.svelte-sezqcq .content .headerImage.svelte-sezqcq{position:absolute;width:100%;top:0.25rem;transform:translateY(-100%);border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.title-wrapper.svelte-sezqcq.svelte-sezqcq{position:relative;width:100%;height:1.125rem}.title-wrapper.svelte-sezqcq .title.svelte-sezqcq{border-radius:0.25rem;width:100%;padding-left:0.625rem;padding-right:0.625rem}.title-wrapper.svelte-sezqcq .title .text.svelte-sezqcq{display:block;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:0.75rem;font-weight:bold;line-height:1.125rem}.footer.svelte-sezqcq.svelte-sezqcq{position:relative;padding:0.5rem 0.625rem 0 0;width:100%;display:flex;align-items:center}.footer.svelte-sezqcq .goto-button.svelte-sezqcq{display:flex;align-self:flex-end;flex-wrap:wrap;align-items:center;overflow:hidden;height:0.875rem}.footer.svelte-sezqcq .goto-button .gap.svelte-sezqcq{height:100%;width:0.625rem}.footer.svelte-sezqcq .goto-button .text.svelte-sezqcq{display:block;height:100%;font-size:0.625rem}.footer.svelte-sezqcq .arrow-wrapper.svelte-sezqcq{height:0.875rem;display:flex;align-self:flex-end;flex-grow:0;flex-shrink:0;align-items:center;margin-left:0.25rem}.footer.svelte-sezqcq .arrow-wrapper svg.arrow.svelte-sezqcq{width:0.375rem;height:0.625rem}.footer.svelte-sezqcq .price.svelte-sezqcq{flex-shrink:0;margin-right:auto;white-space:nowrap;display:flex;align-items:baseline;margin-left:0.625rem}.footer.svelte-sezqcq .price .value.svelte-sezqcq{position:relative;font-size:0.875rem;line-height:1rem;font-family:TG-TYPE, PingFangSC, Segoe UI, Rototo, sans-serif;letter-spacing:0rem}.footer.svelte-sezqcq .price .unit.svelte-sezqcq{padding-left:0.125rem;font-size:0.625rem}.tags-wrapper.svelte-sezqcq.svelte-sezqcq{position:relative;overflow:hidden;height:1rem;margin-top:0.25rem}.tags-wrapper.svelte-sezqcq .tags.svelte-sezqcq{position:relative;display:inline-flex;max-width:100%;flex-wrap:wrap;padding-left:0.625rem;padding-right:0.375rem}.tags-wrapper.svelte-sezqcq .tags .tag.svelte-sezqcq{display:flex;align-items:center;justify-content:center;flex-shrink:0;flex-grow:0;font-size:0.625rem;height:1rem;margin-right:0.25rem;margin-bottom:0.625rem;padding:0 0.25rem;border-radius:0.125rem;max-width:100%;text-overflow:ellipsis;overflow:hidden}.marketing.light.svelte-sezqcq .content.svelte-sezqcq{background-color:white}.marketing.light.svelte-sezqcq .content .title-wrapper .title .text.svelte-sezqcq{color:rgba(0, 0, 0, 0.8)}.marketing.light.svelte-sezqcq .content .tags-wrapper .tags .primary-tag.svelte-sezqcq{background:rgba(234, 208, 154, 0.5);color:#946700}.marketing.light.svelte-sezqcq .content .tags-wrapper .tags .secondary-tag.svelte-sezqcq{background:rgba(0, 0, 0, 0.06);color:rgba(0, 0, 0, 0.5)}.marketing.light.svelte-sezqcq .content .footer.svelte-sezqcq{color:#946700;fill:#946700}.marketing.dark.svelte-sezqcq .content.svelte-sezqcq{background-color:rgba(0, 0, 0, 0.5)}.marketing.dark.svelte-sezqcq .content .title-wrapper .title .text.svelte-sezqcq{color:white}.marketing.dark.svelte-sezqcq .content .tags-wrapper .tags .primary-tag.svelte-sezqcq{background:rgba(234, 208, 154, 0.5);color:white}.marketing.dark.svelte-sezqcq .content .tags-wrapper .tags .secondary-tag.svelte-sezqcq{background:rgba(255, 255, 255, 0.15);color:rgba(255, 255, 255, 0.85)}.marketing.dark.svelte-sezqcq .content .footer.svelte-sezqcq{color:#ead09a;fill:#ead09a}.marketing.unfolded.svelte-sezqcq .line.svelte-sezqcq{transform:translateX(-50%) scale(1, 1)}.marketing.folded.svelte-sezqcq .line.svelte-sezqcq{transform:translateX(-50%) scale(1, 0);transition-timing-function:ease-in}.marketing.unfolded.svelte-sezqcq .content.svelte-sezqcq{opacity:1}.marketing.folded.svelte-sezqcq .content.svelte-sezqcq{opacity:0;transform:translateY(0.425rem);transition-timing-function:ease-in}');
95
+ function he(i) {
96
+ le(i, "svelte-sezqcq", '@charset "UTF-8";.svelte-sezqcq.svelte-sezqcq{box-sizing:border-box}.marketing.svelte-sezqcq.svelte-sezqcq{transform:translateY(-100%)}.marketing.svelte-sezqcq .line.svelte-sezqcq{position:absolute;height:1.875rem;width:0.0625rem;left:50%;transform:translateX(-50%);background-color:white;bottom:0;transform-origin:bottom;transition:all 500ms}.marketing.svelte-sezqcq .content.svelte-sezqcq{position:relative;min-width:7.5rem;width:-moz-max-content;width:max-content;height:-moz-max-content;height:max-content;border-radius:0.25rem;top:-1.875rem;left:-1rem;padding:0.5rem 0rem 0.5625rem;transition-property:opacity, transform;transition-duration:500ms}.marketing.svelte-sezqcq .content .headerImage.svelte-sezqcq{position:absolute;width:100%;top:0.25rem;transform:translateY(-100%);border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.title-wrapper.svelte-sezqcq.svelte-sezqcq{position:relative;width:100%;height:1.125rem}.title-wrapper.svelte-sezqcq .title.svelte-sezqcq{border-radius:0.25rem;width:100%;padding-left:0.625rem;padding-right:0.625rem}.title-wrapper.svelte-sezqcq .title .text.svelte-sezqcq{display:block;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:0.75rem;font-weight:bold;line-height:1.125rem}.footer.svelte-sezqcq.svelte-sezqcq{position:relative;padding:0.5rem 0.625rem 0 0;width:100%;display:flex;align-items:center}.footer.svelte-sezqcq .goto-button.svelte-sezqcq{display:flex;align-self:flex-end;flex-wrap:wrap;align-items:center;overflow:hidden;height:0.875rem}.footer.svelte-sezqcq .goto-button .gap.svelte-sezqcq{height:100%;width:0.625rem}.footer.svelte-sezqcq .goto-button .text.svelte-sezqcq{display:block;height:100%;font-size:0.625rem}.footer.svelte-sezqcq .arrow-wrapper.svelte-sezqcq{height:0.875rem;display:flex;align-self:flex-end;flex-grow:0;flex-shrink:0;align-items:center;margin-left:0.25rem}.footer.svelte-sezqcq .arrow-wrapper svg.arrow.svelte-sezqcq{width:0.375rem;height:0.625rem}.footer.svelte-sezqcq .price.svelte-sezqcq{flex-shrink:0;margin-right:auto;white-space:nowrap;display:flex;align-items:baseline;margin-left:0.625rem}.footer.svelte-sezqcq .price .value.svelte-sezqcq{position:relative;font-size:0.875rem;line-height:1rem;font-family:TG-TYPE, PingFangSC, Segoe UI, Rototo, sans-serif;letter-spacing:0rem}.footer.svelte-sezqcq .price .unit.svelte-sezqcq{padding-left:0.125rem;font-size:0.625rem}.tags-wrapper.svelte-sezqcq.svelte-sezqcq{position:relative;overflow:hidden;height:1rem;margin-top:0.25rem}.tags-wrapper.svelte-sezqcq .tags.svelte-sezqcq{position:relative;display:inline-flex;max-width:100%;flex-wrap:wrap;padding-left:0.625rem;padding-right:0.375rem}.tags-wrapper.svelte-sezqcq .tags .tag.svelte-sezqcq{display:flex;align-items:center;justify-content:center;flex-shrink:0;flex-grow:0;font-size:0.625rem;height:1rem;margin-right:0.25rem;margin-bottom:0.625rem;padding:0 0.25rem;border-radius:0.125rem;max-width:100%;text-overflow:ellipsis;overflow:hidden}.marketing.light.svelte-sezqcq .content.svelte-sezqcq{background-color:white}.marketing.light.svelte-sezqcq .content .title-wrapper .title .text.svelte-sezqcq{color:rgba(0, 0, 0, 0.8)}.marketing.light.svelte-sezqcq .content .tags-wrapper .tags .primary-tag.svelte-sezqcq{background:rgba(234, 208, 154, 0.5);color:#946700}.marketing.light.svelte-sezqcq .content .tags-wrapper .tags .secondary-tag.svelte-sezqcq{background:rgba(0, 0, 0, 0.06);color:rgba(0, 0, 0, 0.5)}.marketing.light.svelte-sezqcq .content .footer.svelte-sezqcq{color:#946700;fill:#946700}.marketing.dark.svelte-sezqcq .content.svelte-sezqcq{background-color:rgba(0, 0, 0, 0.5)}.marketing.dark.svelte-sezqcq .content .title-wrapper .title .text.svelte-sezqcq{color:white}.marketing.dark.svelte-sezqcq .content .tags-wrapper .tags .primary-tag.svelte-sezqcq{background:rgba(234, 208, 154, 0.5);color:white}.marketing.dark.svelte-sezqcq .content .tags-wrapper .tags .secondary-tag.svelte-sezqcq{background:rgba(255, 255, 255, 0.15);color:rgba(255, 255, 255, 0.85)}.marketing.dark.svelte-sezqcq .content .footer.svelte-sezqcq{color:#ead09a;fill:#ead09a}.marketing.unfolded.svelte-sezqcq .line.svelte-sezqcq{transform:translateX(-50%) scale(1, 1)}.marketing.folded.svelte-sezqcq .line.svelte-sezqcq{transform:translateX(-50%) scale(1, 0);transition-timing-function:ease-in}.marketing.unfolded.svelte-sezqcq .content.svelte-sezqcq{opacity:1}.marketing.folded.svelte-sezqcq .content.svelte-sezqcq{opacity:0;transform:translateY(0.425rem);transition-timing-function:ease-in}');
18
97
  }
19
- function j(l, e, t) {
20
- const s = l.slice();
21
- return s[0] = e[t], s;
98
+ function j(i, e, t) {
99
+ const l = i.slice();
100
+ return l[0] = e[t], l;
22
101
  }
23
- function E(l, e, t) {
24
- const s = l.slice();
25
- return s[0] = e[t], s;
102
+ function E(i, e, t) {
103
+ const l = i.slice();
104
+ return l[0] = e[t], l;
26
105
  }
27
- function N(l) {
106
+ function N(i) {
28
107
  let e, t;
29
108
  return {
30
109
  c() {
31
- e = p("img"), d(e, "class", "headerImage svelte-sezqcq"), F(e.src, t = /*data*/
32
- l[3].headerPictureUrl) || d(e, "src", t), d(e, "alt", "");
110
+ e = d("img"), q(e, "class", "headerImage svelte-sezqcq"), F(e.src, t = /*data*/
111
+ i[3].headerPictureUrl) || q(e, "src", t), q(e, "alt", "");
33
112
  },
34
- m(s, i) {
35
- y(s, e, i);
113
+ m(l, r) {
114
+ y(l, e, r);
36
115
  },
37
- p(s, i) {
38
- i & /*data*/
116
+ p(l, r) {
117
+ r & /*data*/
39
118
  8 && !F(e.src, t = /*data*/
40
- s[3].headerPictureUrl) && d(e, "src", t);
119
+ l[3].headerPictureUrl) && q(e, "src", t);
41
120
  },
42
- d(s) {
43
- s && T(e);
121
+ d(l) {
122
+ l && T(e);
44
123
  }
45
124
  };
46
125
  }
47
- function Z(l) {
48
- let e, t, s, i, n, r = (
126
+ function Z(i) {
127
+ let e, t, l, r, o, s = (
49
128
  /*primaryTags*/
50
- l[2] || []
51
- ), c = [];
52
- for (let o = 0; o < r.length; o += 1)
53
- c[o] = A(E(l, r, o));
54
- let m = (
129
+ i[2] || []
130
+ ), m = [];
131
+ for (let a = 0; a < s.length; a += 1)
132
+ m[a] = A(E(i, s, a));
133
+ let p = (
55
134
  /*secondaryTags*/
56
- l[5] || []
57
- ), f = [];
58
- for (let o = 0; o < m.length; o += 1)
59
- f[o] = J(j(l, m, o));
135
+ i[5] || []
136
+ ), c = [];
137
+ for (let a = 0; a < p.length; a += 1)
138
+ c[a] = J(j(i, p, a));
60
139
  return {
61
140
  c() {
62
- e = p("div"), t = p("div");
63
- for (let o = 0; o < c.length; o += 1)
64
- c[o].c();
65
- s = C();
66
- for (let o = 0; o < f.length; o += 1)
67
- f[o].c();
68
- d(t, "class", "tags svelte-sezqcq"), d(e, "class", "tags-wrapper svelte-sezqcq");
69
- },
70
- m(o, v) {
71
- y(o, e, v), q(e, t);
141
+ e = d("div"), t = d("div");
142
+ for (let a = 0; a < m.length; a += 1)
143
+ m[a].c();
144
+ l = C();
72
145
  for (let a = 0; a < c.length; a += 1)
73
- c[a] && c[a].m(t, null);
74
- q(t, s);
75
- for (let a = 0; a < f.length; a += 1)
76
- f[a] && f[a].m(t, null);
77
- i || (n = [
78
- fe(ve.call(null, t)),
79
- me(
146
+ c[a].c();
147
+ q(t, "class", "tags svelte-sezqcq"), q(e, "class", "tags-wrapper svelte-sezqcq");
148
+ },
149
+ m(a, v) {
150
+ y(a, e, v), g(e, t);
151
+ for (let n = 0; n < m.length; n += 1)
152
+ m[n] && m[n].m(t, null);
153
+ g(t, l);
154
+ for (let n = 0; n < c.length; n += 1)
155
+ c[n] && c[n].m(t, null);
156
+ r || (o = [
157
+ ce(ve.call(null, t)),
158
+ pe(
80
159
  t,
81
160
  "clientHeight",
82
161
  /*clientHeight_handler*/
83
- l[11]
162
+ i[11]
84
163
  )
85
- ], i = !0);
164
+ ], r = !0);
86
165
  },
87
- p(o, v) {
166
+ p(a, v) {
88
167
  if (v & /*minTagWidth, primaryTags*/
89
168
  4) {
90
- r = /*primaryTags*/
91
- o[2] || [];
92
- let a;
93
- for (a = 0; a < r.length; a += 1) {
94
- const k = E(o, r, a);
95
- c[a] ? c[a].p(k, v) : (c[a] = A(k), c[a].c(), c[a].m(t, s));
169
+ s = /*primaryTags*/
170
+ a[2] || [];
171
+ let n;
172
+ for (n = 0; n < s.length; n += 1) {
173
+ const k = E(a, s, n);
174
+ m[n] ? m[n].p(k, v) : (m[n] = A(k), m[n].c(), m[n].m(t, l));
96
175
  }
97
- for (; a < c.length; a += 1)
98
- c[a].d(1);
99
- c.length = r.length;
176
+ for (; n < m.length; n += 1)
177
+ m[n].d(1);
178
+ m.length = s.length;
100
179
  }
101
180
  if (v & /*minTagWidth, secondaryTags*/
102
181
  32) {
103
- m = /*secondaryTags*/
104
- o[5] || [];
105
- let a;
106
- for (a = 0; a < m.length; a += 1) {
107
- const k = j(o, m, a);
108
- f[a] ? f[a].p(k, v) : (f[a] = J(k), f[a].c(), f[a].m(t, null));
182
+ p = /*secondaryTags*/
183
+ a[5] || [];
184
+ let n;
185
+ for (n = 0; n < p.length; n += 1) {
186
+ const k = j(a, p, n);
187
+ c[n] ? c[n].p(k, v) : (c[n] = J(k), c[n].c(), c[n].m(t, null));
109
188
  }
110
- for (; a < f.length; a += 1)
111
- f[a].d(1);
112
- f.length = m.length;
189
+ for (; n < c.length; n += 1)
190
+ c[n].d(1);
191
+ c.length = p.length;
113
192
  }
114
193
  },
115
- d(o) {
116
- o && T(e), O(c, o), O(f, o), i = !1, ge(n);
194
+ d(a) {
195
+ a && T(e), O(m, a), O(c, a), r = !1, fe(o);
117
196
  }
118
197
  };
119
198
  }
120
- function A(l) {
199
+ function A(i) {
121
200
  let e, t = (
122
201
  /*tag*/
123
- l[0] + ""
124
- ), s;
202
+ i[0] + ""
203
+ ), l;
125
204
  return {
126
205
  c() {
127
- e = p("div"), s = S(t), d(e, "class", "tag primary-tag svelte-sezqcq"), L(e, "min-width", B);
206
+ e = d("div"), l = S(t), q(e, "class", "tag primary-tag svelte-sezqcq"), L(e, "min-width", B);
128
207
  },
129
- m(i, n) {
130
- y(i, e, n), q(e, s);
208
+ m(r, o) {
209
+ y(r, e, o), g(e, l);
131
210
  },
132
- p(i, n) {
133
- n & /*primaryTags*/
211
+ p(r, o) {
212
+ o & /*primaryTags*/
134
213
  4 && t !== (t = /*tag*/
135
- i[0] + "") && P(s, t);
214
+ r[0] + "") && P(l, t);
136
215
  },
137
- d(i) {
138
- i && T(e);
216
+ d(r) {
217
+ r && T(e);
139
218
  }
140
219
  };
141
220
  }
142
- function J(l) {
221
+ function J(i) {
143
222
  let e, t = (
144
223
  /*tag*/
145
- l[0] + ""
146
- ), s;
224
+ i[0] + ""
225
+ ), l;
147
226
  return {
148
227
  c() {
149
- e = p("div"), s = S(t), d(e, "class", "tag secondary-tag svelte-sezqcq"), L(e, "min-width", B);
228
+ e = d("div"), l = S(t), q(e, "class", "tag secondary-tag svelte-sezqcq"), L(e, "min-width", B);
150
229
  },
151
- m(i, n) {
152
- y(i, e, n), q(e, s);
230
+ m(r, o) {
231
+ y(r, e, o), g(e, l);
153
232
  },
154
- p(i, n) {
155
- n & /*secondaryTags*/
233
+ p(r, o) {
234
+ o & /*secondaryTags*/
156
235
  32 && t !== (t = /*tag*/
157
- i[0] + "") && P(s, t);
236
+ r[0] + "") && P(l, t);
158
237
  },
159
- d(i) {
160
- i && T(e);
238
+ d(r) {
239
+ r && T(e);
161
240
  }
162
241
  };
163
242
  }
164
- function K(l) {
165
- let e, t, s = (
243
+ function K(i) {
244
+ let e, t, l = (
166
245
  /*havePrice*/
167
- l[7] && Q(l)
168
- ), i = (
246
+ i[7] && Q(i)
247
+ ), r = (
169
248
  /*data*/
170
- l[3].highlightText && x(l)
249
+ i[3].highlightText && x(i)
171
250
  );
172
251
  return {
173
252
  c() {
174
- e = p("div"), s && s.c(), t = C(), i && i.c(), d(e, "class", "footer svelte-sezqcq");
253
+ e = d("div"), l && l.c(), t = C(), r && r.c(), q(e, "class", "footer svelte-sezqcq");
175
254
  },
176
- m(n, r) {
177
- y(n, e, r), s && s.m(e, null), q(e, t), i && i.m(e, null);
255
+ m(o, s) {
256
+ y(o, e, s), l && l.m(e, null), g(e, t), r && r.m(e, null);
178
257
  },
179
- p(n, r) {
258
+ p(o, s) {
180
259
  /*havePrice*/
181
- n[7] ? s ? s.p(n, r) : (s = Q(n), s.c(), s.m(e, t)) : s && (s.d(1), s = null), /*data*/
182
- n[3].highlightText ? i ? i.p(n, r) : (i = x(n), i.c(), i.m(e, null)) : i && (i.d(1), i = null);
260
+ o[7] ? l ? l.p(o, s) : (l = Q(o), l.c(), l.m(e, t)) : l && (l.d(1), l = null), /*data*/
261
+ o[3].highlightText ? r ? r.p(o, s) : (r = x(o), r.c(), r.m(e, null)) : r && (r.d(1), r = null);
183
262
  },
184
- d(n) {
185
- n && T(e), s && s.d(), i && i.d();
263
+ d(o) {
264
+ o && T(e), l && l.d(), r && r.d();
186
265
  }
187
266
  };
188
267
  }
189
- function Q(l) {
190
- let e, t, s = (
268
+ function Q(i) {
269
+ let e, t, l = (
191
270
  /*data*/
192
- l[3].price.value + ""
193
- ), i, n, r = (
271
+ i[3].price.value + ""
272
+ ), r, o, s = (
194
273
  /*data*/
195
- l[3].price.unit && V(l)
274
+ i[3].price.unit && V(i)
196
275
  );
197
276
  return {
198
277
  c() {
199
- e = p("div"), t = p("span"), i = S(s), n = C(), r && r.c(), d(t, "class", "value svelte-sezqcq"), d(e, "class", "price svelte-sezqcq");
278
+ e = d("div"), t = d("span"), r = S(l), o = C(), s && s.c(), q(t, "class", "value svelte-sezqcq"), q(e, "class", "price svelte-sezqcq");
200
279
  },
201
- m(c, m) {
202
- y(c, e, m), q(e, t), q(t, i), q(e, n), r && r.m(e, null);
280
+ m(m, p) {
281
+ y(m, e, p), g(e, t), g(t, r), g(e, o), s && s.m(e, null);
203
282
  },
204
- p(c, m) {
205
- m & /*data*/
206
- 8 && s !== (s = /*data*/
207
- c[3].price.value + "") && P(i, s), /*data*/
208
- c[3].price.unit ? r ? r.p(c, m) : (r = V(c), r.c(), r.m(e, null)) : r && (r.d(1), r = null);
283
+ p(m, p) {
284
+ p & /*data*/
285
+ 8 && l !== (l = /*data*/
286
+ m[3].price.value + "") && P(r, l), /*data*/
287
+ m[3].price.unit ? s ? s.p(m, p) : (s = V(m), s.c(), s.m(e, null)) : s && (s.d(1), s = null);
209
288
  },
210
- d(c) {
211
- c && T(e), r && r.d();
289
+ d(m) {
290
+ m && T(e), s && s.d();
212
291
  }
213
292
  };
214
293
  }
215
- function V(l) {
294
+ function V(i) {
216
295
  let e, t = (
217
296
  /*data*/
218
- l[3].price.unit + ""
219
- ), s;
297
+ i[3].price.unit + ""
298
+ ), l;
220
299
  return {
221
300
  c() {
222
- e = p("span"), s = S(t), d(e, "class", "unit svelte-sezqcq");
301
+ e = d("span"), l = S(t), q(e, "class", "unit svelte-sezqcq");
223
302
  },
224
- m(i, n) {
225
- y(i, e, n), q(e, s);
303
+ m(r, o) {
304
+ y(r, e, o), g(e, l);
226
305
  },
227
- p(i, n) {
228
- n & /*data*/
306
+ p(r, o) {
307
+ o & /*data*/
229
308
  8 && t !== (t = /*data*/
230
- i[3].price.unit + "") && P(s, t);
309
+ r[3].price.unit + "") && P(l, t);
231
310
  },
232
- d(i) {
233
- i && T(e);
311
+ d(r) {
312
+ r && T(e);
234
313
  }
235
314
  };
236
315
  }
237
- function x(l) {
238
- let e, t, s, i, n = (
316
+ function x(i) {
317
+ let e, t, l, r, o = (
239
318
  /*data*/
240
- l[3].highlightText + ""
241
- ), r, c, m;
319
+ i[3].highlightText + ""
320
+ ), s, m, p;
242
321
  return {
243
322
  c() {
244
- e = p("div"), t = p("div"), s = C(), i = p("span"), r = S(n), c = C(), m = p("div"), m.innerHTML = '<svg class="arrow svelte-sezqcq" viewBox="0 0 6 9"><g transform="translate(-3, -2)" fill-rule="nonzero" class="svelte-sezqcq"><path d="M4.43868724,2.12056563 C4.28121824,1.95989074 4.02582143,1.95979988 3.86824251,2.1203627 C3.72498894,2.26632889 3.71189225,2.49481723 3.82900374,2.65587166 L6.57092402,5.92894326 C6.72651763,6.11470411 6.72651763,6.38529589 6.57092402,6.57105674 L3.86804348,9.79798499 C3.72488984,9.94405307 3.71194952,10.1725507 3.8291712,10.3335217 L3.86824251,10.3796373 C4.01149607,10.5256035 4.23559087,10.5387981 4.39346025,10.4192733 L4.43868724,10.3794344 L8.1144599,6.5985342 C8.30312347,6.40447482 8.30312347,6.09552518 8.1144599,5.9014658 L4.43868724,2.12056563 Z" class="svelte-sezqcq"></path></g></svg>', d(t, "class", "gap svelte-sezqcq"), d(i, "class", "text svelte-sezqcq"), d(e, "class", "goto-button goto-icon svelte-sezqcq"), d(m, "class", "arrow-wrapper svelte-sezqcq");
323
+ e = d("div"), t = d("div"), l = C(), r = d("span"), s = S(o), m = C(), p = d("div"), p.innerHTML = '<svg class="arrow svelte-sezqcq" viewBox="0 0 6 9"><g transform="translate(-3, -2)" fill-rule="nonzero" class="svelte-sezqcq"><path d="M4.43868724,2.12056563 C4.28121824,1.95989074 4.02582143,1.95979988 3.86824251,2.1203627 C3.72498894,2.26632889 3.71189225,2.49481723 3.82900374,2.65587166 L6.57092402,5.92894326 C6.72651763,6.11470411 6.72651763,6.38529589 6.57092402,6.57105674 L3.86804348,9.79798499 C3.72488984,9.94405307 3.71194952,10.1725507 3.8291712,10.3335217 L3.86824251,10.3796373 C4.01149607,10.5256035 4.23559087,10.5387981 4.39346025,10.4192733 L4.43868724,10.3794344 L8.1144599,6.5985342 C8.30312347,6.40447482 8.30312347,6.09552518 8.1144599,5.9014658 L4.43868724,2.12056563 Z" class="svelte-sezqcq"></path></g></svg>', q(t, "class", "gap svelte-sezqcq"), q(r, "class", "text svelte-sezqcq"), q(e, "class", "goto-button goto-icon svelte-sezqcq"), q(p, "class", "arrow-wrapper svelte-sezqcq");
245
324
  },
246
- m(f, o) {
247
- y(f, e, o), q(e, t), q(e, s), q(e, i), q(i, r), y(f, c, o), y(f, m, o);
325
+ m(c, a) {
326
+ y(c, e, a), g(e, t), g(e, l), g(e, r), g(r, s), y(c, m, a), y(c, p, a);
248
327
  },
249
- p(f, o) {
250
- o & /*data*/
251
- 8 && n !== (n = /*data*/
252
- f[3].highlightText + "") && P(r, n);
328
+ p(c, a) {
329
+ a & /*data*/
330
+ 8 && o !== (o = /*data*/
331
+ c[3].highlightText + "") && P(s, o);
253
332
  },
254
- d(f) {
255
- f && T(e), f && T(c), f && T(m);
333
+ d(c) {
334
+ c && T(e), c && T(m), c && T(p);
256
335
  }
257
336
  };
258
337
  }
259
- function ue(l) {
338
+ function ue(i) {
260
339
  var W, G;
261
- let e, t, s, i, n, r, c, m, f, o, v = (
340
+ let e, t, l, r, o, s, m, p, c, a, v = (
262
341
  /*data*/
263
- l[3].title + ""
264
- ), a, k, U, _, w;
265
- t = new pe({
342
+ i[3].title + ""
343
+ ), n, k, U, _, w;
344
+ t = new de({
266
345
  props: {
267
346
  visible: (
268
347
  /*unfolded*/
269
- l[4]
348
+ i[4]
270
349
  ),
271
350
  outDelay: 500,
272
351
  left: 61,
@@ -277,101 +356,101 @@ function ue(l) {
277
356
  });
278
357
  let h = (
279
358
  /*data*/
280
- l[3].headerPictureUrl && N(l)
359
+ i[3].headerPictureUrl && N(i)
281
360
  ), u = (
282
361
  /*primaryTags*/
283
- ((W = l[2].length) != null ? W : 0) + /*secondaryTags*/
284
- ((G = l[5].length) != null ? G : 0) > 0 && Z(l)
362
+ ((W = i[2].length) != null ? W : 0) + /*secondaryTags*/
363
+ ((G = i[5].length) != null ? G : 0) > 0 && Z(i)
285
364
  ), z = (
286
365
  /*havePrice*/
287
- (l[7] || /*data*/
288
- l[3].highlightText) && K(l)
366
+ (i[7] || /*data*/
367
+ i[3].highlightText) && K(i)
289
368
  );
290
369
  return {
291
370
  c() {
292
- e = p("div"), re(t.$$.fragment), s = C(), i = p("div"), n = C(), r = p("div"), h && h.c(), c = C(), m = p("div"), f = p("div"), o = p("div"), a = S(v), k = C(), u && u.c(), U = C(), z && z.c(), d(i, "class", "line svelte-sezqcq"), L(
293
- i,
371
+ e = d("div"), se(t.$$.fragment), l = C(), r = d("div"), o = C(), s = d("div"), h && h.c(), m = C(), p = d("div"), c = d("div"), a = d("div"), n = S(v), k = C(), u && u.c(), U = C(), z && z.c(), q(r, "class", "line svelte-sezqcq"), L(
372
+ r,
294
373
  "transition-delay",
295
374
  /*unfolded*/
296
- l[4] ? R + "ms" : Y + ee - $ - 40 + "ms"
297
- ), d(o, "class", "text svelte-sezqcq"), d(f, "class", "title svelte-sezqcq"), d(m, "class", "title-wrapper svelte-sezqcq"), d(r, "class", "content svelte-sezqcq"), L(r, "max-width", de(
375
+ i[4] ? R + "ms" : Y + ee - $ - 40 + "ms"
376
+ ), q(a, "class", "text svelte-sezqcq"), q(c, "class", "title svelte-sezqcq"), q(p, "class", "title-wrapper svelte-sezqcq"), q(s, "class", "content svelte-sezqcq"), L(s, "max-width", qe(
298
377
  /*maxWidth*/
299
- l[9]
378
+ i[9]
300
379
  )), L(
301
- r,
380
+ s,
302
381
  "transition-delay",
303
382
  /*unfolded*/
304
- l[4] ? R + Y + "ms" : "0ms"
305
- ), d(e, "class", _ = D(`marketing ${/*theme*/
306
- l[6]}`) + " svelte-sezqcq"), H(
383
+ i[4] ? R + Y + "ms" : "0ms"
384
+ ), q(e, "class", _ = D(`marketing ${/*theme*/
385
+ i[6]}`) + " svelte-sezqcq"), H(
307
386
  e,
308
387
  "unfolded",
309
388
  /*unfolded*/
310
- l[4]
389
+ i[4]
311
390
  ), H(
312
391
  e,
313
392
  "folded",
314
393
  /*folded*/
315
- l[8]
394
+ i[8]
316
395
  );
317
396
  },
318
- m(g, b) {
319
- y(g, e, b), ne(t, e, null), q(e, s), q(e, i), q(e, n), q(e, r), h && h.m(r, null), q(r, c), q(r, m), q(m, f), q(f, o), q(o, a), q(r, k), u && u.m(r, null), q(r, U), z && z.m(r, null), w = !0;
397
+ m(f, b) {
398
+ y(f, e, b), oe(t, e, null), g(e, l), g(e, r), g(e, o), g(e, s), h && h.m(s, null), g(s, m), g(s, p), g(p, c), g(c, a), g(a, n), g(s, k), u && u.m(s, null), g(s, U), z && z.m(s, null), w = !0;
320
399
  },
321
- p(g, [b]) {
400
+ p(f, [b]) {
322
401
  var M, X;
323
402
  const I = {};
324
403
  b & /*unfolded*/
325
404
  16 && (I.visible = /*unfolded*/
326
- g[4]), t.$set(I), b & /*unfolded*/
405
+ f[4]), t.$set(I), b & /*unfolded*/
327
406
  16 && L(
328
- i,
407
+ r,
329
408
  "transition-delay",
330
409
  /*unfolded*/
331
- g[4] ? R + "ms" : Y + ee - $ - 40 + "ms"
410
+ f[4] ? R + "ms" : Y + ee - $ - 40 + "ms"
332
411
  ), /*data*/
333
- g[3].headerPictureUrl ? h ? h.p(g, b) : (h = N(g), h.c(), h.m(r, c)) : h && (h.d(1), h = null), (!w || b & /*data*/
412
+ f[3].headerPictureUrl ? h ? h.p(f, b) : (h = N(f), h.c(), h.m(s, m)) : h && (h.d(1), h = null), (!w || b & /*data*/
334
413
  8) && v !== (v = /*data*/
335
- g[3].title + "") && P(a, v), /*primaryTags*/
336
- ((M = g[2].length) != null ? M : 0) + /*secondaryTags*/
337
- ((X = g[5].length) != null ? X : 0) > 0 ? u ? u.p(g, b) : (u = Z(g), u.c(), u.m(r, U)) : u && (u.d(1), u = null), /*havePrice*/
338
- g[7] || /*data*/
339
- g[3].highlightText ? z ? z.p(g, b) : (z = K(g), z.c(), z.m(r, null)) : z && (z.d(1), z = null), b & /*unfolded*/
414
+ f[3].title + "") && P(n, v), /*primaryTags*/
415
+ ((M = f[2].length) != null ? M : 0) + /*secondaryTags*/
416
+ ((X = f[5].length) != null ? X : 0) > 0 ? u ? u.p(f, b) : (u = Z(f), u.c(), u.m(s, U)) : u && (u.d(1), u = null), /*havePrice*/
417
+ f[7] || /*data*/
418
+ f[3].highlightText ? z ? z.p(f, b) : (z = K(f), z.c(), z.m(s, null)) : z && (z.d(1), z = null), b & /*unfolded*/
340
419
  16 && L(
341
- r,
420
+ s,
342
421
  "transition-delay",
343
422
  /*unfolded*/
344
- g[4] ? R + Y + "ms" : "0ms"
423
+ f[4] ? R + Y + "ms" : "0ms"
345
424
  ), (!w || b & /*theme*/
346
425
  64 && _ !== (_ = D(`marketing ${/*theme*/
347
- g[6]}`) + " svelte-sezqcq")) && d(e, "class", _), (!w || b & /*theme, unfolded*/
426
+ f[6]}`) + " svelte-sezqcq")) && q(e, "class", _), (!w || b & /*theme, unfolded*/
348
427
  80) && H(
349
428
  e,
350
429
  "unfolded",
351
430
  /*unfolded*/
352
- g[4]
431
+ f[4]
353
432
  ), (!w || b & /*theme, folded*/
354
433
  320) && H(
355
434
  e,
356
435
  "folded",
357
436
  /*folded*/
358
- g[8]
437
+ f[8]
359
438
  );
360
439
  },
361
- i(g) {
362
- w || (ae(t.$$.fragment, g), w = !0);
440
+ i(f) {
441
+ w || (ne(t.$$.fragment, f), w = !0);
363
442
  },
364
- o(g) {
365
- oe(t.$$.fragment, g), w = !1;
443
+ o(f) {
444
+ ae(t.$$.fragment, f), w = !1;
366
445
  },
367
- d(g) {
368
- g && T(e), ce(t), h && h.d(), u && u.d(), z && z.d();
446
+ d(f) {
447
+ f && T(e), me(t), h && h.d(), u && u.d(), z && z.d();
369
448
  }
370
449
  };
371
450
  }
372
451
  const B = 40, R = 400, $ = 500, Y = 180, ee = 500;
373
- function ze(l, e, t) {
374
- let s, i, n, r, c, m, f, o, { tag: v } = e, a, k = (() => {
452
+ function ze(i, e, t) {
453
+ let l, r, o, s, m, p, c, a, { tag: v } = e, n, k = (() => {
375
454
  var w;
376
455
  const _ = (w = v.data.limitWidth) != null ? w : !0;
377
456
  if (typeof _ == "number")
@@ -380,41 +459,41 @@ function ze(l, e, t) {
380
459
  return 172;
381
460
  })();
382
461
  const U = (_) => {
383
- t(1, a = _.detail);
462
+ t(1, n = _.detail);
384
463
  };
385
- return l.$$set = (_) => {
464
+ return i.$$set = (_) => {
386
465
  "tag" in _ && t(0, v = _.tag);
387
- }, l.$$.update = () => {
466
+ }, i.$$.update = () => {
388
467
  var _, w, h, u, z, W;
389
- l.$$.dirty & /*tag*/
390
- 1 && t(4, s = (w = (_ = v.state) == null ? void 0 : _.unfolded) != null ? w : !1), l.$$.dirty & /*unfolded*/
391
- 16 && t(8, i = !s), l.$$.dirty & /*tag*/
392
- 1 && t(3, n = v.data), l.$$.dirty & /*data*/
393
- 8 && t(7, r = qe((h = n.price) == null ? void 0 : h.value) && ((u = n.price) == null ? void 0 : u.value) !== ""), l.$$.dirty & /*tag*/
394
- 1 && t(6, c = v.data.theme || "light"), l.$$.dirty & /*tagsOffsetHeight, maxTagsLength*/
395
- 1026 && a > 40 && t(10, m = m - 1), l.$$.dirty & /*data, maxTagsLength*/
396
- 1032 && t(2, f = ((z = n.brandTags) == null ? void 0 : z.slice(0, m).filter(Boolean)) || []), l.$$.dirty & /*data, maxTagsLength, primaryTags*/
397
- 1036 && t(5, o = ((W = n.tags) == null ? void 0 : W.slice(0, m - f.length).filter(Boolean)) || []);
398
- }, t(10, m = (k - 20) / B), [
468
+ i.$$.dirty & /*tag*/
469
+ 1 && t(4, l = (w = (_ = v.state) == null ? void 0 : _.unfolded) != null ? w : !1), i.$$.dirty & /*unfolded*/
470
+ 16 && t(8, r = !l), i.$$.dirty & /*tag*/
471
+ 1 && t(3, o = v.data), i.$$.dirty & /*data*/
472
+ 8 && t(7, s = ge((h = o.price) == null ? void 0 : h.value) && ((u = o.price) == null ? void 0 : u.value) !== ""), i.$$.dirty & /*tag*/
473
+ 1 && t(6, m = v.data.theme || "light"), i.$$.dirty & /*tagsOffsetHeight, maxTagsLength*/
474
+ 1026 && n > 40 && t(10, p = p - 1), i.$$.dirty & /*data, maxTagsLength*/
475
+ 1032 && t(2, c = ((z = o.brandTags) == null ? void 0 : z.slice(0, p).filter(Boolean)) || []), i.$$.dirty & /*data, maxTagsLength, primaryTags*/
476
+ 1036 && t(5, a = ((W = o.tags) == null ? void 0 : W.slice(0, p - c.length).filter(Boolean)) || []);
477
+ }, t(10, p = (k - 20) / B), [
399
478
  v,
400
- a,
401
- f,
402
479
  n,
403
- s,
404
- o,
405
480
  c,
481
+ o,
482
+ l,
483
+ a,
484
+ m,
485
+ s,
406
486
  r,
407
- i,
408
487
  k,
409
- m,
488
+ p,
410
489
  U
411
490
  ];
412
491
  }
413
- class Be extends te {
492
+ class oi extends te {
414
493
  constructor(e) {
415
- super(), le(this, e, ze, ue, ie, { tag: 0 }, he);
494
+ super(), ie(this, e, ze, ue, re, { tag: 0 }, he);
416
495
  }
417
496
  }
418
497
  export {
419
- Be as default
498
+ oi as default
420
499
  };