Luciano Graziani
46c5e953a3
fix #9778 : replace esModule named imports for lodash to specific imports
...
fix: replace the use of isNill to the double eq comparison against null.
2020-02-07 10:47:18 -03:00
Michael Shilman
34bfe84397
v6.0.0-alpha.6
2020-02-05 07:42:41 +08:00
Michael Shilman
7393fc18ce
v6.0.0-alpha.5
2020-02-04 16:51:13 +08:00
Gaëtan Maisse
a978bd2985
chore: add missing or fix implicit transitive peerDependencies
...
Yarn 2 introduce an error for this during `yarn install`: YN0002 - MISSING_PEER_DEPENDENCY
For details see https://dev.to/arcanis/implicit-transitive-peer-dependencies-ed0
TL;DR: If you write a package that depends on Foo, and if Foo has a peer dependency, then you must provide it in either of the dependencies or peerDependencies fields. You won't "implicitly inherit" the peer dependencies declared in Foo.
2020-02-04 07:45:12 +01:00
Michael Shilman
d7f493b305
v6.0.0-alpha.4
2020-02-03 23:47:53 +08:00
Norbert de Langen
746b2a4f11
Merge branch 'next' into upgrades
...
# Conflicts:
# addons/essentials/package.json
# addons/notes/package.json
# addons/storyshots/storyshots-core/package.json
# app/angular/package.json
# app/html/package.json
# app/marko/package.json
# app/preact/package.json
# app/react/package.json
# app/vue/package.json
# app/web-components/package.json
# examples/riot-kitchen-sink/package.json
# examples/vue-kitchen-sink/package.json
# lib/cli/package.json
# lib/core/package.json
# yarn.lock
2020-02-03 13:40:26 +01:00
Michael Shilman
7f11ee2d76
v6.0.0-alpha.3
2020-02-02 13:47:43 +08:00
Norbert de Langen
d5b6a4f0a1
UPGRADE ts-dedent
2020-01-30 19:27:42 +01:00
Norbert de Langen
1994020cd5
UPGRADE jest
2020-01-30 16:34:54 +01:00
Norbert de Langen
6a2ad85290
UPGRADE babel
2020-01-30 16:29:41 +01:00
Michael Shilman
779ef4791d
v6.0.0-alpha.2
2020-01-30 21:36:20 +08:00
Norbert de Langen
71ee7af200
Fix default value for web components prop table docs ( #9655 )
...
Fix default value for web components prop table docs
2020-01-30 10:45:52 +01:00
Norbert de Langen
8cf7dc5e69
ADD notices describing the incompatibilities with manager.js theming & addon-docs && make the addon-docs README the sot
2020-01-28 12:49:00 +01:00
Alberto Luna
86c4099c10
Fix default value for web components prop table docs
...
As `custom-elements.json` format changed we have to
support `default` to get the default value.
This change still keeps compatibility with `defaultValue`.
2020-01-28 08:44:07 +01:00
Michael Shilman
8a49725c9b
Merge branch 'next' into pr/9547
2020-01-28 15:16:43 +08:00
Michael Shilman
3e086ef510
Document viewMode story parameter
2020-01-28 13:54:39 +08:00
Michael Shilman
615ce7f097
Merge branch 'next' into pr/9090
2020-01-28 13:05:15 +08:00
Michael Shilman
3cc3c4fc31
Clarify and expand on addon-docs manual config ( #9638 )
...
Clarify and expand on addon-docs manual config
2020-01-27 00:30:53 +08:00
Michael Shilman
baac06624b
Clarify and expand on addon-docs manual config
2020-01-26 23:43:30 +08:00
Norbert de Langen
cc39879de9
MIGRATE ember to new "import { hbs } from 'ember-cli-htmlbars'"
2020-01-25 13:25:51 +01:00
Michael Shilman
b49797a9de
Publish: Remove docs to reduce package size
2020-01-23 21:40:31 +08:00
Michael Shilman
81cb58e2f0
v6.0.0-alpha.1
2020-01-23 20:19:16 +08:00
Norbert de Langen
26c1417d12
DELETE references to polymer
2020-01-22 16:01:12 +01:00
Michael Shilman
11d057cf41
Merge branch 'next' into pr/9547
2020-01-22 00:27:17 +08:00
Michael Shilman
0cccdabb53
v6.0.0-alpha.0
2020-01-21 22:18:48 +08:00
Michael Shilman
faa9115e8a
fix typo
2020-01-21 22:06:05 +08:00
Michael Shilman
14443bc068
Fix CSF in MDX recipe
2020-01-21 21:58:15 +08:00
Michael Shilman
8604717e15
MDX support is official
2020-01-21 18:56:07 +08:00
atanasster
29376177c1
fix parameters, when locationsMap is null
2020-01-20 13:43:56 -05:00
atanasster
95c4c7dfa4
withStorySource deprecation
2020-01-20 13:18:10 -05:00
Norbert de Langen
3026db9303
Next 6.0.0 ( #9212 )
...
Next 6.0.0
2020-01-20 11:25:55 +01:00
Norbert de Langen
9ac9da64cd
Merge branch 'next' into next-6.0.0
...
# Conflicts:
# addons/cssresources/package.json
# examples/dev-kits/package.json
# examples/rax-kitchen-sink/package.json
2020-01-20 09:06:35 +01:00
Gaëtan Maisse
36ee762ec7
fix: clean usage of @types/webpack-env
dep in all packages
...
- `@types/webpack-env` must be defined as `dependencies` in packages that export a type/function using typings from `@types/webpack-env` (it is often `NodeModule`). In that case `/// <reference types="webpack-env" />` is present in some files of the `dist` folder of the lib. Example: `lib/client-api`.
- `@types/webpack-env` must be defined as `devDependencies` in packages that use its typings internally but does not expose anything related to it. Many addons need the type because they use `module.hot` function. Example: `addons/a11y`
- `webpack-env` should be removed from "compilerOptions.types" key of `tsconfig.json` of packages that don't need it.
I also bump `@types/webpack-env` to ^1.15.0 to have the same version all across the monorepo
2020-01-20 08:41:44 +01:00
Michael Shilman
d6d745006f
v5.3.7
2020-01-20 14:51:39 +08:00
Michael Shilman
b609ebbec1
v5.3.6
2020-01-17 16:10:45 +08:00
Michael Shilman
f32b34b493
v5.3.5
2020-01-17 03:28:19 +08:00
Michael Shilman
25850e1e34
v5.3.4
2020-01-16 14:17:49 +08:00
Norbert de Langen
f318220458
Merge branch 'next' into next-6.0.0
...
# Conflicts:
# addons/cssresources/package.json
# examples/dev-kits/package.json
# examples/rax-kitchen-sink/package.json
2020-01-15 18:00:25 +01:00
Michael Shilman
24ee5fa747
v5.3.3
2020-01-14 17:54:05 +08:00
Michael Shilman
5164f5739d
Merge branch 'next'
2020-01-14 16:48:46 +08:00
Michael Shilman
5d581285e2
v5.3.2
2020-01-13 23:31:56 +08:00
Norbert de Langen
5ba16515e3
Merge branch 'next' into next-6.0.0
...
# Conflicts:
# addons/cssresources/package.json
# docs/src/pages/configurations/options-parameter/index.md
# examples/dev-kits/package.json
# examples/rax-kitchen-sink/package.json
# lib/api/src/index.tsx
# lib/core-events/src/index.ts
# yarn.lock
2020-01-13 15:27:35 +01:00
Norbert de Langen
9c0d0f240f
CHANGE docs & examples to prefer webpackFinal over webpack property https://github.com/storybookjs/storybook/issues/9396
2020-01-13 12:23:15 +01:00
Michael Shilman
14f9760411
v5.3.1
2020-01-12 23:32:39 +08:00
Michael Shilman
ee7b9591ba
v5.3.0
2020-01-11 17:27:43 +08:00
Michael Shilman
aaef883c47
v5.3.0-rc.14
2020-01-11 16:46:54 +08:00
Michael Shilman
9042106880
v5.3.0-rc.13
2020-01-11 10:14:46 +08:00
Michael Shilman
bec2df77c8
Addon-docs: Fix link CORS errors using channel navigate event
2020-01-10 22:47:51 +08:00
Norbert de Langen
5c6934635c
Merge branch 'next' into next-6.0.0
2020-01-09 11:40:34 +01:00
Beth Pan
1e5220bdb3
[Addon-docs][Web Components] Update 'props' to 'properties'
...
Update 'props' section title to 'properties'
2020-01-08 17:53:43 -08:00