Skip to content

Commit 40353d0

Browse files
committed
Merge branch 'release/4.1.4'
2 parents 6ecf834 + cd46a3b commit 40353d0

File tree

74 files changed

+9011
-3536
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+9011
-3536
lines changed

.storybook/addons.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import '@storybook/addon-actions/register';
2+
import '@storybook/addon-links/register';
3+
import '@storybook/addon-notes/register';
4+
import '@storybook/addon-knobs/register';

.storybook/config.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { configure } from '@storybook/angular';
2+
3+
// automatically import all files ending in *.stories.ts
4+
const req = require.context('../src/stories', true, /\.stories\.ts$/);
5+
function loadStories() {
6+
req.keys().forEach(filename => req(filename));
7+
}
8+
9+
configure(loadStories, module);

.storybook/tsconfig.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"extends": "../src/tsconfig.app.json",
3+
"compilerOptions": {
4+
"types": [
5+
"node"
6+
]
7+
},
8+
"exclude": [
9+
"../src/test.ts",
10+
"../src/**/*.spec.ts",
11+
"../projects/**/*.spec.ts"
12+
],
13+
"include": [
14+
"../src/**/*",
15+
"../projects/**/*"
16+
],
17+
"files": [
18+
"./typings.d.ts"
19+
]
20+
}

.storybook/typings.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module '*.md' {
2+
const content: string;
3+
export default content;
4+
}

angular.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,5 +176,5 @@
176176
}
177177
}
178178
},
179-
"defaultProject": "truly-ui-project",
179+
"defaultProject": "truly-ui-project"
180180
}

0 commit comments

Comments
 (0)