l-min-components 1.0.934 → 1.0.938

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.0.934",
3
+ "version": "1.0.938",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -168,7 +168,8 @@ const AppMainLayout = () => {
168
168
  "Developer accounts",
169
169
  "Developer",
170
170
  "Search",
171
- "Get started"
171
+ "Get started",
172
+ "Sign in"
172
173
  ];
173
174
 
174
175
  const {
@@ -128,7 +128,7 @@ const DropDownComponent = (props) => {
128
128
  setSelected(dropdownItem);
129
129
  setDropdown();
130
130
  }}>
131
- <span>{dropdownItem?.name}</span>
131
+ <span>{props?.findText(dropdownItem?.name)}</span>
132
132
  {(props?.valueSelect || selected) === dropdownItem && (
133
133
  <Tick />
134
134
  )}
@@ -142,7 +142,7 @@ const HeaderComponentTwo = (props) => {
142
142
  !window.location.pathname.includes("payment") && (
143
143
  <ButtonComponent
144
144
  type="secondary"
145
- text="Log in"
145
+ text={props?.findText("Sign in")}
146
146
  onClick={goToLogin}
147
147
  />
148
148
  )}