Skip to content

Commit 101b698

Browse files
authored
Merge pull request #1 from CGWebDev2003/main
[v1.0.0]: Initial commit
2 parents 8482d5b + d9f8759 commit 101b698

12 files changed

+743
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules/

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
}
16+
]
17+
}

.vscodeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
vsc-extension-quickstart.md

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to the "neptune-snippets" extension will be documented in this file.
4+
5+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6+
7+
## [Unreleased]
8+
9+
- Initial release

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2023 The Neptune Authors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 282 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,282 @@
1-
# neptune-snippets
2-
Neptune snippets for VS Code
1+
# Neptune CSS snippets
2+
3+
This is the official snippets extension for [Neptune CSS](https://github.com/neptune-css/neptune-css).
4+
5+
## Table of contents
6+
7+
- [Neptune CSS snippets](#neptune-css-snippets)
8+
- [Table of contents](#table-of-contents)
9+
- [Component example](#component-example)
10+
- [Badges](#badges)
11+
- [Badge sizes](#badge-sizes)
12+
- [Badge S](#badge-s)
13+
- [Badge M](#badge-m)
14+
- [Badge L](#badge-l)
15+
- [Badge styles](#badge-styles)
16+
- [Badge primary](#badge-primary)
17+
- [Badge accent](#badge-accent)
18+
- [Badge information](#badge-information)
19+
- [Badge success](#badge-success)
20+
- [Badge warning](#badge-warning)
21+
- [Badge error](#badge-error)
22+
- [Buttons](#buttons)
23+
- [Button sizes](#button-sizes)
24+
- [Button S](#button-s)
25+
- [Button M](#button-m)
26+
- [Button L](#button-l)
27+
- [Button styles](#button-styles)
28+
- [Primary button](#primary-button)
29+
- [Secondary button](#secondary-button)
30+
- [Button CTA](#button-cta)
31+
- [Button information](#button-information)
32+
- [Button success](#button-success)
33+
- [Button warning](#button-warning)
34+
- [Button error](#button-error)
35+
- [Progress bars](#progress-bars)
36+
- [Progress bar sizes](#progress-bar-sizes)
37+
- [Progress bar XS](#progress-bar-xs)
38+
- [Progress bar S](#progress-bar-s)
39+
- [Progress bar M](#progress-bar-m)
40+
- [Progress bar L](#progress-bar-l)
41+
- [Progress bar XL](#progress-bar-xl)
42+
- [Progress bar styles](#progress-bar-styles)
43+
- [Progress bar primary](#progress-bar-primary)
44+
- [Progress bar accent](#progress-bar-accent)
45+
- [Progress bar information](#progress-bar-information)
46+
- [Progress bar success](#progress-bar-success)
47+
- [Progress bar warning](#progress-bar-warning)
48+
- [Progress bar error](#progress-bar-error)
49+
- [Toasts](#toasts)
50+
- [Toast styles](#toast-styles)
51+
- [Toast primary](#toast-primary)
52+
- [Toast accent](#toast-accent)
53+
- [Toast information](#toast-information)
54+
- [Toast success](#toast-success)
55+
- [Toast warning](#toast-warning)
56+
- [Toast error](#toast-error)
57+
- [Author](#author)
58+
59+
## Component example
60+
61+
```
62+
neptune-example
63+
```
64+
65+
## Badges
66+
67+
```
68+
neptune-badge
69+
```
70+
71+
### Badge sizes
72+
73+
#### Badge S
74+
```
75+
neptune-badge-s
76+
```
77+
78+
#### Badge M
79+
```
80+
neptune-badge-m
81+
```
82+
83+
#### Badge L
84+
```
85+
neptune-badge-l
86+
```
87+
88+
### Badge styles
89+
90+
#### Badge primary
91+
```
92+
neptune-badge-primary
93+
```
94+
95+
#### Badge accent
96+
```
97+
neptune-badge-accent
98+
```
99+
100+
#### Badge information
101+
```
102+
neptune-badge-info
103+
```
104+
105+
#### Badge success
106+
```
107+
neptune-badge-success
108+
```
109+
110+
#### Badge warning
111+
```
112+
neptune-badge-warning
113+
```
114+
115+
#### Badge error
116+
```
117+
neptune-badge-error
118+
```
119+
120+
## Buttons
121+
122+
```
123+
neptune-button
124+
```
125+
126+
### Button sizes
127+
128+
#### Button S
129+
```
130+
neptune-button-s
131+
```
132+
133+
#### Button M
134+
```
135+
neptune-button-m
136+
```
137+
138+
#### Button L
139+
```
140+
neptune-button-l
141+
```
142+
143+
### Button styles
144+
145+
#### Primary button
146+
```
147+
neptune-button-primary
148+
```
149+
150+
#### Secondary button
151+
```
152+
neptune-button-secondary
153+
```
154+
155+
#### Button CTA
156+
```
157+
neptune-button-cta
158+
```
159+
160+
#### Button information
161+
```
162+
neptune-button-info
163+
```
164+
165+
#### Button success
166+
```
167+
neptune-button-success
168+
```
169+
170+
#### Button warning
171+
```
172+
neptune-button-warning
173+
```
174+
175+
#### Button error
176+
```
177+
neptune-button-error
178+
```
179+
180+
## Progress bars
181+
```
182+
neptune-progress
183+
```
184+
185+
### Progress bar sizes
186+
187+
#### Progress bar XS
188+
```
189+
neptune-progress-xs
190+
```
191+
192+
#### Progress bar S
193+
```
194+
neptune-progress-s
195+
```
196+
197+
#### Progress bar M
198+
```
199+
neptune-progress-m
200+
```
201+
202+
#### Progress bar L
203+
```
204+
neptune-progress-l
205+
```
206+
207+
#### Progress bar XL
208+
```
209+
neptune-progress-xl
210+
```
211+
212+
### Progress bar styles
213+
214+
#### Progress bar primary
215+
```
216+
neptune-progress-primary
217+
```
218+
219+
#### Progress bar accent
220+
```
221+
neptune-progress-accent
222+
```
223+
224+
#### Progress bar information
225+
```
226+
neptune-progress-info
227+
```
228+
229+
#### Progress bar success
230+
```
231+
neptune-progress-success
232+
```
233+
234+
#### Progress bar warning
235+
```
236+
neptune-progress-warning
237+
```
238+
239+
#### Progress bar error
240+
```
241+
neptune-progress-error
242+
```
243+
244+
## Toasts
245+
```
246+
neptune-toast
247+
```
248+
249+
### Toast styles
250+
251+
#### Toast primary
252+
```
253+
neptune-toast-primary
254+
```
255+
256+
#### Toast accent
257+
```
258+
neptune-toast-accent
259+
```
260+
261+
#### Toast information
262+
```
263+
neptune-toast-info
264+
```
265+
266+
#### Toast success
267+
```
268+
neptune-toast-success
269+
```
270+
271+
#### Toast warning
272+
```
273+
neptune-toast-warning
274+
```
275+
276+
#### Toast error
277+
```
278+
neptune-toast-error
279+
```
280+
281+
## Author
282+
[CGWebDev2003](https://www.github.com/CGWebDev2003/)

icon.png

6.91 KB
Loading

neptune-snippets-1.0.0.vsix

20.3 KB
Binary file not shown.

package.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "neptune-snippets",
3+
"displayName": "Neptune snippets",
4+
"icon": "icon.png",
5+
"description": "VS Code snippets for Neptune CSS",
6+
"version": "1.0.0",
7+
"license": "MIT",
8+
"author": "CGWebDev2003",
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/neptune-css/neptune-snippets.git"
12+
},
13+
"bugs": {
14+
"url": "https://github.com/neptune-css/neptune-snippets/issues"
15+
},
16+
"homepage": "https://github.com/neptune-css/neptune-snippets#readme",
17+
"engines": {
18+
"vscode": "^1.77.0"
19+
},
20+
"categories": [
21+
"Snippets"
22+
],
23+
"contributes": {
24+
"snippets": [
25+
{
26+
"language": "html",
27+
"path": "./snippets/snippets.code-snippets"
28+
}
29+
]
30+
}
31+
}

0 commit comments

Comments
 (0)