@tuya-miniapp/smart-ui 1.2.2 → 1.3.0-beta-2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. package/dist/action-sheet/index.js +7 -3
  2. package/dist/battery/index.js +5 -3
  3. package/dist/calendar/calendar.wxml +1 -0
  4. package/dist/calendar/components/month/index.d.ts +1 -0
  5. package/dist/calendar/components/month/index.js +11 -3
  6. package/dist/calendar/components/month/index.wxs +1 -1
  7. package/dist/calendar/index.js +13 -3
  8. package/dist/calendar/index.wxs +1 -1
  9. package/dist/calendar/utils.d.ts +1 -0
  10. package/dist/calendar/utils.js +11 -1
  11. package/dist/common/theme/dark.d.ts +344 -0
  12. package/dist/common/theme/dark.js +343 -0
  13. package/dist/common/theme/light.d.ts +344 -0
  14. package/dist/common/theme/light.js +343 -0
  15. package/dist/config-provider/index.wxs +7 -2
  16. package/dist/wxs/is-app-theme-var.wxs +8 -0
  17. package/dist/wxs/style.wxs +4 -0
  18. package/dist/wxs/utils.wxs +3 -1
  19. package/lib/action-sheet/index.js +7 -3
  20. package/lib/battery/index.js +5 -3
  21. package/lib/calendar/calendar.wxml +1 -0
  22. package/lib/calendar/components/month/index.d.ts +1 -0
  23. package/lib/calendar/components/month/index.js +10 -2
  24. package/lib/calendar/components/month/index.wxs +1 -1
  25. package/lib/calendar/index.js +13 -3
  26. package/lib/calendar/index.wxs +1 -1
  27. package/lib/calendar/utils.d.ts +1 -0
  28. package/lib/calendar/utils.js +13 -2
  29. package/lib/common/theme/dark.d.ts +344 -0
  30. package/lib/common/theme/dark.js +345 -0
  31. package/lib/common/theme/light.d.ts +344 -0
  32. package/lib/common/theme/light.js +345 -0
  33. package/lib/config-provider/index.wxs +7 -2
  34. package/lib/wxs/is-app-theme-var.wxs +8 -0
  35. package/lib/wxs/style.wxs +4 -0
  36. package/lib/wxs/utils.wxs +3 -1
  37. package/package.json +1 -1
