@mamrp/components 1.7.34 → 1.7.36
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/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -135,7 +135,7 @@ function LicensePlate({
|
|
|
135
135
|
outline: "none",
|
|
136
136
|
border: "none",
|
|
137
137
|
cursor: readOnly || !!data && readOnly ? "default" : "text",
|
|
138
|
-
fontSize:
|
|
138
|
+
fontSize: "1rem",
|
|
139
139
|
fontWeight: 600
|
|
140
140
|
};
|
|
141
141
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
@@ -2336,7 +2336,7 @@ function SearchLicensePlate({
|
|
|
2336
2336
|
outline: "none",
|
|
2337
2337
|
border: "none",
|
|
2338
2338
|
cursor: readOnly || !!data && readOnly ? "default" : "text",
|
|
2339
|
-
fontSize: size === "small" ? "1rem" : "1.
|
|
2339
|
+
fontSize: size === "small" ? "1.1rem" : "1.2rem",
|
|
2340
2340
|
fontWeight: 600
|
|
2341
2341
|
};
|
|
2342
2342
|
useEffect6(() => {
|
|
@@ -2409,8 +2409,8 @@ function SearchLicensePlate({
|
|
|
2409
2409
|
{
|
|
2410
2410
|
src: "/assets/images/iran-flag-dark.svg",
|
|
2411
2411
|
alt: "Iran Flag",
|
|
2412
|
-
width: size === "small" ?
|
|
2413
|
-
height: size === "small" ?
|
|
2412
|
+
width: size === "small" ? 18 : 22,
|
|
2413
|
+
height: size === "small" ? 14 : 18,
|
|
2414
2414
|
style: { cursor: "pointer" },
|
|
2415
2415
|
onClick: () => {
|
|
2416
2416
|
setInputValues({
|
|
@@ -2582,8 +2582,8 @@ function SearchLicensePlate({
|
|
|
2582
2582
|
{
|
|
2583
2583
|
src: "/assets/images/iran.svg",
|
|
2584
2584
|
alt: "Iran",
|
|
2585
|
-
width: size === "small" ?
|
|
2586
|
-
height: size === "small" ?
|
|
2585
|
+
width: size === "small" ? 27 : 32,
|
|
2586
|
+
height: size === "small" ? 23 : 28,
|
|
2587
2587
|
style: { margin: 0, display: "block" }
|
|
2588
2588
|
}
|
|
2589
2589
|
)
|