@realsee/dnalogel 3.47.13 → 3.47.15

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