@realsee/dnalogel 3.45.0 → 3.46.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.
Files changed (100) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/Sculpt/Meshes/Line.d.ts +6 -1
  3. package/dist/Sculpt/utils/removeAllTag.d.ts +2 -0
  4. package/dist/index.cjs.js +53 -53
  5. package/dist/index.js +29600 -29557
  6. package/dist/index.umd.js +49 -49
  7. package/dist/shared-utils/tag.d.ts +6 -3
  8. package/libs/AreaMakerPlugin/Controller.js +151 -78
  9. package/libs/AreaMakerPlugin/index.js +77 -4
  10. package/libs/AreaMakerPlugin/utils/Item.js +191 -111
  11. package/libs/CSS3DRenderPlugin/Controller.js +90 -29
  12. package/libs/CSS3DRenderPlugin/index.js +76 -15
  13. package/libs/CSS3DRenderPlugin/utils/three/CSS3DObject.js +133 -58
  14. package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +182 -116
  15. package/libs/CruisePlugin/BaseController.js +122 -49
  16. package/libs/CruisePlugin/Move.js +74 -21
  17. package/libs/CruisePlugin/Work.js +99 -46
  18. package/libs/CruisePlugin/index.js +80 -27
  19. package/libs/CurrentPanoImagePlugin/Controller.js +177 -104
  20. package/libs/CurrentPanoImagePlugin/index.js +77 -4
  21. package/libs/GuideLinePlugin/Controller.js +79 -26
  22. package/libs/GuideLinePlugin/GuideLineItem.js +83 -30
  23. package/libs/GuideLinePlugin/GuideLineModeItem/index.js +3 -2
  24. package/libs/GuideLinePlugin/GuideLineModeItem.js +82 -29
  25. package/libs/GuideLinePlugin/index.js +80 -27
  26. package/libs/ModelMakerPlugin/Controller.js +140 -82
  27. package/libs/ModelMakerPlugin/index.js +76 -18
  28. package/libs/ModelTVVideoPlugin/Plugin.js +118 -57
  29. package/libs/ModelTVVideoPlugin/index.js +69 -8
  30. package/libs/Object3DHelperPlugin/Controller.js +67 -43
  31. package/libs/Object3DHelperPlugin/index.js +36 -13
  32. package/libs/PanoCompassPlugin/Controller.js +98 -42
  33. package/libs/PanoCompassPlugin/index.js +72 -16
  34. package/libs/PanoDoorLabelPlugin/BaseController.js +99 -26
  35. package/libs/PanoDoorLabelPlugin/Controller.js +188 -115
  36. package/libs/PanoDoorLabelPlugin/index.js +77 -4
  37. package/libs/PanoMeasurePlugin/Components/Controller0.js +141 -88
  38. package/libs/PanoMeasurePlugin/Components/Controller1.js +179 -126
  39. package/libs/PanoMeasurePlugin/Controller/EditController.js +125 -72
  40. package/libs/PanoMeasurePlugin/Controller/WatchController.js +168 -92
  41. package/libs/PanoMeasurePlugin/Controller/index.js +110 -64
  42. package/libs/PanoMeasurePlugin/Model/area.js +115 -38
  43. package/libs/PanoMeasurePlugin/Modules/Magnifier.js +79 -0
  44. package/libs/PanoMeasurePlugin/Modules/UIController/index.js +98 -45
  45. package/libs/PanoMeasurePlugin/index.js +77 -31
  46. package/libs/PanoMeasurePlugin/utils/dom/areaDom.js +99 -20
  47. package/libs/PanoSpatialTagPlugin/Plugin.js +211 -150
  48. package/libs/PanoSpatialTagPlugin/index.js +67 -6
  49. package/libs/PanoTagPlugin/Components/Common/TagPoint.js +149 -68
  50. package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +296 -216
  51. package/libs/PanoTagPlugin/Components/Tag/index.js +258 -187
  52. package/libs/PanoTagPlugin/Components/TagContainer.js +158 -87
  53. package/libs/PanoTagPlugin/Components/TagItem.js +145 -74
  54. package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +133 -62
  55. package/libs/PanoTagPlugin/controller/Tag/ModelTag.js +110 -39
  56. package/libs/PanoTagPlugin/controller/Tag/PlaneTag.js +106 -35
  57. package/libs/PanoTagPlugin/controller/Tag/PointTag.js +114 -43
  58. package/libs/PanoTagPlugin/controller/TagRender.js +133 -80
  59. package/libs/PanoTagPlugin/controller/TagUtil.js +137 -84
  60. package/libs/PanoTagPlugin/controller/index.js +114 -61
  61. package/libs/PanoTagPlugin/index.js +90 -37
  62. package/libs/PanoTagPlugin/utils/tag/calculateTagConfig.js +122 -41
  63. package/libs/PanoVideoPlugin/Controller.js +138 -65
  64. package/libs/PanoVideoPlugin/VideoMeshController.js +150 -69
  65. package/libs/PanoVideoPlugin/index.js +83 -10
  66. package/libs/PipelinePlugin/Controller.js +200 -128
  67. package/libs/PipelinePlugin/index.js +77 -5
  68. package/libs/PipelinePlugin/utils/Objects/FlowPipe.js +103 -22
  69. package/libs/PipelinePlugin/utils/Objects/HighlightPipe.js +96 -15
  70. package/libs/PipelinePlugin/utils/Objects/Pipe.js +137 -56
  71. package/libs/Sculpt/Meshes/Box.js +6 -5
  72. package/libs/Sculpt/Meshes/Cylinder.js +7 -6
  73. package/libs/Sculpt/Meshes/Line.d.ts +6 -1
  74. package/libs/Sculpt/Meshes/Line.js +80 -57
  75. package/libs/Sculpt/Meshes/Point.js +6 -5
  76. package/libs/Sculpt/Meshes/Polyline.js +5 -4
  77. package/libs/Sculpt/Meshes/Rectangle.js +3 -2
  78. package/libs/Sculpt/Objects/Base/index.js +20 -17
  79. package/libs/Sculpt/Objects/Line/Editor.js +11 -10
  80. package/libs/Sculpt/utils/removeAllTag.d.ts +2 -0
  81. package/libs/Sculpt/utils/removeAllTag.js +10 -0
  82. package/libs/Sculpt/utils/three/ColoredMesh.js +14 -13
  83. package/libs/base/BasePlugin.js +14 -13
  84. package/libs/floorplan/MapviewFloorplanPlugin/Controller.js +129 -59
  85. package/libs/floorplan/MapviewFloorplanPlugin/index.js +76 -6
  86. package/libs/floorplan/ModelFloorplanPlugin/Controller.js +130 -59
  87. package/libs/floorplan/ModelFloorplanPlugin/index.js +76 -5
  88. package/libs/floorplan/PanoFloorplanRadarPlugin/Controller.js +159 -86
  89. package/libs/floorplan/PanoFloorplanRadarPlugin/index.js +77 -4
  90. package/libs/floorplan/TopviewFloorplanPlugin/Controller.js +152 -81
  91. package/libs/floorplan/TopviewFloorplanPlugin/index.js +76 -5
  92. package/libs/floorplan/index.js +1 -0
  93. package/libs/index.js +193 -192
  94. package/libs/shared-utils/five/index.js +3 -2
  95. package/libs/shared-utils/five/lookObject.js +3 -2
  96. package/libs/shared-utils/logger.js +1 -1
  97. package/libs/shared-utils/tag.d.ts +6 -3
  98. package/libs/shared-utils/tag.js +38 -24
  99. package/libs/shared-utils/three/index.js +1 -0
  100. package/package.json +1 -1
