@morozeckiy/dd-lib 0.1.34 → 0.1.35
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/README.md +11 -6
- package/assets/images/svg/filter.svg +11 -0
- package/assets/images/svg/plus.svg +4 -0
- package/assets/scss/common.scss +41 -1
- package/assets/scss/titles.scss +6 -3
- package/assets/scss/vars-dark.scss +1 -1
- package/esm2022/lib/lib-card/lib-card.component.mjs +3 -3
- package/esm2022/lib/lib-sort/lib-sort.component.mjs +3 -3
- package/esm2022/lib/svg-icons/svg-icon.model.mjs +11 -1
- package/fesm2022/morozeckiy-dd-lib.mjs +17 -5
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/lib/svg-icons/svg-icon.model.d.ts +15 -1
- package/{morozeckiy-dd-lib-0.1.34.tgz → morozeckiy-dd-lib-0.1.35.tgz} +0 -0
- package/package.json +1 -1
|
@@ -74,6 +74,10 @@ export declare const svgIconEye: {
|
|
|
74
74
|
name: 'eye';
|
|
75
75
|
data: string;
|
|
76
76
|
};
|
|
77
|
+
export declare const svgIconFilter: {
|
|
78
|
+
name: 'filter';
|
|
79
|
+
data: string;
|
|
80
|
+
};
|
|
77
81
|
export declare const svgIconGoogleapp: {
|
|
78
82
|
name: 'googleapp';
|
|
79
83
|
data: string;
|
|
@@ -106,6 +110,10 @@ export declare const svgIconPlug: {
|
|
|
106
110
|
name: 'plug';
|
|
107
111
|
data: string;
|
|
108
112
|
};
|
|
113
|
+
export declare const svgIconPlus: {
|
|
114
|
+
name: 'plus';
|
|
115
|
+
data: string;
|
|
116
|
+
};
|
|
109
117
|
export declare const svgIconPrev: {
|
|
110
118
|
name: 'prev';
|
|
111
119
|
data: string;
|
|
@@ -170,7 +178,7 @@ export declare const svgIconVk: {
|
|
|
170
178
|
name: 'vk';
|
|
171
179
|
data: string;
|
|
172
180
|
};
|
|
173
|
-
export type svgIcon = '404' | 'actogone_accept' | 'all' | 'appgalery' | 'appstore' | 'arrow_down_red' | 'arrow_up_green' | 'back_arrow' | 'calendar' | 'check_green' | 'check_white' | 'clear' | 'close' | 'dobrodel' | 'down_chevron' | 'entry' | 'error_hint' | 'eye_off' | 'eye' | 'googleapp' | 'left_chevron' | 'mail_exclamation' | 'mobilr_qr' | 'next' | 'not_found' | 'plug_d' | 'plug' | 'prev' | 'question_white_g' | 'question' | 'red_close' | 'right_chevron' | 'rustore' | 'search' | 'send' | 'shared_logo' | 'small_round_loader' | 'sort' | 'star' | 'tg' | 'trash' | 'user_empty' | 'vk';
|
|
181
|
+
export type svgIcon = '404' | 'actogone_accept' | 'all' | 'appgalery' | 'appstore' | 'arrow_down_red' | 'arrow_up_green' | 'back_arrow' | 'calendar' | 'check_green' | 'check_white' | 'clear' | 'close' | 'dobrodel' | 'down_chevron' | 'entry' | 'error_hint' | 'eye_off' | 'eye' | 'filter' | 'googleapp' | 'left_chevron' | 'mail_exclamation' | 'mobilr_qr' | 'next' | 'not_found' | 'plug_d' | 'plug' | 'plus' | 'prev' | 'question_white_g' | 'question' | 'red_close' | 'right_chevron' | 'rustore' | 'search' | 'send' | 'shared_logo' | 'small_round_loader' | 'sort' | 'star' | 'tg' | 'trash' | 'user_empty' | 'vk';
|
|
174
182
|
export interface SvgIcon {
|
|
175
183
|
name: svgIcon;
|
|
176
184
|
data: string;
|
|
@@ -233,6 +241,9 @@ export declare const completeIconSet: ({
|
|
|
233
241
|
} | {
|
|
234
242
|
name: 'eye';
|
|
235
243
|
data: string;
|
|
244
|
+
} | {
|
|
245
|
+
name: 'filter';
|
|
246
|
+
data: string;
|
|
236
247
|
} | {
|
|
237
248
|
name: 'googleapp';
|
|
238
249
|
data: string;
|
|
@@ -257,6 +268,9 @@ export declare const completeIconSet: ({
|
|
|
257
268
|
} | {
|
|
258
269
|
name: 'plug';
|
|
259
270
|
data: string;
|
|
271
|
+
} | {
|
|
272
|
+
name: 'plus';
|
|
273
|
+
data: string;
|
|
260
274
|
} | {
|
|
261
275
|
name: 'prev';
|
|
262
276
|
data: string;
|
|
Binary file
|