@geira/iconfont 0.0.24 → 0.2.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 +90 -90
- package/package.json +62 -62
- package/src/fonts/GeiraIcons-Regular.eot +0 -0
- package/src/fonts/GeiraIcons-Regular.ttf +0 -0
- package/src/fonts/GeiraIcons-Regular.woff +0 -0
- package/src/fonts/GeiraIcons-Regular.woff2 +0 -0
- package/src/index.html +43 -43
- package/src/js/data.js +231 -33
- package/src/js/data.json +1 -1
- package/src/js/flutter.txt +45 -4
- package/src/js/flutter2.txt +45 -4
- package/src/js/icons.json +231 -33
- package/src/scss/geira-icons.scss +4 -4
- package/src/usage.html +367 -367
- package/.idea/dictionaries/TheLeos.xml +0 -7
- package/.idea/iconfont.iml +0 -12
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -173
- package/dist/data.min.js +0 -2
- package/dist/data.min.js.map +0 -1
- package/dist/fonts/GeiraIcons-Regular.eot +0 -0
- package/dist/fonts/GeiraIcons-Regular.ttf +0 -0
- package/dist/fonts/GeiraIcons-Regular.woff +0 -0
- package/dist/fonts/GeiraIcons-Regular.woff2 +0 -0
- package/dist/geira-icons.min.css +0 -3
- package/dist/geira-icons.min.css.map +0 -1
- package/dist/geira-icons.min.js +0 -2
- package/dist/geira-icons.min.js.map +0 -1
- package/dist/geira-icons.scss +0 -150
- package/dist/icons.json +0 -944
- package/dist/images/favicon/android-chrome-192x192.png +0 -0
- package/dist/images/favicon/android-chrome-512x512.png +0 -0
- package/dist/images/favicon/apple-touch-icon.png +0 -0
- package/dist/images/favicon/browserconfig.xml +0 -9
- package/dist/images/favicon/favicon-16x16.png +0 -0
- package/dist/images/favicon/favicon-32x32.png +0 -0
- package/dist/images/favicon/favicon.ico +0 -0
- package/dist/images/favicon/mstile-150x150.png +0 -0
- package/dist/images/favicon/safari-pinned-tab.svg +0 -38
- package/dist/images/favicon/site.webmanifest +0 -19
- package/dist/index.html +0 -1
- package/dist/main.min.js +0 -2
- package/dist/main.min.js.map +0 -1
- package/dist/styles.min.css +0 -3
- package/dist/styles.min.css.map +0 -1
- package/dist/styles.min.js +0 -2
- package/dist/styles.min.js.map +0 -1
- package/dist/usage.html +0 -1
- package/dist/utils.min.js +0 -2
- package/dist/utils.min.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
# Geira Icon Font
|
|
2
|
-
|
|
3
|
-
Custom icon font for the Geira Appointments System.
|
|
4
|
-
|
|
5
|
-
## Demo
|
|
6
|
-
|
|
7
|
-
You can see the icons via the live demo at
|
|
8
|
-
|
|
9
|
-
## Installation
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
npm install --save @geira/iconfont
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
## Usage
|
|
16
|
-
|
|
17
|
-
### CSS
|
|
18
|
-
|
|
19
|
-
Add the following tag inside the html `<head>` tag:
|
|
20
|
-
|
|
21
|
-
```html
|
|
22
|
-
<link href="node_components/@geira/iconfont/dist/geira-icons.min.css" rel="stylesheet">
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
### SCSS
|
|
26
|
-
|
|
27
|
-
Import the provided SCSS file in your main SCSS file, ex: `styles.scss`:
|
|
28
|
-
|
|
29
|
-
```scss
|
|
30
|
-
@import '~@geira/iconfont/dist/geira-icons.scss';
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Development
|
|
34
|
-
|
|
35
|
-
1. Clone repository.
|
|
36
|
-
|
|
37
|
-
2. Make some updates to the files at `/src`.
|
|
38
|
-
|
|
39
|
-
3. Depending on your flow you will want
|
|
40
|
-
|
|
41
|
-
a) compile by executing:
|
|
42
|
-
|
|
43
|
-
npm run build
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
npm run start
|
|
48
|
-
|
|
49
|
-
## Publish
|
|
50
|
-
|
|
51
|
-
1. Make the necessary updates to the source files.
|
|
52
|
-
|
|
53
|
-
2. Bump the `package.json` version property, ex: from `0.0.1` to `0.0.2`.
|
|
54
|
-
|
|
55
|
-
3. Commit changes.
|
|
56
|
-
|
|
57
|
-
4. Add the above new version tag to the commit, ex: `0.0.2`.
|
|
58
|
-
|
|
59
|
-
5. Push changes to git repository.
|
|
60
|
-
|
|
61
|
-
6. Publish the new version to npm by executing in a console:
|
|
62
|
-
|
|
63
|
-
npm publish
|
|
64
|
-
|
|
65
|
-
## License
|
|
66
|
-
|
|
67
|
-
The MIT License (MIT)
|
|
68
|
-
|
|
69
|
-
Copyright (c) Leo Roderick<br>
|
|
70
|
-
Copyright (c) Diosney Sarmiento<br>
|
|
71
|
-
Copyright (c) Jose Mojena<br>
|
|
72
|
-
Copyright (c) Liontude, LLC
|
|
73
|
-
|
|
74
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
75
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
76
|
-
in the Software without restriction, including without limitation the rights
|
|
77
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
78
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
79
|
-
furnished to do so, subject to the following conditions:
|
|
80
|
-
|
|
81
|
-
The above copyright notice and this permission notice shall be included in
|
|
82
|
-
all copies or substantial portions of the Software.
|
|
83
|
-
|
|
84
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
85
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
86
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
87
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
88
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
89
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
90
|
-
THE SOFTWARE.
|
|
1
|
+
# Geira Icon Font
|
|
2
|
+
|
|
3
|
+
Custom icon font for the Geira Appointments System.
|
|
4
|
+
|
|
5
|
+
## Demo
|
|
6
|
+
|
|
7
|
+
You can see the icons via the live demo at https://icons.geira.com.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
npm install --save @geira/iconfont
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
### CSS
|
|
18
|
+
|
|
19
|
+
Add the following tag inside the html `<head>` tag:
|
|
20
|
+
|
|
21
|
+
```html
|
|
22
|
+
<link href="node_components/@geira/iconfont/dist/geira-icons.min.css" rel="stylesheet">
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### SCSS
|
|
26
|
+
|
|
27
|
+
Import the provided SCSS file in your main SCSS file, ex: `styles.scss`:
|
|
28
|
+
|
|
29
|
+
```scss
|
|
30
|
+
@import '~@geira/iconfont/dist/geira-icons.scss';
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Development
|
|
34
|
+
|
|
35
|
+
1. Clone repository.
|
|
36
|
+
|
|
37
|
+
2. Make some updates to the files at `/src`.
|
|
38
|
+
|
|
39
|
+
3. Depending on your flow you will want
|
|
40
|
+
|
|
41
|
+
a) compile by executing:
|
|
42
|
+
|
|
43
|
+
npm run build
|
|
44
|
+
|
|
45
|
+
b) or start the dev server:
|
|
46
|
+
|
|
47
|
+
npm run start
|
|
48
|
+
|
|
49
|
+
## Publish
|
|
50
|
+
|
|
51
|
+
1. Make the necessary updates to the source files.
|
|
52
|
+
|
|
53
|
+
2. Bump the `package.json` version property, ex: from `0.0.1` to `0.0.2`.
|
|
54
|
+
|
|
55
|
+
3. Commit changes.
|
|
56
|
+
|
|
57
|
+
4. Add the above new version tag to the commit, ex: `0.0.2`.
|
|
58
|
+
|
|
59
|
+
5. Push changes to git repository.
|
|
60
|
+
|
|
61
|
+
6. Publish the new version to npm by executing in a console:
|
|
62
|
+
|
|
63
|
+
npm publish
|
|
64
|
+
|
|
65
|
+
## License
|
|
66
|
+
|
|
67
|
+
The MIT License (MIT)
|
|
68
|
+
|
|
69
|
+
Copyright (c) Leo Roderick<br>
|
|
70
|
+
Copyright (c) Diosney Sarmiento<br>
|
|
71
|
+
Copyright (c) Jose Mojena<br>
|
|
72
|
+
Copyright (c) Liontude, LLC
|
|
73
|
+
|
|
74
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
75
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
76
|
+
in the Software without restriction, including without limitation the rights
|
|
77
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
78
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
79
|
+
furnished to do so, subject to the following conditions:
|
|
80
|
+
|
|
81
|
+
The above copyright notice and this permission notice shall be included in
|
|
82
|
+
all copies or substantial portions of the Software.
|
|
83
|
+
|
|
84
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
85
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
86
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
87
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
88
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
89
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
90
|
+
THE SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@geira/iconfont",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "Geira Icon Font",
|
|
5
|
-
"main": "dist/geira-icons.min.css",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prebuild": "npm run process-iconfont",
|
|
8
|
-
"build": "webpack",
|
|
9
|
-
"prestart": "npm run process-iconfont",
|
|
10
|
-
"start": "webpack-dev-server --mode development --open",
|
|
11
|
-
"prepublish": "npm run process-iconfont && npm run build",
|
|
12
|
-
"process-iconfont": "node tools/process-iconfont",
|
|
13
|
-
"generate-json": "node tools/generate-json-icons",
|
|
14
|
-
"generate-flutter": "node tools/generate-flutter",
|
|
15
|
-
"generate-flutter2": "node tools/generate-flutter2"
|
|
16
|
-
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"geira",
|
|
19
|
-
"icon",
|
|
20
|
-
"font",
|
|
21
|
-
"sass",
|
|
22
|
-
"scss",
|
|
23
|
-
"css"
|
|
24
|
-
],
|
|
25
|
-
"license": "MIT",
|
|
26
|
-
"publishConfig": {
|
|
27
|
-
"access": "public"
|
|
28
|
-
},
|
|
29
|
-
"contributors": [
|
|
30
|
-
{
|
|
31
|
-
"name": "Leo Roderick",
|
|
32
|
-
"email": "lecaro@gmail.com"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"name": "Diosney Sarmiento",
|
|
36
|
-
"email": "diosney.s@gmail.com"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"name": "Jose Mojena",
|
|
40
|
-
"email": "jose31309@gmail.com"
|
|
41
|
-
}
|
|
42
|
-
],
|
|
43
|
-
"homepage": "
|
|
44
|
-
"bugs": "https://
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "https://
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"clean-webpack-plugin": "^3.0.0",
|
|
51
|
-
"copy-webpack-plugin": "^6.0.3",
|
|
52
|
-
"css-loader": "^3.6.0",
|
|
53
|
-
"html-webpack-plugin": "^4.3.0",
|
|
54
|
-
"mini-css-extract-plugin": "^0.9.0",
|
|
55
|
-
"sass": "^1.26.10",
|
|
56
|
-
"sass-loader": "^9.0.2",
|
|
57
|
-
"style-loader": "^1.2.1",
|
|
58
|
-
"webpack": "^4.43.0",
|
|
59
|
-
"webpack-cli": "^3.3.12",
|
|
60
|
-
"webpack-dev-server": "^3.11.0"
|
|
61
|
-
}
|
|
62
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@geira/iconfont",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Geira Icon Font",
|
|
5
|
+
"main": "dist/geira-icons.min.css",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prebuild": "npm run process-iconfont",
|
|
8
|
+
"build": "webpack",
|
|
9
|
+
"prestart": "npm run process-iconfont",
|
|
10
|
+
"start": "webpack-dev-server --mode development --open",
|
|
11
|
+
"prepublish": "npm run process-iconfont && npm run build",
|
|
12
|
+
"process-iconfont": "node tools/process-iconfont",
|
|
13
|
+
"generate-json": "node tools/generate-json-icons",
|
|
14
|
+
"generate-flutter": "node tools/generate-flutter",
|
|
15
|
+
"generate-flutter2": "node tools/generate-flutter2"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"geira",
|
|
19
|
+
"icon",
|
|
20
|
+
"font",
|
|
21
|
+
"sass",
|
|
22
|
+
"scss",
|
|
23
|
+
"css"
|
|
24
|
+
],
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"contributors": [
|
|
30
|
+
{
|
|
31
|
+
"name": "Leo Roderick",
|
|
32
|
+
"email": "lecaro@gmail.com"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "Diosney Sarmiento",
|
|
36
|
+
"email": "diosney.s@gmail.com"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "Jose Mojena",
|
|
40
|
+
"email": "jose31309@gmail.com"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"homepage": "https://icons.geira.com",
|
|
44
|
+
"bugs": "https://github.com/liontude/geira-icons-tool/issues",
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/liontude/geira-icons-tool"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"clean-webpack-plugin": "^3.0.0",
|
|
51
|
+
"copy-webpack-plugin": "^6.0.3",
|
|
52
|
+
"css-loader": "^3.6.0",
|
|
53
|
+
"html-webpack-plugin": "^4.3.0",
|
|
54
|
+
"mini-css-extract-plugin": "^0.9.0",
|
|
55
|
+
"sass": "^1.26.10",
|
|
56
|
+
"sass-loader": "^9.0.2",
|
|
57
|
+
"style-loader": "^1.2.1",
|
|
58
|
+
"webpack": "^4.43.0",
|
|
59
|
+
"webpack-cli": "^3.3.12",
|
|
60
|
+
"webpack-dev-server": "^3.11.0"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/src/index.html
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<title>Geira Icons</title>
|
|
6
|
-
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png">
|
|
7
|
-
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
|
|
8
|
-
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
|
|
9
|
-
<link rel="manifest" href="images/favicon/site.webmanifest">
|
|
10
|
-
<link rel="mask-icon" href="images/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
|
11
|
-
<meta name="msapplication-TileColor" content="#2b5797">
|
|
12
|
-
<meta name="theme-color" content="#ffffff">
|
|
13
|
-
</head>
|
|
14
|
-
<body>
|
|
15
|
-
<div class="main">
|
|
16
|
-
<header>
|
|
17
|
-
<h1>Geira Icons <a href="https://badge.fury.io/js/%40geira%2Ficonfont"><img src="https://badge.fury.io/js/%40geira%2Ficonfont.svg" alt="npm version" height="18"></a></h1>
|
|
18
|
-
|
|
19
|
-
<ul>
|
|
20
|
-
<li class="active"><a href="index.html">Icons <span id="quantity"></span></a></li>
|
|
21
|
-
<li><a href="usage.html">Usage</a></li>
|
|
22
|
-
</ul>
|
|
23
|
-
|
|
24
|
-
<ul class="logos">
|
|
25
|
-
<li><a href="https://www.npmjs.com/package/@geira/iconfont" target="_blank"><i class="geira-icons">npm</i></a></li>
|
|
26
|
-
<li><a href="https://
|
|
27
|
-
</ul>
|
|
28
|
-
</header>
|
|
29
|
-
<div class="container">
|
|
30
|
-
<div class="search">
|
|
31
|
-
<input type="text" id="match" placeholder="Search icon...">
|
|
32
|
-
</div>
|
|
33
|
-
<ul id="icons"></ul>
|
|
34
|
-
</div>
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
<footer>
|
|
39
|
-
<p>©
|
|
40
|
-
</footer>
|
|
41
|
-
</div>
|
|
42
|
-
</body>
|
|
43
|
-
</html>
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<title>Geira Icons</title>
|
|
6
|
+
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png">
|
|
7
|
+
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
|
|
8
|
+
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
|
|
9
|
+
<link rel="manifest" href="images/favicon/site.webmanifest">
|
|
10
|
+
<link rel="mask-icon" href="images/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
|
11
|
+
<meta name="msapplication-TileColor" content="#2b5797">
|
|
12
|
+
<meta name="theme-color" content="#ffffff">
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<div class="main">
|
|
16
|
+
<header>
|
|
17
|
+
<h1>Geira Icons <a href="https://badge.fury.io/js/%40geira%2Ficonfont"><img src="https://badge.fury.io/js/%40geira%2Ficonfont.svg" alt="npm version" height="18"></a></h1>
|
|
18
|
+
|
|
19
|
+
<ul>
|
|
20
|
+
<li class="active"><a href="index.html">Icons <span id="quantity"></span></a></li>
|
|
21
|
+
<li><a href="usage.html">Usage</a></li>
|
|
22
|
+
</ul>
|
|
23
|
+
|
|
24
|
+
<ul class="logos">
|
|
25
|
+
<li><a href="https://www.npmjs.com/package/@geira/iconfont" target="_blank"><i class="geira-icons">npm</i></a></li>
|
|
26
|
+
<li><a href="https://github.com/liontude/geira-icons-tool" target="_blank"><i class="geira-icons">github</i></a></li>
|
|
27
|
+
</ul>
|
|
28
|
+
</header>
|
|
29
|
+
<div class="container">
|
|
30
|
+
<div class="search">
|
|
31
|
+
<input type="text" id="match" placeholder="Search icon...">
|
|
32
|
+
</div>
|
|
33
|
+
<ul id="icons"></ul>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<footer>
|
|
39
|
+
<p>©2022 <a style="color: inherit; text-decoration: none;" href="https://liontude.com" target="_blank">Liontude</a>. All Rights Reserved. Released under MIT License</p>
|
|
40
|
+
</footer>
|
|
41
|
+
</div>
|
|
42
|
+
</body>
|
|
43
|
+
</html>
|