This repository was archived by the owner on Mar 27, 2025. It is now read-only.
File tree 4 files changed +41
-1
lines changed
4 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,12 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
21
21
- Breadcrumbs
22
22
- Tag
23
23
- Tooltip
24
+
25
+ ## [ 1.1.0] - 24-08-2019
26
+
27
+ ### Added
28
+
29
+ - Modal
30
+ - Modal.Header
31
+ - Modal.Content
32
+ - Modal.Footer
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ Supercharge your react component development with zoids using zoids snippets
26
26
| ` zbr→ ` | ` <Breadcrumbs breadcrumbs={} inline={} /> ` |
27
27
| ` ztag→ ` | ` <Tag color=''></Tag> ` |
28
28
| ` zto→ ` | ` <Tooltip content='' placement=''></Tooltip> ` |
29
+ | ` zmod→ ` | ` <Modal size='m' open={}></Modal> ` |
30
+ | ` zmodf→ ` | ` <Modal.Footer></Modal.Footer> ` |
29
31
30
32
### See it in action
31
33
@@ -34,3 +36,5 @@ Supercharge your react component development with zoids using zoids snippets
34
36
## Super snippet
35
37
36
38
Use ` snip ` snippet to create Zoids snippets
39
+
40
+ ![ snippet] ( https://assets1.cleartax-cdn.com/cleargst-frontend/misx/1566657235_zoids_snippet.gif )
Original file line number Diff line number Diff line change 2
2
"name" : " zoids-snippets" ,
3
3
"displayName" : " Zoids Snippets" ,
4
4
"description" : " Supercharge your react component development with Zoids using Zoids snippets" ,
5
- "version" : " 1.0.3 " ,
5
+ "version" : " 1.1.0 " ,
6
6
"publisher" : " cleartax" ,
7
7
"engines" : {
8
8
"vscode" : " ^1.37.0"
Original file line number Diff line number Diff line change 154
154
" \t $0" ,
155
155
" </Tooltip>"
156
156
]
157
+ },
158
+ "zoidsModal" : {
159
+ "description" : " Zoids Modal" ,
160
+ "prefix" : " zmod" ,
161
+ "body" : [
162
+ " <Modal size='m' open={$1} onDismiss={$2}>" ,
163
+ " \t <Modal.Header text='$3' onDismiss={$4} />" ,
164
+ " \t <Modal.Content>" ,
165
+ " \t\t $0" ,
166
+ " \t </Modal.Content>" ,
167
+ " </Modal>"
168
+ ]
169
+ },
170
+ "zoidsModalwithFooter" : {
171
+ "description" : " Zoids Modal with Footer" ,
172
+ "prefix" : " zmodf" ,
173
+ "body" : [
174
+ " <Modal size='m' open={$1} onDismiss={$2}>" ,
175
+ " \t <Modal.Header text='$3' onDismiss={$4} />" ,
176
+ " \t <Modal.Content>" ,
177
+ " \t\t $0" ,
178
+ " \t </Modal.Content>" ,
179
+ " \t <Modal.Footer>" ,
180
+ " \t\t $5" ,
181
+ " \t </Modal.Footer>" ,
182
+ " </Modal>"
183
+ ]
157
184
}
158
185
}
You can’t perform that action at this time.
0 commit comments