@phila/phila-ui-nav-link 0.0.1-beta.2

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 ADDED
@@ -0,0 +1,75 @@
1
+ # NavLink Component
2
+
3
+ A simple, customizable Vue 3. NavLink component built with TypeScript and Vite.
4
+ navigation links
5
+
6
+ ## Features
7
+
8
+ - 🎯 TypeScript support with full type definitions
9
+
10
+ ## Installation
11
+
12
+ ```bash
13
+ npm install @phila/phila-ui-nav-link
14
+ # or
15
+ yarn add @phila/phila-ui-nav-link
16
+ # or
17
+ pnpm add @phila/phila-ui-nav-link
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```vue
23
+ <script setup lang="ts">
24
+ import { NavLink } from "@phila/phila-ui-nav-link";
25
+ </script>
26
+ <template>...Add basic component template here...</template>
27
+ ```
28
+
29
+ ## Props
30
+
31
+ | Prop | Type | Default | Description |
32
+ | ---- | ---- | ------- | ----------- |
33
+
34
+ | ...Add props here...
35
+
36
+ ## Events
37
+
38
+ | Event | Payload | Description |
39
+ | ----- | ------- | ----------- |
40
+
41
+ | ...Add events here...
42
+
43
+ ## Examples
44
+
45
+ ...Add examples here...
46
+
47
+ ## Development
48
+
49
+ ### Install Dependencies
50
+
51
+ ```bash
52
+ pnpm install
53
+ ```
54
+
55
+ ### Run Demo
56
+
57
+ ```bash
58
+ pnpm dev
59
+ ```
60
+
61
+ ### Build Library
62
+
63
+ ```bash
64
+ pnpm build
65
+ ```
66
+
67
+ ### Type Check
68
+
69
+ ```bash
70
+ pnpm type-check
71
+ ```
72
+
73
+ ## License
74
+
75
+ MIT
@@ -0,0 +1,4 @@
1
+ import { NavLinkProps } from './index';
2
+ declare const _default: import('vue').DefineComponent<NavLinkProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NavLinkProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
3
+ export default _default;
4
+ //# sourceMappingURL=NavLink.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NavLink.vue.d.ts","sourceRoot":"","sources":["../src/NavLink.vue"],"names":[],"mappings":"AA8DA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;;AAiF5C,wBASG"}
package/dist/index.css ADDED
@@ -0,0 +1 @@
1
+ .nav-link[data-v-a1f827ab]{display:inline-flex;height:5rem;padding:0 16px;align-items:center;gap:.5rem;flex-shrink:0;color:var(--Schemes-On-Inverse-Surface-Bright, #fff);font-family:var(--Label-Default-font-label-default-family, Montserrat);font-size:var(--Label-Default-font-label-default-size, 1rem);font-style:normal;font-weight:600;line-height:var(--Label-Default-font-label-default-lineheight, 1.5rem);background:#2176d2}.nav-link[data-v-a1f827ab]:hover{background:#96c9ff}
@@ -0,0 +1,5 @@
1
+ import { BaseProps } from '@phila/phila-ui-core';
2
+ export { default as NavLink } from './NavLink.vue';
3
+ export interface NavLinkProps extends BaseProps {
4
+ }
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAC;AAInD,MAAM,WAAW,YAAa,SAAQ,SAAS;CAE9C"}