@grapadigital/shared-app-modules 0.0.86 → 0.0.88
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/assets/timeline.css +1 -1
- package/dist/chuncks/youtube-icon.component.BRqHa946.js +980 -0
- package/dist/components.d.ts +11 -0
- package/dist/components.js +131 -947
- package/dist/constants.d.ts +24 -1
- package/dist/constants.js +26 -12
- package/package.json +1 -1
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
|
|
|
@@ -287,6 +288,8 @@ declare interface InfluencerSelectInputProps extends Omit<default_2.ComponentPro
|
|
|
287
288
|
onValueChange: (sale: InfluencerInterface) => void;
|
|
288
289
|
}
|
|
289
290
|
|
|
291
|
+
export declare function InstagramIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
292
|
+
|
|
290
293
|
declare interface InstallmentInfo {
|
|
291
294
|
number: number;
|
|
292
295
|
value: number;
|
|
@@ -325,6 +328,8 @@ declare interface LabelWithAsteriskProps {
|
|
|
325
328
|
asterisk?: boolean;
|
|
326
329
|
}
|
|
327
330
|
|
|
331
|
+
export declare function LinkedInIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
332
|
+
|
|
328
333
|
export declare function List({ className, ...props }: React.ComponentProps<"div">): JSX.Element;
|
|
329
334
|
|
|
330
335
|
export declare function ListRow({ label, value, tooltip, highlight, negative, positive, isPercentage, isDate, isText, isInvoiced, hasCopyButton, enableHoverableContent, handleCopy }: ListRowProps): JSX.Element;
|
|
@@ -477,6 +482,8 @@ declare interface Pending {
|
|
|
477
482
|
installmentNumber: number;
|
|
478
483
|
}
|
|
479
484
|
|
|
485
|
+
export declare function PinterestIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
486
|
+
|
|
480
487
|
declare interface ProfileInterface {
|
|
481
488
|
_id: string;
|
|
482
489
|
username: string;
|
|
@@ -624,6 +631,8 @@ declare const sizeMap: {
|
|
|
624
631
|
declare interface SupplierInterface extends UserInterface {
|
|
625
632
|
}
|
|
626
633
|
|
|
634
|
+
export declare function TikTokIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
635
|
+
|
|
627
636
|
declare interface UserInterface {
|
|
628
637
|
_id?: string;
|
|
629
638
|
name?: string;
|
|
@@ -658,4 +667,6 @@ declare interface UserInterface {
|
|
|
658
667
|
};
|
|
659
668
|
}
|
|
660
669
|
|
|
670
|
+
export declare function YoutubeIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
671
|
+
|
|
661
672
|
export { }
|