@croquiscom/pds 8.19.1 → 8.19.2
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 +6 -0
- package/dist/components/message/types.d.ts +1 -1
- package/dist/components/notification/types.d.ts +1 -1
- package/dist/components/toast/types.d.ts +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,5 +6,5 @@ export declare const MessagePosition: {
|
|
|
6
6
|
readonly BOTTOM_CENTER: "bottom-center";
|
|
7
7
|
readonly CENTER: "center";
|
|
8
8
|
};
|
|
9
|
-
export type MessagePositionType = typeof MessagePosition[keyof typeof MessagePosition];
|
|
9
|
+
export type MessagePositionType = (typeof MessagePosition)[keyof typeof MessagePosition];
|
|
10
10
|
export type MessageDirection = Extract<CSSProperties['flexDirection'], 'column' | 'column-reverse'>;
|
|
@@ -6,4 +6,4 @@ export declare const NotificationPosition: {
|
|
|
6
6
|
readonly BOTTOM_CENTER: "bottom-center";
|
|
7
7
|
readonly CENTER: "center";
|
|
8
8
|
};
|
|
9
|
-
export type NotificationPositionType = typeof NotificationPosition[keyof typeof NotificationPosition];
|
|
9
|
+
export type NotificationPositionType = (typeof NotificationPosition)[keyof typeof NotificationPosition];
|
|
@@ -8,5 +8,5 @@ export declare const ToastPosition: {
|
|
|
8
8
|
readonly BOTTOM_CENTER: "bottom-center";
|
|
9
9
|
readonly CENTER: "center";
|
|
10
10
|
};
|
|
11
|
-
export type ToastPositionType = typeof ToastPosition[keyof typeof ToastPosition];
|
|
11
|
+
export type ToastPositionType = (typeof ToastPosition)[keyof typeof ToastPosition];
|
|
12
12
|
export type ToastDirection = MessageDirection;
|