@esportsplus/ui 0.40.0 → 0.40.1

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.
@@ -3,9 +3,9 @@ import { reactive } from '@esportsplus/reactivity';
3
3
  import { html, svg } from '@esportsplus/template';
4
4
  import { omit } from '@esportsplus/utilities';
5
5
  import { icon } from '@esportsplus/ui';
6
- import check from '~/storage/svg/check.svg';
7
- import close from '~/storage/svg/close.svg';
8
- import e from '~/storage/svg/error.svg';
6
+ import check from './svg/check.svg';
7
+ import close from './svg/close.svg';
8
+ import e from './svg/error.svg';
9
9
  import './scss/index.scss';
10
10
  const OMIT = ['close', 'message'];
11
11
  let modifiers = {
package/package.json CHANGED
@@ -45,7 +45,7 @@
45
45
  "private": false,
46
46
  "sideEffects": false,
47
47
  "type": "module",
48
- "version": "0.40.0",
48
+ "version": "0.40.1",
49
49
  "scripts": {
50
50
  "build": "run-s build:vite build:ts",
51
51
  "build:ts": "tsc && tsc-alias",
@@ -4,9 +4,9 @@ import { reactive } from '@esportsplus/reactivity';
4
4
  import { html, svg, Attributes, Renderable } from '@esportsplus/template';
5
5
  import { omit } from '@esportsplus/utilities';
6
6
  import { icon } from '@esportsplus/ui';
7
- import check from '~/storage/svg/check.svg';
8
- import close from '~/storage/svg/close.svg';
9
- import e from '~/storage/svg/error.svg';
7
+ import check from './svg/check.svg';
8
+ import close from './svg/close.svg';
9
+ import e from './svg/error.svg';
10
10
  import './scss/index.scss';
11
11
 
12
12