@sendoutcards/quantum-design-ui 1.8.39-alpha.6 → 2.0.0-alpha.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 +40 -0
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,46 @@
|
|
|
2
2
|
|
|
3
3
|
A comprehensive React component library built with TypeScript, providing atoms, molecules, and organisms for consistent UI development.
|
|
4
4
|
|
|
5
|
+
## Branch Strategy
|
|
6
|
+
|
|
7
|
+
### Master Branch (Current Stable)
|
|
8
|
+
- Contains the current stable version (pre-2.0.0)
|
|
9
|
+
- Used for production releases and hotfixes
|
|
10
|
+
- Maintains backward compatibility
|
|
11
|
+
- All current feature development and bug fixes
|
|
12
|
+
|
|
13
|
+
### Canary Branch (Version 2.0.0 Development)
|
|
14
|
+
- **Active development branch for version 2.0.0**
|
|
15
|
+
- Contains breaking changes and new architecture
|
|
16
|
+
- Used for experimental features and major refactoring
|
|
17
|
+
- Published as **alpha releases** (e.g., `2.0.0-alpha.1`, `2.0.0-alpha.2`) until stable 2.0.0
|
|
18
|
+
- **Not recommended for production use**
|
|
19
|
+
|
|
20
|
+
### Working with Branches
|
|
21
|
+
|
|
22
|
+
**For current stable features and bug fixes:**
|
|
23
|
+
```bash
|
|
24
|
+
git checkout master
|
|
25
|
+
# Make changes
|
|
26
|
+
git push origin master
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
**For 2.0.0 development:**
|
|
30
|
+
```bash
|
|
31
|
+
git checkout canary
|
|
32
|
+
# Make changes for v2.0.0
|
|
33
|
+
git push origin canary
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
**Installing alpha releases:**
|
|
37
|
+
```bash
|
|
38
|
+
# Install latest alpha version
|
|
39
|
+
yarn add @sendoutcards/quantum-design-ui@alpha
|
|
40
|
+
|
|
41
|
+
# Install specific alpha version
|
|
42
|
+
yarn add @sendoutcards/quantum-design-ui@2.0.0-alpha.1
|
|
43
|
+
```
|
|
44
|
+
|
|
5
45
|
## Build Process
|
|
6
46
|
|
|
7
47
|
This package uses a hybrid build approach combining Vite and TypeScript compiler for optimal output:
|
package/dist/index.mjs
CHANGED
|
@@ -13442,13 +13442,13 @@ const V = (o) => {
|
|
|
13442
13442
|
filled: !0,
|
|
13443
13443
|
size: t
|
|
13444
13444
|
}
|
|
13445
|
-
) }) : a
|
|
13445
|
+
) }) : a ? /* @__PURE__ */ e(
|
|
13446
13446
|
"span",
|
|
13447
13447
|
{
|
|
13448
13448
|
className: p,
|
|
13449
13449
|
style: d
|
|
13450
13450
|
}
|
|
13451
|
-
)
|
|
13451
|
+
) : /* @__PURE__ */ e(se, {})
|
|
13452
13452
|
] });
|
|
13453
13453
|
}, ht = (o) => {
|
|
13454
13454
|
switch (o) {
|
package/package.json
CHANGED