@ornikar/bumper 3.12.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 +12 -140
  2. package/dist/definitions/index.d.ts +4 -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 +190 -9
  16. package/dist/index-metro.es.android.js.map +1 -1
  17. package/dist/index-metro.es.ios.js +190 -9
  18. package/dist/index-metro.es.ios.js.map +1 -1
  19. package/dist/index-node-22.22.cjs.js +193 -7
  20. package/dist/index-node-22.22.cjs.js.map +1 -1
  21. package/dist/index-node-22.22.cjs.web.js +193 -7
  22. package/dist/index-node-22.22.cjs.web.js.map +1 -1
  23. package/dist/index-node-22.22.es.mjs +192 -9
  24. package/dist/index-node-22.22.es.mjs.map +1 -1
  25. package/dist/index-node-22.22.es.web.mjs +192 -9
  26. package/dist/index-node-22.22.es.web.mjs.map +1 -1
  27. package/dist/index.es.js +193 -9
  28. package/dist/index.es.js.map +1 -1
  29. package/dist/index.es.web.js +193 -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 +6 -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,8 +3,19 @@
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.12.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.11.0...@ornikar/bumper@3.12.0) (2026-04-29)
6
+ ## [3.14.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.13.0...@ornikar/bumper@3.14.0) (2026-05-04)
7
+
8
+ ### Features
9
+
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)
7
13
 
14
+ ### Features
15
+
16
+ * export divider component [no-issue] ([#3001](https://github.com/ornikar/kitt/issues/3001)) ([f67b6fa](https://github.com/ornikar/kitt/commit/f67b6fa6ba573c6e495ebac3d65f06d2d6e80901))
17
+
18
+ ## [3.12.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.11.0...@ornikar/bumper@3.12.0) (2026-04-29)
8
19
 
9
20
  ### Features
10
21
 
@@ -12,215 +23,144 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
12
23
  * **bumper:** improve PropsToTamaguiVariants generics [no-issue] ([#2995](https://github.com/ornikar/kitt/issues/2995)) ([dfb5029](https://github.com/ornikar/kitt/commit/dfb5029562aca091cec4a1f5c4f3548c7d943360))
13
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))
14
25
 
15
-
16
-
17
26
  ## [3.11.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.10.1...@ornikar/bumper@3.11.0) (2026-04-23)
18
27
 
19
-
20
28
  ### Features
21
29
 
22
30
  * create Divider component [OSE-24567] ([#2988](https://github.com/ornikar/kitt/issues/2988)) ([de7771e](https://github.com/ornikar/kitt/commit/de7771ef210dba73cfb03d8719659081ec536f49))
23
31
 
24
-
25
32
  ### Bug Fixes
26
33
 
27
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))
28
35
 
29
-
30
-
31
36
  ## [3.10.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.10.0...@ornikar/bumper@3.10.1) (2026-04-23)
32
37
 
33
-
34
38
  ### Bug Fixes
35
39
 
36
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))
37
41
 
38
-
39
-
40
42
  ## [3.10.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.9.1...@ornikar/bumper@3.10.0) (2026-04-15)
41
43
 
42
-
43
44
  ### Features
44
45
 
45
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))
46
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))
47
48
 
48
-
49
49
  ### Bug Fixes
50
50
 
51
51
  * **bumper:** update Typography migration doc [no-issue] ([#2975](https://github.com/ornikar/kitt/issues/2975)) ([a08992e](https://github.com/ornikar/kitt/commit/a08992e6ba8159a4fa8e34c2d92aba74a2cd2760))
52
52
 
53
-
54
-
55
53
  ## [3.9.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.9.0...@ornikar/bumper@3.9.1) (2026-04-14)
56
54
 
57
-
58
55
  ### Bug Fixes
59
56
 
60
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))
61
58
 
62
-
63
-
64
59
  ## [3.9.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.8.1...@ornikar/bumper@3.9.0) (2026-04-14)
65
60
 
66
-
67
61
  ### Features
68
62
 
69
63
  * **bumper:** add negative space tokens [no issue] ([#2964](https://github.com/ornikar/kitt/issues/2964)) ([7ab7113](https://github.com/ornikar/kitt/commit/7ab7113cb2dc027f321befb80ebe3a0d7b7bbc70))
70
64
 
71
-
72
65
  ### Bug Fixes
73
66
 
74
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))
75
68
 
