@myun/gimi-chat 0.0.3 → 0.0.5

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.
Files changed (206) hide show
  1. package/dist/apis/fetch.d.ts +64 -0
  2. package/dist/apis/fetch.js +512 -0
  3. package/dist/apis/useApi.d.ts +57 -0
  4. package/dist/apis/useApi.js +378 -0
  5. package/dist/assets/image/Subtract.png +0 -0
  6. package/dist/assets/image/ai-logo.png +0 -0
  7. package/dist/assets/image/copyIcon.png +0 -0
  8. package/dist/assets/image/deepthinkActive.png +0 -0
  9. package/dist/assets/image/empty-img-dark.png +0 -0
  10. package/dist/assets/image/empty-img.png +0 -0
  11. package/dist/assets/image/like_active.png +0 -0
  12. package/dist/assets/image/love.png +0 -0
  13. package/dist/assets/image/retry.png +0 -0
  14. package/dist/assets/image/soundOut.png +0 -0
  15. package/dist/assets/image/unlike_active.png +0 -0
  16. package/dist/assets/image/unlove.png +0 -0
  17. package/dist/assets/lottie/ai-bg.json +1704 -0
  18. package/dist/assets/lottie/ai-loading.json +192 -0
  19. package/dist/assets/lottie/ai-output-loading.json +272 -0
  20. package/dist/assets/lottie/ai-output-normal.json +17694 -0
  21. package/dist/assets/lottie/ai-output-strengthen.json +17321 -0
  22. package/dist/assets/lottie/ai-voice-play.json +1 -0
  23. package/dist/assets/lottie/living.json +705 -0
  24. package/dist/assets/lottie/myun-living.json +726 -0
  25. package/dist/assets/lottie/myun-loading.json +530 -0
  26. package/dist/components/ai-chat-dialogue/index.d.ts +16 -0
  27. package/dist/components/ai-chat-dialogue/index.js +1056 -0
  28. package/dist/components/ai-chat-dialogue/index.module.css +230 -0
  29. package/dist/components/ai-chat-dialogue/message-parser.d.ts +36 -0
  30. package/dist/components/ai-chat-dialogue/message-parser.js +52 -0
  31. package/dist/components/ai-chat-dialogue/tlv.d.ts +7 -0
  32. package/dist/components/ai-chat-dialogue/tlv.js +32 -0
  33. package/dist/components/ai-chat-dialogue/volc-voice-call-client.d.ts +47 -0
  34. package/dist/components/ai-chat-dialogue/volc-voice-call-client.js +246 -0
  35. package/dist/components/ai-correction/index.d.ts +5 -0
  36. package/dist/components/ai-correction/index.js +45 -0
  37. package/dist/components/ai-loading/index.d.ts +3 -0
  38. package/dist/components/ai-loading/index.js +14 -0
  39. package/dist/components/ai-loading/index.module.css +11 -0
  40. package/dist/components/answer-item/index.d.ts +27 -0
  41. package/dist/components/answer-item/index.js +194 -0
  42. package/dist/components/answer-item/index.module.css +266 -0
  43. package/dist/components/ask-card/index.d.ts +10 -0
  44. package/dist/components/ask-card/index.js +76 -0
  45. package/dist/components/ask-card/index.module.css +122 -0
  46. package/dist/components/chat-input/index.d.ts +31 -0
  47. package/dist/components/chat-input/index.js +433 -0
  48. package/dist/components/chat-input/index.module.css +42 -0
  49. package/dist/components/chat-voice/VoiceCommunication.d.ts +7 -0
  50. package/dist/components/chat-voice/VoiceCommunication.js +69 -0
  51. package/dist/components/chat-voice/VoiceRecord.d.ts +7 -0
  52. package/dist/components/chat-voice/VoiceRecord.js +34 -0
  53. package/dist/components/conversation-delete/index.d.ts +5 -0
  54. package/dist/components/conversation-delete/index.js +24 -0
  55. package/dist/components/dots-loading/index.d.ts +2 -0
  56. package/dist/components/dots-loading/index.js +11 -0
  57. package/dist/components/dots-loading/index.module.css +41 -0
  58. package/dist/components/empty/index.d.ts +9 -0
  59. package/dist/components/empty/index.js +32 -0
  60. package/dist/components/empty/index.module.css +24 -0
  61. package/dist/components/excel-components/ExcelCard.d.ts +11 -0
  62. package/dist/components/excel-components/ExcelCard.js +35 -0
  63. package/dist/components/excel-components/ExcelExcuting.d.ts +10 -0
  64. package/dist/components/excel-components/ExcelExcuting.js +263 -0
  65. package/dist/components/excel-components/ExcelFailCard.d.ts +9 -0
  66. package/dist/components/excel-components/ExcelFailCard.js +20 -0
  67. package/dist/components/excel-components/ExcelSuccessCard.d.ts +5 -0
  68. package/dist/components/excel-components/ExcelSuccessCard.js +50 -0
  69. package/dist/components/excel-components/index.module.css +212 -0
  70. package/dist/components/excel-components/styles.module.css +178 -0
  71. package/dist/components/file-card/fileCardSidebar.d.ts +8 -0
  72. package/dist/components/file-card/fileCardSidebar.js +56 -0
  73. package/dist/components/file-card/index.d.ts +15 -0
  74. package/dist/components/file-card/index.js +97 -0
  75. package/dist/components/file-card/index.module.css +139 -0
  76. package/dist/components/file-preview/index.d.ts +3 -0
  77. package/dist/components/file-preview/index.js +227 -0
  78. package/dist/components/file-preview/index.module.css +83 -0
  79. package/dist/components/file-upload/index.d.ts +16 -0
  80. package/dist/components/file-upload/index.js +238 -0
  81. package/dist/components/file-upload/uploadV1.d.ts +16 -0
  82. package/dist/components/file-upload/uploadV1.js +267 -0
  83. package/dist/components/gimi-sidebar/index.d.ts +17 -0
  84. package/dist/components/gimi-sidebar/index.js +41 -0
  85. package/dist/components/gimi-sidebar/index.module.css +118 -0
  86. package/dist/components/header/index.d.ts +5 -0
  87. package/dist/components/header/index.js +20 -0
  88. package/dist/components/header/index.module.css +19 -0
  89. package/dist/components/iconfont-com/index.d.ts +11 -0
  90. package/dist/components/iconfont-com/index.js +29 -0
  91. package/dist/components/index.d.ts +1 -0
  92. package/dist/components/index.js +1 -0
  93. package/dist/components/knowledge-trace/KnowledgeIconComponent.d.ts +7 -0
  94. package/dist/components/knowledge-trace/KnowledgeIconComponent.js +101 -0
  95. package/dist/components/knowledge-trace/classList.d.ts +6 -0
  96. package/dist/components/knowledge-trace/classList.js +72 -0
  97. package/dist/components/knowledge-trace/documentList.d.ts +6 -0
  98. package/dist/components/knowledge-trace/documentList.js +75 -0
  99. package/dist/components/knowledge-trace/index.d.ts +18 -0
  100. package/dist/components/knowledge-trace/index.js +155 -0
  101. package/dist/components/knowledge-trace/index.module.css +254 -0
  102. package/dist/components/knowledge-trace/interfaces.d.ts +166 -0
  103. package/dist/components/knowledge-trace/interfaces.js +1 -0
  104. package/dist/components/knowledge-trace/videoList.d.ts +6 -0
  105. package/dist/components/knowledge-trace/videoList.js +91 -0
  106. package/dist/components/lottie-img/index.d.ts +8 -0
  107. package/dist/components/lottie-img/index.js +99 -0
  108. package/dist/components/message-actions/CopyButton.d.ts +7 -0
  109. package/dist/components/message-actions/CopyButton.js +33 -0
  110. package/dist/components/message-actions/LikeButton.d.ts +7 -0
  111. package/dist/components/message-actions/LikeButton.js +34 -0
  112. package/dist/components/message-actions/RegenerateButton.d.ts +5 -0
  113. package/dist/components/message-actions/RegenerateButton.js +27 -0
  114. package/dist/components/message-actions/UnLikeButton.d.ts +7 -0
  115. package/dist/components/message-actions/UnLikeButton.js +34 -0
  116. package/dist/components/message-actions/VoicePlay.d.ts +10 -0
  117. package/dist/components/message-actions/VoicePlay.js +74 -0
  118. package/dist/components/message-list/index.d.ts +19 -0
  119. package/dist/components/message-list/index.js +164 -0
  120. package/dist/components/message-list/index.module.css +261 -0
  121. package/dist/components/no-microphone-root/index.d.ts +6 -0
  122. package/dist/components/no-microphone-root/index.js +36 -0
  123. package/dist/components/no-microphone-root/index.module.css +48 -0
  124. package/dist/components/preset-agent-content/index.d.ts +8 -0
  125. package/dist/components/preset-agent-content/index.js +24 -0
  126. package/dist/components/preset-agent-content/index.module.css +46 -0
  127. package/dist/components/quoted-content/index.d.ts +0 -0
  128. package/dist/components/quoted-content/index.js +171 -0
  129. package/dist/components/quoted-content/index.module.css +80 -0
  130. package/dist/components/reasoning-content/index.d.ts +6 -0
  131. package/dist/components/reasoning-content/index.js +116 -0
  132. package/dist/components/reasoning-content/index.module.css +169 -0
  133. package/dist/components/reference-content/index.d.ts +28 -0
  134. package/dist/components/reference-content/index.js +125 -0
  135. package/dist/components/reference-content/index.module.css +84 -0
  136. package/dist/components/templates/CommonChat.d.ts +5 -0
  137. package/dist/components/templates/CommonChat.js +218 -0
  138. package/dist/components/templates/GimiChatComponent.d.ts +4 -0
  139. package/dist/components/templates/GimiChatComponent.js +23 -0
  140. package/dist/components/templates/demo/demo.d.ts +2 -0
  141. package/dist/components/templates/demo/demo.js +109 -0
  142. package/dist/components/templates/index.module.css +109 -0
  143. package/dist/components/upload-list/index.d.ts +15 -0
  144. package/dist/components/upload-list/index.js +90 -0
  145. package/dist/components/upload-list/index.module.css +119 -0
  146. package/dist/components/voice-bars/index.d.ts +4 -0
  147. package/dist/components/voice-bars/index.js +174 -0
  148. package/dist/components/voice-check-dialog/index.d.ts +8 -0
  149. package/dist/components/voice-check-dialog/index.js +163 -0
  150. package/dist/components/voice-check-dialog/index.module.css +9 -0
  151. package/dist/components/voice-recording/index.d.ts +9 -0
  152. package/dist/components/voice-recording/index.js +54 -0
  153. package/dist/components/voice-recording/index.module.css +41 -0
  154. package/dist/components/work-flow-content/demo.d.ts +3 -0
  155. package/dist/components/work-flow-content/demo.js +11 -0
  156. package/dist/components/work-flow-content/index.d.ts +6 -0
  157. package/dist/components/work-flow-content/index.js +55 -0
  158. package/dist/components/work-flow-content/index.module.css +24 -0
  159. package/dist/constants.d.ts +24 -0
  160. package/dist/constants.js +24 -0
  161. package/dist/hooks/useChatActions.d.ts +12 -0
  162. package/dist/hooks/useChatActions.js +207 -0
  163. package/dist/hooks/useChatHistory.d.ts +8 -0
  164. package/dist/hooks/useChatHistory.js +225 -0
  165. package/dist/hooks/useChatMessage.d.ts +49 -0
  166. package/dist/hooks/useChatMessage.js +87 -0
  167. package/dist/hooks/useChatRecommend.d.ts +8 -0
  168. package/dist/hooks/useChatRecommend.js +126 -0
  169. package/dist/hooks/useChatStream.d.ts +20 -0
  170. package/dist/hooks/useChatStream.js +244 -0
  171. package/dist/hooks/useChatUI.d.ts +32 -0
  172. package/dist/hooks/useChatUI.js +134 -0
  173. package/dist/hooks/useChatVoice.d.ts +11 -0
  174. package/dist/hooks/useChatVoice.js +379 -0
  175. package/dist/hooks/useCommonChatAPI.d.ts +27 -0
  176. package/dist/hooks/useCommonChatAPI.js +1276 -0
  177. package/dist/hooks/useFile.d.ts +13 -0
  178. package/dist/hooks/useFile.js +288 -0
  179. package/dist/hooks/useKnowledgeService.d.ts +17 -0
  180. package/dist/hooks/useKnowledgeService.js +210 -0
  181. package/dist/hooks/useLastEventId.d.ts +8 -0
  182. package/dist/hooks/useLastEventId.js +66 -0
  183. package/dist/hooks/useLongPoll.d.ts +3 -0
  184. package/dist/hooks/useLongPoll.js +111 -0
  185. package/dist/hooks/useScroll.d.ts +4 -0
  186. package/dist/hooks/useScroll.js +172 -0
  187. package/dist/index.d.ts +1 -0
  188. package/dist/index.js +1 -0
  189. package/dist/interfaces/chatMessage.d.ts +139 -0
  190. package/dist/interfaces/fileInterface.d.ts +10 -0
  191. package/dist/interfaces/fileInterface.js +11 -0
  192. package/dist/interfaces/knowledgeTrace.d.ts +177 -0
  193. package/dist/store/hooks.d.ts +4 -0
  194. package/dist/store/hooks.js +3 -0
  195. package/dist/store/index.d.ts +7 -0
  196. package/dist/store/index.js +7 -0
  197. package/dist/store/slices/gimiMenuSlice.d.ts +95 -0
  198. package/dist/store/slices/gimiMenuSlice.js +251 -0
  199. package/dist/utils/chatInputUtil.d.ts +19 -0
  200. package/dist/utils/chatInputUtil.js +45 -0
  201. package/dist/utils/tools.d.ts +50 -0
  202. package/dist/utils/tools.js +474 -0
  203. package/dist/utils/voice-stream.d.ts +119 -0
  204. package/dist/utils/voice-stream.js +1162 -0
  205. package/package.json +5 -6
  206. package/LICENSE +0 -21
