@gnist/design-system 2.0.13 → 2.0.15

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.
Files changed (60) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/components/surfaces/cards/ActionCard.cjs +3 -3
  3. package/dist/components/surfaces/cards/ActionCard.js +3 -3
  4. package/dist/components/surfaces/cards/CheckboxCard.cjs +5 -2
  5. package/dist/components/surfaces/cards/CheckboxCard.d.ts.map +1 -1
  6. package/dist/components/surfaces/cards/CheckboxCard.js +3 -2
  7. package/dist/components/surfaces/cards/InfoCard.cjs +2 -2
  8. package/dist/components/surfaces/cards/InfoCard.js +2 -2
  9. package/dist/components/surfaces/cards/LinkCard.cjs +2 -2
  10. package/dist/components/surfaces/cards/LinkCard.js +2 -2
  11. package/dist/components/surfaces/cards/RadioCard.cjs +5 -2
  12. package/dist/components/surfaces/cards/RadioCard.d.ts.map +1 -1
  13. package/dist/components/surfaces/cards/RadioCard.js +3 -2
  14. package/dist/foundation/iconography/svg/action/index.d.ts +360 -0
  15. package/dist/foundation/iconography/svg/action/index.d.ts.map +1 -1
  16. package/dist/foundation/iconography/svg/communication/index.d.ts +24 -0
  17. package/dist/foundation/iconography/svg/communication/index.d.ts.map +1 -1
  18. package/dist/foundation/iconography/svg/content/index.d.ts +72 -0
  19. package/dist/foundation/iconography/svg/content/index.d.ts.map +1 -1
  20. package/dist/foundation/iconography/svg/device/index.d.ts +12 -0
  21. package/dist/foundation/iconography/svg/device/index.d.ts.map +1 -1
  22. package/dist/foundation/iconography/svg/file/index.d.ts +24 -0
  23. package/dist/foundation/iconography/svg/file/index.d.ts.map +1 -1
  24. package/dist/foundation/iconography/svg/map/index.d.ts +60 -0
  25. package/dist/foundation/iconography/svg/map/index.d.ts.map +1 -1
  26. package/dist/foundation/iconography/svg/navigation/index.d.ts +228 -0
  27. package/dist/foundation/iconography/svg/navigation/index.d.ts.map +1 -1
  28. package/dist/foundation/iconography/svg/notifications/index.d.ts +36 -0
  29. package/dist/foundation/iconography/svg/notifications/index.d.ts.map +1 -1
  30. package/dist/foundation/iconography/svg/search/index.d.ts +12 -0
  31. package/dist/foundation/iconography/svg/search/index.d.ts.map +1 -1
  32. package/dist/foundation/iconography/svg/social/index.d.ts +60 -0
  33. package/dist/foundation/iconography/svg/social/index.d.ts.map +1 -1
  34. package/dist/foundation/iconography/svg/toggle/index.d.ts +48 -0
  35. package/dist/foundation/iconography/svg/toggle/index.d.ts.map +1 -1
  36. package/dist/foundation/iconography/svg/validation/index.d.ts +60 -0
  37. package/dist/foundation/iconography/svg/validation/index.d.ts.map +1 -1
  38. package/dist/foundation/logos/logos.d.ts +6 -0
  39. package/dist/foundation/logos/logos.d.ts.map +1 -1
  40. package/dist/foundation/logos/svg/audi/index.d.ts +6 -0
  41. package/dist/foundation/logos/svg/audi/index.d.ts.map +1 -1
  42. package/dist/foundation/logos/svg/autoria/index.d.ts +6 -0
  43. package/dist/foundation/logos/svg/autoria/index.d.ts.map +1 -1
  44. package/dist/foundation/logos/svg/bilhold/index.d.ts +6 -0
  45. package/dist/foundation/logos/svg/bilhold/index.d.ts.map +1 -1
  46. package/dist/foundation/logos/svg/cupra/index.d.ts +6 -0
  47. package/dist/foundation/logos/svg/cupra/index.d.ts.map +1 -1
  48. package/dist/foundation/logos/svg/dahles/index.d.ts +6 -0
  49. package/dist/foundation/logos/svg/dahles/index.d.ts.map +1 -1
  50. package/dist/foundation/logos/svg/gumpen/index.d.ts +6 -0
  51. package/dist/foundation/logos/svg/gumpen/index.d.ts.map +1 -1
  52. package/dist/foundation/logos/svg/mollerbil/index.d.ts +6 -0
  53. package/dist/foundation/logos/svg/mollerbil/index.d.ts.map +1 -1
  54. package/dist/foundation/logos/svg/others/index.d.ts +54 -0
  55. package/dist/foundation/logos/svg/others/index.d.ts.map +1 -1
  56. package/dist/foundation/logos/svg/skoda/index.d.ts +6 -0
  57. package/dist/foundation/logos/svg/skoda/index.d.ts.map +1 -1
  58. package/dist/foundation/logos/svg/vw/index.d.ts +12 -0
  59. package/dist/foundation/logos/svg/vw/index.d.ts.map +1 -1
  60. package/package.json +28 -28
