@mptw/skylens-ui 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.
Files changed (143) hide show
  1. package/.editorconfig +12 -0
  2. package/.eslintrc.cjs +4 -0
  3. package/.nuxtrc +1 -0
  4. package/.playground/app.config.ts +5 -0
  5. package/.playground/nuxt.config.ts +3 -0
  6. package/README.md +73 -0
  7. package/app.config.ts +5 -0
  8. package/app.vue +3 -0
  9. package/assets/css/fonts/MEShPlus-font-icon.eot +0 -0
  10. package/assets/css/fonts/MEShPlus-font-icon.svg +186 -0
  11. package/assets/css/fonts/MEShPlus-font-icon.ttf +0 -0
  12. package/assets/css/fonts/MEShPlus-font-icon.woff +0 -0
  13. package/assets/css/icons.css +555 -0
  14. package/assets/css/layout.styl +98 -0
  15. package/assets/css/tailwind.css +3 -0
  16. package/assets/images/commons/app-logo-white.png +0 -0
  17. package/assets/images/commons/app-logo.png +0 -0
  18. package/assets/images/commons/empty-box.png +0 -0
  19. package/assets/images/commons/watermark.svg +15 -0
  20. package/components/SLAlertModal.vue +99 -0
  21. package/components/SLBreadcrumbs.vue +42 -0
  22. package/components/SLButton.vue +301 -0
  23. package/components/SLCalendarButton.vue +259 -0
  24. package/components/SLCalendarPopup.vue +832 -0
  25. package/components/SLCard.vue +118 -0
  26. package/components/SLChart.vue +181 -0
  27. package/components/SLCheckbox.vue +179 -0
  28. package/components/SLCircleButton.vue +95 -0
  29. package/components/SLCollapsableBlock.vue +116 -0
  30. package/components/SLCollapsableMulitPillSelect.vue +92 -0
  31. package/components/SLConfirmModal.vue +122 -0
  32. package/components/SLDateInput.vue +460 -0
  33. package/components/SLDatePicker.vue +143 -0
  34. package/components/SLDistributor.vue +30 -0
  35. package/components/SLDownloadButton.vue +410 -0
  36. package/components/SLDraggable.vue +151 -0
  37. package/components/SLDropdown.vue +277 -0
  38. package/components/SLDropdownItem.vue +31 -0
  39. package/components/SLElementWithTitle.vue +181 -0
  40. package/components/SLEyeCheckbox.vue +162 -0
  41. package/components/SLFileInput.vue +101 -0
  42. package/components/SLGenderAgeSelect.vue +279 -0
  43. package/components/SLHeatMap.vue +151 -0
  44. package/components/SLHourRangeInput.vue +211 -0
  45. package/components/SLIOSSwitch.vue +235 -0
  46. package/components/SLIcon.vue +35 -0
  47. package/components/SLIconButton.vue +130 -0
  48. package/components/SLInfoTip.vue +221 -0
  49. package/components/SLInsightSitePage.vue +27 -0
  50. package/components/SLLegend.vue +76 -0
  51. package/components/SLLinearProgressBar.vue +35 -0
  52. package/components/SLLink.vue +162 -0
  53. package/components/SLLoading.vue +127 -0
  54. package/components/SLMapChart.vue +151 -0
  55. package/components/SLModal.vue +377 -0
  56. package/components/SLMonthCalendarButton.vue +378 -0
  57. package/components/SLMonthPicker.vue +151 -0
  58. package/components/SLMultiSelect.vue +121 -0
  59. package/components/SLNoData.vue +43 -0
  60. package/components/SLPageModal.vue +64 -0
  61. package/components/SLPagination.vue +192 -0
  62. package/components/SLPillCheckbox.vue +207 -0
  63. package/components/SLPillLabel.vue +101 -0
  64. package/components/SLPopupMenuButton.vue +158 -0
  65. package/components/SLProfileButton.vue +186 -0
  66. package/components/SLRadioButton.vue +97 -0
  67. package/components/SLRadioButtonGroup.vue +113 -0
  68. package/components/SLRadioGroup.vue +201 -0
  69. package/components/SLRangeInput.vue +209 -0
  70. package/components/SLRegionsMapChart.vue +151 -0
  71. package/components/SLRightSider.vue +242 -0
  72. package/components/SLSearchInput.vue +87 -0
  73. package/components/SLSelect.vue +545 -0
  74. package/components/SLSelectAllToggle.vue +118 -0
  75. package/components/SLSiderbarNav.vue +394 -0
  76. package/components/SLSiderbarNavItem.vue +204 -0
  77. package/components/SLSitePage.vue +96 -0
  78. package/components/SLSkyInsightSitePage.vue +27 -0
  79. package/components/SLSortByDropdown.vue +189 -0
  80. package/components/SLSpinIcon.vue +24 -0
  81. package/components/SLStayRangeInput.vue +306 -0
  82. package/components/SLTab.vue +159 -0
  83. package/components/SLTable.vue +409 -0
  84. package/components/SLTableTooltip.vue +111 -0
  85. package/components/SLTabs.vue +388 -0
  86. package/components/SLTextInput.vue +362 -0
  87. package/components/SLTextarea.vue +134 -0
  88. package/components/SLToast.vue +71 -0
  89. package/components/SLToggleButton.vue +78 -0
  90. package/components/SLTwoLayerMultiSelect.vue +428 -0
  91. package/components/SLTwoLayerSelect.vue +265 -0
  92. package/components/SLWarnModal.vue +75 -0
  93. package/interface/IDateRange.ts +5 -0
  94. package/interface/IHourRange.ts +4 -0
  95. package/interface/IInputOption.ts +6 -0
  96. package/interface/ILegendItem.ts +7 -0
  97. package/interface/IPopupMenuButton.ts +5 -0
  98. package/interface/IStayRange.ts +15 -0
  99. package/interface/ITableField.ts +19 -0
  100. package/interface/IWeb.ts +5 -0
  101. package/interface/NavConfigType.ts +14 -0
  102. package/interface/commons.ts +7 -0
  103. package/models/DateRange.ts +21 -0
  104. package/nuxt.config.ts +22 -0
  105. package/package.json +52 -0
  106. package/plugins/googlemaps.ts +17 -0
  107. package/plugins/v-calendar.ts +5 -0
  108. package/public/assets/files/taiwan-regions.json +7 -0
  109. package/public/assets/files/taiwan.json +24 -0
  110. package/public/assets/images/commons/default-favico.png +0 -0
  111. package/public/assets/images/dashboard/closure-button-icon.png +0 -0
  112. package/public/assets/images/dashboard/dashboard-widget-bar-chart-icon-disabled.png +0 -0
  113. package/public/assets/images/dashboard/dashboard-widget-bar-chart-icon-poi.png +0 -0
  114. package/public/assets/images/dashboard/dashboard-widget-bar-chart-icon-web.png +0 -0
  115. package/public/assets/images/dashboard/dashboard-widget-country-heatmap-chart-icon-disabled.png +0 -0
  116. package/public/assets/images/dashboard/dashboard-widget-country-heatmap-chart-icon.png +0 -0
  117. package/public/assets/images/dashboard/dashboard-widget-geo-list-icon-disabled.png +0 -0
  118. package/public/assets/images/dashboard/dashboard-widget-geo-list-icon-poi.png +0 -0
  119. package/public/assets/images/dashboard/dashboard-widget-geo-list-icon-web.png +0 -0
  120. package/public/assets/images/dashboard/dashboard-widget-heatmap-chart-icon-disabled.png +0 -0
  121. package/public/assets/images/dashboard/dashboard-widget-heatmap-chart-icon-web.png +0 -0
  122. package/public/assets/images/dashboard/dashboard-widget-line-chart-icon-disabled.png +0 -0
  123. package/public/assets/images/dashboard/dashboard-widget-line-chart-icon-poi.png +0 -0
  124. package/public/assets/images/dashboard/dashboard-widget-list-icon-disabled.png +0 -0
  125. package/public/assets/images/dashboard/dashboard-widget-list-icon-poi.png +0 -0
  126. package/public/assets/images/dashboard/dashboard-widget-list-icon-web.png +0 -0
  127. package/public/assets/images/dashboard/dashboard-widget-pie-chart-icon-disabled.png +0 -0
  128. package/public/assets/images/dashboard/dashboard-widget-pie-chart-icon-poi.png +0 -0
  129. package/public/assets/images/dashboard/dashboard-widget-pie-chart-icon-web.png +0 -0
  130. package/public/assets/images/dashboard/drag-hint-icon.svg +3 -0
  131. package/public/assets/images/dashboard/extend-button-icon.png +0 -0
  132. package/public/assets/images/dashboard/map-list-chart-icon.svg +17 -0
  133. package/public/assets/images/dashboard/map-marker-chart-icon.svg +32 -0
  134. package/public/assets/images/dashboard/pie-chart-icon.svg +4 -0
  135. package/public/assets/images/dashboard/poi-gender-age-chart-icon.svg +20 -0
  136. package/public/assets/images/dashboard/poi-nav-icon.png +0 -0
  137. package/public/assets/images/dashboard/web-gender-age-chart-icon.svg +20 -0
  138. package/public/assets/images/dashboard/web-nav-icon.png +0 -0
  139. package/tailwind.config.js +300 -0
  140. package/tsconfig.json +8 -0
  141. package/utils/constants.ts +160 -0
  142. package/utils/generateSheet.ts +36 -0
  143. package/utils/index.ts +539 -0
@@ -0,0 +1,555 @@
1
+ @font-face {
2
+ font-family: 'MEShPlus-font-icon';
3
+ src: url('fonts/MEShPlus-font-icon.eot?e7ou5q');
4
+ src: url('fonts/MEShPlus-font-icon.eot?e7ou5q#iefix') format('embedded-opentype'),
5
+ url('fonts/MEShPlus-font-icon.ttf?e7ou5q') format('truetype'),
6
+ url('fonts/MEShPlus-font-icon.woff?e7ou5q') format('woff'),
7
+ url('fonts/MEShPlus-font-icon.svg?e7ou5q#MEShPlus-font-icon') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ font-display: block;
11
+ }
12
+
13
+ [class^="icon-"], [class*=" icon-"] {
14
+ /* use !important to prevent issues with browser extensions that change fonts */
15
+ font-family: 'MEShPlus-font-icon' !important;
16
+ speak: never;
17
+ font-style: normal;
18
+ font-weight: normal;
19
+ font-variant: normal;
20
+ text-transform: none;
21
+ line-height: 1;
22
+
23
+ /* Better Font Rendering =========== */
24
+ -webkit-font-smoothing: antialiased;
25
+ -moz-osx-font-smoothing: grayscale;
26
+ }
27
+
28
+ .icon-insight-icon:before {
29
+ content: "\e961";
30
+ }
31
+ .icon-X:before {
32
+ content: "\e962";
33
+ }
34
+ .icon-lock:before {
35
+ content: "\e963";
36
+ }
37
+ .icon-mail:before {
38
+ content: "\e964";
39
+ }
40
+ .icon-loading-circle:before {
41
+ content: "\e960";
42
+ }
43
+ .icon-edit:before {
44
+ content: "\e95f";
45
+ }
46
+ .icon-angle-double-down:before {
47
+ content: "\e91f";
48
+ }
49
+ .icon-angle-double-up:before {
50
+ content: "\e947";
51
+ }
52
+ .icon-arrow2-down:before {
53
+ content: "\e948";
54
+ }
55
+ .icon-arrow2-left:before {
56
+ content: "\e949";
57
+ }
58
+ .icon-arrow2-right:before {
59
+ content: "\e94a";
60
+ }
61
+ .icon-arrow2-up:before {
62
+ content: "\e94b";
63
+ }
64
+ .icon-arrow-left:before {
65
+ content: "\e94c";
66
+ }
67
+ .icon-arrow-right:before {
68
+ content: "\e94d";
69
+ }
70
+ .icon-book:before {
71
+ content: "\e94e";
72
+ }
73
+ .icon-caret-left:before {
74
+ content: "\e94f";
75
+ }
76
+ .icon-caret-right:before {
77
+ content: "\e950";
78
+ }
79
+ .icon-update:before {
80
+ content: "\e951";
81
+ }
82
+ .icon-wrench:before {
83
+ content: "\e952";
84
+ }
85
+ .icon-Agent:before {
86
+ content: "\e953";
87
+ }
88
+ .icon-Customer:before {
89
+ content: "\e954";
90
+ }
91
+ .icon-Drag:before {
92
+ content: "\e955";
93
+ }
94
+ .icon-exchange:before {
95
+ content: "\e956";
96
+ }
97
+ .icon-flag:before {
98
+ content: "\e957";
99
+ }
100
+ .icon-home:before {
101
+ content: "\e958";
102
+ }
103
+ .icon-pps:before {
104
+ content: "\e959";
105
+ }
106
+ .icon-pps-mirror:before {
107
+ content: "\e95a";
108
+ }
109
+ .icon-Report:before {
110
+ content: "\e95b";
111
+ }
112
+ .icon-three-dot:before {
113
+ content: "\e95c";
114
+ }
115
+ .icon-three-dot-v:before {
116
+ content: "\e95d";
117
+ }
118
+ .icon-trashcan:before {
119
+ content: "\e95e";
120
+ }
121
+ .icon-trash:before {
122
+ content: "\e900";
123
+ }
124
+ .icon-address-book:before {
125
+ content: "\e901";
126
+ }
127
+ .icon-angle-double-left:before {
128
+ content: "\e902";
129
+ }
130
+ .icon-angle-double-right:before {
131
+ content: "\e903";
132
+ }
133
+ .icon-arrow-down:before {
134
+ content: "\e904";
135
+ }
136
+ .icon-arrow-up:before {
137
+ content: "\e905";
138
+ }
139
+ .icon-box-open:before {
140
+ content: "\e906";
141
+ }
142
+ .icon-box:before {
143
+ content: "\e907";
144
+ }
145
+ .icon-broadcast-tower:before {
146
+ content: "\e908";
147
+ }
148
+ .icon-calendar-done:before {
149
+ content: "\e909";
150
+ }
151
+ .icon-calendar-plus:before {
152
+ content: "\e90a";
153
+ }
154
+ .icon-calendar:before {
155
+ content: "\e90b";
156
+ }
157
+ .icon-caret-down:before {
158
+ content: "\e90c";
159
+ }
160
+ .icon-caret-up:before {
161
+ content: "\e90d";
162
+ }
163
+ .icon-chart_with_num:before {
164
+ content: "\e90e";
165
+ }
166
+ .icon-chart_without_num:before {
167
+ content: "\e90f";
168
+ }
169
+ .icon-chart-bar:before {
170
+ content: "\e910";
171
+ }
172
+ .icon-chart-line:before {
173
+ content: "\e911";
174
+ }
175
+ .icon-chart-pie-alt:before {
176
+ content: "\e912";
177
+ }
178
+ .icon-chart-scatter:before {
179
+ content: "\e913";
180
+ }
181
+ .icon-check-circle:before {
182
+ content: "\e914";
183
+ }
184
+ .icon-check-square:before {
185
+ content: "\e915";
186
+ }
187
+ .icon-cheers:before {
188
+ content: "\e916";
189
+ }
190
+ .icon-chevron-down:before {
191
+ content: "\e917";
192
+ }
193
+ .icon-chevron-left:before {
194
+ content: "\e918";
195
+ }
196
+ .icon-chevron-right:before {
197
+ content: "\e919";
198
+ }
199
+ .icon-chevron-up:before {
200
+ content: "\e91a";
201
+ }
202
+ .icon-circle:before {
203
+ content: "\e91b";
204
+ }
205
+ .icon-clipboard:before {
206
+ content: "\e91c";
207
+ }
208
+ .icon-cog:before {
209
+ content: "\e91d";
210
+ }
211
+ .icon-dot-circle:before {
212
+ content: "\e91e";
213
+ }
214
+ .icon-equals:before {
215
+ content: "\e920";
216
+ }
217
+ .icon-exclamation-circle:before {
218
+ content: "\e921";
219
+ }
220
+ .icon-exclamation-triangle:before {
221
+ content: "\e922";
222
+ }
223
+ .icon-external-link-alt:before {
224
+ content: "\e923";
225
+ }
226
+ .icon-eye-slash:before {
227
+ content: "\e924";
228
+ }
229
+ .icon-eye:before {
230
+ content: "\e925";
231
+ }
232
+ .icon-female:before {
233
+ content: "\e926";
234
+ }
235
+ .icon-file-excel:before {
236
+ content: "\e927";
237
+ }
238
+ .icon-file-image:before {
239
+ content: "\e928";
240
+ }
241
+ .icon-heat-map:before {
242
+ content: "\e929";
243
+ }
244
+ .icon-info-circle:before {
245
+ content: "\e92a";
246
+ }
247
+ .icon-list:before {
248
+ content: "\e92b";
249
+ }
250
+ .icon-male:before {
251
+ content: "\e92c";
252
+ }
253
+ .icon-map-marker-alt:before {
254
+ content: "\e92d";
255
+ }
256
+ .icon-minus-square:before {
257
+ content: "\e92e";
258
+ }
259
+ .icon-new:before {
260
+ content: "\e92f";
261
+ }
262
+ .icon-person-cog:before {
263
+ content: "\e930";
264
+ }
265
+ .icon-personal-info:before {
266
+ content: "\e931";
267
+ }
268
+ .icon-plus:before {
269
+ content: "\e932";
270
+ }
271
+ .icon-project-info:before {
272
+ content: "\e933";
273
+ }
274
+ .icon-search:before {
275
+ content: "\e934";
276
+ }
277
+ .icon-sign-out-alt:before {
278
+ content: "\e935";
279
+ }
280
+ .icon-skylens-basic:before {
281
+ content: "\e936";
282
+ }
283
+ .icon-skylens-poi:before {
284
+ content: "\e937";
285
+ }
286
+ .icon-skylens-ta:before {
287
+ content: "\e938";
288
+ }
289
+ .icon-skylens-traffic:before {
290
+ content: "\e939";
291
+ }
292
+ .icon-smile-arrow:before {
293
+ content: "\e93a";
294
+ }
295
+ .icon-sort-down:before {
296
+ content: "\e93b";
297
+ }
298
+ .icon-sort-up:before {
299
+ content: "\e93c";
300
+ }
301
+ .icon-square:before {
302
+ content: "\e93d";
303
+ }
304
+ .icon-start-flag:before {
305
+ content: "\e93e";
306
+ }
307
+ .icon-sync-alt:before {
308
+ content: "\e93f";
309
+ }
310
+ .icon-tag:before {
311
+ content: "\e940";
312
+ }
313
+ .icon-th-with-bar:before {
314
+ content: "\e941";
315
+ }
316
+ .icon-th:before {
317
+ content: "\e942";
318
+ }
319
+ .icon-times:before {
320
+ content: "\e943";
321
+ }
322
+ .icon-unique:before {
323
+ content: "\e944";
324
+ }
325
+ .icon-unknown-gender:before {
326
+ content: "\e945";
327
+ }
328
+ .icon-web:before {
329
+ content: "\e946";
330
+ }
331
+ .icon-check-circle-line:before {
332
+ content: "\e965";
333
+ }
334
+ .icon-x-circle-line:before {
335
+ content: "\e966";
336
+ }
337
+ .icon-pin:before {
338
+ content: "\e967";
339
+ }
340
+ .icon-external-link-2:before {
341
+ content: "\e968";
342
+ }
343
+ .icon-lengthen:before {
344
+ content: "\e969";
345
+ }
346
+ .icon-shorten:before {
347
+ content: "\e96a";
348
+ }
349
+ .icon-adjust-2line:before {
350
+ content: "\e96b";
351
+ }
352
+ .icon-adjust:before {
353
+ content: "\e96c";
354
+ }
355
+ .icon-audience-line:before {
356
+ content: "\e96d";
357
+ }
358
+ .icon-audience-solid:before {
359
+ content: "\e96e";
360
+ }
361
+ .icon-chart_without_num-line:before {
362
+ content: "\e96f";
363
+ }
364
+ .icon-cog-line:before {
365
+ content: "\e970";
366
+ }
367
+ .icon-customer-money-line:before {
368
+ content: "\e971";
369
+ }
370
+ .icon-customer-money-solid:before {
371
+ content: "\e972";
372
+ }
373
+ .icon-extend:before {
374
+ content: "\e973";
375
+ }
376
+ .icon-shrink:before {
377
+ content: "\e979";
378
+ }
379
+ .icon-infor-line:before {
380
+ content: "\e974";
381
+ }
382
+ .icon-notice-line:before {
383
+ content: "\e975";
384
+ }
385
+ .icon-notice-solid:before {
386
+ content: "\e976";
387
+ }
388
+ .icon-support-solid:before {
389
+ content: "\e977";
390
+ }
391
+ .icon-support-line:before {
392
+ content: "\e978";
393
+ }
394
+ .icon-extend-solid:before {
395
+ content: "\e97a";
396
+ }
397
+ .icon-shrink-solid:before {
398
+ content: "\e97b";
399
+ }
400
+ .icon-drag:before {
401
+ content: "\e97c";
402
+ }
403
+ .icon-www-earth:before {
404
+ content: "\e97d";
405
+ }
406
+ .icon-earth:before {
407
+ content: "\e97e";
408
+ }
409
+ .icon-wait:before {
410
+ content: "\e97f";
411
+ }
412
+ .icon-pin-line:before {
413
+ content: "\e980";
414
+ }
415
+ .icon-pause:before {
416
+ content: "\e981";
417
+ }
418
+ .icon-map-marker:before {
419
+ content: "\e982";
420
+ }
421
+ .icon-info-solid:before {
422
+ content: "\e983";
423
+ }
424
+ .icon-map-marker-hide:before {
425
+ content: "\e984";
426
+ }
427
+ .icon-wwwearth-with-map:before {
428
+ content: "\e985";
429
+ }
430
+ .icon-earth-with-map:before {
431
+ content: "\e987";
432
+ }
433
+ .icon-caret-right_line:before {
434
+ content: "\e986";
435
+ }
436
+ .icon-percent:before {
437
+ content: "\e988";
438
+ }
439
+ .icon-num:before {
440
+ content: "\e989";
441
+ }
442
+ .icon-new-circle:before {
443
+ content: "\e98a";
444
+ }
445
+ .icon-group:before {
446
+ content: "\e98b";
447
+ }
448
+ .icon-filter:before {
449
+ content: "\e98d";
450
+ }
451
+ .icon-eye-slash-line:before {
452
+ content: "\e98e";
453
+ }
454
+ .icon-empty:before {
455
+ content: "\e98f";
456
+ }
457
+ .icon-download:before {
458
+ content: "\e990";
459
+ }
460
+ .icon-ascending:before {
461
+ content: "\e991";
462
+ }
463
+ .icon-descending:before {
464
+ content: "\e992";
465
+ }
466
+ .icon-triangle-up-small:before {
467
+ content: "\e993";
468
+ }
469
+ .icon-triangle-down-small:before {
470
+ content: "\e994";
471
+ }
472
+ .icon-filter-on:before {
473
+ content: "\e98c";
474
+ }
475
+ .icon-travel:before {
476
+ content: "\e995";
477
+ }
478
+ .icon-star:before {
479
+ content: "\e996";
480
+ }
481
+ .icon-Study:before {
482
+ content: "\e997";
483
+ }
484
+ .icon-glasses:before {
485
+ content: "\e998";
486
+ }
487
+ .icon-diamond:before {
488
+ content: "\e999";
489
+ }
490
+ .icon-creative:before {
491
+ content: "\e99a";
492
+ }
493
+ .icon-clothes:before {
494
+ content: "\e99b";
495
+ }
496
+ .icon-case:before {
497
+ content: "\e99c";
498
+ }
499
+ .icon-add:before {
500
+ content: "\e99d";
501
+ }
502
+ .icon-man:before {
503
+ content: "\e99e";
504
+ }
505
+ .icon-woman:before {
506
+ content: "\e99f";
507
+ }
508
+ .icon-visit-group:before {
509
+ content: "\e9a0";
510
+ }
511
+ .icon-TA-profile:before {
512
+ content: "\e9a1";
513
+ }
514
+ .icon-favicon-default:before {
515
+ content: "\e9a2";
516
+ }
517
+ .icon-unfold:before {
518
+ content: "\e9a3";
519
+ }
520
+ .icon-fold:before {
521
+ content: "\e9a4";
522
+ }
523
+ .icon-chart-scatter-smalldot:before {
524
+ content: "\e9a5";
525
+ }
526
+ .icon-relative:before {
527
+ content: "\e9a6";
528
+ }
529
+ .icon-folder:before {
530
+ content: "\e9a7";
531
+ }
532
+ .icon-target:before {
533
+ content: "\e9a8";
534
+ }
535
+ .icon-folder-check:before {
536
+ content: "\e9a9";
537
+ }
538
+ .icon-star-circle:before {
539
+ content: "\e9aa";
540
+ }
541
+ .icon-edit-name:before {
542
+ content: "\e9ab";
543
+ }
544
+ .icon-finger-point:before {
545
+ content: "\e9ac";
546
+ }
547
+ .icon-add-person:before {
548
+ content: "\e9ad";
549
+ }
550
+ .icon-check-with-circle-thin:before {
551
+ content: "\e9ae";
552
+ }
553
+ .icon-check:before {
554
+ content: "\e9af";
555
+ }
@@ -0,0 +1,98 @@
1
+ body {
2
+ font-family: '微軟正黑體', 'Microsoft JhengHei', ui-sans-serif, system-ui,
3
+ -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
4
+ Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
5
+ 'Segoe UI Symbol', 'Noto Color Emoji';
6
+ background: #f3f4f8;
7
+ }
8
+
9
+ label
10
+ @apply inline-block
11
+
12
+ .vc-skylens-purple
13
+ --vc-accent-200 theme('colors.bg.DEFAULT')
14
+ --vc-accent-600 theme('colors.primary.DEFAULT')
15
+ --vc-accent-500 theme('colors.primary.lighter')
16
+ --vc-accent-700 theme('colors.primary.hover')
17
+ --vc-accent-900 theme('colors.primary.heavy')
18
+
19
+ .vc-skylens-gray
20
+ --vc-accent-200 theme('colors.gray.5')
21
+ --vc-accent-500 theme('colors.gray.4')
22
+ --vc-accent-600 theme('colors.gray.3')
23
+ --vc-accent-700 theme('colors.gray.3')
24
+ --vc-accent-900 theme('colors.gray.2')
25
+
26
+ .vc-container
27
+ .vc-weeks
28
+ @apply px-0
29
+
30
+ .scrollbar-y
31
+ @apply absolute top-0 right-0 bottom-0 w-1 rounded-full
32
+
33
+ .indicator
34
+ @apply w-full h-12 bg-primary-lighter rounded-full
35
+
36
+ .markdown-content
37
+ @apply text-base leading-relaxed
38
+
39
+ ol
40
+ @apply list-decimal list-inside
41
+
42
+ li
43
+ @apply font-bold
44
+
45
+ ul
46
+ @apply ml-3 list-disc list-inside
47
+
48
+ li
49
+ @apply font-normal
50
+
51
+ ul
52
+ @apply ml-5 list-none
53
+
54
+ .custom-scrollbar-y
55
+ @apply overflow-x-hidden overflow-y-auto
56
+ -webkit-overflow-scrolling touch
57
+
58
+ /* width */
59
+ &::-webkit-scrollbar
60
+ @apply w-1
61
+
62
+ /* Track */
63
+ &::-webkit-scrollbar-track
64
+ @apply bg-transparent
65
+
66
+ /* Handle */
67
+ &::-webkit-scrollbar-thumb
68
+ @apply bg-primary-lighter rounded
69
+
70
+ /* Handle on hover */
71
+ &::-webkit-scrollbar-thumb:hover
72
+ @apply bg-primary-light
73
+
74
+ .custom-scrollbar-x
75
+ @apply overflow-x-auto overflow-y-hidden
76
+ -webkit-overflow-scrolling touch
77
+
78
+ /* width */
79
+ &::-webkit-scrollbar
80
+ @apply h-1
81
+
82
+ /* Track */
83
+ &::-webkit-scrollbar-track
84
+ @apply bg-transparent
85
+
86
+ /* Handle */
87
+ &::-webkit-scrollbar-thumb
88
+ @apply bg-secondary-new rounded
89
+
90
+ /* Handle on hover */
91
+ &::-webkit-scrollbar-thumb:hover
92
+ @apply bg-secondary-new
93
+
94
+ .fade-enter-active, .fade-leave-active
95
+ @apply transition-opacity
96
+
97
+ .fade-enter, .fade-leave-to
98
+ @apply opacity-0
@@ -0,0 +1,3 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
@@ -0,0 +1,15 @@
1
+ <svg width="300" height="200" xmlns="http://www.w3.org/2000/svg" fill="none">
2
+
3
+ <g>
4
+ <title>Layer 1</title>
5
+ <g transform="rotate(20 125 57.7811)" id="svg_9">
6
+ <path id="svg_1" fill="#221714" d="m33.2523,81.2205c-0.8952,-0.5503 -1.937,-0.8257 -3.1206,-0.8128c-1.1852,0.0085 -2.2492,0.1842 -3.1829,0.5241c-0.5513,0.2006 -1.0917,0.4728 -1.6272,0.8138c-0.5356,0.3409 -1.0096,0.74 -1.425,1.2034c-0.4155,0.4634 -0.7052,0.9817 -0.8663,1.5489c-0.1595,0.5717 -0.1205,1.1768 0.1158,1.826c0.377,1.036 1.0519,1.6866 2.029,1.9503c0.9744,0.2697 2.1224,0.3806 3.4415,0.3385c1.319,-0.042 2.7314,-0.118 4.2283,-0.2248c1.4985,-0.1023 2.9647,-0.0166 4.4064,0.2643c1.4371,0.2826 2.7632,0.8825 3.9706,1.7925c1.2089,0.9144 2.1812,2.3682 2.911,4.3735c0.6943,1.9074 0.9438,3.6997 0.7487,5.3768c-0.1936,1.682 -0.7251,3.21 -1.593,4.588c-0.8724,1.38 -2.0249,2.585 -3.4561,3.619c-1.4372,1.032 -3.0426,1.878 -4.8166,2.524c-2.2276,0.811 -4.4225,1.227 -6.5731,1.239c-2.155,0.014 -4.3288,-0.438 -6.5318,-1.358l3.2276,-7.872c1.1507,0.754 2.4202,1.199 3.8084,1.333c1.3854,0.14 2.7101,-0.025 3.9683,-0.483c0.6136,-0.223 1.2102,-0.521 1.7882,-0.897c0.5779,-0.377 1.0633,-0.8 1.4605,-1.272c0.3973,-0.472 0.6615,-0.991 0.8032,-1.556c0.1417,-0.5655 0.1032,-1.1557 -0.1202,-1.7692c-0.377,-1.036 -1.0689,-1.7056 -2.0772,-2.0134c-1.0082,-0.3077 -2.1903,-0.4565 -3.5401,-0.4436c-1.3481,0.0174 -2.7957,0.0659 -4.3367,0.1484c-1.5438,0.0886 -3.0387,-0.0068 -4.4936,-0.2828c-1.455,-0.2761 -2.78797,-0.8534 -4.00177,-1.7258c-1.21542,-0.8769 -2.16944,-2.2668 -2.86369,-4.1742c-0.66997,-1.8407 -0.89444,-3.5918 -0.67461,-5.2428c0.22427,-1.6527 0.76511,-3.1687 1.63747,-4.5487c0.87236,-1.3799 2.01277,-2.5906 3.42571,-3.6336c1.41289,-1.0429 2.95889,-1.8725 4.63959,-2.4842c1.9386,-0.7056 3.9107,-1.1112 5.9194,-1.223c2.0103,-0.1073 3.977,0.2192 5.9003,0.9794l-3.1295,7.574z"/>
7
+ <path id="svg_2" fill="#221714" d="m41.3486,68.7773l7.5586,-2.7511l5.1866,14.2502l8.1432,-19.1018l9.8839,-3.5974l-9.4651,21.5013l23.2606,12.3343l-10.5597,3.8435l-19.8873,-11.2006l5.9278,16.2863l-7.5586,2.751l-12.49,-34.3157z"/>
8
+ <path id="svg_3" fill="#221714" d="m91.6415,72.7593l-20.0565,-14.9859l9.4037,-3.4226l11.9448,10.1992l3.0301,-15.6497l8.9635,-3.2624l-5.7314,24.372l5.3274,14.6369l-7.5586,2.7511l-5.3274,-14.6369l0.0044,-0.0017z"/>
9
+ <path id="svg_4" fill="#221714" d="m107.7417,44.6133l7.5629,-2.7527l9.949,27.3353l14.006,-5.0976l2.541,6.9806l-21.569,7.8503l-12.4899,-34.3159z"/>
10
+ <path id="svg_5" fill="#221714" d="m133.7696,35.139l23.312,-8.4847l2.54,6.9806l-15.753,5.7336l2.329,6.3981l14.877,-5.4148l2.541,6.9805l-14.877,5.4148l2.54,6.9806l16.625,-6.0508l2.541,6.9806l-24.188,8.8035l-12.491,-34.3204l0.004,-0.0016z"/>
11
+ <path id="svg_6" fill="#221714" d="m164.0136,24.1312l10.275,-3.7399l23.267,18.5355l0.098,-0.0356l-8.679,-23.8451l7.559,-2.7511l12.49,34.3159l-9.889,3.5991l-23.87,-18.9755l-0.098,0.0356l8.891,24.4275l-7.558,2.7511l-12.49,-34.3159l0.004,-0.0016z"/>
12
+ <path id="svg_7" fill="#221714" d="m223.5286,11.9654c-0.895,-0.5504 -1.937,-0.8257 -3.12,-0.8129c-1.186,0.0085 -2.25,0.1842 -3.188,0.5257c-0.547,0.199 -1.091,0.4729 -1.627,0.8138c-0.536,0.3409 -1.01,0.7401 -1.425,1.2035c-0.415,0.4634 -0.705,0.9817 -0.866,1.5489c-0.16,0.5716 -0.121,1.1768 0.115,1.8259c0.378,1.036 1.052,1.6866 2.025,1.9519c0.974,0.2698 2.123,0.3806 3.446,0.337c1.319,-0.0421 2.727,-0.1165 4.228,-0.2248c1.499,-0.1023 2.97,-0.0183 4.407,0.2642c1.437,0.2826 2.763,0.8825 3.975,1.7909c1.209,0.9145 2.181,2.3682 2.911,4.3735c0.694,1.9074 0.944,3.6997 0.748,5.377c-0.193,1.6817 -0.725,3.2095 -1.597,4.5895c-0.868,1.3783 -2.025,2.5849 -3.456,3.6194c-1.437,1.0316 -3.043,1.8778 -4.817,2.5235c-2.227,0.8108 -4.422,1.227 -6.577,1.241c-2.155,0.0139 -4.329,-0.4386 -6.532,-1.3588l3.228,-7.8716c1.15,0.7544 2.42,1.1987 3.804,1.3345c1.385,0.1403 2.71,-0.0247 3.968,-0.4826c0.613,-0.2234 1.21,-0.5211 1.788,-0.8976c0.578,-0.3765 1.063,-0.7999 1.456,-1.2701c0.397,-0.4719 0.662,-0.991 0.808,-1.5578c0.141,-0.5652 0.103,-1.1554 -0.12,-1.769c-0.378,-1.0359 -1.069,-1.7056 -2.078,-2.0133c-1.008,-0.3078 -2.19,-0.4566 -3.54,-0.4436c-1.348,0.0173 -2.795,0.0659 -4.336,0.1484c-1.54,0.0869 -3.039,-0.0068 -4.494,-0.2829c-1.455,-0.276 -2.792,-0.8517 -4.002,-1.7257c-1.215,-0.8769 -2.169,-2.2668 -2.864,-4.1742c-0.67,-1.8408 -0.894,-3.5919 -0.674,-5.2429c0.22,-1.651 0.765,-3.1687 1.637,-4.5486c0.873,-1.37997 2.013,-2.59063 3.426,-3.63359c1.413,-1.04297 2.959,-1.87252 4.64,-2.48424c1.938,-0.70557 3.91,-1.1112 5.919,-1.22296c2.01,-0.10732 3.977,0.21913 5.9,0.97936l-3.116,7.56923z"/>
13
+ </g>
14
+ </g>
15
+ </svg>