-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3848 from jgthms/customizer
Add Bulma Customizer
- Loading branch information
Showing
72 changed files
with
8,872 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,5 +17,6 @@ test.css.map | |
_gh_pages | ||
_site | ||
dev | ||
dist | ||
node_modules | ||
test/output/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<div id="bulma-customizer-app" class="is-hidden-mobile"></div> | ||
<div id="scope" class="is-hidden"> | ||
<div class="breadcrumb"></div> | ||
<div class="card"></div> | ||
<div class="dropdown"></div> | ||
<div class="menu"></div> | ||
<div class="message"></div> | ||
<div class="modal"></div> | ||
<div class="navbar"></div> | ||
<div class="pagination"></div> | ||
<div class="panel"></div> | ||
<div class="tabs"></div> | ||
<div class="box"></div> | ||
<div class="content"></div> | ||
<div class="delete"></div> | ||
<div class="icon"></div> | ||
<div class="notification"></div> | ||
<div class="progress"></div> | ||
<div class="table"></div> | ||
<div class="tag"></div> | ||
<div class="title"></div> | ||
<input class="input" /> | ||
<div class="file"></div> | ||
<div class="columns"></div> | ||
<div class="grid"></div> | ||
<div class="footer"></div> | ||
<div class="hero"></div> | ||
<div class="media"></div> | ||
<div class="section"></div> | ||
</div> | ||
|
||
<link | ||
rel="stylesheet" | ||
href="{{ site.url }}/assets/javascript/bulma-customizer/index.css" | ||
/> | ||
<script | ||
defer | ||
src="{{ site.url }}/assets/javascript/bulma-customizer/index.js" | ||
></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
module.exports = { | ||
root: true, | ||
env: { browser: true, es2020: true }, | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:react/recommended', | ||
'plugin:react/jsx-runtime', | ||
'plugin:react-hooks/recommended', | ||
], | ||
ignorePatterns: ['dist', '.eslintrc.cjs'], | ||
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, | ||
settings: { react: { version: '18.2' } }, | ||
plugins: ['react-refresh'], | ||
rules: { | ||
'react/jsx-no-target-blank': 'off', | ||
'react-refresh/only-export-components': [ | ||
'warn', | ||
{ allowConstantExport: true }, | ||
], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# React + Vite | ||
|
||
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. | ||
|
||
Currently, two official plugins are available: | ||
|
||
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh | ||
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite + React</title> | ||
<style type="text/css"> | ||
#bulma-customizer-app { | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="bulma-customizer-app"></div> | ||
<div id="scope" class="is-hidden"> | ||
<div class="breadcrumb"></div> | ||
<div class="card"></div> | ||
<div class="dropdown"></div> | ||
<div class="menu"></div> | ||
<div class="message"></div> | ||
<div class="modal"></div> | ||
<div class="navbar"></div> | ||
<div class="pagination"></div> | ||
<div class="panel"></div> | ||
<div class="tabs"></div> | ||
<div class="box"></div> | ||
<div class="content"></div> | ||
<div class="delete"></div> | ||
<div class="icon"></div> | ||
<div class="notification"></div> | ||
<div class="progress"></div> | ||
<table class="table"></table> | ||
<div class="tag"></div> | ||
<div class="title"></div> | ||
<input class="input" /> | ||
<div class="file"></div> | ||
<div class="columns"></div> | ||
<div class="grid"></div> | ||
<div class="footer"></div> | ||
<div class="hero"></div> | ||
<div class="media"></div> | ||
<div class="section"></div> | ||
</div> | ||
<script type="module" src="/src/main.jsx"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.