@q2devel/q2-storybook 1.0.5 → 1.0.7
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/dist/index.d.ts +4 -0
- package/dist/index.js +8 -8
- package/package.json +7 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export { default as Badge } from './components/badge/Badge';
|
|
2
2
|
export { default as Button } from './components/button/Button';
|
|
3
|
+
export { NavBar } from './components/nav-bar/NavBar';
|
|
4
|
+
export { ProductCard } from './components/product-card/ProductCard';
|
|
5
|
+
export { default as SelectField } from './components/select-field/SelectField';
|
|
6
|
+
export { default as TextField } from './components/text-field/TextField';
|
|
3
7
|
export { default as ImageWithText } from './components/text-with-image/ImageWithText';
|
|
4
8
|
export { buildClassesByJoining } from './utils/StyleHelper';
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
|
-
export { default as Badge } from './components/badge/Badge'
|
|
3
|
-
export { default as Button } from './components/button/Button'
|
|
4
|
-
export { NavBar } from './components/nav-bar/NavBar'
|
|
5
|
-
export { ProductCard } from './components/product-card/ProductCard'
|
|
6
|
-
export { default as SelectField } from './components/select-field/SelectField'
|
|
7
|
-
export { default as TextField } from './components/text-field/TextField'
|
|
8
|
-
export { default as ImageWithText } from './components/text-with-image/ImageWithText'
|
|
9
|
-
export { buildClassesByJoining } from './utils/StyleHelper'
|
|
2
|
+
export { default as Badge } from './components/badge/Badge';
|
|
3
|
+
export { default as Button } from './components/button/Button';
|
|
4
|
+
export { NavBar } from './components/nav-bar/NavBar';
|
|
5
|
+
export { ProductCard } from './components/product-card/ProductCard';
|
|
6
|
+
export { default as SelectField } from './components/select-field/SelectField';
|
|
7
|
+
export { default as TextField } from './components/text-field/TextField';
|
|
8
|
+
export { default as ImageWithText } from './components/text-with-image/ImageWithText';
|
|
9
|
+
export { buildClassesByJoining } from './utils/StyleHelper';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@q2devel/q2-storybook",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -14,11 +14,12 @@
|
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
18
|
+
"storybook": "storybook dev -p 6006",
|
|
19
|
+
"build-storybook": "storybook build",
|
|
20
|
+
"build": "tsc",
|
|
21
|
+
"prepublishOnly": "npm run build"
|
|
22
|
+
},
|
|
22
23
|
"keywords": [],
|
|
23
24
|
"author": "Q2",
|
|
24
25
|
"license": "ISC",
|