Merge pull request #29 from apuc/fix-folders-nom

Fix folders npm
This commit is contained in:
MaxOvs19 2022-12-21 17:55:07 +03:00 committed by GitHub
commit 3176511fc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 14 additions and 13 deletions

View File

@ -1,6 +1,6 @@
# CG-SELECT # CG-SELECT
## version ~ 0.1.1 ## version ~ 0.1.12
Этот компонент позволяет создать кастомный селект. Он предлагает более гибкую настройку и использование селекта. Этот компонент позволяет создать кастомный селект. Он предлагает более гибкую настройку и использование селекта.
Доступна кастомизация, мультивыбор и живой поиск по елементам. Доступна кастомизация, мультивыбор и живой поиск по елементам.

View File

@ -19,7 +19,7 @@
<section> <section>
<h2>CG-SELECT</h2> <h2>CG-SELECT</h2>
<a href="../src/index.html">-- Вернуться к примеру --</a> <a href="/src/page/index.html">-- Вернуться к примеру --</a>
<p> <p>
Этот компонент предлагает более гибкую настройку и использование селекта. Так же Этот компонент предлагает более гибкую настройку и использование селекта. Так же
реализованны методы взаимодействия с селектом. реализованны методы взаимодействия с селектом.

View File

@ -1,10 +1,11 @@
{ {
"name": "dropdown-list", "name": "cg-select",
"version": "0.0.1", "version": "0.1.12",
"description": "", "description": "Select control created with JS for use in JS/React",
"author": "MaxOvs19",
"scripts": { "scripts": {
"start": "parcel src/index.html -p 4500 --open ", "start": "parcel src/page/index.html -p 4500 --open ",
"build": "parcel build ./src/index.html --public-url /", "build": "parcel build ./src/page/index.html --public-url",
"deploy": "gh-pages -d dist", "deploy": "gh-pages -d dist",
"predeploy": "npm run build" "predeploy": "npm run build"
}, },
@ -12,7 +13,7 @@
"type": "git", "type": "git",
"url": "git+https://github.com/MaxOvs19/cg-select.git" "url": "git+https://github.com/MaxOvs19/cg-select.git"
}, },
"author": "MaxOvs19",
"license": "ISC", "license": "ISC",
"bugs": { "bugs": {
"url": "https://github.com/MaxOvs19/cg-select/issues" "url": "https://github.com/MaxOvs19/cg-select/issues"

View File

@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cg-Select</title> <title>Cg-Select</title>
<link href="style/main.scss" rel="stylesheet" /> <link href="/src/style/main.scss" rel="stylesheet" />
</head> </head>
<body> <body>
<div class="container"> <div class="container">
@ -18,7 +18,7 @@
<nav> <nav>
<ul class="navlist"> <ul class="navlist">
<li><a href="">Home</a></li> <li><a href="">Home</a></li>
<li><a href="../documentation/index.html">Documentation</a></li> <li><a href="/documentation/index.html">Documentation</a></li>
</ul> </ul>
</nav> </nav>
</header> </header>
@ -259,5 +259,5 @@
</div> </div>
</div> </div>
</body> </body>
<script type="module" src="/src/index.js"></script> <script type="module" src="index.js"></script>
</html> </html>

View File

@ -1,5 +1,5 @@
import { DropDown } from './cg-dropdown'; import { DropDown } from '../cg-select';
import './exemple-page'; import './example';
// ------------------------------Обычный селект-------------------- // ------------------------------Обычный селект--------------------
const dropdown = new DropDown({ const dropdown = new DropDown({