@featherk/styles 0.1.7 → 0.2.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/README.md +19 -9
- package/dist/{css → v1/css}/featherk-q3-2024-v1.css +1 -1
- package/dist/v1/external-styles/featherk-map-evitiAdvisor.css +70 -0
- package/dist/v1/external-styles/featherk-overrides--k-grid.css +37 -0
- package/dist/v1/external-styles/featherk-overrides--k-slider.css +22 -0
- package/dist/v1/fonts/Inter-Bold.woff2 +0 -0
- package/dist/v1/fonts/Inter-BoldItalic.woff2 +0 -0
- package/dist/v1/fonts/Inter-Italic.woff2 +0 -0
- package/dist/v1/fonts/Inter-Light.woff2 +0 -0
- package/dist/v1/fonts/Inter-LightItalic.woff2 +0 -0
- package/dist/v1/fonts/Inter-Medium.woff2 +0 -0
- package/dist/v1/fonts/Inter-MediumItalic.woff2 +0 -0
- package/dist/v1/fonts/Inter-Regular.woff2 +0 -0
- package/package.json +1 -1
- /package/dist/{css → v0/css}/feather-k-override.css +0 -0
- /package/dist/{css → v0/css}/feather-ks.css +0 -0
- /package/dist/{fonts → v0/fonts}/Inter-Bold.woff2 +0 -0
- /package/dist/{fonts → v0/fonts}/Inter-BoldItalic.woff2 +0 -0
- /package/dist/{fonts → v0/fonts}/Inter-Italic.woff2 +0 -0
- /package/dist/{fonts → v0/fonts}/Inter-Light.woff2 +0 -0
- /package/dist/{fonts → v0/fonts}/Inter-LightItalic.woff2 +0 -0
- /package/dist/{fonts → v0/fonts}/Inter-Medium.woff2 +0 -0
- /package/dist/{fonts → v0/fonts}/Inter-MediumItalic.woff2 +0 -0
- /package/dist/{fonts → v0/fonts}/Inter-Regular.woff2 +0 -0
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ import './style.css'
|
|
|
26
26
|
import App from './App.vue'
|
|
27
27
|
|
|
28
28
|
// FeatherK custom styles with Inter font family
|
|
29
|
-
import "@featherk/styles/dist/css/featherk-q3-2024-v1.css"
|
|
29
|
+
import "@featherk/styles/dist/v1/css/featherk-q3-2024-v1.css"
|
|
30
30
|
|
|
31
31
|
createApp(App).mount('#app')
|
|
32
32
|
```
|
|
@@ -50,16 +50,26 @@ The FeatherK styles include the Inter font family with automatic font loading. T
|
|
|
50
50
|
```text
|
|
51
51
|
node_modules/@featherk/styles/
|
|
52
52
|
├── dist/
|
|
53
|
-
│ ├──
|
|
54
|
-
│ │
|
|
55
|
-
│
|
|
56
|
-
│
|
|
57
|
-
│
|
|
58
|
-
│ ├── Inter-
|
|
59
|
-
│
|
|
53
|
+
│ ├── v0/
|
|
54
|
+
│ │ ├── css/
|
|
55
|
+
│ │ │ ├── feather-ks.css
|
|
56
|
+
│ │ │ └── feather-k override.css
|
|
57
|
+
│ │ └── fonts/
|
|
58
|
+
│ │ ├── Inter-Regular.woff2
|
|
59
|
+
│ │ ├── Inter-Bold.woff2
|
|
60
|
+
│ │ ├── Inter-Light.woff2
|
|
61
|
+
│ │ └── [other Inter variants]
|
|
62
|
+
│ ├── v1/
|
|
63
|
+
│ │ ├── css/
|
|
64
|
+
│ │ │ └── featherk-q3-2024-v1.css
|
|
65
|
+
│ │ └── fonts/
|
|
66
|
+
│ │ ├── Inter-Regular.woff2
|
|
67
|
+
│ │ ├── Inter-Bold.woff2
|
|
68
|
+
│ │ ├── Inter-Light.woff2
|
|
69
|
+
│ │ └── [other Inter variants]
|
|
60
70
|
```
|
|
61
71
|
|
|
62
|
-
2. **Relative Path Resolution**: The CSS uses `../fonts/` paths that correctly resolve from `/dist/css/` to `/dist/fonts/`
|
|
72
|
+
2. **Relative Path Resolution**: The CSS uses `../fonts/` paths that correctly resolve from `/dist/v1/css/` to `/dist/v1/fonts/`
|
|
63
73
|
|
|
64
74
|
3. **Vite Processing**:
|
|
65
75
|
- **Development**: Vite serves fonts directly from `node_modules` with correct path resolution
|