@mobileaction/action-kit 1.31.6 → 1.31.7
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.31.7](https://github.com/mobileaction/action-kit/compare/v1.31.6...v1.31.7) (2024-07-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **DUV-6111:** notification x-small size removed & small design updates ([81d5037](https://github.com/mobileaction/action-kit/commit/81d503708a58a077e23ac5e7ec32fdd9b6acafc2))
|
|
11
|
+
|
|
5
12
|
## [1.31.6](https://github.com/mobileaction/action-kit/compare/v1.31.5...v1.31.6) (2024-07-19)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -5,7 +5,7 @@ export declare const NotificationVariants: readonly ["filled", "light", "stroke"
|
|
|
5
5
|
export type NotificationVariant = (typeof NotificationVariants)[number];
|
|
6
6
|
export declare const NotificationPlacements: readonly ["top", "topLeft", "topRight", "bottom", "bottomLeft", "bottomRight"];
|
|
7
7
|
export type NotificationPlacement = (typeof NotificationPlacements)[number];
|
|
8
|
-
export declare const NotificationSizes: readonly ["
|
|
8
|
+
export declare const NotificationSizes: readonly ["small", "large"];
|
|
9
9
|
export type NotificationSize = (typeof NotificationSizes)[number];
|
|
10
10
|
export interface NotificationButton {
|
|
11
11
|
label: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Meta, StoryFn } from
|
|
2
|
-
import MaDrawer from
|
|
1
|
+
import { Meta, StoryFn } from '@storybook/vue3';
|
|
2
|
+
import MaDrawer from '@/components/drawer/index.vue';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const baseConfig: Meta<typeof MaDrawer>;
|
|
@@ -5,7 +5,7 @@ export declare const NotificationVariants: readonly ["filled", "light", "stroke"
|
|
|
5
5
|
export declare type NotificationVariant = (typeof NotificationVariants)[number];
|
|
6
6
|
export declare const NotificationPlacements: readonly ["top", "topLeft", "topRight", "bottom", "bottomLeft", "bottomRight"];
|
|
7
7
|
export declare type NotificationPlacement = (typeof NotificationPlacements)[number];
|
|
8
|
-
export declare const NotificationSizes: readonly ["
|
|
8
|
+
export declare const NotificationSizes: readonly ["small", "large"];
|
|
9
9
|
export declare type NotificationSize = (typeof NotificationSizes)[number];
|
|
10
10
|
export interface NotificationButton {
|
|
11
11
|
label: string;
|