@@ -0,0 +1,726 @@
1
+ {
2
+ "v": "5.9.4",
3
+ "fr": 29.9700012207031,
4
+ "ip": 0,
5
+ "op": 60.0000024438501,
6
+ "w": 12,
7
+ "h": 12,
8
+ "nm": "合成 2",
9
+ "ddd": 0,
10
+ "assets": [],
11
+ "layers": [
12
+ {
13
+ "ddd": 0,
14
+ "ind": 1,
15
+ "ty": 4,
16
+ "nm": "形状图层 4",
17
+ "sr": 1,
18
+ "ks": {
19
+ "o": { "a": 0, "k": 100, "ix": 11 },
20
+ "r": { "a": 0, "k": 0, "ix": 10 },
21
+ "p": {
22
+ "a": 1,
23
+ "k": [
24
+ { "i": { "x": 0.833, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 0, "s": [10.266, 12, 0], "to": [0, 0, 0], "ti": [0, 0.557, 0] },
25
+ { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 30, "s": [10.266, 15.375, 0], "to": [0, -0.097, 0], "ti": [0, 0, 0] },
26
+ { "t": 60.0000024438501, "s": [10.266, 12.031, 0] }
27
+ ],
28
+ "ix": 2,
29
+ "l": 2
30
+ },
31
+ "a": { "a": 0, "k": [-4.781, 5.969, 0], "ix": 1, "l": 2 },
32
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
33
+ },
34
+ "ao": 0,
35
+ "shapes": [
36
+ {
37
+ "ty": "gr",
38
+ "it": [
39
+ {
40
+ "ind": 0,
41
+ "ty": "sh",
42
+ "ix": 1,
43
+ "ks": {
44
+ "a": 1,
45
+ "k": [
46
+ {
47
+ "i": { "x": 0.833, "y": 1 },
48
+ "o": { "x": 0.333, "y": 0 },
49
+ "t": 0,
50
+ "s": [
51
+ {
52
+ "i": [
53
+ [0, -0.839],
54
+ [0, 0],
55
+ [0.839, 0],
56
+ [0, 0.839],
57
+ [0, 0],
58
+ [-0.839, 0]
59
+ ],
60
+ "o": [
61
+ [0, 0],
62
+ [0, 0.839],
63
+ [-0.839, 0],
64
+ [0, 0],
65
+ [0, -0.839],
66
+ [0.839, 0]
67
+ ],
68
+ "v": [
69
+ [1.506, -4.826],
70
+ [1.506, 4.165],
71
+ [-0.014, 5.684],
72
+ [-1.534, 4.165],
73
+ [-1.534, -4.826],
74
+ [-0.014, -6.345]
75
+ ],
76
+ "c": true
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ "i": { "x": 0.667, "y": 1 },
82
+ "o": { "x": 0.333, "y": 0 },
83
+ "t": 30,
84
+ "s": [
85
+ {
86
+ "i": [
87
+ [0, -0.83],
88
+ [0, 0],
89
+ [0.83, 0],
90
+ [0, 0.83],
91
+ [0, 0],
92
+ [-0.83, 0]
93
+ ],
94
+ "o": [
95
+ [0, 0],
96
+ [0, 0.83],
97
+ [-0.83, 0],
98
+ [0, 0],
99
+ [0, -0.83],
100
+ [0.83, 0]
101
+ ],
102
+ "v": [
103
+ [1.502, -0.812],
104
+ [1.502, 0.812],
105
+ [0, 2.314],
106
+ [-1.502, 0.812],
107
+ [-1.502, -0.812],
108
+ [0, -2.314]
109
+ ],
110
+ "c": true
111
+ }
112
+ ]
113
+ },
114
+ {
115
+ "t": 60.0000024438501,
116
+ "s": [
117
+ {
118
+ "i": [
119
+ [0, -0.839],
120
+ [0, 0],
121
+ [0.839, 0],
122
+ [0, 0.839],
123
+ [0, 0],
124
+ [-0.839, 0]
125
+ ],
126
+ "o": [
127
+ [0, 0],
128
+ [0, 0.839],
129
+ [-0.839, 0],
130
+ [0, 0],
131
+ [0, -0.839],
132
+ [0.839, 0]
133
+ ],
134
+ "v": [
135
+ [1.506, -4.826],
136
+ [1.506, 4.165],
137
+ [-0.014, 5.684],
138
+ [-1.534, 4.165],
139
+ [-1.534, -4.826],
140
+ [-0.014, -6.345]
141
+ ],
142
+ "c": true
143
+ }
144
+ ]
145
+ }
146
+ ],
147
+ "ix": 2
148
+ },
149
+ "nm": "路径 1",
150
+ "mn": "ADBE Vector Shape - Group",
151
+ "hd": false
152
+ },
153
+ {
154
+ "ty": "fl",
155
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
156
+ "o": { "a": 0, "k": 100, "ix": 5 },
157
+ "r": 1,
158
+ "bm": 0,
159
+ "nm": "填充 1",
160
+ "mn": "ADBE Vector Graphic - Fill",
161
+ "hd": false
162
+ },
163
+ {
164
+ "ty": "tr",
165
+ "p": { "a": 0, "k": [-4.529, 0.283], "ix": 2 },
166
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
167
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
168
+ "r": { "a": 0, "k": 0, "ix": 6 },
169
+ "o": { "a": 0, "k": 100, "ix": 7 },
170
+ "sk": { "a": 0, "k": 0, "ix": 4 },
171
+ "sa": { "a": 0, "k": 0, "ix": 5 },
172
+ "nm": "变换"
173
+ }
174
+ ],
175
+ "nm": "矩形 1",
176
+ "np": 3,
177
+ "cix": 2,
178
+ "bm": 0,
179
+ "ix": 1,
180
+ "mn": "ADBE Vector Group",
181
+ "hd": false
182
+ }
183
+ ],
184
+ "ip": 0,
185
+ "op": 120.0000048877,
186
+ "st": 0,
187
+ "ct": 1,
188
+ "bm": 0
189
+ },
190
+ {
191
+ "ddd": 0,
192
+ "ind": 2,
193
+ "ty": 4,
194
+ "nm": "形状图层 5",
195
+ "sr": 1,
196
+ "ks": {
197
+ "o": { "a": 0, "k": 100, "ix": 11 },
198
+ "r": { "a": 0, "k": 0, "ix": 10 },
199
+ "p": {
200
+ "a": 1,
201
+ "k": [
202
+ { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": -15, "s": [5.797, 15.344, 0], "to": [0, -0.097, 0], "ti": [0, 0.557, 0] },
203
+ { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 15, "s": [5.797, 12, 0], "to": [0, -0.097, 0], "ti": [0, 0.557, 0] },
204
+ { "t": 45.0000018328876, "s": [5.797, 15.344, 0] }
205
+ ],
206
+ "ix": 2,
207
+ "l": 2
208
+ },
209
+ "a": { "a": 0, "k": [-4.781, 5.969, 0], "ix": 1, "l": 2 },
210
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
211
+ },
212
+ "ao": 0,
213
+ "shapes": [
214
+ {
215
+ "ty": "gr",
216
+ "it": [
217
+ {
218
+ "ind": 0,
219
+ "ty": "sh",
220
+ "ix": 1,
221
+ "ks": {
222
+ "a": 1,
223
+ "k": [
224
+ {
225
+ "i": { "x": 0.667, "y": 1 },
226
+ "o": { "x": 0.333, "y": 0 },
227
+ "t": -15,
228
+ "s": [
229
+ {
230
+ "i": [
231
+ [0, -0.83],
232
+ [0, 0],
233
+ [0.83, 0],
234
+ [0, 0.83],
235
+ [0, 0],
236
+ [-0.83, 0]
237
+ ],
238
+ "o": [
239
+ [0, 0],
240
+ [0, 0.83],
241
+ [-0.83, 0],
242
+ [0, 0],
243
+ [0, -0.83],
244
+ [0.83, 0]
245
+ ],
246
+ "v": [
247
+ [1.502, -0.812],
248
+ [1.502, 0.812],
249
+ [0, 2.314],
250
+ [-1.502, 0.812],
251
+ [-1.502, -0.812],
252
+ [0, -2.314]
253
+ ],
254
+ "c": true
255
+ }
256
+ ]
257
+ },
258
+ {
259
+ "i": { "x": 0.667, "y": 1 },
260
+ "o": { "x": 0.333, "y": 0 },
261
+ "t": 15,
262
+ "s": [
263
+ {
264
+ "i": [
265
+ [0, -0.839],
266
+ [0, 0],
267
+ [0.839, 0],
268
+ [0, 0.839],
269
+ [0, 0],
270
+ [-0.839, 0]
271
+ ],
272
+ "o": [
273
+ [0, 0],
274
+ [0, 0.839],
275
+ [-0.839, 0],
276
+ [0, 0],
277
+ [0, -0.839],
278
+ [0.839, 0]
279
+ ],
280
+ "v": [
281
+ [1.506, -4.826],
282
+ [1.506, 4.165],
283
+ [-0.014, 5.684],
284
+ [-1.534, 4.165],
285
+ [-1.534, -4.826],
286
+ [-0.014, -6.345]
287
+ ],
288
+ "c": true
289
+ }
290
+ ]
291
+ },
292
+ {
293
+ "t": 45.0000018328876,
294
+ "s": [
295
+ {
296
+ "i": [
297
+ [0, -0.83],
298
+ [0, 0],
299
+ [0.83, 0],
300
+ [0, 0.83],
301
+ [0, 0],
302
+ [-0.83, 0]
303
+ ],
304
+ "o": [
305
+ [0, 0],
306
+ [0, 0.83],
307
+ [-0.83, 0],
308
+ [0, 0],
309
+ [0, -0.83],
310
+ [0.83, 0]
311
+ ],
312
+ "v": [
313
+ [1.502, -0.812],
314
+ [1.502, 0.812],
315
+ [0, 2.314],
316
+ [-1.502, 0.812],
317
+ [-1.502, -0.812],
318
+ [0, -2.314]
319
+ ],
320
+ "c": true
321
+ }
322
+ ]
323
+ }
324
+ ],
325
+ "ix": 2
326
+ },
327
+ "nm": "路径 1",
328
+ "mn": "ADBE Vector Shape - Group",
329
+ "hd": false
330
+ },
331
+ {
332
+ "ty": "fl",
333
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
334
+ "o": { "a": 0, "k": 100, "ix": 5 },
335
+ "r": 1,
336
+ "bm": 0,
337
+ "nm": "填充 1",
338
+ "mn": "ADBE Vector Graphic - Fill",
339
+ "hd": false
340
+ },
341
+ {
342
+ "ty": "tr",
343
+ "p": { "a": 0, "k": [-4.529, 0.283], "ix": 2 },
344
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
345
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
346
+ "r": { "a": 0, "k": 0, "ix": 6 },
347
+ "o": { "a": 0, "k": 100, "ix": 7 },
348
+ "sk": { "a": 0, "k": 0, "ix": 4 },
349
+ "sa": { "a": 0, "k": 0, "ix": 5 },
350
+ "nm": "变换"
351
+ }
352
+ ],
353
+ "nm": "矩形 1",
354
+ "np": 3,
355
+ "cix": 2,
356
+ "bm": 0,
357
+ "ix": 1,
358
+ "mn": "ADBE Vector Group",
359
+ "hd": false
360
+ }
361
+ ],
362
+ "ip": 0,
363
+ "op": 45.0000018328876,
364
+ "st": -15.0000006109625,
365
+ "ct": 1,
366
+ "bm": 0
367
+ },
368
+ {
369
+ "ddd": 0,
370
+ "ind": 3,
371
+ "ty": 4,
372
+ "nm": "形状图层 3",
373
+ "sr": 1,
374
+ "ks": {
375
+ "o": { "a": 0, "k": 100, "ix": 11 },
376
+ "r": { "a": 0, "k": 0, "ix": 10 },
377
+ "p": {
378
+ "a": 1,
379
+ "k": [
380
+ { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 45, "s": [5.797, 15.344, 0], "to": [0, -0.097, 0], "ti": [0, 0.557, 0] },
381
+ { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 75, "s": [5.797, 12, 0], "to": [0, -0.097, 0], "ti": [0, 0.557, 0] },
382
+ { "t": 105.000004276738, "s": [5.797, 15.344, 0] }
383
+ ],
384
+ "ix": 2,
385
+ "l": 2
386
+ },
387
+ "a": { "a": 0, "k": [-4.781, 5.969, 0], "ix": 1, "l": 2 },
388
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
389
+ },
390
+ "ao": 0,
391
+ "shapes": [
392
+ {
393
+ "ty": "gr",
394
+ "it": [
395
+ {
396
+ "ind": 0,
397
+ "ty": "sh",
398
+ "ix": 1,
399
+ "ks": {
400
+ "a": 1,
401
+ "k": [
402
+ {
403
+ "i": { "x": 0.667, "y": 1 },
404
+ "o": { "x": 0.333, "y": 0 },
405
+ "t": 45,
406
+ "s": [
407
+ {
408
+ "i": [
409
+ [0, -0.83],
410
+ [0, 0],
411
+ [0.83, 0],
412
+ [0, 0.83],
413
+ [0, 0],
414
+ [-0.83, 0]
415
+ ],
416
+ "o": [
417
+ [0, 0],
418
+ [0, 0.83],
419
+ [-0.83, 0],
420
+ [0, 0],
421
+ [0, -0.83],
422
+ [0.83, 0]
423
+ ],
424
+ "v": [
425
+ [1.502, -0.812],
426
+ [1.502, 0.812],
427
+ [0, 2.314],
428
+ [-1.502, 0.812],
429
+ [-1.502, -0.812],
430
+ [0, -2.314]
431
+ ],
432
+ "c": true
433
+ }
434
+ ]
435
+ },
436
+ {
437
+ "i": { "x": 0.667, "y": 1 },
438
+ "o": { "x": 0.333, "y": 0 },
439
+ "t": 75,
440
+ "s": [
441
+ {
442
+ "i": [
443
+ [0, -0.839],
444
+ [0, 0],
445
+ [0.839, 0],
446
+ [0, 0.839],
447
+ [0, 0],
448
+ [-0.839, 0]
449
+ ],
450
+ "o": [
451
+ [0, 0],
452
+ [0, 0.839],
453
+ [-0.839, 0],
454
+ [0, 0],
455
+ [0, -0.839],
456
+ [0.839, 0]
457
+ ],
458
+ "v": [
459
+ [1.506, -4.826],
460
+ [1.506, 4.165],
461
+ [-0.014, 5.684],
462
+ [-1.534, 4.165],
463
+ [-1.534, -4.826],
464
+ [-0.014, -6.345]
465
+ ],
466
+ "c": true
467
+ }
468
+ ]
469
+ },
470
+ {
471
+ "t": 105.000004276738,
472
+ "s": [
473
+ {
474
+ "i": [
475
+ [0, -0.83],
476
+ [0, 0],
477
+ [0.83, 0],
478
+ [0, 0.83],
479
+ [0, 0],
480
+ [-0.83, 0]
481
+ ],
482
+ "o": [
483
+ [0, 0],
484
+ [0, 0.83],
485
+ [-0.83, 0],
486
+ [0, 0],
487
+ [0, -0.83],
488
+ [0.83, 0]
489
+ ],
490
+ "v": [
491
+ [1.502, -0.812],
492
+ [1.502, 0.812],
493
+ [0, 2.314],
494
+ [-1.502, 0.812],
495
+ [-1.502, -0.812],
496
+ [0, -2.314]
497
+ ],
498
+ "c": true
499
+ }
500
+ ]
501
+ }
502
+ ],
503
+ "ix": 2
504
+ },
505
+ "nm": "路径 1",
506
+ "mn": "ADBE Vector Shape - Group",
507
+ "hd": false
508
+ },
509
+ {
510
+ "ty": "fl",
511
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
512
+ "o": { "a": 0, "k": 100, "ix": 5 },
513
+ "r": 1,
514
+ "bm": 0,
515
+ "nm": "填充 1",
516
+ "mn": "ADBE Vector Graphic - Fill",
517
+ "hd": false
518
+ },
519
+ {
520
+ "ty": "tr",
521
+ "p": { "a": 0, "k": [-4.529, 0.283], "ix": 2 },
522
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
523
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
524
+ "r": { "a": 0, "k": 0, "ix": 6 },
525
+ "o": { "a": 0, "k": 100, "ix": 7 },
526
+ "sk": { "a": 0, "k": 0, "ix": 4 },
527
+ "sa": { "a": 0, "k": 0, "ix": 5 },
528
+ "nm": "变换"
529
+ }
530
+ ],
531
+ "nm": "矩形 1",
532
+ "np": 3,
533
+ "cix": 2,
534
+ "bm": 0,
535
+ "ix": 1,
536
+ "mn": "ADBE Vector Group",
537
+ "hd": false
538
+ }
539
+ ],
540
+ "ip": 45.0000018328876,
541
+ "op": 60.0000024438501,
542
+ "st": 45.0000018328876,
543
+ "ct": 1,
544
+ "bm": 0
545
+ },
546
+ {
547
+ "ddd": 0,
548
+ "ind": 4,
549
+ "ty": 4,
550
+ "nm": "形状图层 2",
551
+ "sr": 1,
552
+ "ks": {
553
+ "o": { "a": 0, "k": 100, "ix": 11 },
554
+ "r": { "a": 0, "k": 0, "ix": 10 },
555
+ "p": {
556
+ "a": 1,
557
+ "k": [
558
+ { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 0, "s": [1.234, 15.344, 0], "to": [0, -0.557, 0], "ti": [0, 0, 0] },
559
+ { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 30, "s": [1.234, 12, 0], "to": [0, 0, 0], "ti": [0, -0.557, 0] },
560
+ { "t": 60.0000024438501, "s": [1.234, 15.344, 0] }
561
+ ],
562
+ "ix": 2,
563
+ "l": 2
564
+ },
565
+ "a": { "a": 0, "k": [-4.781, 5.969, 0], "ix": 1, "l": 2 },
566
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
567
+ },
568
+ "ao": 0,
569
+ "shapes": [
570
+ {
571
+ "ty": "gr",
572
+ "it": [
573
+ {
574
+ "ind": 0,
575
+ "ty": "sh",
576
+ "ix": 1,
577
+ "ks": {
578
+ "a": 1,
579
+ "k": [
580
+ {
581
+ "i": { "x": 0.667, "y": 1 },
582
+ "o": { "x": 0.333, "y": 0 },
583
+ "t": 0,
584
+ "s": [
585
+ {
586
+ "i": [
587
+ [0, -0.83],
588
+ [0, 0],
589
+ [0.83, 0],
590
+ [0, 0.83],
591
+ [0, 0],
592
+ [-0.83, 0]
593
+ ],
594
+ "o": [
595
+ [0, 0],
596
+ [0, 0.83],
597
+ [-0.83, 0],
598
+ [0, 0],
599
+ [0, -0.83],
600
+ [0.83, 0]
601
+ ],
602
+ "v": [
603
+ [1.502, -0.812],
604
+ [1.502, 0.812],
605
+ [0, 2.314],
606
+ [-1.502, 0.812],
607
+ [-1.502, -0.812],
608
+ [0, -2.314]
609
+ ],
610
+ "c": true
611
+ }
612
+ ]
613
+ },
614
+ {
615
+ "i": { "x": 0.667, "y": 1 },
616
+ "o": { "x": 0.333, "y": 0 },
617
+ "t": 30,
618
+ "s": [
619
+ {
620
+ "i": [
621
+ [0, -0.839],
622
+ [0, 0],
623
+ [0.839, 0],
624
+ [0, 0.839],
625
+ [0, 0],
626
+ [-0.839, 0]
627
+ ],
628
+ "o": [
629
+ [0, 0],
630
+ [0, 0.839],
631
+ [-0.839, 0],
632
+ [0, 0],
633
+ [0, -0.839],
634
+ [0.839, 0]
635
+ ],
636
+ "v": [
637
+ [1.506, -4.826],
638
+ [1.506, 4.165],
639
+ [-0.014, 5.684],
640
+ [-1.534, 4.165],
641
+ [-1.534, -4.826],
642
+ [-0.014, -6.345]
643
+ ],
644
+ "c": true
645
+ }
646
+ ]
647
+ },
648
+ {
649
+ "t": 60.0000024438501,
650
+ "s": [
651
+ {
652
+ "i": [
653
+ [0, -0.83],
654
+ [0, 0],
655
+ [0.83, 0],
656
+ [0, 0.83],
657
+ [0, 0],
658
+ [-0.83, 0]
659
+ ],
660
+ "o": [
661
+ [0, 0],
662
+ [0, 0.83],
663
+ [-0.83, 0],
664
+ [0, 0],
665
+ [0, -0.83],
666
+ [0.83, 0]
667
+ ],
668
+ "v": [
669
+ [1.502, -0.812],
670
+ [1.502, 0.812],
671
+ [0, 2.314],
672
+ [-1.502, 0.812],
673
+ [-1.502, -0.812],
674
+ [0, -2.314]
675
+ ],
676
+ "c": true
677
+ }
678
+ ]
679
+ }
680
+ ],
681
+ "ix": 2
682
+ },
683
+ "nm": "路径 1",
684
+ "mn": "ADBE Vector Shape - Group",
685
+ "hd": false
686
+ },
687
+ {
688
+ "ty": "fl",
689
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
690
+ "o": { "a": 0, "k": 100, "ix": 5 },
691
+ "r": 1,
692
+ "bm": 0,
693
+ "nm": "填充 1",
694
+ "mn": "ADBE Vector Graphic - Fill",
695
+ "hd": false
696
+ },
697
+ {
698
+ "ty": "tr",
699
+ "p": { "a": 0, "k": [-4.529, 0.283], "ix": 2 },
700
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
701
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
702
+ "r": { "a": 0, "k": 0, "ix": 6 },
703
+ "o": { "a": 0, "k": 100, "ix": 7 },
704
+ "sk": { "a": 0, "k": 0, "ix": 4 },
705
+ "sa": { "a": 0, "k": 0, "ix": 5 },
706
+ "nm": "变换"
707
+ }
708
+ ],
709
+ "nm": "矩形 1",
710
+ "np": 3,
711
+ "cix": 2,
712
+ "bm": 0,
713
+ "ix": 1,
714
+ "mn": "ADBE Vector Group",
715
+ "hd": false
716
+ }
717
+ ],
718
+ "ip": 0,
719
+ "op": 120.0000048877,
720
+ "st": 0,
721
+ "ct": 1,
722
+ "bm": 0
723
+ }
724
+ ],
725
+ "markers": []
726
+ }