@ornikar/bumper 3.13.0 → 3.14.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.
Files changed (68) hide show
  1. package/CHANGELOG.md +6 -143
  2. package/dist/definitions/index.d.ts +2 -0
  3. package/dist/definitions/index.d.ts.map +1 -1
  4. package/dist/definitions/system/core/themes/light/light.d.ts.map +1 -1
  5. package/dist/definitions/system/core/themes/types.d.ts +3 -1
  6. package/dist/definitions/system/core/themes/types.d.ts.map +1 -1
  7. package/dist/definitions/system/dataDisplays/Avatar/Avatar.d.ts +52 -0
  8. package/dist/definitions/system/dataDisplays/Avatar/Avatar.d.ts.map +1 -0
  9. package/dist/definitions/system/dataDisplays/Avatar/components/AvatarImage.d.ts +5 -0
  10. package/dist/definitions/system/dataDisplays/Avatar/components/AvatarImage.d.ts.map +1 -0
  11. package/dist/definitions/system/dataDisplays/Avatar/components/AvatarInitial.d.ts +6 -0
  12. package/dist/definitions/system/dataDisplays/Avatar/components/AvatarInitial.d.ts.map +1 -0
  13. package/dist/definitions/system/dataDisplays/Avatar/context.d.ts +3 -0
  14. package/dist/definitions/system/dataDisplays/Avatar/context.d.ts.map +1 -0
  15. package/dist/index-metro.es.android.js +141 -9
  16. package/dist/index-metro.es.android.js.map +1 -1
  17. package/dist/index-metro.es.ios.js +141 -9
  18. package/dist/index-metro.es.ios.js.map +1 -1
  19. package/dist/index-node-22.22.cjs.js +140 -7
  20. package/dist/index-node-22.22.cjs.js.map +1 -1
  21. package/dist/index-node-22.22.cjs.web.js +140 -7
  22. package/dist/index-node-22.22.cjs.web.js.map +1 -1
  23. package/dist/index-node-22.22.es.mjs +140 -9
  24. package/dist/index-node-22.22.es.mjs.map +1 -1
  25. package/dist/index-node-22.22.es.web.mjs +140 -9
  26. package/dist/index-node-22.22.es.web.mjs.map +1 -1
  27. package/dist/index.es.js +140 -9
  28. package/dist/index.es.js.map +1 -1
  29. package/dist/index.es.web.js +140 -9
  30. package/dist/index.es.web.js.map +1 -1
  31. package/dist/storybook-metro.es.android.js +3 -1
  32. package/dist/storybook-metro.es.android.js.map +1 -1
  33. package/dist/storybook-metro.es.ios.js +3 -1
  34. package/dist/storybook-metro.es.ios.js.map +1 -1
  35. package/dist/storybook-node-22.22.cjs.js +3 -1
  36. package/dist/storybook-node-22.22.cjs.js.map +1 -1
  37. package/dist/storybook-node-22.22.cjs.web.js +3 -1
  38. package/dist/storybook-node-22.22.cjs.web.js.map +1 -1
  39. package/dist/storybook-node-22.22.es.mjs +3 -1
  40. package/dist/storybook-node-22.22.es.mjs.map +1 -1
  41. package/dist/storybook-node-22.22.es.web.mjs +3 -1
  42. package/dist/storybook-node-22.22.es.web.mjs.map +1 -1
  43. package/dist/storybook.es.js +3 -1
  44. package/dist/storybook.es.js.map +1 -1
  45. package/dist/storybook.es.web.js +3 -1
  46. package/dist/storybook.es.web.js.map +1 -1
  47. package/dist/tsbuildinfo +1 -1
  48. package/docs/migration/Avatar.md +228 -0
  49. package/package.json +1 -1
  50. package/src/Bumper.mdx +1 -0
  51. package/src/index.ts +2 -0
  52. package/src/system/core/themes/light/__snapshots__/light.stories.tsx.snap +73 -0
  53. package/src/system/core/themes/light/__snapshots_web__/light.stories.tsx.snap +21 -0
  54. package/src/system/core/themes/light/light.ts +3 -0
  55. package/src/system/core/themes/types.ts +5 -1
  56. package/src/system/dataDisplays/Avatar/Avatar.features.stories.tsx +110 -0
  57. package/src/system/dataDisplays/Avatar/Avatar.mdx +73 -0
  58. package/src/system/dataDisplays/Avatar/Avatar.stories.tsx +47 -0
  59. package/src/system/dataDisplays/Avatar/Avatar.tsx +124 -0
  60. package/src/system/dataDisplays/Avatar/__snapshots__/Avatar.features.stories.tsx.snap +891 -0
  61. package/src/system/dataDisplays/Avatar/__snapshots__/Avatar.stories.tsx.snap +50 -0
  62. package/src/system/dataDisplays/Avatar/__snapshots_web__/Avatar.features.stories.tsx.snap +545 -0
  63. package/src/system/dataDisplays/Avatar/__snapshots_web__/Avatar.stories.tsx.snap +37 -0
  64. package/src/system/dataDisplays/Avatar/assets/avatar-placeholder-disabled.webp +0 -0
  65. package/src/system/dataDisplays/Avatar/assets/avatar-placeholder.webp +0 -0
  66. package/src/system/dataDisplays/Avatar/components/AvatarImage.tsx +34 -0
  67. package/src/system/dataDisplays/Avatar/components/AvatarInitial.tsx +30 -0
  68. package/src/system/dataDisplays/Avatar/context.ts +10 -0
