@semcore/select 16.0.0-prerelease.2 → 16.0.0-prerelease.21
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/CHANGELOG.md +31 -1
- package/lib/cjs/InputSearch.js +8 -4
- package/lib/cjs/InputSearch.js.map +1 -1
- package/lib/cjs/Select.js +4 -2
- package/lib/cjs/Select.js.map +1 -1
- package/lib/es6/InputSearch.js +8 -4
- package/lib/es6/InputSearch.js.map +1 -1
- package/lib/es6/Select.js +4 -2
- package/lib/es6/Select.js.map +1 -1
- package/lib/esm/InputSearch.mjs +106 -83
- package/lib/esm/Select.mjs +297 -228
- package/lib/esm/context.mjs +3 -3
- package/lib/esm/index.mjs +5 -5
- package/lib/esm/style/input-search.shadow.css +20 -0
- package/lib/esm/style/select.shadow.css +94 -0
- package/lib/esm/translations/__intergalactic-dynamic-locales.mjs +30 -30
- package/lib/esm/translations/de.json.mjs +8 -6
- package/lib/esm/translations/en.json.mjs +8 -6
- package/lib/esm/translations/es.json.mjs +8 -6
- package/lib/esm/translations/fr.json.mjs +8 -6
- package/lib/esm/translations/it.json.mjs +8 -6
- package/lib/esm/translations/ja.json.mjs +8 -6
- package/lib/esm/translations/ko.json.mjs +8 -6
- package/lib/esm/translations/nl.json.mjs +8 -6
- package/lib/esm/translations/pl.json.mjs +8 -6
- package/lib/esm/translations/pt.json.mjs +8 -6
- package/lib/esm/translations/sv.json.mjs +8 -6
- package/lib/esm/translations/tr.json.mjs +8 -6
- package/lib/esm/translations/vi.json.mjs +8 -6
- package/lib/esm/translations/zh.json.mjs +8 -6
- package/package.json +12 -12
package/lib/esm/context.mjs
CHANGED
package/lib/esm/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import { default as
|
|
1
|
+
import { default as default2 } from "./InputSearch.mjs";
|
|
2
|
+
import { default as default3, wrapSelect } from "./Select.mjs";
|
|
3
3
|
export {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
default2 as InputSearch,
|
|
5
|
+
default3 as default,
|
|
6
|
+
wrapSelect
|
|
7
7
|
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
SInputSearch[size='m'] {
|
|
2
|
+
height: 32px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
SSearchClear {
|
|
6
|
+
padding: 0 var(--intergalactic-spacing-2x, 8px);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
SSearchClear[hide] {
|
|
10
|
+
visibility: hidden;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/* Style for Input */
|
|
14
|
+
SOutline {
|
|
15
|
+
top: -1px;
|
|
16
|
+
left: -1px;
|
|
17
|
+
width: 100%;
|
|
18
|
+
border-radius: var(--intergalactic-control-rounded, 6px) var(--intergalactic-control-rounded, 6px) 0 0;
|
|
19
|
+
box-sizing: content-box;
|
|
20
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
SOptionCheckbox {
|
|
2
|
+
margin-top: var(--intergalactic-spacing-05x, 2px);
|
|
3
|
+
margin-right: var(--intergalactic-spacing-2x, 8px);
|
|
4
|
+
margin-bottom: auto;
|
|
5
|
+
position: relative;
|
|
6
|
+
flex-shrink: 0;
|
|
7
|
+
|
|
8
|
+
&::before {
|
|
9
|
+
content: '';
|
|
10
|
+
position: absolute;
|
|
11
|
+
top: 0;
|
|
12
|
+
left: 0;
|
|
13
|
+
right: 0;
|
|
14
|
+
bottom: 0;
|
|
15
|
+
background: var(--intergalactic-bg-primary-neutral, #ffffff);
|
|
16
|
+
border: 1px solid;
|
|
17
|
+
border-radius: var(--intergalactic-addon-rounded, 4px);
|
|
18
|
+
border-color: var(--intergalactic-border-primary, #c4c7cf);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
width: 16px;
|
|
22
|
+
height: 16px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
SOptionCheckbox::after {
|
|
26
|
+
content: '';
|
|
27
|
+
position: absolute;
|
|
28
|
+
top: 0;
|
|
29
|
+
left: 0;
|
|
30
|
+
right: 0;
|
|
31
|
+
bottom: 0;
|
|
32
|
+
margin: 0 var(--intergalactic-spacing-05x, 2px);
|
|
33
|
+
background-repeat: no-repeat;
|
|
34
|
+
background-position: center center;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
SOptionCheckbox[selected]::after {
|
|
38
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEwIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04LjI1IDFMNCA1LjI1TDEuNzUgMyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==');
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
SOptionCheckbox[size='l'] {
|
|
42
|
+
width: 20px;
|
|
43
|
+
height: 20px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
SOptionCheckbox[size='l'][selected]::after {
|
|
47
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMSAxLjVMNC43NSA3Ljc1TDEgNCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==');
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
SOptionCheckbox[selected]:before {
|
|
51
|
+
background-color: var(--intergalactic-control-primary-info, #008ff8);
|
|
52
|
+
border-color: var(--intergalactic-control-primary-info, #008ff8);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
SOptionCheckbox[indeterminate]:before {
|
|
56
|
+
background-color: var(--intergalactic-control-primary-info, #008ff8);
|
|
57
|
+
border-color: var(--intergalactic-control-primary-info, #008ff8);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
SOptionCheckbox[theme]:before {
|
|
61
|
+
border-color: var(--theme);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
SOptionCheckbox[theme][selected]:before,
|
|
65
|
+
SOptionCheckbox[theme][indeterminate]:before {
|
|
66
|
+
background-color: var(--theme);
|
|
67
|
+
border-color: var(--theme);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
SOptionCheckbox[selected] {
|
|
71
|
+
background-color: var(--intergalactic-dropdown-menu-item-selected, rgba(196, 229, 254, 0.7));
|
|
72
|
+
|
|
73
|
+
&:hover {
|
|
74
|
+
background-color: var(--intergalactic-dropdown-menu-item-selected-hover, #c4e5fe);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
SOptionCheckbox[indeterminate]:after {
|
|
79
|
+
background-color: #ffffff;
|
|
80
|
+
background-image: none;
|
|
81
|
+
margin: auto;
|
|
82
|
+
/* disable-tokens-validator */
|
|
83
|
+
border-radius: 1px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
SOptionCheckbox[indeterminate][size='l']:after {
|
|
87
|
+
width: 12px;
|
|
88
|
+
height: 2px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
SOptionCheckbox[indeterminate][size='m']:after {
|
|
92
|
+
width: 8px;
|
|
93
|
+
height: 2px;
|
|
94
|
+
}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
var
|
|
16
|
-
de
|
|
17
|
-
en
|
|
18
|
-
es
|
|
19
|
-
fr
|
|
20
|
-
it
|
|
21
|
-
ja
|
|
22
|
-
ko
|
|
23
|
-
nl
|
|
24
|
-
pt
|
|
25
|
-
tr
|
|
26
|
-
vi
|
|
27
|
-
zh
|
|
28
|
-
pl
|
|
29
|
-
sv
|
|
1
|
+
import de from "./de.json.mjs";
|
|
2
|
+
import en from "./en.json.mjs";
|
|
3
|
+
import es from "./es.json.mjs";
|
|
4
|
+
import fr from "./fr.json.mjs";
|
|
5
|
+
import it from "./it.json.mjs";
|
|
6
|
+
import ja from "./ja.json.mjs";
|
|
7
|
+
import ko from "./ko.json.mjs";
|
|
8
|
+
import nl from "./nl.json.mjs";
|
|
9
|
+
import pt from "./pt.json.mjs";
|
|
10
|
+
import tr from "./tr.json.mjs";
|
|
11
|
+
import vi from "./vi.json.mjs";
|
|
12
|
+
import zh from "./zh.json.mjs";
|
|
13
|
+
import pl from "./pl.json.mjs";
|
|
14
|
+
import sv from "./sv.json.mjs";
|
|
15
|
+
var localizedMessages = {
|
|
16
|
+
de,
|
|
17
|
+
en,
|
|
18
|
+
es,
|
|
19
|
+
fr,
|
|
20
|
+
it,
|
|
21
|
+
ja,
|
|
22
|
+
ko,
|
|
23
|
+
nl,
|
|
24
|
+
pt,
|
|
25
|
+
tr,
|
|
26
|
+
vi,
|
|
27
|
+
zh,
|
|
28
|
+
pl,
|
|
29
|
+
sv
|
|
30
30
|
};
|
|
31
31
|
export {
|
|
32
|
-
|
|
32
|
+
localizedMessages
|
|
33
33
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Suchfeld leeren";
|
|
2
|
+
const selectPlaceholder = "Option auswählen";
|
|
3
|
+
const de = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Suche",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Suche"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
de as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Clear search field";
|
|
2
|
+
const selectPlaceholder = "Select option";
|
|
3
|
+
const en = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Search",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Search"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
en as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Borrar campo de búsqueda";
|
|
2
|
+
const selectPlaceholder = "Seleccionar opción";
|
|
3
|
+
const es = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Búsqueda",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Búsqueda"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
es as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Effacer le champ de recherche";
|
|
2
|
+
const selectPlaceholder = "Sélectionner une option";
|
|
3
|
+
const fr = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Recherche",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Recherche"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
fr as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Svuota il campo di ricerca";
|
|
2
|
+
const selectPlaceholder = "Seleziona opzione";
|
|
3
|
+
const it = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Ricerca",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Ricerca"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
it as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "サーチフィールドをクリア";
|
|
2
|
+
const selectPlaceholder = "オプションを選択";
|
|
3
|
+
const ja = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "検索",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "検索"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
ja as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "검색란 지우기";
|
|
2
|
+
const selectPlaceholder = "옵션 선택";
|
|
3
|
+
const ko = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "검색",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "검색"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
ko as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Wis zoekveld";
|
|
2
|
+
const selectPlaceholder = "Selecteer optie";
|
|
3
|
+
const nl = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Zoeken",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Zoeken"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
nl as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Wyczyść pole wyszukiwania";
|
|
2
|
+
const selectPlaceholder = "Wybierz opcję";
|
|
3
|
+
const pl = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Wyszukaj",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Wyszukaj"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
pl as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Limpar campo de pesquisa";
|
|
2
|
+
const selectPlaceholder = "Selecione a opção";
|
|
3
|
+
const pt = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Pesquisar",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Pesquisar"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
pt as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Rensa sökfält";
|
|
2
|
+
const selectPlaceholder = "Välj alternativ";
|
|
3
|
+
const sv = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Sök",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Sök"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
sv as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Arama alanını temizle";
|
|
2
|
+
const selectPlaceholder = "Seçeneği seçin";
|
|
3
|
+
const tr = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Ara",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Ara"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
tr as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "Xoá trường tìm kiếm";
|
|
2
|
+
const selectPlaceholder = "Chọn tùy chọn";
|
|
3
|
+
const vi = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "Tìm kiếm",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "Tìm kiếm"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
vi as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
const clearSearch = "清除搜索字段";
|
|
2
|
+
const selectPlaceholder = "选择选项";
|
|
3
|
+
const zh = {
|
|
4
|
+
clearSearch,
|
|
5
|
+
selectPlaceholder,
|
|
4
6
|
"Select.InputSearch.Value:placeholder": "搜索",
|
|
5
7
|
"Select.InputSearch.Value:aria-label": "搜索"
|
|
6
8
|
};
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
clearSearch,
|
|
11
|
+
zh as default,
|
|
12
|
+
selectPlaceholder
|
|
11
13
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/select",
|
|
3
3
|
"description": "Semrush Select Component",
|
|
4
|
-
"version": "16.0.0-prerelease.
|
|
4
|
+
"version": "16.0.0-prerelease.21",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es6/index.js",
|
|
7
7
|
"typings": "lib/types/index.d.ts",
|
|
@@ -13,20 +13,20 @@
|
|
|
13
13
|
"types": "./lib/types/index.d.ts"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@semcore/base-trigger": "16.0.0-prerelease.
|
|
17
|
-
"@semcore/button": "16.0.0-prerelease.
|
|
18
|
-
"@semcore/checkbox": "16.0.0-prerelease.
|
|
19
|
-
"@semcore/divider": "16.0.0-prerelease.
|
|
20
|
-
"@semcore/dropdown-menu": "16.0.0-prerelease.
|
|
21
|
-
"@semcore/dropdown": "16.0.0-prerelease.
|
|
22
|
-
"@semcore/icon": "16.0.0-prerelease.
|
|
23
|
-
"@semcore/input": "16.0.0-prerelease.
|
|
24
|
-
"@semcore/popper": "16.0.0-prerelease.
|
|
25
|
-
"@semcore/flex-box": "16.0.0-prerelease.
|
|
16
|
+
"@semcore/base-trigger": "16.0.0-prerelease.21",
|
|
17
|
+
"@semcore/button": "16.0.0-prerelease.21",
|
|
18
|
+
"@semcore/checkbox": "16.0.0-prerelease.21",
|
|
19
|
+
"@semcore/divider": "16.0.0-prerelease.21",
|
|
20
|
+
"@semcore/dropdown-menu": "16.0.0-prerelease.21",
|
|
21
|
+
"@semcore/dropdown": "16.0.0-prerelease.21",
|
|
22
|
+
"@semcore/icon": "16.0.0-prerelease.21",
|
|
23
|
+
"@semcore/input": "16.0.0-prerelease.21",
|
|
24
|
+
"@semcore/popper": "16.0.0-prerelease.21",
|
|
25
|
+
"@semcore/flex-box": "16.0.0-prerelease.21",
|
|
26
26
|
"classnames": "2.2.6"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@semcore/base-components": "^16.0.0-prerelease.
|
|
29
|
+
"@semcore/base-components": "^16.0.0-prerelease.21"
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|