@incodetech/welcome 1.85.0-20251219175515.0 → 1.85.0-20251219204942.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.
@@ -287,6 +287,7 @@ export type Flow = {
287
287
  export type CustomTheme = {
288
288
  buttonBorderRadius: string;
289
289
  buttonColor: string;
290
+ hideFooterBranding?: boolean;
290
291
  main: string;
291
292
  subtitle: string;
292
293
  logo: string;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "main": "./dist/onBoarding.umd.js",
4
4
  "module": "./dist/onBoarding.mjs",
5
5
  "types": "./dist/incode-welcome/src/index.d.ts",
6
- "version": "1.85.0-20251219175515.0",
6
+ "version": "1.85.0-20251219204942.0",
7
7
  "publishConfig": {},
8
8
  "exports": {
9
9
  ".": {
@@ -1,7 +0,0 @@
1
- import { ComponentProps, FC } from 'react';
2
- import { FlowPage } from '../../ui/FlowPage';
3
- type FaceFlowPageProps = Omit<ComponentProps<typeof FlowPage>, 'uiConfig' | 'flowManager'> & {
4
- closeButtonOnCancel?: () => void;
5
- };
6
- declare const FaceFlowPage: FC<FaceFlowPageProps>;
7
- export { FaceFlowPage };
@@ -1,8 +0,0 @@
1
- import { ComponentProps, FC } from 'react';
2
- import { FlowPage } from '../../ui/FlowPage';
3
- type IdFlowPageProps = Omit<ComponentProps<typeof FlowPage>, 'uiConfig' | 'flowManager'> & {
4
- closeButtonColor?: string;
5
- closeButtonOnCancel?: () => void;
6
- };
7
- declare const IdFlowPage: FC<IdFlowPageProps>;
8
- export { IdFlowPage };
@@ -1,264 +0,0 @@
1
- import { CustomTheme } from '../../../../types/src';
2
- import { CaptureIdProps } from '../../ID/CaptureId';
3
- export declare const mergeUiConfig: (uiConfig: CaptureIdProps['uiConfig'], theme: CustomTheme) => {
4
- branding: {
5
- logo: {
6
- src?: string;
7
- height?: string;
8
- };
9
- hideFooterBranding?: boolean;
10
- hideHeaderBranding?: boolean;
11
- };
12
- theming: {
13
- designTokens: {
14
- colors: import('../../../../incode-design-system/src').DeepPartial<{
15
- neutral: {
16
- light: string;
17
- dark: string;
18
- };
19
- brand: {
20
- 50: string;
21
- 200: string;
22
- 300: string;
23
- 400: string;
24
- 500: string;
25
- 600: string;
26
- 900: string;
27
- };
28
- gray: {
29
- 50: string;
30
- 100: string;
31
- 200: string;
32
- 300: string;
33
- 500: string;
34
- 700: string;
35
- 800: string;
36
- 900: string;
37
- };
38
- brandSecondary: {
39
- 50: string;
40
- 500: string;
41
- };
42
- positive: {
43
- 50: string;
44
- 600: string;
45
- 800: string;
46
- };
47
- warn: {
48
- 50: string;
49
- 400: string;
50
- 500: string;
51
- 950: string;
52
- };
53
- negative: {
54
- 50: string;
55
- 500: string;
56
- 600: string;
57
- 950: string;
58
- };
59
- }> | {
60
- brand: {
61
- 50: string;
62
- 200: string;
63
- 300: string;
64
- 400: string;
65
- 500: string;
66
- 600: string;
67
- 900: string;
68
- } | {
69
- readonly 50: string;
70
- readonly 200: string;
71
- readonly 300: string;
72
- readonly 400: string;
73
- readonly 500: `#${string}`;
74
- readonly 600: string;
75
- readonly 900: string;
76
- };
77
- };
78
- button: import('../../../../incode-design-system/src').DeepPartial<{
79
- readonly primary: {
80
- readonly surface: {
81
- readonly default: string;
82
- readonly hover: string;
83
- readonly pressed: string;
84
- readonly disabled: string;
85
- };
86
- readonly text: {
87
- readonly default: string;
88
- readonly disabled: string;
89
- };
90
- readonly border: {
91
- readonly default: string;
92
- readonly hover: string;
93
- readonly pressed: string;
94
- readonly disabled: string;
95
- };
96
- };
97
- readonly secondary: {
98
- readonly surface: {
99
- readonly default: string;
100
- readonly hover: string;
101
- readonly pressed: string;
102
- readonly disabled: string;
103
- };
104
- readonly text: {
105
- readonly default: string;
106
- readonly disabled: string;
107
- };
108
- readonly border: {
109
- readonly default: string;
110
- readonly hover: string;
111
- readonly pressed: string;
112
- readonly disabled: string;
113
- };
114
- };
115
- readonly tertiary: {
116
- readonly text: string;
117
- readonly disabled: string;
118
- };
119
- }> | {
120
- primary: {
121
- text: {
122
- default: string;
123
- };
124
- };
125
- };
126
- reference?: {
127
- colors?: import('../../../../incode-design-system/src').DeepPartial<{
128
- readonly brand: {
129
- readonly brand: string;
130
- };
131
- readonly surface: {
132
- readonly neutral: {
133
- readonly light: string;
134
- readonly dark: string;
135
- };
136
- readonly primary: {
137
- readonly '50': string;
138
- readonly '400': string;
139
- readonly '500': string;
140
- readonly '600': string;
141
- };
142
- readonly secondary: {
143
- readonly '0': string;
144
- readonly '50': string;
145
- readonly '100': string;
146
- readonly '200': string;
147
- readonly '300': string;
148
- readonly '500': string;
149
- readonly '700': string;
150
- readonly '800': string;
151
- readonly '900': string;
152
- };
153
- readonly statusSoft: {
154
- readonly negative: string;
155
- readonly warning: string;
156
- readonly positive: string;
157
- };
158
- readonly status: {
159
- readonly negative: string;
160
- readonly warning: string;
161
- readonly positive: string;
162
- };
163
- };
164
- readonly icon: {
165
- readonly primary: string;
166
- readonly secondary: string;
167
- readonly accent: string;
168
- readonly negative: string;
169
- readonly warning: string;
170
- readonly positive: string;
171
- readonly invert: string;
172
- readonly success: string;
173
- readonly disabled: string;
174
- };
175
- readonly border: {
176
- readonly primary: string;
177
- readonly disabled: string;
178
- readonly focus: string;
179
- readonly accent: string;
180
- readonly negative: string;
181
- readonly warning: string;
182
- readonly positive: string;
183
- };
184
- readonly text: {
185
- readonly body: {
186
- readonly primary: string;
187
- readonly secondary: string;
188
- readonly tertiary: string;
189
- readonly invert: string;
190
- };
191
- readonly brand: {
192
- readonly accent: string;
193
- readonly brandSecondary: string;
194
- };
195
- readonly status: {
196
- readonly negative: string;
197
- readonly warning: string;
198
- readonly positive: string;
199
- };
200
- };
201
- }>;
202
- };
203
- typography?: import('../../../../incode-design-system/src').DeepPartial<{
204
- fontSize: {
205
- xs: string;
206
- sm: string;
207
- base: string;
208
- lg: string;
209
- xl: string;
210
- '2xl': string;
211
- '3xl': string;
212
- '4xl': string;
213
- '5xl': string;
214
- '6xl': string;
215
- };
216
- fontWeight: {
217
- normal: string;
218
- medium: string;
219
- semibold: string;
220
- bold: string;
221
- };
222
- lineHeight: {
223
- none: string;
224
- tight: string;
225
- snug: string;
226
- normal: string;
227
- relaxed: string;
228
- loose: string;
229
- };
230
- letterSpacing: {
231
- tighter: string;
232
- tight: string;
233
- normal: string;
234
- wide: string;
235
- wider: string;
236
- widest: string;
237
- };
238
- fontFamily: {
239
- sans: string[];
240
- mono: string[];
241
- };
242
- }>;
243
- spinner?: import('../../../../incode-design-system/src').DeepPartial<{
244
- surface: {
245
- primary: string;
246
- secondary: string;
247
- };
248
- text: {
249
- primary: string;
250
- secondary: string;
251
- };
252
- }>;
253
- };
254
- shirtColor?: string;
255
- };
256
- closeButton?: {
257
- show?: boolean;
258
- position?: "left" | "right";
259
- offset?: string | number;
260
- };
261
- notifications?: {
262
- minimal?: boolean;
263
- };
264
- };