@magicgol/polyjuice 0.33.0 → 0.33.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magicgol/polyjuice",
3
- "version": "0.33.0",
3
+ "version": "0.33.1",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -2,7 +2,7 @@ import MgOptionLabel from './FilterOption.vue';
2
2
 
3
3
  // More on default export: https://storybook.js.org/docs/vue/writing-stories/introduction#default-export
4
4
  export default {
5
- title: 'Components/Option Label',
5
+ title: 'Components/Filter Option',
6
6
  component: MgOptionLabel,
7
7
  // More on argTypes: https://storybook.js.org/docs/vue/api/argtypes
8
8
  argTypes: {
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div
3
- class="px-3"
3
+ class="mt-2"
4
4
  :class="classes"
5
5
  @click="onClick"
6
6
  >
@@ -1,10 +1,9 @@
1
1
  <template>
2
2
  <div
3
- class="row"
4
3
  :class="classes"
5
4
  >
6
5
  <div
7
- class="p-0 pl-3"
6
+ class="p-0"
8
7
  :class="firstColClass"
9
8
  >
10
9
  <mg-list-head
@@ -33,7 +32,7 @@
33
32
  </div>
34
33
  <div
35
34
  v-if="actions"
36
- class="col-1 p-0 pr-3"
35
+ class="col-1 p-0"
37
36
  :class="actionsColClass"
38
37
  >
39
38
  <mg-list-head>&nbsp;</mg-list-head>
@@ -86,7 +85,7 @@ export default {
86
85
  return 'col-2';
87
86
  },
88
87
  thirdColClass () {
89
- return this.actions ? 'col-2' : 'col-3 pr-3';
88
+ return this.actions ? 'col-2' : 'col-3';
90
89
  }
91
90
  },
92
91