@julseb-lib/react 0.0.68 → 0.0.69
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/{index-CaOLbx-Z.cjs → index.cjs.js} +1363 -1363
- package/dist/{index-Cf_pM6lO.js → index.es.js} +9060 -10701
- package/dist/{@julseb-lib-react.umd.js → index.umd.js} +1353 -1353
- package/dist/lib/components/Helmet/Helmet.tsx +1 -1
- package/dist/styles-BCSPldCD.js +16 -0
- package/dist/styles-CtcGw3Gv.cjs +7 -0
- package/package.json +35 -31
- package/dist/@julseb-lib-react.cjs.js +0 -1
- package/dist/@julseb-lib-react.es.js +0 -207
- package/dist/styles-BzlWff0X.cjs +0 -7
- package/dist/styles-D2xrGFT_.js +0 -15
|
@@ -59,8 +59,8 @@ export const Helmet = ({
|
|
|
59
59
|
{type && <meta property="og:type" content={type} />}
|
|
60
60
|
{cover && <meta property="og:image" content={cover} />}
|
|
61
61
|
{siteName && <meta property="og:site_name" content={siteName} />}
|
|
62
|
-
w <meta property="og:locale" content={language} />
|
|
63
62
|
|
|
63
|
+
<meta property="og:locale" content={language} />
|
|
64
64
|
<html lang={language} />
|
|
65
65
|
</Meta>
|
|
66
66
|
)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import i from "styled-components";
|
|
2
|
+
import { stringifyPx as o } from "@julseb-lib/utils";
|
|
3
|
+
import { setDefaultTheme as e } from "./index.es.js";
|
|
4
|
+
import "react";
|
|
5
|
+
import "react-router-dom";
|
|
6
|
+
const r = i.video`
|
|
7
|
+
display: block;
|
|
8
|
+
width: ${({ $width: t }) => o(t)};
|
|
9
|
+
height: ${({ $height: t }) => o(t)};
|
|
10
|
+
object-fit: ${({ $fit: t }) => t};
|
|
11
|
+
aspect-ratio: ${({ $aspectRatio: t }) => t};
|
|
12
|
+
`;
|
|
13
|
+
e([r]);
|
|
14
|
+
export {
|
|
15
|
+
r as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("styled-components"),t=require("@julseb-lib/utils"),o=require("./index.cjs.js");require("react");require("react-router-dom");const i=r.video`
|
|
2
|
+
display: block;
|
|
3
|
+
width: ${({$width:e})=>t.stringifyPx(e)};
|
|
4
|
+
height: ${({$height:e})=>t.stringifyPx(e)};
|
|
5
|
+
object-fit: ${({$fit:e})=>e};
|
|
6
|
+
aspect-ratio: ${({$aspectRatio:e})=>e};
|
|
7
|
+
`;o.setDefaultTheme([i]);exports.default=i;
|
package/package.json
CHANGED
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@julseb-lib/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.69",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "vite --open",
|
|
8
|
-
"build": "vite build",
|
|
9
8
|
"lint": "./node_modules/.bin/eslint",
|
|
10
9
|
"preview": "vite preview",
|
|
11
10
|
"copy": "cp ./src/lib/index.css ./dist",
|
|
12
11
|
"copy-lib": "cp -a ./src/lib ./dist && rm -rf ./dist/lib/components/*/__tests__ ./dist/lib/components/*/__preview__",
|
|
13
12
|
"clean": "rm -rf ./dist/icons ./dist/images ./dist/vite.svg ./dist/favicon.svg ./dist/icons-alt",
|
|
14
|
-
"build
|
|
13
|
+
"build": "rm -rf ./dist && mkdir ./dist && tsc && vite build && yarn copy && yarn copy-lib && yarn clean",
|
|
15
14
|
"cy": "cypress",
|
|
16
15
|
"cy:open": "cypress open",
|
|
17
16
|
"cy:ct:run": "cypress run --component --browser electron",
|
|
18
17
|
"cy:ct:open": "cypress open --component --browser electron",
|
|
19
|
-
"plop": "
|
|
18
|
+
"plop": "cross-env NODE_OPTIONS='--import tsx' plop --plopfile=./plop/plopfile.ts",
|
|
20
19
|
"plop:c": "yarn run plop component",
|
|
21
20
|
"plop:p": "yarn plop preview",
|
|
22
21
|
"plop:st": "yarn plop subtype",
|
|
@@ -26,55 +25,60 @@
|
|
|
26
25
|
},
|
|
27
26
|
"dependencies": {
|
|
28
27
|
"@julseb-lib/utils": "^0.0.2",
|
|
28
|
+
"chalk": "^5.3.0",
|
|
29
29
|
"classnames": "^2.5.1",
|
|
30
|
+
"figlet": "^1.8.0",
|
|
30
31
|
"fuse.js": "^7.0.0",
|
|
31
|
-
"markdown-to-jsx": "^7.
|
|
32
|
+
"markdown-to-jsx": "^7.5.0",
|
|
32
33
|
"react": "^18.3.1",
|
|
33
34
|
"react-dom": "^18.3.1",
|
|
34
35
|
"react-helmet-async": "^2.0.5",
|
|
35
|
-
"react-inlinesvg": "^4.1.
|
|
36
|
-
"react-router-dom": "^6.
|
|
37
|
-
"react-syntax-highlighter": "^15.
|
|
38
|
-
"styled-components": "^6.1.
|
|
36
|
+
"react-inlinesvg": "^4.1.3",
|
|
37
|
+
"react-router-dom": "^6.26.1",
|
|
38
|
+
"react-syntax-highlighter": "^15.5.0",
|
|
39
|
+
"styled-components": "^6.1.12"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"@eslint/compat": "^1.
|
|
42
|
-
"@eslint/js": "^9.
|
|
43
|
-
"@react-docgen/cli": "^2.0.
|
|
44
|
-
"@types/
|
|
45
|
-
"@types/
|
|
46
|
-
"@types/
|
|
47
|
-
"@types/react
|
|
42
|
+
"@eslint/compat": "^1.1.1",
|
|
43
|
+
"@eslint/js": "^9.9.1",
|
|
44
|
+
"@react-docgen/cli": "^2.0.3",
|
|
45
|
+
"@types/figlet": "^1.7.0",
|
|
46
|
+
"@types/jest": "^29.5.12",
|
|
47
|
+
"@types/mocha": "^10.0.7",
|
|
48
|
+
"@types/react": "^18.3.4",
|
|
49
|
+
"@types/react-dom": "^18.3.0",
|
|
48
50
|
"@types/react-inlinesvg": "^1.0.0",
|
|
49
51
|
"@types/react-router-dom": "^5.3.3",
|
|
50
52
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
51
53
|
"@types/styled-components": "^5.1.34",
|
|
52
|
-
"@vitejs/plugin-react": "^4.3.
|
|
54
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
53
55
|
"axios": "^1.7.7",
|
|
56
|
+
"cross-env": "^7.0.3",
|
|
54
57
|
"cssjson-cli": "^1.0.1",
|
|
55
|
-
"cypress": "^13.
|
|
56
|
-
"eslint": "^9.
|
|
57
|
-
"eslint-plugin-react": "^7.
|
|
58
|
-
"globals": "^15.
|
|
58
|
+
"cypress": "^13.13.3",
|
|
59
|
+
"eslint": "^9.9.1",
|
|
60
|
+
"eslint-plugin-react": "^7.35.0",
|
|
61
|
+
"globals": "^15.9.0",
|
|
59
62
|
"plop": "^4.0.1",
|
|
60
|
-
"
|
|
61
|
-
"typescript
|
|
62
|
-
"
|
|
63
|
-
"vite
|
|
64
|
-
"vite-plugin-
|
|
63
|
+
"tsx": "^4.19.2",
|
|
64
|
+
"typescript": "^5.5.4",
|
|
65
|
+
"typescript-eslint": "^8.3.0",
|
|
66
|
+
"vite": "^5.4.2",
|
|
67
|
+
"vite-plugin-checker": "^0.7.2",
|
|
68
|
+
"vite-plugin-dts": "^4.0.3"
|
|
65
69
|
},
|
|
66
70
|
"files": [
|
|
67
71
|
"dist"
|
|
68
72
|
],
|
|
69
|
-
"main": "./dist
|
|
70
|
-
"module": "./dist
|
|
73
|
+
"main": "./dist/julseb-lib-react.umd.js",
|
|
74
|
+
"module": "./dist/julseb-lib-react.es.js",
|
|
71
75
|
"types": "./dist/index.d.ts",
|
|
72
76
|
"exports": {
|
|
73
77
|
".": {
|
|
74
|
-
"import": "./dist
|
|
75
|
-
"require": "./dist
|
|
78
|
+
"import": "./dist/index.es.js",
|
|
79
|
+
"require": "./dist/index.umd.js",
|
|
76
80
|
"types": "./dist/lib/index.ts",
|
|
77
|
-
"default": "./dist
|
|
81
|
+
"default": "./dist/index.cjs.js"
|
|
78
82
|
},
|
|
79
83
|
"./index.css": {
|
|
80
84
|
"import": "./dist/index.css",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("styled-components"),e=require("./index-CaOLbx-Z.cjs");Object.defineProperty(exports,"ThemeProvider",{enumerable:!0,get:()=>t.ThemeProvider});exports.Accordion=e.Accordion;exports.AccordionItem=e.AccordionItem;exports.Alert=e.Alert;exports.Aside=e.Aside;exports.Autocomplete=e.Autocomplete;exports.Avatar=e.Avatar;exports.BackToTop=e.BackToTop;exports.Badge=e.Badge;exports.Breadcrumbs=e.Breadcrumbs;exports.Burger=e.Burger;exports.Button=e.Button;exports.ButtonGroup=e.ButtonGroup;exports.ButtonIcon=e.ButtonIcon;exports.COLORS_DARK=e.COLORS_DARK;exports.COLORS_LIGHT=e.COLORS_LIGHT;exports.Card=e.Card;exports.CodeContainer=e.CodeContainer;exports.Cover=e.Cover;exports.Datepicker=e.Datepicker;exports.DragList=e.DragList;exports.DragListItem=e.DragListItem;exports.Drawer=e.Drawer;exports.Dropdown=e.Dropdown;exports.DropdownContainer=e.DropdownContainer;exports.DropdownItem=e.DropdownItem;exports.FONT_FAMILIES=e.FONT_FAMILIES;exports.FONT_SIZES=e.FONT_SIZES;exports.FONT_WEIGHTS=e.FONT_WEIGHTS;exports.Fade=e.Fade;exports.Fallback=e.Fallback;exports.Fieldset=e.Fieldset;exports.Flexbox=e.Flexbox;exports.Footer=e.Footer;exports.Form=e.Form;exports.FullBleed=e.FullBleed;exports.Grid=e.Grid;exports.Header=e.Header;exports.Helmet=e.Helmet;exports.Highlight=e.Highlight;exports.Hr=e.Hr;exports.ICON_MULTIPLIER=e.ICON_MULTIPLIER;exports.INPUT_HEIGHT=e.INPUT_HEIGHT;exports.Icon=e.Icon;exports.IconMenu=e.IconMenu;exports.IconMenuItem=e.IconMenuItem;exports.Image=e.Image;exports.Input=e.Input;exports.InputCheck=e.InputCheck;exports.InputContainer=e.InputContainer;exports.InputCounter=e.InputCounter;exports.InputImage=e.InputImage;exports.InputPhone=e.InputPhone;exports.InputPin=e.InputPin;exports.InputSlider=e.InputSlider;exports.Key=e.Key;exports.LAYOUTS=e.LAYOUTS;exports.LIB_TOKENS=e.LIB_TOKENS;exports.LINE_HEIGHTS=e.LINE_HEIGHTS;exports.LibThemeColors=e.Themes;exports.Link=e.Link;exports.Linkify=e.Linkify;exports.ListGroup=e.ListGroup;exports.ListGroupItem=e.ListGroupItem;exports.ListGroupTitle=e.ListGroupTitle;exports.Loader=e.Loader;exports.MEDIA=e.MEDIA;exports.Main=e.Main;exports.MarkdownContainer=e.MarkdownContainer;exports.MarkdownEditor=e.MarkdownEditor;exports.Masonry=e.Masonry;exports.Message=e.Message;exports.MessageForm=e.MessageForm;exports.MessagesContainer=e.MessagesContainer;exports.MessagesList=e.MessagesList;exports.Messaging=e.Messaging;exports.Mixins=e.Mixins;exports.Modal=e.Modal;exports.OVERLAYS=e.OVERLAYS;exports.PageLayout=e.PageLayout;exports.PageLoading=e.PageLoading;exports.Pagination=e.Pagination;exports.PaginationButton=e.PaginationButton;exports.Paginator=e.Paginator;exports.ProgressBar=e.ProgressBar;exports.ProgressCircle=e.ProgressCircle;exports.RADIUSES=e.RADIUSES;exports.Rating=e.Rating;exports.ResetScroll=e.ResetScroll;exports.SHADOWS=e.SHADOWS;exports.SPACERS=e.SPACERS;exports.Section=e.Section;exports.Select=e.Select;exports.Skeleton=e.Skeleton;exports.SkeletonCard=e.SkeletonCard;exports.SkeletonShine=e.SkeletonShine;exports.Slideshow=e.Slideshow;exports.SrOnly=e.SrOnly;exports.Step=e.Step;exports.Stepper=e.Stepper;exports.Sticky=e.Sticky;exports.StyleSheetManager=e.StyleSheetManager;exports.TBody=e.TBody;exports.THead=e.THead;exports.TRANSITIONS=e.TRANSITIONS;exports.TabButton=e.TabButton;exports.TabItem=e.TabItem;exports.Table=e.Table;exports.Tabs=e.Tabs;exports.TabsButtonsContainer=e.TabsButtonsContainer;exports.TabsContainer=e.TabsContainer;exports.Tag=e.Tag;exports.Td=e.Td;exports.Text=e.Text;exports.TextIcon=e.TextIcon;exports.ThemeProviderWrapper=e.ThemeProviderWrapper;exports.Timepicker=e.Timepicker;exports.Toast=e.Toast;exports.ToastContext=e.ToastContext;exports.ToasterProviderWrapper=e.ToasterProviderWrapper;exports.Tooltip=e.Tooltip;exports.Tr=e.Tr;exports.Truncate=e.Truncate;exports.URL_REGEX=e.URL_REGEX;exports.Video=e.Video;exports.Wrapper=e.Wrapper;exports.Youtube=e.Youtube;exports.linkifyText=e.linkifyText;exports.markdownEditorOptions=e.markdownEditorOptions;exports.optionsMarkdown=e.optionsMarkdown;exports.setDefaultTheme=e.setDefaultTheme;exports.shouldForwardProp=e.shouldForwardProp;exports.useClickOutside=e.useClickOutside;exports.useCopyToClipboard=e.useCopyToClipboard;exports.useDebounce=e.useDebounce;exports.useExportData=e.useExportData;exports.useFetch=e.useFetch;exports.useForm=e.useForm;exports.useIsOverflow=e.useIsOverflow;exports.useKeyPress=e.useKeyPress;exports.useLibTheme=e.useLibTheme;exports.useMaxWidth=e.useMaxWidth;exports.useMergeRefs=e.useMergeRefs;exports.useMinWidth=e.useMinWidth;exports.usePaginatedData=e.usePaginatedData;exports.usePagination=e.usePagination;exports.useToast=e.useToast;exports.useTouchScreen=e.useTouchScreen;exports.useTranslation=e.useTranslation;exports.addDay=e.utils.addDay;exports.addMonth=e.utils.addMonth;exports.addYear=e.utils.addYear;exports.calculateAverage=e.utils.calculateAverage;exports.calculateTotalSum=e.utils.calculateTotalSum;exports.capitalize=e.utils.capitalize;exports.convertDate=e.utils.convertDate;exports.convertDateShort=e.utils.convertDateShort;exports.convertPrice=e.utils.convertPrice;exports.convertToEmail=e.utils.convertToEmail;exports.convertYoutube=e.utils.convertYoutube;exports.deleteDuplicates=e.utils.deleteDuplicates;exports.detectLanguage=e.utils.detectLanguage;exports.disableScroll=e.utils.disableScroll;exports.emailRegex=e.utils.emailRegex;exports.enableScroll=e.utils.enableScroll;exports.filterObject=e.utils.filterObject;exports.formatDate=e.utils.formatDate;exports.formatHour=e.utils.formatHour;exports.generateNumbers=e.utils.generateNumbers;exports.getFirstName=e.utils.getFirstName;exports.getInitials=e.utils.getInitials;exports.getLastName=e.utils.getLastName;exports.getPercentage=e.utils.getPercentage;exports.getRandom=e.utils.getRandom;exports.getRandomAvatar=e.utils.getRandomAvatar;exports.getRandomDate=e.utils.getRandomDate;exports.getRandomNumber=e.utils.getRandomNumber;exports.getRandomString=e.utils.getRandomString;exports.getRandomTime=e.utils.getRandomTime;exports.getTimeNow=e.utils.getTimeNow;exports.getToday=e.utils.getToday;exports.getTomorrow=e.utils.getTomorrow;exports.getYesterday=e.utils.getYesterday;exports.hexToRgb=e.utils.hexToRgb;exports.passwordRegex=e.utils.passwordRegex;exports.rgbToHex=e.utils.rgbToHex;exports.scrollToTop=e.utils.scrollToTop;exports.slugify=e.utils.slugify;exports.sortByFrequency=e.utils.sortByFrequency;exports.stringifyPx=e.utils.stringifyPx;exports.toCamelCase=e.utils.toCamelCase;exports.toConstantCase=e.utils.toConstantCase;exports.toDotCase=e.utils.toDotCase;exports.toKebabCase=e.utils.toKebabCase;exports.toPascalCase=e.utils.toPascalCase;exports.toPathCase=e.utils.toPathCase;exports.toSentenceCase=e.utils.toSentenceCase;exports.toSnakeCase=e.utils.toSnakeCase;exports.toTitleCase=e.utils.toTitleCase;exports.unslugify=e.utils.unslugify;exports.uuid=e.utils.uuid;
|
|
@@ -1,207 +0,0 @@
|
|
|
1
|
-
import { ThemeProvider as ea } from "styled-components";
|
|
2
|
-
import { u as a } from "./index-Cf_pM6lO.js";
|
|
3
|
-
import { aG as oa, aH as na, aM as ra, Y as ca, ay as ia, ah as la, bh as ua, ag as ga, aF as da, aj as Ta, ak as ba, am as ma, al as pa, b as Sa, C as Ca, ap as Ia, bf as Ra, b0 as Da, bt as Pa, bq as La, br as ya, bo as ha, aI as Ma, aJ as xa, aK as fa, F as ka, c as va, d as Aa, bg as Ea, Q as Fa, bs as Na, $ as Oa, bl as wa, aB as Ba, ad as Ha, _ as Ga, bi as _a, bm as Ya, a4 as Wa, a7 as Ka, I as Ua, j as ja, a0 as qa, bj as za, bk as Va, ab as Xa, ar as Za, at as Ja, aq as Qa, av as $a, as, au as ss, aA as es, aw as ts, a2 as os, h as ns, L as rs, e as cs, T as is, a1 as ls, a5 as us, aC as gs, aD as ds, aE as Ts, ai as bs, M as ms, X as ps, be as Ss, bd as Cs, ac as Is, bc as Rs, bb as Ds, b9 as Ps, ba as Ls, b8 as ys, k as hs, aN as Ms, O as xs, bp as fs, b6 as ks, aO as vs, aP as As, aQ as Es, aT as Fs, aU as Ns, R as Os, az as ws, bn as Bs, f as Hs, g as Gs, Z as _s, ax as Ys, a8 as Ws, a9 as Ks, aa as Us, a$ as js, aV as qs, aS as zs, aR as Vs, b7 as Xs, S as Zs, b3 as Js, b2 as Qs, i as $s, aZ as ae, a_ as se, b1 as ee, aW as te, aY as oe, aX as ne, an as re, b5 as ce, V as ie, a3 as le, H as ue, bu as ge, aL as de, K as Te, N as be, a6 as me, b4 as pe, ao as Se, U as Ce, ae as Ie, W as Re, af as De, l as Pe, m as Le, o as ye, s as he, a as Me, n as xe, p as fe, q as ke, r as ve, t as Ae, v as Ee, w as Fe, x as Ne, J as Oe, y as we, z as Be, A as He, B as Ge, D as _e, P as Ye, E as We, G as Ke } from "./index-Cf_pM6lO.js";
|
|
4
|
-
const e = a.addDay, t = a.addMonth, o = a.addYear, n = a.calculateAverage, r = a.calculateTotalSum, c = a.capitalize, i = a.convertDate, l = a.convertDateShort, u = a.convertPrice, g = a.convertToEmail, d = a.convertYoutube, T = a.deleteDuplicates, b = a.detectLanguage, m = a.disableScroll, p = a.emailRegex, S = a.enableScroll, C = a.filterObject, I = a.formatDate, R = a.formatHour, D = a.generateNumbers, P = a.getFirstName, L = a.getInitials, y = a.getLastName, h = a.getPercentage, M = a.getRandom, x = a.getRandomAvatar, f = a.getRandomDate, k = a.getRandomNumber, v = a.getRandomString, A = a.getRandomTime, E = a.getTimeNow, F = a.getToday, N = a.getTomorrow, O = a.getYesterday, w = a.hexToRgb, B = a.passwordRegex, H = a.rgbToHex, G = a.scrollToTop, _ = a.slugify, Y = a.sortByFrequency, W = a.stringifyPx, K = a.toCamelCase, U = a.toConstantCase, j = a.toDotCase, q = a.toKebabCase, z = a.toPascalCase, V = a.toPathCase, X = a.toSentenceCase, Z = a.toSnakeCase, J = a.toTitleCase, Q = a.unslugify, $ = a.uuid;
|
|
5
|
-
export {
|
|
6
|
-
oa as Accordion,
|
|
7
|
-
na as AccordionItem,
|
|
8
|
-
ra as Alert,
|
|
9
|
-
ca as Aside,
|
|
10
|
-
ia as Autocomplete,
|
|
11
|
-
la as Avatar,
|
|
12
|
-
ua as BackToTop,
|
|
13
|
-
ga as Badge,
|
|
14
|
-
da as Breadcrumbs,
|
|
15
|
-
Ta as Burger,
|
|
16
|
-
ba as Button,
|
|
17
|
-
ma as ButtonGroup,
|
|
18
|
-
pa as ButtonIcon,
|
|
19
|
-
Sa as COLORS_DARK,
|
|
20
|
-
Ca as COLORS_LIGHT,
|
|
21
|
-
Ia as Card,
|
|
22
|
-
Ra as CodeContainer,
|
|
23
|
-
Da as Cover,
|
|
24
|
-
Pa as Datepicker,
|
|
25
|
-
La as DragList,
|
|
26
|
-
ya as DragListItem,
|
|
27
|
-
ha as Drawer,
|
|
28
|
-
Ma as Dropdown,
|
|
29
|
-
xa as DropdownContainer,
|
|
30
|
-
fa as DropdownItem,
|
|
31
|
-
ka as FONT_FAMILIES,
|
|
32
|
-
va as FONT_SIZES,
|
|
33
|
-
Aa as FONT_WEIGHTS,
|
|
34
|
-
Ea as Fade,
|
|
35
|
-
Fa as Fallback,
|
|
36
|
-
Na as Fieldset,
|
|
37
|
-
Oa as Flexbox,
|
|
38
|
-
wa as Footer,
|
|
39
|
-
Ba as Form,
|
|
40
|
-
Ha as FullBleed,
|
|
41
|
-
Ga as Grid,
|
|
42
|
-
_a as Header,
|
|
43
|
-
Ya as Helmet,
|
|
44
|
-
Wa as Highlight,
|
|
45
|
-
Ka as Hr,
|
|
46
|
-
Ua as ICON_MULTIPLIER,
|
|
47
|
-
ja as INPUT_HEIGHT,
|
|
48
|
-
qa as Icon,
|
|
49
|
-
za as IconMenu,
|
|
50
|
-
Va as IconMenuItem,
|
|
51
|
-
Xa as Image,
|
|
52
|
-
Za as Input,
|
|
53
|
-
Ja as InputCheck,
|
|
54
|
-
Qa as InputContainer,
|
|
55
|
-
$a as InputCounter,
|
|
56
|
-
as as InputImage,
|
|
57
|
-
ss as InputPhone,
|
|
58
|
-
es as InputPin,
|
|
59
|
-
ts as InputSlider,
|
|
60
|
-
os as Key,
|
|
61
|
-
ns as LAYOUTS,
|
|
62
|
-
rs as LIB_TOKENS,
|
|
63
|
-
cs as LINE_HEIGHTS,
|
|
64
|
-
is as LibThemeColors,
|
|
65
|
-
ls as Link,
|
|
66
|
-
us as Linkify,
|
|
67
|
-
gs as ListGroup,
|
|
68
|
-
ds as ListGroupItem,
|
|
69
|
-
Ts as ListGroupTitle,
|
|
70
|
-
bs as Loader,
|
|
71
|
-
ms as MEDIA,
|
|
72
|
-
ps as Main,
|
|
73
|
-
Ss as MarkdownContainer,
|
|
74
|
-
Cs as MarkdownEditor,
|
|
75
|
-
Is as Masonry,
|
|
76
|
-
Rs as Message,
|
|
77
|
-
Ds as MessageForm,
|
|
78
|
-
Ps as MessagesContainer,
|
|
79
|
-
Ls as MessagesList,
|
|
80
|
-
ys as Messaging,
|
|
81
|
-
hs as Mixins,
|
|
82
|
-
Ms as Modal,
|
|
83
|
-
xs as OVERLAYS,
|
|
84
|
-
fs as PageLayout,
|
|
85
|
-
ks as PageLoading,
|
|
86
|
-
vs as Pagination,
|
|
87
|
-
As as PaginationButton,
|
|
88
|
-
Es as Paginator,
|
|
89
|
-
Fs as ProgressBar,
|
|
90
|
-
Ns as ProgressCircle,
|
|
91
|
-
Os as RADIUSES,
|
|
92
|
-
ws as Rating,
|
|
93
|
-
Bs as ResetScroll,
|
|
94
|
-
Hs as SHADOWS,
|
|
95
|
-
Gs as SPACERS,
|
|
96
|
-
_s as Section,
|
|
97
|
-
Ys as Select,
|
|
98
|
-
Ws as Skeleton,
|
|
99
|
-
Ks as SkeletonCard,
|
|
100
|
-
Us as SkeletonShine,
|
|
101
|
-
js as Slideshow,
|
|
102
|
-
qs as SrOnly,
|
|
103
|
-
zs as Step,
|
|
104
|
-
Vs as Stepper,
|
|
105
|
-
Xs as Sticky,
|
|
106
|
-
Zs as StyleSheetManager,
|
|
107
|
-
Js as TBody,
|
|
108
|
-
Qs as THead,
|
|
109
|
-
$s as TRANSITIONS,
|
|
110
|
-
ae as TabButton,
|
|
111
|
-
se as TabItem,
|
|
112
|
-
ee as Table,
|
|
113
|
-
te as Tabs,
|
|
114
|
-
oe as TabsButtonsContainer,
|
|
115
|
-
ne as TabsContainer,
|
|
116
|
-
re as Tag,
|
|
117
|
-
ce as Td,
|
|
118
|
-
ie as Text,
|
|
119
|
-
le as TextIcon,
|
|
120
|
-
ea as ThemeProvider,
|
|
121
|
-
ue as ThemeProviderWrapper,
|
|
122
|
-
ge as Timepicker,
|
|
123
|
-
de as Toast,
|
|
124
|
-
Te as ToastContext,
|
|
125
|
-
be as ToasterProviderWrapper,
|
|
126
|
-
me as Tooltip,
|
|
127
|
-
pe as Tr,
|
|
128
|
-
Se as Truncate,
|
|
129
|
-
Ce as URL_REGEX,
|
|
130
|
-
Ie as Video,
|
|
131
|
-
Re as Wrapper,
|
|
132
|
-
De as Youtube,
|
|
133
|
-
e as addDay,
|
|
134
|
-
t as addMonth,
|
|
135
|
-
o as addYear,
|
|
136
|
-
n as calculateAverage,
|
|
137
|
-
r as calculateTotalSum,
|
|
138
|
-
c as capitalize,
|
|
139
|
-
i as convertDate,
|
|
140
|
-
l as convertDateShort,
|
|
141
|
-
u as convertPrice,
|
|
142
|
-
g as convertToEmail,
|
|
143
|
-
d as convertYoutube,
|
|
144
|
-
T as deleteDuplicates,
|
|
145
|
-
b as detectLanguage,
|
|
146
|
-
m as disableScroll,
|
|
147
|
-
p as emailRegex,
|
|
148
|
-
S as enableScroll,
|
|
149
|
-
C as filterObject,
|
|
150
|
-
I as formatDate,
|
|
151
|
-
R as formatHour,
|
|
152
|
-
D as generateNumbers,
|
|
153
|
-
P as getFirstName,
|
|
154
|
-
L as getInitials,
|
|
155
|
-
y as getLastName,
|
|
156
|
-
h as getPercentage,
|
|
157
|
-
M as getRandom,
|
|
158
|
-
x as getRandomAvatar,
|
|
159
|
-
f as getRandomDate,
|
|
160
|
-
k as getRandomNumber,
|
|
161
|
-
v as getRandomString,
|
|
162
|
-
A as getRandomTime,
|
|
163
|
-
E as getTimeNow,
|
|
164
|
-
F as getToday,
|
|
165
|
-
N as getTomorrow,
|
|
166
|
-
O as getYesterday,
|
|
167
|
-
w as hexToRgb,
|
|
168
|
-
Pe as linkifyText,
|
|
169
|
-
Le as markdownEditorOptions,
|
|
170
|
-
ye as optionsMarkdown,
|
|
171
|
-
B as passwordRegex,
|
|
172
|
-
H as rgbToHex,
|
|
173
|
-
G as scrollToTop,
|
|
174
|
-
he as setDefaultTheme,
|
|
175
|
-
Me as shouldForwardProp,
|
|
176
|
-
_ as slugify,
|
|
177
|
-
Y as sortByFrequency,
|
|
178
|
-
W as stringifyPx,
|
|
179
|
-
K as toCamelCase,
|
|
180
|
-
U as toConstantCase,
|
|
181
|
-
j as toDotCase,
|
|
182
|
-
q as toKebabCase,
|
|
183
|
-
z as toPascalCase,
|
|
184
|
-
V as toPathCase,
|
|
185
|
-
X as toSentenceCase,
|
|
186
|
-
Z as toSnakeCase,
|
|
187
|
-
J as toTitleCase,
|
|
188
|
-
Q as unslugify,
|
|
189
|
-
xe as useClickOutside,
|
|
190
|
-
fe as useCopyToClipboard,
|
|
191
|
-
ke as useDebounce,
|
|
192
|
-
ve as useExportData,
|
|
193
|
-
Ae as useFetch,
|
|
194
|
-
Ee as useForm,
|
|
195
|
-
Fe as useIsOverflow,
|
|
196
|
-
Ne as useKeyPress,
|
|
197
|
-
Oe as useLibTheme,
|
|
198
|
-
we as useMaxWidth,
|
|
199
|
-
Be as useMergeRefs,
|
|
200
|
-
He as useMinWidth,
|
|
201
|
-
Ge as usePaginatedData,
|
|
202
|
-
_e as usePagination,
|
|
203
|
-
Ye as useToast,
|
|
204
|
-
We as useTouchScreen,
|
|
205
|
-
Ke as useTranslation,
|
|
206
|
-
$ as uuid
|
|
207
|
-
};
|
package/dist/styles-BzlWff0X.cjs
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("styled-components"),t=require("./index-CaOLbx-Z.cjs");require("react");require("react-router-dom");const i=r.video`
|
|
2
|
-
display: block;
|
|
3
|
-
width: ${({$width:e})=>t.utils.stringifyPx(e)};
|
|
4
|
-
height: ${({$height:e})=>t.utils.stringifyPx(e)};
|
|
5
|
-
object-fit: ${({$fit:e})=>e};
|
|
6
|
-
aspect-ratio: ${({$aspectRatio:e})=>e};
|
|
7
|
-
`;t.setDefaultTheme([i]);exports.default=i;
|
package/dist/styles-D2xrGFT_.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import e from "styled-components";
|
|
2
|
-
import { u as i, s as o } from "./index-Cf_pM6lO.js";
|
|
3
|
-
import "react";
|
|
4
|
-
import "react-router-dom";
|
|
5
|
-
const s = e.video`
|
|
6
|
-
display: block;
|
|
7
|
-
width: ${({ $width: t }) => i.stringifyPx(t)};
|
|
8
|
-
height: ${({ $height: t }) => i.stringifyPx(t)};
|
|
9
|
-
object-fit: ${({ $fit: t }) => t};
|
|
10
|
-
aspect-ratio: ${({ $aspectRatio: t }) => t};
|
|
11
|
-
`;
|
|
12
|
-
o([s]);
|
|
13
|
-
export {
|
|
14
|
-
s as default
|
|
15
|
-
};
|