this.gui 1.0.16 → 1.0.17

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.
Files changed (91) hide show
  1. package/README.md +191 -23
  2. package/dist/style.css +1 -1
  3. package/dist/this-gui.es.js +2777 -1923
  4. package/dist/this-gui.umd.js +23 -23
  5. package/package.json +2 -4
  6. package/src/App.jsx +4 -1
  7. package/src/Page.jsx +28 -0
  8. package/src/example.json +43 -0
  9. package/src/scripts/ComponentRegistry.js +70 -0
  10. package/src/scripts/postinstall.js +40 -1
  11. package/src/scripts/renderComponents.js +11 -0
  12. package/src/stories/Atoms/Badge/Badge.css +1 -0
  13. package/src/stories/Atoms/Badge/Badge.stories.jsx +1 -0
  14. package/src/stories/Atoms/Grid/Grid.css +160 -0
  15. package/src/stories/Atoms/Grid/Grid.jsx +43 -0
  16. package/src/stories/Atoms/Grid/Grid.stories.jsx +84 -0
  17. package/src/stories/Atoms/ProgressBar/ProgressBar.css +1 -1
  18. package/src/stories/Atoms/ProgressBar/ProgressBar.jsx +1 -1
  19. package/src/stories/Atoms/ProgressBar/ProgressBar.stories.jsx +1 -1
  20. package/src/stories/Atoms/Section/Section.css +268 -0
  21. package/src/stories/Atoms/Section/Section.jsx +63 -0
  22. package/src/stories/Atoms/Section/Section.stories.jsx +46 -0
  23. package/src/stories/Atoms/TextArea/TextArea.css +1 -0
  24. package/src/stories/Atoms/TextArea/TextArea.jsx +1 -0
  25. package/src/stories/Atoms/TextArea/TextArea.stories.jsx +1 -0
  26. package/src/stories/Atoms/TextInput/TextInput.css +1 -0
  27. package/src/stories/Atoms/TextInput/TextInput.jsx +1 -0
  28. package/src/stories/Atoms/TextInput/TextInput.stories.jsx +1 -0
  29. package/src/stories/Atoms/Toggle/Toggle.css +1 -0
  30. package/src/stories/Atoms/Toggle/Toggle.jsx +1 -0
  31. package/src/stories/Atoms/Toggle/Toggle.stories.jsx +1 -0
  32. package/src/stories/Atoms/Tooltip/Tooltip.css +1 -0
  33. package/src/stories/Atoms/Tooltip/Tooltip.jsx +1 -0
  34. package/src/stories/Atoms/Tooltip/Tooltip.stories.jsx +1 -0
  35. package/src/stories/Atoms/Video/Video.css +1 -0
  36. package/src/stories/Atoms/Video/Video.jsx +1 -0
  37. package/src/stories/Atoms/Video/Video.stories.jsx +1 -0
  38. package/src/stories/Atoms/index.js +4 -0
  39. package/src/stories/Atoms/meta_Atoms.js +4 -1
  40. package/src/stories/Layouts/Accordion/Accordion.css +285 -8
  41. package/src/stories/Layouts/Accordion/Accordion.jsx +62 -19
  42. package/src/stories/Layouts/Accordion/Accordion.stories.jsx +30 -19
  43. package/src/stories/Layouts/index.js +0 -6
  44. package/src/stories/Layouts/meta_Layouts.js +2 -5
  45. package/src/stories/Molecules/Accordion/Accordion.css +1 -1
  46. package/src/stories/Molecules/Accordion/Accordion.jsx +1 -1
  47. package/src/stories/Molecules/Accordion/Accordion.stories.jsx +1 -1
  48. package/src/stories/Molecules/AudioPlayer/AudioPlayer.css +95 -2
  49. package/src/stories/Molecules/AudioPlayer/AudioPlayer.jsx +232 -13
  50. package/src/stories/Molecules/AudioPlayer/AudioPlayer.stories.jsx +46 -11
  51. package/src/stories/Molecules/AvatarWithName/AvatarWithName.css +128 -2
  52. package/src/stories/Molecules/AvatarWithName/AvatarWithName.jsx +69 -14
  53. package/src/stories/Molecules/AvatarWithName/AvatarWithName.stories.jsx +12 -12
  54. package/src/stories/Molecules/Breadcrumbs/Breadcrumbs.css +145 -2
  55. package/src/stories/Molecules/Breadcrumbs/Breadcrumbs.jsx +39 -13
  56. package/src/stories/Molecules/Breadcrumbs/Breadcrumbs.stories.jsx +27 -11
  57. package/src/stories/Molecules/ButtonGroup/ButtonGroup.css +463 -2
  58. package/src/stories/Molecules/ButtonGroup/ButtonGroup.jsx +34 -12
  59. package/src/stories/Molecules/ButtonGroup/ButtonGroup.stories.jsx +36 -12
  60. package/src/stories/Molecules/Card/Card.css +39 -2
  61. package/src/stories/Molecules/Card/Card.jsx +80 -13
  62. package/src/stories/Molecules/Card/Card.stories.jsx +27 -13
  63. package/src/stories/Molecules/ComparisonTable/ComparisonTable.css +33 -2
  64. package/src/stories/Molecules/ComparisonTable/ComparisonTable.jsx +91 -12
  65. package/src/stories/Molecules/ComparisonTable/ComparisonTable.stories.jsx +73 -12
  66. package/src/stories/Molecules/Dropdown/Dropdown.css +192 -0
  67. package/src/stories/Molecules/Dropdown/Dropdown.jsx +96 -0
  68. package/src/stories/Molecules/Dropdown/Dropdown.stories.jsx +45 -0
  69. package/src/stories/Molecules/index.js +2 -1
  70. package/src/stories/Molecules/meta_Molecules.js +6 -3
  71. package/dist/Styles.md +0 -446
  72. package/dist/context.md +0 -942
  73. package/src/Theme.jsx +0 -28
  74. package/src/components/CodeBlock.jsx +0 -22
  75. package/src/components/ComponentFactory.jsx +0 -36
  76. package/src/components/ComponentRegistry.js +0 -21
  77. package/src/scripts/generateComponents.js +0 -166
  78. package/src/scripts/verifyLayouts.js +0 -175
  79. package/src/scripts/verifyMolecules.js +0 -158
  80. package/src/scripts/verifyTemplates.js +0 -154
  81. package/src/scripts/verify_and_install_atoms.js +0 -211
  82. package/src/stories/Layouts/DropdownMenu/DropdownMenu.css +0 -16
  83. package/src/stories/Layouts/DropdownMenu/DropdownMenu.jsx +0 -31
  84. package/src/stories/Layouts/DropdownMenu/DropdownMenu.stories.jsx +0 -28
  85. package/src/stories/Layouts/Grid/Grid.css +0 -4
  86. package/src/stories/Layouts/Grid/Grid.jsx +0 -13
  87. package/src/stories/Layouts/Grid/Grid.stories.jsx +0 -28
  88. package/src/stories/Layouts/Section/Section.css +0 -16
  89. package/src/stories/Layouts/Section/Section.jsx +0 -31
  90. package/src/stories/Layouts/Section/Section.stories.jsx +0 -28
  91. /package/src/themes/{README.md → README_Styles.md} +0 -0
