@wikicasa-dev/components 2.1.24-alpha.0 → 2.1.24-alpha.1
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/UIKit/BaseSnackbar.d.ts +2 -1
- package/dist/UIKit/types.d.ts +1 -0
- package/dist/lazyModules/Swiper/autoplay.js +1 -1
- package/dist/lazyModules/Swiper/controller.js +1 -1
- package/dist/lazyModules/Swiper/keyboard.js +1 -1
- package/dist/lazyModules/Swiper/thumbs.js +1 -1
- package/package.json +1 -1
- /package/dist/assets/node_modules/swiper/modules/{keyboard.css → autoplay.css} +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Optional } from '@wikicasa-dev/types';
|
|
2
2
|
import { ToastPortalProps } from 'reka-ui';
|
|
3
|
+
import { SnackbarTypes } from './types';
|
|
3
4
|
type __VLS_Props = {
|
|
4
|
-
alertClass?:
|
|
5
|
+
alertClass?: SnackbarTypes;
|
|
5
6
|
/**
|
|
6
7
|
* Time in milliseconds that each toast should remain visible for.
|
|
7
8
|
*/
|
package/dist/UIKit/types.d.ts
CHANGED
|
@@ -59,4 +59,5 @@ type BtnPrefix = "btn-";
|
|
|
59
59
|
export type ButtonType = `${TwPrefix}${BtnPrefix}${"w-primary" | "w-secondary" | "w-warning" | "w-danger" | "transparent" | "light" | "show-more" | "multi-selection" | "single-selection" | "facile"}`;
|
|
60
60
|
export type ClassType = string | Record<string, boolean> | null | undefined | ClassType[];
|
|
61
61
|
export type ClassTypeProp = ClassType | ClassType[];
|
|
62
|
+
export type SnackbarTypes = "primary" | "danger" | "darkblue";
|
|
62
63
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as p } from "../../node_modules/swiper/modules/autoplay.js";
|
|
2
|
-
import '../../assets/node_modules/swiper/modules/
|
|
2
|
+
import '../../assets/node_modules/swiper/modules/autoplay.css';/* empty css */
|
|
3
3
|
export {
|
|
4
4
|
p as Autoplay
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as e } from "../../node_modules/swiper/modules/controller.js";
|
|
2
|
-
import '../../assets/node_modules/swiper/modules/
|
|
2
|
+
import '../../assets/node_modules/swiper/modules/autoplay.css';/* empty css */
|
|
3
3
|
export {
|
|
4
4
|
e as Controller
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as e } from "../../node_modules/swiper/modules/keyboard.js";
|
|
2
|
-
import '../../assets/node_modules/swiper/modules/
|
|
2
|
+
import '../../assets/node_modules/swiper/modules/autoplay.css';/* empty css */
|
|
3
3
|
export {
|
|
4
4
|
e as Keyboard
|
|
5
5
|
};
|
package/package.json
CHANGED
|
File without changes
|