61 Commits

Author SHA1 Message Date
Michael Shilman
e2f026b677 HTML: Disable docs preset if not using docs/controls 2022-03-12 20:57:10 +08:00
Michael Shilman
0de7cd0605 HTML: Add docs preset to framework 2022-03-12 12:29:05 +08:00
Norbert de Langen
89830ad763
change imports of types & interfaces to be clearly defined as type 2022-03-08 14:15:22 +01:00
Michael Shilman
e2afcd50fe Fix preset resolution of ESM files 2021-10-20 22:49:39 +08:00
Michael Shilman
d9b03a323f HTML: consolidate preset 2021-10-20 17:23:08 +08:00
Tom Coleman
5808c979a9 Update types for remaining frameworks 2021-09-20 17:26:41 +10:00
Tom Coleman
06c58d9d6e Add presets for all frameworks 2021-09-11 16:04:56 +10:00
Tom Coleman
a504ad3a32 Improve types flushed out by CSF changes 2021-09-07 23:30:31 +10:00
Tom Coleman
5982475373 Deepscan cleanups 2021-09-07 17:21:06 +10:00
Tom Coleman
1fa95a007b Rename WebPreview to PreviewWeb 2021-09-07 14:41:20 +10:00
Tom Coleman
23ee4028a3 Update a bunch of types to get things to 'strap 2021-09-01 14:17:05 +10:00
Tom Coleman
3279dbc9fb Update frameworks to use legacy types 2021-08-31 23:03:29 +10:00
Tom Coleman
e1268c751d Clean up some exported APIs 2021-08-31 19:00:56 +10:00
Tom Coleman
d05a6c1442 Close to bootstrapping again 2021-08-27 14:41:07 +10:00
Tom Coleman
2f48a40e4d Updated all render function to get build working 2021-08-20 07:23:41 +10:00
Ian VanSchooten
f3a44f0c96 Do not try to named import from global 2021-05-25 15:59:46 -04:00
Eirik Sletteberg
841a55bd68 Don't shadow the window global variable
This snippet:

```
import { window } from 'global';
```

will let you mock window variables in Jest tests.
However, it breaks hot module reloading in Vite,
because Vite injects code snippets in top of every
file:

```
window.STUFF = 'Vite injected some HMR code here';
import { window } from 'global';
// this fails: Uncaught ReferenceError: Cannot access 'window' before initialization
```

The simple solution is to rename `window` when importing it:

```
import { window as globalWindow } from 'global';
globalWindow.alert('hello world');
```

The code works like before, but Vite will be able to
inject its code snippet without interfering with the
rest of the code.
2021-04-04 18:36:16 +02:00
Norbert de Langen
1eab404f54
Merge branch 'next' into tech/core-builder
# Conflicts:
#	app/html/src/server/options.ts
#	app/vue3/src/server/options.ts
#	app/web-components/src/server/options.ts
#	lib/core-server/src/__snapshots__/angular-cli_manager-dev
#	lib/core-server/src/__snapshots__/angular-cli_manager-prod
#	lib/core-server/src/__snapshots__/angular-cli_preview-dev
#	lib/core-server/src/__snapshots__/angular-cli_preview-prod
#	lib/core/src/server/core-presets.test.ts
2021-02-19 18:18:39 +01:00
Michael Shilman
b8a37919ae Fix framework-preset tests 2021-02-19 19:09:20 +08:00
Norbert de Langen
70f9e6494d
types for the storybookOptions across the board 2021-02-06 00:11:12 +01:00
Michael Shilman
1a84472515 Prefer exporting types when possible 2021-02-04 18:08:04 +08:00
Michael Shilman
52d6c566e5 Finish fixing build 2021-02-04 00:03:35 +08:00
Michael Shilman
c5c5a983ab Merge from next WIP 2021-02-03 22:34:44 +08:00
Yann Braga
80abc1a034 types(html): add 6.0 csf types 2020-12-26 23:17:50 +01:00
Norbert de Langen
aab422d33d
move ts3.4 into dist, generate types into dist/ts3.9, make esm dist for all, fix issues 2020-12-08 17:54:25 +01:00
Norbert de Langen
05ee0915c8
webpack 5 baby 2020-12-04 15:14:48 +01:00
Michael Shilman
2bb142ac65 Add global & story loaders 2020-10-08 14:00:35 +08:00
Michael Shilman
004490642d Refactor async loading outside of render function 2020-10-08 12:56:28 +08:00
Michael Shilman
36dbbc27ad Simplify loader structure 2020-10-07 13:40:54 +08:00
Michael Shilman
c1ff295246 Merge branch 'next' into 10009-poc-async-loaders 2020-10-07 12:23:34 +08:00
Tom Coleman
a0d243e617 POC of loaders 2020-06-02 13:42:24 +10:00
Norbert de Langen
74c1a7c0aa
REMOVE tslint instead
bye bye
2020-05-14 17:06:18 +02:00
Tom Coleman
811684a993 Remove selectedKind/selectedStory API 2020-03-02 11:09:24 +11:00
Michael Shilman
ab7f343e87 Presets: Add framework option 2019-11-10 19:01:40 +08:00
Norbert de Langen
27210146d6 CHANGE common-tags stripIndents to dedent, which is a lot smarter about removing indentation from code samples
Removes the need for formatter in syntaxhighlighter
2019-09-27 15:02:31 +02:00
Michael Shilman
62c20e40fd Take two at fixing configure types 😅 2019-07-30 02:51:03 +08:00
Michael Shilman
905861da57 Fix configure typings in React/Angular/HTML 2019-07-30 02:00:33 +08:00
Michael Shilman
0ac48981fe Core: Rename load => configure 2019-07-26 23:10:07 +08:00
Emilio Martinez
c70c1a9920 App-html: align types with addon, angular and react 2019-07-11 06:22:43 -07:00
Emilio Martinez
948f507e0a App-html: apply types within storybook/html 2019-07-11 05:09:29 -07:00
Emilio Martinez
f530ef2dca App-html: straight rename js => ts 2019-07-11 05:09:29 -07:00
Michael Shilman
711c8397f0 Module story format & framework param 2019-06-17 19:04:51 +08:00
Hypnosphi
8ee658cfbd HTML: support knobs for both cached and uncached nodes 2019-05-14 09:34:04 +02:00
Marco Solazzi
4b9ec199ea control forced re-renders with a parameter 2019-03-20 12:57:59 +09:00
Norbert de Langen
08cd875e33 CLEANUP naming of story, storyFn in apps
RENAME `component` to `element` where applicable for consistency.
2019-02-19 16:06:09 +01:00
Norbert de Langen
0293514326
MIGRATE storyshots to use new API with build-in context && update snapshots 2018-12-19 00:03:19 +01:00
Norbert de Langen
d7bfb78ff5
FIX some typescript issues 2018-12-17 11:35:39 +01:00
Norbert de Langen
ec82d04797
REFACTOR a11y addon && FIX issues with decorators reloading 2018-12-10 19:27:12 +01:00
Atekon
5a33ea024d Don't change rootElement when received node is the same 2018-11-22 09:32:46 +00:00
igor-dv
2e11d18a87 Put standalone.js to every app 2018-10-10 18:29:11 +03:00