@ginia/ui 0.1.3 → 0.1.4
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/components/ui/index.d.cts +1 -1
- package/dist/components/ui/index.d.ts +1 -1
- package/dist/components/ui/sonner/index.d.cts +1 -1
- package/dist/components/ui/sonner/index.d.ts +1 -1
- package/dist/components/ui/sonner/sonner.cjs +4 -2
- package/dist/components/ui/sonner/sonner.cjs.map +1 -1
- package/dist/components/ui/sonner/sonner.d.cts +1 -0
- package/dist/components/ui/sonner/sonner.d.ts +1 -0
- package/dist/components/ui/sonner/sonner.js +3 -2
- package/dist/components/ui/sonner/sonner.js.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -56,6 +56,7 @@ export { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, T
|
|
|
56
56
|
export { Toggle, toggleVariants } from './toggle/toggle.cjs';
|
|
57
57
|
export { ToggleGroup, ToggleGroupItem } from './toggle-group/toggle-group.cjs';
|
|
58
58
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from './tooltip/tooltip.cjs';
|
|
59
|
+
export { toast } from 'sonner';
|
|
59
60
|
import 'react/jsx-runtime';
|
|
60
61
|
import 'react';
|
|
61
62
|
import '@radix-ui/react-accordion';
|
|
@@ -88,7 +89,6 @@ import '@radix-ui/react-scroll-area';
|
|
|
88
89
|
import '@radix-ui/react-select';
|
|
89
90
|
import '@radix-ui/react-separator';
|
|
90
91
|
import '@radix-ui/react-slider';
|
|
91
|
-
import 'sonner';
|
|
92
92
|
import '@radix-ui/react-switch';
|
|
93
93
|
import '@radix-ui/react-tabs';
|
|
94
94
|
import '@radix-ui/react-toast';
|
|
@@ -56,6 +56,7 @@ export { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, T
|
|
|
56
56
|
export { Toggle, toggleVariants } from './toggle/toggle.js';
|
|
57
57
|
export { ToggleGroup, ToggleGroupItem } from './toggle-group/toggle-group.js';
|
|
58
58
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from './tooltip/tooltip.js';
|
|
59
|
+
export { toast } from 'sonner';
|
|
59
60
|
import 'react/jsx-runtime';
|
|
60
61
|
import 'react';
|
|
61
62
|
import '@radix-ui/react-accordion';
|
|
@@ -88,7 +89,6 @@ import '@radix-ui/react-scroll-area';
|
|
|
88
89
|
import '@radix-ui/react-select';
|
|
89
90
|
import '@radix-ui/react-separator';
|
|
90
91
|
import '@radix-ui/react-slider';
|
|
91
|
-
import 'sonner';
|
|
92
92
|
import '@radix-ui/react-switch';
|
|
93
93
|
import '@radix-ui/react-tabs';
|
|
94
94
|
import '@radix-ui/react-toast';
|
|
@@ -19,7 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
var sonner_exports = {};
|
|
21
21
|
__export(sonner_exports, {
|
|
22
|
-
Toaster: () => Toaster
|
|
22
|
+
Toaster: () => Toaster,
|
|
23
|
+
toast: () => import_sonner.toast
|
|
23
24
|
});
|
|
24
25
|
module.exports = __toCommonJS(sonner_exports);
|
|
25
26
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
@@ -40,6 +41,7 @@ function Toaster({ ...props }) {
|
|
|
40
41
|
}
|
|
41
42
|
// Annotate the CommonJS export names for ESM import in node:
|
|
42
43
|
0 && (module.exports = {
|
|
43
|
-
Toaster
|
|
44
|
+
Toaster,
|
|
45
|
+
toast
|
|
44
46
|
});
|
|
45
47
|
//# sourceMappingURL=sonner.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/components/ui/sonner/sonner.tsx"],"sourcesContent":["\"use client\";\n\nimport { Toaster as Sonner, type ToasterProps } from \"sonner\";\n\nfunction Toaster({ ...props }: ToasterProps) {\n return (\n <Sonner\n className=\"toaster group\"\n style={\n {\n \"--normal-bg\": \"hsl(var(--popover))\",\n \"--normal-text\": \"hsl(var(--popover-foreground))\",\n \"--normal-border\": \"hsl(var(--border))\",\n } as React.CSSProperties\n }\n {...props}\n />\n );\n}\n\nexport { Toaster };\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAMI;AAJJ,
|
|
1
|
+
{"version":3,"sources":["../../../../src/components/ui/sonner/sonner.tsx"],"sourcesContent":["\"use client\";\n\nimport { Toaster as Sonner, type ToasterProps, toast } from \"sonner\";\n\nfunction Toaster({ ...props }: ToasterProps) {\n return (\n <Sonner\n className=\"toaster group\"\n style={\n {\n \"--normal-bg\": \"hsl(var(--popover))\",\n \"--normal-text\": \"hsl(var(--popover-foreground))\",\n \"--normal-border\": \"hsl(var(--border))\",\n } as React.CSSProperties\n }\n {...props}\n />\n );\n}\n\nexport { Toaster, toast };\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMI;AAJJ,oBAA4D;AAE5D,SAAS,QAAQ,EAAE,GAAG,MAAM,GAAiB;AAC3C,SACE;AAAA,IAAC,cAAAA;AAAA,IAAA;AAAA,MACC,WAAU;AAAA,MACV,OACE;AAAA,QACE,eAAe;AAAA,QACf,iBAAiB;AAAA,QACjB,mBAAmB;AAAA,MACrB;AAAA,MAED,GAAG;AAAA;AAAA,EACN;AAEJ;","names":["Sonner"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
import { Toaster as Sonner } from "sonner";
|
|
3
|
+
import { Toaster as Sonner, toast } from "sonner";
|
|
4
4
|
function Toaster({ ...props }) {
|
|
5
5
|
return /* @__PURE__ */ jsx(
|
|
6
6
|
Sonner,
|
|
@@ -16,6 +16,7 @@ function Toaster({ ...props }) {
|
|
|
16
16
|
);
|
|
17
17
|
}
|
|
18
18
|
export {
|
|
19
|
-
Toaster
|
|
19
|
+
Toaster,
|
|
20
|
+
toast
|
|
20
21
|
};
|
|
21
22
|
//# sourceMappingURL=sonner.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/components/ui/sonner/sonner.tsx"],"sourcesContent":["\"use client\";\n\nimport { Toaster as Sonner, type ToasterProps } from \"sonner\";\n\nfunction Toaster({ ...props }: ToasterProps) {\n return (\n <Sonner\n className=\"toaster group\"\n style={\n {\n \"--normal-bg\": \"hsl(var(--popover))\",\n \"--normal-text\": \"hsl(var(--popover-foreground))\",\n \"--normal-border\": \"hsl(var(--border))\",\n } as React.CSSProperties\n }\n {...props}\n />\n );\n}\n\nexport { Toaster };\n"],"mappings":";AAMI;AAJJ,SAAS,WAAW,
|
|
1
|
+
{"version":3,"sources":["../../../../src/components/ui/sonner/sonner.tsx"],"sourcesContent":["\"use client\";\n\nimport { Toaster as Sonner, type ToasterProps, toast } from \"sonner\";\n\nfunction Toaster({ ...props }: ToasterProps) {\n return (\n <Sonner\n className=\"toaster group\"\n style={\n {\n \"--normal-bg\": \"hsl(var(--popover))\",\n \"--normal-text\": \"hsl(var(--popover-foreground))\",\n \"--normal-border\": \"hsl(var(--border))\",\n } as React.CSSProperties\n }\n {...props}\n />\n );\n}\n\nexport { Toaster, toast };\n"],"mappings":";AAMI;AAJJ,SAAS,WAAW,QAA2B,aAAa;AAE5D,SAAS,QAAQ,EAAE,GAAG,MAAM,GAAiB;AAC3C,SACE;AAAA,IAAC;AAAA;AAAA,MACC,WAAU;AAAA,MACV,OACE;AAAA,QACE,eAAe;AAAA,QACf,iBAAiB;AAAA,QACjB,mBAAmB;AAAA,MACrB;AAAA,MAED,GAAG;AAAA;AAAA,EACN;AAEJ;","names":[]}
|
package/dist/index.d.cts
CHANGED
|
@@ -66,6 +66,7 @@ export { Action, CVActivityItem, CVCertificationItem, CVDocumentItem, CVEducatio
|
|
|
66
66
|
export { Resume } from './components/domain/resume/resume.cjs';
|
|
67
67
|
export { ResumeEditor, ResumeEditorProps } from './components/domain/resume/resume-editor/resume-editor.cjs';
|
|
68
68
|
export { ResumePreview, ResumePreviewProps } from './components/domain/resume/resume-preview/resume-preview.cjs';
|
|
69
|
+
export { toast } from 'sonner';
|
|
69
70
|
import 'react/jsx-runtime';
|
|
70
71
|
import 'react';
|
|
71
72
|
import '@radix-ui/react-accordion';
|
|
@@ -98,7 +99,6 @@ import '@radix-ui/react-scroll-area';
|
|
|
98
99
|
import '@radix-ui/react-select';
|
|
99
100
|
import '@radix-ui/react-separator';
|
|
100
101
|
import '@radix-ui/react-slider';
|
|
101
|
-
import 'sonner';
|
|
102
102
|
import '@radix-ui/react-switch';
|
|
103
103
|
import '@radix-ui/react-tabs';
|
|
104
104
|
import '@radix-ui/react-toast';
|
package/dist/index.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ export { Action, CVActivityItem, CVCertificationItem, CVDocumentItem, CVEducatio
|
|
|
66
66
|
export { Resume } from './components/domain/resume/resume.js';
|
|
67
67
|
export { ResumeEditor, ResumeEditorProps } from './components/domain/resume/resume-editor/resume-editor.js';
|
|
68
68
|
export { ResumePreview, ResumePreviewProps } from './components/domain/resume/resume-preview/resume-preview.js';
|
|
69
|
+
export { toast } from 'sonner';
|
|
69
70
|
import 'react/jsx-runtime';
|
|
70
71
|
import 'react';
|
|
71
72
|
import '@radix-ui/react-accordion';
|
|
@@ -98,7 +99,6 @@ import '@radix-ui/react-scroll-area';
|
|
|
98
99
|
import '@radix-ui/react-select';
|
|
99
100
|
import '@radix-ui/react-separator';
|
|
100
101
|
import '@radix-ui/react-slider';
|
|
101
|
-
import 'sonner';
|
|
102
102
|
import '@radix-ui/react-switch';
|
|
103
103
|
import '@radix-ui/react-tabs';
|
|
104
104
|
import '@radix-ui/react-toast';
|