@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.
package/dist/vanduo.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Vanduo v1.3.8 | Built: 2026-05-06T18:32:43.703Z | git:6042eac | development */
1
+ /*! Vanduo v1.3.9 | Built: 2026-05-10T18:54:59.798Z | git:2945a85 | development */
2
2
  (() => {
3
3
  // js/utils/lifecycle.js
4
4
  (function() {
@@ -107,7 +107,7 @@
107
107
  // js/vanduo.js
108
108
  (function() {
109
109
  "use strict";
110
- const VANDUO_VERSION = true ? "1.3.8" : "0.0.0-dev";
110
+ const VANDUO_VERSION = true ? "1.3.9" : "0.0.0-dev";
111
111
  const Vanduo2 = {
112
112
  version: VANDUO_VERSION,
113
113
  components: {},
@@ -1192,7 +1192,7 @@
1192
1192
  preference: this.getPreference()
1193
1193
  };
1194
1194
  if (!this.fonts[this.state.preference]) {
1195
- this.state.preference = "lato";
1195
+ this.state.preference = "ubuntu";
1196
1196
  this.setStorageValue(this.STORAGE_KEY, this.state.preference);
1197
1197
  }
1198
1198
  if (this.isInitialized) {
@@ -1208,10 +1208,10 @@
1208
1208
  },
1209
1209
  /**
1210
1210
  * Get saved font preference from localStorage
1211
- * @returns {string} Font key or 'lato' (default)
1211
+ * @returns {string} Font key or 'ubuntu' (default)
1212
1212
  */
1213
1213
  getPreference: function() {
1214
- return this.getStorageValue(this.STORAGE_KEY, "lato");
1214
+ return this.getStorageValue(this.STORAGE_KEY, "ubuntu");
1215
1215
  },
1216
1216
  /**
1217
1217
  * Set font preference and apply it
@@ -3879,9 +3879,9 @@
3879
3879
  DEFAULTS: {
3880
3880
  PRIMARY_LIGHT: "black",
3881
3881
  PRIMARY_DARK: "amber",
3882
- NEUTRAL: "neutral",
3882
+ NEUTRAL: "charcoal",
3883
3883
  RADIUS: "0.5",
3884
- FONT: "lato",
3884
+ FONT: "ubuntu",
3885
3885
  THEME: "system"
3886
3886
  },
3887
3887
  // Primary color definitions (Open Color based)
@@ -3907,6 +3907,7 @@
3907
3907
  },
3908
3908
  // Neutral color definitions
3909
3909
  NEUTRAL_COLORS: {
3910
+ "charcoal": { name: "Charcoal", color: "#0d1117" },
3910
3911
  "slate": { name: "Slate", color: "#64748b" },
3911
3912
  "gray": { name: "Gray", color: "#6b7280" },
3912
3913
  "zinc": { name: "Zinc", color: "#71717a" },