@@ -1,71 +1,131 @@
1
1
  export declare const sentiment_dissatisfied: {
2
2
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
3
3
  title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
4
7
  }>;
5
8
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
6
9
  title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
7
13
  }>;
8
14
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
9
15
  title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
10
19
  }>;
11
20
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
12
21
  title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
13
25
  }>;
14
26
  };
15
27
  export declare const sentiment_neutral: {
16
28
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
17
29
  title?: string;
30
+ titleId?: string;
31
+ desc?: string;
32
+ descId?: string;
18
33
  }>;
19
34
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
20
35
  title?: string;
36
+ titleId?: string;
37
+ desc?: string;
38
+ descId?: string;
21
39
  }>;
22
40
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
23
41
  title?: string;
42
+ titleId?: string;
43
+ desc?: string;
44
+ descId?: string;
24
45
  }>;
25
46
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
26
47
  title?: string;
48
+ titleId?: string;
49
+ desc?: string;
50
+ descId?: string;
27
51
  }>;
28
52
  };
29
53
  export declare const sentiment_satisfied: {
30
54
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
31
55
  title?: string;
56
+ titleId?: string;
57
+ desc?: string;
58
+ descId?: string;
32
59
  }>;
33
60
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
34
61
  title?: string;
62
+ titleId?: string;
63
+ desc?: string;
64
+ descId?: string;
35
65
  }>;
36
66
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
37
67
  title?: string;
68
+ titleId?: string;
69
+ desc?: string;
70
+ descId?: string;
38
71
  }>;
39
72
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
40
73
  title?: string;
74
+ titleId?: string;
75
+ desc?: string;
76
+ descId?: string;
41
77
  }>;
42
78
  };
43
79
  export declare const sentiment_very_dissatisfied: {
44
80
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
45
81
  title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
46
85
  }>;
47
86
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
48
87
  title?: string;
88
+ titleId?: string;
89
+ desc?: string;
90
+ descId?: string;
49
91
  }>;
50
92
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
51
93
  title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
52
97
  }>;
53
98
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
54
99
  title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
55
103
  }>;
56
104
  };
57
105
  export declare const sentiment_very_satisfied: {
58
106
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
59
107
  title?: string;
108
+ titleId?: string;
109
+ desc?: string;
110
+ descId?: string;
60
111
  }>;
61
112
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
62
113
  title?: string;
114
+ titleId?: string;
115
+ desc?: string;
116
+ descId?: string;
63
117
  }>;
64
118
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
65
119
  title?: string;
120
+ titleId?: string;
121
+ desc?: string;
122
+ descId?: string;
66
123
  }>;
67
124
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
68
125
  title?: string;
126
+ titleId?: string;
127
+ desc?: string;
128
+ descId?: string;
69
129
  }>;
70
130
  };
71
131
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/social/index.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;CAKlC,CAAC;AACF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;CAK7B,CAAC;AACF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;CAK/B,CAAC;AACF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;CAKvC,CAAC;AACF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;CAKpC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/social/index.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAC;AACF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;CAK7B,CAAC;AACF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;CAK/B,CAAC;AACF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAC;AACF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;CAKpC,CAAC"}
@@ -1,57 +1,105 @@
1
1
  export declare const favorite: {
2
2
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
3
3
  title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
4
7
  }>;
