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.
- package/.chunks/AppBar.js +359 -0
- package/.chunks/AppContainer.js +71 -0
- package/.chunks/AppHeader.js +31 -0
- package/.chunks/Avatar.js +38 -0
- package/.chunks/AvatarWithImage.js +36 -0
- package/.chunks/BasicPage.js +31 -0
- package/.chunks/Button.js +486 -0
- package/.chunks/ButtonBase.js +874 -0
- package/.chunks/CompactNav.js +70 -0
- package/.chunks/Divider.js +311 -0
- package/.chunks/Flex.js +21 -0
- package/.chunks/Grid.js +18 -0
- package/.chunks/Input.js +4392 -0
- package/.chunks/Menu.js +3160 -0
- package/.chunks/Nav.js +2138 -0
- package/.chunks/TransitionGroupContext.js +342 -0
- package/.chunks/createSimplePaletteValueFilter.js +17 -0
- package/.chunks/createSvgIcon.js +249 -0
- package/.chunks/emotion-styled.browser.esm.js +1032 -0
- package/.chunks/jocologo.js +4 -0
- package/.chunks/memoTheme.js +15 -0
- package/.chunks/theme.js +3314 -0
- package/base/Avatar/Avatar/index.d.ts +1 -0
- package/base/Avatar/Avatar/index.js +4 -0
- package/base/Avatar/AvatarWithImage/index.d.ts +1 -0
- package/base/Avatar/AvatarWithImage/index.js +4 -0
- package/base/Avatar/index.d.ts +2 -0
- package/base/Avatar/index.js +6 -0
- package/base/Button/index.d.ts +1 -0
- package/base/Button/index.js +4 -0
- package/base/Divider/index.d.ts +1 -0
- package/base/Divider/index.js +4 -0
- package/base/Flex/index.d.ts +1 -0
- package/base/Flex/index.js +4 -0
- package/base/Grid/index.d.ts +1 -0
- package/base/Grid/index.js +4 -0
- package/base/Input/index.d.ts +1 -0
- package/base/Input/index.js +4 -0
- package/base/index.d.ts +7 -0
- package/base/index.js +16 -0
- package/index.d.ts +3 -0
- package/index.js +22 -0
- package/package.json +82 -0
- package/supercomposite/AppBar/index.d.ts +1 -0
- package/supercomposite/AppBar/index.js +4 -0
- package/supercomposite/AppHeader/index.d.ts +1 -0
- package/supercomposite/AppHeader/index.js +4 -0
- package/supercomposite/CompactNav/index.d.ts +1 -0
- package/supercomposite/CompactNav/index.js +4 -0
- package/supercomposite/Nav/index.d.ts +2 -0
- package/supercomposite/Nav/index.js +4 -0
- package/supercomposite/index.d.ts +3 -0
- package/supercomposite/index.js +8 -0
- package/templates/AppContainer/index.d.ts +1 -0
- package/templates/AppContainer/index.js +4 -0
- package/templates/BasicPage/index.d.ts +1 -0
- package/templates/BasicPage/index.js +4 -0
- package/templates/index.d.ts +2 -0
- package/templates/index.js +6 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Avatar';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './AvatarWithImage.tsx';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Button';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Divider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Flex';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Grid';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Input';
|
package/base/index.d.ts
ADDED
|
@@ -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
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 @@
|
|
|
1
|
+
export { default, type AppHeaderProps } from './AppHeader';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default, type NavItemProps } from './CompactNav';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './AppContainer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default, type BasicPageProps } from './BasicPage';
|