hds-web 1.0.0 → 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/.github/workflows/chromatic.yml +26 -0
- package/dist/index.css +4 -2
- package/dist/index.es.css +4 -2
- package/dist/index.es.js +11 -3
- package/dist/index.js +11 -3
- package/package.json +7 -3
- package/src/HDS/assets/icons/HasuraPrimary.svg +10 -0
- package/src/HDS/components/Avatars/profileAvatar.js +26 -14
- package/src/HDS/components/BadgesCaption/badges.js +1 -1
- package/src/HDS/components/Buttons/button.js +25 -14
- 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 +64 -0
- package/src/HDS/components/Cards/Menu/index.js +2 -1
- package/src/HDS/components/Cards/Misc/iconCard.js +22 -0
- package/src/HDS/components/Cards/Misc/index.js +2 -1
- package/src/HDS/components/Cards/Misc/talkCard.js +48 -27
- package/src/HDS/components/Cards/TalkDetailCard/index.js +1 -0
- package/src/HDS/components/Cards/TalkDetailCard/talkDetailCard.js +68 -0
- package/src/HDS/components/Carousels/carouselCard.js +24 -13
- package/src/HDS/components/Headers/customHeader.js +50 -41
- package/src/HDS/components/Headers/v3Header.js +127 -100
- package/src/HDS/components/Hero/h1.js +189 -0
- package/src/HDS/components/Hero/h2.js +198 -0
- package/src/HDS/components/Hero/index.js +2 -0
- package/src/HDS/components/Snippet/CodeSnippet.js +58 -58
- package/src/HDS/components/Snippet/index.js +1 -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 +11 -2
- package/src/HDS/components/index.js +2 -1
- package/src/HDS/foundation/Animations/featureCard.js +77 -0
- package/src/HDS/foundation/Animations/index.js +1 -0
- package/src/HDS/foundation/ColorPalette/color.js +96 -1
- 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/index.css +154 -0
- package/src/styles/tailwind.css +1533 -239
- package/tailwind.config.js +19 -0
- package/src/HDS/components/Avatars/selectors.js +0 -0
- package/src/HDS/components/Buttons/socialMediaButton.js +0 -78
- package/src/HDS/components/Cards/Misc/featureCard.js +0 -0
- package/src/HDS/foundation/Typography/translated.js +0 -20
@@ -0,0 +1,26 @@
|
|
1
|
+
# .github/workflows/chromatic.yml
|
2
|
+
|
3
|
+
# Workflow name
|
4
|
+
name: 'Chromatic'
|
5
|
+
|
6
|
+
# Event for the workflow
|
7
|
+
on: push
|
8
|
+
|
9
|
+
# List of jobs
|
10
|
+
jobs:
|
11
|
+
chromatic-deployment:
|
12
|
+
# Operating System
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
# Job steps
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v1
|
17
|
+
- name: Install dependencies
|
18
|
+
# 👇 Install dependencies with the same package manager used in the project (replace it as needed), e.g. yarn, npm, pnpm
|
19
|
+
run: yarn
|
20
|
+
# 👇 Adds Chromatic as a step in the workflow
|
21
|
+
- name: Publish to Chromatic
|
22
|
+
uses: chromaui/action@v1
|
23
|
+
# Chromatic GitHub Action options
|
24
|
+
with:
|
25
|
+
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
|
26
|
+
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|