jcicl 0.0.0

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 (59) hide show
  1. package/.chunks/AppBar.js +359 -0
  2. package/.chunks/AppContainer.js +71 -0
  3. package/.chunks/AppHeader.js +31 -0
  4. package/.chunks/Avatar.js +38 -0
  5. package/.chunks/AvatarWithImage.js +36 -0
  6. package/.chunks/BasicPage.js +31 -0
  7. package/.chunks/Button.js +486 -0
  8. package/.chunks/ButtonBase.js +874 -0
  9. package/.chunks/CompactNav.js +70 -0
  10. package/.chunks/Divider.js +311 -0
  11. package/.chunks/Flex.js +21 -0
  12. package/.chunks/Grid.js +18 -0
  13. package/.chunks/Input.js +4392 -0
  14. package/.chunks/Menu.js +3160 -0
  15. package/.chunks/Nav.js +2138 -0
  16. package/.chunks/TransitionGroupContext.js +342 -0
  17. package/.chunks/createSimplePaletteValueFilter.js +17 -0
  18. package/.chunks/createSvgIcon.js +249 -0
  19. package/.chunks/emotion-styled.browser.esm.js +1032 -0
  20. package/.chunks/jocologo.js +4 -0
  21. package/.chunks/memoTheme.js +15 -0
  22. package/.chunks/theme.js +3314 -0
  23. package/base/Avatar/Avatar/index.d.ts +1 -0
  24. package/base/Avatar/Avatar/index.js +4 -0
  25. package/base/Avatar/AvatarWithImage/index.d.ts +1 -0
  26. package/base/Avatar/AvatarWithImage/index.js +4 -0
  27. package/base/Avatar/index.d.ts +2 -0
  28. package/base/Avatar/index.js +6 -0
  29. package/base/Button/index.d.ts +1 -0
  30. package/base/Button/index.js +4 -0
  31. package/base/Divider/index.d.ts +1 -0
  32. package/base/Divider/index.js +4 -0
  33. package/base/Flex/index.d.ts +1 -0
  34. package/base/Flex/index.js +4 -0
  35. package/base/Grid/index.d.ts +1 -0
  36. package/base/Grid/index.js +4 -0
  37. package/base/Input/index.d.ts +1 -0
  38. package/base/Input/index.js +4 -0
  39. package/base/index.d.ts +7 -0
  40. package/base/index.js +16 -0
  41. package/index.d.ts +3 -0
  42. package/index.js +22 -0
  43. package/package.json +82 -0
  44. package/supercomposite/AppBar/index.d.ts +1 -0
  45. package/supercomposite/AppBar/index.js +4 -0
  46. package/supercomposite/AppHeader/index.d.ts +1 -0
  47. package/supercomposite/AppHeader/index.js +4 -0
  48. package/supercomposite/CompactNav/index.d.ts +1 -0
  49. package/supercomposite/CompactNav/index.js +4 -0
  50. package/supercomposite/Nav/index.d.ts +2 -0
  51. package/supercomposite/Nav/index.js +4 -0
  52. package/supercomposite/index.d.ts +3 -0
  53. package/supercomposite/index.js +8 -0
  54. package/templates/AppContainer/index.d.ts +1 -0
  55. package/templates/AppContainer/index.js +4 -0
  56. package/templates/BasicPage/index.d.ts +1 -0
  57. package/templates/BasicPage/index.js +4 -0
  58. package/templates/index.d.ts +2 -0
  59. package/templates/index.js +6 -0
