@xui/breadcrumb 2.0.0-alpha.0 → 2.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.
Files changed (2) hide show
  1. package/README.md +149 -4
  2. package/package.json +22 -4
package/README.md CHANGED
@@ -1,7 +1,152 @@
1
- # breadcrumb
1
+ <p style="font-size: 5rem; font-weight: 700; text-align: center">
2
+ <span style="color: #1f75cb">x</span>UI
3
+ </p>
2
4
 
3
- This library was generated with [Nx](https://nx.dev).
5
+ ---
4
6
 
5
- ## Running unit tests
7
+ ![Build Status](https://github.com/rikarin/xui/actions/workflows/continuous-delivery.yaml/badge.svg?branch=master)
8
+ [![Demo](https://img.shields.io/badge/demo-online-ed1c46)](https://xuijs.org/)
9
+ [![npm](https://img.shields.io/npm/v/%40xui/components.svg?maxAge=2592000?style=plastic)](https://www.npmjs.com/org/xui)
10
+ [![Downloads](https://img.shields.io/npm/dt/%40xui/components.svg)](https://www.npmjs.com/org/xui)
11
+ [![Monthly Downloads](https://img.shields.io/npm/dm/%40xui/components.svg)](https://www.npmjs.com/org/xui)
12
+ [![npm bundle size (minified + gzip)](https://img.shields.io/bundlephobia/minzip/%40xui/components)](https://bundlephobia.com/result?p=xui)
13
+ [![License](https://img.shields.io/npm/l/express.svg?maxAge=2592000)](/LICENSE)
14
+ [![Discord](https://img.shields.io/discord/776258487307075594.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/aPkZsFcu)
15
+ [![Netlify Status](https://api.netlify.com/api/v1/badges/fa0cfd14-97df-47fa-8a7c-152e6d4cfda2/deploy-status)](https://app.netlify.com/sites/xui/deploys)
6
16
 
7
- Run `nx test breadcrumb` to execute the unit tests.
17
+ xUI is a customizable Angular 19 UI Library with full support of TailwindCSS styling based on popular React library ShardCN and its Angular alternative SpartanUI.
18
+
19
+ ## Features
20
+
21
+ - **35+ High-Quality Angular Components:** Ready to use out of the box.
22
+ - **Powerful Theme Customization:** Detailed customization options with default themes.
23
+ - **High Performance:** Supports Zoneless, OnPush mode, and Signals for optimized performance.
24
+ - **Accessibility:** Supports WCAG 2.0 standards.
25
+ - **Powerful Theme Customization:** Install each visual component and customize it according your needs
26
+ - **TypeScript:** Written with predictable static types.
27
+
28
+ ## Table of Contents
29
+
30
+ - [Storybook](https://develop--67d2b4c756077a325913e5d9.chromatic.com/?globals=theme:dark)
31
+ - [StackBlitz Demo](https://stackblitz.com/fork/xui)
32
+ - [Documentation](https://xuijs.org)
33
+ - [Live Demo](https://cord.dj/r)
34
+ - [Installation](#installation)
35
+
36
+ <a name="installation"></a>
37
+
38
+ ## Installation
39
+
40
+ Install package with **PNPM**
41
+
42
+ ```bash
43
+ pnpm i @xui/core ....
44
+ ```
45
+
46
+ ## Browser Support
47
+
48
+ xUI Supports most recent browsers according to Angular [support](https://angular.io/guide/browser-support).
49
+
50
+ ## Development
51
+
52
+ The project uses `NX` and `Angular` to build the package.
53
+
54
+ To start docs page use
55
+
56
+ ```bash
57
+ pnpm start
58
+ ```
59
+
60
+ To start storybook use
61
+
62
+ ```bash
63
+ pnpm storybook
64
+ ```
65
+
66
+ ## Issues
67
+
68
+ If you find any issues in the library or have and idea for an improvement feel free to open an [issue](https://github.com/Rikarin/xui/issues).
69
+
70
+ ## Roadmap (12/42)
71
+
72
+ - [ ] Accordion
73
+ - [ ] Alert
74
+ - [ ] Alert Dialog
75
+ - [ ] Avatar
76
+ - [x] Badge
77
+ - [x] Breadcrumb
78
+ - [x] Button
79
+ - [x] Button Group
80
+ - [ ] Calendar
81
+ - [ ] Card
82
+ - [ ] Carousel
83
+ - [x] Checkbox
84
+ - [ ] Collapsible
85
+ - [ ] Combobox
86
+ - [ ] Command
87
+ - [ ] Date Picker
88
+ - [ ] Date Range Picker
89
+ - [ ] Dialog
90
+ - [x] Form Field
91
+ - [ ] Hover Card
92
+ - [x] Icon
93
+ - [x] Input
94
+ - [x] Label
95
+ - [ ] Menu
96
+ - [ ] Pagination
97
+ - [ ] Popover
98
+ - [ ] Progress
99
+ - [ ] Radio Group
100
+ - [ ] Scroll Area
101
+ - [ ] Select
102
+ - [ ] Separator
103
+ - [ ] Sheet
104
+ - [x] Skeleton
105
+ - [ ] Slider
106
+ - [x] Sonner
107
+ - [ ] Spinner
108
+ - [x] Status
109
+ - [ ] Switch
110
+ - [ ] Table
111
+ - [ ] Tabs
112
+ - [ ] Toggle
113
+ - [ ] Tooltip
114
+ - [ ] Typography
115
+
116
+ ### Additional
117
+
118
+ - [ ] Decagram
119
+ - [ ] Settings
120
+ - [ ] Drawer
121
+ - [ ] Panel Bar
122
+ - [ ] Textarea
123
+ - [ ] Time Picker
124
+ - [ ] Image Upload
125
+ - [ ] Banner
126
+ - [ ] Snack bar
127
+
128
+ ## Opinionated "components"
129
+
130
+ - [ ] Graph View (Nodes)
131
+ - [ ] Analysis
132
+ - [ ] Charts (NG Charts?)
133
+
134
+ ## CLI
135
+
136
+ Make cli to install the components
137
+
138
+ ## TODO
139
+
140
+ - Button
141
+
142
+ - Icon
143
+ - Shine
144
+
145
+ - Breadcrumb
146
+
147
+ - fix styling issues
148
+ - on hover stuff
149
+ - data driven component
150
+
151
+ - Sonner
152
+ - Colors
package/package.json CHANGED
@@ -1,10 +1,25 @@
1
1
  {
2
2
  "name": "@xui/breadcrumb",
3
- "version": "2.0.0-alpha.0",
4
- "sideEffects": false,
5
- "publishConfig": {
6
- "access": "public"
3
+ "version": "2.0.0-alpha.1",
4
+ "description": "Angular UI Library",
5
+ "keywords": [
6
+ "angular",
7
+ "ui"
8
+ ],
9
+ "homepage": "https://xuijs.org",
10
+ "bugs": {
11
+ "url": "https://github.com/rikarin/xui/issues"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/rikarin/xui.git"
7
16
  },
17
+ "license": "MIT",
18
+ "author": "Rene Cincura",
19
+ "maintainers": [
20
+ "Rene Cincura"
21
+ ],
22
+ "sideEffects": false,
8
23
  "peerDependencies": {
9
24
  "@angular/core": "19",
10
25
  "@angular/router": "19",
@@ -14,6 +29,9 @@
14
29
  "@xui/icon": "2",
15
30
  "clsx": "^2.1.1"
16
31
  },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
17
35
  "module": "fesm2022/xui-breadcrumb.mjs",
18
36
  "typings": "index.d.ts",
19
37
  "exports": {