math-main-components 0.0.195 → 0.0.196
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/functions/url.d.ts +3 -0
- package/dist/index.cjs.js +7 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +5 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
@@ -10460,6 +10460,10 @@ function useScroll() {
|
|
10460
10460
|
return scroll;
|
10461
10461
|
}
|
10462
10462
|
|
10463
|
+
const site = (pathname) => process.env.NEXT_PUBLIC_APP_URL + pathname;
|
10464
|
+
const app = (pathname) => site("/app" + pathname);
|
10465
|
+
const cdn = (pathname) => process.env.NEXT_PUBLIC_WEB_ASSETS_CDN + pathname;
|
10466
|
+
|
10463
10467
|
exports.Accordeon = Accordeon;
|
10464
10468
|
exports.AuthButton = AuthButton;
|
10465
10469
|
exports.Button = Button;
|
@@ -10499,6 +10503,9 @@ exports.Table = Table;
|
|
10499
10503
|
exports.Tabs = Tabs;
|
10500
10504
|
exports.TextWithIcon = TextWithIcon;
|
10501
10505
|
exports.UsageCard = UsageCard;
|
10506
|
+
exports.app = app;
|
10507
|
+
exports.cdn = cdn;
|
10508
|
+
exports.site = site;
|
10502
10509
|
exports.useDimensions = useDimensions;
|
10503
10510
|
exports.useOrientation = useOrientation;
|
10504
10511
|
exports.useScroll = useScroll;
|
package/dist/index.d.ts
CHANGED
@@ -36,6 +36,7 @@ export * from './components/UsageCard';
|
|
36
36
|
export * from './hooks/useDimensions';
|
37
37
|
export * from './hooks/useOrientation';
|
38
38
|
export * from './hooks/useScroll';
|
39
|
+
export * from './functions/url';
|
39
40
|
export * from './types/marketing/About';
|
40
41
|
export * from './types/marketing/BenefitForIndividual';
|
41
42
|
export * from './types/marketing/BenefitForSchool';
|
package/dist/index.esm.js
CHANGED
@@ -10434,4 +10434,8 @@ function useScroll() {
|
|
10434
10434
|
return scroll;
|
10435
10435
|
}
|
10436
10436
|
|
10437
|
-
|
10437
|
+
const site = (pathname) => process.env.NEXT_PUBLIC_APP_URL + pathname;
|
10438
|
+
const app = (pathname) => site("/app" + pathname);
|
10439
|
+
const cdn = (pathname) => process.env.NEXT_PUBLIC_WEB_ASSETS_CDN + pathname;
|
10440
|
+
|
10441
|
+
export { Accordeon, AuthButton, Button, CardButton, Checkbox, ChooseRole, ChooseRoleItem, CopyCode, Dialog, EmptyCard, FormButton, FormText, ForwardButton, Gap, InputArea, InputMail, InputNames, InputNumber, InputPassword, InputPin, InputText, OptionField, OptionFieldHorizontal, Popover, ProgressBar, RadioButtons, RadioOption, RedirectButton, SearchChip, SearchChips, Searchbar, Slider, SliderCard, StepBack, SvgIcon, Table, Tabs, TextWithIcon, UsageCard, app, cdn, site, useDimensions, useOrientation, useScroll };
|