@tekkare/auriga 0.2.103 → 0.2.104

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
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.103"
7
+ "version": "0.2.104"
8
8
  }
@@ -146,7 +146,10 @@
146
146
  v-for="(block, index) in filterBlocks"
147
147
  :key="index"
148
148
  class="oip_card block_card action"
149
- :class="selectedBlock?.title === block.title ? 'block_selected' : ''"
149
+ :class="[
150
+ selectedBlock?.title === block.title ? 'block_selected' : '',
151
+ block.disable ? 'disable' : '',
152
+ ]"
150
153
  @click="selectBlock(block)"
151
154
  >
152
155
  <slot
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.103",
3
+ "version": "0.2.104",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",