hds-web 1.0.1 → 1.0.2
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.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +4 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
- package/src/HDS/components/Avatars/profileAvatar.js +26 -14
- package/src/HDS/components/Buttons/button.js +18 -7
- package/src/HDS/components/Cards/Feedback/feedback.js +25 -0
- package/src/HDS/components/Cards/Feedback/index.js +1 -0
- package/src/HDS/components/Cards/Link/index.js +2 -0
- package/src/HDS/components/Cards/Link/link.js +86 -0
- package/src/HDS/components/Cards/Link/resources.js +53 -0
- package/src/HDS/components/Cards/Menu/flyoutB.js +1 -0
- package/src/HDS/components/Cards/TalkDetailCard/index.js +1 -0
- package/src/HDS/components/Cards/TalkDetailCard/talkDetailCard.js +68 -0
- package/src/HDS/components/Hero/h2.js +198 -0
- package/src/HDS/components/Hero/index.js +2 -1
- package/src/HDS/components/Tables/index.js +2 -1
- package/src/HDS/components/Tables/tableB.js +86 -0
- package/src/HDS/components/common-components/Icon/IconMap.js +9 -2
- package/src/HDS/foundation/ColorPalette/color.js +96 -1
- package/src/HDS/helpers/Time/time.js +70 -48
- package/src/HDS/index.js +2 -1
- package/src/HDS/modules/TextCard/index.js +1 -0
- package/src/HDS/modules/TextCard/textCard.js +132 -0
- package/src/HDS/modules/index.js +1 -0
- package/src/styles/tailwind.css +507 -36
- package/tailwind.config.js +19 -0
package/tailwind.config.js
CHANGED
@@ -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',
|