76
-
77
-
78
69
  ## [3.8.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.8.0...@ornikar/bumper@3.8.1) (2026-04-01)
79
70
 
80
71
  **Note:** Version bump only for package @ornikar/bumper
81
72
 
82
-
83
-
84
-
85
-
86
73
  ## [3.8.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.7.2...@ornikar/bumper@3.8.0) (2026-03-31)
87
74
 
88
-
89
75
  ### Features
90
76
 
91
77
  * **bumper:** less restrictive sizes [no-issue] ([#2955](https://github.com/ornikar/kitt/issues/2955)) ([82e09b7](https://github.com/ornikar/kitt/commit/82e09b78212327b16e15463c4d2ee37897779328))
92
78
 
93
-
94
-
95
79
  ## [3.7.2](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.7.1...@ornikar/bumper@3.7.2) (2026-03-27)
96
80
 
97
-
98
81
  ### Bug Fixes
99
82
 
100
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))
101
84
 
102
-
103
-
104
85
  ## [3.7.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.7.0...@ornikar/bumper@3.7.1) (2026-03-23)
105
86
 
106
87
  **Note:** Version bump only for package @ornikar/bumper
107
88
 
108
-
109
-
110
-
111
-
112
89
  ## [3.7.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.6.2...@ornikar/bumper@3.7.0) (2026-03-17)
113
90
 
114
-
115
91
  ### Features
116
92
 
117
93
  * **bumper:** responsive and docs [no-issue] ([#2935](https://github.com/ornikar/kitt/issues/2935)) ([06371da](https://github.com/ornikar/kitt/commit/06371dadd86fa9af62703a453341380363d4786e))
118
94
 
119
-
120
-
121
95
  ## [3.6.2](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.6.1...@ornikar/bumper@3.6.2) (2026-03-16)
122
96
 
123
-
124
97
  ### Bug Fixes
125
98
 
126
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))
127
100
 
128
-
129
-
130
101
  ## [3.6.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.6.0...@ornikar/bumper@3.6.1) (2026-03-13)
131
102
 
132
-
133
103
  ### Bug Fixes
134
104
 
135
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))
136
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))
137
107
 
138
-
139
-
140
108
  ## [3.6.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.5.0...@ornikar/bumper@3.6.0) (2026-03-12)
141
109
 
142
-
143
110
  ### Features
144
111
 
145
112
  * revert add Metro exports [OSE-23450] ([#2929](https://github.com/ornikar/kitt/issues/2929)) ([303b1d7](https://github.com/ornikar/kitt/commit/303b1d76441c44cb0423053305c7df276fc58c4f))
146
113
 
147
-
148
-
149
114
  ## [3.5.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.4.0...@ornikar/bumper@3.5.0) (2026-03-12)
150
115
 
151
-
152
116
  ### Features
153
117
 
154
118
  * add Metro exports [OSE-23450] ([#2926](https://github.com/ornikar/kitt/issues/2926)) ([00f1ef8](https://github.com/ornikar/kitt/commit/00f1ef87be8b190c75a9721d65708b3ea2bcc6ab))
155
119
 
156
-
157
-
158
120
  ## [3.4.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.3.0...@ornikar/bumper@3.4.0) (2026-03-11)
159
121
 
160
-
161
122
  ### Features
162
123
 
163
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))
164
125
 
165
-
166
-
167
126
  ## [3.3.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.2.0...@ornikar/bumper@3.3.0) (2026-03-10)
168
127
 
169
-
170
128
  ### Features
171
129
 
172
130
  * **bumper:** create typography migration process [no issue] ([#2914](https://github.com/ornikar/kitt/issues/2914)) ([61d576a](https://github.com/ornikar/kitt/commit/61d576ada6c95fc8bdb8bf5aa1a3ca63a1da9327))
173
131
 
174
-
175
-
176
132
  ## [3.2.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.1.0...@ornikar/bumper@3.2.0) (2026-03-09)
177
133
 
178
-
179
134
  ### Features
180
135
 
181
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))
182
137
 
183
-
184
-
185
138
  ## [3.1.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.0.3...@ornikar/bumper@3.1.0) (2026-03-05)
186
139
 
187
-
188
140
  ### Features
189
141
 
190
142
  * **bumper:** new types and reponsive [no issue] ([#2916](https://github.com/ornikar/kitt/issues/2916)) ([084a2fb](https://github.com/ornikar/kitt/commit/084a2fb21ee632962892f5b96f9b31dff4aae3ef))
191
143
 
192
-
193
-
194
144
  ## [3.0.3](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.0.2...@ornikar/bumper@3.0.3) (2026-03-04)
195
145
 
196
-
197
146
  ### Bug Fixes
198
147
 
199
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))
200
149
 
201
-
202
-
203
150
  ## [3.0.2](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.0.1...@ornikar/bumper@3.0.2) (2026-03-03)
204
151
 
205
-
206
152
  ### Bug Fixes
207
153
 
208
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))
209
155
 
