@fileverse-dev/fortune-react 1.0.2-mod-39 → 1.0.2-mod-40

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/fortune-react",
3
- "version": "1.0.2-mod-39",
3
+ "version": "1.0.2-mod-40",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.esm.js",
@@ -13,7 +13,7 @@
13
13
  "tsc": "tsc"
14
14
  },
15
15
  "dependencies": {
16
- "@fileverse-dev/fortune-core": "1.0.2-mod-39",
16
+ "@fileverse-dev/fortune-core": "1.0.2-mod-40",
17
17
  "@fileverse/ui": "^4.1.7-patch-12",
18
18
  "@tippyjs/react": "^4.2.6",
19
19
  "@types/regenerator-runtime": "^0.13.6",
@@ -1,12 +0,0 @@
1
- import React from "react";
2
- import "./duneChartsInputModal.css";
3
- interface DuneChartsInputModalProps {
4
- isOpen: boolean;
5
- onClose: () => void;
6
- onSubmit: (value: string) => void;
7
- icon: string;
8
- submitText?: string;
9
- placeholder?: string;
10
- }
11
- declare const DuneChartsInputModal: ({ isOpen, onClose, onSubmit, icon, submitText, placeholder, }: DuneChartsInputModalProps) => React.JSX.Element | null;
12
- export default DuneChartsInputModal;
@@ -1,13 +0,0 @@
1
- import React from "react";
2
- import "./index.css";
3
- interface DunePreviewProps {
4
- url: string;
5
- position: {
6
- left: number;
7
- top: number;
8
- };
9
- onKeepAsLink: () => void;
10
- onEmbed: () => void;
11
- }
12
- declare const DunePreview: React.FC<DunePreviewProps>;
13
- export default DunePreview;
@@ -1,3 +0,0 @@
1
- import React from "react";
2
- declare const IframeBoxs: React.FC;
3
- export default IframeBoxs;
@@ -1,2 +0,0 @@
1
- export declare const datepickerStyles = "\n .datepicker-toggle {\n display: inline-block;\n position: relative;\n width: 100%;\n }\n \n .datepicker-toggle-button {\n opacity: 0.3;\n position: absolute;\n right: 12px;\n top: 50%;\n transform: translateY(-50%);\n width: 16px;\n height: 16px;\n background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxyZWN0IHg9IjMiIHk9IjQiIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgcng9IjIiIHJ5PSIyIj48L3JlY3Q+PGxpbmUgeDE9IjE2IiB5MT0iMiIgeDI9IjE2IiB5Mj0iNiI+PC9saW5lPjxsaW5lIHgxPSI4IiB5MT0iMiIgeDI9IjgiIHkyPSI2Ij48L2xpbmU+PGxpbmUgeDE9IjMiIHkxPSIxMCIgeDI9IjIxIiB5Mj0iMTAiPjwvbGluZT48L3N2Zz4=');\n background-repeat: no-repeat;\n background-position: center;\n pointer-events: none;\n }\n \n .datepicker-input {\n width: 100%;\n padding: 8px 12px;\n border: 1px solid #e2e8f0;\n border-radius: 6px;\n font-size: 14px;\n line-height: 1.5;\n color: #1a202c;\n background-color: #fff;\n cursor: pointer;\n }\n \n .datepicker-input::-webkit-calendar-picker-indicator {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n margin: 0;\n padding: 0;\n cursor: pointer;\n opacity: 0;\n }\n \n .datepicker-input:focus {\n outline: none;\n border-color: #4299e1;\n box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);\n }\n";
2
- export declare const injectDatepickerStyles: () => void;