5
8
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
6
9
  title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
7
13
  }>;
8
14
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
9
15
  title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
10
19
  }>;
11
20
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
12
21
  title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
13
25
  }>;
14
26
  };
15
27
  export declare const favorite_border: {
16
28
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
17
29
  title?: string;
30
+ titleId?: string;
31
+ desc?: string;
32
+ descId?: string;
18
33
  }>;
19
34
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
20
35
  title?: string;
36
+ titleId?: string;
37
+ desc?: string;
38
+ descId?: string;
21
39
  }>;
22
40
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
23
41
  title?: string;
42
+ titleId?: string;
43
+ desc?: string;
44
+ descId?: string;
24
45
  }>;
25
46
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
26
47
  title?: string;
48
+ titleId?: string;
49
+ desc?: string;
50
+ descId?: string;
27
51
  }>;
28
52
  };
29
53
  export declare const star: {
30
54
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
31
55
  title?: string;
56
+ titleId?: string;
57
+ desc?: string;
58
+ descId?: string;
32
59
  }>;
33
60
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
34
61
  title?: string;
62
+ titleId?: string;
63
+ desc?: string;
64
+ descId?: string;
35
65
  }>;
36
66
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
37
67
  title?: string;
68
+ titleId?: string;
69
+ desc?: string;
70
+ descId?: string;
38
71
  }>;
39
72
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
40
73
  title?: string;
74
+ titleId?: string;
75
+ desc?: string;
76
+ descId?: string;
41
77
  }>;
42
78
  };
43
79
  export declare const star_outline: {
44
80
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
45
81
  title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
46
85
  }>;
47
86
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
48
87
  title?: string;
88
+ titleId?: string;
89
+ desc?: string;
90
+ descId?: string;
49
91
  }>;
50
92
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
51
93
  title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
52
97
  }>;
53
98
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
54
99
  title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
55
103
  }>;
56
104
  };
57
105
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/toggle/index.ts"],"names":[],"mappings":"AAyBA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;CAKpB,CAAC;AACF,eAAO,MAAM,eAAe;;;;;;;;;;;;;CAK3B,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,YAAY;;;;;;;;;;;;;CAKxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/toggle/index.ts"],"names":[],"mappings":"AAyBA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;CAKpB,CAAC;AACF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;CAK3B,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;CAKxB,CAAC"}
@@ -1,71 +1,131 @@
1
1
  export declare const error: {
2
2
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
3
3
  title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
4
7
  }>;
5
8
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
6
9
  title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
7
13
  }>;
8
14
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
9
15
  title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
10
19
  }>;
11
20
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
12
21
  title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
13
25
  }>;
14
26
  };
15
27
  export declare const help: {
16
28
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
17
29
  title?: string;
30
+ titleId?: string;
31
+ desc?: string;
32
+ descId?: string;
18
33
  }>;
19
34
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
20
35
  title?: string;
36
+ titleId?: string;
37
+ desc?: string;
38
+ descId?: string;
21
39
  }>;
22
40
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
23
41
  title?: string;
42
+ titleId?: string;
43
+ desc?: string;
44
+ descId?: string;
24
45
  }>;
25
46
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
26
47
  title?: string;
48
+ titleId?: string;
49
+ desc?: string;
50
+ descId?: string;
27
51
  }>;
28
52
  };
29
53
  export declare const info: {
30
54
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
31
55
  title?: string;
56
+ titleId?: string;
57
+ desc?: string;
58
+ descId?: string;
32
59
  }>;
33
60
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
34
61
  title?: string;
62
+ titleId?: string;
63
+ desc?: string;
64
+ descId?: string;
35
65
  }>;
36
66
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
37
67
  title?: string;
68
+ titleId?: string;
69
+ desc?: string;
70
+ descId?: string;
38
71
  }>;
39
72
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
40
73
  title?: string;
74
+ titleId?: string;
75
+ desc?: string;
76
+ descId?: string;
41
77
  }>;
42
78
  };
43
79
  export declare const success: {
44
80
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
45
81
  title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
46
85
  }>;
47
86
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
48
87
  title?: string;
88
+ titleId?: string;
89
+ desc?: string;
90
+ descId?: string;
49
91
  }>;
50
92
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
51
93
  title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
