@ambita/design-system 1.0.48 → 1.0.49
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/aux.common.js +194 -79
- package/dist/aux.common.js.map +1 -1
- package/dist/aux.umd.js +194 -79
- package/dist/aux.umd.js.map +1 -1
- package/dist/aux.umd.min.js +2 -2
- package/dist/aux.umd.min.js.map +1 -1
- package/dist/css/colors-scss-variables.scss +3 -0
- package/dist/types/src/components/Pill/Pill.vue.d.ts +2 -2
- package/dist/types/src/components/StatusBadge/StatusBadge.vue.d.ts +34 -0
- package/dist/types/src/components/StatusBadge/Statuses.d.ts +1 -0
- package/dist/types/src/components/Tag/Colors.d.ts +1 -0
- package/dist/types/src/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -41,8 +41,11 @@ $aux-grey-6: #333333;
|
|
|
41
41
|
|
|
42
42
|
// Supports
|
|
43
43
|
$aux-red: #DE0000;
|
|
44
|
+
$aux-red-1: #ffe5e5;
|
|
44
45
|
$aux-blue: #0067A3;
|
|
46
|
+
$aux-blue-2: #C2E0F2;
|
|
45
47
|
$aux-yellow: #ECD025;
|
|
48
|
+
$aux-yellow-1: #fff3a8;
|
|
46
49
|
$aux-green: #5CB85C;
|
|
47
50
|
$aux-white: #FFF;
|
|
48
51
|
$aux-black: #000;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").ComponentOptions<import("vue").default,
|
|
1
|
+
declare const _default: import("vue").ComponentOptions<import("vue").default, void & import("@vue/composition-api").Data, {}, {
|
|
2
2
|
classes(): {
|
|
3
3
|
[x: string]: boolean;
|
|
4
4
|
'aux-pill': boolean;
|
|
@@ -13,7 +13,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
13
13
|
color: string;
|
|
14
14
|
} & {}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
|
|
15
15
|
color: string;
|
|
16
|
-
} & {},
|
|
16
|
+
} & {}, void, import("@vue/composition-api").Data, {
|
|
17
17
|
classes(): {
|
|
18
18
|
[x: string]: boolean;
|
|
19
19
|
'aux-pill': boolean;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
2
|
+
classes: import("@vue/composition-api").ComputedRef<{
|
|
3
|
+
[x: string]: boolean;
|
|
4
|
+
'aux-status-badge': boolean;
|
|
5
|
+
}>;
|
|
6
|
+
dotClasses: import("@vue/composition-api").ComputedRef<{
|
|
7
|
+
[x: string]: boolean;
|
|
8
|
+
'aux-status-badge-dot': boolean;
|
|
9
|
+
}>;
|
|
10
|
+
}> & import("@vue/composition-api").Data, {}, {}, {
|
|
11
|
+
status: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
validator: (value: string) => boolean;
|
|
15
|
+
};
|
|
16
|
+
}, {
|
|
17
|
+
status: string;
|
|
18
|
+
} & {}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
|
|
19
|
+
status: string;
|
|
20
|
+
} & {}, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
21
|
+
classes: import("@vue/composition-api").ComputedRef<{
|
|
22
|
+
[x: string]: boolean;
|
|
23
|
+
'aux-status-badge': boolean;
|
|
24
|
+
}>;
|
|
25
|
+
dotClasses: import("@vue/composition-api").ComputedRef<{
|
|
26
|
+
[x: string]: boolean;
|
|
27
|
+
'aux-status-badge-dot': boolean;
|
|
28
|
+
}>;
|
|
29
|
+
}>, import("@vue/composition-api").Data, {}, {}, {
|
|
30
|
+
status: string;
|
|
31
|
+
} & {}, {
|
|
32
|
+
status: string;
|
|
33
|
+
}, true>);
|
|
34
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const STATUS_TYPES: string[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const TAG_COLORS: string[];
|
|
@@ -16,5 +16,6 @@ export { default as Upload } from './components/Upload/Upload.vue';
|
|
|
16
16
|
export { default as Notifications } from './components/Notification/Notifications.vue';
|
|
17
17
|
export { default as Time } from './components/Time/Time.vue';
|
|
18
18
|
export { default as DirectionalArrow } from '@/components/DirectionalArrow/DirectionalArrow.vue';
|
|
19
|
+
export { default as AuxStatusBadge } from './components/StatusBadge/StatusBadge.vue';
|
|
19
20
|
export { default as registerComponents } from './components/register';
|
|
20
21
|
export { formatDate } from '@/helpers/formatting';
|