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.
Files changed (47) hide show
  1. package/dist/ds.css +1 -1
  2. package/dist/ds.js +655 -633
  3. package/dist/ds.umd.cjs +1 -1
  4. package/package.json +4 -4
  5. package/src/components/Accordion/Accordion.tsx +13 -5
  6. package/src/components/Avatar/Avatar.tsx +3 -3
  7. package/src/components/Badge/Badge.tsx +2 -2
  8. package/src/components/Box/Box.tsx +2 -2
  9. package/src/components/Breadcrumbs/Breadcrumbs.tsx +3 -3
  10. package/src/components/Button/Button.tsx +2 -2
  11. package/src/components/Card/Card.tsx +5 -5
  12. package/src/components/Checkbox/Checkbox.module.css +1 -1
  13. package/src/components/Checkbox/Checkbox.tsx +4 -4
  14. package/src/components/Divider/Divider.tsx +3 -3
  15. package/src/components/Dropdown/Dropdown.module.css +1 -0
  16. package/src/components/Dropdown/Dropdown.tsx +5 -5
  17. package/src/components/Header/Header.tsx +4 -4
  18. package/src/components/Input/Input.tsx +4 -4
  19. package/src/components/List/List.tsx +2 -2
  20. package/src/components/List/ListItem.tsx +2 -2
  21. package/src/components/Loader/Loader.tsx +2 -2
  22. package/src/components/Modal/Modal.tsx +2 -2
  23. package/src/components/NavBar/NavBar.tsx +3 -3
  24. package/src/components/Notification/Notification.tsx +2 -2
  25. package/src/components/Pagination/Pagination.tsx +2 -2
  26. package/src/components/ProgressBar/ProgressBar.tsx +5 -2
  27. package/src/components/RadioButton/RadioButton.tsx +5 -5
  28. package/src/components/Select/Select.tsx +4 -4
  29. package/src/components/Skeleton/Skeleton.tsx +2 -2
  30. package/src/components/Slider/Slider.tsx +8 -6
  31. package/src/components/Stepper/Step.tsx +6 -4
  32. package/src/components/Stepper/Stepper.tsx +2 -2
  33. package/src/components/Switch/Switch.tsx +6 -3
  34. package/src/components/Table/Table.tsx +9 -9
  35. package/src/components/Tabs/Tabs.tsx +4 -4
  36. package/src/components/Text/Text.tsx +2 -2
  37. package/src/components/Textarea/Textarea.tsx +4 -4
  38. package/src/components/Tooltip/Tooltip.tsx +3 -3
  39. package/src/components/Tree/Tree.tsx +2 -2
  40. package/src/components/Tree/TreeItem.tsx +2 -2
  41. package/src/layouts/AppLayout/AppLayout.tsx +2 -2
  42. package/src/layouts/AuthLayout/AuthLayout.tsx +2 -2
  43. package/src/layouts/DashboardLayout/DashboardLayout.tsx +2 -2
  44. package/src/layouts/SettingsLayout/SettingsLayout.tsx +2 -2
  45. package/tsconfig.app.json +1 -1
  46. package/vite.config.ts +0 -1
  47. package/dist/index.d.ts +0 -1
@@ -1,4 +1,4 @@
1
- import clsx from 'clsx';
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={clsx(styles.root, 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 clsx from 'clsx';
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={clsx(styles.root, 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
@@ -24,6 +24,6 @@
24
24
  "noFallthroughCasesInSwitch": true,
25
25
  "noUncheckedSideEffectImports": true
26
26
  },
27
- "include": ["src"],
27
+ "include": ["src/**/*", ".storybook/**/*"],
28
28
  "exclude": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/test"]
29
29
  }
package/vite.config.ts CHANGED
@@ -6,7 +6,6 @@ import { resolve } from 'path';
6
6
  export default defineConfig({
7
7
  plugins: [
8
8
  dts({
9
- insertTypesEntry: true,
10
9
  include: ['src'],
11
10
  tsconfigPath: './tsconfig.app.json',
12
11
  }),
package/dist/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export {}