create-auto-app 1.32.0 → 1.33.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": "create-auto-app",
3
- "version": "1.32.0",
3
+ "version": "1.33.0",
4
4
  "description": "Create Auto Engineer apps with no configuration",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,7 @@
33
33
  "fs-extra": "^11.2.0",
34
34
  "inquirer": "^9.2.15",
35
35
  "ora": "^8.0.1",
36
- "@auto-engineer/id": "1.32.0"
36
+ "@auto-engineer/id": "1.33.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/fs-extra": "^11.0.4",
@@ -2,4 +2,3 @@ node_modules
2
2
  dist
3
3
  *.local
4
4
  .DS_Store
5
- .staging
@@ -40,7 +40,10 @@ const config: StorybookConfig = {
40
40
  options: {},
41
41
  },
42
42
  typescript: {
43
- reactDocgen: isFastMode ? false : "react-docgen",
43
+ reactDocgen: isFastMode ? false : "react-docgen-typescript",
44
+ reactDocgenTypescriptOptions: {
45
+ tsconfigPath: join(__dirname, "../tsconfig.app.json"),
46
+ },
44
47
  },
45
48
  viteFinal: (config) => {
46
49
  config.server = {
@@ -113,13 +113,12 @@ const darkTheme = create({
113
113
 
114
114
  const customTheme = initialIsDark ? darkTheme : lightTheme;
115
115
 
116
- // Hide the addon panel globally (Storybook 8+/10 API)
117
116
  addons.setConfig({
118
- bottomPanelHeight: 0,
119
- layoutCustomisations: {
120
- showPanel: () => false,
121
- },
122
117
  theme: customTheme,
118
+ sidebar: {
119
+ collapsedRoots: ['ui-components'],
120
+ },
121
+ showPanel: false,
123
122
  });
124
123
 
125
124
  // Set default story to Design System Overview if no path specified
@@ -98,7 +98,7 @@ const preview: Preview = {
98
98
  options: {
99
99
  showPanel: false,
100
100
  storySort: {
101
- order: ['Application Components', 'Design System', ['Overview', '*'], 'UI Components'],
101
+ order: ['Design System', ['Overview', '*'], 'UI Components'],
102
102
  },
103
103
  },
104
104
  darkMode: {
@@ -106,6 +106,7 @@ function ColorSwatches() {
106
106
  const meta: Meta = {
107
107
  title: 'Design System/Colors',
108
108
  component: ColorSwatches,
109
+ tags: ['!autodocs', '!manifest'],
109
110
  };
110
111
  export default meta;
111
112
 
@@ -154,6 +154,7 @@ function LayoutShowcase() {
154
154
 
155
155
  const meta: Meta = {
156
156
  title: 'Design System/Layout',
157
+ tags: ['!autodocs', '!manifest'],
157
158
  parameters: {
158
159
  layout: 'fullscreen',
159
160
  },
@@ -737,6 +737,7 @@ function DesignSystemOverview() {
737
737
  const meta: Meta = {
738
738
  title: 'Design System/Overview',
739
739
  component: DesignSystemOverview,
740
+ tags: ['!autodocs', '!manifest'],
740
741
  };
741
742
  export default meta;
742
743
 
@@ -70,6 +70,7 @@ function TypographyScale() {
70
70
 
71
71
  const meta: Meta = {
72
72
  title: 'Design System/Typography',
73
+ tags: ['!autodocs', '!manifest'],
73
74
  };
74
75
  export default meta;
75
76
  type Story = StoryObj;
@@ -1,4 +1,10 @@
1
1
  {
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "paths": {
5
+ "@/*": ["./src/*"]
6
+ }
7
+ },
2
8
  "files": [],
3
9
  "references": [{ "path": "./tsconfig.app.json" }]
4
10
  }