@bubo-squared/ui-framework 0.1.94 → 0.1.96
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 +47 -47
- package/dist/index.cjs +187 -128
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +187 -128
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/style.d.ts +2 -2
package/README.md
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
## @bubo-squared/ui-framework
|
|
2
|
-
|
|
3
|
-
Styled React UI components used across Bubo Squared frontend applications.
|
|
4
|
-
|
|
5
|
-
This library is loosely based on shadcn/ui patterns and uses Radix UI primitives for several interactive components.
|
|
6
|
-
|
|
7
|
-
### Installation
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npm install @bubo-squared/ui-framework @bubo-squared/icons
|
|
11
|
-
# or
|
|
12
|
-
pnpm add @bubo-squared/ui-framework @bubo-squared/icons
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
### Peer dependencies
|
|
16
|
-
|
|
17
|
-
- React 18 or 19
|
|
18
|
-
- React DOM 18 or 19
|
|
19
|
-
|
|
20
|
-
Make sure these are installed in your app:
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
npm install react react-dom
|
|
24
|
-
# or
|
|
25
|
-
pnpm add react react-dom
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
### Basic usage
|
|
29
|
-
|
|
30
|
-
```tsx
|
|
31
|
-
import { Button } from '@bubo-squared/ui-framework'
|
|
32
|
-
|
|
33
|
-
export function Example() {
|
|
34
|
-
return <Button variant="primary">Click me</Button>
|
|
35
|
-
}
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
The design system exposes multiple components (buttons, inputs, navigation, feedback, etc.) with a consistent API and styling suitable for Bubo Squared products.
|
|
39
|
-
|
|
40
|
-
### Styling
|
|
41
|
-
|
|
42
|
-
Components are built to work well with modern Tailwind-based setups and utility-first styling. You can extend or override styles via `className` props and your existing design tokens.
|
|
43
|
-
|
|
44
|
-
### License
|
|
45
|
-
|
|
46
|
-
This package is intended for use within Bubo Squared projects and related applications.
|
|
47
|
-
|
|
1
|
+
## @bubo-squared/ui-framework
|
|
2
|
+
|
|
3
|
+
Styled React UI components used across Bubo Squared frontend applications.
|
|
4
|
+
|
|
5
|
+
This library is loosely based on shadcn/ui patterns and uses Radix UI primitives for several interactive components.
|
|
6
|
+
|
|
7
|
+
### Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @bubo-squared/ui-framework @bubo-squared/icons
|
|
11
|
+
# or
|
|
12
|
+
pnpm add @bubo-squared/ui-framework @bubo-squared/icons
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Peer dependencies
|
|
16
|
+
|
|
17
|
+
- React 18 or 19
|
|
18
|
+
- React DOM 18 or 19
|
|
19
|
+
|
|
20
|
+
Make sure these are installed in your app:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install react react-dom
|
|
24
|
+
# or
|
|
25
|
+
pnpm add react react-dom
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Basic usage
|
|
29
|
+
|
|
30
|
+
```tsx
|
|
31
|
+
import { Button } from '@bubo-squared/ui-framework'
|
|
32
|
+
|
|
33
|
+
export function Example() {
|
|
34
|
+
return <Button variant="primary">Click me</Button>
|
|
35
|
+
}
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
The design system exposes multiple components (buttons, inputs, navigation, feedback, etc.) with a consistent API and styling suitable for Bubo Squared products.
|
|
39
|
+
|
|
40
|
+
### Styling
|
|
41
|
+
|
|
42
|
+
Components are built to work well with modern Tailwind-based setups and utility-first styling. You can extend or override styles via `className` props and your existing design tokens.
|
|
43
|
+
|
|
44
|
+
### License
|
|
45
|
+
|
|
46
|
+
This package is intended for use within Bubo Squared projects and related applications.
|
|
47
|
+
|