@@ -1,272 +1,352 @@
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 "../../../Sculpt/utils/removeAllTag.js";
89
+ import "../../../CSS3DRenderPlugin/utils/three/CSS3DSprite.js";
90
+ import "../../../shared-utils/isTouchDevice.js";
91
+ import "../../../shared-utils/five/getPosition.js";
92
+ import "../../../shared-utils/five/getRaycasterByNdcPosition.js";
13
93
  import "../../../vendor/svelte/transition/index.js";
14
94
  import "../../../vendor/svelte/easing/index.js";
15
95
  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}');
96
+ function he(i) {
97
+ 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
98
  }
19
- function j(l, e, t) {
20
- const s = l.slice();
21
- return s[0] = e[t], s;
99
+ function j(i, e, t) {
100
+ const l = i.slice();
101
+ return l[0] = e[t], l;
22
102
  }
23
- function E(l, e, t) {
24
- const s = l.slice();
25
- return s[0] = e[t], s;
103
+ function E(i, e, t) {
104
+ const l = i.slice();
105
+ return l[0] = e[t], l;
26
106
  }
27
- function N(l) {
107
+ function N(i) {
28
108
  let e, t;
29
109
  return {
30
110
  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", "");
111
+ e = d("img"), q(e, "class", "headerImage svelte-sezqcq"), F(e.src, t = /*data*/
112
+ i[3].headerPictureUrl) || q(e, "src", t), q(e, "alt", "");
33
113
  },
34
- m(s, i) {
35
- y(s, e, i);
114
+ m(l, r) {
115
+ y(l, e, r);
36
116
  },
37
- p(s, i) {
38
- i & /*data*/
117
+ p(l, r) {
118
+ r & /*data*/
39
119
  8 && !F(e.src, t = /*data*/
40
- s[3].headerPictureUrl) && d(e, "src", t);
120
+ l[3].headerPictureUrl) && q(e, "src", t);
41
121
  },
42
- d(s) {
43
- s && T(e);
122
+ d(l) {
123
+ l && T(e);
44
124
  }
45
125
  };
46
126
  }
47
- function Z(l) {
48
- let e, t, s, i, n, r = (
127
+ function Z(i) {
128
+ let e, t, l, r, o, s = (
49
129
  /*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 = (
130
+ i[2] || []
131
+ ), m = [];
132
+ for (let a = 0; a < s.length; a += 1)
133
+ m[a] = A(E(i, s, a));
134
+ let p = (
55
135
  /*secondaryTags*/
56
- l[5] || []
57
- ), f = [];
58
- for (let o = 0; o < m.length; o += 1)
59
- f[o] = J(j(l, m, o));
136
+ i[5] || []
137
+ ), c = [];
138
+ for (let a = 0; a < p.length; a += 1)
139
+ c[a] = J(j(i, p, a));
60
140
  return {
61
141
  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);
142
+ e = d("div"), t = d("div");
143
+ for (let a = 0; a < m.length; a += 1)
144
+ m[a].c();
145
+ l = C();
72
146
  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(
147
+ c[a].c();
148
+ q(t, "class", "tags svelte-sezqcq"), q(e, "class", "tags-wrapper svelte-sezqcq");
149
+ },
150
+ m(a, v) {
151
+ y(a, e, v), g(e, t);
152
+ for (let n = 0; n < m.length; n += 1)
153
+ m[n] && m[n].m(t, null);
154
+ g(t, l);
155
+ for (let n = 0; n < c.length; n += 1)
156
+ c[n] && c[n].m(t, null);
157
+ r || (o = [
158
+ ce(ve.call(null, t)),
159
+ pe(
80
160
  t,
81
161
  "clientHeight",
82
162
  /*clientHeight_handler*/
83
- l[11]
163
+ i[11]
84
164
  )
85
- ], i = !0);
165
+ ], r = !0);
86
166
  },
87
- p(o, v) {
167
+ p(a, v) {
88
168
  if (v & /*minTagWidth, primaryTags*/
89
169
  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));
170
+ s = /*primaryTags*/
171
+ a[2] || [];
172
+ let n;
173
+ for (n = 0; n < s.length; n += 1) {
174
+ const k = E(a, s, n);
175
+ m[n] ? m[n].p(k, v) : (m[n] = A(k), m[n].c(), m[n].m(t, l));
96
176
  }
97
- for (; a < c.length; a += 1)
98
- c[a].d(1);
99
- c.length = r.length;
177
+ for (; n < m.length; n += 1)
178
+ m[n].d(1);
179
+ m.length = s.length;
100
180
  }
101
181
  if (v & /*minTagWidth, secondaryTags*/
102
182
  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));
183
+ p = /*secondaryTags*/
184
+ a[5] || [];
185
+ let n;
186
+ for (n = 0; n < p.length; n += 1) {
187
+ const k = j(a, p, n);
188
+ c[n] ? c[n].p(k, v) : (c[n] = J(k), c[n].c(), c[n].m(t, null));
109
189
  }
110
- for (; a < f.length; a += 1)
111
- f[a].d(1);
112
- f.length = m.length;
190
+ for (; n < c.length; n += 1)
191
+ c[n].d(1);
192
+ c.length = p.length;
113
193
  }
114
194
  },
115
- d(o) {
116
- o && T(e), O(c, o), O(f, o), i = !1, ge(n);
195
+ d(a) {
196
+ a && T(e), O(m, a), O(c, a), r = !1, fe(o);
117
197
  }
118
198
  };
119
199
  }
