vueless 0.0.92 → 0.0.93

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": "0.0.92",
3
+ "version": "0.0.93",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -76,9 +76,9 @@
76
76
  :group="group"
77
77
  :data-cy="`${dataCy}-table`"
78
78
  v-bind="nestedAttrs"
79
- @clickDelete="onClickDelete"
80
- @clickEdit="onClickEdit"
81
- @dragSort="onDragEnd"
79
+ @click-delete="onClickDelete"
80
+ @click-edit="onClickEdit"
81
+ @drag-sort="onDragEnd"
82
82
  >
83
83
  <template #default="{ item }">
84
84
  <slot :item="item">
@@ -41,8 +41,8 @@
41
41
  :min-date="minDate"
42
42
  v-bind="calendarAttrs"
43
43
  @keydown.esc="deactivate"
44
- @userDateChange="onUserFormatDateChange"
45
- @formattedDateChange="onFormattedDateChange"
44
+ @user-date-change="onUserFormatDateChange"
45
+ @formatted-date-change="onFormattedDateChange"
46
46
  @input="onInput"
47
47
  @blur="onBlur"
48
48
  @submit="onSubmit"
@@ -173,7 +173,7 @@
173
173
  tabindex="-1"
174
174
  v-bind="dropdownListAttrs"
175
175
  @focus="activate"
176
- @addOption="onAddOption"
176
+ @add-option="onAddOption"
177
177
  @mousedown.prevent.capture
178
178
  @click.prevent.capture
179
179
  >
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <Transition :css="false" @beforeEnter="beforeEnter" @enter="enter" @afterEnter="afterEnter">
2
+ <Transition :css="false" @before-enter="beforeEnter" @enter="enter" @after-enter="afterEnter">
3
3
  <div v-if="show" v-bind="progressAttrs" :style="barStyle" />
4
4
  </Transition>
5
5
  </template>
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.92",
4
+ "version": "0.0.93",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",