@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 '
|
|
7
|
-
import close from '
|
|
8
|
-
import e from '
|
|
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
|
@@ -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 '
|
|
8
|
-
import close from '
|
|
9
|
-
import e from '
|
|
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
|
|