@mccustomapps/helaui 0.1.1 → 0.1.2

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": "@mccustomapps/helaui",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "HelaUI components with Sinhala font support",
5
5
  "author": "mccustomapps",
6
6
  "license": "MIT",
@@ -31,7 +31,8 @@
31
31
  "./assets/sun-mandala/*": "./dist/assets/sun-mandala/*"
32
32
  },
33
33
  "files": [
34
- "dist"
34
+ "dist",
35
+ "src/assets/**"
35
36
  ],
36
37
  "sideEffects": [
37
38
  "**/*.css"
@@ -0,0 +1,7 @@
1
+ import fritter from './fritter.png';
2
+ import kokis from './kokis.png';
3
+ import leaf from './leaf.png';
4
+ import swirl from './swirl.png';
5
+
6
+ /** Built-in rain sprite URLs shipped with HelaUI. */
7
+ export const BUILTIN_RAIN_IMAGES = [fritter, swirl, kokis, leaf] as const;
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,4 @@
1
+ import iraHanda from './ira-handa.png';
2
+
3
+ /** Built-in Sri Lankan Ira Handa (sun face) mandala artwork. */
4
+ export const BUILTIN_SUN_MANDALA_IMAGE = iraHanda;