@procaaso/alphinity-ui-components 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/README.md +4 -4
- package/dist/index.cjs +3117 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +676 -2
- package/dist/index.d.ts +676 -2
- package/dist/index.js +3095 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# @alphinity
|
|
1
|
+
# @procaaso/alphinity-ui-components
|
|
2
2
|
|
|
3
3
|
A TypeScript React component library for Alphinity branded systems.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @alphinity
|
|
8
|
+
npm install @procaaso/alphinity-ui-components
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
```tsx
|
|
14
|
-
import { Button, ValueEntry, StatusIndicator } from '@alphinity
|
|
14
|
+
import { Button, ValueEntry, StatusIndicator } from '@procaaso/alphinity-ui-components';
|
|
15
15
|
import { useState } from 'react';
|
|
16
16
|
|
|
17
17
|
function HMIPanel() {
|
|
@@ -94,4 +94,4 @@ function HMIPanel() {
|
|
|
94
94
|
|
|
95
95
|
## Publishing
|
|
96
96
|
|
|
97
|
-
This package is
|
|
97
|
+
This package is published to the npm registry at https://www.npmjs.com/package/@procaaso/alphinity-ui-components
|