@tecof/theme-editor 0.0.14 → 0.0.15

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/styles.css CHANGED
@@ -859,6 +859,8 @@
859
859
  flex-direction: column;
860
860
  gap: 10px;
861
861
  font-family: 'Inter', system-ui, sans-serif;
862
+ max-width: 100%;
863
+ overflow: hidden;
862
864
  }
863
865
 
864
866
  .tecof-upload-empty-state {
@@ -908,13 +910,15 @@
908
910
  .tecof-upload-file-item {
909
911
  display: flex;
910
912
  align-items: center;
911
- gap: 12px;
912
- padding: 10px 12px;
913
+ gap: 10px;
914
+ padding: 8px 10px;
913
915
  background: #ffffff;
914
916
  border: 1px solid #e4e4e7;
915
- border-radius: 12px;
917
+ border-radius: 10px;
916
918
  transition: all 0.2s ease;
917
919
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
920
+ max-width: 100%;
921
+ overflow: hidden;
918
922
  }
919
923
 
920
924
  .tecof-upload-file-item:hover {
@@ -923,9 +927,9 @@
923
927
  }
924
928
 
925
929
  .tecof-upload-file-thumb {
926
- width: 48px;
927
- height: 48px;
928
- border-radius: 10px;
930
+ width: 40px;
931
+ height: 40px;
932
+ border-radius: 8px;
929
933
  overflow: hidden;
930
934
  background: #f4f4f5;
931
935
  flex-shrink: 0;
@@ -998,7 +1002,7 @@
998
1002
  .tecof-upload-file-actions {
999
1003
  display: flex;
1000
1004
  align-items: center;
1001
- gap: 2px;
1005
+ gap: 1px;
1002
1006
  flex-shrink: 0;
1003
1007
  }
1004
1008
 
@@ -1006,12 +1010,12 @@
1006
1010
  display: flex;
1007
1011
  align-items: center;
1008
1012
  justify-content: center;
1009
- width: 30px;
1010
- height: 30px;
1013
+ width: 26px;
1014
+ height: 26px;
1011
1015
  color: #a1a1aa;
1012
1016
  background: none;
1013
1017
  border: none;
1014
- border-radius: 8px;
1018
+ border-radius: 6px;
1015
1019
  cursor: pointer;
1016
1020
  transition: all 0.15s ease;
1017
1021
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tecof/theme-editor",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "React theme editor library for Tecof projects",
5
5
  "keywords": [
6
6
  "react",
@@ -81,4 +81,4 @@
81
81
  "vaul": "^1.1.2",
82
82
  "vitest": "^3.0.0"
83
83
  }
84
- }
84
+ }