@avakhula/ui 0.0.332 → 0.0.334

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avakhula/ui",
3
- "version": "0.0.332",
3
+ "version": "0.0.334",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="panel" :class="{ 'panel-error': error }">
2
+ <div class="ib-panel" :class="{ 'panel-error': error }">
3
3
  <div class="panel-head">
4
4
  <div class="head-title">
5
5
  <slot name="title" />
@@ -60,9 +60,8 @@ $panel-border-color: $gray-200;
60
60
  $panel-error-outline-color: $red-800;
61
61
  $panel-title-color: $neutral-900;
62
62
  $panel-divider-color: $gray-300;
63
- $description-color: $gray-700;
64
63
 
65
- .panel {
64
+ .ib-panel {
66
65
  border: 1px solid $panel-border-color;
67
66
  border-radius: 4px;
68
67
 
@@ -91,10 +90,24 @@ $description-color: $gray-700;
91
90
  }
92
91
 
93
92
  .head-content {
94
- @include Ib-H4-regular;
95
- color: $description-color;
96
93
  width: 100%;
94
+ @include Ib-H4-regular;
97
95
  }
98
96
  }
99
97
  }
100
98
  </style>
99
+
100
+ <style lang="scss">
101
+ @import "../../assets/scss/variables/colors.scss";
102
+ @import "../../assets/scss/typography.scss";
103
+
104
+ $description-color: $gray-700;
105
+
106
+ .ib-panel {
107
+ .head-content {
108
+ width: 100%;
109
+ @include Ib-H4-regular;
110
+ color: $description-color;
111
+ }
112
+ }
113
+ </style>
@@ -395,7 +395,6 @@ export default {
395
395
  },
396
396
  vertical: {
397
397
  type: String,
398
- // default: "bottom"
399
398
  },
400
399
  emptyMessage: {
401
400
  type: String,