@tekus/design-system 5.0.0 → 5.0.2
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/components/button/src/button.component.d.ts +2 -2
- package/fesm2022/tekus-design-system-components-button.mjs +5 -5
- package/fesm2022/tekus-design-system-components-button.mjs.map +1 -1
- package/fesm2022/tekus-design-system-components-fallback-view.mjs +2 -2
- package/fesm2022/tekus-design-system-components-fallback-view.mjs.map +1 -1
- package/fesm2022/tekus-design-system-components-typography.mjs +2 -2
- package/fesm2022/tekus-design-system-components-typography.mjs.map +1 -1
- package/fesm2022/tekus-design-system-core-types.mjs +4 -0
- package/fesm2022/tekus-design-system-core-types.mjs.map +1 -1
- package/fesm2022/tekus-design-system-core.mjs +4 -0
- package/fesm2022/tekus-design-system-core.mjs.map +1 -1
- package/package.json +21 -49
- package/tokens/colors/_colors.scss +84 -85
- package/tokens/index.scss +0 -1
- package/components/dropdown-list/index.d.ts +0 -5
- package/components/dropdown-list/public-api.d.ts +0 -1
- package/components/dropdown-list/src/dropdown-list.component.d.ts +0 -113
- package/components/forms/form-autocomplete-field/index.d.ts +0 -5
- package/components/forms/form-autocomplete-field/public-api.d.ts +0 -1
- package/components/forms/form-autocomplete-field/src/form-autocomplete-field.component.d.ts +0 -173
- package/components/forms/form-chips-autocomplete-field/index.d.ts +0 -5
- package/components/forms/form-chips-autocomplete-field/public-api.d.ts +0 -1
- package/components/forms/form-chips-autocomplete-field/src/form-chips-autocomplete-field.component.d.ts +0 -124
- package/components/forms/form-input-field/index.d.ts +0 -5
- package/components/forms/form-input-field/public-api.d.ts +0 -1
- package/components/forms/form-input-field/src/form-input-field.component.d.ts +0 -137
- package/components/forms/index.d.ts +0 -5
- package/components/forms/public-api.d.ts +0 -3
- package/components/search-bar/index.d.ts +0 -5
- package/components/search-bar/public-api.d.ts +0 -1
- package/components/search-bar/src/search-bar.component.d.ts +0 -25
- package/fesm2022/tekus-design-system-components-dropdown-list.mjs +0 -147
- package/fesm2022/tekus-design-system-components-dropdown-list.mjs.map +0 -1
- package/fesm2022/tekus-design-system-components-forms-form-autocomplete-field.mjs +0 -268
- package/fesm2022/tekus-design-system-components-forms-form-autocomplete-field.mjs.map +0 -1
- package/fesm2022/tekus-design-system-components-forms-form-chips-autocomplete-field.mjs +0 -193
- package/fesm2022/tekus-design-system-components-forms-form-chips-autocomplete-field.mjs.map +0 -1
- package/fesm2022/tekus-design-system-components-forms-form-input-field.mjs +0 -212
- package/fesm2022/tekus-design-system-components-forms-form-input-field.mjs.map +0 -1
- package/fesm2022/tekus-design-system-components-forms.mjs +0 -640
- package/fesm2022/tekus-design-system-components-forms.mjs.map +0 -1
- package/fesm2022/tekus-design-system-components-search-bar.mjs +0 -56
- package/fesm2022/tekus-design-system-components-search-bar.mjs.map +0 -1
- package/fesm2022/tekus-design-system-services-design-tokens.mjs +0 -47
- package/fesm2022/tekus-design-system-services-design-tokens.mjs.map +0 -1
- package/fesm2022/tekus-design-system-services-typography.mjs +0 -91
- package/fesm2022/tekus-design-system-services-typography.mjs.map +0 -1
- package/services/design-tokens/index.d.ts +0 -5
- package/services/design-tokens/public-api.d.ts +0 -1
- package/services/design-tokens/src/design-tokens.service.d.ts +0 -10
- package/services/typography/index.d.ts +0 -5
- package/services/typography/public-api.d.ts +0 -1
- package/services/typography/src/typography.service.d.ts +0 -8
- package/tokens/typography/_typography.scss +0 -6
- package/tokens/typography/font-size/_font-size.scss +0 -16
- package/tokens/typography/font-weight/_font-weight.scss +0 -14
- package/tokens/typography/letter-spacing/_letter-spacing.scss +0 -12
- package/tokens/typography/line-height/_line-height.scss +0 -16
- package/tokens/typography/variants/_variants.scss +0 -211
|
@@ -1,211 +0,0 @@
|
|
|
1
|
-
// H1 heading
|
|
2
|
-
h1 {
|
|
3
|
-
font-family: poppins, sans-serif;
|
|
4
|
-
font-size: var(--tk-font-size-xl, 32px);
|
|
5
|
-
line-height: var(--tk-line-height-xl, 48px);
|
|
6
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
7
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
// H2 heading
|
|
11
|
-
h2 {
|
|
12
|
-
font-family: poppins, sans-serif;
|
|
13
|
-
font-size: var(--tk-font-size-lg, 28px);
|
|
14
|
-
line-height: var(--tk-line-height-lg, 42px);
|
|
15
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
16
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
// H3 heading
|
|
20
|
-
h3 {
|
|
21
|
-
font-family: poppins, sans-serif;
|
|
22
|
-
font-size: var(--tk-font-size-md, 24px);
|
|
23
|
-
line-height: var(--tk-line-height-md, 36px);
|
|
24
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
25
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// H4 heading
|
|
29
|
-
h4 {
|
|
30
|
-
font-family: poppins, sans-serif;
|
|
31
|
-
font-size: var(--tk-font-size-sm, 20px);
|
|
32
|
-
line-height: var(--tk-line-height-sm, 30px);
|
|
33
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
34
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
// H5 heading
|
|
38
|
-
h5 {
|
|
39
|
-
font-family: poppins, sans-serif;
|
|
40
|
-
font-size: var(--tk-font-size-xs, 18px);
|
|
41
|
-
line-height: var(--tk-line-height-xs, 27px);
|
|
42
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
43
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
// H6 heading
|
|
47
|
-
h6 {
|
|
48
|
-
font-family: poppins, sans-serif;
|
|
49
|
-
font-size: var(--tk-font-size-2xs, 16px);
|
|
50
|
-
line-height: var(--tk-line-height-2xs, 24px);
|
|
51
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
52
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
// Body 1
|
|
56
|
-
p[body-1] {
|
|
57
|
-
font-family: poppins, sans-serif;
|
|
58
|
-
font-size: var(--tk-font-size-xs, 18px);
|
|
59
|
-
line-height: var(--tk-line-height-xs, 27px);
|
|
60
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
61
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
// Body 2
|
|
65
|
-
p[body-2] {
|
|
66
|
-
font-family: poppins, sans-serif;
|
|
67
|
-
font-size: var(--tk-font-size-2xs, 16px);
|
|
68
|
-
line-height: var(--tk-line-height-2xs, 24px);
|
|
69
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
70
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
// Body 3
|
|
74
|
-
p[body-3] {
|
|
75
|
-
font-family: poppins, sans-serif;
|
|
76
|
-
font-size: var(--tk-font-size-3xs, 14px);
|
|
77
|
-
line-height: var(--tk-line-height-3xs, 21px);
|
|
78
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
79
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
// Links
|
|
83
|
-
a[link-1] {
|
|
84
|
-
font-family: poppins, sans-serif;
|
|
85
|
-
font-size: var(--tk-font-size-3xs, 14px);
|
|
86
|
-
line-height: var(--tk-line-height-3xs, 21px);
|
|
87
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
88
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
a[link-2] {
|
|
92
|
-
font-family: poppins, sans-serif;
|
|
93
|
-
font-size: var(--tk-font-size-4xs, 12px);
|
|
94
|
-
line-height: var(--tk-line-height-4xs, 18px);
|
|
95
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
96
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
// Legal paragraph
|
|
100
|
-
p[legal] {
|
|
101
|
-
font-family: poppins, sans-serif;
|
|
102
|
-
font-size: var(--tk-font-size-5xs, 10px);
|
|
103
|
-
line-height: var(--tk-line-height-5xs, 15px);
|
|
104
|
-
letter-spacing: var(--tk-letter-spacing-tight, -1px);
|
|
105
|
-
font-weight: var(--tk-font-weight-book, 300);
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
h1[weight='light'],
|
|
109
|
-
h2[weight='light'],
|
|
110
|
-
h3[weight='light'],
|
|
111
|
-
h4[weight='light'],
|
|
112
|
-
h5[weight='light'],
|
|
113
|
-
h6[weight='light'],
|
|
114
|
-
p[body-1][weight='light'],
|
|
115
|
-
p[body-2][weight='light'],
|
|
116
|
-
p[body-3][weight='light'],
|
|
117
|
-
a[link-1][weight='light'],
|
|
118
|
-
a[link-2][weight='light'],
|
|
119
|
-
p[legal][weight='light'] {
|
|
120
|
-
font-weight: var(--tk-font-weight-light);
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
h1[weight='regular'],
|
|
124
|
-
h2[weight='regular'],
|
|
125
|
-
h3[weight='regular'],
|
|
126
|
-
h4[weight='regular'],
|
|
127
|
-
h5[weight='regular'],
|
|
128
|
-
h6[weight='regular'],
|
|
129
|
-
p[body-1][weight='regular'],
|
|
130
|
-
p[body-2][weight='regular'],
|
|
131
|
-
p[body-3][weight='regular'],
|
|
132
|
-
a[link-1][weight='regular'],
|
|
133
|
-
a[link-2][weight='regular'],
|
|
134
|
-
p[legal][weight='regular'] {
|
|
135
|
-
font-weight: var(--tk-font-weight-regular);
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
h1[weight='medium'],
|
|
139
|
-
h2[weight='medium'],
|
|
140
|
-
h3[weight='medium'],
|
|
141
|
-
h4[weight='medium'],
|
|
142
|
-
h5[weight='medium'],
|
|
143
|
-
h6[weight='medium'],
|
|
144
|
-
p[body-1][weight='medium'],
|
|
145
|
-
p[body-2][weight='medium'],
|
|
146
|
-
p[body-3][weight='medium'],
|
|
147
|
-
a[link-1][weight='medium'],
|
|
148
|
-
a[link-2][weight='medium'],
|
|
149
|
-
p[legal][weight='medium'] {
|
|
150
|
-
font-weight: var(--tk-font-weight-medium);
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
h1[weight='semi-bold'],
|
|
154
|
-
h2[weight='semi-bold'],
|
|
155
|
-
h3[weight='semi-bold'],
|
|
156
|
-
h4[weight='semi-bold'],
|
|
157
|
-
h5[weight='semi-bold'],
|
|
158
|
-
h6[weight='semi-bold'],
|
|
159
|
-
p[body-1][weight='semi-bold'],
|
|
160
|
-
p[body-2][weight='semi-bold'],
|
|
161
|
-
p[body-3][weight='semi-bold'],
|
|
162
|
-
a[link-1][weight='semi-bold'],
|
|
163
|
-
a[link-2][weight='semi-bold'],
|
|
164
|
-
p[legal][weight='semi-bold'] {
|
|
165
|
-
font-weight: var(--tk-font-weight-semi-bold);
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
h1[weight='bold'],
|
|
169
|
-
h2[weight='bold'],
|
|
170
|
-
h3[weight='bold'],
|
|
171
|
-
h4[weight='bold'],
|
|
172
|
-
h5[weight='bold'],
|
|
173
|
-
h6[weight='bold'],
|
|
174
|
-
p[body-1][weight='bold'],
|
|
175
|
-
p[body-2][weight='bold'],
|
|
176
|
-
p[body-3][weight='bold'],
|
|
177
|
-
a[link-1][weight='bold'],
|
|
178
|
-
a[link-2][weight='bold'],
|
|
179
|
-
p[legal][weight='bold'] {
|
|
180
|
-
font-weight: var(--tk-font-weight-bold);
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
h1[weight='extra-bold'],
|
|
184
|
-
h2[weight='extra-bold'],
|
|
185
|
-
h3[weight='extra-bold'],
|
|
186
|
-
h4[weight='extra-bold'],
|
|
187
|
-
h5[weight='extra-bold'],
|
|
188
|
-
h6[weight='extra-bold'],
|
|
189
|
-
p[body-1][weight='extra-bold'],
|
|
190
|
-
p[body-2][weight='extra-bold'],
|
|
191
|
-
p[body-3][weight='extra-bold'],
|
|
192
|
-
a[link-1][weight='extra-bold'],
|
|
193
|
-
a[link-2][weight='extra-bold'],
|
|
194
|
-
p[legal][weight='extra-bold'] {
|
|
195
|
-
font-weight: var(--tk-font-weight-extra-bold);
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
// LINKS
|
|
199
|
-
a[link-1][underline], a[link-2][underline] {
|
|
200
|
-
text-decoration: underline;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
// COLORS
|
|
205
|
-
h1[color='primary'] {
|
|
206
|
-
color: var(--tk-color-primary-500, #6ad0bc);
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
h2[color='secondary'] {
|
|
210
|
-
color: var(--tk-color-secondary-700, #44338b);
|
|
211
|
-
}
|