Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .storybook/components/IconGallery/IconGallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { Fragment, useState } from 'react';
import { Typography, SearchInput } from '@koobiq/react-components';
import { clsx, useDebounceCallback } from '@koobiq/react-core';
import type { IconsManifest } from '@koobiq/react-icons';
import iconsManifest from '@koobiq/react-icons/manifest.json';

import iconsManifest from '../../../packages/icons/manifest.json';
import { slugify } from '../../utils';

import { IconDetails } from './IconDetails';
Expand Down
1 change: 0 additions & 1 deletion .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ const config: StorybookConfig = {
alias: {
'@koobiq/logger': toPath('packages/logger/src'),
'@koobiq/react-core': toPath('packages/core/src'),
'@koobiq/react-icons': toPath('packages/icons/src'),
'@koobiq/react-primitives': toPath('packages/primitives/src'),
'@koobiq/react-components': toPath('packages/components/src'),
},
Expand Down
17 changes: 8 additions & 9 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,14 @@
│ │ ├── components/ # Koobiq primitives built on React Aria
│ │ ├── behaviors/ # Koobiq behavior hooks built on React Aria
│ │ └── index.ts # Re-exports unmodified React Aria hooks/state/types + RAC components + Koobiq primitives and behavior hooks
│ ├── components/ # Koobiq React components (@koobiq/react-components)
│ │ └── src/
│ │ ├── components/ # All component source files
│ │ ├── styles/ # CSS mixins, utility classes
│ │ ├── utils/ # Component-level helpers
│ │ ├── types.ts
│ │ ├── global.css
│ │ └── index.ts
│ └── icons/ # A collection of React-icons (@koobiq/react-icons)
│ └── components/ # Koobiq React components (@koobiq/react-components)
│ └── src/
│ ├── components/ # All component source files
│ ├── styles/ # CSS mixins, utility classes
│ ├── utils/ # Component-level helpers
│ ├── types.ts
│ ├── global.css
│ └── index.ts
├── docs/ # MDX documentation pages (rendered in Storybook)
├── .storybook/ # Storybook configuration
├── tools/ # Internal tooling
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Here are a few helpful links for getting started with Koobiq React:

- [@koobiq/react-components](https://github.com/koobiq/react-components/tree/main/packages/components) — the React component library.
- [@koobiq/react-primitives](https://github.com/koobiq/react-components/tree/main/packages/primitives) — a collection of unstyled React-components and behavior hooks.
- [@koobiq/react-icons](https://github.com/koobiq/react-components/tree/main/packages/icons) — a collection of React-icons.
- [@koobiq/react-icons](https://github.com/koobiq/icons) — a collection of React-icons (maintained in the [koobiq/icons](https://github.com/koobiq/icons) repository).
- [@koobiq/react-core](https://github.com/koobiq/react-components/tree/main/packages/core) — common utilities and hooks used by Koobiq React packages.
- [@koobiq/logger](https://github.com/koobiq/react-components/tree/main/packages/logger) — the utilities for displaying the log on the client side.
2 changes: 1 addition & 1 deletion docs/1-icons.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ import { IconGallery, Status, Meta } from '../.storybook/components';
<Status variant="stable" />

The `@koobiq/react-icons` package provides all icons for `@koobiq/react-components` as a peer dependency.
Refer to its [documentation](https://github.com/koobiq/react-components/blob/main/packages/icons/README.md) for usage instructions.
It is maintained in the [koobiq/icons](https://github.com/koobiq/icons) repository — refer to its documentation for usage instructions.

<IconGallery />
4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,6 @@
"@storybook/react-vite": "^10.3.6",
"@eslint/js": "^9.39.4",
"@stylistic/eslint-plugin": "^5.10.0",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
Expand Down
3 changes: 2 additions & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@
"@koobiq/design-tokens": "^3.17.2",
"@koobiq/logger": "workspace:*",
"@koobiq/react-core": "workspace:*",
"@koobiq/react-icons": "workspace:*",
"@koobiq/react-icons": "^12.0.0",
"@koobiq/react-primitives": "workspace:*",
"@types/react-transition-group": "^4.4.12",
"react-transition-group": "^4.4.5",
"@internationalized/date": "^3.12.0"
},
"peerDependencies": {
"@koobiq/design-tokens": "^3.17.2",
"@koobiq/react-icons": "^12.0.0",
"react": "18.x || 19.x",
"react-dom": "18.x || 19.x"
}
Expand Down
1 change: 0 additions & 1 deletion packages/components/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"strict": true,
"target": "es2019",
"paths": {
"@koobiq/react-icons": ["../icons/src/"],
"@koobiq/react-core": ["../core/src/"],
"@koobiq/react-primitives": ["../primitives/src/"],
"@koobiq/logger": ["../logger/src/"]
Expand Down
1 change: 0 additions & 1 deletion packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"target": "es2019",
"paths": {
"@koobiq/react-components": ["../components/src"],
"@koobiq/react-icons": ["../icons/src/"],
"@koobiq/react-core": ["../core/src/"],
"@koobiq/react-primitives": ["../primitives/src/"],
"@koobiq/logger": ["../logger/src/"]
Expand Down
21 changes: 0 additions & 21 deletions packages/icons/LICENSE.txt

This file was deleted.

55 changes: 0 additions & 55 deletions packages/icons/README.md

This file was deleted.

35 changes: 0 additions & 35 deletions packages/icons/constants.ts

This file was deleted.

Loading
Loading