classcard-ui 0.2.323 → 0.2.326

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": "classcard-ui",
3
- "version": "0.2.323",
3
+ "version": "0.2.326",
4
4
  "main": "dist/classcard-ui.common.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -37,10 +37,10 @@
37
37
  },
38
38
  "devDependencies": {
39
39
  "@babel/core": "^7.15.5",
40
- "@storybook/addon-actions": "^6.4.13",
41
- "@storybook/addon-essentials": "^6.4.13",
42
- "@storybook/addon-links": "^6.4.13",
43
- "@storybook/vue": "^6.4.13",
40
+ "@storybook/addon-actions": "^6.4.19",
41
+ "@storybook/addon-essentials": "^6.4.19",
42
+ "@storybook/addon-links": "^6.4.19",
43
+ "@storybook/vue": "^6.4.19",
44
44
  "@tailwindcss/postcss7-compat": "^2.2.14",
45
45
  "@types/lodash-es": "^4.17.5",
46
46
  "@vue/cli-plugin-babel": "^4.5.13",
@@ -47,9 +47,9 @@
47
47
  type="button"
48
48
  class="relative inline-flex items-center px-2 py-2 border-r border-l border-t border-b border-gray-300 bg-white text-sm font-medium text-gray-700 hover:bg-gray-50 focus:z-10 focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500"
49
49
  :class="{
50
- 'rounded-r-md border-l-0': index == buttonObject.length - 1,
50
+ 'rounded-r-md border-l-0 border-r rounded-l-none': index == buttonObject.length - 1,
51
51
  'rounded-l-md': index == 0,
52
- 'rounded-l-md border-r-0': buttonObject.length > 2,
52
+ 'border-r-0': index == 0 && buttonObject.length != 2,
53
53
  'px-4': button.label,
54
54
  }"
55
55
  @click="handleEvent(button.onClickAction)"
@@ -191,7 +191,7 @@ export default {
191
191
  this.$emit("getOptions", search, loaderSearching);
192
192
  this.emitSearch(search);
193
193
  },
194
- emitSearch: debounce((search) => {
194
+ emitSearch: debounce(function (search) {
195
195
  this.$emit("search", search);
196
196
  }, 500),
197
197
  setSelectedOptions(params) {