@gardenerim/css 1.0.0
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/CHANGELOG.md +121 -0
- package/LICENSE +21 -0
- package/README.md +591 -0
- package/dist/components/ai-compositions.min.css +2 -0
- package/dist/components/ai-extended.min.css +2 -0
- package/dist/components/ai.min.css +2 -0
- package/dist/components/auth-compositions.min.css +2 -0
- package/dist/components/basic.min.css +2 -0
- package/dist/components/catalog.min.css +2 -0
- package/dist/components/commerce-compositions.min.css +2 -0
- package/dist/components/content-compositions.min.css +2 -0
- package/dist/components/data-compositions.min.css +2 -0
- package/dist/components/data.min.css +2 -0
- package/dist/components/desktop-compositions.min.css +2 -0
- package/dist/components/desktop.min.css +2 -0
- package/dist/components/extended.min.css +2 -0
- package/dist/components/feedback.min.css +2 -0
- package/dist/components/form-compositions.min.css +2 -0
- package/dist/components/forms.min.css +2 -0
- package/dist/components/grid.min.css +2 -0
- package/dist/components/help.min.css +2 -0
- package/dist/components/layouts.min.css +2 -0
- package/dist/components/mobile-compositions.min.css +2 -0
- package/dist/components/navigation-compositions.min.css +2 -0
- package/dist/components/navigation.min.css +2 -0
- package/dist/components/page.min.css +2 -0
- package/dist/components/primitives.min.css +2 -0
- package/dist/components/recipes.min.css +2 -0
- package/dist/components/regions.min.css +2 -0
- package/dist/components/selection-compositions.min.css +2 -0
- package/dist/components/solution-compositions.min.css +2 -0
- package/dist/gardener.ai.css +236 -0
- package/dist/gardener.ai.min.css +3 -0
- package/dist/gardener.ai.min.css.map +7 -0
- package/dist/gardener.builds.json +7491 -0
- package/dist/gardener.capabilities.json +3784 -0
- package/dist/gardener.compatibility.json +1209 -0
- package/dist/gardener.components.css +3496 -0
- package/dist/gardener.components.min.css +3 -0
- package/dist/gardener.components.min.css.map +7 -0
- package/dist/gardener.core.css +1486 -0
- package/dist/gardener.core.min.css +3 -0
- package/dist/gardener.core.min.css.map +7 -0
- package/dist/gardener.css +7153 -0
- package/dist/gardener.d.ts +42 -0
- package/dist/gardener.electron.d.ts +5 -0
- package/dist/gardener.electron.js +24 -0
- package/dist/gardener.electron.min.js +3 -0
- package/dist/gardener.electron.min.js.map +7 -0
- package/dist/gardener.manifest.json +14557 -0
- package/dist/gardener.min.css +3 -0
- package/dist/gardener.min.css.map +7 -0
- package/dist/gardener.performance.json +1628 -0
- package/dist/gardener.public-api.json +2169 -0
- package/dist/gardener.recipes.json +1444 -0
- package/dist/gardener.runtime.js +2224 -0
- package/dist/gardener.runtime.min.js +3 -0
- package/dist/gardener.runtime.min.js.map +7 -0
- package/dist/gardener.tauri.d.ts +5 -0
- package/dist/gardener.tauri.js +28 -0
- package/dist/gardener.tauri.min.js +3 -0
- package/dist/gardener.tauri.min.js.map +7 -0
- package/dist/gardener.themes.css +1415 -0
- package/dist/gardener.themes.min.css +3 -0
- package/dist/gardener.themes.min.css.map +7 -0
- package/dist/gardener.utilities.css +1940 -0
- package/dist/gardener.utilities.json +92279 -0
- package/dist/gardener.utilities.min.css +3 -0
- package/dist/gardener.utilities.min.css.map +7 -0
- package/dist/platforms/gardener.desktop.min.css +2 -0
- package/dist/platforms/gardener.electron.min.css +2 -0
- package/dist/platforms/gardener.mobile.min.css +2 -0
- package/dist/platforms/gardener.tauri.min.css +2 -0
- package/dist/platforms/gardener.web.min.css +2 -0
- package/metadata/builds.schema.json +148 -0
- package/metadata/capabilities.json +3784 -0
- package/metadata/capabilities.schema.json +61 -0
- package/metadata/compatibility.json +1209 -0
- package/metadata/compatibility.schema.json +85 -0
- package/metadata/components.json +9082 -0
- package/metadata/components.schema.json +58 -0
- package/metadata/custom-build.schema.json +46 -0
- package/metadata/manifest.schema.json +47 -0
- package/metadata/performance-budgets.schema.json +103 -0
- package/metadata/performance-report.schema.json +194 -0
- package/metadata/public-api.json +2169 -0
- package/metadata/public-api.schema.json +165 -0
- package/metadata/recipes.json +1444 -0
- package/metadata/recipes.schema.json +39 -0
- package/metadata/schema.json +7 -0
- package/metadata/utilities.schema.json +29 -0
- package/package.json +177 -0
|
@@ -0,0 +1,1444 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../metadata/recipes.schema.json",
|
|
3
|
+
"schemaVersion": 2,
|
|
4
|
+
"recipes": [
|
|
5
|
+
{
|
|
6
|
+
"id": "auth.centered",
|
|
7
|
+
"name": "居中登录与账号流程",
|
|
8
|
+
"category": "auth",
|
|
9
|
+
"platforms": [
|
|
10
|
+
"web",
|
|
11
|
+
"mobile",
|
|
12
|
+
"desktop",
|
|
13
|
+
"tauri",
|
|
14
|
+
"electron"
|
|
15
|
+
],
|
|
16
|
+
"root": ".g-auth-centered",
|
|
17
|
+
"parts": [
|
|
18
|
+
"g-auth-container",
|
|
19
|
+
"g-auth-panel",
|
|
20
|
+
"g-auth-brand-row",
|
|
21
|
+
"g-auth-header",
|
|
22
|
+
"g-auth-form",
|
|
23
|
+
"g-auth-footer"
|
|
24
|
+
],
|
|
25
|
+
"useFor": [
|
|
26
|
+
"登录",
|
|
27
|
+
"注册",
|
|
28
|
+
"找回与重置密码",
|
|
29
|
+
"邮箱与手机验证",
|
|
30
|
+
"MFA",
|
|
31
|
+
"Passkey",
|
|
32
|
+
"二维码登录",
|
|
33
|
+
"邀请",
|
|
34
|
+
"账号与租户选择",
|
|
35
|
+
"会话恢复"
|
|
36
|
+
],
|
|
37
|
+
"behaviors": [
|
|
38
|
+
"password-toggle",
|
|
39
|
+
"otp-input",
|
|
40
|
+
"password-strength",
|
|
41
|
+
"auth-timer",
|
|
42
|
+
"saved-choice"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "auth.split",
|
|
47
|
+
"name": "品牌分栏登录与身份入口",
|
|
48
|
+
"category": "auth",
|
|
49
|
+
"platforms": [
|
|
50
|
+
"web",
|
|
51
|
+
"desktop",
|
|
52
|
+
"tauri",
|
|
53
|
+
"electron"
|
|
54
|
+
],
|
|
55
|
+
"root": ".g-auth-split",
|
|
56
|
+
"parts": [
|
|
57
|
+
"g-auth-split-aside",
|
|
58
|
+
"g-auth-split-main",
|
|
59
|
+
"g-auth-container",
|
|
60
|
+
"g-auth-panel",
|
|
61
|
+
"g-auth-provider-list"
|
|
62
|
+
],
|
|
63
|
+
"useFor": [
|
|
64
|
+
"企业登录",
|
|
65
|
+
"SSO",
|
|
66
|
+
"租户登录",
|
|
67
|
+
"身份切换",
|
|
68
|
+
"产品宣传登录",
|
|
69
|
+
"桌面客户端登录"
|
|
70
|
+
],
|
|
71
|
+
"behaviors": [
|
|
72
|
+
"password-toggle",
|
|
73
|
+
"dropdown",
|
|
74
|
+
"saved-choice"
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "mobile.category",
|
|
79
|
+
"name": "移动端分类导航",
|
|
80
|
+
"category": "mobile",
|
|
81
|
+
"platforms": [
|
|
82
|
+
"mobile",
|
|
83
|
+
"pwa",
|
|
84
|
+
"desktop-webview"
|
|
85
|
+
],
|
|
86
|
+
"root": ".g-mobile-category-view",
|
|
87
|
+
"parts": [
|
|
88
|
+
"g-mobile-category-rail",
|
|
89
|
+
"g-mobile-category-link",
|
|
90
|
+
"g-mobile-category-content",
|
|
91
|
+
"g-mobile-category-grid",
|
|
92
|
+
"g-mobile-category-item"
|
|
93
|
+
],
|
|
94
|
+
"useFor": [
|
|
95
|
+
"电商分类",
|
|
96
|
+
"服务分类",
|
|
97
|
+
"知识库目录",
|
|
98
|
+
"小程序式目录"
|
|
99
|
+
],
|
|
100
|
+
"behaviors": [
|
|
101
|
+
"mobile-sheet",
|
|
102
|
+
"saved-choice"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": "cms.builder",
|
|
107
|
+
"name": "三栏可视化页面构建器",
|
|
108
|
+
"category": "cms",
|
|
109
|
+
"platforms": [
|
|
110
|
+
"web",
|
|
111
|
+
"desktop",
|
|
112
|
+
"tauri",
|
|
113
|
+
"electron"
|
|
114
|
+
],
|
|
115
|
+
"root": ".g-cms-shell",
|
|
116
|
+
"parts": [
|
|
117
|
+
"g-cms-topbar",
|
|
118
|
+
"g-cms-tree",
|
|
119
|
+
"g-cms-main",
|
|
120
|
+
"g-cms-inspector",
|
|
121
|
+
"g-cms-canvas",
|
|
122
|
+
"g-cms-device",
|
|
123
|
+
"g-publish-bar"
|
|
124
|
+
],
|
|
125
|
+
"useFor": [
|
|
126
|
+
"页面编辑",
|
|
127
|
+
"模板设计",
|
|
128
|
+
"无代码搭建"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "cms.editor",
|
|
133
|
+
"name": "内容编辑器",
|
|
134
|
+
"category": "cms",
|
|
135
|
+
"platforms": [
|
|
136
|
+
"web",
|
|
137
|
+
"desktop",
|
|
138
|
+
"tablet"
|
|
139
|
+
],
|
|
140
|
+
"root": ".g-editor",
|
|
141
|
+
"parts": [
|
|
142
|
+
"g-editor-toolbar",
|
|
143
|
+
"g-editor-content"
|
|
144
|
+
],
|
|
145
|
+
"useFor": [
|
|
146
|
+
"文章",
|
|
147
|
+
"商品详情",
|
|
148
|
+
"帮助中心",
|
|
149
|
+
"邮件"
|
|
150
|
+
]
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"id": "cms.media",
|
|
154
|
+
"name": "媒体资源库",
|
|
155
|
+
"category": "cms",
|
|
156
|
+
"platforms": [
|
|
157
|
+
"web",
|
|
158
|
+
"desktop"
|
|
159
|
+
],
|
|
160
|
+
"root": ".g-media-library",
|
|
161
|
+
"parts": [
|
|
162
|
+
"g-media-sidebar",
|
|
163
|
+
"g-media-grid",
|
|
164
|
+
"g-media-item",
|
|
165
|
+
"g-media-inspector"
|
|
166
|
+
],
|
|
167
|
+
"useFor": [
|
|
168
|
+
"图片",
|
|
169
|
+
"视频",
|
|
170
|
+
"文档",
|
|
171
|
+
"素材选择"
|
|
172
|
+
]
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"id": "cms.workflow",
|
|
176
|
+
"name": "内容工作流",
|
|
177
|
+
"category": "cms",
|
|
178
|
+
"platforms": [
|
|
179
|
+
"web",
|
|
180
|
+
"desktop"
|
|
181
|
+
],
|
|
182
|
+
"root": ".g-workflow",
|
|
183
|
+
"parts": [
|
|
184
|
+
"g-workflow-column",
|
|
185
|
+
"g-revision",
|
|
186
|
+
"g-approval-route"
|
|
187
|
+
],
|
|
188
|
+
"useFor": [
|
|
189
|
+
"审核",
|
|
190
|
+
"版本",
|
|
191
|
+
"发布",
|
|
192
|
+
"审批"
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "desktop.workbench",
|
|
197
|
+
"name": "桌面工作台",
|
|
198
|
+
"category": "desktop",
|
|
199
|
+
"platforms": [
|
|
200
|
+
"tauri",
|
|
201
|
+
"electron",
|
|
202
|
+
"desktop"
|
|
203
|
+
],
|
|
204
|
+
"root": ".g-desktop-shell",
|
|
205
|
+
"parts": [
|
|
206
|
+
"g-titlebar",
|
|
207
|
+
"g-window-controls",
|
|
208
|
+
"g-activitybar",
|
|
209
|
+
"g-workbench",
|
|
210
|
+
"g-workbench-sidebar",
|
|
211
|
+
"g-workbench-editor",
|
|
212
|
+
"g-desktop-inspector",
|
|
213
|
+
"g-desktop-statusbar"
|
|
214
|
+
],
|
|
215
|
+
"useFor": [
|
|
216
|
+
"IDE",
|
|
217
|
+
"AI 工具",
|
|
218
|
+
"桌面 CMS",
|
|
219
|
+
"管理客户端"
|
|
220
|
+
],
|
|
221
|
+
"adapters": [
|
|
222
|
+
"tauri",
|
|
223
|
+
"electron"
|
|
224
|
+
],
|
|
225
|
+
"behaviors": [
|
|
226
|
+
"split-pane"
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": "marketing.home",
|
|
231
|
+
"name": "营销首页",
|
|
232
|
+
"category": "marketing",
|
|
233
|
+
"platforms": [
|
|
234
|
+
"web",
|
|
235
|
+
"mobile"
|
|
236
|
+
],
|
|
237
|
+
"root": ".g-hero",
|
|
238
|
+
"parts": [
|
|
239
|
+
"g-site-header",
|
|
240
|
+
"g-hero-copy",
|
|
241
|
+
"g-logo-cloud",
|
|
242
|
+
"g-feature-grid",
|
|
243
|
+
"g-testimonial-grid",
|
|
244
|
+
"g-pricing-grid",
|
|
245
|
+
"g-cta",
|
|
246
|
+
"g-site-footer"
|
|
247
|
+
],
|
|
248
|
+
"useFor": [
|
|
249
|
+
"SaaS",
|
|
250
|
+
"企业官网",
|
|
251
|
+
"产品主页",
|
|
252
|
+
"个人品牌"
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"id": "content.article",
|
|
257
|
+
"name": "文章与文档",
|
|
258
|
+
"category": "content",
|
|
259
|
+
"platforms": [
|
|
260
|
+
"web",
|
|
261
|
+
"mobile",
|
|
262
|
+
"print"
|
|
263
|
+
],
|
|
264
|
+
"root": ".g-article-shell",
|
|
265
|
+
"parts": [
|
|
266
|
+
"g-article",
|
|
267
|
+
"g-article-aside"
|
|
268
|
+
],
|
|
269
|
+
"useFor": [
|
|
270
|
+
"博客",
|
|
271
|
+
"新闻",
|
|
272
|
+
"文档",
|
|
273
|
+
"法律条款"
|
|
274
|
+
]
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"id": "commerce.product",
|
|
278
|
+
"name": "商品详情与规格选择",
|
|
279
|
+
"category": "commerce",
|
|
280
|
+
"platforms": [
|
|
281
|
+
"web",
|
|
282
|
+
"mobile",
|
|
283
|
+
"desktop",
|
|
284
|
+
"tauri",
|
|
285
|
+
"electron"
|
|
286
|
+
],
|
|
287
|
+
"root": ".g-commerce-product-detail",
|
|
288
|
+
"parts": [
|
|
289
|
+
"g-commerce-product-gallery",
|
|
290
|
+
"g-product-gallery-thumbs",
|
|
291
|
+
"g-product-gallery-stage",
|
|
292
|
+
"g-product-detail-summary",
|
|
293
|
+
"g-price-display",
|
|
294
|
+
"g-stock-status",
|
|
295
|
+
"g-sku-selector",
|
|
296
|
+
"g-quantity-stepper"
|
|
297
|
+
],
|
|
298
|
+
"useFor": [
|
|
299
|
+
"实物商品",
|
|
300
|
+
"数字商品",
|
|
301
|
+
"许可证",
|
|
302
|
+
"订阅",
|
|
303
|
+
"企业采购"
|
|
304
|
+
],
|
|
305
|
+
"behaviors": [
|
|
306
|
+
"carousel",
|
|
307
|
+
"sku-selector",
|
|
308
|
+
"quantity-stepper"
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"id": "commerce.checkout",
|
|
313
|
+
"name": "购物车、结算与订单",
|
|
314
|
+
"category": "commerce",
|
|
315
|
+
"platforms": [
|
|
316
|
+
"web",
|
|
317
|
+
"mobile",
|
|
318
|
+
"desktop",
|
|
319
|
+
"tauri",
|
|
320
|
+
"electron"
|
|
321
|
+
],
|
|
322
|
+
"root": ".g-commerce-checkout",
|
|
323
|
+
"parts": [
|
|
324
|
+
"g-cart",
|
|
325
|
+
"g-commerce-cart-item",
|
|
326
|
+
"g-cart-summary",
|
|
327
|
+
"g-checkout-steps",
|
|
328
|
+
"g-address-selector",
|
|
329
|
+
"g-shipping-method",
|
|
330
|
+
"g-coupon",
|
|
331
|
+
"g-invoice-information",
|
|
332
|
+
"g-payment-method",
|
|
333
|
+
"g-commerce-order-summary",
|
|
334
|
+
"g-commerce-order-timeline"
|
|
335
|
+
],
|
|
336
|
+
"useFor": [
|
|
337
|
+
"购物车",
|
|
338
|
+
"收银台",
|
|
339
|
+
"企业采购",
|
|
340
|
+
"数字交付",
|
|
341
|
+
"支付",
|
|
342
|
+
"订单状态",
|
|
343
|
+
"退款"
|
|
344
|
+
],
|
|
345
|
+
"behaviors": [
|
|
346
|
+
"cart",
|
|
347
|
+
"quantity-stepper",
|
|
348
|
+
"coupon",
|
|
349
|
+
"saved-choice"
|
|
350
|
+
]
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"id": "enterprise.settings",
|
|
354
|
+
"name": "企业设置中心",
|
|
355
|
+
"category": "enterprise",
|
|
356
|
+
"platforms": [
|
|
357
|
+
"web",
|
|
358
|
+
"desktop"
|
|
359
|
+
],
|
|
360
|
+
"root": ".g-settings-shell",
|
|
361
|
+
"parts": [
|
|
362
|
+
"g-org-switcher",
|
|
363
|
+
"g-settings-nav",
|
|
364
|
+
"g-settings-section",
|
|
365
|
+
"g-permission-matrix",
|
|
366
|
+
"g-audit-event",
|
|
367
|
+
"g-api-key"
|
|
368
|
+
],
|
|
369
|
+
"useFor": [
|
|
370
|
+
"组织",
|
|
371
|
+
"权限",
|
|
372
|
+
"安全",
|
|
373
|
+
"账单",
|
|
374
|
+
"审计",
|
|
375
|
+
"API"
|
|
376
|
+
]
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "ai.workspace",
|
|
380
|
+
"name": "AI 多面板工作区",
|
|
381
|
+
"category": "ai",
|
|
382
|
+
"platforms": [
|
|
383
|
+
"web",
|
|
384
|
+
"desktop",
|
|
385
|
+
"tauri",
|
|
386
|
+
"electron"
|
|
387
|
+
],
|
|
388
|
+
"root": ".g-ai-shell",
|
|
389
|
+
"parts": [
|
|
390
|
+
"g-chat",
|
|
391
|
+
"g-message",
|
|
392
|
+
"g-composer",
|
|
393
|
+
"g-tool-call",
|
|
394
|
+
"g-artifact-panel",
|
|
395
|
+
"g-context-meter"
|
|
396
|
+
],
|
|
397
|
+
"useFor": [
|
|
398
|
+
"聊天",
|
|
399
|
+
"智能体",
|
|
400
|
+
"代码生成",
|
|
401
|
+
"内容生成"
|
|
402
|
+
]
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"id": "dashboard.analytics",
|
|
406
|
+
"name": "分析仪表盘",
|
|
407
|
+
"category": "dashboard",
|
|
408
|
+
"platforms": [
|
|
409
|
+
"web",
|
|
410
|
+
"desktop",
|
|
411
|
+
"tablet"
|
|
412
|
+
],
|
|
413
|
+
"root": ".g-dashboard",
|
|
414
|
+
"parts": [
|
|
415
|
+
"g-filter-bar",
|
|
416
|
+
"g-kpi",
|
|
417
|
+
"g-chart",
|
|
418
|
+
"g-data-grid"
|
|
419
|
+
],
|
|
420
|
+
"useFor": [
|
|
421
|
+
"运营",
|
|
422
|
+
"财务",
|
|
423
|
+
"监控",
|
|
424
|
+
"数据分析"
|
|
425
|
+
]
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"id": "application.inbox",
|
|
429
|
+
"name": "三栏收件箱",
|
|
430
|
+
"category": "communication",
|
|
431
|
+
"platforms": [
|
|
432
|
+
"web",
|
|
433
|
+
"desktop",
|
|
434
|
+
"tablet"
|
|
435
|
+
],
|
|
436
|
+
"root": ".g-inbox",
|
|
437
|
+
"parts": [
|
|
438
|
+
"g-inbox-folders",
|
|
439
|
+
"g-inbox-list",
|
|
440
|
+
"g-inbox-reader",
|
|
441
|
+
"g-inbox-item"
|
|
442
|
+
],
|
|
443
|
+
"useFor": [
|
|
444
|
+
"邮件",
|
|
445
|
+
"工单",
|
|
446
|
+
"客户消息",
|
|
447
|
+
"站内信"
|
|
448
|
+
]
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"id": "application.file-manager",
|
|
452
|
+
"name": "文件管理器",
|
|
453
|
+
"category": "data",
|
|
454
|
+
"platforms": [
|
|
455
|
+
"web",
|
|
456
|
+
"desktop",
|
|
457
|
+
"mobile"
|
|
458
|
+
],
|
|
459
|
+
"root": ".g-file-manager",
|
|
460
|
+
"parts": [
|
|
461
|
+
"g-file-manager-sidebar",
|
|
462
|
+
"g-file-manager-main",
|
|
463
|
+
"g-file-grid",
|
|
464
|
+
"g-file-card",
|
|
465
|
+
"g-upload-queue"
|
|
466
|
+
],
|
|
467
|
+
"useFor": [
|
|
468
|
+
"网盘",
|
|
469
|
+
"附件",
|
|
470
|
+
"企业文档",
|
|
471
|
+
"素材"
|
|
472
|
+
]
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"id": "application.form-builder",
|
|
476
|
+
"name": "表单构建器",
|
|
477
|
+
"category": "form",
|
|
478
|
+
"platforms": [
|
|
479
|
+
"web",
|
|
480
|
+
"desktop"
|
|
481
|
+
],
|
|
482
|
+
"root": ".g-form-builder",
|
|
483
|
+
"parts": [
|
|
484
|
+
"g-form-builder-palette",
|
|
485
|
+
"g-form-builder-canvas",
|
|
486
|
+
"g-form-builder-field",
|
|
487
|
+
"g-form-builder-inspector"
|
|
488
|
+
],
|
|
489
|
+
"useFor": [
|
|
490
|
+
"问卷",
|
|
491
|
+
"数据采集",
|
|
492
|
+
"审批表",
|
|
493
|
+
"低代码"
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"id": "application.calendar",
|
|
498
|
+
"name": "日历与日程",
|
|
499
|
+
"category": "data",
|
|
500
|
+
"platforms": [
|
|
501
|
+
"web",
|
|
502
|
+
"desktop",
|
|
503
|
+
"mobile"
|
|
504
|
+
],
|
|
505
|
+
"root": ".g-calendar",
|
|
506
|
+
"parts": [
|
|
507
|
+
"g-calendar-heading",
|
|
508
|
+
"g-calendar-event",
|
|
509
|
+
"g-agenda",
|
|
510
|
+
"g-agenda-item"
|
|
511
|
+
],
|
|
512
|
+
"useFor": [
|
|
513
|
+
"日历",
|
|
514
|
+
"排班",
|
|
515
|
+
"预约",
|
|
516
|
+
"项目计划"
|
|
517
|
+
]
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"id": "document.report",
|
|
521
|
+
"name": "报告与发票",
|
|
522
|
+
"category": "content",
|
|
523
|
+
"platforms": [
|
|
524
|
+
"web",
|
|
525
|
+
"desktop",
|
|
526
|
+
"print"
|
|
527
|
+
],
|
|
528
|
+
"root": ".g-report",
|
|
529
|
+
"parts": [
|
|
530
|
+
"g-report-header",
|
|
531
|
+
"g-invoice-lines",
|
|
532
|
+
"g-invoice-total",
|
|
533
|
+
"g-signature-line"
|
|
534
|
+
],
|
|
535
|
+
"useFor": [
|
|
536
|
+
"报表",
|
|
537
|
+
"发票",
|
|
538
|
+
"报价单",
|
|
539
|
+
"打印文档"
|
|
540
|
+
]
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"id": "solution.product-landing",
|
|
544
|
+
"name": "产品落地页",
|
|
545
|
+
"category": "solution",
|
|
546
|
+
"platforms": [
|
|
547
|
+
"web",
|
|
548
|
+
"mobile"
|
|
549
|
+
],
|
|
550
|
+
"root": ".g-product-landing",
|
|
551
|
+
"parts": [
|
|
552
|
+
"g-solution-container",
|
|
553
|
+
"g-landing-hero",
|
|
554
|
+
"g-landing-copy",
|
|
555
|
+
"g-landing-visual",
|
|
556
|
+
"g-landing-proof",
|
|
557
|
+
"g-solution-section"
|
|
558
|
+
],
|
|
559
|
+
"useFor": [
|
|
560
|
+
"SaaS",
|
|
561
|
+
"App",
|
|
562
|
+
"AI 产品",
|
|
563
|
+
"新品发布",
|
|
564
|
+
"下载页"
|
|
565
|
+
],
|
|
566
|
+
"behaviors": [
|
|
567
|
+
"nav-toggle",
|
|
568
|
+
"accordion",
|
|
569
|
+
"carousel"
|
|
570
|
+
]
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"id": "solution.corporate-home",
|
|
574
|
+
"name": "企业官网首页",
|
|
575
|
+
"category": "solution",
|
|
576
|
+
"platforms": [
|
|
577
|
+
"web",
|
|
578
|
+
"mobile"
|
|
579
|
+
],
|
|
580
|
+
"root": ".g-corporate-home",
|
|
581
|
+
"parts": [
|
|
582
|
+
"g-solution-container",
|
|
583
|
+
"g-corporate-hero",
|
|
584
|
+
"g-corporate-trust",
|
|
585
|
+
"g-solution-grid",
|
|
586
|
+
"g-solution-section"
|
|
587
|
+
],
|
|
588
|
+
"useFor": [
|
|
589
|
+
"集团官网",
|
|
590
|
+
"品牌官网",
|
|
591
|
+
"企业门户",
|
|
592
|
+
"机构首页"
|
|
593
|
+
],
|
|
594
|
+
"behaviors": [
|
|
595
|
+
"nav-toggle",
|
|
596
|
+
"dropdown",
|
|
597
|
+
"accordion"
|
|
598
|
+
]
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"id": "solution.personal-home",
|
|
602
|
+
"name": "个人主页",
|
|
603
|
+
"category": "solution",
|
|
604
|
+
"platforms": [
|
|
605
|
+
"web",
|
|
606
|
+
"mobile"
|
|
607
|
+
],
|
|
608
|
+
"root": ".g-personal-home",
|
|
609
|
+
"parts": [
|
|
610
|
+
"g-solution-container",
|
|
611
|
+
"g-personal-intro",
|
|
612
|
+
"g-personal-links",
|
|
613
|
+
"g-personal-timeline"
|
|
614
|
+
],
|
|
615
|
+
"useFor": [
|
|
616
|
+
"个人品牌",
|
|
617
|
+
"简历",
|
|
618
|
+
"专家主页",
|
|
619
|
+
"创作者主页"
|
|
620
|
+
]
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"id": "solution.portfolio",
|
|
624
|
+
"name": "作品集",
|
|
625
|
+
"category": "solution",
|
|
626
|
+
"platforms": [
|
|
627
|
+
"web",
|
|
628
|
+
"mobile"
|
|
629
|
+
],
|
|
630
|
+
"root": ".g-portfolio-page",
|
|
631
|
+
"parts": [
|
|
632
|
+
"g-portfolio-hero",
|
|
633
|
+
"g-portfolio-featured",
|
|
634
|
+
"g-portfolio-grid",
|
|
635
|
+
"g-portfolio-project"
|
|
636
|
+
],
|
|
637
|
+
"useFor": [
|
|
638
|
+
"设计师",
|
|
639
|
+
"摄影师",
|
|
640
|
+
"开发者",
|
|
641
|
+
"工作室",
|
|
642
|
+
"案例库"
|
|
643
|
+
],
|
|
644
|
+
"behaviors": [
|
|
645
|
+
"carousel",
|
|
646
|
+
"tabs"
|
|
647
|
+
]
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"id": "solution.blog-index",
|
|
651
|
+
"name": "博客与资讯首页",
|
|
652
|
+
"category": "solution",
|
|
653
|
+
"platforms": [
|
|
654
|
+
"web",
|
|
655
|
+
"mobile"
|
|
656
|
+
],
|
|
657
|
+
"root": ".g-blog-index",
|
|
658
|
+
"parts": [
|
|
659
|
+
"g-blog-index-header",
|
|
660
|
+
"g-blog-categories",
|
|
661
|
+
"g-blog-grid-page",
|
|
662
|
+
"g-blog-entry"
|
|
663
|
+
],
|
|
664
|
+
"useFor": [
|
|
665
|
+
"博客",
|
|
666
|
+
"新闻",
|
|
667
|
+
"杂志",
|
|
668
|
+
"企业资讯"
|
|
669
|
+
],
|
|
670
|
+
"behaviors": [
|
|
671
|
+
"data-filter"
|
|
672
|
+
]
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"id": "solution.article",
|
|
676
|
+
"name": "文章阅读页",
|
|
677
|
+
"category": "solution",
|
|
678
|
+
"platforms": [
|
|
679
|
+
"web",
|
|
680
|
+
"mobile",
|
|
681
|
+
"print"
|
|
682
|
+
],
|
|
683
|
+
"root": ".g-article-page",
|
|
684
|
+
"parts": [
|
|
685
|
+
"g-article-page-layout",
|
|
686
|
+
"g-article-page-body",
|
|
687
|
+
"g-article-page-toc",
|
|
688
|
+
"g-article-page-meta"
|
|
689
|
+
],
|
|
690
|
+
"useFor": [
|
|
691
|
+
"文章",
|
|
692
|
+
"新闻详情",
|
|
693
|
+
"教程",
|
|
694
|
+
"长文",
|
|
695
|
+
"法律内容"
|
|
696
|
+
],
|
|
697
|
+
"behaviors": [
|
|
698
|
+
"scrollspy",
|
|
699
|
+
"copy"
|
|
700
|
+
]
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"id": "solution.docs-portal",
|
|
704
|
+
"name": "文档门户",
|
|
705
|
+
"category": "solution",
|
|
706
|
+
"platforms": [
|
|
707
|
+
"web",
|
|
708
|
+
"mobile",
|
|
709
|
+
"desktop"
|
|
710
|
+
],
|
|
711
|
+
"root": ".g-docs-portal",
|
|
712
|
+
"parts": [
|
|
713
|
+
"g-docs-layout",
|
|
714
|
+
"g-docs-sidebar",
|
|
715
|
+
"g-docs-main",
|
|
716
|
+
"g-docs-toc"
|
|
717
|
+
],
|
|
718
|
+
"useFor": [
|
|
719
|
+
"产品文档",
|
|
720
|
+
"API 文档",
|
|
721
|
+
"开发者中心",
|
|
722
|
+
"内部规范"
|
|
723
|
+
],
|
|
724
|
+
"behaviors": [
|
|
725
|
+
"tree",
|
|
726
|
+
"scrollspy",
|
|
727
|
+
"copy",
|
|
728
|
+
"nav-toggle"
|
|
729
|
+
]
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"id": "solution.help-center",
|
|
733
|
+
"name": "帮助中心",
|
|
734
|
+
"category": "solution",
|
|
735
|
+
"platforms": [
|
|
736
|
+
"web",
|
|
737
|
+
"mobile",
|
|
738
|
+
"desktop"
|
|
739
|
+
],
|
|
740
|
+
"root": ".g-help-center-page",
|
|
741
|
+
"parts": [
|
|
742
|
+
"g-help-center-hero",
|
|
743
|
+
"g-help-center-search",
|
|
744
|
+
"g-help-center-layout",
|
|
745
|
+
"g-help-center-main"
|
|
746
|
+
],
|
|
747
|
+
"useFor": [
|
|
748
|
+
"客户帮助",
|
|
749
|
+
"FAQ",
|
|
750
|
+
"自助服务",
|
|
751
|
+
"产品支持"
|
|
752
|
+
],
|
|
753
|
+
"behaviors": [
|
|
754
|
+
"accordion",
|
|
755
|
+
"data-filter"
|
|
756
|
+
]
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"id": "solution.search-results",
|
|
760
|
+
"name": "全站搜索结果",
|
|
761
|
+
"category": "solution",
|
|
762
|
+
"platforms": [
|
|
763
|
+
"web",
|
|
764
|
+
"mobile"
|
|
765
|
+
],
|
|
766
|
+
"root": ".g-search-results-page",
|
|
767
|
+
"parts": [
|
|
768
|
+
"g-search-results-layout",
|
|
769
|
+
"g-search-filters",
|
|
770
|
+
"g-search-results-list",
|
|
771
|
+
"g-search-result"
|
|
772
|
+
],
|
|
773
|
+
"useFor": [
|
|
774
|
+
"站内搜索",
|
|
775
|
+
"文档搜索",
|
|
776
|
+
"商品搜索",
|
|
777
|
+
"资源搜索"
|
|
778
|
+
],
|
|
779
|
+
"behaviors": [
|
|
780
|
+
"data-filter",
|
|
781
|
+
"saved-choice"
|
|
782
|
+
]
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"id": "solution.contact",
|
|
786
|
+
"name": "联系与咨询页",
|
|
787
|
+
"category": "solution",
|
|
788
|
+
"platforms": [
|
|
789
|
+
"web",
|
|
790
|
+
"mobile"
|
|
791
|
+
],
|
|
792
|
+
"root": ".g-contact-page",
|
|
793
|
+
"parts": [
|
|
794
|
+
"g-contact-layout",
|
|
795
|
+
"g-contact-details",
|
|
796
|
+
"g-contact-form"
|
|
797
|
+
],
|
|
798
|
+
"useFor": [
|
|
799
|
+
"联系我们",
|
|
800
|
+
"销售咨询",
|
|
801
|
+
"线索收集",
|
|
802
|
+
"服务申请"
|
|
803
|
+
],
|
|
804
|
+
"behaviors": [
|
|
805
|
+
"character-count",
|
|
806
|
+
"conditional-field"
|
|
807
|
+
]
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"id": "solution.pricing",
|
|
811
|
+
"name": "定价页",
|
|
812
|
+
"category": "solution",
|
|
813
|
+
"platforms": [
|
|
814
|
+
"web",
|
|
815
|
+
"mobile"
|
|
816
|
+
],
|
|
817
|
+
"root": ".g-pricing-page",
|
|
818
|
+
"parts": [
|
|
819
|
+
"g-pricing-page-header",
|
|
820
|
+
"g-pricing-page-grid",
|
|
821
|
+
"g-pricing-page-card"
|
|
822
|
+
],
|
|
823
|
+
"useFor": [
|
|
824
|
+
"SaaS 定价",
|
|
825
|
+
"会员方案",
|
|
826
|
+
"服务套餐",
|
|
827
|
+
"产品版本比较"
|
|
828
|
+
],
|
|
829
|
+
"behaviors": [
|
|
830
|
+
"saved-choice",
|
|
831
|
+
"accordion"
|
|
832
|
+
]
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"id": "solution.dashboard-overview",
|
|
836
|
+
"name": "综合仪表盘",
|
|
837
|
+
"category": "solution",
|
|
838
|
+
"platforms": [
|
|
839
|
+
"web",
|
|
840
|
+
"desktop",
|
|
841
|
+
"tablet",
|
|
842
|
+
"tauri",
|
|
843
|
+
"electron"
|
|
844
|
+
],
|
|
845
|
+
"root": ".g-dashboard-overview",
|
|
846
|
+
"parts": [
|
|
847
|
+
"g-solution-header",
|
|
848
|
+
"g-dashboard-metrics",
|
|
849
|
+
"g-dashboard-layout",
|
|
850
|
+
"g-dashboard-panel"
|
|
851
|
+
],
|
|
852
|
+
"useFor": [
|
|
853
|
+
"运营总览",
|
|
854
|
+
"管理驾驶舱",
|
|
855
|
+
"个人仪表盘",
|
|
856
|
+
"实时监控"
|
|
857
|
+
],
|
|
858
|
+
"behaviors": [
|
|
859
|
+
"data-filter",
|
|
860
|
+
"data-view",
|
|
861
|
+
"dropdown"
|
|
862
|
+
]
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"id": "solution.admin-list",
|
|
866
|
+
"name": "后台列表管理页",
|
|
867
|
+
"category": "solution",
|
|
868
|
+
"platforms": [
|
|
869
|
+
"web",
|
|
870
|
+
"desktop",
|
|
871
|
+
"tablet"
|
|
872
|
+
],
|
|
873
|
+
"root": ".g-admin-list-page",
|
|
874
|
+
"parts": [
|
|
875
|
+
"g-admin-list-header",
|
|
876
|
+
"g-admin-list-filters",
|
|
877
|
+
"g-admin-list-content",
|
|
878
|
+
"g-solution-toolbar"
|
|
879
|
+
],
|
|
880
|
+
"useFor": [
|
|
881
|
+
"用户管理",
|
|
882
|
+
"内容管理",
|
|
883
|
+
"订单管理",
|
|
884
|
+
"资源管理"
|
|
885
|
+
],
|
|
886
|
+
"behaviors": [
|
|
887
|
+
"table-sort",
|
|
888
|
+
"row-select",
|
|
889
|
+
"data-filter",
|
|
890
|
+
"column-toggle"
|
|
891
|
+
]
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"id": "solution.record-detail",
|
|
895
|
+
"name": "记录详情页",
|
|
896
|
+
"category": "solution",
|
|
897
|
+
"platforms": [
|
|
898
|
+
"web",
|
|
899
|
+
"desktop",
|
|
900
|
+
"mobile"
|
|
901
|
+
],
|
|
902
|
+
"root": ".g-record-detail-page",
|
|
903
|
+
"parts": [
|
|
904
|
+
"g-record-detail-header",
|
|
905
|
+
"g-record-detail-layout",
|
|
906
|
+
"g-record-detail-main",
|
|
907
|
+
"g-record-detail-aside",
|
|
908
|
+
"g-record-detail-section"
|
|
909
|
+
],
|
|
910
|
+
"useFor": [
|
|
911
|
+
"客户详情",
|
|
912
|
+
"订单详情",
|
|
913
|
+
"内容详情",
|
|
914
|
+
"资产详情"
|
|
915
|
+
],
|
|
916
|
+
"behaviors": [
|
|
917
|
+
"tabs",
|
|
918
|
+
"accordion",
|
|
919
|
+
"dialog"
|
|
920
|
+
]
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"id": "solution.settings-center",
|
|
924
|
+
"name": "设置中心",
|
|
925
|
+
"category": "solution",
|
|
926
|
+
"platforms": [
|
|
927
|
+
"web",
|
|
928
|
+
"desktop",
|
|
929
|
+
"mobile",
|
|
930
|
+
"tauri",
|
|
931
|
+
"electron"
|
|
932
|
+
],
|
|
933
|
+
"root": ".g-settings-center",
|
|
934
|
+
"parts": [
|
|
935
|
+
"g-settings-center-header",
|
|
936
|
+
"g-settings-center-layout",
|
|
937
|
+
"g-settings-center-nav",
|
|
938
|
+
"g-settings-center-content"
|
|
939
|
+
],
|
|
940
|
+
"useFor": [
|
|
941
|
+
"产品设置",
|
|
942
|
+
"组织设置",
|
|
943
|
+
"桌面应用首选项",
|
|
944
|
+
"集成配置"
|
|
945
|
+
],
|
|
946
|
+
"behaviors": [
|
|
947
|
+
"scrollspy",
|
|
948
|
+
"conditional-field",
|
|
949
|
+
"autosave"
|
|
950
|
+
]
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"id": "solution.user-center",
|
|
954
|
+
"name": "用户中心",
|
|
955
|
+
"category": "solution",
|
|
956
|
+
"platforms": [
|
|
957
|
+
"web",
|
|
958
|
+
"desktop",
|
|
959
|
+
"mobile"
|
|
960
|
+
],
|
|
961
|
+
"root": ".g-user-center",
|
|
962
|
+
"parts": [
|
|
963
|
+
"g-user-center-header",
|
|
964
|
+
"g-user-center-layout",
|
|
965
|
+
"g-user-center-nav",
|
|
966
|
+
"g-user-center-content"
|
|
967
|
+
],
|
|
968
|
+
"useFor": [
|
|
969
|
+
"个人资料",
|
|
970
|
+
"账号安全",
|
|
971
|
+
"订单资产",
|
|
972
|
+
"会员权益"
|
|
973
|
+
],
|
|
974
|
+
"behaviors": [
|
|
975
|
+
"tabs",
|
|
976
|
+
"password-strength",
|
|
977
|
+
"native-file-picker"
|
|
978
|
+
]
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"id": "solution.notification-center",
|
|
982
|
+
"name": "通知中心",
|
|
983
|
+
"category": "solution",
|
|
984
|
+
"platforms": [
|
|
985
|
+
"web",
|
|
986
|
+
"desktop",
|
|
987
|
+
"mobile",
|
|
988
|
+
"tauri",
|
|
989
|
+
"electron"
|
|
990
|
+
],
|
|
991
|
+
"root": ".g-notification-center-page",
|
|
992
|
+
"parts": [
|
|
993
|
+
"g-notification-center-header",
|
|
994
|
+
"g-notification-groups",
|
|
995
|
+
"g-notification-group",
|
|
996
|
+
"g-notification-row"
|
|
997
|
+
],
|
|
998
|
+
"useFor": [
|
|
999
|
+
"系统通知",
|
|
1000
|
+
"消息中心",
|
|
1001
|
+
"提醒",
|
|
1002
|
+
"更新动态"
|
|
1003
|
+
],
|
|
1004
|
+
"behaviors": [
|
|
1005
|
+
"data-filter",
|
|
1006
|
+
"row-select"
|
|
1007
|
+
]
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"id": "solution.onboarding",
|
|
1011
|
+
"name": "首次使用引导",
|
|
1012
|
+
"category": "solution",
|
|
1013
|
+
"platforms": [
|
|
1014
|
+
"web",
|
|
1015
|
+
"mobile",
|
|
1016
|
+
"desktop",
|
|
1017
|
+
"tauri",
|
|
1018
|
+
"electron"
|
|
1019
|
+
],
|
|
1020
|
+
"root": ".g-onboarding-flow",
|
|
1021
|
+
"parts": [
|
|
1022
|
+
"g-onboarding-aside",
|
|
1023
|
+
"g-onboarding-main",
|
|
1024
|
+
"g-onboarding-step",
|
|
1025
|
+
"g-onboarding-progress"
|
|
1026
|
+
],
|
|
1027
|
+
"useFor": [
|
|
1028
|
+
"账号初始化",
|
|
1029
|
+
"产品引导",
|
|
1030
|
+
"企业入驻",
|
|
1031
|
+
"数据导入"
|
|
1032
|
+
],
|
|
1033
|
+
"behaviors": [
|
|
1034
|
+
"conditional-field",
|
|
1035
|
+
"saved-choice",
|
|
1036
|
+
"native-file-picker"
|
|
1037
|
+
]
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"id": "solution.crm",
|
|
1041
|
+
"name": "CRM 客户工作台",
|
|
1042
|
+
"category": "solution",
|
|
1043
|
+
"platforms": [
|
|
1044
|
+
"web",
|
|
1045
|
+
"desktop",
|
|
1046
|
+
"tauri",
|
|
1047
|
+
"electron"
|
|
1048
|
+
],
|
|
1049
|
+
"root": ".g-crm-workspace",
|
|
1050
|
+
"parts": [
|
|
1051
|
+
"g-crm-header",
|
|
1052
|
+
"g-crm-layout",
|
|
1053
|
+
"g-crm-nav",
|
|
1054
|
+
"g-crm-main",
|
|
1055
|
+
"g-crm-inspector",
|
|
1056
|
+
"g-crm-pipeline"
|
|
1057
|
+
],
|
|
1058
|
+
"useFor": [
|
|
1059
|
+
"销售管道",
|
|
1060
|
+
"客户关系",
|
|
1061
|
+
"商机",
|
|
1062
|
+
"线索",
|
|
1063
|
+
"跟进任务"
|
|
1064
|
+
],
|
|
1065
|
+
"behaviors": [
|
|
1066
|
+
"data-filter",
|
|
1067
|
+
"tabs",
|
|
1068
|
+
"split-pane"
|
|
1069
|
+
]
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"id": "solution.project",
|
|
1073
|
+
"name": "项目协作工作台",
|
|
1074
|
+
"category": "solution",
|
|
1075
|
+
"platforms": [
|
|
1076
|
+
"web",
|
|
1077
|
+
"desktop",
|
|
1078
|
+
"tauri",
|
|
1079
|
+
"electron"
|
|
1080
|
+
],
|
|
1081
|
+
"root": ".g-project-workspace",
|
|
1082
|
+
"parts": [
|
|
1083
|
+
"g-project-header",
|
|
1084
|
+
"g-project-layout",
|
|
1085
|
+
"g-project-nav",
|
|
1086
|
+
"g-project-main",
|
|
1087
|
+
"g-project-inspector",
|
|
1088
|
+
"g-project-board"
|
|
1089
|
+
],
|
|
1090
|
+
"useFor": [
|
|
1091
|
+
"项目管理",
|
|
1092
|
+
"任务看板",
|
|
1093
|
+
"研发协作",
|
|
1094
|
+
"团队计划"
|
|
1095
|
+
],
|
|
1096
|
+
"behaviors": [
|
|
1097
|
+
"data-view",
|
|
1098
|
+
"split-pane",
|
|
1099
|
+
"picker"
|
|
1100
|
+
]
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"id": "solution.support",
|
|
1104
|
+
"name": "客服与工单中心",
|
|
1105
|
+
"category": "solution",
|
|
1106
|
+
"platforms": [
|
|
1107
|
+
"web",
|
|
1108
|
+
"desktop",
|
|
1109
|
+
"mobile"
|
|
1110
|
+
],
|
|
1111
|
+
"root": ".g-support-center",
|
|
1112
|
+
"parts": [
|
|
1113
|
+
"g-support-header",
|
|
1114
|
+
"g-support-layout",
|
|
1115
|
+
"g-support-nav",
|
|
1116
|
+
"g-support-main",
|
|
1117
|
+
"g-support-inspector",
|
|
1118
|
+
"g-support-thread"
|
|
1119
|
+
],
|
|
1120
|
+
"useFor": [
|
|
1121
|
+
"客服",
|
|
1122
|
+
"工单",
|
|
1123
|
+
"投诉处理",
|
|
1124
|
+
"售后服务"
|
|
1125
|
+
],
|
|
1126
|
+
"behaviors": [
|
|
1127
|
+
"data-filter",
|
|
1128
|
+
"picker",
|
|
1129
|
+
"autosave"
|
|
1130
|
+
]
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"id": "solution.approval",
|
|
1134
|
+
"name": "审批中心",
|
|
1135
|
+
"category": "solution",
|
|
1136
|
+
"platforms": [
|
|
1137
|
+
"web",
|
|
1138
|
+
"desktop",
|
|
1139
|
+
"mobile"
|
|
1140
|
+
],
|
|
1141
|
+
"root": ".g-approval-center",
|
|
1142
|
+
"parts": [
|
|
1143
|
+
"g-approval-header",
|
|
1144
|
+
"g-approval-layout",
|
|
1145
|
+
"g-approval-nav",
|
|
1146
|
+
"g-approval-main",
|
|
1147
|
+
"g-approval-inspector",
|
|
1148
|
+
"g-approval-queue"
|
|
1149
|
+
],
|
|
1150
|
+
"useFor": [
|
|
1151
|
+
"流程审批",
|
|
1152
|
+
"费用审批",
|
|
1153
|
+
"内容审核",
|
|
1154
|
+
"权限申请"
|
|
1155
|
+
],
|
|
1156
|
+
"behaviors": [
|
|
1157
|
+
"data-filter",
|
|
1158
|
+
"saved-choice",
|
|
1159
|
+
"dialog"
|
|
1160
|
+
]
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"id": "solution.knowledge-base",
|
|
1164
|
+
"name": "企业知识库",
|
|
1165
|
+
"category": "solution",
|
|
1166
|
+
"platforms": [
|
|
1167
|
+
"web",
|
|
1168
|
+
"desktop",
|
|
1169
|
+
"mobile"
|
|
1170
|
+
],
|
|
1171
|
+
"root": ".g-knowledge-base",
|
|
1172
|
+
"parts": [
|
|
1173
|
+
"g-knowledge-hero",
|
|
1174
|
+
"g-knowledge-search",
|
|
1175
|
+
"g-knowledge-layout",
|
|
1176
|
+
"g-knowledge-sidebar",
|
|
1177
|
+
"g-knowledge-main"
|
|
1178
|
+
],
|
|
1179
|
+
"useFor": [
|
|
1180
|
+
"企业 Wiki",
|
|
1181
|
+
"知识管理",
|
|
1182
|
+
"制度库",
|
|
1183
|
+
"内部帮助"
|
|
1184
|
+
],
|
|
1185
|
+
"behaviors": [
|
|
1186
|
+
"tree",
|
|
1187
|
+
"data-filter",
|
|
1188
|
+
"scrollspy"
|
|
1189
|
+
]
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"id": "solution.learning",
|
|
1193
|
+
"name": "学习与培训门户",
|
|
1194
|
+
"category": "solution",
|
|
1195
|
+
"platforms": [
|
|
1196
|
+
"web",
|
|
1197
|
+
"desktop",
|
|
1198
|
+
"mobile"
|
|
1199
|
+
],
|
|
1200
|
+
"root": ".g-learning-portal",
|
|
1201
|
+
"parts": [
|
|
1202
|
+
"g-learning-layout",
|
|
1203
|
+
"g-learning-sidebar",
|
|
1204
|
+
"g-learning-main",
|
|
1205
|
+
"g-course-grid",
|
|
1206
|
+
"g-course-card"
|
|
1207
|
+
],
|
|
1208
|
+
"useFor": [
|
|
1209
|
+
"在线课程",
|
|
1210
|
+
"企业培训",
|
|
1211
|
+
"认证学习",
|
|
1212
|
+
"学校门户"
|
|
1213
|
+
],
|
|
1214
|
+
"behaviors": [
|
|
1215
|
+
"data-filter",
|
|
1216
|
+
"tabs"
|
|
1217
|
+
]
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"id": "solution.event",
|
|
1221
|
+
"name": "活动门户",
|
|
1222
|
+
"category": "solution",
|
|
1223
|
+
"platforms": [
|
|
1224
|
+
"web",
|
|
1225
|
+
"mobile"
|
|
1226
|
+
],
|
|
1227
|
+
"root": ".g-event-portal",
|
|
1228
|
+
"parts": [
|
|
1229
|
+
"g-event-hero",
|
|
1230
|
+
"g-event-grid",
|
|
1231
|
+
"g-event-card"
|
|
1232
|
+
],
|
|
1233
|
+
"useFor": [
|
|
1234
|
+
"会议",
|
|
1235
|
+
"展览",
|
|
1236
|
+
"社区活动",
|
|
1237
|
+
"直播活动"
|
|
1238
|
+
],
|
|
1239
|
+
"behaviors": [
|
|
1240
|
+
"data-filter",
|
|
1241
|
+
"saved-choice"
|
|
1242
|
+
]
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"id": "solution.booking",
|
|
1246
|
+
"name": "预约与预订门户",
|
|
1247
|
+
"category": "solution",
|
|
1248
|
+
"platforms": [
|
|
1249
|
+
"web",
|
|
1250
|
+
"desktop",
|
|
1251
|
+
"mobile"
|
|
1252
|
+
],
|
|
1253
|
+
"root": ".g-booking-portal",
|
|
1254
|
+
"parts": [
|
|
1255
|
+
"g-booking-layout",
|
|
1256
|
+
"g-booking-results",
|
|
1257
|
+
"g-booking-summary"
|
|
1258
|
+
],
|
|
1259
|
+
"useFor": [
|
|
1260
|
+
"医疗预约",
|
|
1261
|
+
"场地预订",
|
|
1262
|
+
"酒店",
|
|
1263
|
+
"服务预约",
|
|
1264
|
+
"排班"
|
|
1265
|
+
],
|
|
1266
|
+
"behaviors": [
|
|
1267
|
+
"saved-choice",
|
|
1268
|
+
"quantity-stepper"
|
|
1269
|
+
]
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"id": "solution.healthcare",
|
|
1273
|
+
"name": "医疗健康门户",
|
|
1274
|
+
"category": "solution",
|
|
1275
|
+
"platforms": [
|
|
1276
|
+
"web",
|
|
1277
|
+
"desktop",
|
|
1278
|
+
"mobile"
|
|
1279
|
+
],
|
|
1280
|
+
"root": ".g-healthcare-portal",
|
|
1281
|
+
"parts": [
|
|
1282
|
+
"g-healthcare-layout",
|
|
1283
|
+
"g-industry-portal-nav",
|
|
1284
|
+
"g-industry-portal-main",
|
|
1285
|
+
"g-healthcare-summary",
|
|
1286
|
+
"g-healthcare-record",
|
|
1287
|
+
"g-industry-alert"
|
|
1288
|
+
],
|
|
1289
|
+
"useFor": [
|
|
1290
|
+
"患者门户",
|
|
1291
|
+
"诊疗记录",
|
|
1292
|
+
"预约挂号",
|
|
1293
|
+
"健康管理"
|
|
1294
|
+
],
|
|
1295
|
+
"behaviors": [
|
|
1296
|
+
"tabs",
|
|
1297
|
+
"dialog"
|
|
1298
|
+
]
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"id": "solution.finance",
|
|
1302
|
+
"name": "金融账户门户",
|
|
1303
|
+
"category": "solution",
|
|
1304
|
+
"platforms": [
|
|
1305
|
+
"web",
|
|
1306
|
+
"desktop",
|
|
1307
|
+
"mobile"
|
|
1308
|
+
],
|
|
1309
|
+
"root": ".g-finance-portal",
|
|
1310
|
+
"parts": [
|
|
1311
|
+
"g-finance-layout",
|
|
1312
|
+
"g-industry-portal-nav",
|
|
1313
|
+
"g-industry-portal-main",
|
|
1314
|
+
"g-finance-summary",
|
|
1315
|
+
"g-finance-account",
|
|
1316
|
+
"g-industry-alert"
|
|
1317
|
+
],
|
|
1318
|
+
"useFor": [
|
|
1319
|
+
"账户总览",
|
|
1320
|
+
"银行服务",
|
|
1321
|
+
"财富管理",
|
|
1322
|
+
"企业财务"
|
|
1323
|
+
],
|
|
1324
|
+
"behaviors": [
|
|
1325
|
+
"tabs",
|
|
1326
|
+
"data-filter",
|
|
1327
|
+
"dialog"
|
|
1328
|
+
]
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"id": "solution.public-service",
|
|
1332
|
+
"name": "政务与公共服务门户",
|
|
1333
|
+
"category": "solution",
|
|
1334
|
+
"platforms": [
|
|
1335
|
+
"web",
|
|
1336
|
+
"desktop",
|
|
1337
|
+
"mobile"
|
|
1338
|
+
],
|
|
1339
|
+
"root": ".g-public-service-portal",
|
|
1340
|
+
"parts": [
|
|
1341
|
+
"g-public-service-layout",
|
|
1342
|
+
"g-industry-portal-nav",
|
|
1343
|
+
"g-industry-portal-main",
|
|
1344
|
+
"g-public-service-summary",
|
|
1345
|
+
"g-public-service-item",
|
|
1346
|
+
"g-industry-alert"
|
|
1347
|
+
],
|
|
1348
|
+
"useFor": [
|
|
1349
|
+
"政务办事",
|
|
1350
|
+
"公共服务",
|
|
1351
|
+
"申请进度",
|
|
1352
|
+
"便民门户"
|
|
1353
|
+
],
|
|
1354
|
+
"behaviors": [
|
|
1355
|
+
"data-filter",
|
|
1356
|
+
"dialog"
|
|
1357
|
+
]
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"id": "solution.marketplace",
|
|
1361
|
+
"name": "平台市场",
|
|
1362
|
+
"category": "solution",
|
|
1363
|
+
"platforms": [
|
|
1364
|
+
"web",
|
|
1365
|
+
"mobile"
|
|
1366
|
+
],
|
|
1367
|
+
"root": ".g-marketplace-page",
|
|
1368
|
+
"parts": [
|
|
1369
|
+
"g-marketplace-hero",
|
|
1370
|
+
"g-marketplace-layout",
|
|
1371
|
+
"g-marketplace-filters",
|
|
1372
|
+
"g-marketplace-grid",
|
|
1373
|
+
"g-marketplace-card"
|
|
1374
|
+
],
|
|
1375
|
+
"useFor": [
|
|
1376
|
+
"应用市场",
|
|
1377
|
+
"服务市场",
|
|
1378
|
+
"人才市场",
|
|
1379
|
+
"插件市场",
|
|
1380
|
+
"商品聚合"
|
|
1381
|
+
],
|
|
1382
|
+
"behaviors": [
|
|
1383
|
+
"data-filter",
|
|
1384
|
+
"saved-choice"
|
|
1385
|
+
]
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"id": "solution.community",
|
|
1389
|
+
"name": "社区与论坛",
|
|
1390
|
+
"category": "solution",
|
|
1391
|
+
"platforms": [
|
|
1392
|
+
"web",
|
|
1393
|
+
"mobile"
|
|
1394
|
+
],
|
|
1395
|
+
"root": ".g-community-page",
|
|
1396
|
+
"parts": [
|
|
1397
|
+
"g-community-hero",
|
|
1398
|
+
"g-community-layout",
|
|
1399
|
+
"g-community-feed",
|
|
1400
|
+
"g-community-sidebar",
|
|
1401
|
+
"g-community-post"
|
|
1402
|
+
],
|
|
1403
|
+
"useFor": [
|
|
1404
|
+
"社区",
|
|
1405
|
+
"论坛",
|
|
1406
|
+
"兴趣小组",
|
|
1407
|
+
"用户内容"
|
|
1408
|
+
],
|
|
1409
|
+
"behaviors": [
|
|
1410
|
+
"data-filter",
|
|
1411
|
+
"picker",
|
|
1412
|
+
"dialog"
|
|
1413
|
+
]
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
"id": "solution.status-center",
|
|
1417
|
+
"name": "服务状态中心",
|
|
1418
|
+
"category": "solution",
|
|
1419
|
+
"platforms": [
|
|
1420
|
+
"web",
|
|
1421
|
+
"mobile",
|
|
1422
|
+
"print"
|
|
1423
|
+
],
|
|
1424
|
+
"root": ".g-status-center-page",
|
|
1425
|
+
"parts": [
|
|
1426
|
+
"g-status-center-header",
|
|
1427
|
+
"g-status-overall",
|
|
1428
|
+
"g-status-services",
|
|
1429
|
+
"g-status-service",
|
|
1430
|
+
"g-status-history",
|
|
1431
|
+
"g-status-incident"
|
|
1432
|
+
],
|
|
1433
|
+
"useFor": [
|
|
1434
|
+
"系统状态",
|
|
1435
|
+
"故障公告",
|
|
1436
|
+
"维护计划",
|
|
1437
|
+
"SLA 透明度"
|
|
1438
|
+
],
|
|
1439
|
+
"behaviors": [
|
|
1440
|
+
"accordion"
|
|
1441
|
+
]
|
|
1442
|
+
}
|
|
1443
|
+
]
|
|
1444
|
+
}
|