@libs-ui/services-config-project 0.2.306-4 → 0.2.307-0
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/config-project-data.d.ts +52 -24
- package/config-project.interface.d.ts +0 -30
- package/config-project.service.d.ts +1 -1
- package/esm2022/config-project-data.mjs +332 -332
- package/esm2022/config-project.interface.mjs +1 -5
- package/esm2022/config-project.service.mjs +20 -18
- package/esm2022/index.mjs +1 -1
- package/fesm2022/libs-ui-services-config-project.mjs +339 -342
- package/fesm2022/libs-ui-services-config-project.mjs.map +1 -1
- package/package.json +2 -2
package/config-project-data.d.ts
CHANGED
|
@@ -1,15 +1,43 @@
|
|
|
1
|
-
import { IColorButtonTab,
|
|
1
|
+
import { IColorButtonTab, ILibsUiConfigButtonStatus, ILibsUiConfigButtonTab, ILibsUiConfigFontHeading } from './config-project.interface';
|
|
2
2
|
export declare const fontConfig: {
|
|
3
3
|
name: string;
|
|
4
4
|
uri_regular: string;
|
|
5
5
|
uri_medium: string;
|
|
6
6
|
uri_semibold: string;
|
|
7
7
|
};
|
|
8
|
-
export declare const weights:
|
|
8
|
+
export declare const weights: {
|
|
9
|
+
uri_regular: string;
|
|
10
|
+
uri_medium: string;
|
|
11
|
+
uri_semibold: string;
|
|
12
|
+
uri_bold: string;
|
|
13
|
+
};
|
|
9
14
|
export declare const configHeading: ILibsUiConfigFontHeading;
|
|
10
|
-
export declare const sizeButtonConfig: () =>
|
|
15
|
+
export declare const sizeButtonConfig: () => {
|
|
16
|
+
icon: {
|
|
17
|
+
large: string;
|
|
18
|
+
medium: string;
|
|
19
|
+
small: string;
|
|
20
|
+
smaller: string;
|
|
21
|
+
};
|
|
22
|
+
large: {
|
|
23
|
+
font_size: string;
|
|
24
|
+
line_height: string;
|
|
25
|
+
};
|
|
26
|
+
medium: {
|
|
27
|
+
font_size: string;
|
|
28
|
+
line_height: string;
|
|
29
|
+
};
|
|
30
|
+
small: {
|
|
31
|
+
font_size: string;
|
|
32
|
+
line_height: string;
|
|
33
|
+
};
|
|
34
|
+
smaller: {
|
|
35
|
+
font_size: string;
|
|
36
|
+
line_height: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
11
39
|
export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
12
|
-
|
|
40
|
+
'button-primary': {
|
|
13
41
|
configStepColor: {
|
|
14
42
|
text: string;
|
|
15
43
|
text_hover: string;
|
|
@@ -26,7 +54,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
26
54
|
};
|
|
27
55
|
rootColor: string;
|
|
28
56
|
};
|
|
29
|
-
|
|
57
|
+
'button-primary-revert': {
|
|
30
58
|
configStepColor: {
|
|
31
59
|
text: number;
|
|
32
60
|
text_hover: string;
|
|
@@ -43,7 +71,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
43
71
|
};
|
|
44
72
|
rootColor: string;
|
|
45
73
|
};
|
|
46
|
-
|
|
74
|
+
'button-secondary': {
|
|
47
75
|
configStepColor: {
|
|
48
76
|
text: number;
|
|
49
77
|
text_hover: number;
|
|
@@ -60,7 +88,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
60
88
|
};
|
|
61
89
|
rootColor: string;
|
|
62
90
|
};
|
|
63
|
-
|
|
91
|
+
'button-third': {
|
|
64
92
|
configStepColor: {
|
|
65
93
|
text: string;
|
|
66
94
|
text_hover: number;
|
|
@@ -77,7 +105,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
77
105
|
};
|
|
78
106
|
rootColor: string;
|
|
79
107
|
};
|
|
80
|
-
|
|
108
|
+
'button-secondary-red': {
|
|
81
109
|
configStepColor: {
|
|
82
110
|
text: number;
|
|
83
111
|
text_hover: number;
|
|
@@ -94,7 +122,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
94
122
|
};
|
|
95
123
|
rootColor: string;
|
|
96
124
|
};
|
|
97
|
-
|
|
125
|
+
'button-outline': {
|
|
98
126
|
configStepColor: {
|
|
99
127
|
text: string;
|
|
100
128
|
text_hover: number;
|
|
@@ -111,7 +139,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
111
139
|
};
|
|
112
140
|
rootColor: string;
|
|
113
141
|
};
|
|
114
|
-
|
|
142
|
+
'button-danger-high': {
|
|
115
143
|
configStepColor: {
|
|
116
144
|
text: string;
|
|
117
145
|
text_hover: string;
|
|
@@ -128,7 +156,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
128
156
|
};
|
|
129
157
|
rootColor: string;
|
|
130
158
|
};
|
|
131
|
-
|
|
159
|
+
'button-danger-low': {
|
|
132
160
|
configStepColor: {
|
|
133
161
|
text: string;
|
|
134
162
|
text_hover: string;
|
|
@@ -145,7 +173,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
145
173
|
};
|
|
146
174
|
rootColor: string;
|
|
147
175
|
};
|
|
148
|
-
|
|
176
|
+
'button-green': {
|
|
149
177
|
configStepColor: {
|
|
150
178
|
text: string;
|
|
151
179
|
text_hover: string;
|
|
@@ -162,7 +190,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
162
190
|
};
|
|
163
191
|
rootColor: string;
|
|
164
192
|
};
|
|
165
|
-
|
|
193
|
+
'button-violet': {
|
|
166
194
|
configStepColor: {
|
|
167
195
|
text: string;
|
|
168
196
|
text_hover: string;
|
|
@@ -179,7 +207,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
179
207
|
};
|
|
180
208
|
rootColor: string;
|
|
181
209
|
};
|
|
182
|
-
|
|
210
|
+
'button-outline-green': {
|
|
183
211
|
configStepColor: {
|
|
184
212
|
text: string;
|
|
185
213
|
text_hover: number;
|
|
@@ -196,7 +224,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
196
224
|
};
|
|
197
225
|
rootColor: string;
|
|
198
226
|
};
|
|
199
|
-
|
|
227
|
+
'button-secondary-green': {
|
|
200
228
|
configStepColor: {
|
|
201
229
|
text: number;
|
|
202
230
|
text_hover: string;
|
|
@@ -213,7 +241,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
213
241
|
};
|
|
214
242
|
rootColor: string;
|
|
215
243
|
};
|
|
216
|
-
|
|
244
|
+
'button-outline-secondary': {
|
|
217
245
|
configStepColor: {
|
|
218
246
|
text: number;
|
|
219
247
|
text_hover: string;
|
|
@@ -230,7 +258,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
230
258
|
};
|
|
231
259
|
rootColor: string;
|
|
232
260
|
};
|
|
233
|
-
|
|
261
|
+
'button-outline-hover-danger': {
|
|
234
262
|
configStepColor: {
|
|
235
263
|
text: string;
|
|
236
264
|
text_hover: number;
|
|
@@ -247,7 +275,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
247
275
|
};
|
|
248
276
|
rootColor: string;
|
|
249
277
|
};
|
|
250
|
-
|
|
278
|
+
'button-third-hover-danger': {
|
|
251
279
|
configStepColor: {
|
|
252
280
|
text: string;
|
|
253
281
|
text_hover: number;
|
|
@@ -266,7 +294,7 @@ export declare const configButtonColor: (rootColorInTheme: string) => {
|
|
|
266
294
|
};
|
|
267
295
|
};
|
|
268
296
|
export declare const configLinkButton: (rootColorInTheme: string) => {
|
|
269
|
-
|
|
297
|
+
'button-link-primary': {
|
|
270
298
|
configStepColor: {
|
|
271
299
|
text: number;
|
|
272
300
|
text_hover: number;
|
|
@@ -275,7 +303,7 @@ export declare const configLinkButton: (rootColorInTheme: string) => {
|
|
|
275
303
|
};
|
|
276
304
|
rootColor: string;
|
|
277
305
|
};
|
|
278
|
-
|
|
306
|
+
'button-link-third': {
|
|
279
307
|
configStepColor: {
|
|
280
308
|
text: string;
|
|
281
309
|
text_hover: number;
|
|
@@ -284,7 +312,7 @@ export declare const configLinkButton: (rootColorInTheme: string) => {
|
|
|
284
312
|
};
|
|
285
313
|
rootColor: string;
|
|
286
314
|
};
|
|
287
|
-
|
|
315
|
+
'button-link-danger-high': {
|
|
288
316
|
configStepColor: {
|
|
289
317
|
text: number;
|
|
290
318
|
text_hover: number;
|
|
@@ -293,7 +321,7 @@ export declare const configLinkButton: (rootColorInTheme: string) => {
|
|
|
293
321
|
};
|
|
294
322
|
rootColor: string;
|
|
295
323
|
};
|
|
296
|
-
|
|
324
|
+
'button-link-danger-low': {
|
|
297
325
|
configStepColor: {
|
|
298
326
|
text: number;
|
|
299
327
|
text_hover: number;
|
|
@@ -302,7 +330,7 @@ export declare const configLinkButton: (rootColorInTheme: string) => {
|
|
|
302
330
|
};
|
|
303
331
|
rootColor: string;
|
|
304
332
|
};
|
|
305
|
-
|
|
333
|
+
'button-link-green': {
|
|
306
334
|
configStepColor: {
|
|
307
335
|
text: number;
|
|
308
336
|
text_hover: number;
|
|
@@ -311,7 +339,7 @@ export declare const configLinkButton: (rootColorInTheme: string) => {
|
|
|
311
339
|
};
|
|
312
340
|
rootColor: string;
|
|
313
341
|
};
|
|
314
|
-
|
|
342
|
+
'button-link-violet': {
|
|
315
343
|
configStepColor: {
|
|
316
344
|
text: number;
|
|
317
345
|
text_hover: number;
|
|
@@ -5,12 +5,6 @@ export interface ILibsUiConfigFontFamily {
|
|
|
5
5
|
uri_semibold: string;
|
|
6
6
|
uri_bold?: string;
|
|
7
7
|
}
|
|
8
|
-
export interface ILibsUiConfigFontWeight {
|
|
9
|
-
uri_regular: string;
|
|
10
|
-
uri_medium: string;
|
|
11
|
-
uri_semibold: string;
|
|
12
|
-
uri_bold: string;
|
|
13
|
-
}
|
|
14
8
|
export interface ILibsUiConfigFontHeading {
|
|
15
9
|
h1r: ILibsUiConfigFontHeadingStyle;
|
|
16
10
|
h1m: ILibsUiConfigFontHeadingStyle;
|
|
@@ -78,27 +72,3 @@ export interface IColorButton {
|
|
|
78
72
|
};
|
|
79
73
|
rootColor: string;
|
|
80
74
|
}
|
|
81
|
-
export interface ILibsUiConfigButtonSize {
|
|
82
|
-
icon: {
|
|
83
|
-
large: string;
|
|
84
|
-
medium: string;
|
|
85
|
-
small: string;
|
|
86
|
-
smaller: string;
|
|
87
|
-
};
|
|
88
|
-
large: {
|
|
89
|
-
font_size: string;
|
|
90
|
-
line_height: string;
|
|
91
|
-
};
|
|
92
|
-
medium: {
|
|
93
|
-
font_size: string;
|
|
94
|
-
line_height: string;
|
|
95
|
-
};
|
|
96
|
-
small: {
|
|
97
|
-
font_size: string;
|
|
98
|
-
line_height: string;
|
|
99
|
-
};
|
|
100
|
-
smaller: {
|
|
101
|
-
font_size: string;
|
|
102
|
-
line_height: string;
|
|
103
|
-
};
|
|
104
|
-
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IColorButton, ILibsUiConfigButtonStatus, ILibsUiConfigButtonTab, ILibsUiConfigFontFamily, ILibsUiConfigFontHeading } from
|
|
1
|
+
import { IColorButton, ILibsUiConfigButtonStatus, ILibsUiConfigButtonTab, ILibsUiConfigFontFamily, ILibsUiConfigFontHeading } from './config-project.interface';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class LibsUiConfigProjectService {
|
|
4
4
|
private readonly themeColor;
|