elseware-ui 2.31.15 → 2.31.17

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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 elseware Technology
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1
+ MIT License
2
+
3
+ Copyright (c) 2026 elseware Technology
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
package/README.md CHANGED
@@ -1,98 +1,98 @@
1
- # elseware-ui
2
-
3
- A modern React component library for building web and desktop user interfaces.
4
-
5
- `elseware-ui` provides a collection of reusable, customizable, and production-ready UI components designed to accelerate application development while maintaining consistency, accessibility, and scalability.
6
-
7
- ## Features
8
-
9
- - TypeScript-first development
10
- - React-based component architecture
11
- - Tailwind CSS integration
12
- - Customizable themes and styling
13
- - Consistent design system
14
- - Web and desktop application support
15
- - Storybook-powered component documentation
16
- - Modular and tree-shakable components
17
- - Developer-friendly APIs
18
-
19
- ## Component Import Structure
20
-
21
- Use the following import ordering convention when creating components:
22
-
23
- ```ts
24
- // External
25
-
26
- // Internal
27
-
28
- // Types
29
-
30
- // Data
31
- ```
32
-
33
- Example:
34
-
35
- ```ts
36
- // External
37
- import { ReactNode } from "react";
38
-
39
- // Internal
40
- import { cn } from "@/utils";
41
-
42
- // Types
43
- import { BaseComponentProps } from "@/interfaces";
44
- import { Variant, Shape, Size } from "@/types";
45
-
46
- // Data
47
- import { shapes, variants, borderVariants, avatarSizes } from "@/data/styles";
48
- ```
49
-
50
- ## Installation
51
-
52
- Install dependencies:
53
-
54
- ```bash
55
- npm install
56
- ```
57
-
58
- ## Development
59
-
60
- Start Storybook for component development and testing:
61
-
62
- ```bash
63
- npm run dev
64
- ```
65
-
66
- ## Build
67
-
68
- Build the component library:
69
-
70
- ```bash
71
- npm run build
72
- ```
73
-
74
- ## Publishing
75
-
76
- Publish a new package version to npm:
77
-
78
- ```bash
79
- npm run release
80
- ```
81
-
82
- ## Documentation
83
-
84
- Interactive component documentation and examples are available through Storybook.
85
-
86
- ## About elseware Technology
87
-
88
- elseware Technology builds tools, frameworks, and solutions for software engineering, cloud computing, game development, and developer productivity.
89
-
90
- ## Contributing
91
-
92
- Contributions, issues, and feature requests are welcome.
93
-
94
- ## License
95
-
96
- This project is licensed under the MIT License.
97
-
98
- Copyright © 2026 elseware Technology.
1
+ # elseware-ui
2
+
3
+ A modern React component library for building web and desktop user interfaces.
4
+
5
+ `elseware-ui` provides a collection of reusable, customizable, and production-ready UI components designed to accelerate application development while maintaining consistency, accessibility, and scalability.
6
+
7
+ ## Features
8
+
9
+ - TypeScript-first development
10
+ - React-based component architecture
11
+ - Tailwind CSS integration
12
+ - Customizable themes and styling
13
+ - Consistent design system
14
+ - Web and desktop application support
15
+ - Storybook-powered component documentation
16
+ - Modular and tree-shakable components
17
+ - Developer-friendly APIs
18
+
19
+ ## Component Import Structure
20
+
21
+ Use the following import ordering convention when creating components:
22
+
23
+ ```ts
24
+ // External
25
+
26
+ // Internal
27
+
28
+ // Types
29
+
30
+ // Data
31
+ ```
32
+
33
+ Example:
34
+
35
+ ```ts
36
+ // External
37
+ import { ReactNode } from "react";
38
+
39
+ // Internal
40
+ import { cn } from "@/utils";
41
+
42
+ // Types
43
+ import { BaseComponentProps } from "@/interfaces";
44
+ import { Variant, Shape, Size } from "@/types";
45
+
46
+ // Data
47
+ import { shapes, variants, borderVariants, avatarSizes } from "@/data/styles";
48
+ ```
49
+
50
+ ## Installation
51
+
52
+ Install dependencies:
53
+
54
+ ```bash
55
+ npm install
56
+ ```
57
+
58
+ ## Development
59
+
60
+ Start Storybook for component development and testing:
61
+
62
+ ```bash
63
+ npm run dev
64
+ ```
65
+
66
+ ## Build
67
+
68
+ Build the component library:
69
+
70
+ ```bash
71
+ npm run build
72
+ ```
73
+
74
+ ## Publishing
75
+
76
+ Publish a new package version to npm:
77
+
78
+ ```bash
79
+ npm run release
80
+ ```
81
+
82
+ ## Documentation
83
+
84
+ Interactive component documentation and examples are available through Storybook.
85
+
86
+ ## About elseware Technology
87
+
88
+ elseware Technology builds tools, frameworks, and solutions for software engineering, cloud computing, game development, and developer productivity.
89
+
90
+ ## Contributing
91
+
92
+ Contributions, issues, and feature requests are welcome.
93
+
94
+ ## License
95
+
96
+ This project is licensed under the MIT License.
97
+
98
+ Copyright © 2026 elseware Technology.