ono-react-element 0.0.14 → 0.0.16
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/es/index.js +2 -0
- package/dist/types/components/index.d.ts +22 -0
- package/dist/types/index.d.ts +2 -22
- package/dist/umd/index.umd.cjs +253 -256
- package/dist/umd/index.umd.cjs.br +0 -0
- package/dist/umd/index.umd.cjs.gz +0 -0
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
|
@@ -17,6 +17,7 @@ import { B as B2 } from "./Button-C89izu2m.js";
|
|
|
17
17
|
import { C as C2 } from "./Card3D-DMvCSUhe.js";
|
|
18
18
|
import { C as C3 } from "./Checkbox-daBabj14.js";
|
|
19
19
|
import { E as E2, c as c5 } from "./VirtualList-w16-kBkT.js";
|
|
20
|
+
import { i as i2 } from "./InjunctiveBox-DUNoNHCO.js";
|
|
20
21
|
import { M } from "./MenuButton-DHkU5Bq7.js";
|
|
21
22
|
import { m as m2 } from "./Message-BGDILiLc.js";
|
|
22
23
|
import { M as M2 } from "./Modal-BIFxRjSt.js";
|
|
@@ -85,6 +86,7 @@ export {
|
|
|
85
86
|
s as getPointDistance,
|
|
86
87
|
t as getURLSearchParams,
|
|
87
88
|
u9 as grayColor,
|
|
89
|
+
i2 as injunctiveBox,
|
|
88
90
|
l2 as localFormat,
|
|
89
91
|
v as mediaAutoplayPolicies,
|
|
90
92
|
m2 as message,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export * from './AutoSliderList';
|
|
2
|
+
export * from './AvatarCrop';
|
|
3
|
+
export * from './Button';
|
|
4
|
+
export * from './Card3D';
|
|
5
|
+
export * from './Checkbox';
|
|
6
|
+
export * from './InjunctiveBox';
|
|
7
|
+
export * from './Input';
|
|
8
|
+
export * from './List';
|
|
9
|
+
export * from './MenuButton';
|
|
10
|
+
export * from './Message';
|
|
11
|
+
export * from './Modal';
|
|
12
|
+
export * from './Pagination';
|
|
13
|
+
export * from './PortalRenderer';
|
|
14
|
+
export * from './Radio';
|
|
15
|
+
export * from './Select';
|
|
16
|
+
export * from './SvgImg';
|
|
17
|
+
export * from './Switch';
|
|
18
|
+
export * from './TemplateDialog';
|
|
19
|
+
export * from './Toast';
|
|
20
|
+
export * from './Tooltip';
|
|
21
|
+
export * from './VirtualList';
|
|
22
|
+
export * from './Waterfall';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,24 +1,4 @@
|
|
|
1
|
-
import { AutoSliderList, Direction } from './components
|
|
2
|
-
import { AvatarCrop } from './components/AvatarCrop';
|
|
3
|
-
import { Button } from './components/Button';
|
|
4
|
-
import { Card3D } from './components/Card3D';
|
|
5
|
-
import { Checkbox } from './components/Checkbox';
|
|
6
|
-
import { OnoInput, OnoTextarea } from './components/Input';
|
|
7
|
-
import { AwaitList, List } from './components/List';
|
|
8
|
-
import { MenuButton } from './components/MenuButton';
|
|
9
|
-
import { message } from './components/Message';
|
|
10
|
-
import { Modal } from './components/Modal';
|
|
11
|
-
import { Pagination } from './components/Pagination';
|
|
12
|
-
import { portalRenderer } from './components/PortalRenderer';
|
|
13
|
-
import { Radio, RadioGroup } from './components/Radio';
|
|
14
|
-
import { OnoSelect } from './components/Select';
|
|
15
|
-
import { SvgImg } from './components/SvgImg';
|
|
16
|
-
import { Switch } from './components/Switch';
|
|
17
|
-
import { TemplateDialog } from './components/TemplateDialog';
|
|
18
|
-
import { toast } from './components/Toast';
|
|
19
|
-
import { Tooltip } from './components/Tooltip';
|
|
20
|
-
import { createDataSource, EstimatedVirtualList } from './components/VirtualList';
|
|
21
|
-
import { ImageItem, Waterfall } from './components/Waterfall';
|
|
1
|
+
import { AutoSliderList, AvatarCrop, AwaitList, Button, Card3D, Checkbox, createDataSource, Direction, EstimatedVirtualList, injunctiveBox, List, MenuButton, message, Modal, OnoInput, OnoSelect, OnoTextarea, Pagination, portalRenderer, Radio, RadioGroup, SvgImg, Switch, TemplateDialog, toast, Tooltip, Waterfall, ImageItem } from './components';
|
|
22
2
|
import { default as useClickOutSide } from './hooks/useClickOutSide';
|
|
23
3
|
import { default as useCountdown } from './hooks/useCountdown';
|
|
24
4
|
import { default as useEventListener } from './hooks/useEventListener';
|
|
@@ -31,5 +11,5 @@ import { default as colorUtils, adjustingColors } from './utils/colorUtils';
|
|
|
31
11
|
import { default as common, addCommasToNumber, addEventWithOriginHandler, calculateAspectRatio, checkDeviceIsMobile, checkStatusCode, copy2Clipboard, createIntersectionObserver, dayOfYear, deepCopy, downloadFile, formatFileSize, formatSecondes, getElementCenterPosition, getFileName, getFileSuffix, getImageSIze, getPointDistance, getURLSearchParams, grayColor, mediaAutoplayPolicies, parseQuery, passwordStrength, pick, printStr, pureNumber, quickSort, rafTimeout, randomString, safeCapitalizeWord, singleton } from './utils/common';
|
|
32
12
|
import { base64ToBlob, base64ToFile, blobToBase64, blobToFile, fileToBase64, fileToBlob, urlToBase64, urlToBlob, urlToFile } from './utils/fileFormatConversion';
|
|
33
13
|
import { convertSecondToOtherTime, formatTime, localFormat, second2Day } from './utils/formatTimeUtils';
|
|
34
|
-
export { addCommasToNumber, addEventWithOriginHandler, adjustingColors, AutoSliderList, AvatarCrop, AwaitList, base64ToBlob, base64ToFile, blobToBase64, blobToFile, Button, calculateAspectRatio, Card3D, Checkbox, checkDeviceIsMobile, checkStatusCode, colorUtils, common, convertSecondToOtherTime, copy2Clipboard, createDataSource, createIntersectionObserver, dayOfYear, deepCopy, Direction, downloadFile, EstimatedVirtualList, fileToBase64, fileToBlob, formatFileSize, formatSecondes, formatTime, getElementCenterPosition, getFileName, getFileSuffix, getImageSIze, getPointDistance, getURLSearchParams, grayColor, List, localFormat, mediaAutoplayPolicies, MenuButton, message, Modal, OnoInput, OnoSelect, OnoTextarea, Pagination, parseQuery, passwordStrength, pick, portalRenderer, printStr, pureNumber, quickSort, Radio, RadioGroup, rafTimeout, randomString, safeCapitalizeWord, second2Day, singleton, SvgImg, Switch, TemplateDialog, toast, Tooltip, urlToBase64, urlToBlob, urlToFile, useClickOutSide, useCountdown, useEventListener, useGetElementSize, useKeyPress, useMouseClick, useTheme, useThemePro, Waterfall };
|
|
14
|
+
export { addCommasToNumber, addEventWithOriginHandler, adjustingColors, AutoSliderList, AvatarCrop, AwaitList, base64ToBlob, base64ToFile, blobToBase64, blobToFile, Button, calculateAspectRatio, Card3D, Checkbox, checkDeviceIsMobile, checkStatusCode, colorUtils, common, convertSecondToOtherTime, copy2Clipboard, createDataSource, createIntersectionObserver, dayOfYear, deepCopy, Direction, downloadFile, EstimatedVirtualList, fileToBase64, fileToBlob, formatFileSize, formatSecondes, formatTime, getElementCenterPosition, getFileName, getFileSuffix, getImageSIze, getPointDistance, getURLSearchParams, grayColor, injunctiveBox, List, localFormat, mediaAutoplayPolicies, MenuButton, message, Modal, OnoInput, OnoSelect, OnoTextarea, Pagination, parseQuery, passwordStrength, pick, portalRenderer, printStr, pureNumber, quickSort, Radio, RadioGroup, rafTimeout, randomString, safeCapitalizeWord, second2Day, singleton, SvgImg, Switch, TemplateDialog, toast, Tooltip, urlToBase64, urlToBlob, urlToFile, useClickOutSide, useCountdown, useEventListener, useGetElementSize, useKeyPress, useMouseClick, useTheme, useThemePro, Waterfall };
|
|
35
15
|
export type { ImageItem, ThemeType };
|