@semantic-components/ui-lab 0.65.0 → 0.66.0
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 +2 -2
- package/fesm2022/semantic-components-ui-lab.mjs +22987 -30450
- package/fesm2022/semantic-components-ui-lab.mjs.map +1 -1
- package/package.json +2 -2
- package/types/semantic-components-ui-lab.d.ts +430 -2383
package/README.md
CHANGED
|
@@ -4,11 +4,11 @@ Experimental and extended UI components and layouts for the Semantic Components
|
|
|
4
4
|
|
|
5
5
|
## Contents
|
|
6
6
|
|
|
7
|
-
- **Components**:
|
|
7
|
+
- **Components**: Alert, Table, Sidebar, and many more
|
|
8
8
|
- **Layouts**: Auth layout, Sidebar layout, Stacked layout
|
|
9
9
|
|
|
10
10
|
## Usage
|
|
11
11
|
|
|
12
12
|
```ts
|
|
13
|
-
import {
|
|
13
|
+
import { ScAlert, ScTable, ScSidebar } from '@semantic-components/ui-lab';
|
|
14
14
|
```
|