tang-ui-x 1.1.1 → 1.1.2
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 +1003 -0
- package/components/TActionSheet/index.uvue +15 -2
- package/components/TCollapse/index.uvue +1 -1
- package/components/TCollapse/type.uts +3 -1
- package/components/TCollapseItem/index.uvue +22 -26
- package/components/TDialog/index.uvue +19 -4
- package/components/TEmpty/index.uvue +28 -14
- package/components/TForm/index.uvue +30 -9
- package/components/TForm/type.uts +4 -0
- package/components/TInput/index.uvue +24 -5
- package/components/TInput/type.uts +10 -0
- package/components/TPicker/index.uvue +26 -6
- package/components/TSearchBar/index.uvue +19 -4
- package/composables/i18n/error.uts +82 -0
- package/composables/i18n/index.uts +188 -0
- package/composables/i18n/manager-demo.uts +104 -0
- package/composables/i18n/manager.test.uts +182 -0
- package/composables/i18n/manager.uts +336 -0
- package/composables/i18n/register-demo.uts +125 -0
- package/composables/i18n/task22-verification.uts +198 -0
- package/composables/i18n/task23-verification.uts +343 -0
- package/composables/i18n/task8-demo.uts +93 -0
- package/composables/i18n/task8-verification.uts +98 -0
- package/composables/i18n/test-task23.uts +9 -0
- package/composables/i18n/types.uts +46 -0
- package/composables/i18n/useI18n-verification.uts +105 -0
- package/composables/i18n/validation-demo.uts +45 -0
- package/composables/i18n/validation-test.uts +106 -0
- package/composables/useI18n.uts +77 -0
- package/index.uts +23 -0
- package/locales/cross-platform-verification.uts +510 -0
- package/locales/en-US/actionSheet.json +3 -0
- package/locales/en-US/common.json +10 -0
- package/locales/en-US/dialog.json +5 -0
- package/locales/en-US/empty.json +5 -0
- package/locales/en-US/errorState.json +5 -0
- package/locales/en-US/examplePages.json +1236 -0
- package/locales/en-US/examples.json +218 -0
- package/locales/en-US/form.json +11 -0
- package/locales/en-US/input.json +3 -0
- package/locales/en-US/list.json +5 -0
- package/locales/en-US/loading.json +3 -0
- package/locales/en-US/navBar.json +4 -0
- package/locales/en-US/noticeBar.json +3 -0
- package/locales/en-US/picker.json +5 -0
- package/locales/en-US/searchBar.json +4 -0
- package/locales/en-US/textarea.json +3 -0
- package/locales/en-US/toast.json +6 -0
- package/locales/index.uts +79 -0
- package/locales/init-verification.uts +101 -0
- package/locales/loader.uts +251 -0
- package/locales/run-verification.uts +16 -0
- package/locales/zh-CN/actionSheet.json +3 -0
- package/locales/zh-CN/common.json +10 -0
- package/locales/zh-CN/dialog.json +5 -0
- package/locales/zh-CN/empty.json +5 -0
- package/locales/zh-CN/errorState.json +5 -0
- package/locales/zh-CN/examplePages.json +1236 -0
- package/locales/zh-CN/examples.json +218 -0
- package/locales/zh-CN/form.json +11 -0
- package/locales/zh-CN/input.json +3 -0
- package/locales/zh-CN/list.json +5 -0
- package/locales/zh-CN/loading.json +3 -0
- package/locales/zh-CN/navBar.json +4 -0
- package/locales/zh-CN/noticeBar.json +3 -0
- package/locales/zh-CN/picker.json +5 -0
- package/locales/zh-CN/searchBar.json +4 -0
- package/locales/zh-CN/textarea.json +3 -0
- package/locales/zh-CN/toast.json +6 -0
- package/locales/zh-TW/actionSheet.json +3 -0
- package/locales/zh-TW/common.json +8 -0
- package/locales/zh-TW/dialog.json +5 -0
- package/locales/zh-TW/empty.json +5 -0
- package/locales/zh-TW/errorState.json +5 -0
- package/locales/zh-TW/examplePages.json +705 -0
- package/locales/zh-TW/examples.json +218 -0
- package/locales/zh-TW/form.json +11 -0
- package/locales/zh-TW/input.json +3 -0
- package/locales/zh-TW/list.json +5 -0
- package/locales/zh-TW/loading.json +3 -0
- package/locales/zh-TW/navBar.json +4 -0
- package/locales/zh-TW/noticeBar.json +3 -0
- package/locales/zh-TW/picker.json +5 -0
- package/locales/zh-TW/searchBar.json +4 -0
- package/locales/zh-TW/textarea.json +3 -0
- package/locales/zh-TW/toast.json +6 -0
- package/package.json +2 -1
|
@@ -0,0 +1,1236 @@
|
|
|
1
|
+
{
|
|
2
|
+
"button": {
|
|
3
|
+
"title": "TButton Component",
|
|
4
|
+
"description": "Trigger an action",
|
|
5
|
+
"sections": {
|
|
6
|
+
"basic": "Basic Usage",
|
|
7
|
+
"plain": "Plain Button",
|
|
8
|
+
"size": "Button Size",
|
|
9
|
+
"disabled": "Disabled State",
|
|
10
|
+
"loading": "Loading State",
|
|
11
|
+
"round": "Round Button",
|
|
12
|
+
"block": "Block Button"
|
|
13
|
+
},
|
|
14
|
+
"buttons": {
|
|
15
|
+
"primary": "Primary",
|
|
16
|
+
"success": "Success",
|
|
17
|
+
"warning": "Warning",
|
|
18
|
+
"danger": "Danger",
|
|
19
|
+
"info": "Info",
|
|
20
|
+
"plain": "Plain",
|
|
21
|
+
"large": "Large",
|
|
22
|
+
"medium": "Medium",
|
|
23
|
+
"small": "Small",
|
|
24
|
+
"disabled": "Disabled",
|
|
25
|
+
"loading": "Loading",
|
|
26
|
+
"clickToLoad": "Click to Load",
|
|
27
|
+
"round": "Round",
|
|
28
|
+
"block": "Block"
|
|
29
|
+
},
|
|
30
|
+
"messages": {
|
|
31
|
+
"clicked": "Button clicked"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"icon": {
|
|
35
|
+
"title": "TIcon Component",
|
|
36
|
+
"description": "Semantic icons",
|
|
37
|
+
"sections": {
|
|
38
|
+
"basic": "Basic Usage",
|
|
39
|
+
"size": "Icon Size",
|
|
40
|
+
"color": "Icon Color"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"text": {
|
|
44
|
+
"title": "TText Component",
|
|
45
|
+
"description": "Text display component",
|
|
46
|
+
"sections": {
|
|
47
|
+
"basic": "Basic Usage",
|
|
48
|
+
"type": "Text Type",
|
|
49
|
+
"size": "Text Size",
|
|
50
|
+
"weight": "Text Weight",
|
|
51
|
+
"align": "Text Alignment",
|
|
52
|
+
"ellipsis": "Text Ellipsis",
|
|
53
|
+
"customColor": "Custom Color"
|
|
54
|
+
},
|
|
55
|
+
"content": {
|
|
56
|
+
"normal": "This is a normal text",
|
|
57
|
+
"primary": "Primary Text",
|
|
58
|
+
"success": "Success Text",
|
|
59
|
+
"warning": "Warning Text",
|
|
60
|
+
"danger": "Danger Text",
|
|
61
|
+
"info": "Info Text",
|
|
62
|
+
"extraSmall": "Extra Small Text",
|
|
63
|
+
"small": "Small Text",
|
|
64
|
+
"medium": "Medium Text",
|
|
65
|
+
"large": "Large Text",
|
|
66
|
+
"extraLarge": "Extra Large Text",
|
|
67
|
+
"bold": "Bold Text",
|
|
68
|
+
"italic": "Italic Text",
|
|
69
|
+
"underline": "Underline Text",
|
|
70
|
+
"lineThrough": "Line Through Text",
|
|
71
|
+
"combined": "Combined Style Text",
|
|
72
|
+
"alignLeft": "Left Aligned Text",
|
|
73
|
+
"alignCenter": "Center Aligned Text",
|
|
74
|
+
"alignRight": "Right Aligned Text",
|
|
75
|
+
"ellipsisOneLine": "This is a very long text that will show ellipsis when it exceeds one line. This is a very long text that will show ellipsis when it exceeds one line.",
|
|
76
|
+
"ellipsisTwoLines": "This is a very long text that will show ellipsis when it exceeds two lines. This is a very long text that will show ellipsis when it exceeds two lines. This is a very long text that will show ellipsis when it exceeds two lines. This is a very long text that will show ellipsis when it exceeds two lines.",
|
|
77
|
+
"customColor": "Custom Color Text"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"image": {
|
|
81
|
+
"title": "TImage Component",
|
|
82
|
+
"description": "Enhanced image component",
|
|
83
|
+
"sections": {
|
|
84
|
+
"basic": "Basic Usage",
|
|
85
|
+
"shape": "Image Shape",
|
|
86
|
+
"mode": "Crop Mode",
|
|
87
|
+
"radius": "Custom Radius",
|
|
88
|
+
"error": "Load Error",
|
|
89
|
+
"preview": "Image Preview",
|
|
90
|
+
"lazy": "Lazy Load",
|
|
91
|
+
"customText": "Custom Text"
|
|
92
|
+
},
|
|
93
|
+
"labels": {
|
|
94
|
+
"square": "Square",
|
|
95
|
+
"round": "Round",
|
|
96
|
+
"circle": "Circle",
|
|
97
|
+
"clickToPreview": "Click to preview",
|
|
98
|
+
"lazyLoadDesc": "Image loads when scrolling down",
|
|
99
|
+
"customLoading": "Custom loading text",
|
|
100
|
+
"customError": "Custom error text"
|
|
101
|
+
},
|
|
102
|
+
"messages": {
|
|
103
|
+
"loadComplete": "Image loaded",
|
|
104
|
+
"loadFailed": "Image load failed",
|
|
105
|
+
"errorText": "Image load failed",
|
|
106
|
+
"loadingText": "Please wait...",
|
|
107
|
+
"errorCustomText": "Cannot load",
|
|
108
|
+
"lazyLoading": "Lazy loading..."
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"divider": {
|
|
112
|
+
"title": "TDivider Component",
|
|
113
|
+
"description": "Content divider",
|
|
114
|
+
"sections": {
|
|
115
|
+
"basic": "Basic Usage",
|
|
116
|
+
"dashed": "Dashed Style",
|
|
117
|
+
"customColor": "Custom Color",
|
|
118
|
+
"customThickness": "Custom Thickness",
|
|
119
|
+
"withText": "With Text",
|
|
120
|
+
"customTextStyle": "Custom Text Style",
|
|
121
|
+
"customMargin": "Custom Margin",
|
|
122
|
+
"vertical": "Vertical Divider",
|
|
123
|
+
"verticalStyle": "Vertical Divider Style",
|
|
124
|
+
"slot": "Slot Usage"
|
|
125
|
+
},
|
|
126
|
+
"labels": {
|
|
127
|
+
"default": "Default divider",
|
|
128
|
+
"secondPart": "Second part content",
|
|
129
|
+
"dashedLine": "Dashed line",
|
|
130
|
+
"dottedLine": "Dotted line",
|
|
131
|
+
"solidLine": "Solid line",
|
|
132
|
+
"blueLine": "Blue divider",
|
|
133
|
+
"redLine": "Red divider",
|
|
134
|
+
"greenLine": "Green divider",
|
|
135
|
+
"hairline": "Hairline",
|
|
136
|
+
"defaultCenter": "Default center",
|
|
137
|
+
"leftAlign": "Left align",
|
|
138
|
+
"rightAlign": "Right align",
|
|
139
|
+
"topContent": "Top content",
|
|
140
|
+
"middleContent": "Middle content",
|
|
141
|
+
"bottomContent": "Bottom content",
|
|
142
|
+
"blueText": "Blue text",
|
|
143
|
+
"largeText": "Large text",
|
|
144
|
+
"smallMargin": "Small margin",
|
|
145
|
+
"defaultMargin": "Default margin",
|
|
146
|
+
"largeMargin": "Large margin",
|
|
147
|
+
"option1": "Option 1",
|
|
148
|
+
"option2": "Option 2",
|
|
149
|
+
"option3": "Option 3",
|
|
150
|
+
"option4": "Option 4",
|
|
151
|
+
"solid": "Solid",
|
|
152
|
+
"dashed": "Dashed",
|
|
153
|
+
"dotted": "Dotted",
|
|
154
|
+
"colorful": "Colorful",
|
|
155
|
+
"end": "End",
|
|
156
|
+
"customSlot": "Custom slot content"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"card": {
|
|
160
|
+
"title": "TCard Component",
|
|
161
|
+
"description": "Card container for organizing content",
|
|
162
|
+
"sections": {
|
|
163
|
+
"basic": "Basic Card",
|
|
164
|
+
"withSubtitle": "Card with Subtitle",
|
|
165
|
+
"noShadow": "No Shadow Card",
|
|
166
|
+
"withBorder": "Card with Border",
|
|
167
|
+
"padding": "Different Padding",
|
|
168
|
+
"largePadding": "Large Padding Card",
|
|
169
|
+
"radius": "Different Radius",
|
|
170
|
+
"largeRadius": "Large Radius Card",
|
|
171
|
+
"clickable": "Clickable Card",
|
|
172
|
+
"customSlot": "Custom Slot"
|
|
173
|
+
},
|
|
174
|
+
"content": {
|
|
175
|
+
"basic": "This is the content area of the card",
|
|
176
|
+
"subtitle": "This is subtitle",
|
|
177
|
+
"anyContent": "Card content can be any element",
|
|
178
|
+
"noShadow": "This card has no shadow effect",
|
|
179
|
+
"withBorder": "This card uses border instead of shadow",
|
|
180
|
+
"smallPadding": "Small padding card",
|
|
181
|
+
"largePadding": "Large padding card",
|
|
182
|
+
"noRadius": "No radius card",
|
|
183
|
+
"largeRadius": "Large radius card",
|
|
184
|
+
"clickable": "Clicking this card will trigger an event",
|
|
185
|
+
"customHeader": "Custom Header",
|
|
186
|
+
"customSlot": "This card uses custom header slot"
|
|
187
|
+
},
|
|
188
|
+
"buttons": {
|
|
189
|
+
"action": "Action",
|
|
190
|
+
"cancel": "Cancel",
|
|
191
|
+
"confirm": "Confirm"
|
|
192
|
+
},
|
|
193
|
+
"messages": {
|
|
194
|
+
"clicked": "Card clicked"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"input": {
|
|
198
|
+
"title": "TInput Component",
|
|
199
|
+
"description": "Text input",
|
|
200
|
+
"sections": {
|
|
201
|
+
"basic": "Basic Usage",
|
|
202
|
+
"type": "Input Type",
|
|
203
|
+
"size": "Different Sizes",
|
|
204
|
+
"disabled": "Disabled State",
|
|
205
|
+
"readonly": "Readonly State",
|
|
206
|
+
"clearable": "Clearable",
|
|
207
|
+
"affix": "With Affix",
|
|
208
|
+
"events": "Event Handling",
|
|
209
|
+
"maxlength": "Max Length"
|
|
210
|
+
},
|
|
211
|
+
"placeholder": "Please enter content",
|
|
212
|
+
"labels": {
|
|
213
|
+
"inputValue": "Input value",
|
|
214
|
+
"textInput": "Text input",
|
|
215
|
+
"passwordInput": "Password input",
|
|
216
|
+
"numberInput": "Number input",
|
|
217
|
+
"phoneInput": "Phone number",
|
|
218
|
+
"emailInput": "Email address",
|
|
219
|
+
"smallSize": "Small size input",
|
|
220
|
+
"mediumSize": "Medium size input",
|
|
221
|
+
"largeSize": "Large size input",
|
|
222
|
+
"disabled": "Disabled input",
|
|
223
|
+
"readonly": "Readonly input",
|
|
224
|
+
"clearable": "Clearable content",
|
|
225
|
+
"amount": "Please enter amount",
|
|
226
|
+
"website": "Please enter website",
|
|
227
|
+
"domain": "Please enter domain",
|
|
228
|
+
"checkConsole": "Check console"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"form": {
|
|
232
|
+
"title": "TForm Component",
|
|
233
|
+
"description": "Dynamic form with multiple form controls",
|
|
234
|
+
"sections": {
|
|
235
|
+
"basic": "Basic Usage",
|
|
236
|
+
"full": "Full Form (All Component Types)",
|
|
237
|
+
"customButtons": "Custom Buttons",
|
|
238
|
+
"customSlot": "Custom Slot"
|
|
239
|
+
},
|
|
240
|
+
"labels": {
|
|
241
|
+
"username": "Username",
|
|
242
|
+
"password": "Password",
|
|
243
|
+
"name": "Name",
|
|
244
|
+
"age": "Age",
|
|
245
|
+
"bio": "Bio",
|
|
246
|
+
"city": "City",
|
|
247
|
+
"birthday": "Birthday",
|
|
248
|
+
"gender": "Gender",
|
|
249
|
+
"hobbies": "Hobbies",
|
|
250
|
+
"notify": "Notification",
|
|
251
|
+
"rating": "Rating",
|
|
252
|
+
"volume": "Volume",
|
|
253
|
+
"email": "Email",
|
|
254
|
+
"phone": "Phone",
|
|
255
|
+
"nickname": "Nickname",
|
|
256
|
+
"avatar": "Avatar"
|
|
257
|
+
},
|
|
258
|
+
"placeholders": {
|
|
259
|
+
"username": "Please enter username",
|
|
260
|
+
"password": "Please enter password",
|
|
261
|
+
"name": "Please enter name",
|
|
262
|
+
"age": "Please enter age",
|
|
263
|
+
"bio": "Please enter bio",
|
|
264
|
+
"email": "Please enter email",
|
|
265
|
+
"phone": "Please enter phone",
|
|
266
|
+
"nickname": "Please enter nickname"
|
|
267
|
+
},
|
|
268
|
+
"options": {
|
|
269
|
+
"beijing": "Beijing",
|
|
270
|
+
"shanghai": "Shanghai",
|
|
271
|
+
"guangzhou": "Guangzhou",
|
|
272
|
+
"shenzhen": "Shenzhen",
|
|
273
|
+
"male": "Male",
|
|
274
|
+
"female": "Female",
|
|
275
|
+
"reading": "Reading",
|
|
276
|
+
"sports": "Sports",
|
|
277
|
+
"music": "Music"
|
|
278
|
+
},
|
|
279
|
+
"buttons": {
|
|
280
|
+
"submit": "Submit",
|
|
281
|
+
"reset": "Reset",
|
|
282
|
+
"validate": "Validate",
|
|
283
|
+
"getData": "Get Data",
|
|
284
|
+
"uploadAvatar": "Upload Avatar"
|
|
285
|
+
},
|
|
286
|
+
"messages": {
|
|
287
|
+
"submitSuccess": "Submit successful",
|
|
288
|
+
"reset": "Reset",
|
|
289
|
+
"validateSuccess": "Validation passed",
|
|
290
|
+
"validateFail": "Validation failed",
|
|
291
|
+
"uploadSuccess": "Upload successful",
|
|
292
|
+
"formData": "Form Data"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"list": {
|
|
296
|
+
"title": "TList Component",
|
|
297
|
+
"description": "Display list data",
|
|
298
|
+
"sections": {
|
|
299
|
+
"basic": "Basic List",
|
|
300
|
+
"withDescription": "List with Description",
|
|
301
|
+
"withIcon": "List with Icon",
|
|
302
|
+
"withExtra": "With Extra Content",
|
|
303
|
+
"clickable": "Clickable List",
|
|
304
|
+
"customSpacing": "Custom Spacing",
|
|
305
|
+
"withTitle": "List with Title"
|
|
306
|
+
},
|
|
307
|
+
"items": {
|
|
308
|
+
"item1": "List Item 1",
|
|
309
|
+
"item2": "List Item 2",
|
|
310
|
+
"item3": "List Item 3",
|
|
311
|
+
"titleText": "Title Text",
|
|
312
|
+
"description1": "This is the description for the first item",
|
|
313
|
+
"anotherTitle": "Another Title",
|
|
314
|
+
"description2": "This is the description for the second item",
|
|
315
|
+
"settings": "Settings",
|
|
316
|
+
"notification": "Notification",
|
|
317
|
+
"privacy": "Privacy",
|
|
318
|
+
"about": "About",
|
|
319
|
+
"balance": "Balance",
|
|
320
|
+
"coupon": "Coupon",
|
|
321
|
+
"points": "Points",
|
|
322
|
+
"clickable1": "Clickable Item 1",
|
|
323
|
+
"clickable2": "Clickable Item 2",
|
|
324
|
+
"disabled": "Disabled Item",
|
|
325
|
+
"noSpacing1": "No Spacing Item 1",
|
|
326
|
+
"noSpacing2": "No Spacing Item 2",
|
|
327
|
+
"largeSpacing1": "Large Spacing Item 1",
|
|
328
|
+
"largeSpacing2": "Large Spacing Item 2",
|
|
329
|
+
"systemSettings": "System Settings",
|
|
330
|
+
"general": "General",
|
|
331
|
+
"accountSecurity": "Account & Security"
|
|
332
|
+
},
|
|
333
|
+
"extra": {
|
|
334
|
+
"balance": "¥1,234.56",
|
|
335
|
+
"couponCount": "3 coupons",
|
|
336
|
+
"pointsCount": "1,234"
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
"dialog": {
|
|
340
|
+
"title": "TDialog Component",
|
|
341
|
+
"description": "Modal dialog",
|
|
342
|
+
"sections": {
|
|
343
|
+
"basic": "Basic Usage",
|
|
344
|
+
"confirm": "Confirm Dialog",
|
|
345
|
+
"custom": "Custom Content"
|
|
346
|
+
},
|
|
347
|
+
"buttons": {
|
|
348
|
+
"show": "Show Dialog",
|
|
349
|
+
"confirm": "Confirm",
|
|
350
|
+
"cancel": "Cancel"
|
|
351
|
+
},
|
|
352
|
+
"content": {
|
|
353
|
+
"title": "Tip",
|
|
354
|
+
"message": "This is a message"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"toast": {
|
|
358
|
+
"title": "TToast Component",
|
|
359
|
+
"description": "Lightweight prompt",
|
|
360
|
+
"sections": {
|
|
361
|
+
"basic": "Basic Usage",
|
|
362
|
+
"type": "Toast Type",
|
|
363
|
+
"duration": "Duration"
|
|
364
|
+
},
|
|
365
|
+
"buttons": {
|
|
366
|
+
"show": "Show Toast",
|
|
367
|
+
"success": "Success",
|
|
368
|
+
"error": "Error",
|
|
369
|
+
"warning": "Warning",
|
|
370
|
+
"loading": "Loading"
|
|
371
|
+
},
|
|
372
|
+
"messages": {
|
|
373
|
+
"text": "This is a text message",
|
|
374
|
+
"success": "Operation successful",
|
|
375
|
+
"fail": "Operation failed",
|
|
376
|
+
"loading": "Loading...",
|
|
377
|
+
"loadComplete": "Load complete"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"loading": {
|
|
381
|
+
"title": "TLoading Component",
|
|
382
|
+
"description": "Loading state",
|
|
383
|
+
"sections": {
|
|
384
|
+
"basic": "Basic Usage",
|
|
385
|
+
"type": "Loading Type",
|
|
386
|
+
"text": "Loading Text"
|
|
387
|
+
},
|
|
388
|
+
"text": {
|
|
389
|
+
"loading": "Loading..."
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"empty": {
|
|
393
|
+
"title": "TEmpty Component",
|
|
394
|
+
"description": "Empty state display",
|
|
395
|
+
"sections": {
|
|
396
|
+
"basic": "Basic Usage",
|
|
397
|
+
"custom": "Custom Content"
|
|
398
|
+
},
|
|
399
|
+
"text": {
|
|
400
|
+
"noData": "No Data",
|
|
401
|
+
"noResult": "No Search Results"
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
"picker": {
|
|
405
|
+
"title": "TPicker Component",
|
|
406
|
+
"description": "Multi-column data picker",
|
|
407
|
+
"sections": {
|
|
408
|
+
"basic": "Basic Usage",
|
|
409
|
+
"multiColumn": "Multi Column",
|
|
410
|
+
"cascade": "Cascade"
|
|
411
|
+
},
|
|
412
|
+
"buttons": {
|
|
413
|
+
"confirm": "Confirm",
|
|
414
|
+
"cancel": "Cancel"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"actionSheet": {
|
|
418
|
+
"title": "TActionSheet Component",
|
|
419
|
+
"description": "Bottom action sheet",
|
|
420
|
+
"sections": {
|
|
421
|
+
"basic": "Basic Usage",
|
|
422
|
+
"withTitle": "With Title & Description",
|
|
423
|
+
"customColor": "Custom Color"
|
|
424
|
+
},
|
|
425
|
+
"buttons": {
|
|
426
|
+
"show": "Open Action Sheet",
|
|
427
|
+
"cancel": "Cancel"
|
|
428
|
+
},
|
|
429
|
+
"actions": {
|
|
430
|
+
"option1": "Option 1",
|
|
431
|
+
"option2": "Option 2",
|
|
432
|
+
"option3": "Option 3",
|
|
433
|
+
"shareToFriend": "Share to Friend",
|
|
434
|
+
"shareToMoments": "Share to Moments",
|
|
435
|
+
"copyLink": "Copy Link",
|
|
436
|
+
"delete": "Delete"
|
|
437
|
+
},
|
|
438
|
+
"dialog": {
|
|
439
|
+
"title": "Action Selection",
|
|
440
|
+
"description": "Please select the action you want to perform"
|
|
441
|
+
},
|
|
442
|
+
"messages": {
|
|
443
|
+
"selected": "Selected"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"checkbox": {
|
|
447
|
+
"title": "TCheckbox Component",
|
|
448
|
+
"description": "Checkbox component",
|
|
449
|
+
"sections": {
|
|
450
|
+
"basic": "Basic Usage",
|
|
451
|
+
"defaultChecked": "Default Checked",
|
|
452
|
+
"group": "Checkbox Group",
|
|
453
|
+
"disabled": "Disabled State",
|
|
454
|
+
"size": "Different Sizes",
|
|
455
|
+
"customColor": "Custom Color",
|
|
456
|
+
"indeterminate": "Indeterminate State",
|
|
457
|
+
"events": "Event Handling"
|
|
458
|
+
},
|
|
459
|
+
"labels": {
|
|
460
|
+
"checkbox": "Checkbox",
|
|
461
|
+
"defaultChecked": "Default checked checkbox",
|
|
462
|
+
"option1": "Option 1",
|
|
463
|
+
"option2": "Option 2",
|
|
464
|
+
"option3": "Option 3",
|
|
465
|
+
"disabledUnchecked": "Disabled unchecked",
|
|
466
|
+
"disabledChecked": "Disabled checked",
|
|
467
|
+
"small": "Small size",
|
|
468
|
+
"medium": "Medium size",
|
|
469
|
+
"large": "Large size",
|
|
470
|
+
"red": "Red checkbox",
|
|
471
|
+
"green": "Green checkbox",
|
|
472
|
+
"orange": "Orange checkbox",
|
|
473
|
+
"indeterminate": "Indeterminate state",
|
|
474
|
+
"clickToConsole": "Click to view console"
|
|
475
|
+
},
|
|
476
|
+
"status": {
|
|
477
|
+
"checked": "Checked status",
|
|
478
|
+
"selected": "Selected",
|
|
479
|
+
"notSelected": "Not selected",
|
|
480
|
+
"indeterminateDesc": "Used to indicate partial selection",
|
|
481
|
+
"checkConsole": "Toggle checkbox to view console"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"cell": {
|
|
485
|
+
"title": "TCell Component",
|
|
486
|
+
"description": "Cell component",
|
|
487
|
+
"sections": {
|
|
488
|
+
"basic": "Basic Usage",
|
|
489
|
+
"withIcon": "With Icon",
|
|
490
|
+
"withValue": "With Value",
|
|
491
|
+
"link": "Link Cell"
|
|
492
|
+
},
|
|
493
|
+
"groups": {
|
|
494
|
+
"showArrow": "Show Arrow",
|
|
495
|
+
"clickableCell": "Clickable Cell",
|
|
496
|
+
"customSize": "Custom Size",
|
|
497
|
+
"customContent": "Custom Content",
|
|
498
|
+
"group": "Cell Group",
|
|
499
|
+
"required": "Required Field"
|
|
500
|
+
},
|
|
501
|
+
"labels": {
|
|
502
|
+
"cell": "Cell",
|
|
503
|
+
"content": "Content",
|
|
504
|
+
"description": "Description",
|
|
505
|
+
"settings": "Settings",
|
|
506
|
+
"message": "Message",
|
|
507
|
+
"notification": "Notification",
|
|
508
|
+
"enabled": "Enabled",
|
|
509
|
+
"personalInfo": "Personal Info",
|
|
510
|
+
"systemSettings": "System Settings",
|
|
511
|
+
"enter": "Enter",
|
|
512
|
+
"aboutUs": "About Us",
|
|
513
|
+
"clickable": "Clickable",
|
|
514
|
+
"notClickable": "Not Clickable",
|
|
515
|
+
"largeCell": "Large Cell",
|
|
516
|
+
"defaultCell": "Default Cell",
|
|
517
|
+
"smallCell": "Small Cell",
|
|
518
|
+
"customTitle": "Custom Title",
|
|
519
|
+
"accountManagement": "Account Management",
|
|
520
|
+
"privacySettings": "Privacy Settings",
|
|
521
|
+
"notificationSettings": "Notification Settings",
|
|
522
|
+
"basicSettings": "Basic Settings",
|
|
523
|
+
"clearCache": "Clear Cache",
|
|
524
|
+
"logout": "Logout",
|
|
525
|
+
"other": "Other",
|
|
526
|
+
"username": "Username",
|
|
527
|
+
"phone": "Phone",
|
|
528
|
+
"pleaseEnter": "Please Enter",
|
|
529
|
+
"email": "Email",
|
|
530
|
+
"optional": "Optional"
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
"grid": {
|
|
534
|
+
"title": "TGrid Component",
|
|
535
|
+
"description": "Grid layout",
|
|
536
|
+
"sections": {
|
|
537
|
+
"basic": "Basic Usage",
|
|
538
|
+
"custom": "Custom Columns",
|
|
539
|
+
"customGap": "Custom Gap",
|
|
540
|
+
"border": "With Border",
|
|
541
|
+
"square": "Square Grid",
|
|
542
|
+
"clickable": "Clickable",
|
|
543
|
+
"customColor": "Custom Icon Color",
|
|
544
|
+
"badge": "With Badge",
|
|
545
|
+
"image": "With Image",
|
|
546
|
+
"customContent": "Custom Content"
|
|
547
|
+
},
|
|
548
|
+
"labels": {
|
|
549
|
+
"home": "Home",
|
|
550
|
+
"mail": "Mail",
|
|
551
|
+
"favorite": "Favorite",
|
|
552
|
+
"settings": "Settings",
|
|
553
|
+
"phone": "Phone",
|
|
554
|
+
"bulb": "Bulb",
|
|
555
|
+
"palette": "Palette",
|
|
556
|
+
"camera": "Camera",
|
|
557
|
+
"red": "Red",
|
|
558
|
+
"blue": "Blue",
|
|
559
|
+
"green": "Green",
|
|
560
|
+
"yellow": "Yellow",
|
|
561
|
+
"image1": "Image 1",
|
|
562
|
+
"image2": "Image 2",
|
|
563
|
+
"image3": "Image 3",
|
|
564
|
+
"custom": "Custom",
|
|
565
|
+
"customDesc": "Custom Content",
|
|
566
|
+
"normalGrid": "Normal Grid",
|
|
567
|
+
"blueColor": "Blue",
|
|
568
|
+
"background": "Background",
|
|
569
|
+
"fast": "Fast"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"layout": {
|
|
573
|
+
"title": "TRow/TCol Component",
|
|
574
|
+
"description": "24-column grid layout",
|
|
575
|
+
"sections": {
|
|
576
|
+
"basic": "Basic Usage",
|
|
577
|
+
"gutter": "With Gutter",
|
|
578
|
+
"offset": "Column Offset",
|
|
579
|
+
"align": "Horizontal Alignment",
|
|
580
|
+
"verticalAlign": "Vertical Alignment",
|
|
581
|
+
"responsive": "Responsive"
|
|
582
|
+
},
|
|
583
|
+
"labels": {
|
|
584
|
+
"leftAlign": "Left Align",
|
|
585
|
+
"centerAlign": "Center Align",
|
|
586
|
+
"rightAlign": "Right Align",
|
|
587
|
+
"spaceBetween": "Space Between",
|
|
588
|
+
"spaceAround": "Space Around",
|
|
589
|
+
"topAlign": "Top Align",
|
|
590
|
+
"middleAlign": "Middle Align",
|
|
591
|
+
"bottomAlign": "Bottom Align",
|
|
592
|
+
"height": "Height"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"textarea": {
|
|
596
|
+
"title": "TTextarea Component",
|
|
597
|
+
"description": "Multi-line text input",
|
|
598
|
+
"sections": {
|
|
599
|
+
"basic": "Basic Usage",
|
|
600
|
+
"disabled": "Disabled State",
|
|
601
|
+
"maxlength": "Character Count",
|
|
602
|
+
"autoHeight": "Auto Height",
|
|
603
|
+
"clearable": "Clearable",
|
|
604
|
+
"customRows": "Custom Rows",
|
|
605
|
+
"complete": "Complete Example"
|
|
606
|
+
},
|
|
607
|
+
"placeholder": "Please enter content",
|
|
608
|
+
"labels": {
|
|
609
|
+
"disabled": "Disabled state",
|
|
610
|
+
"limit100": "Max 100 characters",
|
|
611
|
+
"autoGrow": "Auto grow height",
|
|
612
|
+
"clearable": "Clearable content",
|
|
613
|
+
"rows3": "3 Rows",
|
|
614
|
+
"rows3Height": "Fixed 3 rows height",
|
|
615
|
+
"rows5": "5 Rows",
|
|
616
|
+
"rows5Height": "Fixed 5 rows height",
|
|
617
|
+
"feedback": "Please enter your feedback"
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
"error": {
|
|
621
|
+
"title": "TErrorState Component",
|
|
622
|
+
"description": "Error prompt",
|
|
623
|
+
"sections": {
|
|
624
|
+
"basic": "Basic Usage",
|
|
625
|
+
"custom": "Custom Content",
|
|
626
|
+
"404": "404 Error",
|
|
627
|
+
"500": "500 Error",
|
|
628
|
+
"network": "Network Error",
|
|
629
|
+
"withButton": "With Button",
|
|
630
|
+
"customIcon": "Custom Icon",
|
|
631
|
+
"customSlot": "Custom Slot"
|
|
632
|
+
},
|
|
633
|
+
"text": {
|
|
634
|
+
"error": "Error occurred",
|
|
635
|
+
"retry": "Retry",
|
|
636
|
+
"networkError": "Network connection failed",
|
|
637
|
+
"404Title": "Page Not Found",
|
|
638
|
+
"404Message": "Sorry, the page you are looking for does not exist",
|
|
639
|
+
"500Title": "Server Error",
|
|
640
|
+
"500Message": "Sorry, the server encountered an error",
|
|
641
|
+
"networkTitle": "Network Error",
|
|
642
|
+
"networkMessage": "Please check your network connection",
|
|
643
|
+
"loadFailed": "Load Failed",
|
|
644
|
+
"loadFailedMessage": "Failed to load data, please try again",
|
|
645
|
+
"reload": "Reload",
|
|
646
|
+
"operationFailed": "Operation Failed",
|
|
647
|
+
"tryAgain": "Please try again later",
|
|
648
|
+
"errorOccurred": "An Error Occurred",
|
|
649
|
+
"customError": "This is a custom error message",
|
|
650
|
+
"back": "Back"
|
|
651
|
+
}
|
|
652
|
+
},
|
|
653
|
+
"radio": {
|
|
654
|
+
"title": "TRadioButton Component",
|
|
655
|
+
"description": "Radio button component",
|
|
656
|
+
"sections": {
|
|
657
|
+
"basic": "Basic Usage",
|
|
658
|
+
"group": "Radio Group",
|
|
659
|
+
"disabled": "Disabled State",
|
|
660
|
+
"size": "Different Sizes",
|
|
661
|
+
"customColor": "Custom Color",
|
|
662
|
+
"events": "Event Handling"
|
|
663
|
+
},
|
|
664
|
+
"labels": {
|
|
665
|
+
"option1": "Option 1",
|
|
666
|
+
"option2": "Option 2",
|
|
667
|
+
"option3": "Option 3",
|
|
668
|
+
"optionA": "Option A",
|
|
669
|
+
"optionB": "Option B",
|
|
670
|
+
"optionC": "Option C",
|
|
671
|
+
"optionD": "Option D",
|
|
672
|
+
"disabledUnchecked": "Disabled unchecked",
|
|
673
|
+
"disabledChecked": "Disabled checked",
|
|
674
|
+
"small": "Small size",
|
|
675
|
+
"medium": "Medium size",
|
|
676
|
+
"large": "Large size",
|
|
677
|
+
"red": "Red",
|
|
678
|
+
"green": "Green",
|
|
679
|
+
"orange": "Orange"
|
|
680
|
+
},
|
|
681
|
+
"status": {
|
|
682
|
+
"selected": "Selected",
|
|
683
|
+
"notSelected": "Not selected",
|
|
684
|
+
"checkConsole": "Toggle option to view console"
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
"switch": {
|
|
688
|
+
"title": "TSwitch Component",
|
|
689
|
+
"description": "Toggle between two states",
|
|
690
|
+
"sections": {
|
|
691
|
+
"basic": "Basic Usage",
|
|
692
|
+
"disabled": "Disabled State",
|
|
693
|
+
"size": "Different Sizes",
|
|
694
|
+
"customColor": "Custom Color",
|
|
695
|
+
"withText": "With Text",
|
|
696
|
+
"events": "Change Event"
|
|
697
|
+
},
|
|
698
|
+
"labels": {
|
|
699
|
+
"status": "Status",
|
|
700
|
+
"on": "On",
|
|
701
|
+
"off": "Off",
|
|
702
|
+
"disabledOff": "Disabled (Off)",
|
|
703
|
+
"disabledOn": "Disabled (On)",
|
|
704
|
+
"small": "Small size",
|
|
705
|
+
"medium": "Medium size",
|
|
706
|
+
"large": "Large size",
|
|
707
|
+
"customColor": "Custom color",
|
|
708
|
+
"openConsole": "Open console to view event"
|
|
709
|
+
},
|
|
710
|
+
"text": {
|
|
711
|
+
"active": "On",
|
|
712
|
+
"inactive": "Off"
|
|
713
|
+
}
|
|
714
|
+
},
|
|
715
|
+
"searchBar": {
|
|
716
|
+
"title": "TSearchBar Component",
|
|
717
|
+
"description": "Search input box",
|
|
718
|
+
"sections": {
|
|
719
|
+
"basic": "Basic Usage",
|
|
720
|
+
"round": "Round Style",
|
|
721
|
+
"showCancel": "Show Cancel Button",
|
|
722
|
+
"customBackground": "Custom Background",
|
|
723
|
+
"disabled": "Disabled State",
|
|
724
|
+
"customIcon": "Custom Icon",
|
|
725
|
+
"maxlength": "Max Length"
|
|
726
|
+
},
|
|
727
|
+
"placeholder": {
|
|
728
|
+
"default": "Please enter search content",
|
|
729
|
+
"round": "Round search box",
|
|
730
|
+
"background": "Light blue background",
|
|
731
|
+
"disabled": "Disabled state",
|
|
732
|
+
"customIcon": "Custom search icon",
|
|
733
|
+
"maxlength": "Max 20 characters"
|
|
734
|
+
},
|
|
735
|
+
"buttons": {
|
|
736
|
+
"cancel": "Cancel"
|
|
737
|
+
},
|
|
738
|
+
"messages": {
|
|
739
|
+
"search": "Search",
|
|
740
|
+
"cancelled": "Cancelled"
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"numberInput": {
|
|
744
|
+
"title": "TNumberInput Component",
|
|
745
|
+
"description": "Enhanced component for number input",
|
|
746
|
+
"sections": {
|
|
747
|
+
"basic": "Basic Usage",
|
|
748
|
+
"range": "Set Range",
|
|
749
|
+
"step": "Step Setting",
|
|
750
|
+
"precision": "Precision Control",
|
|
751
|
+
"size": "Different Sizes",
|
|
752
|
+
"disabled": "Disabled State",
|
|
753
|
+
"events": "Event Handling"
|
|
754
|
+
},
|
|
755
|
+
"labels": {
|
|
756
|
+
"currentValue": "Current value",
|
|
757
|
+
"range": "Range",
|
|
758
|
+
"step": "Step",
|
|
759
|
+
"integer": "Integer",
|
|
760
|
+
"decimal": "2 decimal places",
|
|
761
|
+
"checkConsole": "Check console for value changes"
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
"select": {
|
|
765
|
+
"title": "TSelect Component",
|
|
766
|
+
"description": "Dropdown selector component",
|
|
767
|
+
"sections": {
|
|
768
|
+
"basic": "Basic Usage",
|
|
769
|
+
"upward": "Upward Expand",
|
|
770
|
+
"default": "Default Value",
|
|
771
|
+
"disabled": "Disabled State",
|
|
772
|
+
"disabledOptions": "Disabled Options",
|
|
773
|
+
"clearable": "Clearable",
|
|
774
|
+
"filterable": "Filterable",
|
|
775
|
+
"multiple": "Multiple Selection",
|
|
776
|
+
"size": "Different Sizes",
|
|
777
|
+
"events": "Event Handling"
|
|
778
|
+
},
|
|
779
|
+
"labels": {
|
|
780
|
+
"option1": "Option 1",
|
|
781
|
+
"option2": "Option 2",
|
|
782
|
+
"option3": "Option 3",
|
|
783
|
+
"option4": "Option 4",
|
|
784
|
+
"option5": "Option 5",
|
|
785
|
+
"item1": "Item 1",
|
|
786
|
+
"item2": "Item 2",
|
|
787
|
+
"item3": "Item 3",
|
|
788
|
+
"available1": "Available Option 1",
|
|
789
|
+
"disabled": "Disabled Option",
|
|
790
|
+
"available2": "Available Option 2",
|
|
791
|
+
"available3": "Available Option 3",
|
|
792
|
+
"small": "Small Size",
|
|
793
|
+
"medium": "Medium Size",
|
|
794
|
+
"large": "Large Size"
|
|
795
|
+
},
|
|
796
|
+
"placeholder": {
|
|
797
|
+
"default": "Please select",
|
|
798
|
+
"upward": "Upward expand",
|
|
799
|
+
"disabled": "Disabled state",
|
|
800
|
+
"partialDisabled": "Partial options disabled",
|
|
801
|
+
"clearable": "Clearable selection",
|
|
802
|
+
"filterable": "Filterable options",
|
|
803
|
+
"multiple": "Please select multiple options",
|
|
804
|
+
"checkConsole": "Select to view console"
|
|
805
|
+
},
|
|
806
|
+
"messages": {
|
|
807
|
+
"selected": "Selected value",
|
|
808
|
+
"notSelected": "Not selected",
|
|
809
|
+
"upwardDesc": "Set placement=\"top\" to expand dropdown upward"
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
"slider": {
|
|
813
|
+
"title": "TSlider Component",
|
|
814
|
+
"description": "Slider selector",
|
|
815
|
+
"sections": {
|
|
816
|
+
"basic": "Basic Usage",
|
|
817
|
+
"showValue": "Show Current Value",
|
|
818
|
+
"customColor": "Custom Color",
|
|
819
|
+
"step": "Set Step",
|
|
820
|
+
"disabled": "Disabled State"
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
"rate": {
|
|
824
|
+
"title": "TRate Component",
|
|
825
|
+
"description": "Rating component",
|
|
826
|
+
"sections": {
|
|
827
|
+
"basic": "Basic Usage",
|
|
828
|
+
"halfStar": "Half Star",
|
|
829
|
+
"readonly": "Read Only",
|
|
830
|
+
"customIcon": "Custom Icon"
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
"tags": {
|
|
834
|
+
"title": "Tags Component",
|
|
835
|
+
"description": "Tag component for marking and classification",
|
|
836
|
+
"sections": {
|
|
837
|
+
"basic": "Basic Usage",
|
|
838
|
+
"card": "Card Type",
|
|
839
|
+
"size": "Different Sizes",
|
|
840
|
+
"badge": "With Badge",
|
|
841
|
+
"disabled": "Disabled State",
|
|
842
|
+
"bottom": "Bottom Tag Bar",
|
|
843
|
+
"customColor": "Custom Color",
|
|
844
|
+
"centered": "Centered Display",
|
|
845
|
+
"noAnimation": "Disable Animation",
|
|
846
|
+
"usage": "Usage Instructions"
|
|
847
|
+
},
|
|
848
|
+
"labels": {
|
|
849
|
+
"home": "Home",
|
|
850
|
+
"product": "Product",
|
|
851
|
+
"service": "Service",
|
|
852
|
+
"about": "About",
|
|
853
|
+
"all": "All",
|
|
854
|
+
"ongoing": "Ongoing",
|
|
855
|
+
"finished": "Finished",
|
|
856
|
+
"tab1": "Option 1",
|
|
857
|
+
"tab2": "Option 2",
|
|
858
|
+
"tab3": "Option 3",
|
|
859
|
+
"message": "Message",
|
|
860
|
+
"notification": "Notification",
|
|
861
|
+
"todo": "Todo",
|
|
862
|
+
"enabled1": "Enabled Option 1",
|
|
863
|
+
"disabled": "Disabled Option",
|
|
864
|
+
"enabled2": "Enabled Option 2",
|
|
865
|
+
"discover": "Discover",
|
|
866
|
+
"profile": "Profile",
|
|
867
|
+
"redTheme": "Red Theme",
|
|
868
|
+
"greenTheme": "Green Theme",
|
|
869
|
+
"blueTheme": "Blue Theme"
|
|
870
|
+
},
|
|
871
|
+
"content": {
|
|
872
|
+
"currentKey": "Current active Key",
|
|
873
|
+
"home": "Home content area",
|
|
874
|
+
"product": "Product display area",
|
|
875
|
+
"service": "Service introduction area",
|
|
876
|
+
"about": "About us area",
|
|
877
|
+
"currentSelected": "Current selected",
|
|
878
|
+
"allTasks": "All Tasks",
|
|
879
|
+
"allTasksDesc": "Display all task list",
|
|
880
|
+
"ongoing": "Ongoing",
|
|
881
|
+
"ongoingDesc": "Display ongoing tasks",
|
|
882
|
+
"finished": "Finished",
|
|
883
|
+
"finishedDesc": "Display finished tasks",
|
|
884
|
+
"current": "Current",
|
|
885
|
+
"messageCenter": "Message Center",
|
|
886
|
+
"unreadMessages": "You have 5 unread messages",
|
|
887
|
+
"notifications": "Notifications",
|
|
888
|
+
"notificationCount": "You have 99+ notifications",
|
|
889
|
+
"todoList": "Todo List",
|
|
890
|
+
"newTodo": "You have new todo items",
|
|
891
|
+
"disabledDesc": "The middle option is disabled and cannot be clicked",
|
|
892
|
+
"homeContent": "Home",
|
|
893
|
+
"bottomNavDesc": "Tab bar displayed at bottom, suitable for bottom navigation",
|
|
894
|
+
"discoverContent": "Discover page content",
|
|
895
|
+
"profileContent": "Profile content",
|
|
896
|
+
"customColorTheme": "Custom color theme",
|
|
897
|
+
"redTheme": "Active color is red (#e74c3c)",
|
|
898
|
+
"centered": "Centered display",
|
|
899
|
+
"noAnimation": "No animation effect"
|
|
900
|
+
},
|
|
901
|
+
"usage": {
|
|
902
|
+
"props": "Main Properties",
|
|
903
|
+
"vModel": "• v-model: Bind current active tag",
|
|
904
|
+
"items": "• items: Tag data array",
|
|
905
|
+
"type": "• type: Tag type (line | card)",
|
|
906
|
+
"size": "• size: Tag size (small | medium | large)",
|
|
907
|
+
"tabPosition": "• tabPosition: Tag position (top | bottom)",
|
|
908
|
+
"scrollable": "• scrollable: Whether scrollable",
|
|
909
|
+
"centered": "• centered: Whether centered",
|
|
910
|
+
"activeColor": "• activeColor: Active color",
|
|
911
|
+
"inactiveColor": "• inactiveColor: Inactive color",
|
|
912
|
+
"animated": "• animated: Whether to show animation",
|
|
913
|
+
"events": "Main Events",
|
|
914
|
+
"change": "• @change: Triggered when tag switches",
|
|
915
|
+
"tabClick": "• @tab-click: Triggered when tag is clicked",
|
|
916
|
+
"slots": "Slots",
|
|
917
|
+
"default": "• default: Content area, receives activeKey parameter",
|
|
918
|
+
"tabItem": "TabItem Type",
|
|
919
|
+
"key": "• key: Unique identifier (required)",
|
|
920
|
+
"label": "• label: Tag text (required)",
|
|
921
|
+
"disabled": "• disabled: Whether disabled",
|
|
922
|
+
"badge": "• badge: Badge content",
|
|
923
|
+
"icon": "• icon: Icon path"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"badge": {
|
|
927
|
+
"title": "TBadge Component",
|
|
928
|
+
"description": "Display number or status badge",
|
|
929
|
+
"sections": {
|
|
930
|
+
"basic": "Basic Usage",
|
|
931
|
+
"max": "Max Value",
|
|
932
|
+
"dot": "Dot Badge",
|
|
933
|
+
"type": "Different Types",
|
|
934
|
+
"customColor": "Custom Color",
|
|
935
|
+
"offset": "Offset",
|
|
936
|
+
"dynamic": "Dynamic Control"
|
|
937
|
+
},
|
|
938
|
+
"labels": {
|
|
939
|
+
"comment": "Comment",
|
|
940
|
+
"reply": "Reply",
|
|
941
|
+
"message": "Message",
|
|
942
|
+
"warning": "Warning",
|
|
943
|
+
"online": "Online",
|
|
944
|
+
"offline": "Offline",
|
|
945
|
+
"primary": "Primary",
|
|
946
|
+
"danger": "Danger",
|
|
947
|
+
"success": "Success",
|
|
948
|
+
"info": "Info",
|
|
949
|
+
"bgColor": "BgColor",
|
|
950
|
+
"blue": "Blue",
|
|
951
|
+
"green": "Green",
|
|
952
|
+
"offset": "Offset",
|
|
953
|
+
"dynamic": "Dynamic"
|
|
954
|
+
},
|
|
955
|
+
"buttons": {
|
|
956
|
+
"increase": "Increase",
|
|
957
|
+
"decrease": "Decrease",
|
|
958
|
+
"show": "Show",
|
|
959
|
+
"hide": "Hide"
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
"avatar": {
|
|
963
|
+
"title": "TAvatar Component",
|
|
964
|
+
"description": "Display user avatar or icon",
|
|
965
|
+
"sections": {
|
|
966
|
+
"basic": "Basic Usage",
|
|
967
|
+
"size": "Different Sizes",
|
|
968
|
+
"shape": "Different Shapes",
|
|
969
|
+
"customColor": "Custom Color",
|
|
970
|
+
"fit": "Image Fit Mode",
|
|
971
|
+
"events": "With Events",
|
|
972
|
+
"customContent": "Custom Content"
|
|
973
|
+
},
|
|
974
|
+
"messages": {
|
|
975
|
+
"clicked": "Avatar clicked",
|
|
976
|
+
"error": "Image load failed",
|
|
977
|
+
"clickOrConsole": "Click avatar or check console log"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
"progress": {
|
|
981
|
+
"title": "TProgress Component",
|
|
982
|
+
"description": "Progress indicator",
|
|
983
|
+
"sections": {
|
|
984
|
+
"basic": "Basic Usage",
|
|
985
|
+
"type": "Progress Type",
|
|
986
|
+
"status": "Progress Status",
|
|
987
|
+
"custom": "Custom Color"
|
|
988
|
+
}
|
|
989
|
+
},
|
|
990
|
+
"noticeBar": {
|
|
991
|
+
"title": "TNoticeBar Component",
|
|
992
|
+
"description": "Scrolling notice",
|
|
993
|
+
"sections": {
|
|
994
|
+
"basic": "Basic Usage",
|
|
995
|
+
"closable": "Closable",
|
|
996
|
+
"link": "Link Mode",
|
|
997
|
+
"scrollable": "Scrollable",
|
|
998
|
+
"customColor": "Custom Color"
|
|
999
|
+
},
|
|
1000
|
+
"text": {
|
|
1001
|
+
"notice": "This is a notice message",
|
|
1002
|
+
"closable": "This is a closable notice message",
|
|
1003
|
+
"link": "Click for details",
|
|
1004
|
+
"scrollable": "This is a long notice message that will automatically scroll for users to view the complete content",
|
|
1005
|
+
"customColor": "Custom color notice bar",
|
|
1006
|
+
"danger": "Danger alert message"
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
"collapse": {
|
|
1010
|
+
"title": "Collapse Component",
|
|
1011
|
+
"description": "Collapsible content area",
|
|
1012
|
+
"sections": {
|
|
1013
|
+
"basic": "Basic Usage",
|
|
1014
|
+
"accordion": "Accordion Mode",
|
|
1015
|
+
"disabled": "Disabled State",
|
|
1016
|
+
"customTitle": "Custom Title",
|
|
1017
|
+
"noBorder": "No Border",
|
|
1018
|
+
"currentState": "Current State"
|
|
1019
|
+
},
|
|
1020
|
+
"titles": {
|
|
1021
|
+
"consistency": "Consistency",
|
|
1022
|
+
"feedback": "Feedback",
|
|
1023
|
+
"efficiency": "Efficiency",
|
|
1024
|
+
"designPrinciples": "Design Principles",
|
|
1025
|
+
"navigation": "Navigation",
|
|
1026
|
+
"feedbackTitle": "Feedback",
|
|
1027
|
+
"normalItem": "Normal Item",
|
|
1028
|
+
"disabledItem": "Disabled Item",
|
|
1029
|
+
"mobileComponents": "Mobile Components",
|
|
1030
|
+
"richComponents": "Rich Components",
|
|
1031
|
+
"highPerformance": "High Performance",
|
|
1032
|
+
"item1": "Item 1",
|
|
1033
|
+
"item2": "Item 2"
|
|
1034
|
+
},
|
|
1035
|
+
"content": {
|
|
1036
|
+
"consistency": "Consistent with real life: Keep consistent with real-life processes and logic, follow user habits in language and concepts.",
|
|
1037
|
+
"feedback": "Control feedback: Let users clearly perceive their operations through interface styles and interactive effects.",
|
|
1038
|
+
"efficiency": "Simplify process: Design simple and intuitive operation processes to help users complete goals quickly.",
|
|
1039
|
+
"designPrinciples": "Consistency, feedback, efficiency, and controllability are our design principles.",
|
|
1040
|
+
"navigation": "Navigation can solve the problems of where users are, where to go, and how to get there when visiting pages.",
|
|
1041
|
+
"feedbackContent": "Feedback is a response to user behavior, giving users an explanation.",
|
|
1042
|
+
"normalItem": "This is a normal collapse item that can be expanded and collapsed normally.",
|
|
1043
|
+
"disabledItem": "This is a disabled collapse item that cannot be expanded.",
|
|
1044
|
+
"mobileComponents": "Lightweight UI component library designed for mobile.",
|
|
1045
|
+
"richComponents": "Provides rich basic components covering various mobile scenarios.",
|
|
1046
|
+
"highPerformance": "Excellent performance, lightweight implementation, ensuring smooth experience.",
|
|
1047
|
+
"item1Content": "This is the content of item 1.",
|
|
1048
|
+
"item2Content": "This is the content of item 2."
|
|
1049
|
+
},
|
|
1050
|
+
"labels": {
|
|
1051
|
+
"expandedItems": "Expanded items",
|
|
1052
|
+
"accordionExpanded": "Accordion expanded",
|
|
1053
|
+
"none": "None"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
"swiper": {
|
|
1057
|
+
"title": "Swiper Component",
|
|
1058
|
+
"description": "For looping images or content",
|
|
1059
|
+
"sections": {
|
|
1060
|
+
"basic": "Basic Usage",
|
|
1061
|
+
"customIndicator": "Custom Indicator Color",
|
|
1062
|
+
"numberIndicator": "Number Indicator",
|
|
1063
|
+
"topIndicator": "Top Indicator",
|
|
1064
|
+
"vertical": "Vertical Swiper",
|
|
1065
|
+
"noAutoplay": "Disable Autoplay",
|
|
1066
|
+
"noIndicator": "No Indicator",
|
|
1067
|
+
"customHeight": "Custom Height and Interval"
|
|
1068
|
+
},
|
|
1069
|
+
"labels": {
|
|
1070
|
+
"carousel1": "Carousel 1",
|
|
1071
|
+
"carousel2": "Carousel 2",
|
|
1072
|
+
"carousel3": "Carousel 3",
|
|
1073
|
+
"carousel4": "Carousel 4",
|
|
1074
|
+
"currentIndex": "Current Index",
|
|
1075
|
+
"manualSwipe": "Manual swipe to switch",
|
|
1076
|
+
"heightDesc": "Height 150px, interval 5s, animation 500ms"
|
|
1077
|
+
}
|
|
1078
|
+
},
|
|
1079
|
+
"navbar": {
|
|
1080
|
+
"title": "TNavBar Component",
|
|
1081
|
+
"description": "Top navigation bar",
|
|
1082
|
+
"sections": {
|
|
1083
|
+
"basic": "Basic Usage",
|
|
1084
|
+
"leftBack": "Left Back Button",
|
|
1085
|
+
"rightButton": "Right Button",
|
|
1086
|
+
"bothButtons": "Both Buttons"
|
|
1087
|
+
},
|
|
1088
|
+
"labels": {
|
|
1089
|
+
"title": "Title",
|
|
1090
|
+
"back": "Back",
|
|
1091
|
+
"button": "Button",
|
|
1092
|
+
"more": "More"
|
|
1093
|
+
},
|
|
1094
|
+
"messages": {
|
|
1095
|
+
"clickLeft": "Click left",
|
|
1096
|
+
"clickRight": "Click right"
|
|
1097
|
+
}
|
|
1098
|
+
},
|
|
1099
|
+
"tabs": {
|
|
1100
|
+
"title": "Tabs Component",
|
|
1101
|
+
"description": "Tab switching component with multiple styles and configurations",
|
|
1102
|
+
"sections": {
|
|
1103
|
+
"basic": "Basic Usage",
|
|
1104
|
+
"card": "Card Type",
|
|
1105
|
+
"size": "Different Sizes",
|
|
1106
|
+
"badge": "With Badge",
|
|
1107
|
+
"disabled": "Disabled State",
|
|
1108
|
+
"bottom": "Bottom Tab Bar",
|
|
1109
|
+
"customColor": "Custom Color",
|
|
1110
|
+
"centered": "Centered Display",
|
|
1111
|
+
"noAnimation": "Disable Animation",
|
|
1112
|
+
"usage": "Usage Instructions"
|
|
1113
|
+
},
|
|
1114
|
+
"labels": {
|
|
1115
|
+
"home": "Home",
|
|
1116
|
+
"profile": "Profile",
|
|
1117
|
+
"settings": "Settings",
|
|
1118
|
+
"about": "About",
|
|
1119
|
+
"user": "User Info",
|
|
1120
|
+
"order": "Order Management",
|
|
1121
|
+
"wallet": "My Wallet",
|
|
1122
|
+
"option1": "Option 1",
|
|
1123
|
+
"option2": "Option 2",
|
|
1124
|
+
"option3": "Option 3",
|
|
1125
|
+
"message": "Message",
|
|
1126
|
+
"notification": "Notification",
|
|
1127
|
+
"todo": "Todo",
|
|
1128
|
+
"enabled1": "Enabled Option 1",
|
|
1129
|
+
"disabled": "Disabled Option",
|
|
1130
|
+
"enabled2": "Enabled Option 2",
|
|
1131
|
+
"discover": "Discover",
|
|
1132
|
+
"me": "Me"
|
|
1133
|
+
},
|
|
1134
|
+
"content": {
|
|
1135
|
+
"currentKey": "Current active Key",
|
|
1136
|
+
"home": "This is the home content area",
|
|
1137
|
+
"profile": "This is the profile content area",
|
|
1138
|
+
"settings": "This is the settings content area",
|
|
1139
|
+
"about": "This is the about content area",
|
|
1140
|
+
"user": "User Info",
|
|
1141
|
+
"userPanel": "Card style user info panel",
|
|
1142
|
+
"order": "Order Management",
|
|
1143
|
+
"orderPanel": "Card style order management panel",
|
|
1144
|
+
"wallet": "My Wallet",
|
|
1145
|
+
"walletPanel": "Card style wallet panel",
|
|
1146
|
+
"currentSelected": "Current selected",
|
|
1147
|
+
"messageCenter": "Message Center",
|
|
1148
|
+
"unreadMessages": "You have 5 unread messages",
|
|
1149
|
+
"notifications": "Notifications",
|
|
1150
|
+
"notificationCount": "You have 99+ notifications",
|
|
1151
|
+
"todoList": "Todo List",
|
|
1152
|
+
"newTodo": "You have new todo items",
|
|
1153
|
+
"disabledDesc": "The middle option is disabled and cannot be clicked",
|
|
1154
|
+
"homeContent": "Home",
|
|
1155
|
+
"bottomNavDesc": "Tab bar displayed at bottom, suitable for bottom navigation",
|
|
1156
|
+
"discoverContent": "Discover page content",
|
|
1157
|
+
"meContent": "Profile content",
|
|
1158
|
+
"customColorTheme": "Custom color",
|
|
1159
|
+
"redTheme": "Active color is red (#ff6b6b)",
|
|
1160
|
+
"centered": "Centered tabs",
|
|
1161
|
+
"noAnimation": "No animation effect"
|
|
1162
|
+
},
|
|
1163
|
+
"usage": {
|
|
1164
|
+
"props": "Main Properties",
|
|
1165
|
+
"vModel": "• v-model: Bind current active tab",
|
|
1166
|
+
"type": "• type: Tab type (line | card)",
|
|
1167
|
+
"size": "• size: Tab size (small | medium | large)",
|
|
1168
|
+
"tabPosition": "• tabPosition: Tab position (top | bottom)",
|
|
1169
|
+
"scrollable": "• scrollable: Whether scrollable",
|
|
1170
|
+
"centered": "• centered: Whether centered",
|
|
1171
|
+
"activeColor": "• activeColor: Active color",
|
|
1172
|
+
"inactiveColor": "• inactiveColor: Inactive color",
|
|
1173
|
+
"animated": "• animated: Whether to show animation",
|
|
1174
|
+
"events": "Main Events",
|
|
1175
|
+
"change": "• @change: Triggered when tab switches",
|
|
1176
|
+
"slots": "Slots",
|
|
1177
|
+
"default": "• default: Content area, receives activePane and activeIndex"
|
|
1178
|
+
}
|
|
1179
|
+
},
|
|
1180
|
+
"popup": {
|
|
1181
|
+
"title": "TPopup Component",
|
|
1182
|
+
"description": "Popup container for displaying popup content",
|
|
1183
|
+
"sections": {
|
|
1184
|
+
"basic": "Basic Usage",
|
|
1185
|
+
"position": "Different Positions"
|
|
1186
|
+
},
|
|
1187
|
+
"buttons": {
|
|
1188
|
+
"bottom": "Bottom Popup",
|
|
1189
|
+
"top": "Top Popup",
|
|
1190
|
+
"left": "Left Popup",
|
|
1191
|
+
"right": "Right Popup",
|
|
1192
|
+
"center": "Center Popup"
|
|
1193
|
+
},
|
|
1194
|
+
"content": {
|
|
1195
|
+
"bottom": "This is popup content",
|
|
1196
|
+
"top": "Top popup content",
|
|
1197
|
+
"left": "Left popup content",
|
|
1198
|
+
"right": "Right popup content",
|
|
1199
|
+
"center": "Center Popup",
|
|
1200
|
+
"centerDesc": "This is a center popup content area"
|
|
1201
|
+
}
|
|
1202
|
+
},
|
|
1203
|
+
"checkboxGroup": {
|
|
1204
|
+
"title": "TCheckboxGroup Component",
|
|
1205
|
+
"description": "Checkbox group",
|
|
1206
|
+
"sections": {
|
|
1207
|
+
"basic": "Basic Usage",
|
|
1208
|
+
"horizontal": "Horizontal Layout",
|
|
1209
|
+
"disabled": "Disabled Options",
|
|
1210
|
+
"max": "Max Selection Limit",
|
|
1211
|
+
"disabledAll": "Disabled All"
|
|
1212
|
+
},
|
|
1213
|
+
"labels": {
|
|
1214
|
+
"option1": "Option 1",
|
|
1215
|
+
"option2": "Option 2",
|
|
1216
|
+
"option3": "Option 3",
|
|
1217
|
+
"option2Disabled": "Option 2 (Disabled)"
|
|
1218
|
+
}
|
|
1219
|
+
},
|
|
1220
|
+
"radioGroup": {
|
|
1221
|
+
"title": "TRadioGroup Component",
|
|
1222
|
+
"description": "Radio group",
|
|
1223
|
+
"sections": {
|
|
1224
|
+
"basic": "Basic Usage",
|
|
1225
|
+
"horizontal": "Horizontal Layout",
|
|
1226
|
+
"disabled": "Disabled Options",
|
|
1227
|
+
"disabledAll": "Disabled All"
|
|
1228
|
+
},
|
|
1229
|
+
"labels": {
|
|
1230
|
+
"option1": "Option 1",
|
|
1231
|
+
"option2": "Option 2",
|
|
1232
|
+
"option3": "Option 3",
|
|
1233
|
+
"option2Disabled": "Option 2 (Disabled)"
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
}
|