clds-ui 0.3.3
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 +16 -0
- package/dist/creators-lib.es.js +949 -0
- package/dist/creators-lib.umd.js +1 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.d.ts +2 -0
- package/dist/robots.txt +2 -0
- package/dist/src/components/Accordion/CreatorsAccordion.vue.d.ts +27 -0
- package/dist/src/components/Accordion/index.d.ts +2 -0
- package/dist/src/components/Badge/CreatorsBadge.vue.d.ts +20 -0
- package/dist/src/components/Badge/index.d.ts +2 -0
- package/dist/src/components/Button/CreatorsButton.vue.d.ts +28 -0
- package/dist/src/components/Button/index.d.ts +2 -0
- package/dist/src/components/Card/CreatorsCard.vue.d.ts +33 -0
- package/dist/src/components/Card/index.d.ts +2 -0
- package/dist/src/components/Checkbox/CreatorsCheckbox.vue.d.ts +15 -0
- package/dist/src/components/Checkbox/index.d.ts +2 -0
- package/dist/src/components/DataTable/CreatorsDataTable.vue.d.ts +43 -0
- package/dist/src/components/DataTable/index.d.ts +2 -0
- package/dist/src/components/Divider/CreatorsDivider.vue.d.ts +13 -0
- package/dist/src/components/Divider/index.d.ts +2 -0
- package/dist/src/components/Grid/CreatorsCol.vue.d.ts +35 -0
- package/dist/src/components/Grid/CreatorsRow.vue.d.ts +20 -0
- package/dist/src/components/Grid/index.d.ts +4 -0
- package/dist/src/components/Input/CreatorsInput.vue.d.ts +51 -0
- package/dist/src/components/Input/index.d.ts +2 -0
- package/dist/src/components/InputSwitch/CreatorsInputSwitch.vue.d.ts +17 -0
- package/dist/src/components/InputSwitch/index.d.ts +2 -0
- package/dist/src/components/Modal/CreatorsModal.vue.d.ts +36 -0
- package/dist/src/components/Modal/index.d.ts +2 -0
- package/dist/src/components/Radio/CreatorsRadio.vue.d.ts +15 -0
- package/dist/src/components/Radio/index.d.ts +2 -0
- package/dist/src/components/Rating/CreatorsRating.vue.d.ts +23 -0
- package/dist/src/components/Rating/index.d.ts +2 -0
- package/dist/src/components/Select/CreatorsSelect.vue.d.ts +27 -0
- package/dist/src/components/Select/index.d.ts +2 -0
- package/dist/src/components/Skeleton/CreatorsSkeleton.vue.d.ts +27 -0
- package/dist/src/components/Skeleton/CreatorsSkeletonCard.vue.d.ts +3 -0
- package/dist/src/components/Skeleton/CreatorsSkeletonList.vue.d.ts +14 -0
- package/dist/src/components/Skeleton/CreatorsSkeletonProfile.vue.d.ts +8 -0
- package/dist/src/components/Skeleton/CreatorsSkeletonSimpleList.vue.d.ts +22 -0
- package/dist/src/components/Skeleton/CreatorsSkeletonTable.vue.d.ts +10 -0
- package/dist/src/components/Skeleton/index.d.ts +8 -0
- package/dist/src/components/Text/CreatorsText.vue.d.ts +20 -0
- package/dist/src/components/Text/index.d.ts +2 -0
- package/dist/src/components/Textarea/CreatorsTextarea.vue.d.ts +27 -0
- package/dist/src/components/Textarea/index.d.ts +2 -0
- package/dist/src/components/Timeline/CreatorsTimeline.vue.d.ts +37 -0
- package/dist/src/components/Timeline/index.d.ts +2 -0
- package/dist/src/components/Toast/CreatorsToaster.vue.d.ts +3 -0
- package/dist/src/components/Toast/index.d.ts +3 -0
- package/dist/src/components/Toast/useToast.d.ts +33 -0
- package/dist/src/index.d.ts +39 -0
- package/dist/src/plugin.d.ts +3 -0
- package/dist/style.css +1 -0
- package/package.json +54 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# creators-lib-ds
|
|
2
|
+
|
|
3
|
+
Internal design system.
|
|
4
|
+
|
|
5
|
+
**Docs:** https://public-alpha-sage.vercel.app
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install creators-lib-ds
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { CreatorsButton } from 'creators-lib-ds'
|
|
15
|
+
import 'creators-lib-ds/style.css'
|
|
16
|
+
```
|