@evercam/ui 0.0.3 → 0.0.4
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/dist/index.mjs +273 -272
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/{EAvatar/EAvatar.vue.d.ts → EAvatar.vue.d.ts} +1 -1
- package/dist/src/components/{EBadge/EBadge.vue.d.ts → EBadge.vue.d.ts} +1 -1
- package/dist/src/components/{EIcon/EIcon.vue.d.ts → EIcon.vue.d.ts} +1 -1
- package/dist/src/components/{ESpinner/ESpinner.vue.d.ts → ESpinner.vue.d.ts} +1 -1
- package/dist/src/index.d.ts +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/src/components/EAvatar/index.d.ts +0 -3
- package/dist/src/components/EBadge/index.d.ts +0 -3
- package/dist/src/components/EIcon/index.d.ts +0 -3
- package/dist/src/components/ESpinner/index.d.ts +0 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
|
-
import { BaseColor, Size } from "
|
|
2
|
+
import { BaseColor, Size } from "./constants";
|
|
3
3
|
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
4
4
|
sizes: {
|
|
5
5
|
xs: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
|
-
import { BaseColor, Size } from "
|
|
2
|
+
import { BaseColor, Size } from "./constants";
|
|
3
3
|
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
4
4
|
colors: {
|
|
5
5
|
error: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
|
-
import { Size } from "
|
|
2
|
+
import { Size } from "./constants";
|
|
3
3
|
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, {
|
|
4
4
|
sizes: Record<Size, string>;
|
|
5
5
|
iconClasses: string[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
|
-
import { Size } from "
|
|
2
|
+
import { Size } from "./constants";
|
|
3
3
|
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
4
4
|
sizes: any;
|
|
5
5
|
colors: any;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import EAvatar from './components/EAvatar';
|
|
2
|
-
import EBadge from './components/EBadge';
|
|
3
|
-
import EIcon from './components/EIcon';
|
|
4
|
-
import ESpinner from './components/ESpinner';
|
|
1
|
+
import EAvatar from './components/EAvatar.vue';
|
|
2
|
+
import EBadge from './components/EBadge.vue';
|
|
3
|
+
import EIcon from './components/EIcon.vue';
|
|
4
|
+
import ESpinner from './components/ESpinner.vue';
|
|
5
5
|
import { VueConstructor } from "vue";
|
|
6
6
|
declare const _default: {
|
|
7
7
|
install(Vue: VueConstructor): void;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-spinner__primary[data-v-
|
|
1
|
+
.e-spinner__primary[data-v-1d705be1],.e-spinner__secondary[data-v-1d705be1]{stroke-width:0;animation:fade-1d705be1;animation-iteration-count:infinite}@keyframes fade-1d705be1{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}
|
package/package.json
CHANGED