@codeandfunction/callaloo 1.0.2 → 1.1.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 +2 -2
- package/dist/components/NavSection.vue.d.ts +17 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +306 -304
- package/dist/index.umd.cjs +2 -2
- package/dist/types.d.ts +4 -0
- package/package.json +2 -2
- package/dist/favicon.ico +0 -0
package/dist/types.d.ts
CHANGED
|
@@ -180,6 +180,10 @@ export interface InputProps {
|
|
|
180
180
|
onFocus?: (event: FocusEvent) => void;
|
|
181
181
|
onChange?: (event: Event) => void;
|
|
182
182
|
}
|
|
183
|
+
export declare enum Orientation {
|
|
184
|
+
Horizontal = "horizontal",
|
|
185
|
+
Vertical = "vertical"
|
|
186
|
+
}
|
|
183
187
|
export declare enum Position {
|
|
184
188
|
Absolute = "absolute",
|
|
185
189
|
Relative = "relative"
|
package/package.json
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"description": "a simple vue component library",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Anthony Cholmondeley",
|
|
6
|
-
"url": "https://callaloo.
|
|
6
|
+
"url": "https://callaloo.codeandfunction.com"
|
|
7
7
|
},
|
|
8
|
-
"version": "1.
|
|
8
|
+
"version": "1.1.3",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"scripts": {
|
package/dist/favicon.ico
DELETED
|
Binary file
|