Skip to content

Commit 1db8cee

Browse files
author
Krzysztof Wilk
committed
Generate version 4.1.0
1 parent 3d42089 commit 1db8cee

File tree

80 files changed

+537
-1509
lines changed

Some content is hidden

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

80 files changed

+537
-1509
lines changed

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MDB 5 React
22

3-
Version: FREE 4.0.0
3+
Version: FREE 4.1.0
44

55
Documentation:
66
https://mdbootstrap.com/docs/b5/react/

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mdb-react-ui-kit-demo",
3-
"version": "4.0.0",
3+
"version": "4.1.0",
44
"main": "index.js",
55
"repository": {
66
"type": "git",

app/src/components/Accordion/AccordionItem/types.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import React from 'react';
2-
import { BaseComponent } from 'src/types/baseComponent';
1+
import React from "react";
2+
import { BaseComponent } from "../../../types/baseComponent";
33

44
interface AccordionItemProps extends BaseComponent {
55
bodyClassName?: string;

app/src/components/Accordion/types.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import React from 'react';
2-
import { BaseComponent } from 'src/types/baseComponent';
1+
import React from "react";
2+
import { BaseComponent } from "../../types/baseComponent";
33

44
interface AccordionProps extends BaseComponent {
55
alwaysOpen?: boolean;

app/src/components/Badge/types.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import React from 'react';
2-
import { BaseComponent } from 'src/types/baseComponent';
3-
import { backgroundColor } from 'src/types/colors';
1+
import React from "react";
2+
import { BaseComponent } from "../../types/baseComponent";
3+
import { backgroundColor } from "../../types/colors";
44

55
interface BadgeProps extends BaseComponent {
66
color?: backgroundColor;

app/src/components/ButtonGroup/types.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { BaseComponent } from 'src/types/baseComponent';
2-
import { size } from 'src/types/size';
1+
import { BaseComponent } from "../../types/baseComponent";
2+
import { size } from "../../types/size";
33

44
interface ButtonGroupProps extends BaseComponent {
55
ref?: React.ForwardedRef<HTMLAllCollection>;
66
size?: size;
7-
shadow?: '0' | '1' | '2' | '3' | '4' | '5';
7+
shadow?: "0" | "1" | "2" | "3" | "4" | "5";
88
toolbar?: boolean;
99
vertical?: boolean;
1010
tag?: React.ComponentProps<any>;

app/src/components/Card/CardBody/types.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BaseComponent } from 'src/types/baseComponent';
1+
import { BaseComponent } from "../../../types/baseComponent";
22

33
interface CardBodyProps extends BaseComponent {
44
tag?: React.ComponentProps<any>;

app/src/components/Card/CardFooter/types.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { BaseComponent } from 'src/types/baseComponent';
2-
import { backgroundColor } from 'src/types/colors';
1+
import { BaseComponent } from "../../../types/baseComponent";
2+
import { backgroundColor } from "../../../types/colors";
33

44
interface CardFooterProps extends BaseComponent {
55
border?: string;

app/src/components/Card/CardGroup/types.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BaseComponent } from 'src/types/baseComponent';
1+
import { BaseComponent } from "../../../types/baseComponent";
22

33
interface CardGroupProps extends BaseComponent {
44
tag?: React.ComponentProps<any>;

app/src/components/Card/CardHeader/types.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { BaseComponent } from 'src/types/baseComponent';
2-
import { backgroundColor } from 'src/types/colors';
1+
import { BaseComponent } from "../../../types/baseComponent";
2+
import { backgroundColor } from "../../../types/colors";
33

44
interface CardHeaderProps extends BaseComponent {
55
border?: string;

0 commit comments

Comments
 (0)