@@ -0,0 +1 @@
1
+ export { default } from './Avatar';
@@ -0,0 +1,4 @@
1
+ import { A as f } from "../../../.chunks/Avatar.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1 @@
1
+ export { default } from './AvatarWithImage.tsx';
@@ -0,0 +1,4 @@
1
+ import { A as f } from "../../../.chunks/AvatarWithImage.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,2 @@
1
+ export { default as Avatar } from './Avatar';
2
+ export { default as AvatarWithImage } from './AvatarWithImage';
@@ -0,0 +1,6 @@
1
+ import { A as t } from "../../.chunks/Avatar.js";
2
+ import { A } from "../../.chunks/AvatarWithImage.js";
3
+ export {
4
+ t as Avatar,
5
+ A as AvatarWithImage
6
+ };
@@ -0,0 +1 @@
1
+ export { default } from './Button';
@@ -0,0 +1,4 @@
1
+ import { B as f } from "../../.chunks/Button.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1 @@
1
+ export { default } from './Divider';
@@ -0,0 +1,4 @@
1
+ import { D as f } from "../../.chunks/Divider.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1 @@
1
+ export { default } from './Flex';
@@ -0,0 +1,4 @@
1
+ import { F as f } from "../../.chunks/Flex.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1 @@
1
+ export { default } from './Grid';
@@ -0,0 +1,4 @@
1
+ import { G as f } from "../../.chunks/Grid.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1 @@
1
+ export { default } from './Input';
@@ -0,0 +1,4 @@
1
+ import { I as f } from "../../.chunks/Input.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,7 @@
1
+ export { default as Avatar } from './Avatar/Avatar';
2
+ export { default as AvatarWithImage } from './Avatar/AvatarWithImage';
3
+ export { default as Button } from './Button';
4
+ export { default as Divider } from './Divider';
5
+ export { default as Flex } from './Flex';
6
+ export { default as Grid } from './Grid';
7
+ export { default as Input } from './Input';
package/base/index.js ADDED
@@ -0,0 +1,16 @@
1
+ import { A as t } from "../.chunks/Avatar.js";
2
+ import { A as e } from "../.chunks/AvatarWithImage.js";
3
+ import { B as p } from "../.chunks/Button.js";
4
+ import { D as f } from "../.chunks/Divider.js";
5
+ import { F as i } from "../.chunks/Flex.js";
6
+ import { G as v } from "../.chunks/Grid.js";
7
+ import { I as d } from "../.chunks/Input.js";
8
+ export {
9
+ t as Avatar,
10
+ e as AvatarWithImage,
11
+ p as Button,
12
+ f as Divider,
13
+ i as Flex,
14
+ v as Grid,
15
+ d as Input
16
+ };
package/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export { Avatar, AvatarWithImage, Button, Divider, Flex, Grid } from './base';
2
+ export { AppBar, Nav, type NavProps, type NavItemProps } from './supercomposite';
3
+ export { AppContainer, BasicPage } from './templates';
package/index.js ADDED
@@ -0,0 +1,22 @@
1
+ import { A as a } from "./.chunks/Avatar.js";
2
+ import { A as e } from "./.chunks/AvatarWithImage.js";
3
+ import { B as m } from "./.chunks/Button.js";
4
+ import { D as x } from "./.chunks/Divider.js";
5
+ import { F as A } from "./.chunks/Flex.js";
6
+ import { G as B } from "./.chunks/Grid.js";
7
+ import { A as n } from "./.chunks/AppBar.js";
8
+ import { N as g } from "./.chunks/Nav.js";
9
+ import { A as F } from "./.chunks/AppContainer.js";
10
+ import { B as N } from "./.chunks/BasicPage.js";
11
+ export {
12
+ n as AppBar,
13
+ F as AppContainer,
14
+ a as Avatar,
15
+ e as AvatarWithImage,
16
+ N as BasicPage,
17
+ m as Button,
18
+ x as Divider,
19
+ A as Flex,
20
+ B as Grid,
21
+ g as Nav
22
+ };
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "jcicl",
3
+ "private": false,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "sideEffects": false,
7
+ "exports": {
8
+ ".": "./index.js",
9
+ "./**/*": "./**/*.js"
10
+ },
11
+ "module": "./index.js",
12
+ "types": "./index.d.ts",
13
+ "scripts": {
14
+ "start": "storybook dev -p 7007",
15
+ "build": "tsc -b && vite build",
16
+ "lint": "eslint .",
17
+ "lint:fix": "eslint . --fix",
18
+ "format": "prettier --check .",
19
+ "format:fix": "prettier --write .",
20
+ "storybook": "storybook dev -p 7007",
21
+ "build-storybook": "storybook build"
22
+ },
23
+ "dependencies": {
24
+ "@emotion/react": "^11.13.3",
25
+ "@emotion/styled": "^11.13.0",
26
+ "@fontsource/material-icons": "^5.1.0",
27
+ "@fontsource/roboto": "^5.1.0",
28
+ "@mui/icons-material": "^6.1.3",
29
+ "@mui/material": "^6.1.1"
30
+ },
31
+ "devDependencies": {
32
+ "@chromatic-com/storybook": "^1.9.0",
33
+ "@eslint/js": "^9.9.0",
34
+ "@rollup/plugin-babel": "^6.0.4",
35
+ "@rollup/plugin-commonjs": "^28.0.0",
36
+ "@rollup/plugin-json": "^6.1.0",
37
+ "@rollup/plugin-node-resolve": "^15.3.0",
38
+ "@rollup/plugin-terser": "^0.4.4",
39
+ "@rollup/plugin-typescript": "^12.1.0",
40
+ "@storybook/addon-actions": "^8.3.5",
41
+ "@storybook/addon-controls": "^8.3.5",
42
+ "@storybook/addon-docs": "^8.3.5",
43
+ "@storybook/addon-essentials": "^8.3.5",
44
+ "@storybook/addon-interactions": "^8.3.5",
45
+ "@storybook/addon-links": "^8.3.5",
46
+ "@storybook/addon-themes": "^8.3.5",
47
+ "@storybook/blocks": "^8.3.5",
48
+ "@storybook/react-docgen-typescript-plugin": "^1.0.1",
49
+ "@storybook/react-vite": "^8.3.5",
50
+ "@storybook/react": "^8.3.5",
51
+ "@storybook/test": "^8.3.5",
52
+ "@types/node": "^22.7.4",
53
+ "@types/react-dom": "^18.3.0",
54
+ "@types/react": "^18.3.11",
55
+ "@vitejs/plugin-react": "^4.3.1",
56
+ "eslint-config-prettier": "^9.1.0",
57
+ "eslint-plugin-react-hooks": "^5.1.0-rc.0",
58
+ "eslint-plugin-react-refresh": "^0.4.9",
59
+ "eslint-plugin-storybook": "^0.9.0",
60
+ "eslint": "^9.9.0",
61
+ "globals": "^15.9.0",
62
+ "postcss": "^8.4.47",
63
+ "prettier": "^3.3.3",
64
+ "react-docgen-typescript-plugin": "^1.0.8",
65
+ "react-dom": "^18.3.1",
66
+ "react": "^18.3.1",
67
+ "rollup-plugin-dts": "^6.1.1",
68
+ "rollup-plugin-filesize": "^10.0.0",
69
+ "rollup-plugin-peer-deps-external": "^2.2.4",
70
+ "rollup-plugin-postcss": "^4.0.2",
71
+ "storybook": "^8.3.5",
72
+ "typescript-eslint": "^8.0.1",
73
+ "typescript": "^5.6.2",
74
+ "vite-plugin-dts": "^4.2.3",
75
+ "vite": "^5.4.1"
76
+ },
77
+ "eslintConfig": {
78
+ "extends": [
79
+ "plugin:storybook/recommended"
80
+ ]
81
+ }
82
+ }
@@ -0,0 +1 @@
1
+ export { default, type AppBarProps } from './AppBar';
@@ -0,0 +1,4 @@
1
+ import { A as f } from "../../.chunks/AppBar.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1 @@
1
+ export { default, type AppHeaderProps } from './AppHeader';
@@ -0,0 +1,4 @@
1
+ import { A as f } from "../../.chunks/AppHeader.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1 @@
1
+ export { default, type NavItemProps } from './CompactNav';
@@ -0,0 +1,4 @@
1
+ import { C as f } from "../../.chunks/CompactNav.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,2 @@
1
+ export { default, type NavProps } from './Nav';
2
+ export { type NavItemProps } from './subcomponents/NavItem/types';
@@ -0,0 +1,4 @@
1
+ import { N as f } from "../../.chunks/Nav.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,3 @@
1
+ export { default as AppBar } from './AppBar';
2
+ export { default as AppHeader } from './AppHeader';
3
+ export { default as Nav, type NavProps, type NavItemProps } from './Nav';
@@ -0,0 +1,8 @@
1
+ import { A as a } from "../.chunks/AppBar.js";
2
+ import { A as e } from "../.chunks/AppHeader.js";
3
+ import { N as f } from "../.chunks/Nav.js";
4
+ export {
5
+ a as AppBar,
6
+ e as AppHeader,
7
+ f as Nav
8
+ };
@@ -0,0 +1 @@
1
+ export { default } from './AppContainer';
@@ -0,0 +1,4 @@
1
+ import { A as f } from "../../.chunks/AppContainer.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1 @@
1
+ export { default, type BasicPageProps } from './BasicPage';
@@ -0,0 +1,4 @@
1
+ import { B as f } from "../../.chunks/BasicPage.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,2 @@
1
+ export { default as AppContainer } from './AppContainer';
2
+ export { default as BasicPage } from './BasicPage';
@@ -0,0 +1,6 @@
1
+ import { A as r } from "../.chunks/AppContainer.js";
2
+ import { B as p } from "../.chunks/BasicPage.js";
3
+ export {
4
+ r as AppContainer,
5
+ p as BasicPage
6
+ };