c8bdf01cdd
* RadioGroup & Initial UI for Measure * Add option to Panel to allow actions to move to bottom * Typo * Add count to precision * Add enable, snap and type api integrations * Update Units WIP * Add precision update * Update v-tippy name * Updates * New design * Better darkmode radio. Keystrokes. * Styling fixes. Fix select mount-menu-on-body * Fix ts bug * Show label in Select for units * Update shortcut to D * Small design changes * Small tidy ups * WIP New Measurements Helper State * Fix build erros * Remove viewer import from shared * Delete WIP * Fix delete * Fix close button on measure mode * Measurement nullable * Updates from PR * Seperate measurements into measurementsEnabled & measurementOptions * Update state.ts * Update ts bugs * Updates to RadioGroup * Use ctx.updateArgs * Replace RadioGroup with Radio - More consistent with existing inputs * Update FE2 to use new Radio * Fix circleci fail * Fix build * Fix wrong initial state for vertexSnap * Adjust type to measurement * Use Lodash isEqual * Fix bug where units don't update * Remove double input * Fix server error in data.ts * Revert change around useEqual
69 lines
1.5 KiB
Vue
69 lines
1.5 KiB
Vue
<template>
|
|
<svg
|
|
width="36"
|
|
height="36"
|
|
viewBox="0 0 36 36"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M3 25.4655V4.50003L12 12.3621V33L3 25.4655Z"
|
|
stroke="#CBD5E1"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
d="M3 4.50003L24 3.00003"
|
|
stroke="#CBD5E1"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
d="M3 25.5L24 24"
|
|
stroke="#CBD5E1"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-dasharray="2 2"
|
|
/>
|
|
<path
|
|
d="M12 33L33 31.5"
|
|
stroke="#CBD5E1"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
d="M12 12.75L33 11.25"
|
|
stroke="#CBD5E1"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
d="M24 3.00003L33 10.8481V31.5"
|
|
stroke="#CBD5E1"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
d="M24 3.00003V24"
|
|
stroke="#CBD5E1"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-dasharray="2 2"
|
|
/>
|
|
<path
|
|
d="M24 24L33 31.5"
|
|
stroke="#CBD5E1"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-dasharray="2 2"
|
|
/>
|
|
<path
|
|
d="M3 25.5L33 10.5"
|
|
stroke="#3B82F6"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<circle cx="3" cy="25.5" r="2.25" fill="#3B82F6" />
|
|
<circle cx="33" cy="10.5" r="2.25" fill="#3B82F6" />
|
|
</svg>
|
|
</template>
|