@eturnity/eturnity_reusable_components 1.0.87 → 1.0.88
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
package/src/App.vue
CHANGED
|
@@ -21,6 +21,9 @@
|
|
|
21
21
|
:optionItems="itemOptions"
|
|
22
22
|
:optionsDisplay="['display_name', 'company_item_number', 'model']"
|
|
23
23
|
/> -->
|
|
24
|
+
<td>
|
|
25
|
+
<search-input />
|
|
26
|
+
</td>
|
|
24
27
|
<div class="icons-container">
|
|
25
28
|
<three-dots :options="listOptions" :isLoading="false" />
|
|
26
29
|
</div>
|
|
@@ -47,6 +50,7 @@ import styled from "vue-styled-components"
|
|
|
47
50
|
import MainTable from "@/components/tables/mainTable"
|
|
48
51
|
import ThreeDots from "@/components/threeDots"
|
|
49
52
|
import Toggle from "@/components/inputs/toggle"
|
|
53
|
+
import SearchInput from "@/components/inputs/searchInput"
|
|
50
54
|
// import TableDropdown from "@/components/tableDropdown"
|
|
51
55
|
|
|
52
56
|
const PageContainer = styled.div`
|
|
@@ -61,6 +65,7 @@ export default {
|
|
|
61
65
|
MainTable,
|
|
62
66
|
ThreeDots,
|
|
63
67
|
Toggle,
|
|
68
|
+
SearchInput,
|
|
64
69
|
// TableDropdown,
|
|
65
70
|
},
|
|
66
71
|
data() {
|
|
@@ -35,7 +35,7 @@ const InputContainer = styled("input", inputAttrs)`
|
|
|
35
35
|
width: 100%;
|
|
36
36
|
box-sizing: border-box;
|
|
37
37
|
cursor: ${(props) => (props.isDisabled ? "not-allowed" : "auto")};
|
|
38
|
-
background: ${(props) => props.theme.colors.white}
|
|
38
|
+
background: ${(props) => props.theme.colors.white} !important;
|
|
39
39
|
&::placeholder {
|
|
40
40
|
color: ${(props) => props.theme.colors.darkGray};
|
|
41
41
|
}
|