@@ -54,10 +54,14 @@ SmartComponent({
54
54
  },
55
55
  mounted() {
56
56
  var _a;
57
+ const ty = wx;
57
58
  // @ts-ignore
58
- const themeInfo = (_a = ty === null || ty === void 0 ? void 0 : ty.getThemeInfo()) !== null && _a !== void 0 ? _a : {};
59
- const checkMarkIconColor = this.data.activeColor || themeInfo['--app-M1'] || '#3678E3';
60
- this.setData({ checkMarkIconColor });
59
+ if (ty && typeof ty.getThemeInfo === 'function') {
60
+ // @ts-ignore
61
+ const themeInfo = (_a = ty === null || ty === void 0 ? void 0 : ty.getThemeInfo()) !== null && _a !== void 0 ? _a : {};
62
+ const checkMarkIconColor = this.data.activeColor || themeInfo['--app-M1'] || '#3678E3';
63
+ this.setData({ checkMarkIconColor });
64
+ }
61
65
  },
62
66
  methods: {
63
67
  onSelect(event) {
@@ -64,9 +64,11 @@ SmartComponent({
64
64
  },
65
65
  getBgColor() {
66
66
  const WX = wx;
67
- const bgColor = WX.getThemeInfo();
68
- if (bgColor && bgColor['--app-B1-N3']) {
69
- return bgColor['--app-B1-N3'];
67
+ if (WX && typeof WX.getThemeInfo === 'function') {
68
+ const bgColor = WX === null || WX === void 0 ? void 0 : WX.getThemeInfo();
69
+ if (bgColor && bgColor['--app-B1-N3']) {
70
+ return bgColor['--app-B1-N3'];
71
+ }
70
72
  }
71
73
  const d = wx.getSystemInfoSync();
72
74
  if (d && d.theme === 'light') {
@@ -42,6 +42,7 @@
42
42
  allowSameDay="{{ allowSameDay }}"
43
43
  showMonthTitle="{{ index !== 0 || !showSubtitle }}"
44
44
  firstDayOfWeek="{{ firstDayOfWeek }}"
45
+ dayClassMap="{{ dayClassMap }}"
45
46
  bind:click="onClickDay"
46
47
  />
47
48
  </scroll-view>
@@ -3,4 +3,5 @@ export interface Day {
3
3
  type: string;
4
4
  text: number;
5
5
  bottomInfo?: string;
6
+ className?: string;
6
7
  }
@@ -1,5 +1,5 @@
1
1
  import { SmartComponent } from '../../../common/component';
2
- import { getMonthEndDay, compareDay, getPrevDay, getNextDay, } from '../../utils';
2
+ import { getMonthEndDay, compareDay, getPrevDay, getNextDay, formatDate, } from '../../utils';
3
3
  SmartComponent({
4
4
  props: {
5
5
  date: {
@@ -35,7 +35,11 @@ SmartComponent({
35
35
  },
36
36
  visible: {
37
37
  type: Boolean,
38
- value: true
38
+ value: true,
39
+ },
40
+ dayClassMap: {
41
+ type: null,
42
+ observer: 'setDays',
39
43
  },
40
44
  subFormatter: String,
41
45
  rangeStart: String,
@@ -56,6 +60,7 @@ SmartComponent({
56
60
  }
57
61
  },
58
62
  setDays() {
63
+ var _a;
59
64
  const days = [];
60
65
  const startDate = new Date(this.data.date);
61
66
  const year = startDate.getFullYear();
@@ -70,6 +75,7 @@ SmartComponent({
70
75
  text: day,
71
76
  bottomInfo: this.getBottomInfo(type),
72
77
  };
78
+ config.className = (_a = this.data.dayClassMap[formatDate(date)]) !== null && _a !== void 0 ? _a : '';
73
79
  if (this.data.formatter) {
74
80
  config = this.data.formatter(config);
75
81
  }
@@ -152,7 +158,9 @@ SmartComponent({
152
158
  return this.properties.rangeEnd || 'End';
153
159
  }
154
160
  if (type === 'start-end') {
155
- return (this.properties.rangeStart || 'Start') + '/' + (this.properties.rangeEnd || 'End');
161
+ return ((this.properties.rangeStart || 'Start') +
162
+ '/' +
163
+ (this.properties.rangeEnd || 'End'));
156
164
  }
157
165
  }
158
166
  },
@@ -46,7 +46,7 @@ function getDayStyle(type, index, date, rowHeight, color, firstDayOfWeek) {
46
46
  function formatMonthTitle(date, formatter = "YYYY-MM") {
47
47
  date = getDate(date);
48
48
  const year = date.getFullYear();
49
- const month = date.getMonth() + 1 < 10 ? `0${date.getMonth() + 1}` : date.getMonth() + 1 + "";
49
+ const month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1 + "";
50
50
  return formatter.replace('YYYY', year + '').replace('MM', month);
51
51
  }
52
52
 
@@ -33,6 +33,10 @@ SmartComponent({
33
33
  rangeEnd: 'End',
34
34
  },
35
35
  },
36
+ dayClassMap: {
37
+ type: Object,
38
+ value: {},
39
+ },
36
40
  formatter: null,
37
41
  confirmText: {
38
42
  type: String,
@@ -131,7 +135,7 @@ SmartComponent({
131
135
  subtitle: '',
132
136
  currentDate: null,
133
137
  scrollIntoView: '',
134
- visibleIndex: 0
138
+ visibleIndex: 0,
135
139
  },
136
140
  watch: {
137
141
  minDate() {
@@ -173,7 +177,10 @@ SmartComponent({
173
177
  contentObserver.observe('.month', (res) => {
174
178
  if (res.boundingClientRect.top <= res.relativeRect.top) {
175
179
  // @ts-ignore
176
- this.setData({ subtitle: formatMonthTitle(res.dataset.date, this.properties.locale.subFormatter), visibleIndex: res.dataset.index });
180
+ this.setData({
181
+ subtitle: formatMonthTitle(res.dataset.date, this.properties.locale.subFormatter),
182
+ visibleIndex: res.dataset.index,
183
+ });
177
184
  }
178
185
  });
179
186
  },
@@ -231,7 +238,10 @@ SmartComponent({
231
238
  const months = getMonths(minDate, maxDate);
232
239
  months.some((month, index) => {
233
240
  if (compareMonth(month, targetDate) === 0) {
234
- this.setData({ scrollIntoView: `month${index}`, visibleIndex: index });
241
+ this.setData({
242
+ scrollIntoView: `month${index}`,
243
+ visibleIndex: index,
244
+ });
235
245
  return true;
236
246
  }
237
247
  return false;
@@ -37,6 +37,6 @@ function getVisible(visibleIndex, curIndex) {
37
37
 
38
38
  module.exports = {
39
39
  getMonths: getMonths,
40
- getVisible,
40
+ getVisible: getVisible,
41
41
  getButtonDisabled: getButtonDisabled
42
42
  };
@@ -10,3 +10,4 @@ export declare function calcDateNum(date: [Date, Date]): number;
10
10
  export declare function copyDates(dates: Date | Date[]): Date | Date[];
11
11
  export declare function getMonthEndDay(year: number, month: number): number;
12
12
  export declare function getMonths(minDate: number, maxDate: number): number[];
13
+ export declare function formatDate(date: any): string;
@@ -4,7 +4,9 @@ export function formatMonthTitle(date, formatter = 'YYYY-MM') {
4
4
  date = new Date(date);
5
5
  }
6
6
  const year = date.getFullYear();
7
- const month = date.getMonth() + 1 < 10 ? `0${date.getMonth() + 1}` : date.getMonth() + 1 + "";
7
+ const month = date.getMonth() + 1 < 10
8
+ ? `0${date.getMonth() + 1}`
9
+ : date.getMonth() + 1 + '';
8
10
  return formatter.replace('YYYY', year + '').replace('MM', month);
9
11
  }
10
12
  export function compareMonth(date1, date2) {
@@ -83,3 +85,11 @@ export function getMonths(minDate, maxDate) {
83
85
  } while (compareMonth(cursor, maxDate) !== 1);
84
86
  return months;
85
87
  }
88
+ export function formatDate(date) {
89
+ if (!date)
90
+ return '';
91
+ const year = date.getFullYear();
92
+ const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始
93
+ const day = String(date.getDate()).padStart(2, '0');
94
+ return `${year}-${month}-${day}`;
95
+ }
@@ -0,0 +1,344 @@
1
+ declare const _default: {
2
+ '--app-B1_2-N1': string;
3
+ '--app-B1_2-N2': string;
4
+ '--app-B1_2-N3': string;
5
+ '--app-B1_2-N4': string;
6
+ '--app-B1_2-N5': string;
7
+ '--app-B1_2-N6': string;
8
+ '--app-B1_2-N7': string;
9
+ '--app-B1_2-N8': string;
10
+ '--app-B1_2-N9': string;
11
+ '--app-B1_2': string;
12
+ '--app-B1-N1': string;
13
+ '--app-B1-N2': string;
14
+ '--app-B1-N3': string;
15
+ '--app-B1-N4': string;
16
+ '--app-B1-N5': string;
17
+ '--app-B1-N6': string;
18
+ '--app-B1-N7': string;
19
+ '--app-B1-N8': string;
20
+ '--app-B1-N9': string;
21
+ '--app-B1': string;
22
+ '--app-B2_2-N1': string;
23
+ '--app-B2_2-N2': string;
24
+ '--app-B2_2-N3': string;
25
+ '--app-B2_2-N4': string;
26
+ '--app-B2_2-N5': string;
27
+ '--app-B2_2-N6': string;
28
+ '--app-B2_2-N7': string;
29
+ '--app-B2_2-N8': string;
30
+ '--app-B2_2-N9': string;
31
+ '--app-B2_2': string;
32
+ '--app-B2-N1': string;
33
+ '--app-B2-N2': string;
34
+ '--app-B2-N3': string;
35
+ '--app-B2-N4': string;
36
+ '--app-B2-N5': string;
37
+ '--app-B2-N6': string;
38
+ '--app-B2-N7': string;
39
+ '--app-B2-N8': string;
40
+ '--app-B2-N9': string;
41
+ '--app-B2': string;
42
+ '--app-B3_2-N1': string;
43
+ '--app-B3_2-N2': string;
44
+ '--app-B3_2-N3': string;
45
+ '--app-B3_2-N4': string;
46
+ '--app-B3_2-N5': string;
47
+ '--app-B3_2-N6': string;
48
+ '--app-B3_2-N7': string;
49
+ '--app-B3_2-N8': string;
50
+ '--app-B3_2-N9': string;
51
+ '--app-B3_2': string;
52
+ '--app-B3-N1': string;
53
+ '--app-B3-N2': string;
54
+ '--app-B3-N3': string;
55
+ '--app-B3-N4': string;
56
+ '--app-B3-N5': string;
57
+ '--app-B3-N6': string;
58
+ '--app-B3-N7': string;
59
+ '--app-B3-N8': string;
60
+ '--app-B3-N9': string;
61
+ '--app-B3': string;
62
+ '--app-B4_2-N1': string;
63
+ '--app-B4_2-N2': string;
64
+ '--app-B4_2-N3': string;
65
+ '--app-B4_2-N4': string;
66
+ '--app-B4_2-N5': string;
67
+ '--app-B4_2-N6': string;
68
+ '--app-B4_2-N7': string;
69
+ '--app-B4_2-N8': string;
70
+ '--app-B4_2-N9': string;
71
+ '--app-B4_2': string;
72
+ '--app-B4-N1': string;
73
+ '--app-B4-N2': string;
74
+ '--app-B4-N3': string;
75
+ '--app-B4-N4': string;
76
+ '--app-B4-N5': string;
77
+ '--app-B4-N6': string;
78
+ '--app-B4-N7': string;
79
+ '--app-B4-N8': string;
80
+ '--app-B4-N9': string;
81
+ '--app-B4': string;
82
+ '--app-B5_2-N1': string;
83
+ '--app-B5_2-N2': string;
84
+ '--app-B5_2-N3': string;
85
+ '--app-B5_2-N4': string;
86
+ '--app-B5_2-N5': string;
87
+ '--app-B5_2-N6': string;
88
+ '--app-B5_2-N7': string;
89
+ '--app-B5_2-N8': string;
90
+ '--app-B5_2-N9': string;
91
+ '--app-B5_2': string;
92
+ '--app-B5-N1': string;
93
+ '--app-B5-N2': string;
94
+ '--app-B5-N3': string;
95
+ '--app-B5-N4': string;
96
+ '--app-B5-N5': string;
97
+ '--app-B5-N6': string;
98
+ '--app-B5-N7': string;
99
+ '--app-B5-N8': string;
100
+ '--app-B5-N9': string;
101
+ '--app-B5': string;
102
+ '--app-B6_2-N1': string;
103
+ '--app-B6_2-N2': string;
104
+ '--app-B6_2-N3': string;
105
+ '--app-B6_2-N4': string;
106
+ '--app-B6_2-N5': string;
107
+ '--app-B6_2-N6': string;
108
+ '--app-B6_2-N7': string;
109
+ '--app-B6_2-N8': string;
110
+ '--app-B6_2-N9': string;
111
+ '--app-B6_2': string;
112
+ '--app-B6-N1': string;
113
+ '--app-B6-N2': string;
114
+ '--app-B6-N3': string;
115
+ '--app-B6-N4': string;
116
+ '--app-B6-N5': string;
117
+ '--app-B6-N6': string;
118
+ '--app-B6-N7': string;
119
+ '--app-B6-N8': string;
120
+ '--app-B6-N9': string;
121
+ '--app-B6': string;
122
+ '--app-C1_1': string;
123
+ '--app-C1_2': string;
124
+ '--app-C1_3': string;
125
+ '--app-C2_2': string;
126
+ '--app-C2_3': string;
127
+ '--app-C2': string;
128
+ '--app-C3_1': string;
129
+ '--app-C3_2': string;
130
+ '--app-C3_3': string;
131
+ '--app-C3_4': string;
132
+ '--app-I1': string;
133
+ '--app-I2': string;
134
+ '--app-I3': string;
135
+ '--app-I4': string;
136
+ '--app-I5': string;
137
+ '--app-I6': string;
138
+ '--app-I7': string;
139
+ '--app-IC1': string;
140
+ '--app-IC2': string;
141
+ '--app-IC3': string;
142
+ '--app-IC4': string;
143
+ '--app-IC5': string;
144
+ '--app-M1_1-N1': string;
145
+ '--app-M1_1-N2': string;
146
+ '--app-M1_1-N3': string;
147
+ '--app-M1_1-N4': string;
148
+ '--app-M1_1-N5': string;
149
+ '--app-M1_1-N6': string;
150
+ '--app-M1_1-N7': string;
151
+ '--app-M1_1-N8': string;
152
+ '--app-M1_1-N9': string;
153
+ '--app-M1_1': string;
154
+ '--app-M1_2-N1': string;
155
+ '--app-M1_2-N2': string;
156
+ '--app-M1_2-N3': string;
157
+ '--app-M1_2-N4': string;
158
+ '--app-M1_2-N5': string;
159
+ '--app-M1_2-N6': string;
160
+ '--app-M1_2-N7': string;
161
+ '--app-M1_2-N8': string;
162
+ '--app-M1_2-N9': string;
163
+ '--app-M1_2': string;
164
+ '--app-M1-N1': string;
165
+ '--app-M1-N2': string;
166
+ '--app-M1-N3': string;
167
+ '--app-M1-N4': string;
168
+ '--app-M1-N5': string;
169
+ '--app-M1-N6': string;
170
+ '--app-M1-N7': string;
171
+ '--app-M1-N8': string;
172
+ '--app-M1-N9': string;
173
+ '--app-M1': string;
174
+ '--app-M2_1-N1': string;
175
+ '--app-M2_1-N2': string;
176
+ '--app-M2_1-N3': string;
177
+ '--app-M2_1-N4': string;
178
+ '--app-M2_1-N5': string;
179
+ '--app-M2_1-N6': string;
180
+ '--app-M2_1-N7': string;
181
+ '--app-M2_1-N8': string;
182
+ '--app-M2_1-N9': string;
183
+ '--app-M2_1': string;
184
+ '--app-M2_2-N1': string;
185
+ '--app-M2_2-N2': string;
186
+ '--app-M2_2-N3': string;
187
+ '--app-M2_2-N4': string;
188
+ '--app-M2_2-N5': string;
189
+ '--app-M2_2-N6': string;
190
+ '--app-M2_2-N7': string;
191
+ '--app-M2_2-N8': string;
192
+ '--app-M2_2-N9': string;
193
+ '--app-M2_2': string;
194
+ '--app-M2-N1': string;
195
+ '--app-M2-N2': string;
196
+ '--app-M2-N3': string;
197
+ '--app-M2-N4': string;
198
+ '--app-M2-N5': string;
199
+ '--app-M2-N6': string;
200
+ '--app-M2-N7': string;
201
+ '--app-M2-N8': string;
202
+ '--app-M2-N9': string;
203
+ '--app-M2': string;
204
+ '--app-M3_1-N1': string;
205
+ '--app-M3_1-N2': string;
206
+ '--app-M3_1-N3': string;
207
+ '--app-M3_1-N4': string;
208
+ '--app-M3_1-N5': string;
209
+ '--app-M3_1-N6': string;
210
+ '--app-M3_1-N7': string;
211
+ '--app-M3_1-N8': string;
212
+ '--app-M3_1-N9': string;
213
+ '--app-M3_1': string;
214
+ '--app-M3_2-N1': string;
215
+ '--app-M3_2-N2': string;
216
+ '--app-M3_2-N3': string;
217
+ '--app-M3_2-N4': string;
218
+ '--app-M3_2-N5': string;
219
+ '--app-M3_2-N6': string;
220
+ '--app-M3_2-N7': string;
221
+ '--app-M3_2-N8': string;
222
+ '--app-M3_2-N9': string;
223
+ '--app-M3_2': string;
224
+ '--app-M3-N1': string;
225
+ '--app-M3-N2': string;
226
+ '--app-M3-N3': string;
227
+ '--app-M3-N4': string;
228
+ '--app-M3-N5': string;
229
+ '--app-M3-N6': string;
230
+ '--app-M3-N7': string;
231
+ '--app-M3-N8': string;
232
+ '--app-M3-N9': string;
233
+ '--app-M3': string;
234
+ '--app-M4_1-N1': string;
235
+ '--app-M4_1-N2': string;
236
+ '--app-M4_1-N3': string;
237
+ '--app-M4_1-N4': string;
238
+ '--app-M4_1-N5': string;
239
+ '--app-M4_1-N6': string;
240
+ '--app-M4_1-N7': string;
241
+ '--app-M4_1-N8': string;
242
+ '--app-M4_1-N9': string;
243
+ '--app-M4_1': string;
244
+ '--app-M4_2-N1': string;
245
+ '--app-M4_2-N2': string;
246
+ '--app-M4_2-N3': string;
247
+ '--app-M4_2-N4': string;
248
+ '--app-M4_2-N5': string;
249
+ '--app-M4_2-N6': string;
250
+ '--app-M4_2-N7': string;
251
+ '--app-M4_2-N8': string;
252
+ '--app-M4_2-N9': string;
253
+ '--app-M4_2': string;
254
+ '--app-M4-N1': string;
255
+ '--app-M4-N2': string;
256
+ '--app-M4-N3': string;
257
+ '--app-M4-N4': string;
258
+ '--app-M4-N5': string;
259
+ '--app-M4-N6': string;
260
+ '--app-M4-N7': string;
261
+ '--app-M4-N8': string;
262
+ '--app-M4-N9': string;
263
+ '--app-M4': string;
264
+ '--app-M5_1-N1': string;
265
+ '--app-M5_1-N2': string;
266
+ '--app-M5_1-N3': string;
267
+ '--app-M5_1-N4': string;
268
+ '--app-M5_1-N5': string;
269
+ '--app-M5_1-N6': string;
270
+ '--app-M5_1-N7': string;
271
+ '--app-M5_1-N8': string;
272
+ '--app-M5_1-N9': string;
273
+ '--app-M5_1': string;
274
+ '--app-M5_2-N1': string;
275
+ '--app-M5_2-N2': string;
276
+ '--app-M5_2-N3': string;
277
+ '--app-M5_2-N4': string;
278
+ '--app-M5_2-N5': string;
279
+ '--app-M5_2-N6': string;
280
+ '--app-M5_2-N7': string;
281
+ '--app-M5_2-N8': string;
282
+ '--app-M5_2-N9': string;
283
+ '--app-M5_2': string;
284
+ '--app-M5-N1': string;
285
+ '--app-M5-N2': string;
286
+ '--app-M5-N3': string;
287
+ '--app-M5-N4': string;
288
+ '--app-M5-N5': string;
289
+ '--app-M5-N6': string;
290
+ '--app-M5-N7': string;
291
+ '--app-M5-N8': string;
292
+ '--app-M5-N9': string;
293
+ '--app-M5': string;
294
+ '--app-P0': string;
295
+ '--app-P1': string;
296
+ '--app-P2': string;
297
+ '--app-P3': string;
298
+ '--app-P4': string;
299
+ '--app-P5': string;
300
+ '--app-P6': string;
301
+ '--app-P7': string;
302
+ '--app-P8': string;
303
+ '--app-P9': string;
304
+ '--app-T1-f': string;
305
+ '--app-T1-h': string;
306
+ '--app-T1-p': string;
307
+ '--app-T10-f': string;
308
+ '--app-T10-h': string;
309
+ '--app-T10-p': string;
310
+ '--app-T11-f': string;
311
+ '--app-T11-h': string;
312
+ '--app-T11-p': string;
313
+ '--app-T12-f': string;
314
+ '--app-T12-h': string;
315
+ '--app-T12-p': string;
316
+ '--app-T13-f': string;
317
+ '--app-T13-h': string;
318
+ '--app-T13-p': string;
319
+ '--app-T2-f': string;
320
+ '--app-T2-h': string;
321
+ '--app-T2-p': string;
322
+ '--app-T3-f': string;
323
+ '--app-T3-h': string;
324
+ '--app-T3-p': string;
325
+ '--app-T4-f': string;
326
+ '--app-T4-h': string;
327
+ '--app-T4-p': string;
328
+ '--app-T5-f': string;
329
+ '--app-T5-h': string;
330
+ '--app-T5-p': string;
331
+ '--app-T6-f': string;
332
+ '--app-T6-h': string;
333
+ '--app-T6-p': string;
334
+ '--app-T7-f': string;
335
+ '--app-T7-h': string;
336
+ '--app-T7-p': string;
337
+ '--app-T8-f': string;
338
+ '--app-T8-h': string;
339
+ '--app-T8-p': string;
340
+ '--app-T9-f': string;
341
+ '--app-T9-h': string;
342
+ '--app-T9-p': string;
343
+ };
344
+ export default _default;