Skip to content

Commit 542a5c7

Browse files
authored
Merge pull request #1993 from oasisprotocol/mz/uil
Introduce Oasis UI Library
2 parents 9491080 + 2eb0971 commit 542a5c7

16 files changed

Lines changed: 383 additions & 6 deletions

File tree

.changelog/1993.internal.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Introduce Oasis UI Library

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ yarn-error.log*
1818
\#*
1919
.\#*
2020

21+
ui-library

.github/workflows/ci-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
steps:
2020
- name: Checkout code
2121
uses: actions/checkout@v4
22+
with:
23+
submodules: true
2224
- name: Set up Node.js 20
2325
uses: actions/setup-node@v4
2426
with:

.github/workflows/ci-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- name: Checkout code
2121
uses: actions/checkout@v4
2222
with:
23+
submodules: true
2324
# Checkout pull request HEAD commit instead of merge commit.
2425
ref: ${{ github.event.pull_request.head.sha }}
2526
# Fetch all history so gitlint can check the relevant commits.

.github/workflows/ci-playwright.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
steps:
2323
- name: Checkout code
2424
uses: actions/checkout@v4
25+
with:
26+
submodules: true
2527
- name: Set up Node.js 20
2628
uses: actions/setup-node@v4
2729
with:

.github/workflows/ci-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
steps:
2020
- name: Checkout code
2121
uses: actions/checkout@v4
22+
with:
23+
submodules: true
2224
- name: Set up Node.js 20
2325
uses: actions/setup-node@v4
2426
with:

.github/workflows/cloudflare-pages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
uses: actions/checkout@v4
4444
# Checkout pull request HEAD commit instead of merge commit.
4545
with:
46+
submodules: true
4647
ref: ${{ github.event.pull_request.head.sha }}
4748
- name: Set up Node.js 20
4849
uses: actions/setup-node@v4

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
steps:
2222
- name: Checkout code
2323
uses: actions/checkout@v4
24+
with:
25+
submodules: true
2426
- name: Set up Node.js 20
2527
uses: actions/setup-node@v4
2628
with:

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "ui-library"]
2+
path = ui-library
3+
url = https://github.com/oasisprotocol/ui-library.git

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<meta property="og:type" content="website" />
1515
<title>%REACT_APP_META_TITLE%</title>
1616
<meta name="description" content="%REACT_APP_META_DESC%" />
17+
<link href="../src/styles/tailwind.css" type="text/css" rel="stylesheet" />
1718
</head>
1819
<body>
1920
<noscript>You need to enable JavaScript to run this app.</noscript>

0 commit comments

Comments
 (0)