@scbt-ecom/ui 0.7.19 → 0.7.20
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/dist/client.js +36 -33
- package/dist/client.js.map +1 -1
- package/dist/hybrid.js +2 -2
- package/dist/{utils-tailwind-B2uhcWlW.js → utils-tailwind-Bh4Yv0Ys.js} +706 -718
- package/dist/utils-tailwind-Bh4Yv0Ys.js.map +1 -0
- package/dist/utils-tailwind.css +55 -0
- package/package.json +10 -9
- package/dist/utils-tailwind-B2uhcWlW.js.map +0 -1
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/* # Custom scroll */
|
|
2
|
+
.customScrollbar-y::-webkit-scrollbar {
|
|
3
|
+
width: 4px;
|
|
4
|
+
height: 4px;
|
|
5
|
+
}
|
|
6
|
+
.customScrollbar-y::-webkit-scrollbar-track {
|
|
7
|
+
border-radius: 8px;
|
|
8
|
+
background: #d4dbe2;
|
|
9
|
+
}
|
|
10
|
+
.customScrollbar-y::-webkit-scrollbar-thumb {
|
|
11
|
+
background: #a9b6c5;
|
|
12
|
+
border-radius: 8px;
|
|
13
|
+
}
|
|
14
|
+
.scrollHidden::-webkit-scrollbar {
|
|
15
|
+
width: 0;
|
|
16
|
+
height: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.progressBar-apply {
|
|
20
|
+
background-image: repeating-linear-gradient(-33deg, #d4dbe2, #d4dbe2 5px, #f3f4f7 0, #f3f4f7 14px);
|
|
21
|
+
background-size: 2000% 2000%;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.skeleton-apply {
|
|
25
|
+
background: linear-gradient(80deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
|
|
26
|
+
background-size: 200% 100%;
|
|
27
|
+
animation: 1.5s shine linear infinite;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.rdp-vhidden {
|
|
31
|
+
@apply hidden;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.gradient-apply {
|
|
35
|
+
background: linear-gradient(97.94deg, #dae4f2 -14.21%, #afcffc 47.44%, #79aef8 107.86%);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.text-balance {
|
|
39
|
+
text-wrap: balance;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@keyframes shine {
|
|
43
|
+
to {
|
|
44
|
+
background-position-x: -200%;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/* @keyframes progress-loader {
|
|
49
|
+
100% {
|
|
50
|
+
background-position: 100% 100%;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
.animate-progress-loader {
|
|
54
|
+
animation: progress-loader 250s linear infinite;
|
|
55
|
+
} */
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scbt-ecom/ui",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.20",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
|
-
"./utils-tailwind.css": "./
|
|
6
|
+
"./utils-tailwind.css": "./utils-tailwind.css",
|
|
7
7
|
"./style.css": "./dist/style.css",
|
|
8
8
|
"./client": {
|
|
9
9
|
"import": "./dist/client.js",
|
|
@@ -44,6 +44,9 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@chromatic-com/storybook": "^1.6.1",
|
|
47
|
+
"@eslint/compat": "^1.2.1",
|
|
48
|
+
"@eslint/eslintrc": "^3.1.0",
|
|
49
|
+
"@eslint/js": "^9.13.0",
|
|
47
50
|
"@headlessui/react": "^2.1.2",
|
|
48
51
|
"@hookform/resolvers": "^3.9.0",
|
|
49
52
|
"@neodx/svg": "^0.7.1",
|
|
@@ -82,17 +85,14 @@
|
|
|
82
85
|
"@tiptap/starter-kit": "^2.9.1",
|
|
83
86
|
"@types/react": "^18.3.3",
|
|
84
87
|
"@types/react-dom": "^18.3.0",
|
|
88
|
+
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
89
|
+
"@typescript-eslint/parser": "^8.11.0",
|
|
85
90
|
"@vitejs/plugin-react": "^4.3.1",
|
|
86
91
|
"autoprefixer": "^10.4.19",
|
|
87
92
|
"chromatic": "^11.7.1",
|
|
88
93
|
"class-variance-authority": "^0.7.0",
|
|
89
94
|
"clsx": "^2.1.1",
|
|
90
95
|
"date-fns": "^4.1.0",
|
|
91
|
-
"@eslint/compat": "^1.2.1",
|
|
92
|
-
"@eslint/eslintrc": "^3.1.0",
|
|
93
|
-
"@eslint/js": "^9.13.0",
|
|
94
|
-
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
95
|
-
"@typescript-eslint/parser": "^8.11.0",
|
|
96
96
|
"eslint": "^9.13.0",
|
|
97
97
|
"eslint-plugin-import": "^2.31.0",
|
|
98
98
|
"eslint-plugin-jsx-a11y": "^6.10.1",
|
|
@@ -104,9 +104,8 @@
|
|
|
104
104
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
105
105
|
"eslint-plugin-storybook": "^0.10.1",
|
|
106
106
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
107
|
-
"globals": "^15.11.0",
|
|
108
|
-
"typescript-eslint": "^8.11.0",
|
|
109
107
|
"framer-motion": "^11.5.6",
|
|
108
|
+
"globals": "^15.11.0",
|
|
110
109
|
"html-react-parser": "^5.1.18",
|
|
111
110
|
"husky": "^9.1.4",
|
|
112
111
|
"jsdom": "^24.1.1",
|
|
@@ -128,9 +127,11 @@
|
|
|
128
127
|
"tailwindcss-animate": "^1.0.7",
|
|
129
128
|
"ts-node": "^10.9.2",
|
|
130
129
|
"typescript": "^5.2.2",
|
|
130
|
+
"typescript-eslint": "^8.11.0",
|
|
131
131
|
"vite": "^5.3.4",
|
|
132
132
|
"vite-plugin-checker": "^0.7.2",
|
|
133
133
|
"vite-plugin-dts": "^4.0.2",
|
|
134
|
+
"vite-plugin-static-copy": "^2.1.0",
|
|
134
135
|
"vitest": "^2.0.5",
|
|
135
136
|
"zod": "^3.23.8"
|
|
136
137
|
},
|