Skip to content

Commit 70baf0b

Browse files
committed
Update core documentation with npm package
1 parent 8241fbd commit 70baf0b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+65
-65
lines changed

docs/liberty/core/components/charts/bar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The `BarChart` component is a customizable bar chart using Chart.js. It supports
2020

2121
## Example Usage
2222
```tsx
23-
import { BarChart } from "liberty-core";
23+
import { BarChart } from "@nomana-it/liberty-core"
2424

2525
const dataset = [
2626
{ month: "Jan", revenue: 10000, profit: 3000 },

docs/liberty/core/components/charts/line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The `LineChart` component provides a customizable line chart using Chart.js. It
2020

2121
## Example Usage
2222
```tsx
23-
import { LineChart } from "liberty-core";
23+
import { LineChart } from "@nomana-it/liberty-core"
2424

2525
const dataset = [
2626
{ month: "Jan", sales: 100, revenue: 200 },

docs/liberty/core/components/charts/pie.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The `PieChart` component provides a customizable **Doughnut/Pie Chart** using Ch
1515

1616
## Example Usage
1717
```tsx
18-
import { PieChart } from "liberty-core";
18+
import { PieChart } from "@nomana-it/liberty-core"
1919

2020
const chartData = [
2121
{ value: 40, label: "Product A" },

docs/liberty/core/components/dialogs-overlays/confirmation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The `ConfirmationDialog` component provides a standard confirmation popup with c
1515

1616
## Example Usage
1717
```tsx
18-
import { ConfirmationDialog, Button } from "liberty-core";
18+
import { ConfirmationDialog, Button } from "@nomana-it/liberty-core"
1919
import { useState } from "react";
2020

2121
export const ConfirmationDialogExample = () => {

docs/liberty/core/components/dialogs-overlays/dialog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The `Dialog` component is a modal dialog that appears over the main content. It
2222

2323
## Example Usage
2424
```tsx
25-
import { Dialog, Button, Dialog_Title, Dialog_Content, Dialog_Actions } from "liberty-core";
25+
import { Dialog, Button, Dialog_Title, Dialog_Content, Dialog_Actions } from "@nomana-it/liberty-core"
2626
import { useState } from "react";
2727
import { t } from "i18next";
2828
import { LYCancelIcon } from "@ly_styles/icons";

docs/liberty/core/components/dialogs-overlays/export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The `DialogExport` component provides a modal dialog to select export options be
2727

2828
## Example Usage
2929
```tsx
30-
import { DialogExport, Button } from "liberty-core";
30+
import { DialogExport, Button } from "@nomana-it/liberty-core"
3131
import { useState } from "react";
3232
import { EExportType, IExportOptions } from "@ly_utils/commonUtils";
3333

docs/liberty/core/components/dialogs-overlays/popper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `Popper` component provides a floating UI container that appears next to an
1717
## Example Usage
1818
```tsx
1919
import { useState } from "react";
20-
import { Popper, Button } from "liberty-core";
20+
import { Popper, Button } from "@nomana-it/liberty-core"
2121

2222
export const PopperExample = () => {
2323
const [anchorEl, setAnchorEl] = useState<HTMLElement | null>(null);

docs/liberty/core/components/dialogs-overlays/tabs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The `Tabs` and `Tab` components allow navigation between different views or sett
2222

2323
## Example Usage
2424
```tsx
25-
import { Tab, Tabs } from "liberty-core";
25+
import { Tab, Tabs } from "@nomana-it/liberty-core"
2626
import { useState } from "react";
2727

2828
export const TabsExample = () => {

docs/liberty/core/components/forms-components/dashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ A dashboard consists of **header metadata** and **content components** that can
2626

2727
## Example Usage
2828
```tsx
29-
import { getDashboard } from "liberty-core";
29+
import { getDashboard } from "@nomana-it/liberty-core"
3030

3131
export const DashboardExample = async () => {
3232
const dashboard = await getDashboard(1);

docs/liberty/core/components/inputs-forms/checkbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `InputCheckbox` component is a reusable checkbox input with built-in state m
1818

1919
## Example Usage
2020
```tsx
21-
import { InputCheckbox } from "liberty-core";
21+
import { InputCheckbox } from "@nomana-it/liberty-core"
2222
import { useState } from "react";
2323

2424
export const InputCheckboxExample = () => {

0 commit comments

Comments
 (0)