120
- function A(l) {
200
+ function A(i) {
121
201
  let e, t = (
122
202
  /*tag*/
123
- l[0] + ""
124
- ), s;
203
+ i[0] + ""
204
+ ), l;
125
205
  return {
126
206
  c() {
127
- e = p("div"), s = S(t), d(e, "class", "tag primary-tag svelte-sezqcq"), L(e, "min-width", B);
207
+ e = d("div"), l = S(t), q(e, "class", "tag primary-tag svelte-sezqcq"), L(e, "min-width", B);
128
208
  },
129
- m(i, n) {
130
- y(i, e, n), q(e, s);
209
+ m(r, o) {
210
+ y(r, e, o), g(e, l);
131
211
  },
132
- p(i, n) {
133
- n & /*primaryTags*/
212
+ p(r, o) {
213
+ o & /*primaryTags*/
134
214
  4 && t !== (t = /*tag*/
135
- i[0] + "") && P(s, t);
215
+ r[0] + "") && P(l, t);
136
216
  },
137
- d(i) {
138
- i && T(e);
217
+ d(r) {
218
+ r && T(e);
139
219
  }
140
220
  };
141
221
  }
142
- function J(l) {
222
+ function J(i) {
143
223
  let e, t = (
144
224
  /*tag*/
145
- l[0] + ""
146
- ), s;
225
+ i[0] + ""
226
+ ), l;
147
227
  return {
148
228
  c() {
149
- e = p("div"), s = S(t), d(e, "class", "tag secondary-tag svelte-sezqcq"), L(e, "min-width", B);
229
+ e = d("div"), l = S(t), q(e, "class", "tag secondary-tag svelte-sezqcq"), L(e, "min-width", B);
150
230
  },
151
- m(i, n) {
152
- y(i, e, n), q(e, s);
231
+ m(r, o) {
232
+ y(r, e, o), g(e, l);
153
233
  },
154
- p(i, n) {
155
- n & /*secondaryTags*/
234
+ p(r, o) {
235
+ o & /*secondaryTags*/
156
236
  32 && t !== (t = /*tag*/
157
- i[0] + "") && P(s, t);
237
+ r[0] + "") && P(l, t);
158
238
  },
159
- d(i) {
160
- i && T(e);
239
+ d(r) {
240
+ r && T(e);
161
241
  }
162
242
  };
163
243
  }
164
- function K(l) {
165
- let e, t, s = (
244
+ function K(i) {
245
+ let e, t, l = (
166
246
  /*havePrice*/
167
- l[7] && Q(l)
168
- ), i = (
247
+ i[7] && Q(i)
248
+ ), r = (
169
249
  /*data*/
170
- l[3].highlightText && x(l)
250
+ i[3].highlightText && x(i)
171
251
  );
172
252
  return {
173
253
  c() {
174
- e = p("div"), s && s.c(), t = C(), i && i.c(), d(e, "class", "footer svelte-sezqcq");
254
+ e = d("div"), l && l.c(), t = C(), r && r.c(), q(e, "class", "footer svelte-sezqcq");
175
255
  },
176
- m(n, r) {
177
- y(n, e, r), s && s.m(e, null), q(e, t), i && i.m(e, null);
256
+ m(o, s) {
257
+ y(o, e, s), l && l.m(e, null), g(e, t), r && r.m(e, null);
178
258
  },
179
- p(n, r) {
259
+ p(o, s) {
180
260
  /*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);
261
+ o[7] ? l ? l.p(o, s) : (l = Q(o), l.c(), l.m(e, t)) : l && (l.d(1), l = null), /*data*/
262
+ o[3].highlightText ? r ? r.p(o, s) : (r = x(o), r.c(), r.m(e, null)) : r && (r.d(1), r = null);
183
263
  },
184
- d(n) {
185
- n && T(e), s && s.d(), i && i.d();
264
+ d(o) {
265
+ o && T(e), l && l.d(), r && r.d();
186
266
  }
187
267
  };
188
268
  }
189
- function Q(l) {
190
- let e, t, s = (
269
+ function Q(i) {
270
+ let e, t, l = (
191
271
  /*data*/
192
- l[3].price.value + ""
193
- ), i, n, r = (
272
+ i[3].price.value + ""
273
+ ), r, o, s = (
194
274
  /*data*/
195
- l[3].price.unit && V(l)
275
+ i[3].price.unit && V(i)
196
276
  );
197
277
  return {
198
278
  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");
279
+ 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
280
  },
201
- m(c, m) {
202
- y(c, e, m), q(e, t), q(t, i), q(e, n), r && r.m(e, null);
281
+ m(m, p) {
282
+ y(m, e, p), g(e, t), g(t, r), g(e, o), s && s.m(e, null);
203
283
  },
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);
284
+ p(m, p) {
285
+ p & /*data*/
286
+ 8 && l !== (l = /*data*/
287
+ m[3].price.value + "") && P(r, l), /*data*/
288
+ 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
289
  },
210
- d(c) {
211
- c && T(e), r && r.d();
290
+ d(m) {
291
+ m && T(e), s && s.d();
212
292
  }
213
293
  };
214
294
  }
215
- function V(l) {
295
+ function V(i) {
216
296
  let e, t = (
217
297
  /*data*/
218
- l[3].price.unit + ""
219
- ), s;
298
+ i[3].price.unit + ""
299
+ ), l;
220
300
  return {
221
301
  c() {
222
- e = p("span"), s = S(t), d(e, "class", "unit svelte-sezqcq");
302
+ e = d("span"), l = S(t), q(e, "class", "unit svelte-sezqcq");
223
303
  },
224
- m(i, n) {
225
- y(i, e, n), q(e, s);
304
+ m(r, o) {
305
+ y(r, e, o), g(e, l);
226
306
  },
227
- p(i, n) {
228
- n & /*data*/
307
+ p(r, o) {
308
+ o & /*data*/
229
309
  8 && t !== (t = /*data*/
230
- i[3].price.unit + "") && P(s, t);
310
+ r[3].price.unit + "") && P(l, t);
231
311
  },
232
- d(i) {
233
- i && T(e);
312
+ d(r) {
313
+ r && T(e);
234
314
  }
235
315
  };
236
316
  }
237
- function x(l) {
238
- let e, t, s, i, n = (
317
+ function x(i) {
318
+ let e, t, l, r, o = (
239
319
  /*data*/
240
- l[3].highlightText + ""
241
- ), r, c, m;
320
+ i[3].highlightText + ""
321
+ ), s, m, p;
242
322
  return {
243
323
  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");
324
+ 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
325
  },
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);
326
+ m(c, a) {
327
+ 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
328
  },
249
- p(f, o) {
250
- o & /*data*/
251
- 8 && n !== (n = /*data*/
252
- f[3].highlightText + "") && P(r, n);
329
+ p(c, a) {
330
+ a & /*data*/
331
+ 8 && o !== (o = /*data*/
332
+ c[3].highlightText + "") && P(s, o);
253
333
  },
254
- d(f) {
255
- f && T(e), f && T(c), f && T(m);
334
+ d(c) {
335
+ c && T(e), c && T(m), c && T(p);
256
336
  }
257
337
  };
258
338
  }
259
- function ue(l) {
339
+ function ue(i) {
260
340
  var W, G;
261
- let e, t, s, i, n, r, c, m, f, o, v = (
341
+ let e, t, l, r, o, s, m, p, c, a, v = (
262
342
  /*data*/
263
- l[3].title + ""
264
- ), a, k, U, _, w;
265
- t = new pe({
343
+ i[3].title + ""
344
+ ), n, k, U, _, w;
345
+ t = new de({
266
346
  props: {
267
347
  visible: (
268
348
  /*unfolded*/
269
- l[4]
349
+ i[4]
270
350
  ),
271
351
  outDelay: 500,
272
352
  left: 61,
@@ -277,101 +357,101 @@ function ue(l) {
277
357
  });
278
358
  let h = (
279
359
  /*data*/
280
- l[3].headerPictureUrl && N(l)
360
+ i[3].headerPictureUrl && N(i)
281
361
  ), u = (
282
362
  /*primaryTags*/
283
- ((W = l[2].length) != null ? W : 0) + /*secondaryTags*/
284
- ((G = l[5].length) != null ? G : 0) > 0 && Z(l)
363
+ ((W = i[2].length) != null ? W : 0) + /*secondaryTags*/
364
+ ((G = i[5].length) != null ? G : 0) > 0 && Z(i)
285
365
  ), z = (
286
366
  /*havePrice*/
287
- (l[7] || /*data*/
288
- l[3].highlightText) && K(l)
367
+ (i[7] || /*data*/
368
+ i[3].highlightText) && K(i)
289
369
  );
290
370
  return {
291
371
  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,
372
+ 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(
373
+ r,
294
374
  "transition-delay",
295
375
  /*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(
376
+ i[4] ? R + "ms" : Y + ee - $ - 40 + "ms"
377
+ ), 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
378
  /*maxWidth*/
299
- l[9]
379
+ i[9]
300
380
  )), L(
301
- r,
381
+ s,
302
382
  "transition-delay",
303
383
  /*unfolded*/
304
- l[4] ? R + Y + "ms" : "0ms"
305
- ), d(e, "class", _ = D(`marketing ${/*theme*/
306
- l[6]}`) + " svelte-sezqcq"), H(
384
+ i[4] ? R + Y + "ms" : "0ms"
385
+ ), q(e, "class", _ = D(`marketing ${/*theme*/
386
+ i[6]}`) + " svelte-sezqcq"), H(
307
387
  e,
308
388
  "unfolded",
309
389
  /*unfolded*/
310
- l[4]
390
+ i[4]
311
391
  ), H(
312
392
  e,
313
393
  "folded",
314
394
  /*folded*/
315
- l[8]
395
+ i[8]
316
396
  );
317
397
  },
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;
398
+ m(f, b) {
399
+ 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
400
  },
321
- p(g, [b]) {
401
+ p(f, [b]) {
322
402
  var M, X;
323
403
  const I = {};
324
404
  b & /*unfolded*/
325
405
  16 && (I.visible = /*unfolded*/
326
- g[4]), t.$set(I), b & /*unfolded*/
406
+ f[4]), t.$set(I), b & /*unfolded*/
327
407
  16 && L(
328
- i,
408
+ r,
329
409
  "transition-delay",
330
410
  /*unfolded*/
331
- g[4] ? R + "ms" : Y + ee - $ - 40 + "ms"
411
+ f[4] ? R + "ms" : Y + ee - $ - 40 + "ms"
332
412
  ), /*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*/
413
+ 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
414
  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*/
415
+ f[3].title + "") && P(n, v), /*primaryTags*/
416
+ ((M = f[2].length) != null ? M : 0) + /*secondaryTags*/
417
+ ((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*/
418
+ f[7] || /*data*/
419
+ 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
420
  16 && L(
341
- r,
421
+ s,
342
422
  "transition-delay",
343
423
  /*unfolded*/
344
- g[4] ? R + Y + "ms" : "0ms"
424
+ f[4] ? R + Y + "ms" : "0ms"
345
425
  ), (!w || b & /*theme*/
346
426
  64 && _ !== (_ = D(`marketing ${/*theme*/
347
- g[6]}`) + " svelte-sezqcq")) && d(e, "class", _), (!w || b & /*theme, unfolded*/
427
+ f[6]}`) + " svelte-sezqcq")) && q(e, "class", _), (!w || b & /*theme, unfolded*/
348
428
  80) && H(
349
429
  e,
350
430
  "unfolded",
351
431
  /*unfolded*/
352
- g[4]
432
+ f[4]
353
433
  ), (!w || b & /*theme, folded*/
354
434
  320) && H(
355
435
  e,
356
436
  "folded",
357
437
  /*folded*/
358
- g[8]
438
+ f[8]
359
439
  );
360
440
  },
361
- i(g) {
362
- w || (ae(t.$$.fragment, g), w = !0);
441
+ i(f) {
442
+ w || (ne(t.$$.fragment, f), w = !0);
363
443
  },
364
- o(g) {
365
- oe(t.$$.fragment, g), w = !1;
444
+ o(f) {
445
+ ae(t.$$.fragment, f), w = !1;
366
446
  },
367
- d(g) {
368
- g && T(e), ce(t), h && h.d(), u && u.d(), z && z.d();
447
+ d(f) {
448
+ f && T(e), me(t), h && h.d(), u && u.d(), z && z.d();
369
449
  }
370
450
  };
371
451
  }
372
452
  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 = (() => {
453
+ function ze(i, e, t) {
454
+ let l, r, o, s, m, p, c, a, { tag: v } = e, n, k = (() => {
375
455
  var w;
376
456
  const _ = (w = v.data.limitWidth) != null ? w : !0;
377
457
  if (typeof _ == "number")
@@ -380,41 +460,41 @@ function ze(l, e, t) {
380
460
  return 172;
381
461
  })();
382
462
  const U = (_) => {
383
- t(1, a = _.detail);
463
+ t(1, n = _.detail);
384
464
  };
385
- return l.$$set = (_) => {
465
+ return i.$$set = (_) => {
386
466
  "tag" in _ && t(0, v = _.tag);
387
- }, l.$$.update = () => {
467
+ }, i.$$.update = () => {
388
468
  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), [
469
+ i.$$.dirty & /*tag*/
470
+ 1 && t(4, l = (w = (_ = v.state) == null ? void 0 : _.unfolded) != null ? w : !1), i.$$.dirty & /*unfolded*/
471
+ 16 && t(8, r = !l), i.$$.dirty & /*tag*/
472
+ 1 && t(3, o = v.data), i.$$.dirty & /*data*/
473
+ 8 && t(7, s = ge((h = o.price) == null ? void 0 : h.value) && ((u = o.price) == null ? void 0 : u.value) !== ""), i.$$.dirty & /*tag*/
474
+ 1 && t(6, m = v.data.theme || "light"), i.$$.dirty & /*tagsOffsetHeight, maxTagsLength*/
475
+ 1026 && n > 40 && t(10, p = p - 1), i.$$.dirty & /*data, maxTagsLength*/
476
+ 1032 && t(2, c = ((z = o.brandTags) == null ? void 0 : z.slice(0, p).filter(Boolean)) || []), i.$$.dirty & /*data, maxTagsLength, primaryTags*/
477
+ 1036 && t(5, a = ((W = o.tags) == null ? void 0 : W.slice(0, p - c.length).filter(Boolean)) || []);
478
+ }, t(10, p = (k - 20) / B), [
399
479
  v,
400
- a,
401
- f,
402
480
  n,
403
- s,
404
- o,
405
481
  c,
482
+ o,
483
+ l,
484
+ a,
485
+ m,
486
+ s,
406
487
  r,
407
- i,
408
488
  k,
409
- m,
489
+ p,
410
490
  U
411
491
  ];
412
492
  }
413
- class Be extends te {
493
+ class ni extends te {
414
494
  constructor(e) {
415
- super(), le(this, e, ze, ue, ie, { tag: 0 }, he);
495
+ super(), ie(this, e, ze, ue, re, { tag: 0 }, he);
416
496
  }
417
497
  }
418
498
  export {
419
- Be as default
499
+ ni as default
420
500
  };