jcicl 0.0.31 → 0.0.33
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/README.md +6 -0
- package/base/ListButton/index.d.ts +1 -0
- package/base/ListButton/index.js +4 -0
- package/base/index.d.ts +1 -0
- package/base/index.js +7 -5
- package/composite/List/index.d.ts +0 -1
- package/composite/List/index.js +2 -4
- package/composite/index.js +4 -5
- package/index.d.ts +1 -1
- package/index.js +22 -21
- package/package.json +1 -1
- /package/{composite/List → base/ListButton}/ListButton.d.ts +0 -0
- /package/{composite/List → base/ListButton}/ListButton.js +0 -0
package/README.md
CHANGED
|
@@ -96,3 +96,9 @@ The library will automatically publish a new minor version on merges to master.
|
|
|
96
96
|
`npm run bpMinor` for minor versions (`0.x.0`), and `npm run bpMajor` for major versions (`x.0.0`)
|
|
97
97
|
|
|
98
98
|
For more details on scripting commands, please see the [npm CLI documentation](https://docs.npmjs.com/cli/v9/commands)
|
|
99
|
+
|
|
100
|
+
### Deploying storybook
|
|
101
|
+
|
|
102
|
+
TODO: Automate
|
|
103
|
+
|
|
104
|
+
Build the library with `npm run storybook`, then copy all of the files in `storybook-static` into `windu\E:\ComponentLibrary`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default, type ListButtonProps } from './ListButton';
|
package/base/index.d.ts
CHANGED
package/base/index.js
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
import { default as
|
|
1
|
+
import { default as o } from "./Avatar/Avatar.js";
|
|
2
2
|
import { AvatarWithImage as a } from "./AvatarWithImage/AvatarWithImage.js";
|
|
3
3
|
import { Button as m } from "./Button/Button.js";
|
|
4
4
|
import { Divider as x } from "./Divider/Divider.js";
|
|
5
|
-
import { default as
|
|
5
|
+
import { default as d } from "./Flex/Flex.js";
|
|
6
6
|
import { Grid as l } from "./Grid/Grid.js";
|
|
7
7
|
import { Input as n } from "./Input/Input.js";
|
|
8
|
+
import { default as A } from "./ListButton/ListButton.js";
|
|
8
9
|
export {
|
|
9
|
-
|
|
10
|
+
o as Avatar,
|
|
10
11
|
a as AvatarWithImage,
|
|
11
12
|
m as Button,
|
|
12
13
|
x as Divider,
|
|
13
|
-
|
|
14
|
+
d as Flex,
|
|
14
15
|
l as Grid,
|
|
15
|
-
n as Input
|
|
16
|
+
n as Input,
|
|
17
|
+
A as ListButton
|
|
16
18
|
};
|
package/composite/List/index.js
CHANGED
package/composite/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import "./
|
|
3
|
-
import { default as f } from "./WithLabel/WithLabel.js";
|
|
1
|
+
import { default as e } from "./List/List.js";
|
|
2
|
+
import { default as o } from "./WithLabel/WithLabel.js";
|
|
4
3
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
e as List,
|
|
5
|
+
o as WithLabel
|
|
7
6
|
};
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Avatar, AvatarWithImage, Button, Divider, Flex, Grid } from './base';
|
|
1
|
+
export { Avatar, AvatarWithImage, Button, Divider, Flex, Grid, ListButton } from './base';
|
|
2
2
|
export { List, WithLabel } from './composite';
|
|
3
3
|
export { AppHeader, Nav } from './supercomposite';
|
|
4
4
|
export { AppContainer } from './templates';
|
package/index.js
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import { AvatarWithImage as
|
|
3
|
-
import { Button as
|
|
4
|
-
import { Divider as
|
|
5
|
-
import { default as
|
|
6
|
-
import { Grid as
|
|
1
|
+
import { default as e } from "./base/Avatar/Avatar.js";
|
|
2
|
+
import { AvatarWithImage as f } from "./base/AvatarWithImage/AvatarWithImage.js";
|
|
3
|
+
import { Button as m } from "./base/Button/Button.js";
|
|
4
|
+
import { Divider as d } from "./base/Divider/Divider.js";
|
|
5
|
+
import { default as l } from "./base/Flex/Flex.js";
|
|
6
|
+
import { Grid as u } from "./base/Grid/Grid.js";
|
|
7
7
|
import "./base/Input/Input.js";
|
|
8
|
-
import { default as
|
|
9
|
-
import "./composite/List/
|
|
10
|
-
import { default as
|
|
8
|
+
import { default as v } from "./base/ListButton/ListButton.js";
|
|
9
|
+
import { default as L } from "./composite/List/List.js";
|
|
10
|
+
import { default as B } from "./composite/WithLabel/WithLabel.js";
|
|
11
11
|
import { default as b } from "./supercomposite/AppHeader/AppHeader.js";
|
|
12
|
-
import { Nav as
|
|
13
|
-
import { default as
|
|
12
|
+
import { Nav as C } from "./supercomposite/Nav/Nav.js";
|
|
13
|
+
import { default as F } from "./templates/AppContainer/AppContainer.js";
|
|
14
14
|
export {
|
|
15
|
-
|
|
15
|
+
F as AppContainer,
|
|
16
16
|
b as AppHeader,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
17
|
+
e as Avatar,
|
|
18
|
+
f as AvatarWithImage,
|
|
19
|
+
m as Button,
|
|
20
|
+
d as Divider,
|
|
21
|
+
l as Flex,
|
|
22
|
+
u as Grid,
|
|
23
|
+
L as List,
|
|
24
|
+
v as ListButton,
|
|
25
|
+
C as Nav,
|
|
26
|
+
B as WithLabel
|
|
26
27
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jcicl",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.33",
|
|
5
5
|
"description": "Component library for the websites of Johnson County Iowa",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary?path=%2FREADME.md&version=GBmaster",
|
|
File without changes
|
|
File without changes
|