@julseb-lib/react 0.0.68 → 0.0.70

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.
@@ -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
  )
package/dist/lib/index.ts CHANGED
@@ -156,4 +156,4 @@ export * from "./components/DragList"
156
156
  export * from "./components/Fieldset"
157
157
  export * from "./components/Datepicker"
158
158
  export * from "./components/Timepicker"
159
- // prependHere
159
+ /* Prepend here - DO NOT REMOVE */
@@ -79,4 +79,4 @@ export * from "../components/Fieldset/types"
79
79
  export * from "../components/Datepicker/types"
80
80
  export * from "../components/Timepicker/types"
81
81
  export * from "../components/Link/types"
82
- // prependHere
82
+ /* Prepend here - DO NOT REMOVE */
@@ -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,46 +1,49 @@
1
1
  {
2
2
  "name": "@julseb-lib/react",
3
- "version": "0.0.68",
3
+ "version": "0.0.70",
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:lib": "rm -rf ./dist && mkdir ./dist && vite build && yarn copy && yarn copy-lib && yarn clean",
13
+ "plop": "cross-env NODE_OPTIONS='--import tsx' plop --plopfile=./plop/plopfile.ts",
14
+ "plop:c": "yarn plop component",
15
+ "plop:p": "yarn plop preview",
16
+ "plop:st": "yarn plop subtype",
15
17
  "cy": "cypress",
16
18
  "cy:open": "cypress open",
17
19
  "cy:ct:run": "cypress run --component --browser electron",
18
20
  "cy:ct:open": "cypress open --component --browser electron",
19
- "plop": "plop --plopfile 'plop/plopfile.js'",
20
- "plop:c": "yarn run plop component",
21
- "plop:p": "yarn plop preview",
22
- "plop:st": "yarn plop subtype",
21
+ "build": "rm -rf ./dist && mkdir ./dist && tsc && vite build && yarn copy && yarn copy-lib && yarn clean",
23
22
  "docgen": "react-docgen -o ./src/data/docgen.json ./src/lib/components/**/*.tsx",
24
23
  "cssgen": "cssjson src/lib/index.css --output src/data/styles.json",
25
24
  "check-errors": "tsc --noEmit"
26
25
  },
27
26
  "dependencies": {
28
- "@julseb-lib/utils": "^0.0.2",
27
+ "@julseb-lib/utils": "^0.0.9",
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.6.0",
32
+ "markdown-to-jsx": "^7.6.2",
33
+ "plop": "^4.0.1",
32
34
  "react": "^18.3.1",
33
35
  "react-dom": "^18.3.1",
34
36
  "react-helmet-async": "^2.0.5",
35
- "react-inlinesvg": "^4.1.4",
37
+ "react-inlinesvg": "^4.1.5",
36
38
  "react-router-dom": "^6.28.0",
37
39
  "react-syntax-highlighter": "^15.6.1",
38
40
  "styled-components": "^6.1.13"
39
41
  },
40
42
  "devDependencies": {
41
- "@eslint/compat": "^1.2.2",
42
- "@eslint/js": "^9.14.0",
43
+ "@eslint/compat": "^1.2.3",
44
+ "@eslint/js": "^9.15.0",
43
45
  "@react-docgen/cli": "^2.0.4",
46
+ "@types/figlet": "^1.7.0",
44
47
  "@types/jest": "^29.5.14",
45
48
  "@types/mocha": "^10.0.9",
46
49
  "@types/react": "^18.3.12",
@@ -51,12 +54,13 @@
51
54
  "@types/styled-components": "^5.1.34",
52
55
  "@vitejs/plugin-react": "^4.3.3",
53
56
  "axios": "^1.7.7",
57
+ "cross-env": "^7.0.3",
54
58
  "cssjson-cli": "^1.0.1",
55
59
  "cypress": "^13.15.2",
56
- "eslint": "^9.14.0",
60
+ "eslint": "^9.15.0",
57
61
  "eslint-plugin-react": "^7.37.2",
58
62
  "globals": "^15.12.0",
59
- "plop": "^4.0.1",
63
+ "tsx": "^4.19.2",
60
64
  "typescript": "^5.6.3",
61
65
  "typescript-eslint": "^8.14.0",
62
66
  "vite": "^5.4.11",
@@ -66,15 +70,15 @@
66
70
  "files": [
67
71
  "dist"
68
72
  ],
69
- "main": "./dist/@julseb-lib-react.umd.js",
70
- "module": "./dist/@julseb-lib-react.es.js",
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/@julseb-lib-react.es.js",
75
- "require": "./dist/@julseb-lib-react.umd.js",
78
+ "import": "./dist/index.es.js",
79
+ "require": "./dist/index.umd.js",
76
80
  "types": "./dist/lib/index.ts",
77
- "default": "./dist/@julseb-lib-react.cjs.js"
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
- };
@@ -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;
@@ -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
- };