@projectdiscoveryio/design-system 1.0.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/CHANGELOG.md +42 -0
- package/LICENSE +21 -0
- package/README.md +841 -0
- package/dist/fallback.css +824 -0
- package/dist/index.cjs +1513 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +1332 -0
- package/dist/index.d.cts +1497 -0
- package/dist/index.d.ts +1497 -0
- package/dist/index.js +1439 -0
- package/dist/index.js.map +1 -0
- package/dist/styles.css +1301 -0
- package/package.json +152 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.1.0] - 2026-01-XX
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Initial release of @pd-design/system
|
|
13
|
+
- Token system (base and semantic tokens)
|
|
14
|
+
- Theme system with CSS variables
|
|
15
|
+
- Headless primitives layer
|
|
16
|
+
- Adapter layer (shadcn support)
|
|
17
|
+
- Public components:
|
|
18
|
+
- Button
|
|
19
|
+
- Input
|
|
20
|
+
- Select
|
|
21
|
+
- Checkbox
|
|
22
|
+
- Radio
|
|
23
|
+
- Switch
|
|
24
|
+
- Modal
|
|
25
|
+
- Tooltip
|
|
26
|
+
- Dropdown
|
|
27
|
+
- Toast
|
|
28
|
+
- Storybook integration
|
|
29
|
+
- Full TypeScript support
|
|
30
|
+
- Light/Dark mode support
|
|
31
|
+
- Theme provider
|
|
32
|
+
- Configuration API
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
- Props-only API (no className required)
|
|
37
|
+
- Full TypeScript autocomplete
|
|
38
|
+
- Variant system (variant, intent, size, state)
|
|
39
|
+
- Adapter switching without app changes
|
|
40
|
+
- Semantic versioning
|
|
41
|
+
- Tree-shakable build
|
|
42
|
+
- ESM + CJS output
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 PD Design System
|
|
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
|
+
SOFTWARE.
|