52
97
  }>;
53
98
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
54
99
  title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
55
103
  }>;
56
104
  };
57
105
  export declare const warning: {
58
106
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
59
107
  title?: string;
108
+ titleId?: string;
109
+ desc?: string;
110
+ descId?: string;
60
111
  }>;
61
112
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
62
113
  title?: string;
114
+ titleId?: string;
115
+ desc?: string;
116
+ descId?: string;
63
117
  }>;
64
118
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
65
119
  title?: string;
120
+ titleId?: string;
121
+ desc?: string;
122
+ descId?: string;
66
123
  }>;
67
124
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
68
125
  title?: string;
126
+ titleId?: string;
127
+ desc?: string;
128
+ descId?: string;
69
129
  }>;
70
130
  };
71
131
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/validation/index.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,KAAK;;;;;;;;;;;;;CAKjB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;CAKnB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;CAKnB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/validation/index.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;CAKjB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;CAKnB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;CAKnB,CAAC"}
@@ -2,9 +2,15 @@ export declare const logos: {
2
2
  key: string;
3
3
  symbol: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
4
  title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
5
8
  }>;
6
9
  wordmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
10
  title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
8
14
  }>;
9
15
  }[];
10
16
  //# sourceMappingURL=logos.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"logos.d.ts","sourceRoot":"","sources":["../../../src/foundation/logos/logos.tsx"],"names":[],"mappings":"AAsBA,eAAO,MAAM,KAAK;;;;;;;;GAoBjB,CAAC"}
1
+ {"version":3,"file":"logos.d.ts","sourceRoot":"","sources":["../../../src/foundation/logos/logos.tsx"],"names":[],"mappings":"AAsBA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;GAoBjB,CAAC"}
@@ -2,9 +2,15 @@ export declare const audi: {
2
2
  key: string;
3
3
  symbol: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
4
  title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
5
8
  }>;
6
9
  wordmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
10
  title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
8
14
  }>;
9
15
  };
10
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/audi/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI;;;;;;;;CAIhB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/audi/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;CAIhB,CAAC"}
@@ -2,9 +2,15 @@ export declare const autoria: {
2
2
  key: string;
3
3
  symbol: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
4
  title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
5
8
  }>;
6
9
  wordmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
10
  title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
8
14
  }>;
9
15
  };
10
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/autoria/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO;;;;;;;;CAInB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/autoria/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;CAInB,CAAC"}
@@ -2,9 +2,15 @@ export declare const bilhold: {
2
2
  key: string;
3
3
  symbol: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
4
  title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
5
8
  }>;
6
9
  wordmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
10
  title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
8
14
  }>;
9
15
  };
10
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/bilhold/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO;;;;;;;;CAInB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/bilhold/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;CAInB,CAAC"}
@@ -2,9 +2,15 @@ export declare const cupra: {
2
2
  key: string;
3
3
  symbol: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
4
  title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
5
8
  }>;
6
9
  wordmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
10
  title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
8
14
  }>;
9
15
  };
10
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/cupra/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,KAAK;;;;;;;;CAIjB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/cupra/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;CAIjB,CAAC"}
@@ -2,9 +2,15 @@ export declare const dahles: {
2
2
  key: string;
3
3
  symbol: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
4
  title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
5
8
  }>;
6
9
  wordmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
10
  title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
8
14
  }>;
9
15
  };
10
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/dahles/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM;;;;;;;;CAIlB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/dahles/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;CAIlB,CAAC"}
@@ -2,9 +2,15 @@ export declare const gumpen: {
2
2
  key: string;
3
3
  symbol: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
4
  title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
5
8
  }>;
6
9
  wordmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
10
  title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
8
14
  }>;
9
15
  };
10
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/gumpen/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM;;;;;;;;CAIlB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/gumpen/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;CAIlB,CAAC"}
@@ -2,9 +2,15 @@ export declare const mollerbil: {
2
2
  key: string;
3
3
  symbol: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
4
  title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
5
8
  }>;
6
9
  wordmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
10
  title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
8
14
  }>;
9
15
  };
10
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/mollerbil/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,SAAS;;;;;;;;CAIrB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/logos/svg/mollerbil/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;CAIrB,CAAC"}