quasar-app-extension-sellmate-ui-kit 3.12.6 → 3.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -33
- package/package.json +2 -2
- package/src/boot/register.js +6 -6
- package/src/index.js +52 -52
- package/src/install.js +20 -20
- package/src/prompts.js +44 -44
- package/src/uninstall.js +44 -44
package/README.md
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
# Quasar App Extension sellmate-ui-kit
|
|
2
|
-
|
|
3
|
-
> Add a short description of your App Extension. What does it do? How is it beneficial? Why would someone want to use it?
|
|
4
|
-
|
|
5
|
-
[](https://www.npmjs.com/package/quasar-app-extension-sellmate-ui-kit)
|
|
6
|
-
[](https://www.npmjs.com/package/quasar-app-extension-sellmate-ui-kit)
|
|
7
|
-
|
|
8
|
-
# Install
|
|
9
|
-
```bash
|
|
10
|
-
quasar ext add sellmate-ui-kit
|
|
11
|
-
```
|
|
12
|
-
Quasar CLI will retrieve it from NPM and install the extension.
|
|
13
|
-
|
|
14
|
-
## Prompts
|
|
15
|
-
|
|
16
|
-
> If your app extension uses prompts, explain them here, otherwise remove this section and remove prompts.js file.
|
|
17
|
-
|
|
18
|
-
# Uninstall
|
|
19
|
-
```bash
|
|
20
|
-
quasar ext remove sellmate-ui-kit
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
# Info
|
|
24
|
-
> Add longer information here that will help the user of your app extension.
|
|
25
|
-
|
|
26
|
-
# Other Info
|
|
27
|
-
> Add other information that's not as important to know
|
|
28
|
-
|
|
29
|
-
# Donate
|
|
30
|
-
If you appreciate the work that went into this App Extension, please consider [donating to Quasar](https://donate.quasar.dev).
|
|
31
|
-
|
|
32
|
-
# License
|
|
33
|
-
MIT (c) Sellmate Dev Team <dev@sellmate.co.kr>
|
|
1
|
+
# Quasar App Extension sellmate-ui-kit
|
|
2
|
+
|
|
3
|
+
> Add a short description of your App Extension. What does it do? How is it beneficial? Why would someone want to use it?
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/quasar-app-extension-sellmate-ui-kit)
|
|
6
|
+
[](https://www.npmjs.com/package/quasar-app-extension-sellmate-ui-kit)
|
|
7
|
+
|
|
8
|
+
# Install
|
|
9
|
+
```bash
|
|
10
|
+
quasar ext add sellmate-ui-kit
|
|
11
|
+
```
|
|
12
|
+
Quasar CLI will retrieve it from NPM and install the extension.
|
|
13
|
+
|
|
14
|
+
## Prompts
|
|
15
|
+
|
|
16
|
+
> If your app extension uses prompts, explain them here, otherwise remove this section and remove prompts.js file.
|
|
17
|
+
|
|
18
|
+
# Uninstall
|
|
19
|
+
```bash
|
|
20
|
+
quasar ext remove sellmate-ui-kit
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
# Info
|
|
24
|
+
> Add longer information here that will help the user of your app extension.
|
|
25
|
+
|
|
26
|
+
# Other Info
|
|
27
|
+
> Add other information that's not as important to know
|
|
28
|
+
|
|
29
|
+
# Donate
|
|
30
|
+
If you appreciate the work that went into this App Extension, please consider [donating to Quasar](https://donate.quasar.dev).
|
|
31
|
+
|
|
32
|
+
# License
|
|
33
|
+
MIT (c) Sellmate Dev Team <dev@sellmate.co.kr>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quasar-app-extension-sellmate-ui-kit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0",
|
|
4
4
|
"description": "Sellmate UI Kit Extension",
|
|
5
5
|
"author": "Sellmate Dev Team <dev@sellmate.co.kr>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"bugs": "https://github.com/sellmate/quasar-ui-kit/issues",
|
|
13
13
|
"homepage": "",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"quasar-ui-sellmate-ui-kit": "^3.
|
|
15
|
+
"quasar-ui-sellmate-ui-kit": "^3.13.0"
|
|
16
16
|
},
|
|
17
17
|
"engines": {
|
|
18
18
|
"node": ">= 8.9.0",
|
package/src/boot/register.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { boot } from 'quasar/wrappers'
|
|
2
|
-
import VuePlugin from 'quasar-ui-sellmate-ui-kit'
|
|
3
|
-
|
|
4
|
-
export default boot(({ app }) => {
|
|
5
|
-
app.use(VuePlugin)
|
|
6
|
-
})
|
|
1
|
+
import { boot } from 'quasar/wrappers'
|
|
2
|
+
import VuePlugin from 'quasar-ui-sellmate-ui-kit'
|
|
3
|
+
|
|
4
|
+
export default boot(({ app }) => {
|
|
5
|
+
app.use(VuePlugin)
|
|
6
|
+
})
|
package/src/index.js
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Quasar App Extension index/runner script
|
|
3
|
-
* (runs on each dev/build)
|
|
4
|
-
*
|
|
5
|
-
* Docs: https://quasar.dev/app-extensions/development-guide/index-api
|
|
6
|
-
* API: https://github.com/quasarframework/quasar/blob/master/app/lib/app-extension/IndexAPI.js
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
function extendConf(conf, api) {
|
|
10
|
-
// register our boot file
|
|
11
|
-
conf.boot.push('~quasar-app-extension-sellmate-ui-kit/src/boot/register.js')
|
|
12
|
-
|
|
13
|
-
if (api.hasWebpack) {
|
|
14
|
-
// make sure app extension files & ui package gets transpiled
|
|
15
|
-
const transpileTarget = (
|
|
16
|
-
// make sure app extension files & ui package gets transpiled
|
|
17
|
-
conf.build.webpackTranspileDependencies // q/app-webpack >= v4
|
|
18
|
-
|| conf.build.transpileDependencies // q/app-webpack v3
|
|
19
|
-
)
|
|
20
|
-
transpileTarget.push(/quasar-app-extension-sellmate-ui-kit[\\/]src/)
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
// make sure the stylesheet goes through webpack to avoid SSR issues
|
|
24
|
-
conf.css.push('~quasar-ui-sellmate-ui-kit/src/index.scss')
|
|
25
|
-
|
|
26
|
-
conf.framework.directives.push('ClosePopup');
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
module.exports = function (api) {
|
|
30
|
-
// Quasar compatibility check; you may need
|
|
31
|
-
// hard dependencies, as in a minimum version of the "quasar"
|
|
32
|
-
// package or a minimum version of "@quasar/app" CLI
|
|
33
|
-
api.compatibleWith('quasar', '^2.0.0')
|
|
34
|
-
|
|
35
|
-
if (api.hasVite) {
|
|
36
|
-
api.compatibleWith('@quasar/app-vite', '^1.5.0 || ^2.0.0 || ^2.0.0-beta.5')
|
|
37
|
-
}
|
|
38
|
-
else if (api.hasWebpack) {
|
|
39
|
-
api.compatibleWith('@quasar/app-webpack', '^3.10.0 || ^4.0.0')
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
// Uncomment the line below if you provide a JSON API for your component
|
|
44
|
-
// api.registerDescribeApi('SellmateUI', '~quasar-ui-sellmate-ui-kit/src/components/SellmateUI.json')
|
|
45
|
-
|
|
46
|
-
// Uncomment the line below if you provide a JSON API for your directive
|
|
47
|
-
// api.registerDescribeApi('sellmate', '~quasar-ui-sellmate-ui-kit/src/directives/sellmate.json')
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
// We extend /quasar.conf.js
|
|
51
|
-
api.extendQuasarConf(extendConf)
|
|
52
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Quasar App Extension index/runner script
|
|
3
|
+
* (runs on each dev/build)
|
|
4
|
+
*
|
|
5
|
+
* Docs: https://quasar.dev/app-extensions/development-guide/index-api
|
|
6
|
+
* API: https://github.com/quasarframework/quasar/blob/master/app/lib/app-extension/IndexAPI.js
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
function extendConf(conf, api) {
|
|
10
|
+
// register our boot file
|
|
11
|
+
conf.boot.push('~quasar-app-extension-sellmate-ui-kit/src/boot/register.js')
|
|
12
|
+
|
|
13
|
+
if (api.hasWebpack) {
|
|
14
|
+
// make sure app extension files & ui package gets transpiled
|
|
15
|
+
const transpileTarget = (
|
|
16
|
+
// make sure app extension files & ui package gets transpiled
|
|
17
|
+
conf.build.webpackTranspileDependencies // q/app-webpack >= v4
|
|
18
|
+
|| conf.build.transpileDependencies // q/app-webpack v3
|
|
19
|
+
)
|
|
20
|
+
transpileTarget.push(/quasar-app-extension-sellmate-ui-kit[\\/]src/)
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// make sure the stylesheet goes through webpack to avoid SSR issues
|
|
24
|
+
conf.css.push('~quasar-ui-sellmate-ui-kit/src/index.scss')
|
|
25
|
+
|
|
26
|
+
conf.framework.directives.push('ClosePopup');
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
module.exports = function (api) {
|
|
30
|
+
// Quasar compatibility check; you may need
|
|
31
|
+
// hard dependencies, as in a minimum version of the "quasar"
|
|
32
|
+
// package or a minimum version of "@quasar/app" CLI
|
|
33
|
+
api.compatibleWith('quasar', '^2.0.0')
|
|
34
|
+
|
|
35
|
+
if (api.hasVite) {
|
|
36
|
+
api.compatibleWith('@quasar/app-vite', '^1.5.0 || ^2.0.0 || ^2.0.0-beta.5')
|
|
37
|
+
}
|
|
38
|
+
else if (api.hasWebpack) {
|
|
39
|
+
api.compatibleWith('@quasar/app-webpack', '^3.10.0 || ^4.0.0')
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
// Uncomment the line below if you provide a JSON API for your component
|
|
44
|
+
// api.registerDescribeApi('SellmateUI', '~quasar-ui-sellmate-ui-kit/src/components/SellmateUI.json')
|
|
45
|
+
|
|
46
|
+
// Uncomment the line below if you provide a JSON API for your directive
|
|
47
|
+
// api.registerDescribeApi('sellmate', '~quasar-ui-sellmate-ui-kit/src/directives/sellmate.json')
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
// We extend /quasar.conf.js
|
|
51
|
+
api.extendQuasarConf(extendConf)
|
|
52
|
+
}
|
package/src/install.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Quasar App Extension install script
|
|
3
|
-
*
|
|
4
|
-
* Docs: https://quasar.dev/app-extensions/development-guide/install-api
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
module.exports = function (api) {
|
|
9
|
-
// Quasar compatibility check; you may need
|
|
10
|
-
// hard dependencies, as in a minimum version of the "quasar"
|
|
11
|
-
// package or a minimum version of "@quasar/app-*" CLI
|
|
12
|
-
api.compatibleWith('quasar', '^2.0.0')
|
|
13
|
-
|
|
14
|
-
if (api.hasVite) {
|
|
15
|
-
api.compatibleWith('@quasar/app-vite', '^1.0.0 || ^2.0.0 || ^2.0.0-beta.5')
|
|
16
|
-
}
|
|
17
|
-
else if (api.hasWebpack) {
|
|
18
|
-
api.compatibleWith('@quasar/app-webpack', '^3.10.0 || ^4.0.0')
|
|
19
|
-
}
|
|
20
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Quasar App Extension install script
|
|
3
|
+
*
|
|
4
|
+
* Docs: https://quasar.dev/app-extensions/development-guide/install-api
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
module.exports = function (api) {
|
|
9
|
+
// Quasar compatibility check; you may need
|
|
10
|
+
// hard dependencies, as in a minimum version of the "quasar"
|
|
11
|
+
// package or a minimum version of "@quasar/app-*" CLI
|
|
12
|
+
api.compatibleWith('quasar', '^2.0.0')
|
|
13
|
+
|
|
14
|
+
if (api.hasVite) {
|
|
15
|
+
api.compatibleWith('@quasar/app-vite', '^1.0.0 || ^2.0.0 || ^2.0.0-beta.5')
|
|
16
|
+
}
|
|
17
|
+
else if (api.hasWebpack) {
|
|
18
|
+
api.compatibleWith('@quasar/app-webpack', '^3.10.0 || ^4.0.0')
|
|
19
|
+
}
|
|
20
|
+
}
|
package/src/prompts.js
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Quasar App Extension prompts script
|
|
3
|
-
*
|
|
4
|
-
* Docs: https://quasar.dev/app-extensions/development-guide/prompts-api
|
|
5
|
-
*
|
|
6
|
-
* Inquirer prompts
|
|
7
|
-
* (answers are available as "api.prompts" in the other scripts)
|
|
8
|
-
* https://www.npmjs.com/package/inquirer#question
|
|
9
|
-
*
|
|
10
|
-
* Example:
|
|
11
|
-
|
|
12
|
-
return [
|
|
13
|
-
{
|
|
14
|
-
name: 'name',
|
|
15
|
-
type: 'string',
|
|
16
|
-
required: true,
|
|
17
|
-
message: 'Quasar CLI Extension name (without prefix)',
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
name: 'preset',
|
|
21
|
-
type: 'checkbox',
|
|
22
|
-
message: 'Check the features needed for your project:',
|
|
23
|
-
choices: [
|
|
24
|
-
{
|
|
25
|
-
name: 'Install script',
|
|
26
|
-
value: 'install'
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
name: 'Prompts script',
|
|
30
|
-
value: 'prompts'
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
name: 'Uninstall script',
|
|
34
|
-
value: 'uninstall'
|
|
35
|
-
}
|
|
36
|
-
]
|
|
37
|
-
}
|
|
38
|
-
]
|
|
39
|
-
|
|
40
|
-
*/
|
|
41
|
-
|
|
42
|
-
module.exports = function (api) {
|
|
43
|
-
return []
|
|
44
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Quasar App Extension prompts script
|
|
3
|
+
*
|
|
4
|
+
* Docs: https://quasar.dev/app-extensions/development-guide/prompts-api
|
|
5
|
+
*
|
|
6
|
+
* Inquirer prompts
|
|
7
|
+
* (answers are available as "api.prompts" in the other scripts)
|
|
8
|
+
* https://www.npmjs.com/package/inquirer#question
|
|
9
|
+
*
|
|
10
|
+
* Example:
|
|
11
|
+
|
|
12
|
+
return [
|
|
13
|
+
{
|
|
14
|
+
name: 'name',
|
|
15
|
+
type: 'string',
|
|
16
|
+
required: true,
|
|
17
|
+
message: 'Quasar CLI Extension name (without prefix)',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: 'preset',
|
|
21
|
+
type: 'checkbox',
|
|
22
|
+
message: 'Check the features needed for your project:',
|
|
23
|
+
choices: [
|
|
24
|
+
{
|
|
25
|
+
name: 'Install script',
|
|
26
|
+
value: 'install'
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'Prompts script',
|
|
30
|
+
value: 'prompts'
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'Uninstall script',
|
|
34
|
+
value: 'uninstall'
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
module.exports = function (api) {
|
|
43
|
+
return []
|
|
44
|
+
}
|
package/src/uninstall.js
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Quasar App Extension prompts script
|
|
3
|
-
*
|
|
4
|
-
* Docs: https://quasar.dev/app-extensions/development-guide/prompts-api
|
|
5
|
-
*
|
|
6
|
-
* Inquirer prompts
|
|
7
|
-
* (answers are available as "api.prompts" in the other scripts)
|
|
8
|
-
* https://www.npmjs.com/package/inquirer#question
|
|
9
|
-
*
|
|
10
|
-
* Example:
|
|
11
|
-
|
|
12
|
-
return [
|
|
13
|
-
{
|
|
14
|
-
name: 'name',
|
|
15
|
-
type: 'string',
|
|
16
|
-
required: true,
|
|
17
|
-
message: 'Quasar CLI Extension name (without prefix)',
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
name: 'preset',
|
|
21
|
-
type: 'checkbox',
|
|
22
|
-
message: 'Check the features needed for your project:',
|
|
23
|
-
choices: [
|
|
24
|
-
{
|
|
25
|
-
name: 'Install script',
|
|
26
|
-
value: 'install'
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
name: 'Prompts script',
|
|
30
|
-
value: 'prompts'
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
name: 'Uninstall script',
|
|
34
|
-
value: 'uninstall'
|
|
35
|
-
}
|
|
36
|
-
]
|
|
37
|
-
}
|
|
38
|
-
]
|
|
39
|
-
|
|
40
|
-
*/
|
|
41
|
-
|
|
42
|
-
module.exports = function (api) {
|
|
43
|
-
return []
|
|
44
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Quasar App Extension prompts script
|
|
3
|
+
*
|
|
4
|
+
* Docs: https://quasar.dev/app-extensions/development-guide/prompts-api
|
|
5
|
+
*
|
|
6
|
+
* Inquirer prompts
|
|
7
|
+
* (answers are available as "api.prompts" in the other scripts)
|
|
8
|
+
* https://www.npmjs.com/package/inquirer#question
|
|
9
|
+
*
|
|
10
|
+
* Example:
|
|
11
|
+
|
|
12
|
+
return [
|
|
13
|
+
{
|
|
14
|
+
name: 'name',
|
|
15
|
+
type: 'string',
|
|
16
|
+
required: true,
|
|
17
|
+
message: 'Quasar CLI Extension name (without prefix)',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: 'preset',
|
|
21
|
+
type: 'checkbox',
|
|
22
|
+
message: 'Check the features needed for your project:',
|
|
23
|
+
choices: [
|
|
24
|
+
{
|
|
25
|
+
name: 'Install script',
|
|
26
|
+
value: 'install'
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'Prompts script',
|
|
30
|
+
value: 'prompts'
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'Uninstall script',
|
|
34
|
+
value: 'uninstall'
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
module.exports = function (api) {
|
|
43
|
+
return []
|
|
44
|
+
}
|