@magicgol/polyjuice 0.33.0 → 0.33.1

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": "@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