@point-hub/papp 0.0.23 → 0.0.24
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/components/base-avatar.vue.d.ts +1 -1
- package/dist/components/base-button.vue.d.ts +2 -2
- package/dist/components/base-card.vue.d.ts +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +5430 -4832
- package/dist/index.umd.cjs +9 -6
- package/dist/style.css +1 -1
- package/package.json +27 -27
|
@@ -34,8 +34,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
34
34
|
indicator: boolean;
|
|
35
35
|
animate: boolean;
|
|
36
36
|
}>>>, {
|
|
37
|
-
animate: boolean;
|
|
38
37
|
size: BaseAvatarSizeType;
|
|
38
|
+
animate: boolean;
|
|
39
39
|
color: BaseAvatarColorType;
|
|
40
40
|
shape: BaseAvatarShapeType;
|
|
41
41
|
colorIndicator: BaseAvatarColorType;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export type BaseButtonColorType = 'none' | 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
2
|
-
export type BaseButtonVariantType = '
|
|
3
|
-
export type BaseButtonShapeType = 'sharp' | '
|
|
2
|
+
export type BaseButtonVariantType = 'filled' | 'light' | 'outlined' | 'text';
|
|
3
|
+
export type BaseButtonShapeType = 'sharp' | 'rounded' | 'pill';
|
|
4
4
|
export type BaseButtonSizeType = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
5
5
|
export type BaseButtonType = 'submit' | 'button' | 'reset';
|
|
6
6
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -1,12 +1,18 @@
|
|
|
1
|
+
export type BaseCardShapeType = 'sharp' | 'round';
|
|
1
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
3
|
shadow?: boolean;
|
|
4
|
+
shape?: BaseCardShapeType;
|
|
3
5
|
}>, {
|
|
4
6
|
shadow: boolean;
|
|
7
|
+
shape: string;
|
|
5
8
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
9
|
shadow?: boolean;
|
|
10
|
+
shape?: BaseCardShapeType;
|
|
7
11
|
}>, {
|
|
8
12
|
shadow: boolean;
|
|
13
|
+
shape: string;
|
|
9
14
|
}>>>, {
|
|
15
|
+
shape: BaseCardShapeType;
|
|
10
16
|
shadow: boolean;
|
|
11
17
|
}, {}>, {
|
|
12
18
|
header?(_: {}): any;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import '@/assets/css/main.css';
|
|
2
|
+
import 'virtual:uno.css';
|
|
1
3
|
export { default as BaseAccordion } from './components/base-accordion.vue';
|
|
2
4
|
export { default as BaseAccordionItem } from './components/base-accordion-item.vue';
|
|
3
5
|
export { default as BaseAlert, type BaseAlertColorType, type BaseAlertIconType, type BaseAlertVariantType } from './components/base-alert.vue';
|