ag-design 1.0.35 → 1.0.36

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.
@@ -1,8 +1,8 @@
1
1
  @font-face {
2
2
  font-family: "ag-icons";
3
- src: url("./ag-icons.ttf?99f85a7c6a873e08bf43efcb816245b3") format("truetype"),
4
- url("./ag-icons.woff?99f85a7c6a873e08bf43efcb816245b3") format("woff"),
5
- url("./ag-icons.woff2?99f85a7c6a873e08bf43efcb816245b3") format("woff2");
3
+ src: url("./ag-icons.ttf?e3400fefd65fbe4d323796fed3cf2231") format("truetype"),
4
+ url("./ag-icons.woff?e3400fefd65fbe4d323796fed3cf2231") format("woff"),
5
+ url("./ag-icons.woff2?e3400fefd65fbe4d323796fed3cf2231") format("woff2");
6
6
  }
7
7
 
8
8
  i[class^="icon-"]:before, i[class*=" icon-"]:before {
@@ -64,39 +64,45 @@ i[class^="icon-"]:before, i[class*=" icon-"]:before {
64
64
  .icon-formula:before {
65
65
  content: "\f110";
66
66
  }
67
- .icon-direction-rtl:before {
67
+ .icon-eye-dropper-half:before {
68
68
  content: "\f111";
69
69
  }
70
- .icon-direction-ltr:before {
70
+ .icon-direction-rtl:before {
71
71
  content: "\f112";
72
72
  }
73
- .icon-color-text:before {
73
+ .icon-direction-ltr:before {
74
74
  content: "\f113";
75
75
  }
76
- .icon-color-background:before {
76
+ .icon-color-text:before {
77
77
  content: "\f114";
78
78
  }
79
- .icon-code-block:before {
79
+ .icon-color-background:before {
80
80
  content: "\f115";
81
81
  }
82
- .icon-clean-format:before {
82
+ .icon-code-block:before {
83
83
  content: "\f116";
84
84
  }
85
- .icon-bold:before {
85
+ .icon-clean-format:before {
86
86
  content: "\f117";
87
87
  }
88
- .icon-blockquote:before {
88
+ .icon-bold:before {
89
89
  content: "\f118";
90
90
  }
91
- .icon-align-right:before {
91
+ .icon-blockquote:before {
92
92
  content: "\f119";
93
93
  }
94
- .icon-align-left:before {
94
+ .icon-ban:before {
95
95
  content: "\f11a";
96
96
  }
97
- .icon-align-justify:before {
97
+ .icon-align-right:before {
98
98
  content: "\f11b";
99
99
  }
100
- .icon-align-center:before {
100
+ .icon-align-left:before {
101
101
  content: "\f11c";
102
102
  }
103
+ .icon-align-justify:before {
104
+ content: "\f11d";
105
+ }
106
+ .icon-align-center:before {
107
+ content: "\f11e";
108
+ }
@@ -200,6 +200,15 @@
200
200
  </div>
201
201
 
202
202
 
203
+ <div class="preview">
204
+ <span class="inner">
205
+ <i class="icon icon-eye-dropper-half"></i>
206
+ </span>
207
+ <br>
208
+ <span class='label'>eye-dropper-half</span>
209
+ </div>
210
+
211
+
203
212
  <div class="preview">
204
213
  <span class="inner">
205
214
  <i class="icon icon-direction-rtl"></i>
@@ -272,6 +281,15 @@
272
281
  </div>
273
282
 
274
283
 
284
+ <div class="preview">
285
+ <span class="inner">
286
+ <i class="icon icon-ban"></i>
287
+ </span>
288
+ <br>
289
+ <span class='label'>ban</span>
290
+ </div>
291
+
292
+
275
293
  <div class="preview">
276
294
  <span class="inner">
277
295
  <i class="icon icon-align-right"></i>
@@ -15,16 +15,18 @@
15
15
  "indent-decrease": 61710,
16
16
  "image": 61711,
17
17
  "formula": 61712,
18
- "direction-rtl": 61713,
19
- "direction-ltr": 61714,
20
- "color-text": 61715,
21
- "color-background": 61716,
22
- "code-block": 61717,
23
- "clean-format": 61718,
24
- "bold": 61719,
25
- "blockquote": 61720,
26
- "align-right": 61721,
27
- "align-left": 61722,
28
- "align-justify": 61723,
29
- "align-center": 61724
18
+ "eye-dropper-half": 61713,
19
+ "direction-rtl": 61714,
20
+ "direction-ltr": 61715,
21
+ "color-text": 61716,
22
+ "color-background": 61717,
23
+ "code-block": 61718,
24
+ "clean-format": 61719,
25
+ "bold": 61720,
26
+ "blockquote": 61721,
27
+ "ban": 61722,
28
+ "align-right": 61723,
29
+ "align-left": 61724,
30
+ "align-justify": 61725,
31
+ "align-center": 61726
30
32
  }
package/fonts/ag-icons.ts CHANGED
@@ -15,6 +15,7 @@ export type AgIconsId =
15
15
  | "indent-decrease"
16
16
  | "image"
17
17
  | "formula"
18
+ | "eye-dropper-half"
18
19
  | "direction-rtl"
19
20
  | "direction-ltr"
20
21
  | "color-text"
@@ -23,6 +24,7 @@ export type AgIconsId =
23
24
  | "clean-format"
24
25
  | "bold"
25
26
  | "blockquote"
27
+ | "ban"
26
28
  | "align-right"
27
29
  | "align-left"
28
30
  | "align-justify"
@@ -45,6 +47,7 @@ export type AgIconsKey =
45
47
  | "IndentDecrease"
46
48
  | "Image"
47
49
  | "Formula"
50
+ | "EyeDropperHalf"
48
51
  | "DirectionRtl"
49
52
  | "DirectionLtr"
50
53
  | "ColorText"
@@ -53,6 +56,7 @@ export type AgIconsKey =
53
56
  | "CleanFormat"
54
57
  | "Bold"
55
58
  | "Blockquote"
59
+ | "Ban"
56
60
  | "AlignRight"
57
61
  | "AlignLeft"
58
62
  | "AlignJustify"
@@ -75,6 +79,7 @@ export enum AgIcons {
75
79
  IndentDecrease = "indent-decrease",
76
80
  Image = "image",
77
81
  Formula = "formula",
82
+ EyeDropperHalf = "eye-dropper-half",
78
83
  DirectionRtl = "direction-rtl",
79
84
  DirectionLtr = "direction-ltr",
80
85
  ColorText = "color-text",
@@ -83,6 +88,7 @@ export enum AgIcons {
83
88
  CleanFormat = "clean-format",
84
89
  Bold = "bold",
85
90
  Blockquote = "blockquote",
91
+ Ban = "ban",
86
92
  AlignRight = "align-right",
87
93
  AlignLeft = "align-left",
88
94
  AlignJustify = "align-justify",
@@ -106,16 +112,18 @@ export const AG_ICONS_CODEPOINTS: { [key in AgIcons]: string } = {
106
112
  [AgIcons.IndentDecrease]: "61710",
107
113
  [AgIcons.Image]: "61711",
108
114
  [AgIcons.Formula]: "61712",
109
- [AgIcons.DirectionRtl]: "61713",
110
- [AgIcons.DirectionLtr]: "61714",
111
- [AgIcons.ColorText]: "61715",
112
- [AgIcons.ColorBackground]: "61716",
113
- [AgIcons.CodeBlock]: "61717",
114
- [AgIcons.CleanFormat]: "61718",
115
- [AgIcons.Bold]: "61719",
116
- [AgIcons.Blockquote]: "61720",
117
- [AgIcons.AlignRight]: "61721",
118
- [AgIcons.AlignLeft]: "61722",
119
- [AgIcons.AlignJustify]: "61723",
120
- [AgIcons.AlignCenter]: "61724",
115
+ [AgIcons.EyeDropperHalf]: "61713",
116
+ [AgIcons.DirectionRtl]: "61714",
117
+ [AgIcons.DirectionLtr]: "61715",
118
+ [AgIcons.ColorText]: "61716",
119
+ [AgIcons.ColorBackground]: "61717",
120
+ [AgIcons.CodeBlock]: "61718",
121
+ [AgIcons.CleanFormat]: "61719",
122
+ [AgIcons.Bold]: "61720",
123
+ [AgIcons.Blockquote]: "61721",
124
+ [AgIcons.Ban]: "61722",
125
+ [AgIcons.AlignRight]: "61723",
126
+ [AgIcons.AlignLeft]: "61724",
127
+ [AgIcons.AlignJustify]: "61725",
128
+ [AgIcons.AlignCenter]: "61726",
121
129
  };
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ag-design",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "AG Design Core Framework",
5
5
  "repository": {
6
6
  "type": "git",