glass-studio-ui-pro 1.1.8 → 1.1.10

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.
@@ -0,0 +1,41 @@
1
+ interface Props {
2
+ modelValue: boolean;
3
+ title?: string;
4
+ color?: string;
5
+ width?: string;
6
+ intensity?: number;
7
+ lightPosition?: "tl" | "tr" | "bl" | "br" | "t" | "b" | "l" | "r";
8
+ showClose?: boolean;
9
+ }
10
+ declare function __VLS_template(): {
11
+ attrs: Partial<{}>;
12
+ slots: {
13
+ header?(_: {}): any;
14
+ default?(_: {}): any;
15
+ footer?(_: {}): any;
16
+ };
17
+ refs: {};
18
+ rootEl: any;
19
+ };
20
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
+ close: (...args: any[]) => void;
23
+ "update:modelValue": (...args: any[]) => void;
24
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
25
+ onClose?: ((...args: any[]) => any) | undefined;
26
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
27
+ }>, {
28
+ color: string;
29
+ title: string;
30
+ width: string;
31
+ showClose: boolean;
32
+ lightPosition: "tl" | "tr" | "bl" | "br" | "t" | "b" | "l" | "r";
33
+ intensity: number;
34
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
35
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
36
+ export default _default;
37
+ type __VLS_WithTemplateSlots<T, S> = T & {
38
+ new (): {
39
+ $slots: S;
40
+ };
41
+ };
package/dist/index.d.ts CHANGED
@@ -1,16 +1,22 @@
1
- export { default as CgIcon } from './components/cg/CgIcon.vue';
2
- export { default as CgCard } from './components/cg/CgCard.vue';
3
- export { default as CgButton } from './components/cg/CgButton.vue';
4
- export { default as CgModal } from './components/cg/CgModal.vue';
5
- export { default as CgToolbar } from './components/cg/CgToolbar.vue';
6
- export { default as CgNotification } from './components/cg/CgNotification.vue';
7
- export { default as CgCheckbox } from './components/cg/CgCheckbox.vue';
8
- export { default as CgFilters } from './components/cg/CgFilters.vue';
9
- export { default as CmButton } from './components/cm/CmButton.vue';
10
- export { default as CmCard } from './components/cm/CmCard.vue';
11
- export { default as CmIcon } from './components/cm/CmIcon.vue';
12
- export { default as CnButton } from './components/cn/CnButton.vue';
13
- export { default as CnCard } from './components/cn/CnCard.vue';
14
- export { default as CnIcon } from './components/cn/CnIcon.vue';
15
- export { default as CnModal } from './components/cn/CnModal.vue';
16
- export { getLicenseStatus, validateProductLicense } from './core/license';
1
+ import { default as CgIcon } from './components/cg/CgIcon.vue';
2
+ import { default as CgCard } from './components/cg/CgCard.vue';
3
+ import { default as CgButton } from './components/cg/CgButton.vue';
4
+ import { default as CgModal } from './components/cg/CgModal.vue';
5
+ import { default as CgToolbar } from './components/cg/CgToolbar.vue';
6
+ import { default as CgNotification } from './components/cg/CgNotification.vue';
7
+ import { default as CgCheckbox } from './components/cg/CgCheckbox.vue';
8
+ import { default as CgFilters } from './components/cg/CgFilters.vue';
9
+ import { default as CmButton } from './components/cm/CmButton.vue';
10
+ import { default as CmCard } from './components/cm/CmCard.vue';
11
+ import { default as CmIcon } from './components/cm/CmIcon.vue';
12
+ import { default as CmModal } from './components/cm/CmModal.vue';
13
+ import { default as CnButton } from './components/cn/CnButton.vue';
14
+ import { default as CnCard } from './components/cn/CnCard.vue';
15
+ import { default as CnIcon } from './components/cn/CnIcon.vue';
16
+ import { default as CnModal } from './components/cn/CnModal.vue';
17
+ import { getLicenseStatus, validateProductLicense } from './core/license';
18
+ export { CgIcon, CgCard, CgButton, CgModal, CgToolbar, CgNotification, CgCheckbox, CgFilters, CmButton, CmCard, CmIcon, CmModal, CnButton, CnCard, CnIcon, CnModal, getLicenseStatus, validateProductLicense };
19
+ declare const GlassUI: {
20
+ install(app: any): void;
21
+ };
22
+ export default GlassUI;