{"version":3,"sources":["price-features/src/index.vue"],"names":[],"mappings":";AAmEA;EACE,gDAAgD;EAChD,YAAY;AACd;AAEA;EACE,sBAAsB;AACxB","sourcesContent":["<template>\n  <ul class=\"flex-grow border-t-2 text-gray-light py-8\">\n    <li class=\"mb-4 flex items-center text-left\" v-if=\"inherits\">\n      <div class=\"flex-shrink-0\">\n        <svg\n          class=\"h-6 w-6 text-primary\"\n          stroke=\"currentColor\"\n          fill=\"none\"\n          viewBox=\"0 0 24 24\"\n        >\n          <path\n            stroke-linecap=\"round\"\n            stroke-linejoin=\"round\"\n            stroke-width=\"2\"\n            d=\"M5 13l4 4L19 7\"\n          ></path>\n        </svg>\n      </div>\n      <p class=\"ml-3 text-base font-bold text-white\">\n        All {{ inherits.title }} features\n      </p>\n    </li>\n    <li\n      class=\"mb-4 flex items-center text-left\"\n      v-for=\"feature of additionalFeatures\"\n      :key=\"feature.label\"\n    >\n      <div class=\"flex-shrink-0\">\n        <svg\n          class=\"h-6 w-6 text-primary\"\n          stroke=\"currentColor\"\n          fill=\"none\"\n          viewBox=\"0 0 24 24\"\n        >\n          <path\n            stroke-linecap=\"round\"\n            stroke-linejoin=\"round\"\n            stroke-width=\"2\"\n            d=\"M5 13l4 4L19 7\"\n          ></path>\n        </svg>\n      </div>\n      <p\n        :class=\"`ml-3 text-base text-white ${\n          feature.highlight ? 'font-bold' : 'font-light'\n        }`\"\n        v-html=\"\n          (feature.restriction ? `${feature.restriction} ` : '') +\n          (parseInt(feature.restriction, 10) === 1\n            ? feature.labelSingular\n            : feature.label)\n        \"\n      ></p>\n    </li>\n  </ul>\n</template>\n\n<script>\nexport default {\n  props: {\n    inherits: { type: Object },\n    additionalFeatures: { type: Array },\n  },\n};\n</script>\n\n<style>\n.shadow-inset-control {\n  box-shadow: inset 0 0 2rem 2rem rgb(0 0 0 / 10%);\n  padding: 2px;\n}\n\n.shadow-inset-control > button {\n  border-radius: 0.25rem;\n}\n</style>\n"],"sourceRoot":"/source_map/"}