@morozeckiy/dd-lib 0.2.22 → 0.2.26
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/assets/images/png/404-d.png +0 -0
- package/assets/images/png/404.png +0 -0
- package/assets/images/png/error-page-d.png +0 -0
- package/assets/images/png/error-page.png +0 -0
- package/assets/images/png/iphone.png +0 -0
- package/assets/images/png/not-found-d.png +0 -0
- package/assets/images/png/not-found.png +0 -0
- package/assets/images/png/tech-works-d.png +0 -0
- package/assets/images/png/tech-works.png +0 -0
- package/assets/scss/common.scss +83 -0
- package/assets/scss/theme.scss +40 -0
- package/assets/scss/titles.scss +20 -1
- package/assets/scss/vars-dark.scss +1 -1
- package/esm2022/lib/components/data-empty/data-empty.component.mjs +3 -3
- package/esm2022/lib/components/error-page/error-page.component.mjs +3 -3
- package/esm2022/lib/components/main-shared/main-shared.component.mjs +6 -14
- package/esm2022/lib/components/not-found/not-found.component.mjs +3 -3
- package/esm2022/lib/components/tech-works/tech-works.component.mjs +3 -3
- package/esm2022/lib/core/dialog/modal-base/modal-common.component.mjs +1 -1
- package/esm2022/lib/core/services/date.service.mjs +1 -1
- package/esm2022/lib/core/toast/toast-base/toast-base.component.mjs +3 -3
- package/esm2022/lib/lib-calendar/lib-calendar.component.mjs +3 -3
- package/esm2022/lib/lib-filter/lib-filter.component.mjs +3 -3
- package/esm2022/lib/lib-search-input/lib-search-input.component.mjs +78 -3
- package/esm2022/lib/lib-select/lib-select.component.mjs +2 -2
- package/fesm2022/morozeckiy-dd-lib.mjs +97 -27
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/lib/components/main-shared/main-shared.component.d.ts +0 -6
- package/lib/core/services/validators.service.d.ts +2 -2
- package/lib/lib-search-input/lib-search-input.component.d.ts +74 -5
- package/morozeckiy-dd-lib-0.2.25.tgz +0 -0
- package/morozeckiy-dd-lib-0.2.26.tgz +0 -0
- package/package.json +1 -1
- package/assets/images/png/error-bage.png +0 -0
- package/morozeckiy-dd-lib-0.2.22.tgz +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/assets/scss/common.scss
CHANGED
|
@@ -48,10 +48,81 @@ html {
|
|
|
48
48
|
-webkit-backdrop-filter: blur(10px);
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
.g-table {
|
|
52
|
+
border: 1px solid var(--gray-color-200);
|
|
53
|
+
border-radius: 24px;
|
|
54
|
+
overflow: hidden;
|
|
55
|
+
|
|
56
|
+
@include below($tablet) {
|
|
57
|
+
border: none;
|
|
58
|
+
border-radius: 0;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&__body {
|
|
62
|
+
overflow: auto;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&__header,
|
|
66
|
+
&__item {
|
|
67
|
+
display: flex;
|
|
68
|
+
padding: 12px 20px;
|
|
69
|
+
font-size: 14px;
|
|
70
|
+
line-height: 24px;
|
|
71
|
+
color: var(--light-black-color);
|
|
72
|
+
|
|
73
|
+
&:not(:last-child) {
|
|
74
|
+
border-bottom: 1px solid var(--gray-color-200);
|
|
75
|
+
|
|
76
|
+
@include below($tablet) {
|
|
77
|
+
margin-bottom: 16px;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
@include below($tablet) {
|
|
82
|
+
position: relative;
|
|
83
|
+
display: block;
|
|
84
|
+
padding: 16px;
|
|
85
|
+
border-radius: 24px;
|
|
86
|
+
border: 1px solid var(--disabled-bgc);
|
|
87
|
+
background-color: var(--gray-color-300);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
&__header {
|
|
92
|
+
color: var(--second-gray-color);
|
|
93
|
+
background-color: var(--gray-bgc-2);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
&__cell {
|
|
97
|
+
&.numb {
|
|
98
|
+
width: 5%;
|
|
99
|
+
|
|
100
|
+
@include below($tablet) {
|
|
101
|
+
display: inline-flex;
|
|
102
|
+
margin-bottom: 8px;
|
|
103
|
+
padding: 0 8px;
|
|
104
|
+
border-radius: 10px;
|
|
105
|
+
width: auto;
|
|
106
|
+
height: 32px;
|
|
107
|
+
line-height: 32px;
|
|
108
|
+
background-color: var(--disabled-color);
|
|
109
|
+
color: var(--white-color);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
51
115
|
.no-wrap-text {
|
|
52
116
|
white-space: nowrap;
|
|
53
117
|
}
|
|
54
118
|
|
|
119
|
+
.ellipsis-text {
|
|
120
|
+
display: -webkit-box;
|
|
121
|
+
-webkit-line-clamp: 1;
|
|
122
|
+
-webkit-box-orient: vertical;
|
|
123
|
+
overflow: hidden;
|
|
124
|
+
}
|
|
125
|
+
|
|
55
126
|
.full-width {
|
|
56
127
|
width: 100%;
|
|
57
128
|
}
|
|
@@ -169,6 +240,18 @@ html {
|
|
|
169
240
|
cursor: auto;
|
|
170
241
|
}
|
|
171
242
|
|
|
243
|
+
.bg-contain {
|
|
244
|
+
background-size: contain;
|
|
245
|
+
background-repeat: no-repeat;
|
|
246
|
+
background-position: center;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.bg-cover {
|
|
250
|
+
background-size: cover;
|
|
251
|
+
background-repeat: no-repeat;
|
|
252
|
+
background-position: center;
|
|
253
|
+
}
|
|
254
|
+
|
|
172
255
|
.empty-photo {
|
|
173
256
|
background: url('../images/svg/user-empty.svg') no-repeat center;
|
|
174
257
|
width: 100px;
|
package/assets/scss/theme.scss
CHANGED
|
@@ -12,6 +12,26 @@
|
|
|
12
12
|
.user-empty-bg {
|
|
13
13
|
background-image: url('../../assets/images/svg/user-empty.svg');
|
|
14
14
|
}
|
|
15
|
+
|
|
16
|
+
.not-found-bg {
|
|
17
|
+
background-image: url('../../assets/images/png/not-found.png');
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.page-404-bg {
|
|
21
|
+
background-image: url('../../assets/images/png/404.png');
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.error-page-bg {
|
|
25
|
+
background-image: url('../../assets/images/png/error-page.png');
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.tech-works-bg {
|
|
29
|
+
background-image: url('../../assets/images/png/tech-works.png');
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.iphone-bg {
|
|
33
|
+
background-image: url('../../assets/images/png/iphone.png');
|
|
34
|
+
}
|
|
15
35
|
}
|
|
16
36
|
|
|
17
37
|
.theme-dark {
|
|
@@ -24,5 +44,25 @@
|
|
|
24
44
|
.user-empty-bg {
|
|
25
45
|
background-image: url('../../assets/images/svg/user-empty-d.svg');
|
|
26
46
|
}
|
|
47
|
+
|
|
48
|
+
.not-found-bg {
|
|
49
|
+
background-image: url('../../assets/images/png/not-found-d.png');
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.page-404-bg {
|
|
53
|
+
background-image: url('../../assets/images/png/404-d.png');
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.error-page-bg {
|
|
57
|
+
background-image: url('../../assets/images/png/error-page-d.png');
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.tech-works-bg {
|
|
61
|
+
background-image: url('../../assets/images/png/tech-works-d.png');
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.iphone-bg {
|
|
65
|
+
background-image: url('../../assets/images/png/iphone.png');
|
|
66
|
+
}
|
|
27
67
|
}
|
|
28
68
|
}
|
package/assets/scss/titles.scss
CHANGED
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
font-size: 40px;
|
|
7
7
|
line-height: 60px;
|
|
8
8
|
color: var(--light-black-color);
|
|
9
|
+
|
|
10
|
+
@include below($mobile) {
|
|
11
|
+
font-size: 24px;
|
|
12
|
+
line-height: 32px;
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
|
|
11
16
|
.g-h2-title {
|
|
@@ -46,12 +51,18 @@
|
|
|
46
51
|
color: var(--light-black-color);
|
|
47
52
|
}
|
|
48
53
|
|
|
49
|
-
.g-text
|
|
54
|
+
.g-text,
|
|
55
|
+
.g-text-sm {
|
|
56
|
+
font-weight: 400;
|
|
50
57
|
font-size: 16px;
|
|
51
58
|
line-height: 24px;
|
|
52
59
|
color: var(--font-light-black-color);
|
|
53
60
|
}
|
|
54
61
|
|
|
62
|
+
.g-text-sm {
|
|
63
|
+
font-size: 14px;
|
|
64
|
+
}
|
|
65
|
+
|
|
55
66
|
.h1-title {
|
|
56
67
|
font-size: 40px;
|
|
57
68
|
font-weight: 700;
|
|
@@ -172,6 +183,10 @@
|
|
|
172
183
|
letter-spacing: 0;
|
|
173
184
|
}
|
|
174
185
|
|
|
186
|
+
.font-regular {
|
|
187
|
+
font-weight: 400;
|
|
188
|
+
}
|
|
189
|
+
|
|
175
190
|
.font-medium {
|
|
176
191
|
font-weight: 500;
|
|
177
192
|
}
|
|
@@ -184,6 +199,10 @@
|
|
|
184
199
|
color: var(--dark-color);
|
|
185
200
|
}
|
|
186
201
|
|
|
202
|
+
.black {
|
|
203
|
+
color: var(--light-black-color);
|
|
204
|
+
}
|
|
205
|
+
|
|
187
206
|
.light-black {
|
|
188
207
|
color: var(--font-light-black-color);
|
|
189
208
|
}
|