210
-
211
-
212
156
  ## [3.0.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@3.0.0...@ornikar/bumper@3.0.1) (2026-02-27)
213
157
 
214
-
215
158
  ### Bug Fixes
216
159
 
217
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))
218
161
 
219
-
220
-
221
162
  ## [3.0.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.14.0...@ornikar/bumper@3.0.0) (2026-02-23)
222
163
 
223
-
224
164
  ### ⚠ BREAKING CHANGES
225
165
 
226
166
  * **deps:** upgrade expo 53 [OSE-20839] (#2814)
@@ -229,61 +169,42 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
229
169
 
230
170
  * **deps:** upgrade expo 53 [OSE-20839] ([#2814](https://github.com/ornikar/kitt/issues/2814)) ([1c8e4de](https://github.com/ornikar/kitt/commit/1c8e4de5c152987a71cc0d7206180c834ec359ac))
231
171
 
232
-
233
-
234
172
  ## [2.14.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.13.0...@ornikar/bumper@2.14.0) (2026-02-19)
235
173
 
236
-
237
174
  ### Features
238
175
 
239
176
  * **bumper:** add Loader component [OSE-22812] ([#2889](https://github.com/ornikar/kitt/issues/2889)) ([d1029e1](https://github.com/ornikar/kitt/commit/d1029e14d509fbb0d24e400ba37c6dcc7c63f37c))
240
177
 
241
-
242
178
  ### Bug Fixes
243
179
 
244
180
  * **bumper:** scoped Storybook export [OSE-22811] ([#2894](https://github.com/ornikar/kitt/issues/2894)) ([01b1039](https://github.com/ornikar/kitt/commit/01b103906dab370da12c658a685e987da190d246))
245
181
 
246
-
247
-
248
182
  ## [2.13.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.12.0...@ornikar/bumper@2.13.0) (2026-02-16)
249
183
 
250
-
251
184
  ### Features
252
185
 
253
186
  * **bumper:** add Badge component [OSE-22813] ([#2882](https://github.com/ornikar/kitt/issues/2882)) ([8c92ea8](https://github.com/ornikar/kitt/commit/8c92ea8e4c3670c42095d180c6255ced646950b9))
254
187
 
255
-
256
-
257
188
  ## [2.12.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.11.0...@ornikar/bumper@2.12.0) (2026-02-12)
258
189
 
259
-
260
190
  ### Features
261
191
 
262
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))
263
193
 
264
-
265
-
266
194
  ## [2.11.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.10.0...@ornikar/bumper@2.11.0) (2026-02-10)
267
195
 
268
-
269
196
  ### Features
270
197
 
271
198
  * **kitt-icons:** new ornicons [OSE-22546] ([#2866](https://github.com/ornikar/kitt/issues/2866)) ([cd80e74](https://github.com/ornikar/kitt/commit/cd80e74125de8cc56d1537fdce8a79fcfc5a9cfb))
272
199
 
273
-
274
-
275
200
  ## [2.10.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.9.0...@ornikar/bumper@2.10.0) (2026-02-09)
276
201
 
277
-
278
202
  ### Features
279
203
 
280
204
  * **bumper:** use actions [OSE-22809] ([#2867](https://github.com/ornikar/kitt/issues/2867)) ([02c12ee](https://github.com/ornikar/kitt/commit/02c12ee6d1ab03c8cb64d3acae96519802f9f0d2))
281
205
 
282
-
283
-
284
206
  ## [2.9.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.8.0...@ornikar/bumper@2.9.0) (2026-01-27)
285
207
 
286
-
287
208
  ### Features
288
209
 
289
210
  * **bumper:** abstract semantic tokens [no issue] ([#2858](https://github.com/ornikar/kitt/issues/2858)) ([c69c325](https://github.com/ornikar/kitt/commit/c69c325fadfbb3fc0da45eb7b73c00e72d595cf2))
@@ -294,124 +215,81 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
294
215
  * **bumper:** create TypographyLink OSE-22634 ([#2857](https://github.com/ornikar/kitt/issues/2857)) ([0ada312](https://github.com/ornikar/kitt/commit/0ada312fd3b1c6c5a5b2ae9f117bdd3e9d4fea63))
295
216
  * **bumper:** shared argTypes [OSE-22659] ([#2859](https://github.com/ornikar/kitt/issues/2859)) ([e0d7b77](https://github.com/ornikar/kitt/commit/e0d7b77f2563649a1e4c140a1067a734accd71cf))
296
217
 
297
-
298
-
299
218
  ## [2.8.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.7.1...@ornikar/bumper@2.8.0) (2026-01-19)
300
219
 
301
-
302
220
  ### Features
303
221
 
304
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))
305
223
  * initial Claude implementation [no issue] ([#2846](https://github.com/ornikar/kitt/issues/2846)) ([f721093](https://github.com/ornikar/kitt/commit/f72109331698b6a9c4c41a4a0c740a0135174a35))
306
224
 
307
-
308
-
309
225
  ## [2.7.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.7.0...@ornikar/bumper@2.7.1) (2026-01-14)
310
226
 
311
-
312
227
  ### Bug Fixes
313
228
 
314
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))
315
230
 
316
-
317
-
318
231
  ## [2.7.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.6.0...@ornikar/bumper@2.7.0) (2026-01-14)
319
232
 
320
-
321
233
  ### Features
322
234
 
323
235
  * **bumper:** update Typography OSE-22232 ([#2834](https://github.com/ornikar/kitt/issues/2834)) ([b6feb3c](https://github.com/ornikar/kitt/commit/b6feb3c5b294b69ad94ab7a95378cb3a1cceb3de))
324
236
 
325
-
326
237
  ### Bug Fixes
327
238
 
328
239
  * **bumper:** import issue [no issue] ([#2837](https://github.com/ornikar/kitt/issues/2837)) ([455ac9d](https://github.com/ornikar/kitt/commit/455ac9de93c2be0f96a7d18ae7e47cfd866d9054))
329
240
 
330
-
331
-
332
241
  ## [2.6.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.5.0...@ornikar/bumper@2.6.0) (2026-01-12)
333
242
 
334
-
335
243
  ### Features
336
244
 
337
245
  * bump storybook to v8 [OSE-22429] ([#2813](https://github.com/ornikar/kitt/issues/2813)) ([1d8a829](https://github.com/ornikar/kitt/commit/1d8a8293983c8c5d15f3904bd06d5aafc2f132a6))
338
246
  * **bumper:** add Pressable primitive [OSE-22230] ([#2829](https://github.com/ornikar/kitt/issues/2829)) ([583d538](https://github.com/ornikar/kitt/commit/583d5380a3a420bfbebc3b141e6b84b50653105f))
339
247
 
340
-
341
-
342
248
  ## [2.5.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.4.1...@ornikar/bumper@2.5.0) (2026-01-06)
343
249
 
344
-
345
250
  ### Features
346
251
 
347
252
  * **bumper:** basic primitives [OSE-22229] ([#2823](https://github.com/ornikar/kitt/issues/2823)) ([246b7eb](https://github.com/ornikar/kitt/commit/246b7ebe35c2019d5777b278aa861655198f3f9f))
348
253
  * sizes, spaces and radius tokens [OSE-22235] ([#2822](https://github.com/ornikar/kitt/issues/2822)) ([9a65f6e](https://github.com/ornikar/kitt/commit/9a65f6e1b5b660b157c1bb339d0426e61a054b49))
349
254
 
350
-
351
-
352
255
  ## [2.4.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.4.0...@ornikar/bumper@2.4.1) (2025-12-17)
353
256
 
354
257
  **Note:** Version bump only for package @ornikar/bumper
355
258
 
356
-
357
-
358
-
359
-
360
259
  ## [2.4.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.2.1...@ornikar/bumper@2.4.0) (2025-12-10)
361
260
 
362
-
363
261
  ### Features
364
262
 
365
263
  * **bumper:** update palettes and tokens OSE-21408 ([#2798](https://github.com/ornikar/kitt/issues/2798)) ([8a8e3cf](https://github.com/ornikar/kitt/commit/8a8e3cfaa9c70e1f0ea2237f049dbe011440266c))
366
264
 
367
-
368
-
369
265
  ## [2.3.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.2.1...@ornikar/bumper@2.3.0) (2025-12-10)
370
266
 
371
-
372
267
  ### Features
373
268
 
374
269
  * **bumper:** update palettes and tokens OSE-21408 ([#2798](https://github.com/ornikar/kitt/issues/2798)) ([8a8e3cf](https://github.com/ornikar/kitt/commit/8a8e3cfaa9c70e1f0ea2237f049dbe011440266c))
375
270
 
376
-
377
-
378
271
  ## [2.2.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.2.0...@ornikar/bumper@2.2.1) (2025-12-05)
379
272
 
380
273
  **Note:** Version bump only for package @ornikar/bumper
381
274
 
382
-
383
-
384
-
385
-
386
275
  ## [2.2.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.1.0...@ornikar/bumper@2.2.0) (2025-11-24)
387
276
 
388
-
389
277
  ### Features
390
278
 
391
279
  * enable tamagui compiler OSE-21194 ([#2768](https://github.com/ornikar/kitt/issues/2768)) ([85f2073](https://github.com/ornikar/kitt/commit/85f20737db7a71e64de27a015f62dcfe4d5945bc))
392
280
 
393
-
394
-
395
281
  ## [2.1.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.0.1...@ornikar/bumper@2.1.0) (2025-11-21)
396
282
 
397
-
398
283
  ### Features
399
284
 
400
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))
401
286
 
402
-
403
-
404
287
  ## [2.0.1](https://github.com/ornikar/kitt/compare/@ornikar/bumper@2.0.0...@ornikar/bumper@2.0.1) (2025-11-19)
405
288
 
406
289
  **Note:** Version bump only for package @ornikar/bumper
407
290
 
408
-
409
-
410
-
411
-
412
291
  ## [2.0.0](https://github.com/ornikar/kitt/compare/@ornikar/bumper@1.1.0...@ornikar/bumper@2.0.0) (2025-11-17)
413
292
 
414
-
415
293
  ### ⚠ BREAKING CHANGES
416
294
 
417
295
  * **kitt-u:** update deepPurple palette [no issue] (#2757)
@@ -420,20 +298,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
420
298
 
421
299
  * **kitt-u:** update deepPurple palette [no issue] ([#2757](https://github.com/ornikar/kitt/issues/2757)) ([89c15b1](https://github.com/ornikar/kitt/commit/89c15b1693c6a08f3d47f5b7bd6cef528b7af102))
422
300
 
423
-
424
-
425
301
  ## 1.1.0 (2025-11-17)
426
302
 
427
-
428
303
  ### Features
429
304
 
430
305
  * rename kitt2 to bumper [OSE-21190] ([#2749](https://github.com/ornikar/kitt/issues/2749)) ([820e247](https://github.com/ornikar/kitt/commit/820e24764a257e103afb2f9a6f478d64647a42ff))
431
306
 
432
-
433
-
434
307
  ## 1.0.0 (2025-10-16)
435
308
 
436
-
437
309
  ### Features
438
310
 
439
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';
@@ -32,4 +34,6 @@ export type { ValueForBreakpoint } from './system/core/breakpoints/utils/breakpo
32
34
  export { getValueForBreakpoint } from './system/core/breakpoints/utils/breakpointsUtils';
33
35
  export type { LoaderProps } from './system/loading/loader/Loader';
34
36
  export { Loader } from './system/loading/loader/Loader';
37
+ export type { DividerProps } from './system/layout/divider/Divider';
38
+ export { Divider } from './system/layout/divider/Divider';
35
39
  //# sourceMappingURL=index.d.ts.map
@@ -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"}
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"}