tecitheme 0.11.4 → 0.11.6

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.
@@ -217,13 +217,13 @@
217
217
  </div>
218
218
 
219
219
  <!-- Desktop Table Headings -->
220
- <div class="hidden sticky top-16 bg-white sm:flex flex-row space-x-8 w-full items-end z-20 border-b shadow-lg">
220
+ <div class="hidden sticky top-16 bg-white sm:flex flex-row space-x-8 w-full z-20 border-b shadow-lg">
221
221
  <div class="w-full py-8"></div>
222
222
  {#each $selectedTable.columns as column}
223
223
  <div class="-mt-px border-b-2 w-full border-transparent py-8 {column.highlightOption ? getColorStyles("border", data.color) : ""}">
224
224
  <h3 class="font-semibold leading-6 text-gray-900 {column.highlightOption ? getColorStyles("text", data.color) : ""}">{column.name}</h3>
225
225
  {#if column.description}
226
- <p class="mt-1 text-sm leading-6 text-gray-600">{column.description}</p>
226
+ <p class="mt-1 text-sm leading-6 text-gray-600">{@html column.description}</p>
227
227
  {/if}
228
228
  </div>
229
229
  {/each}
@@ -233,7 +233,7 @@
233
233
  {#each Object.values($selectedTable.categories) as category, categoryIndex}
234
234
 
235
235
  <!-- Category Name -->
236
- <h4 class="hidden sm:block sticky top-40 z-20 bg-white font-semibold leading-6 text-gray-900 px-4 py-2">{category.name}</h4>
236
+ <h4 class="hidden sm:block sticky top-32 z-20 bg-white font-semibold leading-6 text-gray-900 px-4 py-2 w-fit">{category.name}</h4>
237
237
 
238
238
  <!-- Table -->
239
239
  <div class="hidden relative sm:flex flex-col w-full pt-8 shadow-lg">
@@ -249,7 +249,7 @@
249
249
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5">
250
250
  <path stroke-linecap="round" stroke-linejoin="round" d="m11.25 11.25.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z" />
251
251
  </svg>
252
- <div class="absolute hidden group-hover:block bg-white border shadow-lg p-2 w-48 z-10 text-center left-1/2 -translate-x-1/2">
252
+ <div class="absolute hidden group-hover:block bg-white border shadow-lg p-2 w-48 z-30 text-center left-1/2 -translate-x-1/2">
253
253
  <p>{@html feature.helpText}</p>
254
254
  </div>
255
255
  </span>
@@ -308,7 +308,7 @@
308
308
  {column.name}
309
309
  </h3>
310
310
  {#if column.description}
311
- <p>{column.description}</p>
311
+ <p>{@html column.description}</p>
312
312
  {/if}
313
313
  </div>
314
314
  <div class="border-t w-full" />
@@ -320,7 +320,7 @@
320
320
  {#if sortFeaturesByOrder(category.features, column.name).length > 0}
321
321
 
322
322
  <!-- Category Headings -->
323
- <h4 class="sticky top-40 sm:hidden block font-semibold leading-6 text-gray-900 w-full bg-white z-20 py-2">{category.name}</h4>
323
+ <h4 class="sticky top-44 sm:hidden block font-semibold leading-6 text-gray-900 w-full bg-white z-20 py-2">{category.name}</h4>
324
324
 
325
325
  <div class="sm:hidden relative flex flex-col">
326
326
  <!-- Tables -->
@@ -340,7 +340,7 @@
340
340
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5">
341
341
  <path stroke-linecap="round" stroke-linejoin="round" d="m11.25 11.25.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z" />
342
342
  </svg>
343
- <div class="absolute hidden group-hover:block bg-white border shadow-lg p-2 w-48 z-10 text-center left-1/2 -translate-x-1/2">
343
+ <div class="absolute hidden group-hover:block bg-white border shadow-lg p-2 w-48 z-30 text-center left-1/2 -translate-x-1/2">
344
344
  <p>{@html feature.helpText}</p>
345
345
  </div>
346
346
  </span>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tecitheme",
3
- "version": "0.11.4",
3
+ "version": "0.11.6",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev",