@mptw/skylens-ui 1.5.0 → 1.5.1
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/AGENTS.md +59 -0
- package/CLAUDE.md +36 -0
- package/README.md +7 -7
- package/app/app.config.ts +11 -2
- package/app/app.vue +5 -0
- package/app/assets/css/layout.css +134 -0
- package/app/assets/css/main.css +189 -0
- package/app/components/SLAlertModal.vue +24 -16
- package/app/components/SLBreadcrumbs.vue +12 -8
- package/app/components/SLButton.vue +196 -163
- package/app/components/SLCalendarButton.vue +40 -34
- package/app/components/SLCalendarPopup.vue +79 -53
- package/app/components/SLCard.vue +57 -41
- package/app/components/SLChart.vue +6 -3
- package/app/components/SLCheckbox.vue +92 -49
- package/app/components/SLCircleButton.vue +25 -16
- package/app/components/SLCollapsableBlock.vue +44 -33
- package/app/components/SLCollapsableMulitPillSelect.vue +20 -15
- package/app/components/SLConfirmModal.vue +9 -6
- package/app/components/SLContextMenu.vue +88 -48
- package/app/components/SLDateInput.vue +109 -92
- package/app/components/SLDatePicker.vue +9 -7
- package/app/components/SLDistributor.vue +1 -1
- package/app/components/SLDownloadButton.vue +39 -29
- package/app/components/SLDraggable.vue +2 -2
- package/app/components/SLDropdown.vue +33 -25
- package/app/components/SLDropdownItem.vue +9 -5
- package/app/components/SLElementWithTitle.vue +12 -7
- package/app/components/SLEyeCheckbox.vue +44 -31
- package/app/components/SLFileInput.vue +23 -16
- package/app/components/SLGenderAgeSelect.vue +52 -36
- package/app/components/SLHourRangeInput.vue +45 -32
- package/app/components/SLIOSSwitch.vue +81 -60
- package/app/components/SLIcon.vue +4 -3
- package/app/components/SLIconButton.vue +31 -29
- package/app/components/SLInfoTip.vue +51 -40
- package/app/components/SLInsightSitePage.vue +12 -7
- package/app/components/SLLegend.vue +19 -12
- package/app/components/SLLinearProgressBar.vue +7 -20
- package/app/components/SLLink.vue +12 -8
- package/app/components/SLLoading.vue +34 -31
- package/app/components/SLMapChart.vue +5 -4
- package/app/components/SLModal.vue +90 -66
- package/app/components/SLMonthCalendarButton.vue +91 -45
- package/app/components/SLMonthPicker.vue +42 -37
- package/app/components/SLMultiEmailInput.vue +163 -113
- package/app/components/SLMultiSelect.vue +37 -26
- package/app/components/SLNoData.vue +16 -11
- package/app/components/SLNotification.vue +133 -129
- package/app/components/SLPageModal.vue +14 -9
- package/app/components/SLPagination.vue +45 -33
- package/app/components/SLPillCheckbox.vue +50 -42
- package/app/components/SLPillLabel.vue +43 -28
- package/app/components/SLPopupMenuButton.vue +26 -17
- package/app/components/SLProfileButton.vue +28 -20
- package/app/components/SLProjectShareItem.vue +30 -17
- package/app/components/SLRadioButton.vue +41 -33
- package/app/components/SLRadioButtonGroup.vue +28 -23
- package/app/components/SLRadioGroup.vue +90 -78
- package/app/components/SLRangeInput.vue +53 -38
- package/app/components/SLRegionsMapChart.vue +5 -4
- package/app/components/SLRightSider.vue +50 -40
- package/app/components/SLSearchInput.vue +24 -19
- package/app/components/SLSelect.vue +114 -87
- package/app/components/SLSelectAllToggle.vue +52 -37
- package/app/components/SLSidebarNav.vue +253 -193
- package/app/components/SLSidebarNavGroupItem.vue +13 -10
- package/app/components/SLSidebarNavGroupItemSection.vue +240 -179
- package/app/components/SLSidebarNavLinkItem.vue +131 -109
- package/app/components/SLSidebarNavSectionItem.vue +21 -18
- package/app/components/SLSitePage.vue +35 -24
- package/app/components/SLSkyInsightSitePage.vue +13 -8
- package/app/components/SLSortByDropdown.vue +35 -22
- package/app/components/SLSpinIcon.vue +6 -3
- package/app/components/SLStayRangeInput.vue +47 -36
- package/app/components/SLTab.vue +7 -2
- package/app/components/SLTable.vue +330 -313
- package/app/components/SLTableTooltip.vue +44 -30
- package/app/components/SLTabs.vue +333 -280
- package/app/components/SLTextInput.vue +162 -134
- package/app/components/SLTextarea.vue +40 -29
- package/app/components/SLToast.vue +19 -11
- package/app/components/SLToggleButton.vue +18 -11
- package/app/components/SLTwoLayerMultiSelect.vue +180 -85
- package/app/components/SLTwoLayerSelect.vue +47 -37
- package/app/components/SLTwoLayerSingleSelect.vue +52 -33
- package/app/components/SLWarnModal.vue +9 -7
- package/app/interface/commons.ts +7 -0
- package/app/utils/index.ts +213 -146
- package/eslint.config.js +3 -0
- package/nuxt.config.ts +17 -14
- package/package.json +9 -8
- package/skills-lock.json +59 -0
- package/tsconfig.json +1 -6
- package/.eslintrc.cjs +0 -4
- package/app/assets/css/layout.styl +0 -98
- package/app/assets/css/tailwind.css +0 -3
- package/app/pages/index.vue +0 -15
- package/interface/commons.ts +0 -7
- package/tailwind.config.js +0 -271
- /package/{interface → app/interface}/IDateRange.ts +0 -0
- /package/{interface → app/interface}/IHourRange.ts +0 -0
- /package/{interface → app/interface}/IInputOption.ts +0 -0
- /package/{interface → app/interface}/ILegendItem.ts +0 -0
- /package/{interface → app/interface}/IOrganization.ts +0 -0
- /package/{interface → app/interface}/IPopupMenuButton.ts +0 -0
- /package/{interface → app/interface}/IStayRange.ts +0 -0
- /package/{interface → app/interface}/ITableField.ts +0 -0
- /package/{interface → app/interface}/IWeb.ts +0 -0
- /package/{interface → app/interface}/NavConfigType.ts +0 -0
- /package/{models → app/models}/DateRange.ts +0 -0
package/eslint.config.js
ADDED
package/nuxt.config.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
import { dirname } from "path";
|
|
4
|
-
|
|
5
|
-
const currentDir = dirname(fileURLToPath(import.meta.url));
|
|
1
|
+
import { fileURLToPath } from "node:url";
|
|
2
|
+
import tailwindcss from "@tailwindcss/vite";
|
|
6
3
|
|
|
4
|
+
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
7
5
|
export default defineNuxtConfig({
|
|
6
|
+
devtools: { enabled: true },
|
|
7
|
+
compatibilityDate: "2026-07-28",
|
|
8
|
+
$meta: {
|
|
9
|
+
name: "skylens-ui",
|
|
10
|
+
},
|
|
8
11
|
alias: {
|
|
9
|
-
"~ui":
|
|
10
|
-
images: fileURLToPath(new URL("./assets/images", import.meta.url)),
|
|
12
|
+
"~ui": fileURLToPath(new URL("./", import.meta.url)),
|
|
11
13
|
},
|
|
12
|
-
devtools: { enabled: true },
|
|
13
14
|
runtimeConfig: {
|
|
14
15
|
public: {
|
|
15
16
|
defaultCableEndDateBeforeNow: 5,
|
|
@@ -17,11 +18,13 @@ export default defineNuxtConfig({
|
|
|
17
18
|
icoUrl: "https://skylens-mng-dev-1087511617183.asia-east1.run.app",
|
|
18
19
|
},
|
|
19
20
|
},
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
css: [
|
|
22
|
+
"~ui/app/assets/css/main.css",
|
|
23
|
+
"~ui/app/assets/css/icons.css",
|
|
24
|
+
"~ui/app/assets/css/layout.css",
|
|
25
|
+
],
|
|
26
|
+
plugins: ["~ui/app/plugins/v-calendar.ts"],
|
|
27
|
+
vite: {
|
|
28
|
+
plugins: [tailwindcss()],
|
|
26
29
|
},
|
|
27
30
|
});
|
package/package.json
CHANGED
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mptw/skylens-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.1",
|
|
5
5
|
"main": "./nuxt.config.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "nuxi dev .playground",
|
|
8
|
+
"dev:prepare": "nuxt prepare .playground",
|
|
8
9
|
"build": "nuxt build .playground",
|
|
9
10
|
"generate": "nuxt generate .playground",
|
|
10
11
|
"preview": "nuxt preview .playground",
|
|
11
|
-
"lint": "eslint ."
|
|
12
|
-
"postinstall": "nuxt prepare .playground"
|
|
12
|
+
"lint": "eslint ."
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@nuxt/eslint
|
|
15
|
+
"@nuxt/eslint": "^1.16.0",
|
|
16
|
+
"@types/node": "^24.13.3",
|
|
16
17
|
"eslint": "^10.8.0",
|
|
17
18
|
"nuxt": "^4.5.1",
|
|
18
|
-
"typescript": "^
|
|
19
|
+
"typescript": "^6.0.3",
|
|
20
|
+
"vue": "^3.5.40"
|
|
19
21
|
},
|
|
20
22
|
"dependencies": {
|
|
21
23
|
"@gtm-support/vue-gtm": "^3.2.0",
|
|
22
|
-
"@nuxtjs/tailwindcss": "^6.14.0",
|
|
23
24
|
"@popperjs/core": "^2.11.8",
|
|
25
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
24
26
|
"@types/commonmark": "^0.27.10",
|
|
25
27
|
"@types/dompurify": "^3.2.0",
|
|
26
28
|
"@types/lodash-es": "^4.17.12",
|
|
@@ -37,9 +39,8 @@
|
|
|
37
39
|
"pug": "^3.0.4",
|
|
38
40
|
"rxjs": "^7.8.2",
|
|
39
41
|
"sortablejs": "^1.15.7",
|
|
40
|
-
"stylus": "^0.64.0",
|
|
41
42
|
"swiper": "^14.0.6",
|
|
42
|
-
"tailwindcss
|
|
43
|
+
"tailwindcss": "^4.3.3",
|
|
43
44
|
"v-calendar": "^3.1.2",
|
|
44
45
|
"vue": "^3.5.40",
|
|
45
46
|
"vue-3-slider-component": "^1.0.2",
|
package/skills-lock.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"skills": {
|
|
4
|
+
"nitro": {
|
|
5
|
+
"source": "antfu/skills",
|
|
6
|
+
"sourceType": "github",
|
|
7
|
+
"skillPath": "skills/nitro/SKILL.md",
|
|
8
|
+
"computedHash": "f8341eaf6fbdc604c2c8123a275407acea5a74ad3b0870cdd0ed2a3007e36c12"
|
|
9
|
+
},
|
|
10
|
+
"nuxt": {
|
|
11
|
+
"source": "antfu/skills",
|
|
12
|
+
"sourceType": "github",
|
|
13
|
+
"skillPath": "skills/nuxt/SKILL.md",
|
|
14
|
+
"computedHash": "96dbdbfc06bf7045aeb9a463b972d5c0b5679d6dadf196d8ef6b98dc6defed2d"
|
|
15
|
+
},
|
|
16
|
+
"tsdown": {
|
|
17
|
+
"source": "antfu/skills",
|
|
18
|
+
"sourceType": "github",
|
|
19
|
+
"skillPath": "skills/tsdown/SKILL.md",
|
|
20
|
+
"computedHash": "2183b9019058744215ab8b1261e34833653b5864da159bc022e3b9ad2f706aa5"
|
|
21
|
+
},
|
|
22
|
+
"vite": {
|
|
23
|
+
"source": "antfu/skills",
|
|
24
|
+
"sourceType": "github",
|
|
25
|
+
"skillPath": "skills/vite/SKILL.md",
|
|
26
|
+
"computedHash": "867ff66238f3152e9c494339ad08dc432dd0df5bcf5cc7a00b61a72b580eb908"
|
|
27
|
+
},
|
|
28
|
+
"vitest": {
|
|
29
|
+
"source": "antfu/skills",
|
|
30
|
+
"sourceType": "github",
|
|
31
|
+
"skillPath": "skills/vitest/SKILL.md",
|
|
32
|
+
"computedHash": "943d436114c677802426741980146c07560bf375297666b03062444f4b98a785"
|
|
33
|
+
},
|
|
34
|
+
"vue": {
|
|
35
|
+
"source": "antfu/skills",
|
|
36
|
+
"sourceType": "github",
|
|
37
|
+
"skillPath": "skills/vue/SKILL.md",
|
|
38
|
+
"computedHash": "9c241141e07e836e4f0537c63e8f929fba3767c2997250be38e699f19b75e3f2"
|
|
39
|
+
},
|
|
40
|
+
"vue-best-practices": {
|
|
41
|
+
"source": "antfu/skills",
|
|
42
|
+
"sourceType": "github",
|
|
43
|
+
"skillPath": "skills/vue-best-practices/SKILL.md",
|
|
44
|
+
"computedHash": "d7d22c8cb343583c3904692c4d1d7b50382945e433e4f6e053f4aabb9846cbc3"
|
|
45
|
+
},
|
|
46
|
+
"vue-testing-best-practices": {
|
|
47
|
+
"source": "antfu/skills",
|
|
48
|
+
"sourceType": "github",
|
|
49
|
+
"skillPath": "skills/vue-testing-best-practices/SKILL.md",
|
|
50
|
+
"computedHash": "18c7d8f42f350f927e37de055e34c97b8cfb9f79c12cf942f7f3d2a0821057b5"
|
|
51
|
+
},
|
|
52
|
+
"vueuse-functions": {
|
|
53
|
+
"source": "antfu/skills",
|
|
54
|
+
"sourceType": "github",
|
|
55
|
+
"skillPath": "skills/vueuse-functions/SKILL.md",
|
|
56
|
+
"computedHash": "5f32cd5f744671178284887c9ffc27a080e0e3316c0f7c3b22f4459c760daf49"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
package/tsconfig.json
CHANGED
package/.eslintrc.cjs
DELETED
|
@@ -1,98 +0,0 @@
|
|
|
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.primary.100')
|
|
14
|
-
--vc-accent-600 theme('colors.primary.DEFAULT')
|
|
15
|
-
--vc-accent-500 theme('colors.primary.300')
|
|
16
|
-
--vc-accent-700 theme('colors.primary.600')
|
|
17
|
-
--vc-accent-900 theme('colors.primary.800')
|
|
18
|
-
|
|
19
|
-
.vc-skylens-gray
|
|
20
|
-
--vc-accent-200 theme('colors.pgray.5')
|
|
21
|
-
--vc-accent-500 theme('colors.pgray.4')
|
|
22
|
-
--vc-accent-600 theme('colors.pgray.3')
|
|
23
|
-
--vc-accent-700 theme('colors.pgray.3')
|
|
24
|
-
--vc-accent-900 theme('colors.pgray.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-300 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-300 rounded
|
|
69
|
-
|
|
70
|
-
/* Handle on hover */
|
|
71
|
-
&::-webkit-scrollbar-thumb:hover
|
|
72
|
-
@apply bg-primary-500
|
|
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 rounded
|
|
89
|
-
|
|
90
|
-
/* Handle on hover */
|
|
91
|
-
&::-webkit-scrollbar-thumb:hover
|
|
92
|
-
@apply bg-secondary
|
|
93
|
-
|
|
94
|
-
.fade-enter-active, .fade-leave-active
|
|
95
|
-
@apply transition-opacity
|
|
96
|
-
|
|
97
|
-
.fade-enter, .fade-leave-to
|
|
98
|
-
@apply opacity-0
|
package/app/pages/index.vue
DELETED
package/interface/commons.ts
DELETED
package/tailwind.config.js
DELETED
|
@@ -1,271 +0,0 @@
|
|
|
1
|
-
/** @type {import('tailwindcss').Config} */
|
|
2
|
-
module.exports = {
|
|
3
|
-
content: [
|
|
4
|
-
'./components/**/*.{js,vue,ts}',
|
|
5
|
-
'./layouts/**/*.vue',
|
|
6
|
-
'./pages/**/*.vue',
|
|
7
|
-
'./app.vue',
|
|
8
|
-
],
|
|
9
|
-
darkMode: 'class', // or 'media' or 'class'
|
|
10
|
-
theme: {
|
|
11
|
-
extend: {
|
|
12
|
-
backdropBlur: {
|
|
13
|
-
5: '5px',
|
|
14
|
-
8: '8px',
|
|
15
|
-
},
|
|
16
|
-
fontFamily: {
|
|
17
|
-
'login-title': 'Roboto',
|
|
18
|
-
},
|
|
19
|
-
colors: {
|
|
20
|
-
primary: {
|
|
21
|
-
15: '#FAFAFD',
|
|
22
|
-
25: '#F9F9FF',
|
|
23
|
-
50: '#F3F4F8',
|
|
24
|
-
100: '#E8EAF2',
|
|
25
|
-
200: '#DDE1F3',
|
|
26
|
-
300: '#BABBE1',
|
|
27
|
-
400: '#A1A3D0',
|
|
28
|
-
500: '#9193C1',
|
|
29
|
-
600: '#8486B4',
|
|
30
|
-
DEFAULT: '#626493',
|
|
31
|
-
800: '#4E5076',
|
|
32
|
-
900: '#3B3C58',
|
|
33
|
-
},
|
|
34
|
-
secondary: {
|
|
35
|
-
50: '#F1F5FC',
|
|
36
|
-
200: '#EAF1FF',
|
|
37
|
-
400: '#A9BADB',
|
|
38
|
-
500: '#90A8D7',
|
|
39
|
-
600: '#7996CF',
|
|
40
|
-
DEFAULT: '#6182C3',
|
|
41
|
-
800: '#4E689C',
|
|
42
|
-
'new-dark': '#445B89',
|
|
43
|
-
},
|
|
44
|
-
third: {
|
|
45
|
-
50: '#F9FFF1',
|
|
46
|
-
100: '#E8F2EB',
|
|
47
|
-
400: '#B3D9C7',
|
|
48
|
-
500: '#82CDDB',
|
|
49
|
-
600: '#4EA3B6',
|
|
50
|
-
DEFAULT: '#4C8098',
|
|
51
|
-
},
|
|
52
|
-
four: {
|
|
53
|
-
100: '#FAE7F0',
|
|
54
|
-
400: '#FEABBF',
|
|
55
|
-
500: '#EC6F8D',
|
|
56
|
-
},
|
|
57
|
-
highlight: {
|
|
58
|
-
50: '#FFFBF1',
|
|
59
|
-
100: '#F2EFE8',
|
|
60
|
-
300: '#F6D79D',
|
|
61
|
-
400: '#FFD874',
|
|
62
|
-
500: '#FBBE21',
|
|
63
|
-
600: '#FDB242',
|
|
64
|
-
DEFAULT: '#EEB13C',
|
|
65
|
-
},
|
|
66
|
-
poi: {
|
|
67
|
-
100: '#F1AFCE',
|
|
68
|
-
300: '#EB8CB9',
|
|
69
|
-
DEFAULT: '#D35092',
|
|
70
|
-
900: '#AA5488',
|
|
71
|
-
1000: '#7E4E77',
|
|
72
|
-
},
|
|
73
|
-
danger: {
|
|
74
|
-
DEFAULT: '#F35A5A',
|
|
75
|
-
light: '#FE8678',
|
|
76
|
-
},
|
|
77
|
-
red: {
|
|
78
|
-
2: '#F34141',
|
|
79
|
-
DEFAULT: '#EB5757',
|
|
80
|
-
},
|
|
81
|
-
pgray: {
|
|
82
|
-
1: '#2C2D31',
|
|
83
|
-
2: '#4D4F55',
|
|
84
|
-
3: '#858792',
|
|
85
|
-
4: '#BCBFCF',
|
|
86
|
-
4.5: '#C7C5D0',
|
|
87
|
-
5: '#DFE1E9',
|
|
88
|
-
6: '#ECECF2',
|
|
89
|
-
},
|
|
90
|
-
gray: {
|
|
91
|
-
1: '#333333',
|
|
92
|
-
2: '#4F4F4F',
|
|
93
|
-
3: '#828282',
|
|
94
|
-
4: '#BDBDBD',
|
|
95
|
-
5: '#E0E0E0',
|
|
96
|
-
6: '#F2F2F2',
|
|
97
|
-
},
|
|
98
|
-
green: {
|
|
99
|
-
2: '#6EC393',
|
|
100
|
-
DEFAULT: '#27AE60',
|
|
101
|
-
},
|
|
102
|
-
blue: {
|
|
103
|
-
1: '#2F80ED',
|
|
104
|
-
2: '#110DFB',
|
|
105
|
-
3: '#332FED',
|
|
106
|
-
},
|
|
107
|
-
orange: {
|
|
108
|
-
DEFAULT: '#F48A28',
|
|
109
|
-
},
|
|
110
|
-
edit: {
|
|
111
|
-
DEFAULT: '#6E6BDD',
|
|
112
|
-
},
|
|
113
|
-
card: {
|
|
114
|
-
'lightpr-bg': '#FBFCFF',
|
|
115
|
-
},
|
|
116
|
-
insight: {
|
|
117
|
-
title: '#696CBA',
|
|
118
|
-
'title-line': '#9B74DA',
|
|
119
|
-
'hint-line': '#ADB4F5',
|
|
120
|
-
'web-title-start': '#39BBE4',
|
|
121
|
-
'web-title-end': 'rgb(144 128 241/0.74)',
|
|
122
|
-
'poi-title-start': 'rgb(255 131 92/0.7)',
|
|
123
|
-
'poi-title-end': 'rgb(120 91 207/0.74)',
|
|
124
|
-
},
|
|
125
|
-
mask: {
|
|
126
|
-
DEFAULT: '#47485A',
|
|
127
|
-
},
|
|
128
|
-
'login-bg': {
|
|
129
|
-
DEFAULT: '#fefefe',
|
|
130
|
-
},
|
|
131
|
-
'nav-color-switch-bg': {
|
|
132
|
-
DEFAULT: '#2D2F57',
|
|
133
|
-
},
|
|
134
|
-
},
|
|
135
|
-
boxShadow: {
|
|
136
|
-
DEFAULT: '0px 2px 4px rgba(111, 111, 111, 0.2)',
|
|
137
|
-
md: '0px 2px 8px rgba(88, 82, 103, 0.25)',
|
|
138
|
-
inline: 'inset 0px -1px 0px rgba(186, 187, 225, 0.8)',
|
|
139
|
-
'second-inline': 'inset 0px -1px 0px rgba(238, 177, 60, 0.8)',
|
|
140
|
-
'header-drop': '0px 5px 12px rgba(88, 82, 103, 0.45)',
|
|
141
|
-
'popup-sm':
|
|
142
|
-
'0px 5px 5px -3px rgba(88, 82, 103, 0.2), 0px 3px 14px 2px rgba(88, 82, 103, 0.12)',
|
|
143
|
-
'popup-lg': '0px 5px 12px rgba(88, 82, 103, 0.45)',
|
|
144
|
-
login: '2px 5px 20px rgba(107, 91, 141, 0.45)',
|
|
145
|
-
'insight-layer': '0px 4px 4px rgba(70, 56, 107, 0.25)',
|
|
146
|
-
'insight-comment': '0px 4px 12px rgba(37, 35, 143, 0.25)',
|
|
147
|
-
'insight-card': '0px 4px 12px rgba(77, 45, 147, 0.25)',
|
|
148
|
-
'insight-card-lg': '0px 4px 20px 0px rgba(0, 0, 0, 0.10)',
|
|
149
|
-
'small-card': '2px 2px 4px rgba(0, 0, 0, 0.1)',
|
|
150
|
-
'float-actions': '0px -6px 12px 0px rgba(90, 92, 133, 0.10)',
|
|
151
|
-
},
|
|
152
|
-
fontSize: {
|
|
153
|
-
sm: ['0.875rem', '1.1875rem'],
|
|
154
|
-
md: ['0.9375rem', '1.25rem'],
|
|
155
|
-
base: ['1rem', '1.3125rem'],
|
|
156
|
-
lg: ['1.25rem', '1.6875rem'],
|
|
157
|
-
'0.75xl': ['1.0625rem', '1.75rem'],
|
|
158
|
-
'2.25xl': ['1.5625rem', '1.8125rem'],
|
|
159
|
-
'2.67xl': ['1.75rem', '2rem'],
|
|
160
|
-
'3.33xl': ['2rem', '2.6875rem'],
|
|
161
|
-
'3.67xl': ['2.125rem', '2.4175rem'],
|
|
162
|
-
'7.17xl': '4.75rem',
|
|
163
|
-
'16xl': ['4rem', '4.625rem'],
|
|
164
|
-
'18xl': ['4.5rem', '6rem'],
|
|
165
|
-
},
|
|
166
|
-
lineHeight: {
|
|
167
|
-
3.5: '0.875rem',
|
|
168
|
-
4.25: '1.0625rem',
|
|
169
|
-
4.5: '1.125rem',
|
|
170
|
-
4.75: '1.1875rem',
|
|
171
|
-
5.75: '1.4375rem',
|
|
172
|
-
6.5: '1.625rem',
|
|
173
|
-
6.75: '1.6875rem',
|
|
174
|
-
7: '1.75rem',
|
|
175
|
-
7.25: '1.8125rem',
|
|
176
|
-
7.5: '1.875rem',
|
|
177
|
-
9.25: '2.3125rem',
|
|
178
|
-
10.5: '2.625rem',
|
|
179
|
-
12: '3rem',
|
|
180
|
-
13.75: '3.3475rem',
|
|
181
|
-
16: '4rem',
|
|
182
|
-
24: '6rem',
|
|
183
|
-
normal: '1.3125',
|
|
184
|
-
},
|
|
185
|
-
spacing: {
|
|
186
|
-
0.75: '0.1875rem',
|
|
187
|
-
1.25: '0.3125rem',
|
|
188
|
-
1.75: '0.4375rem',
|
|
189
|
-
2.25: '0.5625rem',
|
|
190
|
-
2.75: '0.6875rem',
|
|
191
|
-
3.25: '0.8125rem',
|
|
192
|
-
3.75: '0.9375rem',
|
|
193
|
-
4.75: '1.1875rem',
|
|
194
|
-
5.5: '1.375rem',
|
|
195
|
-
6: '1.5rem',
|
|
196
|
-
6.5: '1.625rem',
|
|
197
|
-
7.25: '1.8125rem',
|
|
198
|
-
7.5: '1.875rem',
|
|
199
|
-
7.75: '1.9375rem',
|
|
200
|
-
9.5: '2.375rem',
|
|
201
|
-
10.5: '2.625rem',
|
|
202
|
-
12.5: '3.125rem',
|
|
203
|
-
13.5: '3.375rem',
|
|
204
|
-
15: '3.75rem',
|
|
205
|
-
17.75: '4.4375rem',
|
|
206
|
-
21.5: '5.375rem',
|
|
207
|
-
22.75: '5.6875rem',
|
|
208
|
-
23: '5.76rem',
|
|
209
|
-
30: '7.5rem',
|
|
210
|
-
31.75: '7.9375rem',
|
|
211
|
-
38.5: '9.625rem',
|
|
212
|
-
44.75: '11.1875rem',
|
|
213
|
-
67.75: '16.9375rem',
|
|
214
|
-
68: '17rem',
|
|
215
|
-
78: '19.5rem',
|
|
216
|
-
89.5: '22.375rem',
|
|
217
|
-
96: '24rem',
|
|
218
|
-
142: '35.5rem',
|
|
219
|
-
},
|
|
220
|
-
minWidth: {
|
|
221
|
-
52.5: '13.125rem',
|
|
222
|
-
57.5: '14.375rem',
|
|
223
|
-
63: '15.75rem',
|
|
224
|
-
},
|
|
225
|
-
maxWidth: {
|
|
226
|
-
55: '13.75rem',
|
|
227
|
-
63.75: '15.9375rem',
|
|
228
|
-
68: '17rem',
|
|
229
|
-
70: '17.5rem',
|
|
230
|
-
96: '24rem',
|
|
231
|
-
114.5: '28.625rem',
|
|
232
|
-
117.5: '29.375rem',
|
|
233
|
-
134.5: '33.625rem',
|
|
234
|
-
149.5: '37.375rem',
|
|
235
|
-
150: '37.5rem',
|
|
236
|
-
208: '52rem',
|
|
237
|
-
},
|
|
238
|
-
minHeight: {
|
|
239
|
-
18: '4.5rem',
|
|
240
|
-
52: '13rem',
|
|
241
|
-
52.25: '13.0625rem',
|
|
242
|
-
57.75: '14.4375rem',
|
|
243
|
-
76: '19rem',
|
|
244
|
-
},
|
|
245
|
-
transitionProperty: {
|
|
246
|
-
'input-focus':
|
|
247
|
-
'margin, padding, color, font-size, line-height, background-color',
|
|
248
|
-
'app-header': 'margin, width',
|
|
249
|
-
width: 'width',
|
|
250
|
-
height: 'height',
|
|
251
|
-
margin: 'margin',
|
|
252
|
-
'font-size': 'font-size',
|
|
253
|
-
padding: 'padding',
|
|
254
|
-
'sidebar-nav-item': 'border-radius, width',
|
|
255
|
-
'sidebar-nav-item-icon': 'width, height, font-size',
|
|
256
|
-
'border-radius': 'border-radius',
|
|
257
|
-
},
|
|
258
|
-
opacity: {
|
|
259
|
-
81: '0.81',
|
|
260
|
-
},
|
|
261
|
-
textShadow: {
|
|
262
|
-
default: '0px 4px 4px rgba(0, 0, 0, 0.25)',
|
|
263
|
-
md: '0px 2px 8px rgba(88, 82, 103, 0.25)',
|
|
264
|
-
},
|
|
265
|
-
zIndex: {
|
|
266
|
-
60: '60',
|
|
267
|
-
},
|
|
268
|
-
},
|
|
269
|
-
},
|
|
270
|
-
plugins: [require('tailwindcss-textshadow')],
|
|
271
|
-
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|