Skip to content

Commit

Permalink
Init extension release
Browse files Browse the repository at this point in the history
  • Loading branch information
Kumar Nitesh committed Jun 18, 2023
0 parents commit d76b4d1
Show file tree
Hide file tree
Showing 11 changed files with 1,075 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Set default behavior to automatically normalize line endings.
* text=auto
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
*.vsix
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [



{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}
4 changes: 4 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.vscode/**
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to the "daisyui-snippets" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]

- Initial release
213 changes: 213 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,213 @@
# daisyui-snippets README

## Shortcuts
```
"duibtn": "Buttons with brand colors"
"duidropdown": "Dropdown can open a menu or any other element when the button is clicked."
"duimodal": "Modal goes bottom on mobile screen and goes middle on desktop"
"duiswap": "# Activate using class name instead of checkbox"
"duiaccord": "# Accordion with arrow icon"
"duialert": "Alert"
"duiavatar": "Avatar"
"duibadge": "Badge"
"duicard": "Card"
"duicard-overlay": "Card-Overlay"
"duichat": "Chat"
"duicollapse": "Collapse"
"duicountdown": "Countdown"
"duikbd": "Kbd"
"duiloading-dots": "Loading-dots"
"duiloading-spinner": "Loading-spinner"
"duiloading-ring": "Loading-ring"
"duiprog": "Progress"
"duiprog-radial": "Progress-radial"
"duistat": "Stats"
"duitable": "Table"
"duitooltip": "Tooltip"
"duicheckbox": "Checkbox"
"duifile": "File-Input"
"duiradio": "Radio"
"duirange": "Range"
"duirate-star": "Rating-star"
"duirate-heart": "Rating-heart"
"duiselect": "Select"
"duiinput": "Input"
"duitextarea": "TextArea"
"duitoggle": "Toggle"
"duiartboard": "Artboard"
"duidivider": "Divider"
"duidrawer": "Drawer"
"duifooter": "Footer"
"duihero": "Hero"
"duiindicator": "Indicator"
"duijoin": "Join"
"duimask": "Mask"
"duistack": "Stack"
"duitoast": "Toast"
"duibread": "BreadCrumbs"
"duibtm-nav": "Bottom-Navigation"
"duilink": "Link"
"duimenu": "Menu"
"duinav": "Navbar"
"duipage": "Pagination"
"duisteps": "Steps"
"duitab": "Tab"
"duicode": "Code"
"duiphone": "Phone"
"duiwindow": "Window"
```
## Features

Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.
![Start writing Code snipped with dui](image.png)
For example if there is an image subfolder under your extension project workspace:

\!\[feature X\]\(images/feature-x.png\)

> Contains 53+ Latest Code snippets from Daisy UI,for blazing fast development ⚡
## Requirements

> VSCODE Supported
> Works with Javascript as of now.
## Extension Settings

Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.

For example:

This extension contributes the following settings:

* `myExtension.enable`: Enable/disable this extension.
* `myExtension.thing`: Set to `blah` to do something.

## Known Issues

None

## Release Notes

Users appreciate release notes as you update your extension.

### 1.0.0

Initial release of Daisy UI Snippets

---



## For more information

* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)

**Enjoy!**
Binary file added image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "daisyui-snippets",
"displayName": "daisyui snippets",
"description": "Helps to faster build daisyui snippets on the go ⚡",
"version": "0.0.1",

"engines": {
"vscode": "^1.79.0"
},
"repository": {},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.json"
}
]
}
}
Loading

0 comments on commit d76b4d1

Please sign in to comment.