package/CHANGELOG.md CHANGED
@@ -3,233 +3,164 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [3.13.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.12.0...@ornikar/bumper@3.13.0) (2026-04-29)
7
-
6
+ ## [3.14.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.13.0...@ornikar/bumper@3.14.0) (2026-05-04)
8
7
 
9
8
  ### Features
10
9
 
11
- * export divider component [no-issue] ([#3001](https://github.com/ornikar/kitt/issues/3001)) ([f67b6fa](https://github.com/ornikar/kitt/commit/f67b6fa6ba573c6e495ebac3d65f06d2d6e80901))
10
+ * **bumper:** add Avatar component OSE-24570 ([#2982](https://github.com/ornikar/kitt/issues/2982)) ([0e539ca](https://github.com/ornikar/kitt/commit/0e539cae6dec78229501cc1daa4d158930c3bc2c))
11
+
12
+ ## [3.13.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.12.0...@ornikar/bumper@3.13.0) (2026-04-29)
12
13
 
14
+ ### Features
13
15
 
16
+ * export divider component [no-issue] ([#3001](https://github.com/ornikar/kitt/issues/3001)) ([f67b6fa](https://github.com/ornikar/kitt/commit/f67b6fa6ba573c6e495ebac3d65f06d2d6e80901))
14
17
 
15
18
  ## [3.12.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.11.0...@ornikar/bumper@3.12.0) (2026-04-29)
16
19
 
17
-
18
20
  ### Features
19
21
 
20
22
  * **bumper:** add Sticker component - OSE-24569 ([#2990](https://github.com/ornikar/kitt/issues/2990)) ([2e5ebaa](https://github.com/ornikar/kitt/commit/2e5ebaac2c43cd046a0644d3d07259e8ecc586e3))
21
23
  * **bumper:** improve PropsToTamaguiVariants generics [no-issue] ([#2995](https://github.com/ornikar/kitt/issues/2995)) ([dfb5029](https://github.com/ornikar/kitt/commit/dfb5029562aca091cec4a1f5c4f3548c7d943360))
22
24
  * **bumper:** wrap Divider with useProps to flatten media props [no-issue] ([#2999](https://github.com/ornikar/kitt/issues/2999)) ([80a6a0c](https://github.com/ornikar/kitt/commit/80a6a0c077502b1d29133f6fdffea8d0f1aac260))
23
25
 
24
-
25
-
26
26
  ## [3.11.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.10.1...@ornikar/bumper@3.11.0) (2026-04-23)
27
27
 
28
-
29
28
  ### Features
30
29
 
31
30
  * create Divider component [OSE-24567] ([#2988](https://github.com/ornikar/kitt/issues/2988)) ([de7771e](https://github.com/ornikar/kitt/commit/de7771ef210dba73cfb03d8719659081ec536f49))
32
31
 
33
-
34
32
  ### Bug Fixes
35
33
 
36
34
  * **bumper:** expose href and hrefAttrs on Typography [no-issue] ([#2994](https://github.com/ornikar/kitt/issues/2994)) ([7a03b57](https://github.com/ornikar/kitt/commit/7a03b57f733272ac3488a876c8f9c54f7485257f))
37
35
 
38
-
39
-
40
36
  ## [3.10.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.10.0...@ornikar/bumper@3.10.1) (2026-04-23)
41
37
 
42
-
43
38
  ### Bug Fixes
44
39
 
45
40
  * expand Typography migration doc with icon caveats and color inheritance [no issue] ([#2989](https://github.com/ornikar/kitt/issues/2989)) ([d5932c5](https://github.com/ornikar/kitt/commit/d5932c523e34703d0cbc7294ea1f94d354dcd825))
46
41
 
47
-
48
-
49
42
  ## [3.10.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.9.1...@ornikar/bumper@3.10.0) (2026-04-15)
50
43
 
51
-
52
44
  ### Features
53
45
 
54
46
  * **bumper:** prefix all palette color token names with `palette.*` [no issue] ([#2973](https://github.com/ornikar/kitt/issues/2973)) ([291baa5](https://github.com/ornikar/kitt/commit/291baa50016a9fdf268f77e878d515d75fa844cb))
55
47
  * **bumper:** update grey palette and disabled Button treatment [no-issue] ([#2978](https://github.com/ornikar/kitt/issues/2978)) ([92948d9](https://github.com/ornikar/kitt/commit/92948d956dd7af3fb2338f210e1109536f767b70))
56
48
 
57
-
58
49
  ### Bug Fixes
59
50
 
60
51
  * **bumper:** update Typography migration doc [no-issue] ([#2975](https://github.com/ornikar/kitt/issues/2975)) ([a08992e](https://github.com/ornikar/kitt/commit/a08992e6ba8159a4fa8e34c2d92aba74a2cd2760))
61
52
 
62
-
63
-
64
53
  ## [3.9.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.9.0...@ornikar/bumper@3.9.1) (2026-04-14)
65
54
 
66
-
67
55
  ### Bug Fixes
68
56
 
69
57
  * **bumper:** add default textAlign to Typography [no-issue] ([#2976](https://github.com/ornikar/kitt/issues/2976)) ([9296a5a](https://github.com/ornikar/kitt/commit/9296a5a36109bc2179da620ee0d1280bac262fcd))
70
58
 
71
-
72
-
73
59
  ## [3.9.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.8.1...@ornikar/bumper@3.9.0) (2026-04-14)
74
60
 
75
-
76
61
  ### Features
77
62
 
78
63
  * **bumper:** add negative space tokens [no issue] ([#2964](https://github.com/ornikar/kitt/issues/2964)) ([7ab7113](https://github.com/ornikar/kitt/commit/7ab7113cb2dc027f321befb80ebe3a0d7b7bbc70))
79
64
 
80
-
81
65
  ### Bug Fixes
82
66
 
83
67
  * **bumper:** set explicit sizes on IconButton [no issue] ([#2965](https://github.com/ornikar/kitt/issues/2965)) ([518f90e](https://github.com/ornikar/kitt/commit/518f90e116538681a5275dcffdf406895b0b5149))
84
68
 
85
-
86
-
87
69
  ## [3.8.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.8.0...@ornikar/bumper@3.8.1) (2026-04-01)
88
70
 
89
71
  **Note:** Version bump only for package @ornikar/bumper
90
72
 
91
-
92
-
93
-
94
-
95
73
  ## [3.8.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.7.2...@ornikar/bumper@3.8.0) (2026-03-31)
96
74
 
97
-
98
75
  ### Features
99
76
 
100
77
  * **bumper:** less restrictive sizes [no-issue] ([#2955](https://github.com/ornikar/kitt/issues/2955)) ([82e09b7](https://github.com/ornikar/kitt/commit/82e09b78212327b16e15463c4d2ee37897779328))
101
78
 
102
-
103
-
104
79
  ## [3.7.2](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.7.1...@ornikar/bumper@3.7.2) (2026-03-27)
105
80
 
106
-
107
81
  ### Bug Fixes
108
82
 
109
83
  * **bumper:** prevent Button stretch from expanding vertically [no-issue] ([#2951](https://github.com/ornikar/kitt/issues/2951)) ([e1b2c58](https://github.com/ornikar/kitt/commit/e1b2c58bf724e9c53aae2e5163ae4ad89de7e614))
110
84
 
111
-
112
-
113
85
  ## [3.7.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.7.0...@ornikar/bumper@3.7.1) (2026-03-23)
114
86
 
115
87
  **Note:** Version bump only for package @ornikar/bumper
116
88
 
117
-
118
-
119
-
120
-
121
89
  ## [3.7.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.6.2...@ornikar/bumper@3.7.0) (2026-03-17)
122
90
 
123
-
124
91
  ### Features
125
92
 
126
93
  * **bumper:** responsive and docs [no-issue] ([#2935](https://github.com/ornikar/kitt/issues/2935)) ([06371da](https://github.com/ornikar/kitt/commit/06371dadd86fa9af62703a453341380363d4786e))
127
94
 
128
-
129
-
130
95
  ## [3.6.2](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.6.1...@ornikar/bumper@3.6.2) (2026-03-16)
131
96
 
132
-
133
97
  ### Bug Fixes
134
98
 
135
99
  * apply default Icon size and rename IntlDate prop [no issue] ([#2933](https://github.com/ornikar/kitt/issues/2933)) ([1c3b567](https://github.com/ornikar/kitt/commit/1c3b56791a405de46d77a3488cbc76e883724763))
136
100
 
137
-
138
-
139
101
  ## [3.6.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.6.0...@ornikar/bumper@3.6.1) (2026-03-13)
140
102
 
141
-
142
103
  ### Bug Fixes
143
104
 
144
105
  * **bumper:** add default size variant to Icon component [no issue] ([#2932](https://github.com/ornikar/kitt/issues/2932)) ([0d84840](https://github.com/ornikar/kitt/commit/0d848406a8b68b6f9bbaed5d8567171af9506a3f))
145
106
  * **bumper:** render TypographyLink as <a> and make onPress optional [no issue] ([#2930](https://github.com/ornikar/kitt/issues/2930)) ([ef4a3b1](https://github.com/ornikar/kitt/commit/ef4a3b115cbb6fc913c73832ac045a4a1afdf1bf))
146
107
 
147
-
148
-
149
108
  ## [3.6.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.5.0...@ornikar/bumper@3.6.0) (2026-03-12)
150
109
 
151
-
152
110
  ### Features
153
111
 
154
112
  * revert add Metro exports [OSE-23450] ([#2929](https://github.com/ornikar/kitt/issues/2929)) ([303b1d7](https://github.com/ornikar/kitt/commit/303b1d76441c44cb0423053305c7df276fc58c4f))
155
113
 
156
-
157
-
158
114
  ## [3.5.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.4.0...@ornikar/bumper@3.5.0) (2026-03-12)
159
115
 
160
-
161
116
  ### Features
162
117
 
163
118
  * add Metro exports [OSE-23450] ([#2926](https://github.com/ornikar/kitt/issues/2926)) ([00f1ef8](https://github.com/ornikar/kitt/commit/00f1ef87be8b190c75a9721d65708b3ea2bcc6ab))
164
119
 
165
-
166
-
167
120
  ## [3.4.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.3.0...@ornikar/bumper@3.4.0) (2026-03-11)
168
121
 
169
-
170
122
  ### Features
171
123
 
172
124
  * **bumper:** add Button and IconButton components [OSE-22814] ([#2911](https://github.com/ornikar/kitt/issues/2911)) ([36619db](https://github.com/ornikar/kitt/commit/36619db218b4f992dc9c431072b33f941b10a05d))
173
125
 
174
-
175
-
176
126
  ## [3.3.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.2.0...@ornikar/bumper@3.3.0) (2026-03-10)
177
127
 
178
-
179
128
  ### Features
180
129
 
181
130
  * **bumper:** create typography migration process [no issue] ([#2914](https://github.com/ornikar/kitt/issues/2914)) ([61d576a](https://github.com/ornikar/kitt/commit/61d576ada6c95fc8bdb8bf5aa1a3ca63a1da9327))
182
131
 
183
-
184
-
185
132
  ## [3.2.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.1.0...@ornikar/bumper@3.2.0) (2026-03-09)
186
133
 
187
-
188
134
  ### Features
189
135
 
190
136
  * **bumper:** migrate Typography to Tamagui styled context [no issue] ([#2919](https://github.com/ornikar/kitt/issues/2919)) ([69d784f](https://github.com/ornikar/kitt/commit/69d784f77227bacbb36731158b8043a97d670b12))
191
137
 
192
-
193
-
194
138
  ## [3.1.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.0.3...@ornikar/bumper@3.1.0) (2026-03-05)
195
139
 
196
-
197
140
  ### Features
198
141
 
199
142
  * **bumper:** new types and reponsive [no issue] ([#2916](https://github.com/ornikar/kitt/issues/2916)) ([084a2fb](https://github.com/ornikar/kitt/commit/084a2fb21ee632962892f5b96f9b31dff4aae3ef))
200
143
 
201
-
202
-
203
144
  ## [3.0.3](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.0.2...@ornikar/bumper@3.0.3) (2026-03-04)
204
145
 
205
-
206
146
  ### Bug Fixes
207
147
 
208
148
  * **bumper:** remove label-xl variant and adjust heading-2xs size [no issue] ([#2913](https://github.com/ornikar/kitt/issues/2913)) ([4d350ea](https://github.com/ornikar/kitt/commit/4d350eaca572bad87cc59075fe2c3bfda820774b))
209
149
 
210
-
211
-
212
150
  ## [3.0.2](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.0.1...@ornikar/bumper@3.0.2) (2026-03-03)
213
151
 
214
-
215
152
  ### Bug Fixes
216
153
 
217
154
  * **bumper:** typography default props not applied [no issue] ([#2908](https://github.com/ornikar/kitt/issues/2908)) ([69a2a59](https://github.com/ornikar/kitt/commit/69a2a59f7e470502382fd55f56c8ef9f8bd7176e))
218
155
 
219
-
220
-
221
156
  ## [3.0.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.0.0...@ornikar/bumper@3.0.1) (2026-02-27)
222
157
 
223
-
224
158
  ### Bug Fixes
225
159
 
226
160
  * **bumper:** add GTStandardNarrow font for content-caps variants OSE-23704 ([#2905](https://github.com/ornikar/kitt/issues/2905)) ([89bfdab](https://github.com/ornikar/kitt/commit/89bfdab40b29d5fc7ce1bfc23af3bcf04d9bcdc5))
227
161
 
228
-
229
-
230
162
  ## [3.0.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.14.0...@ornikar/bumper@3.0.0) (2026-02-23)
231
163
 
232
-
233
164
  ### ⚠ BREAKING CHANGES
234
165
 
235
166
  * **deps:** upgrade expo 53 [OSE-20839] (#2814)
@@ -238,61 +169,42 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
238
169
 
239
170
  * **deps:** upgrade expo 53 [OSE-20839] ([#2814](https://github.com/ornikar/kitt/issues/2814)) ([1c8e4de](https://github.com/ornikar/kitt/commit/1c8e4de5c152987a71cc0d7206180c834ec359ac))
240
171
 
241
-
242
-
243
172
  ## [2.14.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.13.0...@ornikar/bumper@2.14.0) (2026-02-19)
244
173
 
245
-
246
174
  ### Features
247
175
 
248
176
  * **bumper:** add Loader component [OSE-22812] ([#2889](https://github.com/ornikar/kitt/issues/2889)) ([d1029e1](https://github.com/ornikar/kitt/commit/d1029e14d509fbb0d24e400ba37c6dcc7c63f37c))
249
177
 
250
-
251
178
  ### Bug Fixes
252
179
 
253
180
  * **bumper:** scoped Storybook export [OSE-22811] ([#2894](https://github.com/ornikar/kitt/issues/2894)) ([01b1039](https://github.com/ornikar/kitt/commit/01b103906dab370da12c658a685e987da190d246))
254
181
 
255
-
256
-
257
182
  ## [2.13.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.12.0...@ornikar/bumper@2.13.0) (2026-02-16)
258
183
 
259
-
260
184
  ### Features
261
185
 
262
186
  * **bumper:** add Badge component [OSE-22813] ([#2882](https://github.com/ornikar/kitt/issues/2882)) ([8c92ea8](https://github.com/ornikar/kitt/commit/8c92ea8e4c3670c42095d180c6255ced646950b9))
263
187
 
264
-
265
-
266
188
  ## [2.12.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.11.0...@ornikar/bumper@2.12.0) (2026-02-12)
267
189
 
268
-
269
190
  ### Features
270
191
 
271
192
  * **bumper:** add icon size tokens and restrict Icon sizes [no issue] ([#2880](https://github.com/ornikar/kitt/issues/2880)) ([6f66188](https://github.com/ornikar/kitt/commit/6f66188ffc35275a6682d153cfafce39490fd845))
272
193
 
273
-
274
-
275
194
  ## [2.11.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.10.0...@ornikar/bumper@2.11.0) (2026-02-10)
276
195
 
277
-
278
196
  ### Features
279
197
 
280
198
  * **kitt-icons:** new ornicons [OSE-22546] ([#2866](https://github.com/ornikar/kitt/issues/2866)) ([cd80e74](https://github.com/ornikar/kitt/commit/cd80e74125de8cc56d1537fdce8a79fcfc5a9cfb))
281
199
 
282
-
283
-
284
200
  ## [2.10.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.9.0...@ornikar/bumper@2.10.0) (2026-02-09)
285
201
 
286
-
287
202
  ### Features
288
203
 
289
204
  * **bumper:** use actions [OSE-22809] ([#2867](https://github.com/ornikar/kitt/issues/2867)) ([02c12ee](https://github.com/ornikar/kitt/commit/02c12ee6d1ab03c8cb64d3acae96519802f9f0d2))
290
205
 
291
-
292
-
293
206
  ## [2.9.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.8.0...@ornikar/bumper@2.9.0) (2026-01-27)
294
207
 
295
-
296
208
  ### Features
297
209
 
298
210
  * **bumper:** abstract semantic tokens [no issue] ([#2858](https://github.com/ornikar/kitt/issues/2858)) ([c69c325](https://github.com/ornikar/kitt/commit/c69c325fadfbb3fc0da45eb7b73c00e72d595cf2))
@@ -303,124 +215,81 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
303
215
  * **bumper:** create TypographyLink OSE-22634 ([#2857](https://github.com/ornikar/kitt/issues/2857)) ([0ada312](https://github.com/ornikar/kitt/commit/0ada312fd3b1c6c5a5b2ae9f117bdd3e9d4fea63))
304
216
  * **bumper:** shared argTypes [OSE-22659] ([#2859](https://github.com/ornikar/kitt/issues/2859)) ([e0d7b77](https://github.com/ornikar/kitt/commit/e0d7b77f2563649a1e4c140a1067a734accd71cf))
305
217
 
306
-
307
-
308
218
  ## [2.8.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.7.1...@ornikar/bumper@2.8.0) (2026-01-19)
309
219
 
310
-
311
220
  ### Features
312
221
 
313
222
  * **deps:** update dependency @tamagui/core to v1.144.2 ([#2849](https://github.com/ornikar/kitt/issues/2849)) ([32c22aa](https://github.com/ornikar/kitt/commit/32c22aae7ae6d3e623c01e10040679f934f29168))
314
223
  * initial Claude implementation [no issue] ([#2846](https://github.com/ornikar/kitt/issues/2846)) ([f721093](https://github.com/ornikar/kitt/commit/f72109331698b6a9c4c41a4a0c740a0135174a35))
315
224
 
316
-
317
-
318
225
  ## [2.7.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.7.0...@ornikar/bumper@2.7.1) (2026-01-14)
319
226
 
320
-
321
227
  ### Bug Fixes
322
228
 
323
229
  * **deps:** update node.js to v22.22.0 ([#2841](https://github.com/ornikar/kitt/issues/2841)) ([bb6f3fe](https://github.com/ornikar/kitt/commit/bb6f3fe8830c2aa534453c1c70d625b184e9c18e))
324
230
 
325
-
326
-
327
231
  ## [2.7.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.6.0...@ornikar/bumper@2.7.0) (2026-01-14)
328
232
 
329
-
330
233
  ### Features
331
234
 
332
235
  * **bumper:** update Typography OSE-22232 ([#2834](https://github.com/ornikar/kitt/issues/2834)) ([b6feb3c](https://github.com/ornikar/kitt/commit/b6feb3c5b294b69ad94ab7a95378cb3a1cceb3de))
333
236
 
334
-
335
237
  ### Bug Fixes
336
238
 
337
239
  * **bumper:** import issue [no issue] ([#2837](https://github.com/ornikar/kitt/issues/2837)) ([455ac9d](https://github.com/ornikar/kitt/commit/455ac9de93c2be0f96a7d18ae7e47cfd866d9054))
338
240
 
339
-
340
-
341
241
  ## [2.6.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.5.0...@ornikar/bumper@2.6.0) (2026-01-12)
342
242
 
343
-
344
243
  ### Features
345
244
 
346
245
  * bump storybook to v8 [OSE-22429] ([#2813](https://github.com/ornikar/kitt/issues/2813)) ([1d8a829](https://github.com/ornikar/kitt/commit/1d8a8293983c8c5d15f3904bd06d5aafc2f132a6))
347
246
  * **bumper:** add Pressable primitive [OSE-22230] ([#2829](https://github.com/ornikar/kitt/issues/2829)) ([583d538](https://github.com/ornikar/kitt/commit/583d5380a3a420bfbebc3b141e6b84b50653105f))
348
247
 
349
-
350
-
351
248
  ## [2.5.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.4.1...@ornikar/bumper@2.5.0) (2026-01-06)
352
249
 
353
-
354
250
  ### Features
355
251
 
356
252
  * **bumper:** basic primitives [OSE-22229] ([#2823](https://github.com/ornikar/kitt/issues/2823)) ([246b7eb](https://github.com/ornikar/kitt/commit/246b7ebe35c2019d5777b278aa861655198f3f9f))
357
253
  * sizes, spaces and radius tokens [OSE-22235] ([#2822](https://github.com/ornikar/kitt/issues/2822)) ([9a65f6e](https://github.com/ornikar/kitt/commit/9a65f6e1b5b660b157c1bb339d0426e61a054b49))
358
254
 
359
-
360
-
361
255
  ## [2.4.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.4.0...@ornikar/bumper@2.4.1) (2025-12-17)
362
256
 
363
257
  **Note:** Version bump only for package @ornikar/bumper
364
258
 
365
-
366
-
367
-
368
-
369
259
  ## [2.4.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.2.1...@ornikar/bumper@2.4.0) (2025-12-10)
370
260
 
371
-
372
261
  ### Features
373
262
 
374
263
  * **bumper:** update palettes and tokens OSE-21408 ([#2798](https://github.com/ornikar/kitt/issues/2798)) ([8a8e3cf](https://github.com/ornikar/kitt/commit/8a8e3cfaa9c70e1f0ea2237f049dbe011440266c))
375
264
 
376
-
377
-
378
265
  ## [2.3.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.2.1...@ornikar/bumper@2.3.0) (2025-12-10)
379
266
 
380
-
381
267
  ### Features
382
268
 
383
269
  * **bumper:** update palettes and tokens OSE-21408 ([#2798](https://github.com/ornikar/kitt/issues/2798)) ([8a8e3cf](https://github.com/ornikar/kitt/commit/8a8e3cfaa9c70e1f0ea2237f049dbe011440266c))
384
270
 
385
-
386
-
387
271
  ## [2.2.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.2.0...@ornikar/bumper@2.2.1) (2025-12-05)
388
272
 
389
273
  **Note:** Version bump only for package @ornikar/bumper
390
274
 
391
-
392
-
393
-
394
-
395
275
  ## [2.2.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.1.0...@ornikar/bumper@2.2.0) (2025-11-24)
396
276
 
397
-
398
277
  ### Features
399
278
 
400
279
  * enable tamagui compiler OSE-21194 ([#2768](https://github.com/ornikar/kitt/issues/2768)) ([85f2073](https://github.com/ornikar/kitt/commit/85f20737db7a71e64de27a015f62dcfe4d5945bc))
401
280
 
402
-
403
-
404
281
  ## [2.1.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.0.1...@ornikar/bumper@2.1.0) (2025-11-21)
405
282
 
406
-
407
283
  ### Features
408
284
 
409
285
  * add bumper semantic token into kitt-u OSE-21196 ([#2760](https://github.com/ornikar/kitt/issues/2760)) ([ffcb2ed](https://github.com/ornikar/kitt/commit/ffcb2edfefe940f744d17d1de27b9d0b7cee6800))
410
286
 
411
-
412
-
413
287
  ## [2.0.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.0.0...@ornikar/bumper@2.0.1) (2025-11-19)
414
288
 
415
289
  **Note:** Version bump only for package @ornikar/bumper
416
290
 
417
-
418
-
419
-
420
-
421
291
  ## [2.0.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@1.1.0...@ornikar/bumper@2.0.0) (2025-11-17)
422
292
 
423
-
424
293
  ### ⚠ BREAKING CHANGES
425
294
 
426
295
  * **kitt-u:** update deepPurple palette [no issue] (#2757)
@@ -429,20 +298,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
429
298
 
430
299
  * **kitt-u:** update deepPurple palette [no issue] ([#2757](https://github.com/ornikar/kitt/issues/2757)) ([89c15b1](https://github.com/ornikar/kitt/commit/89c15b1693c6a08f3d47f5b7bd6cef528b7af102))
431
300
 
432
-
433
-
434
301
  ## 1.1.0 (2025-11-17)
435
302
 
436
-
437
303
  ### Features
438
304
 
439
305
  * rename kitt2 to bumper [OSE-21190] ([#2749](https://github.com/ornikar/kitt/issues/2749)) ([820e247](https://github.com/ornikar/kitt/commit/820e24764a257e103afb2f9a6f478d64647a42ff))
440
306
 
441
-
442
-
443
307
  ## 1.0.0 (2025-10-16)
444
308
 
445
-
446
309
  ### Features
447
310
 
448
311
  * init kitt 2 package [no issue] ([#2709](https://github.com/ornikar/kitt/issues/2709)) ([ffe4260](https://github.com/ornikar/kitt/commit/ffe42601333d6623c9ce80553824b3471937a0b7))
@@ -19,6 +19,8 @@ export { Typography } from './system/content/typography';
19
19
  export type { TypographyTextProps } from './system/content/typography/Typography';
20
20
  export type { TypographyIconProps } from './system/content/typography/TypographyIcon';
21
21
  export type { TypographyLinkProps } from './system/content/typography/TypographyLink';
22
+ export type { AvatarProps } from './system/dataDisplays/Avatar/Avatar';
23
+ export { Avatar } from './system/dataDisplays/Avatar/Avatar';
22
24
  export type { BadgeProps } from './system/dataDisplays/Badge/Badge';
23
25
  export { Badge } from './system/dataDisplays/Badge/Badge';
24
26
  export { Sticker } from './system/dataDisplays/Sticker/Sticker';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uCAAuC,CAAC;AAGvE,YAAY,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,MAAM,EAAE,MAAM,iCAAiC,CAAC;AACzD,YAAY,EAAE,UAAU,EAAE,MAAM,sCAAsC,CAAC;AACvE,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAC/D,YAAY,EAAE,eAAe,EAAE,MAAM,gDAAgD,CAAC;AACtF,OAAO,EAAE,UAAU,EAAE,MAAM,gDAAgD,CAAC;AAC5E,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC3F,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,gCAAgC,CAAC;AACvE,YAAY,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAGrD,OAAO,EAAE,MAAM,EAAE,MAAM,gCAAgC,CAAC;AACxD,YAAY,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AACjE,YAAY,EAAE,eAAe,EAAE,MAAM,wCAAwC,CAAC;AAC9E,OAAO,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AAGpE,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,YAAY,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAClF,YAAY,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AACtF,YAAY,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AAGtF,YAAY,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,MAAM,uCAAuC,CAAC;AAChE,YAAY,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAGxE,OAAO,EAAE,kBAAkB,EAAE,MAAM,oDAAoD,CAAC;AACxF,OAAO,EAAE,wBAAwB,EAAE,MAAM,0DAA0D,CAAC;AACpG,OAAO,EAAE,aAAa,EAAE,MAAM,+CAA+C,CAAC;AAC9E,YAAY,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AACzF,OAAO,EAAE,iBAAiB,EAAE,MAAM,4CAA4C,CAAC;AAC/E,YAAY,EAAE,kBAAkB,EAAE,MAAM,kDAAkD,CAAC;AAC3F,OAAO,EAAE,qBAAqB,EAAE,MAAM,kDAAkD,CAAC;AAGzF,YAAY,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAClE,OAAO,EAAE,MAAM,EAAE,MAAM,gCAAgC,CAAC;AAGxD,YAAY,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,OAAO,EAAE,MAAM,iCAAiC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uCAAuC,CAAC;AAGvE,YAAY,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,MAAM,EAAE,MAAM,iCAAiC,CAAC;AACzD,YAAY,EAAE,UAAU,EAAE,MAAM,sCAAsC,CAAC;AACvE,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAC/D,YAAY,EAAE,eAAe,EAAE,MAAM,gDAAgD,CAAC;AACtF,OAAO,EAAE,UAAU,EAAE,MAAM,gDAAgD,CAAC;AAC5E,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC3F,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,gCAAgC,CAAC;AACvE,YAAY,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAGrD,OAAO,EAAE,MAAM,EAAE,MAAM,gCAAgC,CAAC;AACxD,YAAY,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AACjE,YAAY,EAAE,eAAe,EAAE,MAAM,wCAAwC,CAAC;AAC9E,OAAO,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AAGpE,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,YAAY,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAClF,YAAY,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AACtF,YAAY,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AAGtF,YAAY,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AACvE,OAAO,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAC;AAC7D,YAAY,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,MAAM,uCAAuC,CAAC;AAChE,YAAY,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAGxE,OAAO,EAAE,kBAAkB,EAAE,MAAM,oDAAoD,CAAC;AACxF,OAAO,EAAE,wBAAwB,EAAE,MAAM,0DAA0D,CAAC;AACpG,OAAO,EAAE,aAAa,EAAE,MAAM,+CAA+C,CAAC;AAC9E,YAAY,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AACzF,OAAO,EAAE,iBAAiB,EAAE,MAAM,4CAA4C,CAAC;AAC/E,YAAY,EAAE,kBAAkB,EAAE,MAAM,kDAAkD,CAAC;AAC3F,OAAO,EAAE,qBAAqB,EAAE,MAAM,kDAAkD,CAAC;AAGzF,YAAY,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAClE,OAAO,EAAE,MAAM,EAAE,MAAM,gCAAgC,CAAC;AAGxD,YAAY,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,OAAO,EAAE,MAAM,iCAAiC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"light.d.ts","sourceRoot":"","sources":["../../../../../../src/system/core/themes/light/light.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAGtC,eAAO,MAAM,KAAK,EAAE,KAuFnB,CAAC"}
1
+ {"version":3,"file":"light.d.ts","sourceRoot":"","sources":["../../../../../../src/system/core/themes/light/light.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAGtC,eAAO,MAAM,KAAK,EAAE,KA0FnB,CAAC"}
@@ -8,5 +8,7 @@ export type ThemeDivider = Record<(typeof THEME_DIVIDER)[number], string>;
8
8
  export declare const THEME_DIVIDER: readonly ["divider.border.subtle", "divider.border.subtle.onContrasted", "divider.border.strong", "divider.border.strong.onContrasted"];
9
9
  export type ThemeButton = Record<(typeof THEME_BUTTON)[number], string>;
10
10
  export declare const THEME_BUTTON: readonly ["button.bg.primary.default", "button.bg.primary.pressed", "button.bg.primary.onContrasted.default", "button.bg.primary.onContrasted.pressed", "button.bg.secondary.default", "button.bg.secondary.pressed", "button.bg.secondary.onContrasted.default", "button.bg.secondary.onContrasted.pressed", "button.bg.tertiary.default", "button.bg.tertiary.pressed", "button.bg.tertiary.onContrasted.default", "button.bg.tertiary.onContrasted.pressed", "button.bg.danger.default", "button.bg.danger.pressed", "button.bg.danger.onContrasted.default", "button.bg.danger.onContrasted.pressed"];
11
- export type Theme = ThemeContent & ThemeBackground & ThemeBorder & ThemeDivider & ThemeButton;
11
+ export type ThemeAvatar = Record<(typeof THEME_AVATAR)[number], string>;
12
+ export declare const THEME_AVATAR: readonly ["avatar.bg"];
13
+ export type Theme = ThemeContent & ThemeBackground & ThemeBorder & ThemeDivider & ThemeButton & ThemeAvatar;
12
14
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/system/core/themes/types.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAE1E,eAAO,MAAM,aAAa,uXAiBhB,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAEhF,eAAO,MAAM,gBAAgB,gkBA4BnB,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAExE,eAAO,MAAM,YAAY,ySAef,CAAC;AAGX,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAE1E,eAAO,MAAM,aAAa,yIAKhB,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAExE,eAAO,MAAM,YAAY,2kBAiBf,CAAC;AAEX,MAAM,MAAM,KAAK,GAAG,YAAY,GAAG,eAAe,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/system/core/themes/types.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAE1E,eAAO,MAAM,aAAa,uXAiBhB,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAEhF,eAAO,MAAM,gBAAgB,gkBA4BnB,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAExE,eAAO,MAAM,YAAY,ySAef,CAAC;AAGX,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAE1E,eAAO,MAAM,aAAa,yIAKhB,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAExE,eAAO,MAAM,YAAY,2kBAiBf,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAExE,eAAO,MAAM,YAAY,wBAAyB,CAAC;AAEnD,MAAM,MAAM,KAAK,GAAG,YAAY,GAAG,eAAe,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,WAAW,CAAC"}
@@ -0,0 +1,52 @@
1
+ import type { CenterProps } from '../../core/primitives/Center';
2
+ import type { TamaguiMediaProps } from '../../types';
3
+ export type AvatarSize = 'small' | 'medium' | 'large' | 'xlarge';
4
+ export type AvatarShape = 'square' | 'circle';
5
+ export interface InternalAvatarWithoutMediaProps extends Pick<CenterProps, 'testID'> {
6
+ /**
7
+ * Image source if none is given then fallback to the initials
8
+ */
9
+ src?: string;
10
+ /**
11
+ * The firstname used to produce the initials. If none is given then
12
+ * fallback on the default placeholder image.
13
+ */
14
+ firstname?: string;
15
+ /**
16
+ * The firstname used to produce the initials
17
+ */
18
+ lastname?: string;
19
+ /**
20
+ * Is this component in disabled state ?
21
+ */
22
+ disabled?: boolean;
23
+ /**
24
+ * @default large
25
+ */
26
+ size?: AvatarSize;
27
+ /**
28
+ * If size is omited, you can use width and height to tweak the avatar
29
+ * size as you wish
30
+ */
31
+ width?: number;
32
+ /**
33
+ * @see width
34
+ */
35
+ height?: number;
36
+ /**
37
+ * @default square
38
+ */
39
+ shape?: AvatarShape;
40
+ }
41
+ export type AvatarProps = TamaguiMediaProps<InternalAvatarWithoutMediaProps>;
42
+ export declare const InternalAvatarFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
43
+ size?: "small" | "medium" | "large" | "xlarge" | undefined;
44
+ disabled?: boolean | undefined;
45
+ shape?: "circle" | "square" | undefined;
46
+ }, import("@tamagui/core").StaticConfigPublic>;
47
+ export declare const Avatar: import("@tamagui/core").TamaguiComponent<AvatarProps, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & import("../../types").PropsWithoutMediaStyles<InternalAvatarWithoutMediaProps> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").PropsWithoutMediaStyles<InternalAvatarWithoutMediaProps>>, import("@tamagui/core").StackStyleBase, {
48
+ size?: "small" | "medium" | "large" | "xlarge" | undefined;
49
+ disabled?: boolean | undefined;
50
+ shape?: "circle" | "square" | undefined;
51
+ }, import("@tamagui/core").StaticConfigPublic>;
52
+ //# sourceMappingURL=Avatar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../../../../../src/system/dataDisplays/Avatar/Avatar.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAEhE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAOrD,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,CAAC;AACjE,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAE9C,MAAM,WAAW,+BAAgC,SAAQ,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC;IAClF;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;IAElB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,KAAK,CAAC,EAAE,WAAW,CAAC;CACrB;AAED,MAAM,MAAM,WAAW,GAAG,iBAAiB,CAAC,+BAA+B,CAAC,CAAC;AAE7E,eAAO,MAAM,mBAAmB;;;;8CAwC9B,CAAC;AAEH,eAAO,MAAM,MAAM;;;;8CAoBjB,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { ReactNode } from 'react';
2
+ import type { AvatarProps } from '../Avatar';
3
+ export type AvatarImageProps = Required<Pick<AvatarProps, 'src'>>;
4
+ export declare function AvatarImage({ src }: AvatarImageProps): ReactNode;
5
+ //# sourceMappingURL=AvatarImage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AvatarImage.d.ts","sourceRoot":"","sources":["../../../../../../src/system/dataDisplays/Avatar/components/AvatarImage.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAG7C,MAAM,MAAM,gBAAgB,GAAG,QAAQ,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC,CAAC;AAiBlE,wBAAgB,WAAW,CAAC,EAAE,GAAG,EAAE,EAAE,gBAAgB,GAAG,SAAS,CAShE"}
@@ -0,0 +1,6 @@
1
+ import type { ReactNode } from 'react';
2
+ import type { AvatarProps } from '../Avatar';
3
+ export type AvatarInitialProps = Required<Pick<AvatarProps, 'firstname' | 'lastname'>>;
4
+ export declare function extractInitial({ firstname, lastname }: AvatarInitialProps): string;
5
+ export declare function AvatarInitial(props: AvatarInitialProps): ReactNode;
6
+ //# sourceMappingURL=AvatarInitial.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AvatarInitial.d.ts","sourceRoot":"","sources":["../../../../../../src/system/dataDisplays/Avatar/components/AvatarInitial.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,KAAK,EAAE,WAAW,EAAc,MAAM,WAAW,CAAC;AAGzD,MAAM,MAAM,kBAAkB,GAAG,QAAQ,CAAC,IAAI,CAAC,WAAW,EAAE,WAAW,GAAG,UAAU,CAAC,CAAC,CAAC;AAEvF,wBAAgB,cAAc,CAAC,EAAE,SAAS,EAAE,QAAQ,EAAE,EAAE,kBAAkB,GAAG,MAAM,CAElF;AAeD,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,GAAG,SAAS,CAElE"}
@@ -0,0 +1,3 @@
1
+ import type { AvatarProps } from './Avatar';
2
+ export declare const context: import("@tamagui/core").StyledContext<Required<Pick<AvatarProps, "size" | "disabled" | "shape">>>;
3
+ //# sourceMappingURL=context.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../../../src/system/dataDisplays/Avatar/context.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAI5C,eAAO,MAAM,OAAO,mGAIlB,CAAC"}