@nons-dev/uikit 0.1.8 → 0.1.10

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/locales/en.json CHANGED
@@ -322,5 +322,12 @@
322
322
  "demo_subtitle": "This card is fully rendered from a JSON specification and has real functionality.",
323
323
  "input_placeholder": "Schema input...",
324
324
  "submit": "Submit from Schema"
325
+ },
326
+ "sidepanel": {
327
+ "close": "Close",
328
+ "cancel": "Cancel",
329
+ "save": "Save",
330
+ "minimize": "Minimize",
331
+ "maximize": "Maximize"
325
332
  }
326
333
  }
package/locales/fa.json CHANGED
@@ -322,5 +322,12 @@
322
322
  "demo_subtitle": "این کادر به طور کامل از یک مشخصات JSON رندر شده است و عملکرد واقعی دارد.",
323
323
  "input_placeholder": "ورودی اسکیما...",
324
324
  "submit": "ثبت از اسکیما"
325
+ },
326
+ "sidepanel": {
327
+ "close": "بستن",
328
+ "cancel": "انصراف",
329
+ "save": "ذخیره",
330
+ "minimize": "کوچک‌نمایی",
331
+ "maximize": "بزرگ‌نمایی"
325
332
  }
326
333
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nons-dev/uikit",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "license": "BUSL-1.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -8,7 +8,7 @@ import { generateFullCSS } from '../core/config/parser'
8
8
  const CONFIG_VIRTUAL = 'virtual:nons-config'
9
9
  const CONFIG_CSS_VIRTUAL = 'virtual:nons-config:style'
10
10
  const RESOLVED_CONFIG_VIRTUAL = '\0' + CONFIG_VIRTUAL
11
- const RESOLVED_CONFIG_CSS_VIRTUAL = '\0' + CONFIG_CSS_VIRTUAL
11
+ const RESOLVED_CONFIG_CSS_VIRTUAL = '\0' + CONFIG_CSS_VIRTUAL + '.css'
12
12
 
13
13
  let loadedConfig: RawConfig | null = null
14
14