@grapadigital/shared-app-modules 0.0.85 → 0.0.87
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/action.d.ts +2 -1
- package/dist/chuncks/youtube-icon.component.BRqHa946.js +980 -0
- package/dist/components.d.ts +16 -2
- package/dist/components.js +132 -946
- package/dist/constants.d.ts +39 -0
- package/dist/constants.js +32 -5
- package/dist/content.d.ts +2 -1
- package/dist/invoice.d.ts +2 -1
- package/dist/payment.d.ts +2 -1
- package/dist/recruitment.d.ts +2 -1
- package/dist/sale.d.ts +2 -1
- package/dist/utils.d.ts +36 -0
- package/dist/utils.js +35 -20
- package/package.json +9 -9
package/dist/components.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { HoverCardProps } from '@radix-ui/react-hover-card';
|
|
|
5
5
|
import { JSX } from 'react/jsx-runtime';
|
|
6
6
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
7
7
|
import { LucideIcon } from 'lucide-react';
|
|
8
|
+
import { LucideProps } from 'lucide-react';
|
|
8
9
|
import * as React_2 from 'react';
|
|
9
10
|
import { RefAttributes } from 'react';
|
|
10
11
|
|
|
@@ -228,10 +229,12 @@ declare interface FormalizationInterface {
|
|
|
228
229
|
totalInstallments: number;
|
|
229
230
|
}
|
|
230
231
|
|
|
231
|
-
export declare function HoverContent({ content, className, openDelay, closeDelay, children, ...props }: HoverContentProps): JSX.Element;
|
|
232
|
+
export declare function HoverContent({ content, align, asChild, className, openDelay, closeDelay, children, ...props }: HoverContentProps): JSX.Element;
|
|
232
233
|
|
|
233
234
|
declare interface HoverContentProps extends HoverCardProps {
|
|
234
235
|
content: string | React.ReactNode;
|
|
236
|
+
align?: "center" | "start" | "end" | undefined;
|
|
237
|
+
asChild?: boolean;
|
|
235
238
|
className?: string;
|
|
236
239
|
openDelay?: number;
|
|
237
240
|
closeDelay?: number;
|
|
@@ -285,6 +288,8 @@ declare interface InfluencerSelectInputProps extends Omit<default_2.ComponentPro
|
|
|
285
288
|
onValueChange: (sale: InfluencerInterface) => void;
|
|
286
289
|
}
|
|
287
290
|
|
|
291
|
+
export declare function InstagramIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
292
|
+
|
|
288
293
|
declare interface InstallmentInfo {
|
|
289
294
|
number: number;
|
|
290
295
|
value: number;
|
|
@@ -323,6 +328,8 @@ declare interface LabelWithAsteriskProps {
|
|
|
323
328
|
asterisk?: boolean;
|
|
324
329
|
}
|
|
325
330
|
|
|
331
|
+
export declare function LinkedInIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
332
|
+
|
|
326
333
|
export declare function List({ className, ...props }: React.ComponentProps<"div">): JSX.Element;
|
|
327
334
|
|
|
328
335
|
export declare function ListRow({ label, value, tooltip, highlight, negative, positive, isPercentage, isDate, isText, isInvoiced, hasCopyButton, enableHoverableContent, handleCopy }: ListRowProps): JSX.Element;
|
|
@@ -475,6 +482,8 @@ declare interface Pending {
|
|
|
475
482
|
installmentNumber: number;
|
|
476
483
|
}
|
|
477
484
|
|
|
485
|
+
export declare function PinterestIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
486
|
+
|
|
478
487
|
declare interface ProfileInterface {
|
|
479
488
|
_id: string;
|
|
480
489
|
username: string;
|
|
@@ -497,7 +506,7 @@ declare interface ProfileMetric {
|
|
|
497
506
|
|
|
498
507
|
declare interface ProposalInterface {
|
|
499
508
|
businessUnit: "enterprise" | "artistic";
|
|
500
|
-
|
|
509
|
+
origin: "inbound" | "outbound";
|
|
501
510
|
contact: string;
|
|
502
511
|
initialScope: string;
|
|
503
512
|
profile: ProfileInterface;
|
|
@@ -598,6 +607,7 @@ declare interface SaleInterface {
|
|
|
598
607
|
};
|
|
599
608
|
closedAt?: string;
|
|
600
609
|
isDollarNegotiation: boolean;
|
|
610
|
+
type: "new" | "renewal" | "upsell";
|
|
601
611
|
}
|
|
602
612
|
|
|
603
613
|
declare type SalePaymentMethod = "transfer" | "direct" | "debit_note" | "client";
|
|
@@ -621,6 +631,8 @@ declare const sizeMap: {
|
|
|
621
631
|
declare interface SupplierInterface extends UserInterface {
|
|
622
632
|
}
|
|
623
633
|
|
|
634
|
+
export declare function TikTokIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
635
|
+
|
|
624
636
|
declare interface UserInterface {
|
|
625
637
|
_id?: string;
|
|
626
638
|
name?: string;
|
|
@@ -655,4 +667,6 @@ declare interface UserInterface {
|
|
|
655
667
|
};
|
|
656
668
|
}
|
|
657
669
|
|
|
670
|
+
export declare function YoutubeIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
671
|
+
|
|
658
672
|
export { }
|