@everymatrix/helper-tabs 1.73.1 → 1.73.2

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": "@everymatrix/helper-tabs",
3
- "version": "1.73.1",
3
+ "version": "1.73.2",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",
@@ -1,82 +0,0 @@
1
- import { html } from "lit";
2
- import "@everymatrix/helper-tabs";
3
- const meta = {
4
- title: 'Helper/Components/helper-tabs',
5
- component: 'helper-tabs',
6
- args: {
7
- disabled: "false",
8
- label: "",
9
- selected: "false",
10
- cmsEndpoint: "",
11
- selectedIndex: "0",
12
- tabs: "[{label: 'How to Play'}, {label: 'About'}, {label: 'FAQs'}]",
13
- clientStyling: "",
14
- mbSource: "",
15
- clientStylingurl: "",
16
- clientStylingUrl: "",
17
- lowNumber: "",
18
- highNumber: "",
19
- minimumAllowed: "",
20
- maxinumAllowed: "",
21
- language: "en",
22
- translationUrl: "",
23
- },
24
- argTypes: {
25
- disabled: { control: 'text', description: '' },
26
- label: { control: 'text', description: '' },
27
- selected: { control: 'text', description: '' },
28
- cmsEndpoint: { control: 'text', description: '' },
29
- selectedIndex: { control: 'text', description: '' },
30
- tabs: { control: 'text', description: '' },
31
- clientStyling: { control: 'text', description: '' },
32
- mbSource: { control: 'text', description: '' },
33
- clientStylingurl: { control: 'text', description: '' },
34
- clientStylingUrl: { control: 'text', description: '' },
35
- lowNumber: { control: 'text', description: '' },
36
- highNumber: { control: 'text', description: '' },
37
- minimumAllowed: { control: 'text', description: '' },
38
- maxinumAllowed: { control: 'text', description: '' },
39
- language: { control: 'text', description: '' },
40
- translationUrl: { control: 'text', description: '' },
41
- },
42
- };
43
- export default meta;
44
- const Template = (args) => {
45
- return html `<helper-tabs
46
- disabled="${args.disabled}"
47
- label="${args.label}"
48
- selected="${args.selected}"
49
- cmsEndpoint="${args.cmsEndpoint}"
50
- selectedIndex="${args.selectedIndex}"
51
- tabs="${args.tabs}"
52
- clientStyling="${args.clientStyling}"
53
- mbSource="${args.mbSource}"
54
- clientStylingurl="${args.clientStylingurl}"
55
- clientStylingUrl="${args.clientStylingUrl}"
56
- lowNumber="${args.lowNumber}"
57
- highNumber="${args.highNumber}"
58
- minimumAllowed="${args.minimumAllowed}"
59
- maxinumAllowed="${args.maxinumAllowed}"
60
- language="${args.language}"
61
- translationUrl="${args.translationUrl}"
62
- ></helper-tabs>`;
63
- };
64
- export const Default = Template.bind({});
65
- Default.args = {
66
- disabled: "false",
67
- label: "",
68
- selected: "false",
69
- cmsEndpoint: "",
70
- selectedIndex: "0",
71
- tabs: "[{label: 'How to Play'}, {label: 'About'}, {label: 'FAQs'}]",
72
- clientStyling: "",
73
- mbSource: "",
74
- clientStylingurl: "",
75
- clientStylingUrl: "",
76
- lowNumber: "",
77
- highNumber: "",
78
- minimumAllowed: "",
79
- maxinumAllowed: "",
80
- language: "en",
81
- translationUrl: "",
82
- };
@@ -1,5 +0,0 @@
1
- import type { Meta } from '@storybook/web-components';
2
- import '@everymatrix/helper-tabs';
3
- declare const meta: Meta;
4
- export default meta;
5
- export declare const Default: any;