@cbutep_n/pico-ui 0.0.4 → 0.0.6
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/PCard/PCard.vue.d.ts +17 -0
- package/dist/components/base/PIcon/PIcon.vue.d.ts +3 -3
- package/dist/index.d.ts +3 -5
- package/dist/pico-ui.es.js +366 -366
- package/dist/pico-ui.es.js.map +1 -1
- package/dist/pico-ui.umd.js +1 -1
- package/dist/pico-ui.umd.js.map +1 -1
- package/dist/style.css +1 -0
- package/dist/utils/IconsEnum.d.ts +3 -3
- package/package.json +3 -2
- package/dist/assets/checkmark.svg +0 -3
- package/dist/assets/pico-ui.css +0 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PicoIconsNames } from '../../../utils/IconsEnum';
|
|
2
2
|
export interface PIconProps {
|
|
3
|
-
name:
|
|
3
|
+
name: PicoIconsNames;
|
|
4
4
|
}
|
|
5
|
-
declare const _default: import('vue').DefineComponent<PIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<PIconProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
5
|
+
declare const _default: import('vue').DefineComponent<PIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<PIconProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
6
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Plugin } from 'vue';
|
|
2
1
|
import { default as PButton } from './components/base/PButton/PButton.vue';
|
|
3
2
|
import { default as PCheckboxInput } from './components/base/PCheckboxInput/PCheckboxInput.vue';
|
|
4
3
|
import { default as PDivider } from './components/base/PDivider/PDivider.vue';
|
|
@@ -10,8 +9,9 @@ import { default as PSkeleton } from './components/base/PSkeleton/PSkeleton.vue'
|
|
|
10
9
|
import { default as PSwitchInput } from './components/base/PSwitchInput/PSwitchInput.vue';
|
|
11
10
|
import { default as PTextInput } from './components/base/PTextInput/PTextInput.vue';
|
|
12
11
|
import { default as PBackgroud } from './components/PBackground/PBackgroud.vue';
|
|
13
|
-
|
|
14
|
-
export {
|
|
12
|
+
import { default as PCard } from './components/base/PCard/PCard.vue';
|
|
13
|
+
export { PCard, PButton, PCheckboxInput, PDivider, PFormItem, PIcon, PPlane, PRadioInput, PSkeleton, PSwitchInput, PTextInput, PBackgroud, };
|
|
14
|
+
export { PicoIcons, type PicoIconsNames } from './utils/IconsEnum';
|
|
15
15
|
export type { PButtonVariants, PButtonSizes, PButtonProps } from './components/base/PButton/PButton.vue';
|
|
16
16
|
export type { PCheckboxInputProps } from './components/base/PCheckboxInput/PCheckboxInput.vue';
|
|
17
17
|
export type { PDividerProps } from './components/base/PDivider/PDivider.vue';
|
|
@@ -19,5 +19,3 @@ export type { PFormItemProps } from './components/base/PFormItem/PFormItem.vue';
|
|
|
19
19
|
export type { PIconProps } from './components/base/PIcon/PIcon.vue';
|
|
20
20
|
export type { PRadioInputProps } from './components/base/PRadioInput/PRadioInput.vue';
|
|
21
21
|
export type { PTextInputProps } from './components/base/PTextInput/PTextInput.vue';
|
|
22
|
-
declare const PicoUI: Plugin;
|
|
23
|
-
export default PicoUI;
|