@featherk/styles 0.1.6 → 0.1.9
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 -14
- package/dist/css/featherk-q3-2024-v1.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @featherk/styles
|
|
2
2
|
|
|
3
|
-
FeatherK shared style assets (CSS,
|
|
3
|
+
FeatherK shared style assets (CSS, fonts) for Kendo UI enhancements.
|
|
4
4
|
|
|
5
5
|
## Contents
|
|
6
6
|
|
|
@@ -25,9 +25,6 @@ import { createApp } from 'vue'
|
|
|
25
25
|
import './style.css'
|
|
26
26
|
import App from './App.vue'
|
|
27
27
|
|
|
28
|
-
// Kendo UI theme (required for component functionality)
|
|
29
|
-
import "@progress/kendo-theme-default/dist/all.css"
|
|
30
|
-
|
|
31
28
|
// FeatherK custom styles with Inter font family
|
|
32
29
|
import "@featherk/styles/dist/css/featherk-q3-2024-v1.css"
|
|
33
30
|
|
|
@@ -68,16 +65,7 @@ The FeatherK styles include the Inter font family with automatic font loading. T
|
|
|
68
65
|
- **Development**: Vite serves fonts directly from `node_modules` with correct path resolution
|
|
69
66
|
- **Production**: Vite copies font assets to the build output and updates CSS URLs automatically
|
|
70
67
|
|
|
71
|
-
4. **Browser Loading**: Fonts load seamlessly without additional configuration - the Inter font family is applied throughout the application according to the FeatherK
|
|
72
|
-
|
|
73
|
-
### Import Order
|
|
74
|
-
|
|
75
|
-
The CSS import order is important for proper styling:
|
|
76
|
-
|
|
77
|
-
1. **Kendo Theme** (`@progress/kendo-theme-default`) - Provides base component styling
|
|
78
|
-
2. **FeatherK Styles** (`@featherk/styles`) - Applies custom design system and typography
|
|
79
|
-
|
|
80
|
-
This ensures that FeatherK customizations properly override Kendo defaults while maintaining component functionality.
|
|
68
|
+
4. **Browser Loading**: Fonts load seamlessly without additional configuration - the Inter font family is applied throughout the application according to the FeatherK styles.
|
|
81
69
|
|
|
82
70
|
---
|
|
83
71
|
|