Skip to content

Commit

Permalink
feat(blockquote-dialog): new element
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarmarina committed Jun 6, 2024
1 parent c702193 commit 20d977e
Show file tree
Hide file tree
Showing 25 changed files with 2,994 additions and 3 deletions.
41 changes: 38 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions packages/components/blockquote-dialog/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = space
indent_size = 2
quote_type = single
# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.json]
indent_size = 2

[*.{html,js,md}]
block_comment_start = /**
block_comment = *
block_comment_end = */
41 changes: 41 additions & 0 deletions packages/components/blockquote-dialog/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
## editors
/.idea
/.vscode
/*.code-workspace

## system files
.DS_Store

## npm/yarn
node_modules
npm-debug.log
*-debug.log
yarn-error.log

## testing
coverage
**/coverage/
reports
__snapshots__
screenshots/.current
screenshots/.diff


## build
_site
dist
dev
build
.tmp
*.tgz
*.tsbuildinfo
*.d.ts
storybook-static
## end gitignore

## specific eslintignore
*.config.*
package-lock.json
*.min.js
*-styles.*
CHANGELOG.md
32 changes: 32 additions & 0 deletions packages/components/blockquote-dialog/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
## editors
/.idea
/.vscode
/*.code-workspace

## system files
.DS_Store

## npm/yarn
node_modules
npm-debug.log
*-debug.log
yarn-error.log

## testing
coverage
**/coverage/
reports
__snapshots__
screenshots/.current
screenshots/.diff


## build
_site
dist
dev
build
.tmp
*.tgz
*.tsbuildinfo
storybook-static
21 changes: 21 additions & 0 deletions packages/components/blockquote-dialog/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 blockquote-dialog

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit 20d977e

Please sign in to comment.