hds-web 1.0.1 → 1.0.3

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 (32) hide show
  1. package/dist/index.css +2 -2
  2. package/dist/index.es.css +2 -2
  3. package/dist/index.es.js +4 -4
  4. package/dist/index.js +4 -4
  5. package/package.json +1 -1
  6. package/src/HDS/components/Avatars/profileAvatar.js +28 -16
  7. package/src/HDS/components/BadgesCaption/badges.js +10 -10
  8. package/src/HDS/components/Buttons/button.js +18 -7
  9. package/src/HDS/components/Cards/Feedback/feedback.js +25 -0
  10. package/src/HDS/components/Cards/Feedback/index.js +1 -0
  11. package/src/HDS/components/Cards/Link/index.js +2 -0
  12. package/src/HDS/components/Cards/Link/link.js +86 -0
  13. package/src/HDS/components/Cards/Link/resources.js +53 -0
  14. package/src/HDS/components/Cards/Menu/flyoutB.js +1 -0
  15. package/src/HDS/components/Cards/Misc/talkCard.js +22 -18
  16. package/src/HDS/components/Cards/TalkDetailCard/index.js +1 -0
  17. package/src/HDS/components/Cards/TalkDetailCard/talkDetailCard.js +68 -0
  18. package/src/HDS/components/Hero/h1.js +0 -1
  19. package/src/HDS/components/Hero/h2.js +198 -0
  20. package/src/HDS/components/Hero/index.js +2 -1
  21. package/src/HDS/components/Tables/index.js +2 -1
  22. package/src/HDS/components/Tables/tableB.js +146 -0
  23. package/src/HDS/components/Tabs/tab.js +2 -2
  24. package/src/HDS/components/common-components/Icon/IconMap.js +6 -4
  25. package/src/HDS/foundation/ColorPalette/color.js +97 -2
  26. package/src/HDS/helpers/Time/time.js +70 -48
  27. package/src/HDS/index.js +2 -1
  28. package/src/HDS/modules/TextCard/index.js +1 -0
  29. package/src/HDS/modules/TextCard/textCard.js +132 -0
  30. package/src/HDS/modules/index.js +1 -0
  31. package/src/styles/tailwind.css +647 -34
  32. package/tailwind.config.js +22 -0
@@ -288,6 +288,25 @@ module.exports = {
288
288
  }],
289
289
  // add more for more breakpoints
290
290
 
291
+
292
+ // h6-style
293
+ 'hds-m-h7': ['0.75rem', {
294
+ lineHeight: '1.25rem',
295
+ letterSpacing: '0.08em',
296
+ fontWeight: '700',
297
+ }],
298
+ 'hds-t-h7': ['0.75rem', {
299
+ lineHeight: '1.25rem',
300
+ letterSpacing: '0.08em',
301
+ fontWeight: '700',
302
+ }],
303
+ 'hds-d-h7': ['0.75', {
304
+ lineHeight: '1.25',
305
+ letterSpacing: '0.08em',
306
+ fontWeight: '700',
307
+ }],
308
+ // add more for more breakpoints
309
+
291
310
  // sub-style
292
311
  'hds-m-sub1': ['1.25rem', {
293
312
  lineHeight: '2rem',
@@ -765,18 +784,21 @@ module.exports = {
765
784
  letterSpacing: '-0.01em',
766
785
  fontWeight: '400',
767
786
  fontStyle: 'italic',
787
+ fontFamily: 'Petrona'
768
788
  }],
769
789
  'hds-t-quote': ['1.125rem', {
770
790
  lineHeight: '1.75rem',
771
791
  letterSpacing: '-0.01em',
772
792
  fontWeight: '400',
773
793
  fontStyle: 'italic',
794
+ fontFamily: 'Petrona'
774
795
  }],
775
796
  'hds-d-quote': ['1.5rem', {
776
797
  lineHeight: '2.25rem',
777
798
  letterSpacing: '-0.01em',
778
799
  fontWeight: '400',
779
800
  fontStyle: 'italic',
801
+ fontFamily: 'Petrona'
780
802
  }],
781
803
  // add more for more breakpoints
782
804