@zohodesk/icons 1.0.0-exp.4 → 1.0.0-temp6
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 +339 -239
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviBold.woff +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviBold.woff2 +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviExtrabold.woff +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviExtrabold.woff2 +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviLight.woff +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviLight.woff2 +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviMedium.woff +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviMedium.woff2 +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviRegular.woff +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviRegular.woff2 +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviSemibold.woff +0 -0
- package/assets/fonts/webfonts/ZohoPuvi/ZohoPuviSemibold.woff2 +0 -0
- package/assets/fonts/zd-common.svg +1 -0
- package/assets/fonts/zd-common.woff +0 -0
- package/assets/fonts/zd-common.woff2 +0 -0
- package/assets/fonts/zd-community.svg +1 -0
- package/assets/fonts/zd-community.woff +0 -0
- package/assets/fonts/zd-community.woff2 +0 -0
- package/assets/fonts/zd-gcFonts.svg +37 -0
- package/assets/fonts/zd-gcFonts.woff +0 -0
- package/assets/fonts/zd-gcFonts.woff2 +0 -0
- package/assets/fonts/zd-rCustomize.svg +1 -0
- package/assets/fonts/zd-rCustomize.woff +0 -0
- package/assets/fonts/zd-rCustomize.woff2 +0 -0
- package/assets/fonts/zd-rGeneral.svg +27 -8
- package/assets/fonts/zd-rGeneral.woff +0 -0
- package/assets/fonts/zd-rGeneral.woff2 +0 -0
- package/assets/fonts/zd-rTickets.svg +52 -49
- package/assets/fonts/zd-rTickets.woff +0 -0
- package/assets/fonts/zd-rTickets.woff2 +0 -0
- package/assets/fonts/zd-rTopband.svg +1 -0
- package/assets/fonts/zd-rTopband.woff +0 -0
- package/assets/fonts/zd-rTopband.woff2 +0 -0
- package/assets/fonts/zd-rTwotone.svg +9 -2
- package/assets/fonts/zd-rTwotone.woff +0 -0
- package/assets/fonts/zd-rTwotone.woff2 +0 -0
- package/assets/fonts/zd-social.woff +0 -0
- package/assets/fonts/zd-social.woff2 +0 -0
- package/assets/fonts/zd-tickets.svg +9 -0
- package/assets/fonts/zd-tickets.woff +0 -0
- package/assets/fonts/zd-tickets.woff2 +0 -0
- package/assets/react/zd-font-rCustomize.module.css +4 -1
- package/assets/react/zd-font-rGeneral.module.css +86 -9
- package/assets/react/zd-font-rTickets.module.css +64 -51
- package/assets/react/zd-font-rTopband.module.css +4 -1
- package/assets/react/zd-font-rTwotone.module.css +37 -4
- package/assets/react/zd-font-react-common.module.css +4 -1
- package/assets/react/zd-font-react-common.plain.css +4 -1
- package/assets/react/zd-font-react-community.module.css +4 -1
- package/assets/react/zd-font-react-gcFonts.module.css +171 -1
- package/assets/react/zd-font-react-tickets.module.css +41 -1
- package/assets/react/zd-font-react-tickets.plain.css +41 -1
- package/es/Icon/CustomIcons.js +4 -1
- package/es/Icon/FontFactory.js +51 -14
- package/es/Icon/Icon.module.css +43 -43
- package/es/common/IcondocStyle.module.css +22 -22
- package/lib/Icon/CustomIcons.js +1 -1
- package/lib/Icon/FontFactory.js +29 -13
- package/lib/Icon/FontIcon.js +5 -5
- package/lib/Icon/Icon.module.css +43 -43
- package/lib/Icon/asyncComponent.js +5 -5
- package/lib/Icon/index.js +1 -1
- package/lib/common/IcondocStyle.module.css +22 -22
- package/lib/index.js +10 -10
- package/package.json +107 -58
- package/es/Icon/docs/Icon__default.docs.js +0 -35
- package/lib/Icon/docs/Icon__default.docs.js +0 -88
package/es/Icon/Icon.module.css
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
/* $Id$ */
|
|
2
|
-
.basic {
|
|
3
|
-
speak: none;
|
|
4
|
-
font-style: normal;
|
|
5
|
-
font-weight: normal;
|
|
6
|
-
font-variant: normal;
|
|
7
|
-
text-transform: none;
|
|
8
|
-
line-height: 1;
|
|
9
|
-
-webkit-font-smoothing: antialiased;
|
|
10
|
-
-moz-osx-font-smoothing: grayscale;
|
|
11
|
-
display: inline-block;
|
|
12
|
-
vertical-align: middle;
|
|
13
|
-
font-size: var(--zd-iconfont-size, inherit);
|
|
14
|
-
}
|
|
15
|
-
.fbold {
|
|
16
|
-
font-weight: bold;
|
|
17
|
-
}
|
|
18
|
-
.cursor {
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
}
|
|
21
|
-
.red :global .path2::before,
|
|
22
|
-
.red2 :global .path3::before {
|
|
23
|
-
color: #de3535 !important;
|
|
24
|
-
}
|
|
25
|
-
.green :global .path2::before,
|
|
26
|
-
.green2 :global .path3::before {
|
|
27
|
-
color: #26a942 !important;
|
|
28
|
-
}
|
|
29
|
-
.blue :global .path2::before,
|
|
30
|
-
.blue2 :global .path3::before {
|
|
31
|
-
color: #0a73eb !important;
|
|
32
|
-
}
|
|
33
|
-
.lightBlue :global .path2::before,
|
|
34
|
-
.lightBlue2 :global .path3::before {
|
|
35
|
-
color: #00acda !important;
|
|
36
|
-
}
|
|
37
|
-
[dir='rtl'] .rtl {
|
|
38
|
-
transform: rotateY(180deg);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/* .twotwo :global .path1:before {
|
|
42
|
-
color: red !important;
|
|
43
|
-
} */
|
|
1
|
+
/* $Id$ */
|
|
2
|
+
.basic {
|
|
3
|
+
speak: none;
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
font-variant: normal;
|
|
7
|
+
text-transform: none;
|
|
8
|
+
line-height: 1;
|
|
9
|
+
-webkit-font-smoothing: antialiased;
|
|
10
|
+
-moz-osx-font-smoothing: grayscale;
|
|
11
|
+
display: inline-block;
|
|
12
|
+
vertical-align: middle;
|
|
13
|
+
font-size: var(--zd-iconfont-size, inherit);
|
|
14
|
+
}
|
|
15
|
+
.fbold {
|
|
16
|
+
font-weight: bold;
|
|
17
|
+
}
|
|
18
|
+
.cursor {
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
21
|
+
.red :global .path2::before,
|
|
22
|
+
.red2 :global .path3::before {
|
|
23
|
+
color: #de3535 !important;
|
|
24
|
+
}
|
|
25
|
+
.green :global .path2::before,
|
|
26
|
+
.green2 :global .path3::before {
|
|
27
|
+
color: #26a942 !important;
|
|
28
|
+
}
|
|
29
|
+
.blue :global .path2::before,
|
|
30
|
+
.blue2 :global .path3::before {
|
|
31
|
+
color: #0a73eb !important;
|
|
32
|
+
}
|
|
33
|
+
.lightBlue :global .path2::before,
|
|
34
|
+
.lightBlue2 :global .path3::before {
|
|
35
|
+
color: #00acda !important;
|
|
36
|
+
}
|
|
37
|
+
[dir='rtl'] .rtl {
|
|
38
|
+
transform: rotateY(180deg);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* .twotwo :global .path1:before {
|
|
42
|
+
color: red !important;
|
|
43
|
+
} */
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
.font_grid {
|
|
2
|
-
border-radius: 3px;
|
|
3
|
-
text-align: center;
|
|
4
|
-
width: 8.0625rem;
|
|
5
|
-
box-shadow: 0 0 14px -1px #00000014;
|
|
6
|
-
margin: 0 1.125rem 1.125rem 0;
|
|
7
|
-
padding: 1.375rem 0.625rem 1.3125rem;
|
|
8
|
-
display: inline-block;
|
|
9
|
-
position: relative;
|
|
10
|
-
overflow: hidden;
|
|
11
|
-
}
|
|
12
|
-
.font_grid > span {
|
|
13
|
-
display: inline-block;
|
|
14
|
-
}
|
|
15
|
-
.font_grid p {
|
|
16
|
-
margin-top: 0.9375rem;
|
|
17
|
-
font: 0.8125rem Semibold;
|
|
18
|
-
color: #2d313e;
|
|
19
|
-
overflow: hidden;
|
|
20
|
-
white-space: nowrap;
|
|
21
|
-
text-overflow: ellipsis;
|
|
22
|
-
}
|
|
1
|
+
.font_grid {
|
|
2
|
+
border-radius: 3px;
|
|
3
|
+
text-align: center;
|
|
4
|
+
width: 8.0625rem;
|
|
5
|
+
box-shadow: 0 0 14px -1px #00000014;
|
|
6
|
+
margin: 0 1.125rem 1.125rem 0;
|
|
7
|
+
padding: 1.375rem 0.625rem 1.3125rem;
|
|
8
|
+
display: inline-block;
|
|
9
|
+
position: relative;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
}
|
|
12
|
+
.font_grid > span {
|
|
13
|
+
display: inline-block;
|
|
14
|
+
}
|
|
15
|
+
.font_grid p {
|
|
16
|
+
margin-top: 0.9375rem;
|
|
17
|
+
font: 0.8125rem Semibold;
|
|
18
|
+
color: #2d313e;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
white-space: nowrap;
|
|
21
|
+
text-overflow: ellipsis;
|
|
22
|
+
}
|
package/lib/Icon/CustomIcons.js
CHANGED
|
@@ -93,5 +93,5 @@ var TwoToneIcons = (_TwoToneIcons = {
|
|
|
93
93
|
'ZD-TT-directFacebookMissed': 'red2',
|
|
94
94
|
'ZD-TT-happinessMissed': 'red2',
|
|
95
95
|
'ZD-TT-whatsAppMissed': 'red2'
|
|
96
|
-
}, _defineProperty(_TwoToneIcons, "ZD-TT-whatsAppMissed", 'red2'), _defineProperty(_TwoToneIcons, 'ZD-TT-callIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-chatIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-mailIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-instagramIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-facebookIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-forumIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-twitterIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-webIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-directFacebookIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-happinessIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-whatsAppIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-callOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-chatOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-instagramOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-mailOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-facebookOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-forumOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-twitterOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-webOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-happinessOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-emailForward', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-directFacebookOut', 'lightBlue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-whatsAppOut', 'lightBlue2'), _TwoToneIcons);
|
|
96
|
+
}, _defineProperty(_TwoToneIcons, "ZD-TT-whatsAppMissed", 'red2'), _defineProperty(_TwoToneIcons, 'ZD-TT-instaIMMissed', 'red2'), _defineProperty(_TwoToneIcons, 'ZD-TT-callIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-chatIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-mailIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-instagramIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-facebookIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-forumIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-twitterIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-webIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-directFacebookIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-happinessIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-whatsAppIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-instaIMIn', 'green2'), _defineProperty(_TwoToneIcons, 'ZD-TT-callOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-chatOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-instagramOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-mailOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-facebookOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-forumOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-twitterOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-webOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-happinessOut', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-emailForward', 'blue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-directFacebookOut', 'lightBlue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-whatsAppOut', 'lightBlue2'), _defineProperty(_TwoToneIcons, 'ZD-TT-instaIMOut', 'lightBlue2'), _TwoToneIcons);
|
|
97
97
|
exports.TwoToneIcons = TwoToneIcons;
|
package/lib/Icon/FontFactory.js
CHANGED
|
@@ -218,7 +218,8 @@ var FontFactory = {
|
|
|
218
218
|
'ZD-twilio': 'icon-twilio',
|
|
219
219
|
'ZD-salesforce': ['icon-salesforce', 2],
|
|
220
220
|
'ZD-playStore': 'icon-playStore',
|
|
221
|
-
'ZD-biginLogo': 'icon-Bigin_Logo'
|
|
221
|
+
'ZD-biginLogo': 'icon-Bigin_Logo',
|
|
222
|
+
'ZD-accessibility': 'icon-accessibility'
|
|
222
223
|
},
|
|
223
224
|
CommunityFontIcon: {
|
|
224
225
|
'ZD-discussions': 'icon-discussions',
|
|
@@ -245,7 +246,8 @@ var FontFactory = {
|
|
|
245
246
|
'ZD-sorting2': ['icon-sorting2', 2],
|
|
246
247
|
'ZD-sticky': 'icon-Sticky',
|
|
247
248
|
'ZD-urlNotFound': ['icon-url-not-found', 12],
|
|
248
|
-
'ZD-zsbell': 'icon-zsbell'
|
|
249
|
+
'ZD-zsbell': 'icon-zsbell',
|
|
250
|
+
'ZD-moderaterTick': 'icon-moderater-tick'
|
|
249
251
|
},
|
|
250
252
|
CustomersFontIcon: {
|
|
251
253
|
'ZD-circleCheck': 'icon-circle-check',
|
|
@@ -1044,7 +1046,11 @@ var FontFactory = {
|
|
|
1044
1046
|
'ZD-tableView': 'icon-tableView',
|
|
1045
1047
|
'ZD-archivedFile': 'icon-archivedFile',
|
|
1046
1048
|
'ZD-commentRound': ['icon-CommentRound', 2],
|
|
1047
|
-
'ZD-languageDetector': 'icon-languageDetector'
|
|
1049
|
+
'ZD-languageDetector': 'icon-languageDetector',
|
|
1050
|
+
'ZD-ticketView': 'icon-ticketView',
|
|
1051
|
+
'ZD-prediction': ['icon-prediction', 2],
|
|
1052
|
+
'ZD-analytics': ['icon-analytics', 2],
|
|
1053
|
+
'ZD-customer': ['icon-customer', 2]
|
|
1048
1054
|
},
|
|
1049
1055
|
TopbandFontIcon: {
|
|
1050
1056
|
'ZD-arrowDown': 'icon-arrow-down',
|
|
@@ -1203,7 +1209,7 @@ var FontFactory = {
|
|
|
1203
1209
|
'ZD-integrationPlug': 'icon-integrationPlug',
|
|
1204
1210
|
'ZD-zia': 'icon-zia',
|
|
1205
1211
|
'ZD-mute1New': 'icon-mute1-new',
|
|
1206
|
-
'ZD-menu1': 'icon-menu1',
|
|
1212
|
+
'ZD-menu1': ['icon-menu1', 0, true],
|
|
1207
1213
|
'ZD-whatsApp': 'icon-whatsApp'
|
|
1208
1214
|
},
|
|
1209
1215
|
TicketsChannelFontIcon: {
|
|
@@ -1352,7 +1358,8 @@ var FontFactory = {
|
|
|
1352
1358
|
'ZD-CM-textArea': 'icon-textArea',
|
|
1353
1359
|
'ZD-CM-textType': 'icon-textType',
|
|
1354
1360
|
'ZD-CM-customAction': 'icon-customAction',
|
|
1355
|
-
'ZD-CM-formula': 'icon-formula'
|
|
1361
|
+
'ZD-CM-formula': 'icon-formula',
|
|
1362
|
+
'ZD-CM-ticketID': 'icon-ticketID'
|
|
1356
1363
|
},
|
|
1357
1364
|
ReactExportFilesFontIcon: {
|
|
1358
1365
|
'ZD-EF-android': 'icon-android',
|
|
@@ -1486,7 +1493,7 @@ var FontFactory = {
|
|
|
1486
1493
|
'ZD-GN-alignRight': ['icon-alignRight', 2],
|
|
1487
1494
|
'ZD-GN-allignCenter': ['icon-allignCenter', 2],
|
|
1488
1495
|
'ZD-GN-allignJustify': ['icon-allignJustify', 2]
|
|
1489
|
-
}, _defineProperty(_ReactGeneralFontIcon, "ZD-GN-bold", 'icon-bold'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-bullets', ['icon-bullets', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-clearFormat', ['icon-clearFormat', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-decreaceIndent', ['icon-decreaceIndent', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-font', 'icon-font'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-fontColour', ['icon-fontColour', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-formatPainter', ['icon-formatPainter', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-horizontalRule', ['icon-horizontalRule', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-increaceIndent', ['icon-increaceIndent', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-insertCode', 'icon-insertCode'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-insertHtml', ['icon-insertHtml', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-insertImage', ['icon-insertImage', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-insertQuote', 'icon-insertQuote'), _defineProperty(_ReactGeneralFontIcon, "ZD-GN-italic", 'icon-italic'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-numbering', ['icon-numbering', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-spellCheck', ['icon-spellCheck', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-strikeThrough', ['icon-strikeThrough', 3]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-underLine', ['icon-underLine', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-signOut', 'icon-signOut'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-phoneFill', 'icon-phoneFill'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-follow', 'icon-follow'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-forward', 'icon-forward'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-forwardFill', 'icon-forwardFill'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-
|
|
1496
|
+
}, _defineProperty(_ReactGeneralFontIcon, "ZD-GN-bold", 'icon-bold'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-bullets', ['icon-bullets', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-clearFormat', ['icon-clearFormat', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-decreaceIndent', ['icon-decreaceIndent', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-font', 'icon-font'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-fontColour', ['icon-fontColour', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-formatPainter', ['icon-formatPainter', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-horizontalRule', ['icon-horizontalRule', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-increaceIndent', ['icon-increaceIndent', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-insertCode', 'icon-insertCode'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-insertHtml', ['icon-insertHtml', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-insertImage', ['icon-insertImage', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-insertQuote', 'icon-insertQuote'), _defineProperty(_ReactGeneralFontIcon, "ZD-GN-italic", 'icon-italic'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-numbering', ['icon-numbering', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-spellCheck', ['icon-spellCheck', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-strikeThrough', ['icon-strikeThrough', 3]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-underLine', ['icon-underLine', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-signOut', 'icon-signOut'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-phoneFill', 'icon-phoneFill'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-follow', 'icon-follow'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-forward', 'icon-forward'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-forwardFill', 'icon-forwardFill'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-unFollow', 'icon-unFollow'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-infoStroke', 'icon-infoStroke'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-onHold', 'icon-onHold'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-clearFilter', 'icon-clearFilter'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-placeholder', 'icon-placeholder'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-gift', 'icon-gift'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-freeTrial', 'icon-freeTrial'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-skills', 'icon-skills'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-contactInformation', 'icon-contactInformation'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-relatedDetails', 'icon-relatedDetails'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-template', ['icon-template', 5]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-department', 'icon-department'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-doubleTick', 'icon-doubleTick'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-bounce', 'icon-bounce'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-accessibility', ['icon-accessibility', 3]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-read', ['icon-read', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-unread', ['icon-unread', 2]), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-wmsSun', 'icon-wmsSun'), _defineProperty(_ReactGeneralFontIcon, 'ZD-GN-wmsMoon', 'icon-wmsMoon'), _ReactGeneralFontIcon),
|
|
1490
1497
|
ReactIntegrationsFontIcon: {
|
|
1491
1498
|
'ZD-IG-intAnalytics': 'icon-intAnalytics',
|
|
1492
1499
|
'ZD-IG-intBigin': 'icon-intBigin',
|
|
@@ -1634,7 +1641,6 @@ var FontFactory = {
|
|
|
1634
1641
|
'ZD-TK-macros': 'icon-macros',
|
|
1635
1642
|
'ZD-TK-merge': 'icon-merge',
|
|
1636
1643
|
'ZD-TK-noviewer': 'icon-noviewer',
|
|
1637
|
-
'ZD-TK-originalView': 'icon-originalView',
|
|
1638
1644
|
'ZD-TK-out': 'icon-out',
|
|
1639
1645
|
'ZD-TK-paidUser': ['icon-paidUser', 2],
|
|
1640
1646
|
'ZD-TK-peek': 'icon-peek',
|
|
@@ -1652,7 +1658,7 @@ var FontFactory = {
|
|
|
1652
1658
|
'ZD-TK-task': 'icon-task',
|
|
1653
1659
|
'ZD-TK-team': 'icon-team',
|
|
1654
1660
|
'ZD-TK-teamAgent': 'icon-teamAgent',
|
|
1655
|
-
'ZD-TK-thread': 'icon-thread',
|
|
1661
|
+
'ZD-TK-thread': ['icon-thread', 0, true],
|
|
1656
1662
|
'ZD-TK-ticket': 'icon-ticket',
|
|
1657
1663
|
'ZD-TK-timeEntry': 'icon-timeEntry',
|
|
1658
1664
|
'ZD-TK-timeEntryPause': 'icon-timeEntryPause',
|
|
@@ -1676,7 +1682,10 @@ var FontFactory = {
|
|
|
1676
1682
|
'ZD-TK-followStroke': 'icon-followStroke',
|
|
1677
1683
|
'ZD-TK-relatedDetails': 'icon-relatedDetails',
|
|
1678
1684
|
'ZD-TK-ticketVisible': 'icon-ticketVisible',
|
|
1679
|
-
'ZD-TK-ticketInvisible': 'icon-ticketInvisible'
|
|
1685
|
+
'ZD-TK-ticketInvisible': 'icon-ticketInvisible',
|
|
1686
|
+
'ZD-TK-languageDetector': 'icon-languageDetector',
|
|
1687
|
+
'ZD-TK-ticketView': 'icon-ticketView',
|
|
1688
|
+
'ZD-TK-prediction': ['icon-prediction', 2]
|
|
1680
1689
|
},
|
|
1681
1690
|
ReactTopbandFontIcon: {
|
|
1682
1691
|
'ZD-TB-advanceSearch': 'icon-advanceSearch',
|
|
@@ -1689,7 +1698,7 @@ var FontFactory = {
|
|
|
1689
1698
|
'ZD-TB-keyboard': 'icon-keyboard',
|
|
1690
1699
|
'ZD-TB-list': 'icon-list',
|
|
1691
1700
|
'ZD-TB-marketplace': ['icon-marketplace', 3],
|
|
1692
|
-
'ZD-TB-menu': 'icon-menu',
|
|
1701
|
+
'ZD-TB-menu': ['icon-menu', 0, true],
|
|
1693
1702
|
'ZD-TB-notification': 'icon-notification',
|
|
1694
1703
|
'ZD-TB-settings': 'icon-settings',
|
|
1695
1704
|
'ZD-TB-sortingFill': ['icon-sortingFill', 3],
|
|
@@ -1708,7 +1717,8 @@ var FontFactory = {
|
|
|
1708
1717
|
'ZD-TB-standerdPlan': 'icon-standerdPlan',
|
|
1709
1718
|
'ZD-TB-statusFill': 'icon-statusFill',
|
|
1710
1719
|
'ZD-TB-statusStroke': ['icon-statusStroke', 2],
|
|
1711
|
-
'ZD-TB-backArrow': ['icon-backArrow', 0, true]
|
|
1720
|
+
'ZD-TB-backArrow': ['icon-backArrow', 0, true],
|
|
1721
|
+
'ZD-TB-features': 'icon-features'
|
|
1712
1722
|
},
|
|
1713
1723
|
ReactGCFontIcon: (_ReactGCFontIcon = {
|
|
1714
1724
|
'GC-alert': 'icon-Alert',
|
|
@@ -1731,7 +1741,7 @@ var FontFactory = {
|
|
|
1731
1741
|
'GC-desktop': 'icon-Desktop',
|
|
1732
1742
|
'GC-duplicate': 'icon-Duplicate',
|
|
1733
1743
|
'GC-emojibutton': ['icon-emojibutton', 3]
|
|
1734
|
-
}, _defineProperty(_ReactGCFontIcon, "GC-duplicate", 'icon-Duplicate'), _defineProperty(_ReactGCFontIcon, 'GC-emojismile', ['icon-EmojiSmile', 3]), _defineProperty(_ReactGCFontIcon, 'GC-flag', 'icon-Flag'), _defineProperty(_ReactGCFontIcon, 'GC-fullscreen', 'icon-FullScreen'), _defineProperty(_ReactGCFontIcon, 'GC-grid', 'icon-Grid'), _defineProperty(_ReactGCFontIcon, 'GC-home', 'icon-Home'), _defineProperty(_ReactGCFontIcon, 'GC-image', 'icon-Image'), _defineProperty(_ReactGCFontIcon, 'GC-imagebutton', ['icon-imagebutton', 5]), _defineProperty(_ReactGCFontIcon, 'GC-info', 'icon-Info'), _defineProperty(_ReactGCFontIcon, 'GC-inputaudio', ['icon-inputaudio', 4]), _defineProperty(_ReactGCFontIcon, 'GC-inputcurrency', ['icon-inputcurrency', 3]), _defineProperty(_ReactGCFontIcon, 'GC-inputimage', ['icon-inputimage', 5]), _defineProperty(_ReactGCFontIcon, 'GC-inputmail', ['icon-inputmail', 4]), _defineProperty(_ReactGCFontIcon, 'GC-inputnumber', ['icon-inputnumber', 3]), _defineProperty(_ReactGCFontIcon, 'GC-inputslider', ['icon-inputslider', 4]), _defineProperty(_ReactGCFontIcon, 'GC-inputtext', ['icon-inputtext', 3]), _defineProperty(_ReactGCFontIcon, 'GC-inputurl', ['icon-inputurl', 4]), _defineProperty(_ReactGCFontIcon, 'GC-inputvideo', ['icon-inputvideo', 3]), _defineProperty(_ReactGCFontIcon, 'GC-italic', 'icon-Italic'), _defineProperty(_ReactGCFontIcon, 'GC-jump', ['icon-jump', 3]), _defineProperty(_ReactGCFontIcon, 'GC-layer', 'icon-Layer'), _defineProperty(_ReactGCFontIcon, 'GC-link', 'icon-Link'), _defineProperty(_ReactGCFontIcon, 'GC-list', 'icon-List'), _defineProperty(_ReactGCFontIcon, 'GC-maximize', 'icon-Maximize'), _defineProperty(_ReactGCFontIcon, 'GC-minimize', 'icon-Minimize'), _defineProperty(_ReactGCFontIcon, 'GC-mobile', 'icon-Mobile'), _defineProperty(_ReactGCFontIcon, 'GC-navigation', 'icon-Navigation'), _defineProperty(_ReactGCFontIcon, 'GC-pathdivider', ['icon-pathdivider', 3]), _defineProperty(_ReactGCFontIcon, 'GC-pen', 'icon-Pen'), _defineProperty(_ReactGCFontIcon, 'GC-plus', 'icon-Plus'), _defineProperty(_ReactGCFontIcon, 'GC-questioncircle', 'icon-QuestionCircle'), _defineProperty(_ReactGCFontIcon, 'GC-refresh', 'icon-Refresh'), _defineProperty(_ReactGCFontIcon, 'GC-search', 'icon-Search'), _defineProperty(_ReactGCFontIcon, 'GC-starbutton', ['icon-starbutton', 3]), _defineProperty(_ReactGCFontIcon, 'GC-textbutton', ['icon-textbutton', 3]), _defineProperty(_ReactGCFontIcon, 'GC-thumbbutton', ['icon-thumbbutton', 4]), _defineProperty(_ReactGCFontIcon, 'GC-tick', 'icon-Tick'), _defineProperty(_ReactGCFontIcon, 'GC-trash', 'icon-Trash'), _defineProperty(_ReactGCFontIcon, 'GC-trash2', 'icon-Trash2'), _defineProperty(_ReactGCFontIcon, 'GC-underLine', 'icon-UnderLine'), _defineProperty(_ReactGCFontIcon, 'GC-video', 'icon-Video'), _defineProperty(_ReactGCFontIcon, 'GC-video2', 'icon-Video2'), _defineProperty(_ReactGCFontIcon, 'GC-videobutton', ['icon-videobutton', 3]), _defineProperty(_ReactGCFontIcon, 'GC-webhook', ['icon-webhook', 4]), _defineProperty(_ReactGCFontIcon, 'GC-zap', 'icon-Zap'), _defineProperty(_ReactGCFontIcon, 'GC-zoomin', 'icon-Zoomin'), _defineProperty(_ReactGCFontIcon, 'GC-zoomout', 'icon-Zoomout'), _defineProperty(_ReactGCFontIcon, 'GC-audio', 'icon-audio'), _defineProperty(_ReactGCFontIcon, 'GC-download', 'icon-download'), _defineProperty(_ReactGCFontIcon, 'GC-faq', ['icon-faq', 3]), _defineProperty(_ReactGCFontIcon, 'GC-file', 'icon-file'), _defineProperty(_ReactGCFontIcon, "GC-image", 'icon-image'), _defineProperty(_ReactGCFontIcon, 'GC-location', 'icon-location'), _defineProperty(_ReactGCFontIcon, 'GC-message', ['icon-message', 2]), _defineProperty(_ReactGCFontIcon, 'GC-note', 'icon-note'), _defineProperty(_ReactGCFontIcon, 'GC-rightarrow', 'icon-rightarrow'), _defineProperty(_ReactGCFontIcon, 'GC-text', 'icon-text'), _defineProperty(_ReactGCFontIcon, 'GC-hearteyes', ['icon-hearteyes', 8]), _defineProperty(_ReactGCFontIcon, 'GC-neutralface', ['icon-neutralface', 4]), _defineProperty(_ReactGCFontIcon, 'GC-slightfrowning', ['icon-slightfrowning', 4]), _defineProperty(_ReactGCFontIcon, 'GC-slightsmile', ['icon-slightsmile', 4]), _defineProperty(_ReactGCFontIcon, 'GC-starfrowing', ['icon-starfrowing', 4]), _defineProperty(_ReactGCFontIcon, 'GC-starheart', ['icon-starheart', 8]), _defineProperty(_ReactGCFontIcon, 'GC-starneutral', ['icon-starneutral', 5]), _defineProperty(_ReactGCFontIcon, 'GC-starsmile', ['icon-starsmile', 4]), _defineProperty(_ReactGCFontIcon, 'GC-starunamused', ['icon-starunamused', 4]), _defineProperty(_ReactGCFontIcon, 'GC-thumbsdown', ['icon-thumbsdown', 2]), _defineProperty(_ReactGCFontIcon, 'GC-thumbsup', ['icon-thumbsup', 2]), _defineProperty(_ReactGCFontIcon, 'GC-unamused', ['icon-unamused', 4]), _defineProperty(_ReactGCFontIcon, 'GC-gcLogo', ['icon-gcLogo', 2]), _defineProperty(_ReactGCFontIcon, 'GC-button', ['icon-button', 2]), _ReactGCFontIcon),
|
|
1744
|
+
}, _defineProperty(_ReactGCFontIcon, "GC-duplicate", 'icon-Duplicate'), _defineProperty(_ReactGCFontIcon, 'GC-emojismile', ['icon-EmojiSmile', 3]), _defineProperty(_ReactGCFontIcon, 'GC-flag', 'icon-Flag'), _defineProperty(_ReactGCFontIcon, 'GC-fullscreen', 'icon-FullScreen'), _defineProperty(_ReactGCFontIcon, 'GC-grid', 'icon-Grid'), _defineProperty(_ReactGCFontIcon, 'GC-home', 'icon-Home'), _defineProperty(_ReactGCFontIcon, 'GC-image', 'icon-Image'), _defineProperty(_ReactGCFontIcon, 'GC-imagebutton', ['icon-imagebutton', 5]), _defineProperty(_ReactGCFontIcon, 'GC-info', 'icon-Info'), _defineProperty(_ReactGCFontIcon, 'GC-inputaudio', ['icon-inputaudio', 4]), _defineProperty(_ReactGCFontIcon, 'GC-inputcurrency', ['icon-inputcurrency', 3]), _defineProperty(_ReactGCFontIcon, 'GC-inputimage', ['icon-inputimage', 5]), _defineProperty(_ReactGCFontIcon, 'GC-inputmail', ['icon-inputmail', 4]), _defineProperty(_ReactGCFontIcon, 'GC-inputnumber', ['icon-inputnumber', 3]), _defineProperty(_ReactGCFontIcon, 'GC-inputslider', ['icon-inputslider', 4]), _defineProperty(_ReactGCFontIcon, 'GC-inputtext', ['icon-inputtext', 3]), _defineProperty(_ReactGCFontIcon, 'GC-inputurl', ['icon-inputurl', 4]), _defineProperty(_ReactGCFontIcon, 'GC-inputvideo', ['icon-inputvideo', 3]), _defineProperty(_ReactGCFontIcon, 'GC-italic', 'icon-Italic'), _defineProperty(_ReactGCFontIcon, 'GC-jump', ['icon-jump', 3]), _defineProperty(_ReactGCFontIcon, 'GC-layer', 'icon-Layer'), _defineProperty(_ReactGCFontIcon, 'GC-link', 'icon-Link'), _defineProperty(_ReactGCFontIcon, 'GC-list', 'icon-List'), _defineProperty(_ReactGCFontIcon, 'GC-maximize', 'icon-Maximize'), _defineProperty(_ReactGCFontIcon, 'GC-minimize', 'icon-Minimize'), _defineProperty(_ReactGCFontIcon, 'GC-mobile', 'icon-Mobile'), _defineProperty(_ReactGCFontIcon, 'GC-navigation', 'icon-Navigation'), _defineProperty(_ReactGCFontIcon, 'GC-pathdivider', ['icon-pathdivider', 3]), _defineProperty(_ReactGCFontIcon, 'GC-pen', 'icon-Pen'), _defineProperty(_ReactGCFontIcon, 'GC-plus', 'icon-Plus'), _defineProperty(_ReactGCFontIcon, 'GC-questioncircle', 'icon-QuestionCircle'), _defineProperty(_ReactGCFontIcon, 'GC-refresh', 'icon-Refresh'), _defineProperty(_ReactGCFontIcon, 'GC-search', 'icon-Search'), _defineProperty(_ReactGCFontIcon, 'GC-starbutton', ['icon-starbutton', 3]), _defineProperty(_ReactGCFontIcon, 'GC-textbutton', ['icon-textbutton', 3]), _defineProperty(_ReactGCFontIcon, 'GC-thumbbutton', ['icon-thumbbutton', 4]), _defineProperty(_ReactGCFontIcon, 'GC-tick', 'icon-Tick'), _defineProperty(_ReactGCFontIcon, 'GC-trash', 'icon-Trash'), _defineProperty(_ReactGCFontIcon, 'GC-trash2', 'icon-Trash2'), _defineProperty(_ReactGCFontIcon, 'GC-underLine', 'icon-UnderLine'), _defineProperty(_ReactGCFontIcon, 'GC-video', 'icon-Video'), _defineProperty(_ReactGCFontIcon, 'GC-video2', 'icon-Video2'), _defineProperty(_ReactGCFontIcon, 'GC-videobutton', ['icon-videobutton', 3]), _defineProperty(_ReactGCFontIcon, 'GC-webhook', ['icon-webhook', 4]), _defineProperty(_ReactGCFontIcon, 'GC-zap', 'icon-Zap'), _defineProperty(_ReactGCFontIcon, 'GC-zoomin', 'icon-Zoomin'), _defineProperty(_ReactGCFontIcon, 'GC-zoomout', 'icon-Zoomout'), _defineProperty(_ReactGCFontIcon, 'GC-audio', 'icon-audio'), _defineProperty(_ReactGCFontIcon, 'GC-download', 'icon-download'), _defineProperty(_ReactGCFontIcon, 'GC-faq', ['icon-faq', 3]), _defineProperty(_ReactGCFontIcon, 'GC-file', 'icon-file'), _defineProperty(_ReactGCFontIcon, "GC-image", 'icon-image'), _defineProperty(_ReactGCFontIcon, 'GC-location', 'icon-location'), _defineProperty(_ReactGCFontIcon, 'GC-message', ['icon-message', 2]), _defineProperty(_ReactGCFontIcon, 'GC-note', 'icon-note'), _defineProperty(_ReactGCFontIcon, 'GC-rightarrow', 'icon-rightarrow'), _defineProperty(_ReactGCFontIcon, 'GC-text', 'icon-text'), _defineProperty(_ReactGCFontIcon, 'GC-hearteyes', ['icon-hearteyes', 8]), _defineProperty(_ReactGCFontIcon, 'GC-neutralface', ['icon-neutralface', 4]), _defineProperty(_ReactGCFontIcon, 'GC-slightfrowning', ['icon-slightfrowning', 4]), _defineProperty(_ReactGCFontIcon, 'GC-slightsmile', ['icon-slightsmile', 4]), _defineProperty(_ReactGCFontIcon, 'GC-starfrowing', ['icon-starfrowing', 4]), _defineProperty(_ReactGCFontIcon, 'GC-starheart', ['icon-starheart', 8]), _defineProperty(_ReactGCFontIcon, 'GC-starneutral', ['icon-starneutral', 5]), _defineProperty(_ReactGCFontIcon, 'GC-starsmile', ['icon-starsmile', 4]), _defineProperty(_ReactGCFontIcon, 'GC-starunamused', ['icon-starunamused', 4]), _defineProperty(_ReactGCFontIcon, 'GC-thumbsdown', ['icon-thumbsdown', 2]), _defineProperty(_ReactGCFontIcon, 'GC-thumbsup', ['icon-thumbsup', 2]), _defineProperty(_ReactGCFontIcon, 'GC-unamused', ['icon-unamused', 4]), _defineProperty(_ReactGCFontIcon, 'GC-gcLogo', ['icon-gcLogo', 2]), _defineProperty(_ReactGCFontIcon, 'GC-button', ['icon-button', 2]), _defineProperty(_ReactGCFontIcon, 'GC-cloud', 'icon-cloud'), _defineProperty(_ReactGCFontIcon, 'GC-dynamicCard', ['icon-dynamicCard', 6]), _defineProperty(_ReactGCFontIcon, 'GC-staticCard', ['icon-staticCard', 10]), _defineProperty(_ReactGCFontIcon, 'GC-dynamicInfo', ['icon-dynamicInfo', 5]), _defineProperty(_ReactGCFontIcon, 'GC-staticInfo', ['icon-staticInfo', 9]), _defineProperty(_ReactGCFontIcon, 'GC-object', 'icon-object'), _defineProperty(_ReactGCFontIcon, 'GC-number', 'icon-number'), _defineProperty(_ReactGCFontIcon, 'GC-arrayOfString', 'icon-arrayOfString'), _defineProperty(_ReactGCFontIcon, 'GC-arrayOfObject', 'icon-arrayOfObject'), _defineProperty(_ReactGCFontIcon, 'GC-inputFile', ['icon-inputFile', 2]), _ReactGCFontIcon),
|
|
1735
1745
|
ReactTwotoneIcon: {
|
|
1736
1746
|
'ZD-TT-call': ['icon-chCall', 2],
|
|
1737
1747
|
'ZD-TT-callIn': ['icon-chCallIn', 3],
|
|
@@ -1824,7 +1834,13 @@ var FontFactory = {
|
|
|
1824
1834
|
'ZD-TT-triangleAlert': ['icon-triangleAlert', 2],
|
|
1825
1835
|
'ZD-TT-questionStroke': ['icon-QuestionStroke', 2],
|
|
1826
1836
|
'ZD-TT-annoncement': ['icon-annoncement', 2],
|
|
1827
|
-
'ZD-TT-moreApps': ['icon-moreApps', 2]
|
|
1837
|
+
'ZD-TT-moreApps': ['icon-moreApps', 2],
|
|
1838
|
+
'ZD-TT-reply': ['icon-reply', 2],
|
|
1839
|
+
'ZD-TT-skills': ['icon-skills', 2],
|
|
1840
|
+
'ZD-TT-instaIM': ['icon-instaIM', 3],
|
|
1841
|
+
'ZD-TT-instaIMIn': ['icon-instaIM', 3],
|
|
1842
|
+
'ZD-TT-instaIMOut': ['icon-instaIM', 3],
|
|
1843
|
+
'ZD-TT-instaIMMissed': ['icon-instaIM', 3]
|
|
1828
1844
|
}
|
|
1829
1845
|
};
|
|
1830
1846
|
exports.FontFactory = FontFactory;
|
package/lib/Icon/FontIcon.js
CHANGED
|
@@ -15,25 +15,25 @@ var _IconModule = _interopRequireDefault(require("./Icon.module.css"));
|
|
|
15
15
|
|
|
16
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
17
|
|
|
18
|
-
function _typeof(obj) { "@babel/helpers - typeof";
|
|
18
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
19
19
|
|
|
20
20
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
21
|
|
|
22
22
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
23
23
|
|
|
24
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25
25
|
|
|
26
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
26
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
27
27
|
|
|
28
28
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
29
|
|
|
30
30
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
31
31
|
|
|
32
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
32
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
33
33
|
|
|
34
34
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
35
|
|
|
36
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
36
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
37
|
|
|
38
38
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
39
|
|
package/lib/Icon/Icon.module.css
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
/* $Id$ */
|
|
2
|
-
.basic {
|
|
3
|
-
speak: none;
|
|
4
|
-
font-style: normal;
|
|
5
|
-
font-weight: normal;
|
|
6
|
-
font-variant: normal;
|
|
7
|
-
text-transform: none;
|
|
8
|
-
line-height: 1;
|
|
9
|
-
-webkit-font-smoothing: antialiased;
|
|
10
|
-
-moz-osx-font-smoothing: grayscale;
|
|
11
|
-
display: inline-block;
|
|
12
|
-
vertical-align: middle;
|
|
13
|
-
font-size: var(--zd-iconfont-size, inherit);
|
|
14
|
-
}
|
|
15
|
-
.fbold {
|
|
16
|
-
font-weight: bold;
|
|
17
|
-
}
|
|
18
|
-
.cursor {
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
}
|
|
21
|
-
.red :global .path2::before,
|
|
22
|
-
.red2 :global .path3::before {
|
|
23
|
-
color: #de3535 !important;
|
|
24
|
-
}
|
|
25
|
-
.green :global .path2::before,
|
|
26
|
-
.green2 :global .path3::before {
|
|
27
|
-
color: #26a942 !important;
|
|
28
|
-
}
|
|
29
|
-
.blue :global .path2::before,
|
|
30
|
-
.blue2 :global .path3::before {
|
|
31
|
-
color: #0a73eb !important;
|
|
32
|
-
}
|
|
33
|
-
.lightBlue :global .path2::before,
|
|
34
|
-
.lightBlue2 :global .path3::before {
|
|
35
|
-
color: #00acda !important;
|
|
36
|
-
}
|
|
37
|
-
[dir='rtl'] .rtl {
|
|
38
|
-
transform: rotateY(180deg);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/* .twotwo :global .path1:before {
|
|
42
|
-
color: red !important;
|
|
43
|
-
} */
|
|
1
|
+
/* $Id$ */
|
|
2
|
+
.basic {
|
|
3
|
+
speak: none;
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
font-variant: normal;
|
|
7
|
+
text-transform: none;
|
|
8
|
+
line-height: 1;
|
|
9
|
+
-webkit-font-smoothing: antialiased;
|
|
10
|
+
-moz-osx-font-smoothing: grayscale;
|
|
11
|
+
display: inline-block;
|
|
12
|
+
vertical-align: middle;
|
|
13
|
+
font-size: var(--zd-iconfont-size, inherit);
|
|
14
|
+
}
|
|
15
|
+
.fbold {
|
|
16
|
+
font-weight: bold;
|
|
17
|
+
}
|
|
18
|
+
.cursor {
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
21
|
+
.red :global .path2::before,
|
|
22
|
+
.red2 :global .path3::before {
|
|
23
|
+
color: #de3535 !important;
|
|
24
|
+
}
|
|
25
|
+
.green :global .path2::before,
|
|
26
|
+
.green2 :global .path3::before {
|
|
27
|
+
color: #26a942 !important;
|
|
28
|
+
}
|
|
29
|
+
.blue :global .path2::before,
|
|
30
|
+
.blue2 :global .path3::before {
|
|
31
|
+
color: #0a73eb !important;
|
|
32
|
+
}
|
|
33
|
+
.lightBlue :global .path2::before,
|
|
34
|
+
.lightBlue2 :global .path3::before {
|
|
35
|
+
color: #00acda !important;
|
|
36
|
+
}
|
|
37
|
+
[dir='rtl'] .rtl {
|
|
38
|
+
transform: rotateY(180deg);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* .twotwo :global .path1:before {
|
|
42
|
+
color: red !important;
|
|
43
|
+
} */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
function _typeof(obj) { "@babel/helpers - typeof";
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
4
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
@@ -17,19 +17,19 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
17
17
|
|
|
18
18
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
19
19
|
|
|
20
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
20
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
21
21
|
|
|
22
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
22
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
23
23
|
|
|
24
24
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
25
25
|
|
|
26
26
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
27
27
|
|
|
28
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
28
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
29
29
|
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
|
|
32
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
32
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
33
33
|
|
|
34
34
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
35
35
|
|
package/lib/Icon/index.js
CHANGED
|
@@ -15,7 +15,7 @@ var _FontIcon = _interopRequireDefault(require("./FontIcon"));
|
|
|
15
15
|
|
|
16
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
17
|
|
|
18
|
-
function _typeof(obj) { "@babel/helpers - typeof";
|
|
18
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
19
19
|
|
|
20
20
|
function getAddforms() {
|
|
21
21
|
return require('../../assets/react/zd-font-react-addforms.module.css');
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
.font_grid {
|
|
2
|
-
border-radius: 3px;
|
|
3
|
-
text-align: center;
|
|
4
|
-
width: 8.0625rem;
|
|
5
|
-
box-shadow: 0 0 14px -1px #00000014;
|
|
6
|
-
margin: 0 1.125rem 1.125rem 0;
|
|
7
|
-
padding: 1.375rem 0.625rem 1.3125rem;
|
|
8
|
-
display: inline-block;
|
|
9
|
-
position: relative;
|
|
10
|
-
overflow: hidden;
|
|
11
|
-
}
|
|
12
|
-
.font_grid > span {
|
|
13
|
-
display: inline-block;
|
|
14
|
-
}
|
|
15
|
-
.font_grid p {
|
|
16
|
-
margin-top: 0.9375rem;
|
|
17
|
-
font: 0.8125rem Semibold;
|
|
18
|
-
color: #2d313e;
|
|
19
|
-
overflow: hidden;
|
|
20
|
-
white-space: nowrap;
|
|
21
|
-
text-overflow: ellipsis;
|
|
22
|
-
}
|
|
1
|
+
.font_grid {
|
|
2
|
+
border-radius: 3px;
|
|
3
|
+
text-align: center;
|
|
4
|
+
width: 8.0625rem;
|
|
5
|
+
box-shadow: 0 0 14px -1px #00000014;
|
|
6
|
+
margin: 0 1.125rem 1.125rem 0;
|
|
7
|
+
padding: 1.375rem 0.625rem 1.3125rem;
|
|
8
|
+
display: inline-block;
|
|
9
|
+
position: relative;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
}
|
|
12
|
+
.font_grid > span {
|
|
13
|
+
display: inline-block;
|
|
14
|
+
}
|
|
15
|
+
.font_grid p {
|
|
16
|
+
margin-top: 0.9375rem;
|
|
17
|
+
font: 0.8125rem Semibold;
|
|
18
|
+
color: #2d313e;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
white-space: nowrap;
|
|
21
|
+
text-overflow: ellipsis;
|
|
22
|
+
}
|
package/lib/index.js
CHANGED
|
@@ -3,34 +3,34 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
Object.defineProperty(exports, "
|
|
6
|
+
Object.defineProperty(exports, "Icon", {
|
|
7
7
|
enumerable: true,
|
|
8
8
|
get: function get() {
|
|
9
|
-
return
|
|
9
|
+
return _Icon["default"];
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
-
Object.defineProperty(exports, "
|
|
12
|
+
Object.defineProperty(exports, "Icon__default", {
|
|
13
13
|
enumerable: true,
|
|
14
14
|
get: function get() {
|
|
15
|
-
return
|
|
15
|
+
return _Icon__default["default"];
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
|
-
Object.defineProperty(exports, "
|
|
18
|
+
Object.defineProperty(exports, "React", {
|
|
19
19
|
enumerable: true,
|
|
20
20
|
get: function get() {
|
|
21
|
-
return
|
|
21
|
+
return _react["default"];
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
|
-
Object.defineProperty(exports, "
|
|
24
|
+
Object.defineProperty(exports, "ReactDOM", {
|
|
25
25
|
enumerable: true,
|
|
26
26
|
get: function get() {
|
|
27
|
-
return
|
|
27
|
+
return _reactDom["default"];
|
|
28
28
|
}
|
|
29
29
|
});
|
|
30
|
-
Object.defineProperty(exports, "
|
|
30
|
+
Object.defineProperty(exports, "renderToStaticMarkup", {
|
|
31
31
|
enumerable: true,
|
|
32
32
|
get: function get() {
|
|
33
|
-
return
|
|
33
|
+
return _server.renderToStaticMarkup;
|
|
34
34
|
}
|
|
35
35
|
});
|
|
36
36
|
|