@scbt-ecom/ui 0.7.18 → 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.
@@ -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,8 +1,9 @@
1
1
  {
2
2
  "name": "@scbt-ecom/ui",
3
- "version": "0.7.18",
3
+ "version": "0.7.20",
4
4
  "type": "module",
5
5
  "exports": {
6
+ "./utils-tailwind.css": "./utils-tailwind.css",
6
7
  "./style.css": "./dist/style.css",
7
8
  "./client": {
8
9
  "import": "./dist/client.js",
@@ -43,6 +44,9 @@
43
44
  },
44
45
  "devDependencies": {
45
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",
46
50
  "@headlessui/react": "^2.1.2",
47
51
  "@hookform/resolvers": "^3.9.0",
48
52
  "@neodx/svg": "^0.7.1",
@@ -81,17 +85,14 @@
81
85
  "@tiptap/starter-kit": "^2.9.1",
82
86
  "@types/react": "^18.3.3",
83
87
  "@types/react-dom": "^18.3.0",
88
+ "@typescript-eslint/eslint-plugin": "^8.11.0",
89
+ "@typescript-eslint/parser": "^8.11.0",
84
90
  "@vitejs/plugin-react": "^4.3.1",
85
91
  "autoprefixer": "^10.4.19",
86
92
  "chromatic": "^11.7.1",
87
93
  "class-variance-authority": "^0.7.0",
88
94
  "clsx": "^2.1.1",
89
95
  "date-fns": "^4.1.0",
90
- "@eslint/compat": "^1.2.1",
91
- "@eslint/eslintrc": "^3.1.0",
92
- "@eslint/js": "^9.13.0",
93
- "@typescript-eslint/eslint-plugin": "^8.11.0",
94
- "@typescript-eslint/parser": "^8.11.0",
95
96
  "eslint": "^9.13.0",
96
97
  "eslint-plugin-import": "^2.31.0",
97
98
  "eslint-plugin-jsx-a11y": "^6.10.1",
@@ -103,9 +104,8 @@
103
104
  "eslint-plugin-simple-import-sort": "^12.1.1",
104
105
  "eslint-plugin-storybook": "^0.10.1",
105
106
  "eslint-plugin-unused-imports": "^4.1.4",
106
- "globals": "^15.11.0",
107
- "typescript-eslint": "^8.11.0",
108
107
  "framer-motion": "^11.5.6",
108
+ "globals": "^15.11.0",
109
109
  "html-react-parser": "^5.1.18",
110
110
  "husky": "^9.1.4",
111
111
  "jsdom": "^24.1.1",
@@ -127,9 +127,11 @@
127
127
  "tailwindcss-animate": "^1.0.7",
128
128
  "ts-node": "^10.9.2",
129
129
  "typescript": "^5.2.2",
130
+ "typescript-eslint": "^8.11.0",
130
131
  "vite": "^5.3.4",
131
132
  "vite-plugin-checker": "^0.7.2",
132
133
  "vite-plugin-dts": "^4.0.2",
134
+ "vite-plugin-static-copy": "^2.1.0",
133
135
  "vitest": "^2.0.5",
134
136
  "zod": "^3.23.8"
135
137
  },