tharaday 0.7.4 → 0.7.6
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/ds.css +1 -1
- package/dist/ds.js +655 -633
- package/dist/ds.umd.cjs +1 -1
- package/package.json +4 -4
- package/src/components/Accordion/Accordion.tsx +13 -5
- package/src/components/Avatar/Avatar.tsx +3 -3
- package/src/components/Badge/Badge.tsx +2 -2
- package/src/components/Box/Box.tsx +2 -2
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +3 -3
- package/src/components/Button/Button.tsx +2 -2
- package/src/components/Card/Card.tsx +5 -5
- package/src/components/Checkbox/Checkbox.module.css +1 -1
- package/src/components/Checkbox/Checkbox.tsx +4 -4
- package/src/components/Divider/Divider.tsx +3 -3
- package/src/components/Dropdown/Dropdown.module.css +1 -0
- package/src/components/Dropdown/Dropdown.tsx +5 -5
- package/src/components/Header/Header.tsx +4 -4
- package/src/components/Input/Input.tsx +4 -4
- package/src/components/List/List.tsx +2 -2
- package/src/components/List/ListItem.tsx +2 -2
- package/src/components/Loader/Loader.tsx +2 -2
- package/src/components/Modal/Modal.tsx +2 -2
- package/src/components/NavBar/NavBar.tsx +3 -3
- package/src/components/Notification/Notification.tsx +2 -2
- package/src/components/Pagination/Pagination.tsx +2 -2
- package/src/components/ProgressBar/ProgressBar.tsx +5 -2
- package/src/components/RadioButton/RadioButton.tsx +5 -5
- package/src/components/Select/Select.tsx +4 -4
- package/src/components/Skeleton/Skeleton.tsx +2 -2
- package/src/components/Slider/Slider.tsx +8 -6
- package/src/components/Stepper/Step.tsx +6 -4
- package/src/components/Stepper/Stepper.tsx +2 -2
- package/src/components/Switch/Switch.tsx +6 -3
- package/src/components/Table/Table.tsx +9 -9
- package/src/components/Tabs/Tabs.tsx +4 -4
- package/src/components/Text/Text.tsx +2 -2
- package/src/components/Textarea/Textarea.tsx +4 -4
- package/src/components/Tooltip/Tooltip.tsx +3 -3
- package/src/components/Tree/Tree.tsx +2 -2
- package/src/components/Tree/TreeItem.tsx +2 -2
- package/src/layouts/AppLayout/AppLayout.tsx +2 -2
- package/src/layouts/AuthLayout/AuthLayout.tsx +2 -2
- package/src/layouts/DashboardLayout/DashboardLayout.tsx +2 -2
- package/src/layouts/SettingsLayout/SettingsLayout.tsx +2 -2
- package/tsconfig.app.json +1 -1
- package/vite.config.ts +0 -1
- package/dist/index.d.ts +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import classnames from 'classnames';
|
|
2
2
|
|
|
3
3
|
import styles from './DashboardLayout.module.css';
|
|
4
4
|
import type { DashboardLayoutProps } from './DashboardLayout.types.tsx';
|
|
@@ -12,7 +12,7 @@ export const DashboardLayout = ({
|
|
|
12
12
|
className,
|
|
13
13
|
}: DashboardLayoutProps) => {
|
|
14
14
|
return (
|
|
15
|
-
<div className={
|
|
15
|
+
<div className={classnames(styles.root, className)}>
|
|
16
16
|
{header}
|
|
17
17
|
<main className={styles.main}>
|
|
18
18
|
<div className={styles.container}>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import classnames from 'classnames';
|
|
2
2
|
|
|
3
3
|
import styles from './SettingsLayout.module.css';
|
|
4
4
|
import type { SettingsLayoutProps } from './SettingsLayout.types.tsx';
|
|
@@ -11,7 +11,7 @@ export const SettingsLayout = ({
|
|
|
11
11
|
className,
|
|
12
12
|
}: SettingsLayoutProps) => {
|
|
13
13
|
return (
|
|
14
|
-
<div className={
|
|
14
|
+
<div className={classnames(styles.root, className)}>
|
|
15
15
|
{header}
|
|
16
16
|
<main className={styles.main}>
|
|
17
17
|
<div className={styles.container}>
|
package/tsconfig.app.json
CHANGED
package/vite.config.ts
CHANGED
package/dist/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {}
|