glass-studio-ui-pro 1.1.4 → 1.1.5

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,32 @@
1
+ interface Props {
2
+ type?: 'info' | 'success' | 'warning' | 'error';
3
+ title?: string;
4
+ message?: string;
5
+ duration?: number;
6
+ closable?: boolean;
7
+ }
8
+ declare function __VLS_template(): {
9
+ attrs: Partial<{}>;
10
+ slots: {
11
+ default?(_: {}): any;
12
+ };
13
+ refs: {};
14
+ rootEl: any;
15
+ };
16
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
+ declare const __VLS_component: import('vue').DefineComponent<Props, {
18
+ close: () => void;
19
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
20
+ type: "info" | "success" | "warning" | "error";
21
+ title: string;
22
+ duration: number;
23
+ message: string;
24
+ closable: boolean;
25
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
+ export default _default;
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $slots: S;
31
+ };
32
+ };
@@ -4,6 +4,7 @@ export interface LicenseStatus {
4
4
  tier: "free" | "pro";
5
5
  remainingDays?: number;
6
6
  message?: string;
7
+ renewalUrl?: string;
7
8
  }
8
9
  /**
9
10
  * Internal hardware/software lock validation.
package/dist/index.d.ts CHANGED
@@ -1,11 +1,12 @@
1
- import { default as CmCard } from './components/CmCard.vue';
2
- import { default as CmButton } from './components/CmButton.vue';
3
- import { default as CmCheckbox } from './components/CmCheckbox.vue';
4
- import { default as CmFilters } from './components/CmFilters.vue';
5
- import { default as CmModal } from './components/CmModal.vue';
6
- import { default as CmToolbar } from './components/CmToolbar.vue';
1
+ import { default as CgCard } from './components/CgCard.vue';
2
+ import { default as CgButton } from './components/CgButton.vue';
3
+ import { default as CgCheckbox } from './components/CgCheckbox.vue';
4
+ import { default as CgFilters } from './components/CgFilters.vue';
5
+ import { default as CgModal } from './components/CgModal.vue';
6
+ import { default as CgToolbar } from './components/CgToolbar.vue';
7
+ import { default as CgNotification } from './components/CgNotification.vue';
7
8
  import { getLicenseStatus } from './core/license';
8
- export { CmCard, CmButton, CmCheckbox, CmFilters, CmModal, CmToolbar, getLicenseStatus };
9
+ export { CgCard, CgButton, CgCheckbox, CgFilters, CgModal, CgToolbar, CgNotification, getLicenseStatus };
9
10
  export interface GlassUIOptions {
10
11
  licenseKey?: string;
11
12
  }