beeple-toolkit 1.0.30 → 1.0.32

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.
@@ -16,6 +16,7 @@ declare const __VLS_base: import("vue").DefineComponent<TeamCardProps, {}, {}, {
16
16
  "onUpdate:status"?: ((status: "published" | "unpublished") => any) | undefined;
17
17
  }>, {
18
18
  color: TeamCardColor;
19
+ showUsers: boolean;
19
20
  selected: boolean;
20
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
22
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -1,4 +1,4 @@
1
- import type { TeamCardRole, TeamCardUser, TeamCardTranslations } from '../types';
1
+ import type { TeamCardSummary as TeamCardSummaryType, TeamCardUser, TeamCardTranslations } from '../types';
2
2
  type __VLS_Props = {
3
3
  progressBar?: {
4
4
  needed: number;
@@ -7,8 +7,9 @@ type __VLS_Props = {
7
7
  size?: 'small' | 'medium';
8
8
  };
9
9
  shiftSummary?: string;
10
- roles?: TeamCardRole[];
10
+ teamSummary?: TeamCardSummaryType;
11
11
  users?: TeamCardUser[];
12
+ showUsers?: boolean;
12
13
  translations?: TeamCardTranslations;
13
14
  };
14
15
  declare var __VLS_8: {};
@@ -1,6 +1,7 @@
1
- import type { TeamCardRole } from '../types';
1
+ import type { TeamCardSummary, TeamCardTranslations } from '../types';
2
2
  type __VLS_Props = {
3
- roles: TeamCardRole[];
3
+ summary: TeamCardSummary;
4
+ translations?: TeamCardTranslations;
4
5
  };
5
6
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
7
  declare const _default: typeof __VLS_export;
@@ -31,5 +31,5 @@ import '../styles/variables.css';
31
31
  export { useToastStore } from '../stores/toast';
32
32
  export type { Toast as ToastItem, ToastType, ToastOptions } from '../stores/toast';
33
33
  export type { ButtonType, ButtonSize, EvaIconName, Size, ProgressBarSize } from './constants';
34
- export type { AvatarProps, BreadcrumbItem, BreadcrumbsProps, ButtonProps, DatePickerProps, DatePickerVariant, DropDownOption, DropDownProps, CheckboxInputProps, ContextCardProps, IconProps, InputProps, KeyboardInputProps, LabelProps, ModalProps, MenuProps, ProgressBarProps, RadioInputProps, SliderProps, StatusDotProps, SubtitleProps, SwitchProps, TextProps, TextareaProps, FilterButtonProps, TeamCardColor, TeamCardLabel, TeamCardProps, TeamCardRole, TeamCardStatus, TeamCardUser, TimeInputProps, TitleProps, TooltipProps, } from './types';
34
+ export type { AvatarProps, BreadcrumbItem, BreadcrumbsProps, ButtonProps, DatePickerProps, DatePickerVariant, DropDownOption, DropDownProps, CheckboxInputProps, ContextCardProps, IconProps, InputProps, KeyboardInputProps, LabelProps, ModalProps, MenuProps, ProgressBarProps, RadioInputProps, SliderProps, StatusDotProps, SubtitleProps, SwitchProps, TextProps, TextareaProps, FilterButtonProps, TeamCardColor, TeamCardLabel, TeamCardProps, TeamCardSummary, TeamCardStatus, TeamCardUser, TimeInputProps, TitleProps, TooltipProps, } from './types';
35
35
  export { Avatar, Breadcrumbs, Button, CheckboxInput, ContextCard, DatePicker, DatePickerPanel, DropDown, FilterButton, Icon, Input, KeyboardInput, Label, Modal, Menu, ProgressBar, RadioInput, Slider, StatusDot, Subtitle, Switch, Text, Textarea, TimeInput, TeamCard, Title, Toast, ToastContainer, Tooltip, };
@@ -190,6 +190,7 @@ export interface LabelProps {
190
190
  }
191
191
  export interface TooltipProps {
192
192
  title?: string;
193
+ disabled?: boolean;
193
194
  position?: 'top-left' | 'top-middle' | 'top-right' | 'bottom-left' | 'bottom-middle' | 'bottom-right' | 'left-top' | 'left-middle' | 'left-bottom' | 'right-top' | 'right-middle' | 'right-bottom';
194
195
  delay?: number;
195
196
  maxWidth?: number;
@@ -307,10 +308,14 @@ export interface ModalProps {
307
308
  closeButtonTooltip?: string;
308
309
  }
309
310
  export type TeamCardColor = 'orange' | 'red' | 'olive-green' | 'leaf-green' | 'forest-green' | 'yellow' | 'teal' | 'turquoise' | 'blue' | 'lagoon' | 'violet' | 'old-rose' | 'petal-rose' | 'azalea-rose' | 'gray';
310
- export interface TeamCardRole {
311
- name: string;
312
- }
313
- export type TeamCardUserStatus = 'confirmed' | 'pending' | 'draft' | 'ai-scheduled';
311
+ export interface TeamCardSummary {
312
+ shiftTime?: string;
313
+ project?: string;
314
+ team?: string;
315
+ subproject?: string;
316
+ function?: string;
317
+ }
318
+ export type TeamCardUserStatus = 'confirmed' | 'pending' | 'draft' | 'ai-scheduled' | 'backup' | 'rejected';
314
319
  export interface TeamCardUser {
315
320
  fullName: string;
316
321
  photo?: string;
@@ -335,6 +340,14 @@ export interface TeamCardTranslations {
335
340
  enrolments?: string;
336
341
  confirmed?: string;
337
342
  unconfirmed?: string;
343
+ backup?: string;
344
+ rejected?: string;
345
+ teamSummary?: string;
346
+ shiftTime?: string;
347
+ project?: string;
348
+ team?: string;
349
+ subproject?: string;
350
+ function?: string;
338
351
  }
339
352
  export interface TeamCardProps {
340
353
  color?: TeamCardColor;
@@ -348,8 +361,9 @@ export interface TeamCardProps {
348
361
  };
349
362
  shiftSummary?: string;
350
363
  teamName?: string;
351
- roles?: TeamCardRole[];
364
+ teamSummary?: TeamCardSummary;
352
365
  users?: TeamCardUser[];
366
+ showUsers?: boolean;
353
367
  selected?: boolean;
354
368
  translations?: TeamCardTranslations;
355
369
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beeple-toolkit",
3
- "version": "1.0.30",
3
+ "version": "1.0.32",
4
4
  "description": "Vue 3 component library beeple-toolkit",
5
5
  "keywords": [
6
6
  "vue",