spicykatsu 0.0.43 → 0.0.51
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 +2 -0
- package/dist/main.js +4 -0
- package/dist/ripple.js +4 -0
- package/dist/spicykatsu.es.js +712 -657
- package/dist/spicykatsu.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/components/SpicyAlert.vue.d.ts +2 -2
- package/dist/types/components/SpicyBtn.vue.d.ts +1 -6
- package/dist/types/components/SpicyCarousel.vue.d.ts +2 -0
- package/dist/types/components/SpicyDivider.vue.d.ts +8 -6
- package/dist/types/components/SpicyLabel.vue.d.ts +13 -3
- package/dist/types/components/SpicyModal.vue.d.ts +5 -0
- package/dist/types/components/SpicyProgress.vue.d.ts +1 -1
- package/dist/types/components/SpicySheet.vue.d.ts +2 -0
- package/dist/types/components/SpicySlider.vue.d.ts +1 -1
- package/dist/types/components/SpicyTabs.vue.d.ts +7 -3
- package/dist/types/components/SpicyToggle.vue.d.ts +1 -1
- package/dist/types/components/SpicyTree.vue.d.ts +11 -0
- package/dist/types/components/SpicyTreeNode.vue.d.ts +18 -0
- package/dist/types/directives/spicyDrag.d.ts +5 -1
- package/dist/types/index.d.ts +4 -9
- package/package.json +42 -42
- package/dist/types/scripts/dateUtils.d.ts +0 -75
- package/dist/types/scripts/objUtils.d.ts +0 -8
- package/dist/types/components/{SpicyTextarea.vue.d.ts → SpicyTextArea.vue.d.ts} +1 -1
package/README.md
CHANGED
|
@@ -2,4 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Fun, simple library for Vue3. Something for me to play around with in my projects.
|
|
4
4
|
|
|
5
|
+
Feel free to clone the repo and run the `dev` script. The playground has an example of every component and directive.
|
|
6
|
+
|
|
5
7
|
Docs: [SpicyKatsu Docs](https://satoru8.gitlab.io/spicykatsuvlib/)
|
package/dist/main.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const o = ':root{--skBgColor: #28292a;--skBgSecondaryColor: #424344;--skBorderColor: #515353;--skPrimaryColor: #811faf;--skSecondaryColor: #0066b3;--skAccentColor: #004a77;--skHoverColor: #656769;--skTextColor: #ddd;--disabledOpacity: .5;--skFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;--skFontSize: 1rem;--skFontWeight: 500;--skBorderRadius: 4px}.spicyText{color:var(--skTextColor);font-family:var(--skFontFamily);font-size:var(--skFontSize)}.spicyHeader{color:var(--skTextColor);font-family:var(--skFontFamily);font-size:24px;font-weight:700}.spicyLink:hover{color:var(--skHoverColor)}.spicyLink:active{color:var(--skPrimaryColor)}.spicyLink:focus{color:var(--skPrimaryColor)}.spicyLink:disabled{opacity:var(--disabledOpacity)}';
|
|
2
|
+
export {
|
|
3
|
+
o as default
|
|
4
|
+
};
|
package/dist/ripple.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const i = ".spicyRipple{position:absolute;border-radius:50%;background:currentColor;transform:scale(0);animation:spicy-ripple-animation .6s linear;pointer-events:none;z-index:1}@keyframes spicy-ripple-animation{to{transform:scale(4);opacity:0}}";
|
|
2
|
+
export {
|
|
3
|
+
i as default
|
|
4
|
+
};
|