@sankhyalabs/ezui 2.5.2 → 2.6.1
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/dist/cjs/ez-combo-box.cjs.entry.js +1 -1
- package/dist/cjs/ez-file-item.cjs.entry.js +77 -0
- package/dist/cjs/ez-icon.cjs.entry.js +1 -1
- package/dist/cjs/ez-list.cjs.entry.js +1 -1
- package/dist/cjs/ez-scroller.cjs.entry.js +1 -1
- package/dist/cjs/ezui.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/ez-combo-box/ez-combo-box.css +30 -16
- package/dist/collection/components/ez-file-item/ez-file-item.css +125 -0
- package/dist/collection/components/ez-file-item/ez-file-item.js +198 -0
- package/dist/collection/components/ez-icon/ez-icon.css +135 -109
- package/dist/collection/components/ez-list/ez-list.css +117 -64
- package/dist/collection/components/ez-scroller/ez-scroller.css +51 -21
- package/dist/custom-elements/index.d.ts +6 -0
- package/dist/custom-elements/index.js +78 -5
- package/dist/esm/ez-combo-box.entry.js +1 -1
- package/dist/esm/ez-file-item.entry.js +73 -0
- package/dist/esm/ez-icon.entry.js +1 -1
- package/dist/esm/ez-list.entry.js +1 -1
- package/dist/esm/ez-scroller.entry.js +1 -1
- package/dist/esm/ezui.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/p-1634c851.entry.js +1 -0
- package/dist/ezui/p-5e3306bc.entry.js +1 -0
- package/dist/ezui/p-5f4994de.entry.js +1 -0
- package/dist/ezui/p-93bcc628.entry.js +1 -0
- package/dist/ezui/{p-590d9e91.entry.js → p-99182174.entry.js} +1 -1
- package/dist/types/components/ez-file-item/ez-file-item.d.ts +36 -0
- package/dist/types/components.d.ts +61 -0
- package/package.json +3 -3
- package/react/components.d.ts +1 -0
- package/react/components.js +1 -0
- package/react/components.js.map +1 -1
- package/dist/ezui/p-3c1939f1.entry.js +0 -1
- package/dist/ezui/p-87ee59e8.entry.js +0 -1
- package/dist/ezui/p-bd9d791c.entry.js +0 -1
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
import { ElementIDUtils, StringUtils } from "@sankhyalabs/core";
|
|
2
|
+
import { Component, Element, Event, h, Prop, Watch } from "@stencil/core";
|
|
3
|
+
export class EzFileItem {
|
|
4
|
+
constructor() {
|
|
5
|
+
/**
|
|
6
|
+
* Define se o usuário pode remover o arquivo que está sendo apresentado.
|
|
7
|
+
*/
|
|
8
|
+
this.canRemove = true;
|
|
9
|
+
/**
|
|
10
|
+
* Percentual de carregamento do arquivo para o servidor.
|
|
11
|
+
*/
|
|
12
|
+
this.progress = 100;
|
|
13
|
+
}
|
|
14
|
+
observeProgress(newProgress) {
|
|
15
|
+
if (newProgress < 0 || newProgress > 100) {
|
|
16
|
+
throw new Error("O progresso de upload deve ser um número entre 0 e 100.");
|
|
17
|
+
}
|
|
18
|
+
this._element.style.setProperty("--ez-file-item--upload-progress", `${100 - newProgress}%`);
|
|
19
|
+
}
|
|
20
|
+
getFileSize() {
|
|
21
|
+
if (!this.fileSize || this.fileSize === 0) {
|
|
22
|
+
return "";
|
|
23
|
+
}
|
|
24
|
+
return `(${StringUtils.formatBytes(this.fileSize)})`;
|
|
25
|
+
}
|
|
26
|
+
getIconName() {
|
|
27
|
+
let extension;
|
|
28
|
+
if (this.iconName) {
|
|
29
|
+
return this.iconName;
|
|
30
|
+
}
|
|
31
|
+
if (this.fileName.indexOf(".") > -1) {
|
|
32
|
+
const index = this.fileName.lastIndexOf(".");
|
|
33
|
+
extension = this.fileName.substring(index);
|
|
34
|
+
}
|
|
35
|
+
return FILE_TYPE_ICONS[extension] || DEFAULT_FILE_TYPE_ICON;
|
|
36
|
+
}
|
|
37
|
+
render() {
|
|
38
|
+
this._element.title = `${this.fileName} ${this.getFileSize()}`;
|
|
39
|
+
ElementIDUtils.addIDInfoIfNotExists(this._element, 'ezFileIcon');
|
|
40
|
+
return (h("div", { class: "box", onClick: () => this.ezClick.emit(this.fileName) },
|
|
41
|
+
h("div", { class: "content" },
|
|
42
|
+
h("ez-icon", { "data-element-id": ElementIDUtils.getInternalIDInfo("fileIcon"), class: "file-type-icon", size: "medium", "icon-name": this.getIconName() }),
|
|
43
|
+
h("label", { class: "file-name" }, this.fileName),
|
|
44
|
+
h("label", { class: "file-size" }, this.getFileSize())),
|
|
45
|
+
this.canRemove ?
|
|
46
|
+
h("ez-icon", { "data-element-id": ElementIDUtils.getInternalIDInfo("remove"), class: "btn-remove", size: "medium", "icon-name": "close", onClick: evt => {
|
|
47
|
+
this.ezRemove.emit(this.fileName);
|
|
48
|
+
evt.stopPropagation();
|
|
49
|
+
} }) : undefined));
|
|
50
|
+
}
|
|
51
|
+
static get is() { return "ez-file-item"; }
|
|
52
|
+
static get encapsulation() { return "shadow"; }
|
|
53
|
+
static get originalStyleUrls() { return {
|
|
54
|
+
"$": ["ez-file-item.css"]
|
|
55
|
+
}; }
|
|
56
|
+
static get styleUrls() { return {
|
|
57
|
+
"$": ["ez-file-item.css"]
|
|
58
|
+
}; }
|
|
59
|
+
static get properties() { return {
|
|
60
|
+
"canRemove": {
|
|
61
|
+
"type": "boolean",
|
|
62
|
+
"mutable": false,
|
|
63
|
+
"complexType": {
|
|
64
|
+
"original": "boolean",
|
|
65
|
+
"resolved": "boolean",
|
|
66
|
+
"references": {}
|
|
67
|
+
},
|
|
68
|
+
"required": false,
|
|
69
|
+
"optional": false,
|
|
70
|
+
"docs": {
|
|
71
|
+
"tags": [],
|
|
72
|
+
"text": "Define se o usu\u00E1rio pode remover o arquivo que est\u00E1 sendo apresentado."
|
|
73
|
+
},
|
|
74
|
+
"attribute": "can-remove",
|
|
75
|
+
"reflect": false,
|
|
76
|
+
"defaultValue": "true"
|
|
77
|
+
},
|
|
78
|
+
"fileName": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"mutable": false,
|
|
81
|
+
"complexType": {
|
|
82
|
+
"original": "string",
|
|
83
|
+
"resolved": "string",
|
|
84
|
+
"references": {}
|
|
85
|
+
},
|
|
86
|
+
"required": false,
|
|
87
|
+
"optional": false,
|
|
88
|
+
"docs": {
|
|
89
|
+
"tags": [],
|
|
90
|
+
"text": "Define o nome do arquivo, com extens\u00E3o."
|
|
91
|
+
},
|
|
92
|
+
"attribute": "file-name",
|
|
93
|
+
"reflect": false
|
|
94
|
+
},
|
|
95
|
+
"iconName": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"mutable": false,
|
|
98
|
+
"complexType": {
|
|
99
|
+
"original": "string",
|
|
100
|
+
"resolved": "string",
|
|
101
|
+
"references": {}
|
|
102
|
+
},
|
|
103
|
+
"required": false,
|
|
104
|
+
"optional": false,
|
|
105
|
+
"docs": {
|
|
106
|
+
"tags": [],
|
|
107
|
+
"text": "Define qual \u00EDcone que representa o arquivo."
|
|
108
|
+
},
|
|
109
|
+
"attribute": "icon-name",
|
|
110
|
+
"reflect": false
|
|
111
|
+
},
|
|
112
|
+
"fileSize": {
|
|
113
|
+
"type": "number",
|
|
114
|
+
"mutable": false,
|
|
115
|
+
"complexType": {
|
|
116
|
+
"original": "number",
|
|
117
|
+
"resolved": "number",
|
|
118
|
+
"references": {}
|
|
119
|
+
},
|
|
120
|
+
"required": false,
|
|
121
|
+
"optional": false,
|
|
122
|
+
"docs": {
|
|
123
|
+
"tags": [],
|
|
124
|
+
"text": "Tamanho do arquivo (em bytes)."
|
|
125
|
+
},
|
|
126
|
+
"attribute": "file-size",
|
|
127
|
+
"reflect": false
|
|
128
|
+
},
|
|
129
|
+
"progress": {
|
|
130
|
+
"type": "number",
|
|
131
|
+
"mutable": false,
|
|
132
|
+
"complexType": {
|
|
133
|
+
"original": "number",
|
|
134
|
+
"resolved": "number",
|
|
135
|
+
"references": {}
|
|
136
|
+
},
|
|
137
|
+
"required": false,
|
|
138
|
+
"optional": false,
|
|
139
|
+
"docs": {
|
|
140
|
+
"tags": [],
|
|
141
|
+
"text": "Percentual de carregamento do arquivo para o servidor."
|
|
142
|
+
},
|
|
143
|
+
"attribute": "progress",
|
|
144
|
+
"reflect": false,
|
|
145
|
+
"defaultValue": "100"
|
|
146
|
+
}
|
|
147
|
+
}; }
|
|
148
|
+
static get events() { return [{
|
|
149
|
+
"method": "ezClick",
|
|
150
|
+
"name": "ezClick",
|
|
151
|
+
"bubbles": true,
|
|
152
|
+
"cancelable": true,
|
|
153
|
+
"composed": true,
|
|
154
|
+
"docs": {
|
|
155
|
+
"tags": [],
|
|
156
|
+
"text": "Emitido ao clicar no ez-file-input (exceto no bot\u00E3o de remover)."
|
|
157
|
+
},
|
|
158
|
+
"complexType": {
|
|
159
|
+
"original": "string",
|
|
160
|
+
"resolved": "string",
|
|
161
|
+
"references": {}
|
|
162
|
+
}
|
|
163
|
+
}, {
|
|
164
|
+
"method": "ezRemove",
|
|
165
|
+
"name": "ezRemove",
|
|
166
|
+
"bubbles": true,
|
|
167
|
+
"cancelable": true,
|
|
168
|
+
"composed": true,
|
|
169
|
+
"docs": {
|
|
170
|
+
"tags": [],
|
|
171
|
+
"text": "Emitido ao clicar no bot\u00E3o de remover."
|
|
172
|
+
},
|
|
173
|
+
"complexType": {
|
|
174
|
+
"original": "string",
|
|
175
|
+
"resolved": "string",
|
|
176
|
+
"references": {}
|
|
177
|
+
}
|
|
178
|
+
}]; }
|
|
179
|
+
static get elementRef() { return "_element"; }
|
|
180
|
+
static get watchers() { return [{
|
|
181
|
+
"propName": "progress",
|
|
182
|
+
"methodName": "observeProgress"
|
|
183
|
+
}]; }
|
|
184
|
+
}
|
|
185
|
+
const FILE_TYPE_ICONS = {
|
|
186
|
+
".exe": "exe",
|
|
187
|
+
".gif": "gif",
|
|
188
|
+
".mp3": "mp3",
|
|
189
|
+
".mp4": "mp4",
|
|
190
|
+
".pdf": "pdf",
|
|
191
|
+
".png": "png",
|
|
192
|
+
".txt": "txt",
|
|
193
|
+
".zip": "zip",
|
|
194
|
+
".docx": "docx",
|
|
195
|
+
".xlsx": "xlsx",
|
|
196
|
+
".pptx": "pptx"
|
|
197
|
+
};
|
|
198
|
+
const DEFAULT_FILE_TYPE_ICON = "generic";
|
|
@@ -48,128 +48,154 @@ svg {
|
|
|
48
48
|
*/
|
|
49
49
|
[class^="ez-icon-"], [class*=" ez-icon-"] {
|
|
50
50
|
font-family: 'ez-icons' !important;
|
|
51
|
-
font-size:
|
|
51
|
+
font-size:16px;
|
|
52
52
|
font-style:normal;
|
|
53
53
|
-webkit-font-smoothing: antialiased;
|
|
54
54
|
-moz-osx-font-smoothing: grayscale;
|
|
55
55
|
}
|
|
56
|
+
|
|
56
57
|
.ez-icon-2chevron-down:before { content: "\ea01"; }
|
|
57
58
|
.ez-icon-2chevron-up:before { content: "\ea02"; }
|
|
58
59
|
.ez-icon-account-outline:before { content: "\ea03"; }
|
|
59
60
|
.ez-icon-account:before { content: "\ea04"; }
|
|
60
|
-
.ez-icon-actions-sprite:before { content: "\ea05"; }
|
|
61
|
+
.ez-icon-actions-sprite-v1:before { content: "\ea05"; }
|
|
61
62
|
.ez-icon-alert-circle-inverted:before { content: "\ea06"; }
|
|
62
63
|
.ez-icon-alert-circle:before { content: "\ea07"; }
|
|
63
64
|
.ez-icon-alert-mail:before { content: "\ea08"; }
|
|
64
65
|
.ez-icon-alert-popup:before { content: "\ea09"; }
|
|
65
66
|
.ez-icon-anexo:before { content: "\ea0a"; }
|
|
66
|
-
.ez-icon-
|
|
67
|
-
.ez-icon-
|
|
68
|
-
.ez-icon-
|
|
69
|
-
.ez-icon-
|
|
70
|
-
.ez-icon-
|
|
71
|
-
.ez-icon-
|
|
72
|
-
.ez-icon-
|
|
73
|
-
.ez-icon-
|
|
74
|
-
.ez-icon-
|
|
75
|
-
.ez-icon-
|
|
76
|
-
.ez-icon-
|
|
77
|
-
.ez-icon-
|
|
78
|
-
.ez-icon-
|
|
79
|
-
.ez-icon-check:before { content: "\ea18"; }
|
|
80
|
-
.ez-icon-
|
|
81
|
-
.ez-icon-
|
|
82
|
-
.ez-icon-chevron-
|
|
83
|
-
.ez-icon-chevron-
|
|
84
|
-
.ez-icon-
|
|
85
|
-
.ez-icon-
|
|
86
|
-
.ez-icon-
|
|
87
|
-
.ez-icon-
|
|
88
|
-
.ez-icon-
|
|
89
|
-
.ez-icon-
|
|
90
|
-
.ez-icon-
|
|
91
|
-
.ez-icon-
|
|
92
|
-
.ez-icon-
|
|
93
|
-
.ez-icon-
|
|
94
|
-
.ez-icon-
|
|
95
|
-
.ez-icon-
|
|
96
|
-
.ez-icon-
|
|
97
|
-
.ez-icon-
|
|
98
|
-
.ez-icon-
|
|
99
|
-
.ez-icon-
|
|
100
|
-
.ez-icon-
|
|
101
|
-
.ez-icon-
|
|
102
|
-
.ez-icon-
|
|
103
|
-
.ez-icon-
|
|
104
|
-
.ez-icon-
|
|
105
|
-
.ez-icon-
|
|
106
|
-
.ez-icon-
|
|
107
|
-
.ez-icon-
|
|
108
|
-
.ez-icon-
|
|
109
|
-
.ez-icon-
|
|
110
|
-
.ez-icon-
|
|
111
|
-
.ez-icon-
|
|
112
|
-
.ez-icon-
|
|
113
|
-
.ez-icon-
|
|
114
|
-
.ez-icon-
|
|
115
|
-
.ez-icon-
|
|
116
|
-
.ez-icon-
|
|
117
|
-
.ez-icon-
|
|
118
|
-
.ez-icon-
|
|
119
|
-
.ez-icon-
|
|
120
|
-
.ez-icon-
|
|
121
|
-
.ez-icon-
|
|
122
|
-
.ez-icon-
|
|
123
|
-
.ez-icon-
|
|
124
|
-
.ez-icon-
|
|
125
|
-
.ez-icon-
|
|
126
|
-
.ez-icon-
|
|
127
|
-
.ez-icon-
|
|
128
|
-
.ez-icon-
|
|
129
|
-
.ez-icon-
|
|
130
|
-
.ez-icon-
|
|
131
|
-
.ez-icon-
|
|
132
|
-
.ez-icon-
|
|
133
|
-
.ez-icon-
|
|
134
|
-
.ez-icon-
|
|
135
|
-
.ez-icon-
|
|
136
|
-
.ez-icon-
|
|
137
|
-
.ez-icon-
|
|
138
|
-
.ez-icon-
|
|
139
|
-
.ez-icon-
|
|
140
|
-
.ez-icon-
|
|
141
|
-
.ez-icon-
|
|
142
|
-
.ez-icon-
|
|
143
|
-
.ez-icon-
|
|
144
|
-
.ez-icon-
|
|
145
|
-
.ez-icon-
|
|
146
|
-
.ez-icon-
|
|
147
|
-
.ez-icon-
|
|
148
|
-
.ez-icon-
|
|
149
|
-
.ez-icon-
|
|
150
|
-
.ez-icon-
|
|
151
|
-
.ez-icon-
|
|
152
|
-
.ez-icon-
|
|
153
|
-
.ez-icon-
|
|
154
|
-
.ez-icon-
|
|
155
|
-
.ez-icon-
|
|
156
|
-
.ez-icon-
|
|
157
|
-
.ez-icon-
|
|
158
|
-
.ez-icon-
|
|
159
|
-
.ez-icon-
|
|
160
|
-
.ez-icon-
|
|
161
|
-
.ez-icon-
|
|
162
|
-
.ez-icon-
|
|
163
|
-
.ez-icon-
|
|
164
|
-
.ez-icon-
|
|
165
|
-
.ez-icon-
|
|
166
|
-
.ez-icon-
|
|
167
|
-
.ez-icon-
|
|
168
|
-
.ez-icon-
|
|
169
|
-
.ez-icon-
|
|
170
|
-
.ez-icon-
|
|
171
|
-
.ez-icon-
|
|
172
|
-
.ez-icon-
|
|
67
|
+
.ez-icon-antecipação:before { content: "\ea0b"; }
|
|
68
|
+
.ez-icon-apps:before { content: "\ea0c"; }
|
|
69
|
+
.ez-icon-arrow_back:before { content: "\ea0d"; }
|
|
70
|
+
.ez-icon-arrow_downward:before { content: "\ea0e"; }
|
|
71
|
+
.ez-icon-baixa:before { content: "\ea0f"; }
|
|
72
|
+
.ez-icon-balance:before { content: "\ea10"; }
|
|
73
|
+
.ez-icon-bell-inverted:before { content: "\ea11"; }
|
|
74
|
+
.ez-icon-bell:before { content: "\ea12"; }
|
|
75
|
+
.ez-icon-boleto:before { content: "\ea13"; }
|
|
76
|
+
.ez-icon-business-center:before { content: "\ea14"; }
|
|
77
|
+
.ez-icon-calendar-clock:before { content: "\ea15"; }
|
|
78
|
+
.ez-icon-calendar:before { content: "\ea16"; }
|
|
79
|
+
.ez-icon-cash-remove:before { content: "\ea17"; }
|
|
80
|
+
.ez-icon-check-circle-inverted:before { content: "\ea18"; }
|
|
81
|
+
.ez-icon-check-circle:before { content: "\ea19"; }
|
|
82
|
+
.ez-icon-check:before { content: "\ea1a"; }
|
|
83
|
+
.ez-icon-chevron-down:before { content: "\ea1b"; }
|
|
84
|
+
.ez-icon-chevron-left:before { content: "\ea1c"; }
|
|
85
|
+
.ez-icon-chevron-right:before { content: "\ea1d"; }
|
|
86
|
+
.ez-icon-chevron-up:before { content: "\ea1e"; }
|
|
87
|
+
.ez-icon-circle--medium:before { content: "\ea1f"; }
|
|
88
|
+
.ez-icon-circle:before { content: "\ea20"; }
|
|
89
|
+
.ez-icon-cleaning:before { content: "\ea21"; }
|
|
90
|
+
.ez-icon-clipboard:before { content: "\ea22"; }
|
|
91
|
+
.ez-icon-close:before { content: "\ea23"; }
|
|
92
|
+
.ez-icon-cobrar:before { content: "\ea24"; }
|
|
93
|
+
.ez-icon-code:before { content: "\ea25"; }
|
|
94
|
+
.ez-icon-configuration:before { content: "\ea26"; }
|
|
95
|
+
.ez-icon-copy:before { content: "\ea27"; }
|
|
96
|
+
.ez-icon-credit_card:before { content: "\ea28"; }
|
|
97
|
+
.ez-icon-crop:before { content: "\ea29"; }
|
|
98
|
+
.ez-icon-custom:before { content: "\ea2a"; }
|
|
99
|
+
.ez-icon-delete:before { content: "\ea2b"; }
|
|
100
|
+
.ez-icon-description:before { content: "\ea2c"; }
|
|
101
|
+
.ez-icon-dividir:before { content: "\ea2d"; }
|
|
102
|
+
.ez-icon-docx:before { content: "\ea2e"; }
|
|
103
|
+
.ez-icon-dot-notification:before { content: "\ea2f"; }
|
|
104
|
+
.ez-icon-dots-horizontal:before { content: "\ea30"; }
|
|
105
|
+
.ez-icon-dots-vertical:before { content: "\ea31"; }
|
|
106
|
+
.ez-icon-drag-indicator:before { content: "\ea32"; }
|
|
107
|
+
.ez-icon-dual-chevron-down:before { content: "\ea33"; }
|
|
108
|
+
.ez-icon-dual-chevron-up:before { content: "\ea34"; }
|
|
109
|
+
.ez-icon-edit-file:before { content: "\ea35"; }
|
|
110
|
+
.ez-icon-edit-table:before { content: "\ea36"; }
|
|
111
|
+
.ez-icon-edit-time:before { content: "\ea37"; }
|
|
112
|
+
.ez-icon-edit:before { content: "\ea38"; }
|
|
113
|
+
.ez-icon-email:before { content: "\ea39"; }
|
|
114
|
+
.ez-icon-estorno:before { content: "\ea3a"; }
|
|
115
|
+
.ez-icon-exe:before { content: "\ea3b"; }
|
|
116
|
+
.ez-icon-expand:before { content: "\ea3c"; }
|
|
117
|
+
.ez-icon-expandir_card:before { content: "\ea3d"; }
|
|
118
|
+
.ez-icon-extrato:before { content: "\ea3e"; }
|
|
119
|
+
.ez-icon-eye-off:before { content: "\ea3f"; }
|
|
120
|
+
.ez-icon-eye:before { content: "\ea40"; }
|
|
121
|
+
.ez-icon-favorite:before { content: "\ea41"; }
|
|
122
|
+
.ez-icon-figma:before { content: "\ea42"; }
|
|
123
|
+
.ez-icon-file-download:before { content: "\ea43"; }
|
|
124
|
+
.ez-icon-file-upload:before { content: "\ea44"; }
|
|
125
|
+
.ez-icon-filter:before { content: "\ea45"; }
|
|
126
|
+
.ez-icon-find-file:before { content: "\ea46"; }
|
|
127
|
+
.ez-icon-find-page:before { content: "\ea47"; }
|
|
128
|
+
.ez-icon-format-color-fill:before { content: "\ea48"; }
|
|
129
|
+
.ez-icon-generic:before { content: "\ea49"; }
|
|
130
|
+
.ez-icon-gif:before { content: "\ea4a"; }
|
|
131
|
+
.ez-icon-graph_bar:before { content: "\ea4b"; }
|
|
132
|
+
.ez-icon-handshake:before { content: "\ea4c"; }
|
|
133
|
+
.ez-icon-help-inverted:before { content: "\ea4d"; }
|
|
134
|
+
.ez-icon-help:before { content: "\ea4e"; }
|
|
135
|
+
.ez-icon-hide_menu:before { content: "\ea4f"; }
|
|
136
|
+
.ez-icon-home:before { content: "\ea50"; }
|
|
137
|
+
.ez-icon-icons104:before { content: "\ea51"; }
|
|
138
|
+
.ez-icon-language:before { content: "\ea52"; }
|
|
139
|
+
.ez-icon-launch:before { content: "\ea53"; }
|
|
140
|
+
.ez-icon-lightbulb:before { content: "\ea54"; }
|
|
141
|
+
.ez-icon-list:before { content: "\ea55"; }
|
|
142
|
+
.ez-icon-location:before { content: "\ea56"; }
|
|
143
|
+
.ez-icon-lock-outline:before { content: "\ea57"; }
|
|
144
|
+
.ez-icon-lock:before { content: "\ea58"; }
|
|
145
|
+
.ez-icon-menu:before { content: "\ea59"; }
|
|
146
|
+
.ez-icon-mid:before { content: "\ea5a"; }
|
|
147
|
+
.ez-icon-minus:before { content: "\ea5b"; }
|
|
148
|
+
.ez-icon-money-off:before { content: "\ea5c"; }
|
|
149
|
+
.ez-icon-money:before { content: "\ea5d"; }
|
|
150
|
+
.ez-icon-more:before { content: "\ea5e"; }
|
|
151
|
+
.ez-icon-mp3:before { content: "\ea5f"; }
|
|
152
|
+
.ez-icon-mp4:before { content: "\ea60"; }
|
|
153
|
+
.ez-icon-north-west:before { content: "\ea61"; }
|
|
154
|
+
.ez-icon-number:before { content: "\ea62"; }
|
|
155
|
+
.ez-icon-ordem-ascendente:before { content: "\ea63"; }
|
|
156
|
+
.ez-icon-ordem-descendente:before { content: "\ea64"; }
|
|
157
|
+
.ez-icon-parcelar:before { content: "\ea65"; }
|
|
158
|
+
.ez-icon-pause:before { content: "\ea66"; }
|
|
159
|
+
.ez-icon-payments:before { content: "\ea67"; }
|
|
160
|
+
.ez-icon-pdf:before { content: "\ea68"; }
|
|
161
|
+
.ez-icon-play:before { content: "\ea69"; }
|
|
162
|
+
.ez-icon-plus:before { content: "\ea6a"; }
|
|
163
|
+
.ez-icon-png:before { content: "\ea6b"; }
|
|
164
|
+
.ez-icon-power:before { content: "\ea6c"; }
|
|
165
|
+
.ez-icon-pptx:before { content: "\ea6d"; }
|
|
166
|
+
.ez-icon-print:before { content: "\ea6e"; }
|
|
167
|
+
.ez-icon-push-pin:before { content: "\ea6f"; }
|
|
168
|
+
.ez-icon-rateio:before { content: "\ea70"; }
|
|
169
|
+
.ez-icon-receipt:before { content: "\ea71"; }
|
|
170
|
+
.ez-icon-recolher_card:before { content: "\ea72"; }
|
|
171
|
+
.ez-icon-restore:before { content: "\ea73"; }
|
|
172
|
+
.ez-icon-return:before { content: "\ea74"; }
|
|
173
|
+
.ez-icon-save:before { content: "\ea75"; }
|
|
174
|
+
.ez-icon-search:before { content: "\ea76"; }
|
|
175
|
+
.ez-icon-settings-inverted:before { content: "\ea77"; }
|
|
176
|
+
.ez-icon-settings:before { content: "\ea78"; }
|
|
177
|
+
.ez-icon-share:before { content: "\ea79"; }
|
|
178
|
+
.ez-icon-shield:before { content: "\ea7a"; }
|
|
179
|
+
.ez-icon-show_menu:before { content: "\ea7b"; }
|
|
180
|
+
.ez-icon-south-east:before { content: "\ea7c"; }
|
|
181
|
+
.ez-icon-sync:before { content: "\ea7d"; }
|
|
182
|
+
.ez-icon-table:before { content: "\ea7e"; }
|
|
183
|
+
.ez-icon-tag_code:before { content: "\ea7f"; }
|
|
184
|
+
.ez-icon-text:before { content: "\ea80"; }
|
|
185
|
+
.ez-icon-timeline:before { content: "\ea81"; }
|
|
186
|
+
.ez-icon-timer-outline:before { content: "\ea82"; }
|
|
187
|
+
.ez-icon-tune:before { content: "\ea83"; }
|
|
188
|
+
.ez-icon-txt:before { content: "\ea84"; }
|
|
189
|
+
.ez-icon-un-pin:before { content: "\ea85"; }
|
|
190
|
+
.ez-icon-unfold_less:before { content: "\ea86"; }
|
|
191
|
+
.ez-icon-unfold_more:before { content: "\ea87"; }
|
|
192
|
+
.ez-icon-user-circle:before { content: "\ea88"; }
|
|
193
|
+
.ez-icon-warning-outline:before { content: "\ea89"; }
|
|
194
|
+
.ez-icon-warning_triangle:before { content: "\ea8a"; }
|
|
195
|
+
.ez-icon-whatshot:before { content: "\ea8b"; }
|
|
196
|
+
.ez-icon-xlsx:before { content: "\ea8c"; }
|
|
197
|
+
.ez-icon-zip:before { content: "\ea8d"; }
|
|
198
|
+
|
|
173
199
|
/*
|
|
174
200
|
END CSS GENERATED BY EZ-DESIGN ICONS
|
|
175
201
|
*/
|