@thecb/components 10.5.1-beta.4 → 10.6.1-beta.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.
- package/dist/index.cjs.js +349 -16957
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +18 -38
- package/dist/index.esm.js +349 -16957
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/icons/.DS_Store +0 -0
- package/src/components/atoms/icons/WalletIconSmall.js +7 -3
- package/src/components/molecules/modal/Modal.js +217 -6
- package/src/components/molecules/modal/Modal.stories.js +13 -57
- package/src/constants/style_constants.d.ts +6 -18
- package/src/constants/style_constants.js +20 -23
- package/src/components/molecules/modal/ModalControlV1.js +0 -234
- package/src/components/molecules/modal/ModalControlV2.js +0 -218
- package/src/components/molecules/modal/__private__/ButtonLayoutWrapper.js +0 -24
- package/src/components/molecules/modal/__private__/CancelButton.js +0 -36
- package/src/components/molecules/modal/__private__/CloseButton.js +0 -34
- package/src/components/molecules/modal/__private__/CloseIconButton.js +0 -40
- package/src/components/molecules/modal/__private__/ContinueButton.js +0 -45
- package/src/components/molecules/modal/__private__/index.d.ts +0 -59
- package/src/components/molecules/modal/__private__/index.js +0 -5
- /package/src/components/atoms/icons/{ExternalLinkicon.js → ExternalLinkIcon.js} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -292,56 +292,36 @@ declare namespace colors_d {
|
|
|
292
292
|
|
|
293
293
|
type StyleDeclaration = string;
|
|
294
294
|
|
|
295
|
-
interface StyleOptions {
|
|
296
|
-
XS?: string;
|
|
297
|
-
SM?: string;
|
|
298
|
-
MD?: string;
|
|
299
|
-
LG?: string;
|
|
300
|
-
XL?: string;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
declare const BORDER_RADIUS: StyleOptions;
|
|
304
|
-
declare const BORDER_THIN: StyleDeclaration;
|
|
305
|
-
declare const FONT_SIZE: StyleOptions;
|
|
306
|
-
declare const FONT_WEIGHT_REGULAR: StyleDeclaration;
|
|
307
|
-
declare const FONT_WEIGHT_SEMIBOLD: StyleDeclaration;
|
|
308
|
-
declare const FONT_WEIGHT_BOLD: StyleDeclaration;
|
|
309
|
-
declare const FOOTER_HEIGHT: StyleDeclaration;
|
|
310
295
|
declare const HEADER_HEIGHT: StyleDeclaration;
|
|
311
|
-
declare const
|
|
312
|
-
declare const JUMBO_HEIGHT: StyleDeclaration;
|
|
296
|
+
declare const FOOTER_HEIGHT: StyleDeclaration;
|
|
313
297
|
declare const SPACER_HEIGHT: StyleDeclaration;
|
|
298
|
+
declare const JUMBO_HEIGHT: StyleDeclaration;
|
|
299
|
+
declare const COMPACT_JUMBO_HEIGHT: StyleDeclaration;
|
|
300
|
+
declare const FONT_WEIGHT_REGULAR: StyleDeclaration;
|
|
301
|
+
declare const FONT_WEIGHT_BOLD: StyleDeclaration;
|
|
302
|
+
declare const FONT_WEIGHT_SEMIBOLD: StyleDeclaration;
|
|
314
303
|
declare const LINK_TEXT_DECORATION: StyleDeclaration;
|
|
315
|
-
declare const SPACING: StyleOptions;
|
|
316
304
|
|
|
317
|
-
declare const style_constants_d_BORDER_RADIUS: typeof BORDER_RADIUS;
|
|
318
|
-
declare const style_constants_d_BORDER_THIN: typeof BORDER_THIN;
|
|
319
|
-
declare const style_constants_d_FONT_SIZE: typeof FONT_SIZE;
|
|
320
|
-
declare const style_constants_d_FONT_WEIGHT_REGULAR: typeof FONT_WEIGHT_REGULAR;
|
|
321
|
-
declare const style_constants_d_FONT_WEIGHT_SEMIBOLD: typeof FONT_WEIGHT_SEMIBOLD;
|
|
322
|
-
declare const style_constants_d_FONT_WEIGHT_BOLD: typeof FONT_WEIGHT_BOLD;
|
|
323
|
-
declare const style_constants_d_FOOTER_HEIGHT: typeof FOOTER_HEIGHT;
|
|
324
305
|
declare const style_constants_d_HEADER_HEIGHT: typeof HEADER_HEIGHT;
|
|
325
|
-
declare const
|
|
326
|
-
declare const style_constants_d_JUMBO_HEIGHT: typeof JUMBO_HEIGHT;
|
|
306
|
+
declare const style_constants_d_FOOTER_HEIGHT: typeof FOOTER_HEIGHT;
|
|
327
307
|
declare const style_constants_d_SPACER_HEIGHT: typeof SPACER_HEIGHT;
|
|
308
|
+
declare const style_constants_d_JUMBO_HEIGHT: typeof JUMBO_HEIGHT;
|
|
309
|
+
declare const style_constants_d_COMPACT_JUMBO_HEIGHT: typeof COMPACT_JUMBO_HEIGHT;
|
|
310
|
+
declare const style_constants_d_FONT_WEIGHT_REGULAR: typeof FONT_WEIGHT_REGULAR;
|
|
311
|
+
declare const style_constants_d_FONT_WEIGHT_BOLD: typeof FONT_WEIGHT_BOLD;
|
|
312
|
+
declare const style_constants_d_FONT_WEIGHT_SEMIBOLD: typeof FONT_WEIGHT_SEMIBOLD;
|
|
328
313
|
declare const style_constants_d_LINK_TEXT_DECORATION: typeof LINK_TEXT_DECORATION;
|
|
329
|
-
declare const style_constants_d_SPACING: typeof SPACING;
|
|
330
314
|
declare namespace style_constants_d {
|
|
331
315
|
export {
|
|
332
|
-
style_constants_d_BORDER_RADIUS as BORDER_RADIUS,
|
|
333
|
-
style_constants_d_BORDER_THIN as BORDER_THIN,
|
|
334
|
-
style_constants_d_FONT_SIZE as FONT_SIZE,
|
|
335
|
-
style_constants_d_FONT_WEIGHT_REGULAR as FONT_WEIGHT_REGULAR,
|
|
336
|
-
style_constants_d_FONT_WEIGHT_SEMIBOLD as FONT_WEIGHT_SEMIBOLD,
|
|
337
|
-
style_constants_d_FONT_WEIGHT_BOLD as FONT_WEIGHT_BOLD,
|
|
338
|
-
style_constants_d_FOOTER_HEIGHT as FOOTER_HEIGHT,
|
|
339
316
|
style_constants_d_HEADER_HEIGHT as HEADER_HEIGHT,
|
|
340
|
-
|
|
341
|
-
style_constants_d_JUMBO_HEIGHT as JUMBO_HEIGHT,
|
|
317
|
+
style_constants_d_FOOTER_HEIGHT as FOOTER_HEIGHT,
|
|
342
318
|
style_constants_d_SPACER_HEIGHT as SPACER_HEIGHT,
|
|
319
|
+
style_constants_d_JUMBO_HEIGHT as JUMBO_HEIGHT,
|
|
320
|
+
style_constants_d_COMPACT_JUMBO_HEIGHT as COMPACT_JUMBO_HEIGHT,
|
|
321
|
+
style_constants_d_FONT_WEIGHT_REGULAR as FONT_WEIGHT_REGULAR,
|
|
322
|
+
style_constants_d_FONT_WEIGHT_BOLD as FONT_WEIGHT_BOLD,
|
|
323
|
+
style_constants_d_FONT_WEIGHT_SEMIBOLD as FONT_WEIGHT_SEMIBOLD,
|
|
343
324
|
style_constants_d_LINK_TEXT_DECORATION as LINK_TEXT_DECORATION,
|
|
344
|
-
style_constants_d_SPACING as SPACING,
|
|
345
325
|
};
|
|
346
326
|
}
|
|
347
327
|
|