@@ -3,237 +3,12 @@ import {
3
3
Format ,
4
4
IosIdiom ,
5
5
IosOutputAssetTemplate ,
6
- IosOutputAssetTemplateIcon ,
7
6
IosOutputAssetTemplateSplash ,
8
7
Orientation ,
9
8
Platform ,
10
9
Theme ,
11
10
} from '../../definitions' ;
12
11
13
- /**
14
- * 20pt Icon
15
- *
16
- * - iPhone Notification (iOS 7-15)
17
- * - iPad Notification (iOS 7-15)
18
- */
19
- export const IOS_20_PT_ICON : IosOutputAssetTemplateIcon = {
20
- platform : Platform . Ios ,
21
- idiom : IosIdiom . iPad ,
22
- kind : AssetKind . NotificationIcon ,
23
-
24
- format : Format . Png ,
25
- width : 20 ,
26
- height : 20 ,
27
- scale : 1 ,
28
- } ;
29
-
30
- export const IOS_20_PT_2X_ICON : IosOutputAssetTemplate = {
31
- platform : Platform . Ios ,
32
- idiom : IosIdiom . iPhone ,
33
- kind : AssetKind . NotificationIcon ,
34
-
35
- format : Format . Png ,
36
- width : 40 ,
37
- height : 40 ,
38
- scale : 2 ,
39
- } ;
40
-
41
- export const IOS_20_PT_2X_1_ICON : IosOutputAssetTemplate = {
42
- platform : Platform . Ios ,
43
- idiom : IosIdiom . iPad ,
44
- kind : AssetKind . NotificationIcon ,
45
-
46
- format : Format . Png ,
47
- width : 40 ,
48
- height : 40 ,
49
- scale : 2 ,
50
- } ;
51
-
52
- export const IOS_20_PT_3X_ICON : IosOutputAssetTemplate = {
53
- platform : Platform . Ios ,
54
- idiom : IosIdiom . iPhone ,
55
- kind : AssetKind . NotificationIcon ,
56
-
57
- format : Format . Png ,
58
- width : 60 ,
59
- height : 60 ,
60
- scale : 3 ,
61
- } ;
62
-
63
- /**
64
- * 29pt Icon
65
- *
66
- * - iPhone Settings (iOS 7-15)
67
- * - iPad Settings (iOS 7-15)
68
- * - Apple Watch Companion Settings
69
- * - Apple Watch Notification Center
70
- */
71
- export const IOS_29_PT_ICON : IosOutputAssetTemplate = {
72
- platform : Platform . Ios ,
73
- idiom : IosIdiom . iPad ,
74
- kind : AssetKind . SettingsIcon ,
75
-
76
- format : Format . Png ,
77
- width : 29 ,
78
- height : 29 ,
79
- scale : 1 ,
80
- } ;
81
-
82
- export const IOS_29_PT_2X_ICON : IosOutputAssetTemplate = {
83
- platform : Platform . Ios ,
84
- idiom : IosIdiom . iPhone ,
85
- kind : AssetKind . SettingsIcon ,
86
-
87
- format : Format . Png ,
88
- width : 58 ,
89
- height : 58 ,
90
- scale : 2 ,
91
- } ;
92
-
93
- export const IOS_29_PT_2X_1_ICON : IosOutputAssetTemplate = {
94
- platform : Platform . Ios ,
95
- idiom : IosIdiom . iPad ,
96
- kind : AssetKind . SettingsIcon ,
97
-
98
- format : Format . Png ,
99
- width : 58 ,
100
- height : 58 ,
101
- scale : 2 ,
102
- } ;
103
-
104
- export const IOS_29_PT_3X_ICON : IosOutputAssetTemplate = {
105
- platform : Platform . Ios ,
106
- idiom : IosIdiom . iPhone ,
107
- kind : AssetKind . SettingsIcon ,
108
-
109
- format : Format . Png ,
110
- width : 87 ,
111
- height : 87 ,
112
- scale : 3 ,
113
- } ;
114
-
115
- /**
116
- * 40pt Icon
117
- *
118
- * - iPhone Spotlight (iOS 7-15)
119
- * - iPad Spotlight (iOS 7-15)
120
- * - Apple Watch Home Screen
121
- */
122
- export const IOS_40_PT_ICON : IosOutputAssetTemplate = {
123
- platform : Platform . Ios ,
124
- idiom : IosIdiom . iPad ,
125
- kind : AssetKind . SpotlightIcon ,
126
-
127
- format : Format . Png ,
128
- width : 40 ,
129
- height : 40 ,
130
- scale : 1 ,
131
- } ;
132
-
133
- export const IOS_40_PT_2X_ICON : IosOutputAssetTemplate = {
134
- platform : Platform . Ios ,
135
- idiom : IosIdiom . iPhone ,
136
- kind : AssetKind . SpotlightIcon ,
137
-
138
- format : Format . Png ,
139
- width : 80 ,
140
- height : 80 ,
141
- scale : 2 ,
142
- } ;
143
-
144
- export const IOS_40_PT_2X_1_ICON : IosOutputAssetTemplate = {
145
- platform : Platform . Ios ,
146
- idiom : IosIdiom . iPad ,
147
- kind : AssetKind . SpotlightIcon ,
148
-
149
- format : Format . Png ,
150
- width : 80 ,
151
- height : 80 ,
152
- scale : 2 ,
153
- } ;
154
-
155
- export const IOS_40_PT_3X_ICON : IosOutputAssetTemplate = {
156
- platform : Platform . Ios ,
157
- idiom : IosIdiom . iPhone ,
158
- kind : AssetKind . SpotlightIcon ,
159
-
160
- format : Format . Png ,
161
- width : 120 ,
162
- height : 120 ,
163
- scale : 3 ,
164
- } ;
165
-
166
- /**
167
- * 60pt Icon
168
- *
169
- * - iPhone App (iOS 7-15)
170
- */
171
-
172
- export const IOS_60_PT_2X_ICON : IosOutputAssetTemplate = {
173
- platform : Platform . Ios ,
174
- idiom : IosIdiom . iPhone ,
175
- kind : AssetKind . Icon ,
176
-
177
- format : Format . Png ,
178
- width : 120 ,
179
- height : 120 ,
180
- scale : 2 ,
181
- } ;
182
-
183
- export const IOS_60_PT_3X_ICON : IosOutputAssetTemplate = {
184
- platform : Platform . Ios ,
185
- idiom : IosIdiom . iPhone ,
186
- kind : AssetKind . Icon ,
187
-
188
- format : Format . Png ,
189
- width : 180 ,
190
- height : 180 ,
191
- scale : 3 ,
192
- } ;
193
-
194
- /**
195
- * 76pt Icon
196
- *
197
- * - iPad App (iOS 7+)
198
- */
199
- export const IOS_76_PT_1X_ICON : IosOutputAssetTemplate = {
200
- platform : Platform . Ios ,
201
- idiom : IosIdiom . iPad ,
202
- kind : AssetKind . Icon ,
203
-
204
- format : Format . Png ,
205
- width : 76 ,
206
- height : 76 ,
207
- scale : 1 ,
208
- } ;
209
-
210
- export const IOS_76_PT_2X_ICON : IosOutputAssetTemplate = {
211
- platform : Platform . Ios ,
212
- idiom : IosIdiom . iPad ,
213
- kind : AssetKind . Icon ,
214
-
215
- format : Format . Png ,
216
- width : 152 ,
217
- height : 152 ,
218
- scale : 2 ,
219
- } ;
220
-
221
- /**
222
- * 83.5pt Icon
223
- *
224
- * iPad Pro (12.9-inch)
225
- */
226
- export const IOS_83_5_PT_2X_ICON : IosOutputAssetTemplate = {
227
- platform : Platform . Ios ,
228
- idiom : IosIdiom . iPad ,
229
- kind : AssetKind . Icon ,
230
-
231
- format : Format . Png ,
232
- width : 167 ,
233
- height : 167 ,
234
- scale : 2 ,
235
- } ;
236
-
237
12
/**
238
13
* 1024px Icon
239
14
*
0 commit comments