creativecorvidstylelibrary 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/LICENSE +56 -0
- package/README.md +76 -0
- package/dist/assets/BlackCrowLogo.svg +9 -0
- package/dist/assets/WhiteRavenLogo2.svg +9 -0
- package/dist/assets/black-crow-logo.jpeg +0 -0
- package/dist/assets/vite.svg +1 -0
- package/dist/creative-corvid-library.es.js +2660 -0
- package/dist/creative-corvid-library.umd.js +9 -0
- package/dist/creativecorvidstylelibrary.css +1 -0
- package/dist/types/components/Button.vue.d.ts +47 -0
- package/dist/types/components/CloseButton.vue.d.ts +29 -0
- package/dist/types/components/Icon.vue.d.ts +30 -0
- package/dist/types/components/InfoPanel.vue.d.ts +44 -0
- package/dist/types/components/Logo.vue.d.ts +6 -0
- package/dist/types/components/Modal.vue.d.ts +2 -0
- package/dist/types/components/ToastAlert.vue.d.ts +52 -0
- package/dist/types/components/index.d.ts +6 -0
- package/dist/types/composables/index.d.ts +1 -0
- package/dist/types/composables/useDateState.d.ts +11 -0
- package/dist/types/fonts.d.ts +2 -0
- package/dist/types/form-components/Checkbox.vue.d.ts +68 -0
- package/dist/types/form-components/DateDropdownSelect.vue.d.ts +61 -0
- package/dist/types/form-components/DateInput.vue.d.ts +110 -0
- package/dist/types/form-components/FileUpload.vue.d.ts +103 -0
- package/dist/types/form-components/Number.vue.d.ts +103 -0
- package/dist/types/form-components/Radio.vue.d.ts +142 -0
- package/dist/types/form-components/SearchBar.vue.d.ts +14 -0
- package/dist/types/form-components/Select.vue.d.ts +145 -0
- package/dist/types/form-components/TextAreaInput.vue.d.ts +158 -0
- package/dist/types/form-components/TextInput.vue.d.ts +157 -0
- package/dist/types/form-components/index.d.ts +10 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/main.d.ts +0 -0
- package/dist/types/models/Calendar.d.ts +68 -0
- package/dist/types/models/Day.d.ts +7 -0
- package/dist/types/models/Month.d.ts +9 -0
- package/dist/types/models/index.d.ts +3 -0
- package/dist/types/services/Http.service.d.ts +1 -0
- package/dist/types/services/index.d.ts +1 -0
- package/dist/types/stores/index.d.ts +1 -0
- package/dist/types/stores/utilityStore.d.ts +2 -0
- package/dist/types/types/DateTypes.d.ts +21 -0
- package/dist/types/types/FontAwesomeIconType.d.ts +1 -0
- package/dist/types/types/InputValuesDemo.d.ts +7 -0
- package/dist/types/types/SelectOption.d.ts +5 -0
- package/dist/types/types/TableDataConfig.d.ts +25 -0
- package/dist/types/types/index.d.ts +5 -0
- package/dist/types/types/stores/UtilityStore.d.ts +4 -0
- package/dist/types/utils/date-constants.d.ts +4 -0
- package/dist/types/utils/index.d.ts +2 -0
- package/dist/types/utils/sorting.d.ts +1 -0
- package/dist/types/utils/utilities.d.ts +2 -0
- package/package.json +74 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# The Prosperity Public License 3.0.0
|
|
2
|
+
|
|
3
|
+
Contributor: Jonathan Fuller
|
|
4
|
+
Source Code: `https://github.com/Zibilianja/creative-corvid`
|
|
5
|
+
|
|
6
|
+
## Purpose
|
|
7
|
+
|
|
8
|
+
This license allows you to use and share this software for noncommercial purposes for free and to try this software for commercial purposes for thirty days.
|
|
9
|
+
|
|
10
|
+
## Agreement
|
|
11
|
+
|
|
12
|
+
In order to receive this license, you have to agree to its rules. Those rules are both obligations under that agreement and conditions to your license. Don’t do anything with this software that triggers a rule you can’t or won’t follow.
|
|
13
|
+
|
|
14
|
+
## Notices
|
|
15
|
+
|
|
16
|
+
Make sure everyone who gets a copy of any part of this software from you, with or without changes, also gets the text of this license and the contributor and source code lines above.
|
|
17
|
+
|
|
18
|
+
## Commercial Trial
|
|
19
|
+
|
|
20
|
+
Limit your use of this software for commercial purposes to a thirty-day trial period. If you use this software for work, your company gets one trial period for all personnel, not one trial per person.
|
|
21
|
+
|
|
22
|
+
## Contributions Back
|
|
23
|
+
|
|
24
|
+
Developing feedback, changes, or additions that you contribute back to the contributor on the terms of a standardized public software license such as the Blue Oak Model License 1.0.0, the Apache License 2.0, the MIT license, or the two-clause BSD license doesn’t count as use for a commercial purpose.
|
|
25
|
+
|
|
26
|
+
## Personal Uses
|
|
27
|
+
|
|
28
|
+
Personal use for research, experiment, and testing for the benefit of public knowledge, personal study, private entertainment, hobby projects, amateur pursuits, or religious observance, without any anticipated commercial application, doesn’t count as use for a commercial purpose.
|
|
29
|
+
|
|
30
|
+
## Noncommercial Organizations
|
|
31
|
+
|
|
32
|
+
Use by any charitable organization, educational institution, public research organization, public safety or health organization, environmental protection organization, or government institution doesn’t count as use for a commercial purpose regardless of the source of funding or obligations resulting from the funding.
|
|
33
|
+
|
|
34
|
+
## Defense
|
|
35
|
+
|
|
36
|
+
Don’t make any legal claim against anyone accusing this software, with or without changes, alone or with other technology, of infringing any patent.
|
|
37
|
+
|
|
38
|
+
## Copyright
|
|
39
|
+
|
|
40
|
+
The contributor licenses you to do everything with this software that would otherwise infringe their copyright in it.
|
|
41
|
+
|
|
42
|
+
## Patent
|
|
43
|
+
|
|
44
|
+
The contributor licenses you to do everything with this software that would otherwise infringe any patents they can license or become able to license.
|
|
45
|
+
|
|
46
|
+
## Reliability
|
|
47
|
+
|
|
48
|
+
The contributor can’t revoke this license.
|
|
49
|
+
|
|
50
|
+
## Excuse
|
|
51
|
+
|
|
52
|
+
You’re excused for unknowingly breaking Notices if you take all practical steps to comply within thirty days of learning you broke the rule.
|
|
53
|
+
|
|
54
|
+
## No Liability
|
|
55
|
+
|
|
56
|
+
As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won’t be liable to anyone for any damages related to this software or this license, under any kind of legal claim.
|
package/README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Creative Corvid Style and Component Library
|
|
2
|
+
|
|
3
|
+
A customizable and standardized Vue 3 + TypeScript component and style library, designed to speed up front-end development with accessible, responsive components, utility functions, and integrated Pinia state management.
|
|
4
|
+
|
|
5
|
+
> **Status:** In active development – components are functional, additional features and documentation are being added.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## License
|
|
10
|
+
|
|
11
|
+
- Licensed under the Prosperity Public License 3.0.0 for non-commercial use.
|
|
12
|
+
- Contact for commercial use: `j.fuller.e@gmail.com`.
|
|
13
|
+
|
|
14
|
+
## ✨ Features
|
|
15
|
+
|
|
16
|
+
- 🔘 **Accessible, responsive UI components**, including:
|
|
17
|
+
- Buttons, Modals, Toast Notifications, Info Panels
|
|
18
|
+
- Form components: Text Inputs, Number Inputs, Radios, Checkboxes, File Uploads, Select Dropdowns, Search Bar, Text Areas (with auto-resize), Date Inputs & Pickers
|
|
19
|
+
- 🎨 **Light/Dark theme toggle**, with crow logo switcher
|
|
20
|
+
- 🎯 **Utility-focused design**, built for internal reuse and future scaling
|
|
21
|
+
- 🧰 **Font Awesome icons** preconfigured
|
|
22
|
+
- 📦 Planned: **Pinia store with utility functions** like input validation, sorters, etc.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## 🚀 Installation
|
|
27
|
+
|
|
28
|
+
### 📦 From GitHub (recommended for now)
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npm install git+https://github.com/Zibilianja/creative-corvid.git
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Demo Application
|
|
35
|
+
|
|
36
|
+
- If you would like to see the current demo application, clone down this repo and start with `npm run dev`
|
|
37
|
+
|
|
38
|
+
## 🛠 Tech Stack
|
|
39
|
+
|
|
40
|
+
- Framework: Vue 3 (Composition API)
|
|
41
|
+
|
|
42
|
+
- Language: TypeScript
|
|
43
|
+
|
|
44
|
+
- Tooling: Vite, SCSS
|
|
45
|
+
|
|
46
|
+
- State Management: Pinia
|
|
47
|
+
|
|
48
|
+
- Icons: Font Awesome
|
|
49
|
+
|
|
50
|
+
- Testing: Vitest (in progress)
|
|
51
|
+
|
|
52
|
+
## 📚 Usage & Documentation
|
|
53
|
+
|
|
54
|
+
### Component usage demos are located in the /demo folder
|
|
55
|
+
|
|
56
|
+
- Components use the Cc prefix (e.g., CcButton, CcInput).
|
|
57
|
+
|
|
58
|
+
- Designed with accessibility (WCAG 2.2), keyboard navigation, and responsive layout in mind.
|
|
59
|
+
|
|
60
|
+
### Future plans include
|
|
61
|
+
|
|
62
|
+
- Dedicated usage documentation
|
|
63
|
+
|
|
64
|
+
- Storybook or VitePress-powered showcase
|
|
65
|
+
|
|
66
|
+
- Example integrations with real applications
|
|
67
|
+
|
|
68
|
+
## 🧪 Roadmap
|
|
69
|
+
|
|
70
|
+
- Core UI components (buttons, modals, inputs, etc.)
|
|
71
|
+
|
|
72
|
+
- Dark/light theme support with toggle
|
|
73
|
+
|
|
74
|
+
- Initial working demo folder
|
|
75
|
+
|
|
76
|
+
## For documentation on using utility classes and scss/css, read docs/CSS_CHEATSHEET.md
|