@caseparts-org/caseblocks 0.0.23 → 0.0.25

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/main.d.ts CHANGED
@@ -6,8 +6,6 @@ export { Grid, Column } from './atoms/Grid/Grid';
6
6
  export type { GridProps, ColumnProps } from './atoms/Grid/Grid';
7
7
  export { Head } from './atoms/Root/Head';
8
8
  export { Icon } from './atoms/Icon/Icon';
9
- export { Link } from './atoms/Link/Link';
10
- export type { LinkProps } from './atoms/Link/Link';
11
9
  export { Root } from './atoms/Root/Root';
12
10
  export { Separator } from './atoms/Separator/Separator';
13
11
  export type { SeparatorProps } from './atoms/Separator/Separator';
package/dist/main.js CHANGED
@@ -2,38 +2,36 @@ import { Button as e } from "./atoms/Button/Button.js";
2
2
  import { Flex as p } from "./atoms/Flex/Flex.js";
3
3
  import { Column as m, Grid as f } from "./atoms/Grid/Grid.js";
4
4
  import { Head as n } from "./atoms/Root/Head.js";
5
- import { Icon as c } from "./atoms/Icon/Icon.js";
6
- import { Link as u } from "./atoms/Link/Link.js";
7
- import { Root as h } from "./atoms/Root/Root.js";
8
- import { Separator as S } from "./atoms/Separator/Separator.js";
9
- import { Text as v } from "./atoms/Text/Text.js";
10
- import { Input as B } from "./atoms/Input/Input.js";
11
- import { Account as L } from "./molecules/Account/Account.js";
12
- import { Avatar as k } from "./molecules/Avatar/Avatar.js";
5
+ import { Icon as i } from "./atoms/Icon/Icon.js";
6
+ import { Root as u } from "./atoms/Root/Root.js";
7
+ import { Separator as h } from "./atoms/Separator/Separator.js";
8
+ import { Text as S } from "./atoms/Text/Text.js";
9
+ import { Input as v } from "./atoms/Input/Input.js";
10
+ import { Account as B } from "./molecules/Account/Account.js";
11
+ import { Avatar as T } from "./molecules/Avatar/Avatar.js";
13
12
  import { Chip as F } from "./molecules/Chip/Chip.js";
14
13
  import { Logo as H } from "./molecules/Logo/Logo.js";
15
- import { SearchBox as N } from "./molecules/SearchBox/SearchBox.js";
16
- import { ToggleView as V } from "./molecules/ToggleView/ToggleView.js";
17
- import { MainNav as j } from "./organisms/MainNav/MainNav.js";
18
- import { ChipSelector as s } from "./organisms/ChipSelector/ChipSelector.js";
14
+ import { SearchBox as M } from "./molecules/SearchBox/SearchBox.js";
15
+ import { ToggleView as R } from "./molecules/ToggleView/ToggleView.js";
16
+ import { MainNav as b } from "./organisms/MainNav/MainNav.js";
17
+ import { ChipSelector as k } from "./organisms/ChipSelector/ChipSelector.js";
19
18
  export {
20
- L as Account,
21
- k as Avatar,
19
+ B as Account,
20
+ T as Avatar,
22
21
  e as Button,
23
22
  F as Chip,
24
- s as ChipSelector,
23
+ k as ChipSelector,
25
24
  m as Column,
26
25
  p as Flex,
27
26
  f as Grid,
28
27
  n as Head,
29
- c as Icon,
30
- B as Input,
31
- u as Link,
28
+ i as Icon,
29
+ v as Input,
32
30
  H as Logo,
33
- j as MainNav,
34
- h as Root,
35
- N as SearchBox,
36
- S as Separator,
37
- v as Text,
38
- V as ToggleView
31
+ b as MainNav,
32
+ u as Root,
33
+ M as SearchBox,
34
+ h as Separator,
35
+ S as Text,
36
+ R as ToggleView
39
37
  };
package/package.json CHANGED
@@ -1,13 +1,35 @@
1
1
  {
2
2
  "name": "@caseparts-org/caseblocks",
3
3
  "private": false,
4
- "version": "0.0.23",
4
+ "version": "0.0.25",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",
8
8
  "files": [
9
9
  "dist"
10
10
  ],
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/main.d.ts",
14
+ "import": "./dist/main.js"
15
+ },
16
+ "./link": {
17
+ "types": "./dist/atoms/Link/Link.d.ts",
18
+ "import": "./dist/atoms/Link/Link.js"
19
+ },
20
+ "./atoms/*": {
21
+ "types": "./dist/atoms/*/*.d.ts",
22
+ "import": "./dist/atoms/*/*.js"
23
+ },
24
+ "./molecules/*": {
25
+ "types": "./dist/molecules/*/*.d.ts",
26
+ "import": "./dist/molecules/*/*.js"
27
+ },
28
+ "./organisms/*": {
29
+ "types": "./dist/organisms/*/*.d.ts",
30
+ "import": "./dist/organisms/*/*.js"
31
+ }
32
+ },
11
33
  "scripts": {
12
34
  "dev": "vite",
13
35
  "build": "tsc -b ./tsconfig.lib.json && vite build",