@uqds/react 1.0.0-alpha.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/CHANGELOG.md +10 -0
- package/README.md +25 -0
- package/dist/css/main.css +1 -0
- package/dist/js/main.d.ts +122 -0
- package/dist/js/main.js +287 -0
- package/package.json +69 -0
- package/src/jsx/components/UqCard/UqCard.tsx +31 -0
- package/src/jsx/components/UqIcon/UqIcon.tsx +16 -0
- package/src/jsx/components/UqPagination/UqPagination.tsx +180 -0
- package/src/jsx/components/UqPagination/UqPaginationItem.tsx +55 -0
- package/src/jsx/components/UqPane/UqPane.tsx +34 -0
- package/src/jsx/components/UqStoryCard/UqStoryCard.tsx +38 -0
- package/src/jsx/enum/index.ts +42 -0
- package/src/jsx/layout/UqCardGrid/UqCardGrid.tsx +17 -0
- package/src/jsx/layout/UqContainer/UqContainer.tsx +7 -0
- package/src/jsx/main.tsx +21 -0
- package/src/scss/main.scss +7 -0
- package/tsconfig.json +23 -0
- package/vite.config.js +25 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# 1.0.0-alpha.1 (2025-04-30)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- added @uqds/react package ([#618](https://github.com/uq-its-ss/design-system/issues/618)) ([3afe27e](https://github.com/uq-its-ss/design-system/commit/3afe27e916799b8ec901e86e69e6e416e6fed9d3))
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# `@uqds/react`
|
|
2
|
+
|
|
3
|
+
> React components
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
### Installation
|
|
8
|
+
|
|
9
|
+
With Yarn:
|
|
10
|
+
|
|
11
|
+
```shell
|
|
12
|
+
yarn add @uqds/react
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
With NPM:
|
|
16
|
+
|
|
17
|
+
```shell
|
|
18
|
+
npm i -S @uqds/react
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Installing an alpha version. NPM won't install alpha versions unless you explicity ask for it with `--tag`
|
|
22
|
+
|
|
23
|
+
```shell
|
|
24
|
+
npm i -S @uqds/react@latest --tag=alpha
|
|
25
|
+
```
|