beeple-toolkit 1.0.28 → 1.0.29

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.
@@ -8,7 +8,9 @@ type __VLS_Slots = {} & {
8
8
  declare const __VLS_base: import("vue").DefineComponent<ProgressBarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProgressBarProps> & Readonly<{}>, {
9
9
  confirmed: number;
10
10
  size: ProgressBarSize;
11
- open: number;
11
+ color: "light" | "dark";
12
+ delay: number;
13
+ needed: number;
12
14
  unconfirmed: number;
13
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
16
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -1,6 +1,10 @@
1
1
  import type { TeamCardProps, TeamCardColor } from '../types';
2
2
  import './teamCard.css';
3
- declare const __VLS_export: import("vue").DefineComponent<TeamCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
+ declare var __VLS_18: {};
4
+ type __VLS_Slots = {} & {
5
+ 'progress-bar-tooltip'?: (props: typeof __VLS_18) => any;
6
+ };
7
+ declare const __VLS_base: import("vue").DefineComponent<TeamCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
8
  click: (event: MouseEvent) => any;
5
9
  "add-collaborator": () => any;
6
10
  "menu-action": (action: "copy" | "move" | "delete" | "edit") => any;
@@ -14,5 +18,11 @@ declare const __VLS_export: import("vue").DefineComponent<TeamCardProps, {}, {},
14
18
  color: TeamCardColor;
15
19
  selected: boolean;
16
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
22
  declare const _default: typeof __VLS_export;
18
23
  export default _default;
24
+ type __VLS_WithSlots<T, S> = T & {
25
+ new (): {
26
+ $slots: S;
27
+ };
28
+ };
@@ -1,7 +1,7 @@
1
1
  import type { TeamCardRole, TeamCardUser, TeamCardTranslations } from '../types';
2
2
  type __VLS_Props = {
3
3
  progressBar?: {
4
- open: number;
4
+ needed: number;
5
5
  confirmed?: number;
6
6
  unconfirmed?: number;
7
7
  size?: 'small' | 'medium';
@@ -11,10 +11,20 @@ type __VLS_Props = {
11
11
  users?: TeamCardUser[];
12
12
  translations?: TeamCardTranslations;
13
13
  };
14
- declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ declare var __VLS_8: {};
15
+ type __VLS_Slots = {} & {
16
+ 'progress-bar-tooltip'?: (props: typeof __VLS_8) => any;
17
+ };
18
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
19
  "add-collaborator": () => any;
16
20
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
17
21
  "onAdd-collaborator"?: (() => any) | undefined;
18
22
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
19
24
  declare const _default: typeof __VLS_export;
20
25
  export default _default;
26
+ type __VLS_WithSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -200,6 +200,7 @@ export interface ContextCardProps {
200
200
  delay?: number;
201
201
  color?: 'light' | 'dark';
202
202
  maxWidth?: number;
203
+ isOpen?: boolean;
203
204
  }
204
205
  export interface StatusDotProps {
205
206
  color?: 'success' | 'warning' | 'danger' | 'primary';
@@ -290,9 +291,12 @@ export interface SliderProps {
290
291
  }
291
292
  export interface ProgressBarProps {
292
293
  size?: ProgressBarSize;
293
- open: number;
294
+ needed: number;
294
295
  confirmed?: number;
295
296
  unconfirmed?: number;
297
+ color?: 'light' | 'dark';
298
+ delay?: number;
299
+ isOpen?: boolean;
296
300
  }
297
301
  export interface ModalProps {
298
302
  modelValue?: boolean;
@@ -302,7 +306,7 @@ export interface ModalProps {
302
306
  overlay?: boolean;
303
307
  closeButtonTooltip?: string;
304
308
  }
305
- export type TeamCardColor = 'orange' | 'red' | 'olive-green' | 'leaf-green' | 'forest-green' | 'yellow' | 'teal' | 'turquoise' | 'blue' | 'lagoon' | 'violet' | 'old-rose' | 'petal-rose' | 'azalea-rose';
309
+ export type TeamCardColor = 'orange' | 'red' | 'olive-green' | 'leaf-green' | 'forest-green' | 'yellow' | 'teal' | 'turquoise' | 'blue' | 'lagoon' | 'violet' | 'old-rose' | 'petal-rose' | 'azalea-rose' | 'gray';
306
310
  export interface TeamCardRole {
307
311
  name: string;
308
312
  }
@@ -334,7 +338,7 @@ export interface TeamCardProps {
334
338
  labels?: TeamCardLabel[];
335
339
  status?: TeamCardStatus;
336
340
  progressBar?: {
337
- open: number;
341
+ needed: number;
338
342
  confirmed?: number;
339
343
  unconfirmed?: number;
340
344
  size?: 'small' | 'medium';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beeple-toolkit",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "Vue 3 component library beeple-toolkit",
5
5
  "keywords": [
6
6
  "vue",