Compare commits
No commits in common. "197a5f25c8134e0d75324bdbc68876765a28205a" and "635deb687863a0883b772fdaa286e694d77b32aa" have entirely different histories.
197a5f25c8
...
635deb6878
@ -63,7 +63,3 @@ Tested in JS and React. Errors in work in React applications are revealed.
|
|||||||
### 00.03.2023 - update 0.2.6
|
### 00.03.2023 - update 0.2.6
|
||||||
|
|
||||||
- Added new theme creation mode.
|
- Added new theme creation mode.
|
||||||
|
|
||||||
### 00.03.2023 - update 0.2.7
|
|
||||||
|
|
||||||
- Switch to new webpack project builder.
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# CG-SELECT
|
# CG-SELECT
|
||||||
|
|
||||||
## version ~ 0.2.7
|
## version ~ 0.2.6
|
||||||
|
|
||||||
<a href="https://github.com/apuc/cg-select/blob/main/READMERU.md">ЧИТАТЬ НА РУССКОМ</a>
|
<a href="https://github.com/apuc/cg-select/blob/main/READMERU.md">ЧИТАТЬ НА РУССКОМ</a>
|
||||||
|
|
||||||
@ -90,7 +90,7 @@ All documentation on CG-SELECT is located in the folder of the same name. The do
|
|||||||
| Application Compatibility | JS | React | Angular | Vue |
|
| Application Compatibility | JS | React | Angular | Vue |
|
||||||
| ------------------------- | :----------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------: | :---------------------------------------------------------------------: |
|
| ------------------------- | :----------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------: | :---------------------------------------------------------------------: |
|
||||||
| CG-SELECT | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) |
|
| CG-SELECT | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/yes.png) ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) | ![image](https://github.com/apuc/cg-select/blob/main/src/images/no.png) |
|
||||||
| Comment | Tested in Js applications and it works. | Works only with a crutch in the form `setTimeout()` | not yet available | not yet available |
|
| Comment | Tested in Js applications and it works. | Works only with a crutch in the form `setTimeout()` | not yet available | not yet available |
|
||||||
|
|
||||||
## History
|
## History
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# CG-SELECT
|
# CG-SELECT
|
||||||
|
|
||||||
## Версия ~ 0.2.7
|
## Версия ~ 0.2.6
|
||||||
|
|
||||||
<a href="https://github.com/apuc/cg-select/blob/main/README.md">English README</a>
|
<a href="https://github.com/apuc/cg-select/blob/main/README.md">English README</a>
|
||||||
|
|
||||||
|
3
index.js
3
index.js
@ -1,6 +1,3 @@
|
|||||||
import { CGSelect } from './src/cg-select';
|
import { CGSelect } from './src/cg-select';
|
||||||
|
|
||||||
let select = new CGSelect();
|
|
||||||
select.disabled(true);
|
|
||||||
|
|
||||||
export default CGSelect;
|
export default CGSelect;
|
||||||
|
9854
package-lock.json
generated
9854
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
28
package.json
28
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "cg-select",
|
"name": "cg-select",
|
||||||
"version": "0.2.7",
|
"version": "0.2.6",
|
||||||
"source": "index.js",
|
"source": "index.js",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"description": "Feature rich Select control for React/JS with multiselect, autocomplete and styling",
|
"description": "Feature rich Select control for React/JS with multiselect, autocomplete and styling",
|
||||||
@ -10,9 +10,10 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://cg-select.itguild.info",
|
"homepage": "https://cg-select.itguild.info",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "npx webpack-dev-server --mode development",
|
"watch": "parcel watch",
|
||||||
"dev": "npx webpack --mode development",
|
"build": "parcel build",
|
||||||
"build": "npx webpack --mode production"
|
"deploy": "gh-pages -d dist",
|
||||||
|
"predeploy": "npm run build"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -23,22 +24,17 @@
|
|||||||
"url": "https://github.com/apuc/cg-select/issues"
|
"url": "https://github.com/apuc/cg-select/issues"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@parcel/transformer-sass": "^2.7.0",
|
||||||
"jsdoc": "^4.0.0",
|
"jsdoc": "^4.0.0",
|
||||||
"prettier": "^2.7.1",
|
"parcel": "^2.7.0",
|
||||||
"sass": "^1.60.0",
|
"prettier": "^2.7.1"
|
||||||
"sass-loader": "^13.2.2",
|
|
||||||
"ts-loader": "^9.4.2",
|
|
||||||
"typedoc": "^0.23.28",
|
|
||||||
"typescript": "^5.0.2",
|
|
||||||
"webpack": "^5.77.0"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@parcel/optimizer-css": "^2.8.0",
|
||||||
"@types/prettier": "^2.7.2",
|
"@types/prettier": "^2.7.2",
|
||||||
"css-loader": "^6.7.3",
|
"gh-pages": "^4.0.0",
|
||||||
"html-webpack-plugin": "^5.5.0",
|
"typedoc": "^0.23.24",
|
||||||
"style-loader": "^3.3.2",
|
"typescript": "^4.9.4"
|
||||||
"webpack-cli": "^5.0.1",
|
|
||||||
"webpack-dev-server": "^4.13.1"
|
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"select",
|
"select",
|
||||||
|
@ -6,14 +6,18 @@
|
|||||||
/* Modules */
|
/* Modules */
|
||||||
"module": "commonjs" /* Specify what module code is generated. */,
|
"module": "commonjs" /* Specify what module code is generated. */,
|
||||||
"rootDir": "./" /* Specify the root folder within your source files. */,
|
"rootDir": "./" /* Specify the root folder within your source files. */,
|
||||||
|
// "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
||||||
"baseUrl": "./src" /* Specify the base directory to resolve non-relative module names. */,
|
"baseUrl": "./src" /* Specify the base directory to resolve non-relative module names. */,
|
||||||
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
|
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
|
||||||
"allowSyntheticDefaultImports": true /* Allow 'import x from y' when a module doesn't have a default export. */,
|
"allowSyntheticDefaultImports": true /* Allow 'import x from y' when a module doesn't have a default export. */,
|
||||||
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
|
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
|
||||||
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
||||||
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
|
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
|
||||||
"moduleResolution": "node",
|
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
|
||||||
|
/* Completeness */
|
||||||
|
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
||||||
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,37 +0,0 @@
|
|||||||
const path = require('path');
|
|
||||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
entry: './index.js',
|
|
||||||
output: {
|
|
||||||
path: path.resolve(__dirname, 'dist'),
|
|
||||||
filename: 'index.js',
|
|
||||||
clean: true,
|
|
||||||
},
|
|
||||||
// devServer: {
|
|
||||||
// open: true,
|
|
||||||
// port: 5000,
|
|
||||||
// },
|
|
||||||
module: {
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
test: /\.tsx?$/,
|
|
||||||
use: 'ts-loader',
|
|
||||||
exclude: /node_modules/,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.s[ac]ss$/i,
|
|
||||||
use: ['style-loader', 'css-loader', 'sass-loader'],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
resolve: {
|
|
||||||
extensions: ['.tsx', '.ts', '.js'],
|
|
||||||
},
|
|
||||||
// plugins: [
|
|
||||||
// new HtmlWebpackPlugin({
|
|
||||||
// template: path.resolve(__dirname, './test/index.html'),
|
|
||||||
// filename: 'index.html',
|
|
||||||
// }),
|
|
||||||
// ],
|
|
||||||
};
|
|
Loading…
x
Reference in New Issue
Block a user