mml-react
Advanced tools
Comparing version 0.4.2 to 0.4.4
{ | ||
"name": "mml-react", | ||
"version": "0.4.2", | ||
"version": "0.4.4", | ||
"description": "MML (Message Markup Language) for React.", | ||
@@ -40,3 +40,4 @@ "author": "Getstream.io", | ||
"version": "yarn docs-build && git add -A docs", | ||
"postversion": "git push && git push --tags && npm publish" | ||
"postversion": "git push && git push --tags && npm publish", | ||
"semantic-release": "semantic-release" | ||
}, | ||
@@ -51,3 +52,3 @@ "engines": { | ||
"dependencies": { | ||
"@braintree/sanitize-url": "^5.0.0", | ||
"@braintree/sanitize-url": "^6.0.0", | ||
"@rgrove/parse-xml": "^3.0.0", | ||
@@ -62,2 +63,4 @@ "@types/linkifyjs": "^2.1.3", | ||
"devDependencies": { | ||
"@semantic-release/changelog": "^6.0.1", | ||
"@semantic-release/git": "^10.0.1", | ||
"@size-limit/preset-big-lib": "^4.9.2", | ||
@@ -76,2 +79,3 @@ "@types/react": "^17.0.2", | ||
"rollup-plugin-scss": "^2.6.1", | ||
"semantic-release": "^19.0.2", | ||
"size-limit": "^4.9.2", | ||
@@ -78,0 +82,0 @@ "styled-components": "^5.2.1", |
@@ -50,4 +50,4 @@ # MML React | ||
- [`Row`](/components/row) | ||
- [`Col`](/components/col) | ||
- [`Row`](src/components/Row.mdx) | ||
- [`Col`](src/components/Col.mdx) | ||
@@ -58,5 +58,5 @@ ### Container Components | ||
- [`Card`](/components/card) | ||
- [`CardHeader`](/components/card-header) | ||
- [`CardBody`](/components/card-body) | ||
- [`Card`](src/components/Card.mdx) | ||
- [`CardHeader`](src/components/CardHeader.mdx) | ||
- [`CardBody`](src/components/CardBody.mdx) | ||
@@ -67,11 +67,11 @@ ### Core Components | ||
- [`Text`](/components/text): a block of text | ||
- [`Button`](/components/button): a simple button | ||
- [`Image`](/components/image): a simple responsive image | ||
- [`Input`](/components/input): an input field | ||
- [`MD`](/components/md): renders markdown | ||
- [`Icon`](/components/icon): simply displays an icon from material design icons | ||
- [`Loading`](/components/loading): signals a _loading_ temporary state with a circular spinner | ||
- [`Error`](/components/error): display an _error_ message | ||
- [`Success`](/components/success): display a _success_ message | ||
- [`Text`](src/components/Text.mdx): a block of text | ||
- [`Button`](src/components/Button.mdx): a simple button | ||
- [`Image`](src/components/Image.mdx): a simple responsive image | ||
- [`Input`](src/components/Input.mdx): an input field | ||
- [`MD`](src/components/MD.mdx): renders markdown | ||
- [`Icon`](src/components/Icon.mdx): simply displays an icon from material design icons | ||
- [`Loading`](src/components/Loading.mdx): signals a _loading_ temporary state with a circular spinner | ||
- [`Error`](src/components/Error.mdx): display an _error_ message | ||
- [`Success`](src/components/Success.mdx): display a _success_ message | ||
@@ -82,7 +82,7 @@ ### Structured Components | ||
- [`AddToCalendar`](/components/add-to-calendar): wrapped in a [`Card`](/components/card) | ||
- [`Scheduler`](/components/scheduler): wrapped in a [`Card`](/components/card) | ||
- [`ButtonList`](/components/button-list): a list of [`Button`](/components/button) | ||
- [`Carousel`](/components/carousel): a series of [`CarouselItem`](/components/carousel-item) typically containing [`Image`](/components/image), [`Text`](/components/text) and [`Button`](/components/button) | ||
- [`Number`](/components/number): input spinner composed of two [`Button`](/components/button) and a counter | ||
- [`AddToCalendar`](src/components/AddToCalendar.mdx): wrapped in a [`Card`](src/components/Card.mdx) | ||
- [`Scheduler`](src/components/Scheduler.mdx): wrapped in a [`Card`](src/components/Card.mdx) | ||
- [`ButtonList`](src/components/ButtonList.mdx): a list of [`Button`](src/components/Button.mdx) | ||
- [`Carousel`](src/components/Carousel.mdx): a series of [`CarouselItem`](src/components/CarouselItem.mdx) typically containing [`Image`](src/components/Image.mdx), [`Text`](src/components/Text.mdx) and [`Button`](src/components/Button.mdx) | ||
- [`Number`](src/components/Number.mdx): input spinner composed of two [`Button`](src/components/Button.mdx) and a counter | ||
@@ -169,3 +169,3 @@ ## Styles customization | ||
Inside `mml-wrap` you could have as immediate children either the components as they are or the components automatically wrapped in a `<div class="mml-card">...</div>` when `<mml type="card">` is used (see the [`MML` docs](/mml#with-card-type)). Note that the `mml-card` class (and its `Card` React component) is also used internally in various components like [`Scheduler`](/components/scheduler) and [`AddToCalendar`](/components/add-to-calendar). | ||
Inside `mml-wrap` you could have as immediate children either the components as they are or the components automatically wrapped in a `<div class="mml-card">...</div>` when `<mml type="card">` is used (see the [`MML` docs](src/mml/MML.mdx#with-card-type)). Note that the `mml-card` class (and its `Card` React component) is also used internally in various components like [`Scheduler`](src/components/Scheduler.mdx) and [`AddToCalendar`](src/components/AddToCalendar.mdx). | ||
@@ -172,0 +172,0 @@ ## Development & Contributions |
1039922
158
21
+ Added@braintree/sanitize-url@6.0.4(transitive)
- Removed@braintree/sanitize-url@5.0.2(transitive)