@@ -0,0 +1,268 @@
1
+ /* this.GUI/src/stories/Atoms/Section/Section.css */
2
+ /* Base Section Styles */
3
+ .section {
4
+ margin: var(--spacing-md) 0;
5
+ padding: var(--spacing-md);
6
+ background-color: var(--background-color);
7
+ transition: all var(--transition-speed) ease;
8
+ }
9
+
10
+ /* Border Styles for Section */
11
+ .section--border {
12
+ border: 1px solid var(--border-color); /* Default border color */
13
+ }
14
+
15
+ .section--full-width {
16
+ width: 100vw;
17
+ margin-left: calc(-50vw + 50%);
18
+ padding: var(--spacing-lg);
19
+ }
20
+
21
+ /* Shadow Variants */
22
+ .section--shadow-small {
23
+ box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
24
+ }
25
+
26
+ .section--shadow-medium {
27
+ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
28
+ }
29
+
30
+ .section--shadow-large {
31
+ box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
32
+ }
33
+
34
+ /* Title Styling */
35
+ .section__title {
36
+ margin-bottom: var(--spacing-md);
37
+ color: var(--text-color);
38
+ font-weight: var(--font-weight-bold);
39
+ }
40
+
41
+ /* Border Color Variants - Primary and Secondary Colors */
42
+ .section--border-primary {
43
+ border-color: var(--primary-color);
44
+ }
45
+
46
+ .section--border-secondary {
47
+ border-color: var(--secondary-color);
48
+ }
49
+
50
+ /* Semantic Colors for Border */
51
+ .section--border-info {
52
+ border-color: var(--info-color);
53
+ }
54
+
55
+ .section--border-warning {
56
+ border-color: var(--warning-color);
57
+ }
58
+
59
+ .section--border-alert {
60
+ border-color: var(--alert-color);
61
+ }
62
+
63
+ .section--border-success {
64
+ border-color: var(--success-color);
65
+ }
66
+
67
+ .section--border-neutral {
68
+ border-color: var(--neutral-color);
69
+ }
70
+
71
+ .section--border-dark {
72
+ border-color: var(--dark-color);
73
+ }
74
+
75
+ /* Classy Palette Variants */
76
+ .section--border-classy-color-1 {
77
+ border-color: var(--classy-color-1);
78
+ }
79
+
80
+ .section--border-classy-color-2 {
81
+ border-color: var(--classy-color-2);
82
+ }
83
+
84
+ .section--border-classy-color-3 {
85
+ border-color: var(--classy-color-3);
86
+ }
87
+
88
+ .section--border-classy-color-4 {
89
+ border-color: var(--classy-color-4);
90
+ }
91
+
92
+ .section--border-classy-color-5 {
93
+ border-color: var(--classy-color-5);
94
+ }
95
+
96
+ /* Small Switch Palette Variants */
97
+ .section--border-small-switch-color-1 {
98
+ border-color: var(--small-switch-color-1);
99
+ }
100
+
101
+ .section--border-small-switch-color-2 {
102
+ border-color: var(--small-switch-color-2);
103
+ }
104
+
105
+ /* Natural Palette Variants */
106
+ .section--border-natural-color-1 {
107
+ border-color: var(--natural-color-1);
108
+ }
109
+
110
+ .section--border-natural-color-2 {
111
+ border-color: var(--natural-color-2);
112
+ }
113
+
114
+ .section--border-natural-color-3 {
115
+ border-color: var(--natural-color-3);
116
+ }
117
+
118
+ /* Grey Friends Palette Variants */
119
+ .section--border-grey-friend-1 {
120
+ border-color: var(--grey-friend-1);
121
+ }
122
+
123
+ .section--border-grey-friend-2 {
124
+ border-color: var(--grey-friend-2);
125
+ }
126
+
127
+ /* Shades Variants */
128
+ .section--border-shade-1 {
129
+ border-color: var(--shade-1);
130
+ }
131
+
132
+ .section--border-shade-2 {
133
+ border-color: var(--shade-2);
134
+ }
135
+
136
+ .section--border-shade-3 {
137
+ border-color: var(--shade-3);
138
+ }
139
+
140
+ .section--border-shade-4 {
141
+ border-color: var(--shade-4);
142
+ }
143
+
144
+ /* Background Color Variants */
145
+ .section--background-primary {
146
+ background-color: var(--primary-color);
147
+ color: var(--text-color-inverse);
148
+ }
149
+
150
+ .section--background-secondary {
151
+ background-color: var(--secondary-color);
152
+ color: var(--text-color-inverse);
153
+ }
154
+
155
+ .section--background-info {
156
+ background-color: var(--info-color);
157
+ color: var(--text-color-inverse);
158
+ }
159
+
160
+ .section--background-warning {
161
+ background-color: var(--warning-color);
162
+ color: var(--text-color-inverse);
163
+ }
164
+
165
+ .section--background-alert {
166
+ background-color: var(--alert-color);
167
+ color: var(--text-color);
168
+ }
169
+
170
+ .section--background-success {
171
+ background-color: var(--success-color);
172
+ color: var(--text-color-inverse);
173
+ }
174
+
175
+ .section--background-neutral {
176
+ background-color: var(--neutral-color);
177
+ color: var(--text-color);
178
+ }
179
+
180
+ .section--background-dark {
181
+ background-color: var(--dark-color);
182
+ color: var(--text-color-inverse);
183
+ }
184
+
185
+ /* Classy Palette Background Variants */
186
+ .section--background-classy-color-1 {
187
+ background-color: var(--classy-color-1);
188
+ color: var(--text-color-inverse);
189
+ }
190
+
191
+ .section--background-classy-color-2 {
192
+ background-color: var(--classy-color-2);
193
+ color: var(--text-color-inverse);
194
+ }
195
+
196
+ .section--background-classy-color-3 {
197
+ background-color: var(--classy-color-3);
198
+ color: var(--text-color-inverse);
199
+ }
200
+
201
+ .section--background-classy-color-4 {
202
+ background-color: var(--classy-color-4);
203
+ color: var(--text-color-inverse);
204
+ }
205
+
206
+ .section--background-classy-color-5 {
207
+ background-color: var(--classy-color-5);
208
+ color: var(--text-color-inverse);
209
+ }
210
+
211
+ /* Small Switch Palette Background Variants */
212
+ .section--background-small-switch-color-1 {
213
+ background-color: var(--small-switch-color-1);
214
+ color: var(--text-color);
215
+ }
216
+
217
+ .section--background-small-switch-color-2 {
218
+ background-color: var(--small-switch-color-2);
219
+ color: var(--text-color-inverse);
220
+ }
221
+
222
+ /* Natural Palette Background Variants */
223
+ .section--background-natural-color-1 {
224
+ background-color: var(--natural-color-1);
225
+ color: var(--text-color-inverse);
226
+ }
227
+
228
+ .section--background-natural-color-2 {
229
+ background-color: var(--natural-color-2);
230
+ color: var(--text-color);
231
+ }
232
+
233
+ .section--background-natural-color-3 {
234
+ background-color: var(--natural-color-3);
235
+ color: var(--text-color);
236
+ }
237
+
238
+ /* Grey Friends Background Variants */
239
+ .section--background-grey-friend-1 {
240
+ background-color: var(--grey-friend-1);
241
+ color: var(--text-color-inverse);
242
+ }
243
+
244
+ .section--background-grey-friend-2 {
245
+ background-color: var(--grey-friend-2);
246
+ color: var(--text-color-inverse);
247
+ }
248
+
249
+ /* Shades Background Variants */
250
+ .section--background-shade-1 {
251
+ background-color: var(--shade-1);
252
+ color: var(--text-color-inverse);
253
+ }
254
+
255
+ .section--background-shade-2 {
256
+ background-color: var(--shade-2);
257
+ color: var(--text-color-inverse);
258
+ }
259
+
260
+ .section--background-shade-3 {
261
+ background-color: var(--shade-3);
262
+ color: var(--text-color-inverse);
263
+ }
264
+
265
+ .section--background-shade-4 {
266
+ background-color: var(--shade-4);
267
+ color: var(--text-color-inverse);
268
+ }
@@ -0,0 +1,63 @@
1
+ //this.GUI/src/stories/Atoms/Section/Section.jsx
2
+ import React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import './Section.css';
5
+
6
+ export const Section = ({
7
+ title,
8
+ margin,
9
+ padding,
10
+ backgroundColor,
11
+ border,
12
+ borderColor,
13
+ fullWidth,
14
+ shadow,
15
+ id,
16
+ ariaLabel,
17
+ children,
18
+ }) => {
19
+ const sectionClasses = [
20
+ 'section',
21
+ border ? `section--border section--border-${borderColor}` : '',
22
+ fullWidth ? 'section--full-width' : '',
23
+ shadow ? `section--shadow-${shadow}` : '',
24
+ ].join(' ').trim();
25
+
26
+ return (
27
+ <section id={id} className={sectionClasses} style={{ margin, padding, backgroundColor }} aria-label={ariaLabel}>
28
+ {title && <h2 className="section__title">{title}</h2>}
29
+ {children}
30
+ </section>
31
+ );
32
+ };
33
+
34
+ Section.propTypes = {
35
+ title: PropTypes.string,
36
+ margin: PropTypes.string,
37
+ padding: PropTypes.string,
38
+ backgroundColor: PropTypes.string,
39
+ border: PropTypes.bool,
40
+ borderColor: PropTypes.oneOf([
41
+ 'primary', 'secondary', 'info', 'warning', 'alert', 'success', 'neutral', 'dark',
42
+ 'classy-color-1', 'classy-color-2', 'classy-color-3', 'classy-color-4', 'classy-color-5',
43
+ 'small-switch-color-1', 'small-switch-color-2',
44
+ 'natural-color-1', 'natural-color-2', 'natural-color-3',
45
+ 'grey-friend-1', 'grey-friend-2',
46
+ 'shade-1', 'shade-2', 'shade-3', 'shade-4'
47
+ ]),
48
+ fullWidth: PropTypes.bool,
49
+ shadow: PropTypes.oneOf(['none', 'small', 'medium', 'large']),
50
+ id: PropTypes.string,
51
+ ariaLabel: PropTypes.string,
52
+ children: PropTypes.node.isRequired,
53
+ };
54
+
55
+ Section.defaultProps = {
56
+ margin: '20px 0',
57
+ padding: '20px',
58
+ backgroundColor: 'transparent',
59
+ border: false,
60
+ borderColor: 'neutral',
61
+ fullWidth: false,
62
+ shadow: 'none',
63
+ };
@@ -0,0 +1,46 @@
1
+ //this.GUI/src/stories/Atoms/Section/Section.stories.jsx
2
+ import React from 'react';
3
+ import { Section } from './Section';
4
+
5
+ export default {
6
+ title: 'Atoms/Layout/Section',
7
+ component: Section,
8
+ argTypes: {
9
+ title: { control: 'text', defaultValue: 'Section Title' },
10
+ margin: { control: 'text', defaultValue: '20px 0' },
11
+ padding: { control: 'text', defaultValue: '20px' },
12
+ backgroundColor: { control: 'color', defaultValue: 'transparent' },
13
+ border: { control: 'boolean', defaultValue: false },
14
+ borderColor: {
15
+ control: 'select',
16
+ options: ['primary', 'secondary', 'info', 'warning', 'alert', 'success', 'neutral', 'dark'],
17
+ defaultValue: 'neutral',
18
+ },
19
+ fullWidth: { control: 'boolean', defaultValue: false },
20
+ shadow: {
21
+ control: 'select',
22
+ options: ['none', 'small', 'medium', 'large'],
23
+ defaultValue: 'none',
24
+ },
25
+ id: { control: 'text', defaultValue: 'section-1' },
26
+ ariaLabel: { control: 'text', defaultValue: 'Main Section' },
27
+ },
28
+ };
29
+
30
+ export const DefaultSection = (args) => (
31
+ <Section {...args}>
32
+ <p>This is a section with some default content.</p>
33
+ </Section>
34
+ );
35
+
36
+ export const SectionWithBorder = (args) => (
37
+ <Section {...args} border={true} borderColor="primary">
38
+ <p>This section has a border.</p>
39
+ </Section>
40
+ );
41
+
42
+ export const FullWidthSection = (args) => (
43
+ <Section {...args} fullWidth={true} shadow="medium">
44
+ <p>This is a full-width section with a medium shadow.</p>
45
+ </Section>
46
+ );
@@ -1,3 +1,4 @@
1
+ /*this.GUI/src/stories/Atoms/TextArea/TextArea.css */
1
2
  .textarea-wrapper {
2
3
  display: flex;
3
4
  flex-direction: column;
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/TextArea/TextArea.jsx
1
2
  import React, { useState } from 'react';
2
3
  import PropTypes from 'prop-types';
3
4
  import classNames from 'classnames';
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/TextArea/TextArea.stories.jsx
1
2
  import React from 'react';
2
3
  import { TextArea } from './TextArea';
3
4
 
@@ -1,3 +1,4 @@
1
+ /*this.GUI/src/stories/Atoms/TextInput/TextInput.css */
1
2
  .text-input {
2
3
  display: flex;
3
4
  align-items: center;
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/TextInput/TextInput.jsx
1
2
  import React from 'react';
2
3
  import PropTypes from 'prop-types';
3
4
  import './TextInput.css';
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/TextInput/TextInput.stories.jsx
1
2
  import React, { useState } from 'react';
2
3
  import { TextInput } from './TextInput';
3
4
 
@@ -1,3 +1,4 @@
1
+ /*this.GUI/src/stories/Atoms/Toggle/Toggle.css*/
1
2
  /* Base Toggle Styles */
2
3
  .toggle {
3
4
  display: inline-flex;
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/Toggle/Toggle.jsx
1
2
  import React from 'react';
2
3
  import PropTypes from 'prop-types';
3
4
  import './Toggle.css';
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/Toggle/Toggle.stories.jsx
1
2
  import React, { useState } from 'react';
2
3
  import { Toggle } from './Toggle';
3
4
 
@@ -1,3 +1,4 @@
1
+ /*this.GUI/src/stories/Atoms/Tooltip/Tooltip.css*/
1
2
  /* Base Tooltip Styles */
2
3
  .tooltip-wrapper {
3
4
  position: relative;
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/Tooltip/Tooltip.jsx
1
2
  import React from 'react';
2
3
  import PropTypes from 'prop-types';
3
4
  import './Tooltip.css';
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/Tooltip/Tooltip.stories.jsx
1
2
  import React from 'react';
2
3
  import { Tooltip } from './Tooltip';
3
4
 
@@ -1,3 +1,4 @@
1
+ /*this.GUI/src/stories/Atoms/Video/Video.css */
1
2
  .video-container {
2
3
  position: relative;
3
4
  overflow: hidden;
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/Video/Video.jsx
1
2
  import React, { useRef, useState } from 'react';
2
3
  import PropTypes from 'prop-types';
3
4
  import './Video.css';
@@ -1,3 +1,4 @@
1
+ //this.GUI/src/stories/Atoms/Video/Video.stories.jsx
1
2
  import React from 'react';
2
3
  import { Video } from './Video';
3
4
 
@@ -30,6 +30,8 @@ import { ProgressBar } from './ProgressBar/ProgressBar';
30
30
  import { Alert } from './Alert/Alert';
31
31
  import { Snackbar } from './Snackbar/Snackbar';
32
32
  import { Logo } from './Logo/Logo';
33
+ import { Section } from './Section/Section';
34
+ import { Grid } from './Grid/Grid';
33
35
 
34
36
  // Flattened export of all components
35
37
  const Atoms = {
@@ -63,6 +65,8 @@ const Atoms = {
63
65
  ProgressBar,
64
66
  Alert,
65
67
  Snackbar,
68
+ Section,
69
+ Grid
66
70
  };
67
71
 
68
72
  export default Atoms;
@@ -7,7 +7,10 @@ const Atomic = {
7
7
  { name: "Caption", paths: { css: "./Caption/Caption.css", globalCss: "styles/global.css", jsx: "./Caption/Caption.jsx", stories: "./Caption/Caption.stories.jsx" }},
8
8
  ],
9
9
  "Layout": [
10
- { name: " Container", paths: { css: "./Container/Container.css", globalCss: "styles/global.css", jsx: "./Container/Container.jsx", stories: "./Container/Container.stories.jsx" }},
10
+ { name: "Container", paths: { css: "./Container/Container.css", globalCss: "styles/global.css", jsx: "./Container/Container.jsx", stories: "./Container/Container.stories.jsx" }},
11
+ { name: "Grid", paths: { css: "./Grid/Grid.css", globalCss: "styles/Grid.css", jsx: "./Grid/Grid.jsx", stories: "./Grid/Grid.stories.jsx" }},
12
+ { name: "Section", paths: { css: "./Section/Section.css", globalCss: "styles/Section.css", jsx: "./Section/Section.jsx", stories: "./Section/Grid.stories.jsx" }},
13
+
11
14
  ],
12
15
  "Interactive": [
13
16
  { name: "Button", paths: { css: "/Button/Button.css", globalCss: "styles/global.css", jsx: "./Button/Button.jsx", stories: "./Button/Button.stories.jsx" }},