vueless 1.3.3 → 1.3.4-beta.0

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": "vueless",
3
- "version": "1.3.3",
3
+ "version": "1.3.4-beta.0",
4
4
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
@@ -125,8 +125,9 @@ const {
125
125
  <!--
126
126
  @slot Use it to add custom title content.
127
127
  @binding {string} title
128
+ @binding {boolean} opened
128
129
  -->
129
- <slot name="title" :title="title">
130
+ <slot name="title" :title="title" :opened="isOpened">
130
131
  {{ title }}
131
132
  </slot>
132
133
  <!--
@@ -149,8 +150,9 @@ const {
149
150
  <!--
150
151
  @slot Use it to add custom description content.
151
152
  @binding {string} description
153
+ @binding {boolean} opened
152
154
  -->
153
- <slot name="description" :description="description">
155
+ <slot name="description" :description="description" :opened="isOpened">
154
156
  {{ description }}
155
157
  </slot>
156
158
  </div>