@timus-networks/theme 2.4.67 → 2.4.68

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.
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
3
  "configKey": "themeOptions",
4
- "version": "2.4.67",
4
+ "version": "2.4.68",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
package/dist/module.mjs CHANGED
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
11
11
  const __dirname = __cjs_path__.dirname(__filename);
12
12
  const require = __cjs_mod__.createRequire(import.meta.url);
13
13
  const name = "@timus-networks/theme";
14
- const version = "2.4.67";
14
+ const version = "2.4.68";
15
15
  const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
16
16
  const type = "module";
17
17
  const exports = {
@@ -2,7 +2,7 @@
2
2
  <div class="flex gap-2 items-start">
3
3
  <div class="flex flex-col gap-[20px]">
4
4
  <div class="text-gray-600 h-3" />
5
- <div v-for="number in [1, 2, 3, 4, 5, 6, 7, 8, 9]" :key="number" class="rounded-sm h-10 p-1 flex items-center justify-center text-neutral-9 text-sm">{{ number }}</div>
5
+ <div v-for="number in [1, 2, 3, 4, 5, 6, 7, 8, 9]" :key="number" class="rounded-sm h-[50px] p-1 flex items-center justify-center text-neutral-9 text-sm">{{ number }}</div>
6
6
  </div>
7
7
  <div class="grid grid-cols-7 !gap-[20px] items-center w-full">
8
8
  <div v-for="color of Object.keys(colors)" :key="color" class="flex flex-col gap-[20px] col-span-1">
@@ -10,8 +10,12 @@
10
10
  {{ color }}
11
11
  </div>
12
12
  <template v-for="item in [1, 2, 3, 4, 5, 6, 7, 8, 9]" :key="item">
13
- <div class="rounded-[4px] h-10 pl-2 flex items-center justify-start" :class="`bg-${color}-${item} ${item >= 5 ? 'text-white' : 'text-neutral-9'}`" tag="mark">
14
- {{ colors[color as keyof typeof colors][item] }}
13
+ <div class="flex gap-1 items-center p-small border border-neutral-2 rounded-md p-1">
14
+ <div class="rounded-[4px] h-10 w-10 pl-2 flex items-center justify-start" :class="`bg-${color}-${item} ${item >= 5 ? 'text-white' : 'text-neutral-9'}`" tag="mark" />
15
+ <div class="flex flex-col gap-1">
16
+ <span>{{ (colors as any)[color][item] }}</span>
17
+ <span class="p-tiny text-neutral-7r">{{ `${color}-light-${item}` }}</span>
18
+ </div>
15
19
  </div>
16
20
  </template>
17
21
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.67",
3
+ "version": "2.4.68",
4
4
  "description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
5
5
  "type": "module",
6
6
  "exports": {