@evercam/ui 0.0.12 → 0.0.14

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.
@@ -0,0 +1,22 @@
1
+ import Vue from "vue";
2
+ 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, {
3
+ isSizePropAuto(prop: boolean | string | number | undefined, acceptUndefined?: boolean): boolean;
4
+ isSizePropertyNumeric(prop: boolean | string | number | undefined): boolean;
5
+ }, {
6
+ colClasses: Record<string, boolean>;
7
+ }, {
8
+ alignSelf: string;
9
+ cols: string | number | boolean;
10
+ lg: string | number | boolean;
11
+ md: string | number | boolean;
12
+ offset: string | number;
13
+ offsetLg: string | number;
14
+ offsetMd: string | number;
15
+ offsetSm: string | number;
16
+ offsetXs: string | number;
17
+ offsetXl: string | number;
18
+ sm: string | number | boolean;
19
+ xs: string | number | boolean;
20
+ xl: string | number | boolean;
21
+ }, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
22
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import Vue from "vue";
2
+ import { FlexAlignContent, FlexAlignItems, FlexJustifyContent } from '../types';
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
+ rowClasses: Record<string, boolean>;
5
+ }, {
6
+ align: FlexAlignItems;
7
+ alignContent: FlexAlignContent;
8
+ justify: FlexJustifyContent;
9
+ noGutters: boolean;
10
+ }, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
11
+ export default _default;
@@ -2,11 +2,13 @@ import EAvatar from './components/EAvatar.vue';
2
2
  import EBadge from './components/EBadge.vue';
3
3
  import EIcon from './components/EIcon.vue';
4
4
  import ESpinner from './components/ESpinner.vue';
5
+ import ERow from './components/ERow.vue';
6
+ import ECol from './components/ECol.vue';
5
7
  import { VueConstructor } from "vue";
6
8
  declare const _default: {
7
9
  install(Vue: VueConstructor): void;
8
10
  };
9
11
  export default _default;
10
- export { EAvatar, EBadge, EIcon, ESpinner };
12
+ export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol };
11
13
  export * from './constants';
12
14
  export * from './types';
@@ -30,5 +30,9 @@ export type TAvatarSize = (typeof AvatarSizes)[number];
30
30
  export type TIconSize = (typeof IconSizes)[number];
31
31
  export type TBadgeColor = (typeof BadgeColors)[number];
32
32
  export type TailwindColorClass = string;
33
+ export type FlexJustifyContent = "around" | "between" | "center" | "end" | "evenly" | "normal" | "start" | "stretch";
34
+ export type FlexAlignItems = "start" | "center" | "end" | "baseline" | "stretch";
35
+ export type FlexAlignContent = "around" | "baseline" | "between" | "center" | "end" | "evenly" | "normal" | "start" | "stretch";
36
+ export type FlexAlignSelf = "auto" | "baseline" | "center" | "end" | "start" | "stretch";
33
37
  declare const _default: {};
34
38
  export default _default;
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}
1
+ .e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row .e-col{width:100%;padding:.75rem}.e-row.e-row--no-gutters .e-col{width:100%;padding:0}