@point-hub/papp 0.0.24 → 0.0.26

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.
@@ -36,8 +36,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
36
36
  isBlock: boolean;
37
37
  isLoading: boolean;
38
38
  }>>>, {
39
- type: BaseButtonType;
40
39
  size: BaseButtonSizeType;
40
+ type: BaseButtonType;
41
41
  color: BaseButtonColorType;
42
42
  variant: BaseButtonVariantType;
43
43
  shape: BaseButtonShapeType;
@@ -0,0 +1,68 @@
1
+ export type BaseButtonColorType = 'none' | 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
2
+ export type BaseButtonVariantType = 'filled' | 'light' | 'outlined' | 'text';
3
+ export type BaseButtonShapeType = 'sharp' | 'rounded' | 'pill';
4
+ export type BaseButtonSizeType = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
5
+ export type BaseButtonType = 'submit' | 'button' | 'reset';
6
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
7
+ href: string;
8
+ type?: BaseButtonType;
9
+ size?: BaseButtonSizeType;
10
+ color?: BaseButtonColorType;
11
+ variant?: BaseButtonVariantType;
12
+ shape?: BaseButtonShapeType;
13
+ isBlock?: boolean;
14
+ }>, {
15
+ type: string;
16
+ size: string;
17
+ color: string;
18
+ shape: string;
19
+ variant: string;
20
+ isBlock: boolean;
21
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
22
+ href: string;
23
+ type?: BaseButtonType;
24
+ size?: BaseButtonSizeType;
25
+ color?: BaseButtonColorType;
26
+ variant?: BaseButtonVariantType;
27
+ shape?: BaseButtonShapeType;
28
+ isBlock?: boolean;
29
+ }>, {
30
+ type: string;
31
+ size: string;
32
+ color: string;
33
+ shape: string;
34
+ variant: string;
35
+ isBlock: boolean;
36
+ }>>>, {
37
+ size: BaseButtonSizeType;
38
+ type: BaseButtonType;
39
+ color: BaseButtonColorType;
40
+ variant: BaseButtonVariantType;
41
+ shape: BaseButtonShapeType;
42
+ isBlock: boolean;
43
+ }, {}>, {
44
+ default?(_: {}): any;
45
+ }>;
46
+ export default _default;
47
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
48
+ type __VLS_TypePropsToRuntimeProps<T> = {
49
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
50
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
51
+ } : {
52
+ type: import('vue').PropType<T[K]>;
53
+ required: true;
54
+ };
55
+ };
56
+ type __VLS_WithDefaults<P, D> = {
57
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
58
+ default: D[K];
59
+ }> : P[K];
60
+ };
61
+ type __VLS_Prettify<T> = {
62
+ [K in keyof T]: T[K];
63
+ } & {};
64
+ type __VLS_WithTemplateSlots<T, S> = T & {
65
+ new (): {
66
+ $slots: S;
67
+ };
68
+ };
package/dist/index.d.ts CHANGED
@@ -13,6 +13,7 @@ export { default as BaseDivider, type BaseDividerOrientation } from './component
13
13
  export { default as BaseDropdown, type BaseDropdownPosition } from './components/base-dropdown.vue';
14
14
  export { default as BaseDropdownItem } from './components/base-dropdown-item.vue';
15
15
  export { default as BaseIcon } from './components/base-icon.vue';
16
+ export { default as BaseLink } from './components/base-link.vue';
16
17
  export { default as BaseMask, type BaseMaskShapeType } from './components/base-mask.vue';
17
18
  export { default as BaseModal, type BaseModalSizeType } from './components/base-modal.vue';
18
19
  export { default as BasePagination } from './components/base-pagination.vue';