New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grapesjs-preset-webpage

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grapesjs-preset-webpage - npm Package Compare versions

Comparing version

to
1.0.1

dist/index.d.ts

45

package.json
{
"name": "grapesjs-preset-webpage",
"version": "0.1.11",
"version": "1.0.1",
"description": "GrapesJS Plugin Webpage Preset",
"main": "dist/grapesjs-preset-webpage.min.js",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint src",
"v:patch": "npm version --no-git-tag-version patch",
"build": "npm run v:patch && webpack --env.production && npm run build:css",
"start": "webpack-dev-server --open --progress --colors & npm run build:css -- -w",
"build:css": "node-sass src/style/main.scss dist/grapesjs-preset-webpage.min.css --output-style compressed"
"build": "grapesjs-cli build",
"start": "grapesjs-cli serve"
},

@@ -26,33 +26,6 @@ "repository": {

"license": "BSD-3-Clause",
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
},
"peerDependencies": {
"grapesjs": "0.x"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.8.3",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
},
"dependencies": {
"grapesjs-aviary": "^0.1.2",
"grapesjs-blocks-basic": "^0.1.7",
"grapesjs-component-countdown": "^0.1.2",
"grapesjs-navbar": "^0.1.5",
"grapesjs-plugin-export": "^0.1.5",
"grapesjs-plugin-filestack": "^0.1.1",
"grapesjs-plugin-forms": "^0.3.5"
"grapesjs": "^0.19.5",
"grapesjs-cli": "^3.0.1"
}
}

76

README.md
# GrapesJS Preset Webpage
[Demo](http://grapesjs.com/demo.html)
> From the v1.* we don't include other plugins in this one anymore, so if you need them, you have to include them manually in your project. If you want to replicate the editor from the demo, please check the source of the demo [here](https://github.com/artf/grapesjs/blob/gh-pages/demo.html)
## Summary
* Plugin name: **`gjs-preset-webpage`**
* Includes:
* `grapesjs-blocks-basic` Basic set of blocks
* `grapesjs-navbar` Simple navbar component
* `grapesjs-component-countdown` Simple countdown component
* `grapesjs-plugin-forms` Set of form components and blocks
* `grapesjs-aviary` Add the Aviary Image Editor
* `grapesjs-plugin-filestack` Add Filestack uploader in Asset Manager
* `grapesjs-plugin-export` Export GrapesJS templates in a zip archive
* Plugin name: **`grapesjs-preset-webpage`**
* Commands:

@@ -30,2 +26,3 @@ * `gjs-open-import-webpage` Opens a modal for the import

| `blocks` | Which blocks to add | `['link-block', 'quote', 'text-basic']` |
|`block`| Add custom block options, based on block id|`(blockId) => ({})`|
| `modalImportTitle` | Modal import title | `'Import'` |

@@ -38,27 +35,18 @@ | `modalImportButton` | Modal import button text | `'Import'` |

| `showStylesOnChange` | Show the Style Manager on component change | `true` |
| `textGeneral` | Text for General sector in Style Manager | `'General'` |
| `textLayout` | Text for Layout sector in Style Manager | `'Layout'` |
| `textTypography` | Text for Typography sector in Style Manager | `'Typography'` |
| `textDecorations` | Text for Decorations sector in Style Manager | `'Decorations'` |
| `textExtra` | Text for Extra sector in Style Manager | `'Extra'` |
| `customStyleManager` | Use custom set of sectors for the Style Manager | `[]` |
| `blocksBasicOpts` | `grapesjs-blocks-basic` plugin options. By setting this option to `false` will avoid loading the plugin | `{}` |
| `navbarOpts` | `grapesjs-navbar` plugin options. By setting this option to `false` will avoid loading the plugin | `{}` |
| `countdownOpts` | `grapesjs-component-countdown` plugin options. By setting this option to `false` will avoid loading the plugin | `{}` |
| `formsOpts` | `grapesjs-plugin-forms` plugin options. By setting this option to `false` will avoid loading the plugin | `{}` |
| `exportOpts` | `grapesjs-plugin-export` plugin options. By setting this option to `false` will avoid loading the plugin | `{}` |
| `aviaryOpts` | `grapesjs-aviary` plugin options. Aviary library should be included manually. By setting this option to `false` will avoid loading the plugin | `false` |
| `filestackOpts` | `grapesjs-plugin-filestack` plugin options. Filestack library should be included manually. By setting this option to `false` will avoid loading the plugin | `false` |
| `useCustomTheme` | Load custom preset theme | `true` |
## Download
```sh
$ npm i grapesjs-preset-webpage
```
* CDN
* `https://unpkg.com/grapesjs-preset-webpage`
* NPM
* `npm i grapesjs-preset-webpage`
* GIT
* `git clone https://github.com/artf/grapesjs-preset-webpage.git`
## Usage
Directly in the browser
```html
<link href="path/to/grapes.min.css" rel="stylesheet"/>
<link href="path/to/grapesjs-preset-webpage.min.css" rel="stylesheet"/>
<script src="path/to/grapes.min.js"></script>

@@ -73,5 +61,5 @@ <script src="path/to/grapesjs-preset-webpage.min.js"></script>

...
plugins: ['gjs-preset-webpage'],
plugins: ['grapesjs-preset-webpage'],
pluginsOpts: {
'gjs-preset-webpage': {
'grapesjs-preset-webpage': {
// options

@@ -84,2 +72,21 @@ }

Modern javascript
```js
import grapesjs from 'grapesjs';
import plugin from 'grapesjs-preset-webpage';
const editor = grapesjs.init({
container : '#gjs',
// ...
plugins: [plugin],
pluginsOpts: {
[plugin]: { /* options */ }
}
// or
plugins: [
editor => plugin(editor, { /* options */ }),
],
});
```
## Development

@@ -90,6 +97,7 @@

```sh
$ git clone git@github.com:artf/grapesjs-preset-webpage.git && cd grapesjs-preset-webpage
$ git clone https://github.com/artf/grapesjs-preset-webpage.git
$ cd grapesjs-blocks-basic
```
Install dependencies
Install it

@@ -100,12 +108,12 @@ ```sh

The plugin relies on GrapesJS via `peerDependencies`, so you have to install it manually (without adding it to package.json)
Start the dev server
```sh
$ npm i grapesjs --no-save
$ npm start
```
Start the dev server
Build before the commit. This will also increase the patch level version of the package
```sh
$ npm start
$ npm run build
```

@@ -112,0 +120,0 @@

Sorry, the diff of this file is not supported yet