@monkeyplus/flow 6.0.31 → 6.0.33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monkeyplus/flow",
3
- "version": "6.0.31",
3
+ "version": "6.0.33",
4
4
  "description": "@monkeyplus/flow package-first runtime with Vite, Nitro, Vue and a workspace playground.",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -144,6 +144,11 @@ ${cleanTrace}`);
144
144
  app.provide("utils", utils);
145
145
  const head = createHead();
146
146
  head.use(UnheadSchemaOrg());
147
+ head.push({
148
+ htmlAttrs: {
149
+ lang: page.locale.lang
150
+ }
151
+ });
147
152
  head.push(normalizeSeoToHead(page.head, fallbackTitle, fallbackDescription));
148
153
  app.use(head);
149
154
  installFlowVuePlugins(app);
@@ -280,7 +280,7 @@ function FlowComponentsResolver() {
280
280
  return {
281
281
  type: "component",
282
282
  resolve: (name) => {
283
- if (["FlowIsland", "MkImage", "MkLink", "MkPicture"].includes(name)) {
283
+ if (["FlowIsland", "MkImage", "MkLink", "MkPicture", "MkIcon"].includes(name)) {
284
284
  return {
285
285
  name,
286
286
  from: "@monkeyplus/flow/components"