@lemonadejs/dropdown 3.0.4 → 3.0.9
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.d.ts +57 -155
- package/dist/index.js +629 -332
- package/dist/react.js +36 -36
- package/dist/style.css +242 -178
- package/dist/vue.js +45 -45
- package/package.json +22 -23
package/dist/react.js
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
// @ts-nocheck
|
|
2
|
-
import React, { useRef, useEffect } from "react";
|
|
3
|
-
import Component from './index';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// @ts-ignore
|
|
7
|
-
export default React.forwardRef((props, mainReference) => {
|
|
8
|
-
// Dom element
|
|
9
|
-
const Ref = useRef(null);
|
|
10
|
-
|
|
11
|
-
// Get the properties for the spreadsheet
|
|
12
|
-
let options = { ...props };
|
|
13
|
-
|
|
14
|
-
useEffect(() => {
|
|
15
|
-
// @ts-ignore
|
|
16
|
-
if (!Ref.current.innerHTML) {
|
|
17
|
-
mainReference.current = Component(Ref.current, options);
|
|
18
|
-
}
|
|
19
|
-
}, []);
|
|
20
|
-
|
|
21
|
-
useEffect(() => {
|
|
22
|
-
for (let key in props) {
|
|
23
|
-
if (props.hasOwnProperty(key) && mainReference.current.hasOwnProperty(key)) {
|
|
24
|
-
if (props[key] !== mainReference.current[key]) {
|
|
25
|
-
mainReference.current[key] = props[key];
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}, [props])
|
|
30
|
-
|
|
31
|
-
let prop = {
|
|
32
|
-
ref: Ref,
|
|
33
|
-
style: { height: '100%', width: '100%' }
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
return React.createElement("div", prop);
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
import React, { useRef, useEffect } from "react";
|
|
3
|
+
import Component from './index';
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
export default React.forwardRef((props, mainReference) => {
|
|
8
|
+
// Dom element
|
|
9
|
+
const Ref = useRef(null);
|
|
10
|
+
|
|
11
|
+
// Get the properties for the spreadsheet
|
|
12
|
+
let options = { ...props };
|
|
13
|
+
|
|
14
|
+
useEffect(() => {
|
|
15
|
+
// @ts-ignore
|
|
16
|
+
if (!Ref.current.innerHTML) {
|
|
17
|
+
mainReference.current = Component(Ref.current, options);
|
|
18
|
+
}
|
|
19
|
+
}, []);
|
|
20
|
+
|
|
21
|
+
useEffect(() => {
|
|
22
|
+
for (let key in props) {
|
|
23
|
+
if (props.hasOwnProperty(key) && mainReference.current.hasOwnProperty(key)) {
|
|
24
|
+
if (props[key] !== mainReference.current[key]) {
|
|
25
|
+
mainReference.current[key] = props[key];
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}, [props])
|
|
30
|
+
|
|
31
|
+
let prop = {
|
|
32
|
+
ref: Ref,
|
|
33
|
+
style: { height: '100%', width: '100%' }
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
return React.createElement("div", prop);
|
|
37
37
|
})
|
package/dist/style.css
CHANGED
|
@@ -1,178 +1,242 @@
|
|
|
1
|
-
.lm-dropdown {
|
|
2
|
-
display: inline-block;
|
|
3
|
-
user-select: none;
|
|
4
|
-
cursor: pointer;
|
|
5
|
-
box-sizing: border-box;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
1
|
+
.lm-dropdown {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
user-select: none;
|
|
4
|
+
cursor: pointer;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
outline-offset: 1px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.lm-dropdown-header {
|
|
10
|
+
display: flex;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.lm-dropdown-header button {
|
|
14
|
+
display: none;
|
|
15
|
+
border: 1px solid transparent;
|
|
16
|
+
background-color: transparent;
|
|
17
|
+
text-transform: uppercase;
|
|
18
|
+
cursor: pointer;
|
|
19
|
+
padding: 15px;
|
|
20
|
+
font-weight: bold;
|
|
21
|
+
outline: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.lm-dropdown .lm-modal {
|
|
25
|
+
padding: 0;
|
|
26
|
+
min-width: initial;
|
|
27
|
+
min-height: 5px;
|
|
28
|
+
border: 1px solid #ccc;
|
|
29
|
+
border-radius: 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.lm-dropdown .lm-lazy {
|
|
33
|
+
max-height: 300px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.lm-dropdown-input {
|
|
37
|
+
padding: 5px 24px 5px 10px;
|
|
38
|
+
align-items: center;
|
|
39
|
+
position: relative;
|
|
40
|
+
white-space: nowrap;
|
|
41
|
+
overflow: hidden;
|
|
42
|
+
text-overflow: ellipsis;
|
|
43
|
+
appearance: none;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
box-sizing: border-box;
|
|
46
|
+
width: 100%;
|
|
47
|
+
background-repeat: no-repeat;
|
|
48
|
+
background-position: top 50% right 0;
|
|
49
|
+
background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
|
|
50
|
+
border: 1px solid #ccc;
|
|
51
|
+
min-height: 1em;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.lm-dropdown-input:empty::before {
|
|
55
|
+
content: "\00a0";
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.lm-dropdown[data-state="true"] .lm-dropdown-input[placeholder]:empty::before {
|
|
59
|
+
content: "\00a0" attr(placeholder);
|
|
60
|
+
color: #aaa;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.lm-dropdown-options {
|
|
64
|
+
width: 100%;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.lm-dropdown-item {
|
|
68
|
+
box-sizing: border-box;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.lm-dropdown-item[data-group]::before {
|
|
72
|
+
content: attr(data-group);
|
|
73
|
+
display: block;
|
|
74
|
+
padding: 8px;
|
|
75
|
+
font-weight: bold;
|
|
76
|
+
width: 100%;
|
|
77
|
+
background-color: #FFF;
|
|
78
|
+
color: #000;
|
|
79
|
+
box-sizing: border-box;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.lm-dropdown-item > div {
|
|
83
|
+
white-space: nowrap;
|
|
84
|
+
text-align: left;
|
|
85
|
+
text-overflow: ellipsis;
|
|
86
|
+
overflow: hidden;
|
|
87
|
+
color: #000;
|
|
88
|
+
display: flex;
|
|
89
|
+
align-items: center;
|
|
90
|
+
padding: 4px 40px 4px 16px;
|
|
91
|
+
position: relative;
|
|
92
|
+
box-sizing: border-box;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.lm-dropdown-item > div > img {
|
|
96
|
+
width: 24px;
|
|
97
|
+
height: 24px;
|
|
98
|
+
margin-left: -6px;
|
|
99
|
+
margin-right: 6px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.lm-dropdown-item > div > img[src=''] {
|
|
103
|
+
display: none;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.lm-dropdown-item > div:hover {
|
|
107
|
+
background-color: dodgerblue !important;
|
|
108
|
+
color: white;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.lm-dropdown-item[data-cursor="true"] > div {
|
|
112
|
+
background-color: #eee;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.lm-dropdown-item[data-cursor="true"]:hover > div {
|
|
116
|
+
background-color: dodgerblue;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.lm-dropdown-item[data-selected="true"] > div {
|
|
120
|
+
background-color: dodgerblue;
|
|
121
|
+
color: white;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.lm-dropdown-item[data-selected="true"] > div::after {
|
|
125
|
+
content: '✓';
|
|
126
|
+
position: absolute;
|
|
127
|
+
right: 10px;
|
|
128
|
+
line-height: 24px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/** Picker */
|
|
132
|
+
|
|
133
|
+
.lm-dropdown[data-type="picker"][data-state="true"] .lm-dropdown-header button {
|
|
134
|
+
display: initial;
|
|
135
|
+
position: absolute;
|
|
136
|
+
border: 1px solid #ccc;
|
|
137
|
+
text-align: right;
|
|
138
|
+
bottom: 300px;
|
|
139
|
+
left: 0;
|
|
140
|
+
width: 100% !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.lm-dropdown[data-type="picker"] .lm-modal {
|
|
144
|
+
position: absolute;
|
|
145
|
+
bottom: 0;
|
|
146
|
+
left: 0;
|
|
147
|
+
width: 100% !important;
|
|
148
|
+
height: 300px !important;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.lm-dropdown[data-type="picker"] .lm-dropdown-item > div {
|
|
152
|
+
border-bottom: solid 1px rgba(0, 0, 0, 0.2);
|
|
153
|
+
text-transform: uppercase;
|
|
154
|
+
font-size: 1.1em;
|
|
155
|
+
padding: 16px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.lm-dropdown[data-type="picker"] .lm-dropdown-item[data-group]::before {
|
|
159
|
+
text-align: center;
|
|
160
|
+
border-bottom: solid 1px rgba(0, 0, 0, 0.2);
|
|
161
|
+
padding: 16px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/** Searchbar */
|
|
165
|
+
|
|
166
|
+
.lm-dropdown[data-type="searchbar"][data-state="true"] {
|
|
167
|
+
position: absolute;
|
|
168
|
+
top: 0;
|
|
169
|
+
left: 0;
|
|
170
|
+
width: 100% !important;
|
|
171
|
+
height: 100% !important;
|
|
172
|
+
display: flex;
|
|
173
|
+
flex-direction: column;
|
|
174
|
+
background-color: #fff;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.lm-dropdown[data-type="searchbar"][data-state="true"] .lm-dropdown-done {
|
|
178
|
+
display: initial;
|
|
179
|
+
border-left: 1px solid #ccc;
|
|
180
|
+
border-bottom: 1px solid #eee;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.lm-dropdown[data-type="searchbar"][data-state="true"] .lm-dropdown-input {
|
|
184
|
+
font-size: 1.5em;
|
|
185
|
+
border-radius: 0;
|
|
186
|
+
border: 0;
|
|
187
|
+
border-bottom: 1px solid #eee;
|
|
188
|
+
outline: none;
|
|
189
|
+
background-color: #fff;
|
|
190
|
+
padding-top: 0;
|
|
191
|
+
padding-bottom: 0;
|
|
192
|
+
line-height: 60px;
|
|
193
|
+
height: 60px;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.lm-dropdown[data-type="searchbar"] .lm-modal {
|
|
197
|
+
max-height: initial;
|
|
198
|
+
bottom: 0;
|
|
199
|
+
width: 100% !important;
|
|
200
|
+
height: calc(100% - 60px) !important;
|
|
201
|
+
border: 0;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.lm-dropdown[data-type="searchbar"] .lm-dropdown-item > div {
|
|
205
|
+
border-bottom: solid 1px rgba(0, 0, 0, 0.2);
|
|
206
|
+
text-transform: uppercase;
|
|
207
|
+
font-size: 1.1em;
|
|
208
|
+
padding: 16px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.lm-dropdown[data-type="searchbar"] .lm-dropdown-item[data-group]::before {
|
|
212
|
+
text-align: center;
|
|
213
|
+
border-bottom: solid 1px rgba(0, 0, 0, 0.2);
|
|
214
|
+
padding: 16px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.lm-dropdown[data-type="searchbar"] .lm-lazy {
|
|
218
|
+
max-height: initial;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/** Lazyloading */
|
|
222
|
+
|
|
223
|
+
.lm-lazy {
|
|
224
|
+
position: relative;
|
|
225
|
+
overflow-y: auto;
|
|
226
|
+
overflow-x: hidden;
|
|
227
|
+
display: flex;
|
|
228
|
+
box-sizing: border-box;
|
|
229
|
+
height: 100%;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.lm-lazy-scroll {
|
|
233
|
+
position: absolute;
|
|
234
|
+
width: 1px;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.lm-lazy-items {
|
|
238
|
+
position: sticky;
|
|
239
|
+
top: 0;
|
|
240
|
+
box-sizing: border-box;
|
|
241
|
+
width: 100%;
|
|
242
|
+
}
|
package/dist/vue.js
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import { h } from 'vue';
|
|
2
|
-
import component from "./index";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export default {
|
|
6
|
-
inheritAttrs: false,
|
|
7
|
-
mounted() {
|
|
8
|
-
let options = {
|
|
9
|
-
...this.$attrs
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
this.el = this.$refs.container;
|
|
13
|
-
|
|
14
|
-
this.current = component(this.$refs.container, options);
|
|
15
|
-
},
|
|
16
|
-
setup() {
|
|
17
|
-
let containerProps = {
|
|
18
|
-
ref: 'container',
|
|
19
|
-
style: {
|
|
20
|
-
width: '100%',
|
|
21
|
-
height: '100%',
|
|
22
|
-
}
|
|
23
|
-
};
|
|
24
|
-
return () => h('div', containerProps);
|
|
25
|
-
},
|
|
26
|
-
watch: {
|
|
27
|
-
$attrs: {
|
|
28
|
-
deep: true,
|
|
29
|
-
handler() {
|
|
30
|
-
this.updateState();
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
methods: {
|
|
35
|
-
updateState() {
|
|
36
|
-
for (let key in this.$attrs) {
|
|
37
|
-
if (this.$attrs.hasOwnProperty(key) && this.current.hasOwnProperty(key)) {
|
|
38
|
-
if (this.$attrs[key] !== this.current[key]) {
|
|
39
|
-
this.current[key] = this.$attrs[key];
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
1
|
+
import { h } from 'vue';
|
|
2
|
+
import component from "./index";
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
inheritAttrs: false,
|
|
7
|
+
mounted() {
|
|
8
|
+
let options = {
|
|
9
|
+
...this.$attrs
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
this.el = this.$refs.container;
|
|
13
|
+
|
|
14
|
+
this.current = component(this.$refs.container, options);
|
|
15
|
+
},
|
|
16
|
+
setup() {
|
|
17
|
+
let containerProps = {
|
|
18
|
+
ref: 'container',
|
|
19
|
+
style: {
|
|
20
|
+
width: '100%',
|
|
21
|
+
height: '100%',
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
return () => h('div', containerProps);
|
|
25
|
+
},
|
|
26
|
+
watch: {
|
|
27
|
+
$attrs: {
|
|
28
|
+
deep: true,
|
|
29
|
+
handler() {
|
|
30
|
+
this.updateState();
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
methods: {
|
|
35
|
+
updateState() {
|
|
36
|
+
for (let key in this.$attrs) {
|
|
37
|
+
if (this.$attrs.hasOwnProperty(key) && this.current.hasOwnProperty(key)) {
|
|
38
|
+
if (this.$attrs[key] !== this.current[key]) {
|
|
39
|
+
this.current[key] = this.$attrs[key];
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
package/package.json
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@lemonadejs/dropdown",
|
|
3
|
-
"title": "LemonadeJS dropdown",
|
|
4
|
-
"description": "LemonadeJS dropdown integration.",
|
|
5
|
-
"author": {
|
|
6
|
-
"name": "Contact <contact@lemonadejs.net>",
|
|
7
|
-
"url": "https://lemonadejs.net"
|
|
8
|
-
},
|
|
9
|
-
"keywords": [
|
|
10
|
-
"javascript dropdown",
|
|
11
|
-
"lemonadejs plugins",
|
|
12
|
-
"js",
|
|
13
|
-
"library",
|
|
14
|
-
"javascript plugins"
|
|
15
|
-
],
|
|
16
|
-
"dependencies": {
|
|
17
|
-
"lemonadejs": "^4.0.
|
|
18
|
-
"@lemonadejs/modal": "2.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@lemonadejs/dropdown",
|
|
3
|
+
"title": "LemonadeJS dropdown",
|
|
4
|
+
"description": "LemonadeJS dropdown integration.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Contact <contact@lemonadejs.net>",
|
|
7
|
+
"url": "https://lemonadejs.net"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"javascript dropdown",
|
|
11
|
+
"lemonadejs plugins",
|
|
12
|
+
"js",
|
|
13
|
+
"library",
|
|
14
|
+
"javascript plugins"
|
|
15
|
+
],
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"lemonadejs": "^4.0.7",
|
|
18
|
+
"@lemonadejs/modal": "^2.4.0"
|
|
19
|
+
},
|
|
20
|
+
"main": "dist/index.js",
|
|
21
|
+
"version": "3.0.9"
|
|
22
|
+
}
|