indicator-ui 0.0.90 → 0.0.91
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.css +74 -201
- package/dist/index.css.map +1 -1
- package/dist/index.js +24 -17
- package/dist/index.js.map +1 -1
- package/dist/scss/styles/mixins/centerInsideContent.scss +5 -3
- package/dist/scss/styles/mixins/fnt.scss +0 -1
- package/dist/scss/ui/InputFields/FlexField/styles/mixins/flexField.scss +2 -2
- package/dist/scss/ui/InputFields/InputFieldWrapper/styles/mixins/inputFieldWrapper.scss +0 -1
- package/dist/scss/ui/InputFields/SelectField/styles/mixins/selectField.scss +12 -11
- package/dist/types/src/test/pages/PaginationPage.d.ts +1 -0
- package/dist/types/src/test/pages/index.d.ts +1 -0
- package/dist/types/src/ui/PaginationBar/types/PageSwitcherTypes.d.ts +1 -0
- package/dist/types/src/ui/PaginationBar/types/PaginationBarTypes.d.ts +1 -0
- package/dist/types/src/ui/PaginationBar/ui/PageSwitcher.d.ts +1 -1
- package/dist/types/src/ui/PaginationBar/ui/PaginationBar.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
height: fit-content;
|
|
7
7
|
min-width: 0;
|
|
8
8
|
|
|
9
|
-
@include centerInsideContent();
|
|
10
|
-
|
|
11
9
|
padding: 10px 12px;
|
|
12
10
|
border-radius: 8px;
|
|
13
11
|
gap: 12px;
|
|
@@ -16,6 +14,8 @@
|
|
|
16
14
|
box-shadow: 0 1px 2px 0 #1018280D;
|
|
17
15
|
box-sizing: border-box;
|
|
18
16
|
|
|
17
|
+
@include centerInsideContent();
|
|
18
|
+
|
|
19
19
|
.inputField {
|
|
20
20
|
flex: 1;
|
|
21
21
|
min-width: 0; // Важное свойство, чтобы flexbox учитывал минимальное сжатие
|
|
@@ -6,15 +6,14 @@
|
|
|
6
6
|
width: 100%;
|
|
7
7
|
position: relative;
|
|
8
8
|
|
|
9
|
-
@include FlexField.insertFlexField();
|
|
10
|
-
|
|
11
9
|
.modalWindow {
|
|
12
10
|
width: 100%;
|
|
13
11
|
position: absolute;
|
|
14
12
|
z-index: 1;
|
|
15
13
|
|
|
16
14
|
.selectModalWindow {
|
|
17
|
-
|
|
15
|
+
animation: show-animation ease-out forwards 200ms;
|
|
16
|
+
|
|
18
17
|
width: 100%;
|
|
19
18
|
height: fit-content;
|
|
20
19
|
max-height: 300px;
|
|
@@ -34,12 +33,11 @@
|
|
|
34
33
|
.selectFieldOptionsItem {
|
|
35
34
|
width: 100%;
|
|
36
35
|
height: fit-content;
|
|
37
|
-
|
|
38
|
-
@include centerInsideContent();
|
|
39
|
-
|
|
40
36
|
gap: 8px;
|
|
41
37
|
padding: 10px 16px;
|
|
42
38
|
|
|
39
|
+
@include centerInsideContent();
|
|
40
|
+
|
|
43
41
|
.label {
|
|
44
42
|
flex: 1;
|
|
45
43
|
text-align: left;
|
|
@@ -52,12 +50,15 @@
|
|
|
52
50
|
}
|
|
53
51
|
}
|
|
54
52
|
}
|
|
55
|
-
|
|
56
|
-
&.show {
|
|
57
|
-
opacity: 1;
|
|
58
|
-
}
|
|
59
53
|
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
60
56
|
|
|
61
|
-
|
|
57
|
+
@keyframes show-animation {
|
|
58
|
+
from {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
}
|
|
61
|
+
to {
|
|
62
|
+
opacity: 1;
|
|
62
63
|
}
|
|
63
64
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function PaginationPage(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { PageSwitcherPropsType } from "../types";
|
|
2
|
-
export declare function PageSwitcher({ curPage, numPage, next, prev, onChange, }: PageSwitcherPropsType): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare function PageSwitcher({ curPage, numPage, next, prev, onChange, smallVersion, }: PageSwitcherPropsType): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { PaginationBarPropsType } from "../types";
|
|
2
|
-
export declare function PaginationBar({ numPage, getCurPage, nextPage, changePage, prevPage, loadMore, canLoadMore, loadMoreButton }: PaginationBarPropsType): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare function PaginationBar({ numPage, getCurPage, nextPage, changePage, prevPage, loadMore, canLoadMore, loadMoreButton, smallVersion, }: PaginationBarPropsType): import("react/jsx-runtime").JSX.Element;
|