@magicgol/polyjuice 0.52.2 → 0.53.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": "@magicgol/polyjuice",
3
- "version": "0.52.2",
3
+ "version": "0.53.0",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -0,0 +1,36 @@
1
+ import MgVDelimiter from './VDelimiter.vue';
2
+
3
+ // More on default export: https://storybook.js.org/docs/vue/writing-stories/introduction#default-export
4
+ export default {
5
+ title: 'Content/Delimiter/VDelimiter',
6
+ component: MgVDelimiter,
7
+ // More on argTypes: https://storybook.js.org/docs/vue/api/argtypes
8
+ argTypes: {
9
+ default: {
10
+ description: "The default Vue slot",
11
+ control: {
12
+ type: 'text',
13
+ },
14
+ table: {
15
+ category: 'Slots',
16
+ type: {
17
+ summary: 'html',
18
+ },
19
+ }
20
+ },
21
+ },
22
+ };
23
+
24
+ // More on component templates: https://storybook.js.org/docs/vue/writing-stories/introduction#using-args
25
+ const Template = (args, { argTypes }) => ({
26
+ props: Object.keys(argTypes),
27
+ components: { MgVDelimiter },
28
+ template: `<mg-v-delimiter v-bind="$props"><template v-if="${'default' in args}" v-slot>${args.default}</template></mg-v-delimiter>`,
29
+ });
30
+
31
+ export const Default = Template.bind({});
32
+ // More on args: https://storybook.js.org/docs/vue/writing-stories/args
33
+ Default.args = {
34
+ default: 'this is the list head',
35
+ color: '#f00'
36
+ };
@@ -0,0 +1,37 @@
1
+ <template>
2
+ <div
3
+ class="d-flex"
4
+ :class="classes"
5
+ >
6
+ <div
7
+ class="mr-3"
8
+ style="border: 2px solid; border-radius: 5px;"
9
+ :style="{borderColor: color, backgroundColor: color}"
10
+ ></div>
11
+ <slot></slot>
12
+ </div>
13
+ </template>
14
+
15
+ <script>
16
+ export default {
17
+ name: 'mg-v-delimiter',
18
+
19
+ props: {
20
+ color: {
21
+ type: String,
22
+ validator: value => {
23
+ const regex = new RegExp(/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/);
24
+ return regex.test(value);
25
+ },
26
+ },
27
+ },
28
+
29
+ computed: {
30
+ classes() {
31
+ return {
32
+ 'mg-v-delimiter': true,
33
+ };
34
+ }
35
+ },
36
+ };
37
+ </script>
@@ -64,7 +64,6 @@ export default {
64
64
  appearance: none;
65
65
  background: map-get($palette, 'club');
66
66
  border-radius: 15px;
67
- box-shadow: 0 5px 22px rgba(0, 0, 0, 0.3);
68
67
  cursor: pointer;
69
68
  font-family: 'Ubuntu', sans-serif;
70
69
  font-size: 1rem;
@@ -61,7 +61,6 @@ export default {
61
61
  appearance: none;
62
62
  background: map-get($palette, 'club');
63
63
  border-radius: 15px;
64
- box-shadow: 0 5px 22px rgba(0, 0, 0, 0.3);
65
64
  box-sizing: border-box;
66
65
  border: 0;
67
66
  cursor: pointer;