@vanduo-oss/framework 1.3.8 → 1.3.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.
@@ -45,7 +45,7 @@
45
45
  preference: this.getPreference()
46
46
  };
47
47
  if (!this.fonts[this.state.preference]) {
48
- this.state.preference = 'lato';
48
+ this.state.preference = 'ubuntu';
49
49
  this.setStorageValue(this.STORAGE_KEY, this.state.preference);
50
50
  }
51
51
 
@@ -66,10 +66,10 @@
66
66
 
67
67
  /**
68
68
  * Get saved font preference from localStorage
69
- * @returns {string} Font key or 'lato' (default)
69
+ * @returns {string} Font key or 'ubuntu' (default)
70
70
  */
71
71
  getPreference: function() {
72
- return this.getStorageValue(this.STORAGE_KEY, 'lato');
72
+ return this.getStorageValue(this.STORAGE_KEY, 'ubuntu');
73
73
  },
74
74
 
75
75
  /**
@@ -21,9 +21,9 @@
21
21
  DEFAULTS: {
22
22
  PRIMARY_LIGHT: 'black',
23
23
  PRIMARY_DARK: 'amber',
24
- NEUTRAL: 'neutral',
24
+ NEUTRAL: 'charcoal',
25
25
  RADIUS: '0.5',
26
- FONT: 'lato',
26
+ FONT: 'ubuntu',
27
27
  THEME: 'system'
28
28
  },
29
29
 
@@ -51,6 +51,7 @@
51
51
 
52
52
  // Neutral color definitions
53
53
  NEUTRAL_COLORS: {
54
+ 'charcoal': { name: 'Charcoal', color: '#0d1117' },
54
55
  'slate': { name: 'Slate', color: '#64748b' },
55
56
  'gray': { name: 'Gray', color: '#6b7280' },
56
57
  'zinc': { name: 'Zinc', color: '#71717a' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vanduo-oss/framework",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "description": "Zero-dependency CSS/JS framework built on Fibonacci/Golden Ratio design system with Open Color integration",
5
5
  "keywords": [
6
6
  "css",
@@ -45,7 +45,7 @@
45
45
  "eslint": "^10.3.0",
46
46
  "husky": "^9.1.7",
47
47
  "lightningcss": "^1.32.0",
48
- "stylelint": "^17.10.0",
48
+ "stylelint": "^17.11.0",
49
49
  "stylelint-config-standard": "^40.0.0"
50
50
  },
51
51
  "engines": {
@@ -54,8 +54,6 @@
54
54
  },
55
55
  "scripts": {
56
56
  "build": "node scripts/build.js",
57
- "build:hex-grid": "pnpm --filter @vanduo-oss/hex-grid build",
58
- "build:packages": "pnpm -r --filter ./packages/* build",
59
57
  "build:min": "node scripts/build.js --minify",
60
58
  "dev": "node scripts/build.js --development",
61
59
  "check:versions": "node scripts/check-version-consistency.js",