@morozeckiy/dd-lib 0.2.22 → 0.2.25
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/theme.scss +40 -0
- package/assets/scss/titles.scss +9 -0
- 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 +3 -3
- 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/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 +90 -15
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/lib/lib-search-input/lib-search-input.component.d.ts +74 -5
- package/morozeckiy-dd-lib-0.2.25.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/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 {
|
|
@@ -172,6 +177,10 @@
|
|
|
172
177
|
letter-spacing: 0;
|
|
173
178
|
}
|
|
174
179
|
|
|
180
|
+
.font-regular {
|
|
181
|
+
font-weight: 400;
|
|
182
|
+
}
|
|
183
|
+
|
|
175
184
|
.font-medium {
|
|
176
185
|
font-weight: 500;
|
|
177
186
|
}
|