Skip to content
This repository was archived by the owner on Sep 5, 2025. It is now read-only.

Commit 16730a9

Browse files
committed
v0.2.0
1 parent 35f9e64 commit 16730a9

Some content is hidden

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

60 files changed

+59
-61
lines changed

.storybook/webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ module.exports = async ({ config }) => {
7070
components: path.resolve(__dirname, "../src/components/"),
7171
helpers: path.resolve(__dirname, "../src/helpers/"),
7272
theme: path.resolve(__dirname, "../src/theme.ts"),
73+
types: path.resolve(__dirname, "/src/types/"),
7374
};
7475

7576
config.module.rules = config.module.rules.map((rule) => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dgraph-io/typhoon-ui",
3-
"version": "0.1.8",
3+
"version": "0.2.0",
44
"description": "Dgraph's design system",
55
"main": "index.js",
66
"typings": "index.d.ts",

src/components/atoms/Avatar/Avatar.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { StylesObject } from "types";
17+
import { StylesObject } from "../../../types";
1818

1919
export const styles: Record<string, StylesObject> = {
2020
Avatar: {},

src/components/atoms/Avatar/Avatar.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { StylesObject } from "types";
17+
import { StylesObject } from "../../../types";
1818
export interface AvatarPropsType {
1919
src?: string;
2020
styles?: StylesObject;

src/components/atoms/Button/Button.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { StylesObject } from "types";
17+
import { StylesObject } from "../../../types";
1818

1919
export const styles: Record<string, StylesObject | React.CSSProperties> = {
2020
Button: {

src/components/atoms/Button/Button.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { StylesObject } from "types";
17+
import { StylesObject } from "../../../types";
1818

1919
export type ButtonVariantType =
2020
| "scream"

src/components/atoms/Card/Card.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { StylesObject } from "types";
17+
import { StylesObject } from "../../../types";
1818

1919
export const styles: Record<string, StylesObject> = {
2020
Card: {

src/components/atoms/Card/Card.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { StylesObject } from "types";
17+
import { StylesObject } from "../../../types";
1818

1919
export interface CardPropsType {
2020
clickable?: boolean;

src/components/atoms/Checkbox/Checkbox.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { StylesObject } from "types";
17+
import { StylesObject } from "../../../types";
1818

1919
export const styles: Record<string, StylesObject> = {
2020
CheckboxLabelContainer: {

src/components/atoms/Checkbox/Checkbox.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { StylesObject } from "types";
17+
import { StylesObject } from "../../../types";
1818

1919
export interface CheckboxPropsType {
2020
id?: string;

0 commit comments

Comments
 (0)