diff --git a/CHANGELOG.md b/CHANGELOG.md index b0093f7..bc7c5de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Change Log All notable changes to the "semantic-ui-snippets" extension will be documented in this file. +## [2.0.1] +- Added some buttons and card elements. + ## [2.0.0] - Added more snippets for buttons and ui elements diff --git a/README.md b/README.md index c3ba1c9..28c73c5 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,8 @@ Semantic allows developers to build beautiful websites fast, with concise HTML, |`std-button-disabled-tooltip` | `button` with class `disabled` and tooltip on a surrounding `span`| |`ui-button-deny` | `div` with class `ui black deny button`| |`ui-button-approve` | `div` with class `ui green approve right button`| +|`ui-button` | `button` with class `ui primary button`| +|`ui-icon` | `button` with class `ui icon button`| | **Elements** | | `semh` | Starter snippet with `head` tags | |`ui-segment` | `div` with class `ui segment`| @@ -24,13 +26,14 @@ Semantic allows developers to build beautiful websites fast, with concise HTML, |`ui-header` | `div` with class `ui header`| |`ui-clearing` | `div` with class `ui clearing divider`| |`ui-modal` | `div` with class `ui modal`| +|`ui-card` | `div` with class `ui card`| ## Release Notes Starter template for Semantic-UI snippets. -### 2.0.0 -Added buttons and divider elements. +### 2.0.1 +Added some buttons and card elements. diff --git a/package.json b/package.json index 68b21f8..2e288e8 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "semantic-ui-snippets", "displayName": "semantic-ui snippets", "description": "Semantic-UI snippet generator", - "version": "2.0.0", + "version": "2.0.1", "publisher": "Licio", "repository": { "type": "git", diff --git a/snippets/snippets.json b/snippets/snippets.json index c44a5d0..e2c7209 100644 --- a/snippets/snippets.json +++ b/snippets/snippets.json @@ -133,5 +133,46 @@ "" ], "description": "ui-modal" + }, + "ui card with image":{ + "prefix":"ui-card", + "body": [ + "
", + "
", + " ", + "
", + "
", + "Kristy", + "
", + "Joined in 2013", + "
", + "
Kristy is an art director living in New York.
", + "
", + "
", + "", + " 22 Friends", + "", + "
", + "
" + ], + "description":"ui card" + }, + "standard button":{ + "prefix":"ui-button", + "body":[ + "" + ], + "description":"standard button" + }, + "icon button":{ + "prefix":"ui-icon", + "body":[ + "" + ], + "description":"ui icon button" } } \ No newline at end of file