@thecb/components 10.2.1-beta.2 → 10.2.1
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/README.md +2 -2
- package/dist/index.cjs.js +3019 -3023
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +0 -36
- package/dist/index.esm.js +3018 -3022
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/components/atoms/breadcrumb/Breadcrumb.js +3 -4
- package/src/components/atoms/breadcrumb/Breadcrumb.theme.js +2 -5
- package/src/components/atoms/button-with-action/ButtonWithAction.js +7 -2
- package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +2 -22
- package/src/components/atoms/button-with-link/ButtonWithLink.js +2 -2
- package/src/components/atoms/icons/MultiCartIcon.js +12 -10
- package/src/components/atoms/jumbo/Jumbo.js +1 -5
- package/src/components/atoms/link/ExternalLink.styled.js +3 -6
- package/src/components/atoms/link/InternalLink.styled.js +3 -6
- package/src/components/atoms/text/Text.styled.js +0 -1
- package/src/components/molecules/pagination/Pagination.js +7 -1
- package/src/components/molecules/pagination/Pagination.theme.js +2 -1
- package/src/components/molecules/payment-button-bar/PaymentButtonBar.js +6 -1
- package/src/components/molecules/tab-sidebar/TabSidebar.js +1 -0
- package/src/constants/index.d.ts +1 -2
- package/src/constants/index.js +3 -12
- package/src/constants/style_constants.js +1 -3
- package/src/components/molecules/pagination/Pagination.stories.js +0 -32
- package/src/constants/style_constants.d.ts +0 -11
package/dist/index.d.ts
CHANGED
|
@@ -290,47 +290,11 @@ declare namespace colors_d {
|
|
|
290
290
|
};
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
type StyleDeclaration = string;
|
|
294
|
-
|
|
295
|
-
declare const HEADER_HEIGHT: StyleDeclaration;
|
|
296
|
-
declare const FOOTER_HEIGHT: StyleDeclaration;
|
|
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;
|
|
303
|
-
declare const LINK_TEXT_DECORATION: StyleDeclaration;
|
|
304
|
-
|
|
305
|
-
declare const style_constants_d_HEADER_HEIGHT: typeof HEADER_HEIGHT;
|
|
306
|
-
declare const style_constants_d_FOOTER_HEIGHT: typeof FOOTER_HEIGHT;
|
|
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;
|
|
313
|
-
declare const style_constants_d_LINK_TEXT_DECORATION: typeof LINK_TEXT_DECORATION;
|
|
314
|
-
declare namespace style_constants_d {
|
|
315
|
-
export {
|
|
316
|
-
style_constants_d_HEADER_HEIGHT as HEADER_HEIGHT,
|
|
317
|
-
style_constants_d_FOOTER_HEIGHT as FOOTER_HEIGHT,
|
|
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,
|
|
324
|
-
style_constants_d_LINK_TEXT_DECORATION as LINK_TEXT_DECORATION,
|
|
325
|
-
};
|
|
326
|
-
}
|
|
327
|
-
|
|
328
293
|
|
|
329
294
|
|
|
330
295
|
declare namespace index_d {
|
|
331
296
|
export {
|
|
332
297
|
colors_d as colors,
|
|
333
|
-
style_constants_d as styleConstants,
|
|
334
298
|
};
|
|
335
299
|
}
|
|
336
300
|
|