@point-hub/papp 0.0.11 → 0.0.13
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/app-footer.vue.d.ts +15 -0
- package/dist/components/app-header.vue.d.ts +2 -0
- package/dist/components/base-avatar.vue.d.ts +1 -1
- package/dist/index.d.ts +13 -11
- package/dist/index.js +3113 -2869
- package/dist/index.umd.cjs +6 -6
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
version: string;
|
|
3
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
version: string;
|
|
5
|
+
}>>>, {}, {}>;
|
|
6
|
+
export default _default;
|
|
7
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
8
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
9
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
10
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
11
|
+
} : {
|
|
12
|
+
type: import('vue').PropType<T[K]>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -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
|
-
color: BaseAvatarColorType;
|
|
38
37
|
animate: boolean;
|
|
38
|
+
color: BaseAvatarColorType;
|
|
39
39
|
colorIndicator: BaseAvatarColorType;
|
|
40
40
|
shape: BaseAvatarShapeType;
|
|
41
41
|
size: BaseAvatarSizeType;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { default as BaseAlert, type BaseAlertColorType, type BaseAlertIconType, type BaseAlertVariantType } from './components/base-alert.vue';
|
|
2
1
|
export { default as BaseAccordion } from './components/base-accordion.vue';
|
|
3
2
|
export { default as BaseAccordionItem } from './components/base-accordion-item.vue';
|
|
3
|
+
export { default as BaseAlert, type BaseAlertColorType, type BaseAlertIconType, type BaseAlertVariantType } from './components/base-alert.vue';
|
|
4
4
|
export { default as BaseAvatar, type BaseAvatarColorType, type BaseAvatarShapeType, type BaseAvatarSizeType } from './components/base-avatar.vue';
|
|
5
5
|
export { default as BaseAvatarGroup } from './components/base-avatar-group.vue';
|
|
6
6
|
export { default as BaseBadge, type BaseBadgeColorType, type BaseBadgeVariantType } from './components/base-badge.vue';
|
|
7
|
-
export { default as BaseButton, type BaseButtonColorType, type BaseButtonVariantType, type BaseButtonShapeType, type BaseButtonSizeType } from './components/base-button.vue';
|
|
8
7
|
export { default as BaseBreadcrumb, type BaseBreadcrumbItemInterface, type BaseBreadcrumbSeparatoryType } from './components/base-breadcrumb.vue';
|
|
8
|
+
export { default as BaseButton, type BaseButtonColorType, type BaseButtonShapeType, type BaseButtonSizeType, type BaseButtonVariantType } from './components/base-button.vue';
|
|
9
9
|
export { default as BaseCard } from './components/base-card.vue';
|
|
10
10
|
export { default as BaseDivider, type BaseDividerOrientation } from './components/base-divider.vue';
|
|
11
11
|
export { default as BaseDropdown, type BaseDropdownPosition } from './components/base-dropdown.vue';
|
|
@@ -16,6 +16,7 @@ export { default as BaseModal, type BaseModalSizeType } from './components/base-
|
|
|
16
16
|
export { default as BasePagination } from './components/base-pagination.vue';
|
|
17
17
|
export { default as BasePopover, type BasePopoverPlacementType } from './components/base-popover.vue';
|
|
18
18
|
export { default as BaseProgress, type BaseProgressColorType, type BaseProgressSizeType } from './components/base-progress.vue';
|
|
19
|
+
export { default as BaseSpinner, type BaseSpinnerColorType, type BaseSpinnerSizeType } from './components/base-spinner.vue';
|
|
19
20
|
export { default as BaseStep, type BaseStepItemInterface } from './components/base-step.vue';
|
|
20
21
|
export { default as BaseTab } from './components/base-tab.vue';
|
|
21
22
|
export { default as BaseTabGroup } from './components/base-tab-group.vue';
|
|
@@ -28,29 +29,30 @@ export { default as BaseTimelineContent } from './components/base-timeline-conte
|
|
|
28
29
|
export { default as BaseToast, type BaseToastColorType } from './components/base-toast.vue';
|
|
29
30
|
export { default as BaseTooltip } from './components/base-tooltip.vue';
|
|
30
31
|
export { default as BaseTreeview } from './components/base-treeview.vue';
|
|
31
|
-
export { default as BaseSpinner, type BaseSpinnerColorType, type BaseSpinnerSizeType } from './components/base-spinner.vue';
|
|
32
32
|
export { default as BaseAutocomplete, type BaseAutocompleteBorderType, type BaseAutocompleteOptionInterface } from './components/base-autocomplete.vue';
|
|
33
33
|
export { default as BaseCheckbox, type BaseCheckboxThemeType } from './components/base-checkbox.vue';
|
|
34
34
|
export { default as BaseDatepicker, type BaseDatepickerBorderType } from './components/base-datepicker.vue';
|
|
35
35
|
export { default as BaseFileUpload, type BaseFileUploadBorderType } from './components/base-file-upload.vue';
|
|
36
36
|
export { default as BaseForm, type BaseFormLayoutType } from './components/base-form.vue';
|
|
37
|
-
export { default as BaseInput, type
|
|
37
|
+
export { default as BaseInput, type BaseInputBorderType, type BaseInputType } from './components/base-input.vue';
|
|
38
38
|
export { default as BaseInputMask, type BaseInputMaskBorderType } from './components/base-input-mask.vue';
|
|
39
39
|
export { default as BaseInputNumber, type BaseInputNumberBorderType } from './components/base-input-number.vue';
|
|
40
40
|
export { default as BaseRadio, type BaseRadioOptionsLayout } from './components/base-radio.vue';
|
|
41
41
|
export { default as BaseRange } from './components/base-range.vue';
|
|
42
|
+
export { default as BaseSelect, type BaseSelectBorderType, type BaseSelectOptionInterface } from './components/base-select.vue';
|
|
43
|
+
export { default as BaseSwitch, type BaseSwitchSize, type BaseSwitchTextPosition } from './components/base-switch.vue';
|
|
42
44
|
export { default as BaseTextarea, type BaseTextareaBorderType } from './components/base-textarea.vue';
|
|
43
|
-
export { default as BaseSelect, type BaseSelectOptionInterface, type BaseSelectBorderType } from './components/base-select.vue';
|
|
44
|
-
export { default as BaseSwitch, type BaseSwitchTextPosition, type BaseSwitchSize } from './components/base-switch.vue';
|
|
45
45
|
export { default as PluginIcon } from './plugins/icon';
|
|
46
46
|
export { default as PluginInputMask } from './plugins/input-mask';
|
|
47
47
|
export { default as PluginTooltip } from './plugins/tooltip';
|
|
48
|
-
export { useScreenBreakpointStore } from './stores/screen-breakpoint';
|
|
49
|
-
export { useScreenSize } from './composable/screen-size';
|
|
50
|
-
export { useMobileBreakpoint } from './composable/mobile-breakpoint';
|
|
51
|
-
export { useWebsocketStore } from './stores/websocket';
|
|
52
|
-
export { emitter, EventEmitter } from './composable/emitter';
|
|
53
48
|
export { useDarkMode } from './composable/dark-mode';
|
|
49
|
+
export { emitter, EventEmitter } from './composable/emitter';
|
|
50
|
+
export { useMobileBreakpoint } from './composable/mobile-breakpoint';
|
|
54
51
|
export { useNumeric } from './composable/numeric';
|
|
52
|
+
export { useScreenSize } from './composable/screen-size';
|
|
55
53
|
export { useSidebar } from './composable/sidebar';
|
|
54
|
+
export { useScreenBreakpointStore } from './stores/screen-breakpoint';
|
|
56
55
|
export { useSidebarStore } from './stores/sidebar';
|
|
56
|
+
export { useWebsocketStore } from './stores/websocket';
|
|
57
|
+
export { default as AppFooter } from './components/app-footer.vue';
|
|
58
|
+
export { default as AppHeader } from './components/app-header.vue';
|