@evercam/ui 1.0.0-preview-reamove-action-button-component-0a5a1ae99 → 1.0.0-preview-smartSearchAutomation-329dbfa4f

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/README.md CHANGED
@@ -72,3 +72,4 @@ export default Vue.extend({
72
72
  </script>
73
73
  ```
74
74
 
75
+
@@ -1097,16 +1097,6 @@
1097
1097
  "description": "",
1098
1098
  "default": "none"
1099
1099
  },
1100
- "EActionButton/size": {
1101
- "type": "string|number",
1102
- "description": "",
1103
- "default": null
1104
- },
1105
- "EActionButton/shadow": {
1106
- "type": "string",
1107
- "description": "",
1108
- "default": "sm"
1109
- },
1110
1100
  "EActionButtonGroup/direction": {
1111
1101
  "type": "string",
1112
1102
  "description": "",
@@ -1117,11 +1107,6 @@
1117
1107
  "description": "",
1118
1108
  "default": "none"
1119
1109
  },
1120
- "EActionButtonGroup/shadow": {
1121
- "type": "string",
1122
- "description": "",
1123
- "default": "sm"
1124
- },
1125
1110
  "EActionButtonGroup/dark": {
1126
1111
  "type": "boolean",
1127
1112
  "description": "",
@@ -1452,6 +1437,11 @@
1452
1437
  "description": "",
1453
1438
  "default": ""
1454
1439
  },
1440
+ "ERadioGroup/lazy-root": {
1441
+ "type": "object",
1442
+ "description": "",
1443
+ "default": null
1444
+ },
1455
1445
  "ESelect/value": {
1456
1446
  "type": "string|number|boolean|object|array",
1457
1447
  "description": "",
@@ -1,15 +1,11 @@
1
1
  import Vue from "vue";
2
- import { Size, CssUnit } from '../types';
2
+ import { Size } from '../types';
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
  isDark: boolean;
5
5
  withTooltip: boolean;
6
6
  buttonClassesContainsBg: boolean;
7
7
  radiusStyle: Record<string, string>;
8
- resolvedSize: string | null;
9
- sizeStyle: Record<string, string>;
10
- shadowStyle: Record<string, string>;
11
- btnStyles: Record<string, string>;
12
- btnClasses: (string | Record<string, boolean>)[];
8
+ buttonStyle: (string | Record<string, boolean>)[];
13
9
  }, {
14
10
  tooltipText: string;
15
11
  tooltipColor: string;
@@ -23,7 +19,5 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
23
19
  active: boolean;
24
20
  loading: boolean;
25
21
  rounded: string;
26
- size: number | "sm" | "lg" | "xl" | CssUnit | "md";
27
- shadow: string;
28
22
  }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
29
23
  export default _default;
@@ -14,7 +14,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
14
14
  }, {
15
15
  direction: string;
16
16
  rounded: string;
17
- shadow: string;
18
17
  dark: boolean;
19
18
  buttonSize: string | number;
20
19
  expandable: boolean;
@@ -11,6 +11,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
11
11
  withDescription: boolean;
12
12
  withIcon: boolean;
13
13
  itemsWrapperClasses: any;
14
+ lazyRoot: Element | null;
14
15
  }, {}, 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, {
15
16
  isSelected(value: any): boolean;
16
17
  onItemClick(value: any, event?: Event | undefined): void;
@@ -30,19 +30,5 @@ export declare const BORDER_RADIUS_MAP: {
30
30
  readonly lg: "0.5rem";
31
31
  readonly full: "9999px";
32
32
  };
33
- export declare const ACTION_BUTTON_SIZE_MAP: {
34
- readonly sm: "32px";
35
- readonly md: "40px";
36
- readonly lg: "48px";
37
- readonly xl: "56px";
38
- };
39
- export declare const CSS_UNIT_REGEX: RegExp;
40
- export declare const SHADOW_MAP: {
41
- readonly none: "none";
42
- readonly sm: "0 2px 1px -1px rgba(0,0,0,0.2), 0 1px 1px 0 rgba(0,0,0,0.14), 0 1px 3px 0 rgba(0,0,0,0.12)";
43
- readonly md: "0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12)";
44
- readonly lg: "0 5px 5px -3px rgba(0,0,0,0.2), 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12)";
45
- readonly xl: "0 8px 10px -5px rgba(0,0,0,0.2), 0 16px 24px 2px rgba(0,0,0,0.14), 0 6px 30px 5px rgba(0,0,0,0.12)";
46
- };
47
33
  declare const _default: {};
48
34
  export default _default;