@sproutsocial/seeds-react-tree 0.4.13 → 0.4.15
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +20 -0
- package/README.md +2 -2
- package/package.json +8 -8
- package/src/MultiTreeSearchableSelect.stories.tsx +1 -1
- package/src/SingleTreeSearchableSelect.stories.tsx +1 -1
- package/src/Tree.stories.tsx +1 -1
- package/src/TreeCombobox.stories.tsx +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -8,14 +8,14 @@ $ tsup --dts && cp src/tree.css dist/tree.css
|
|
|
8
8
|
[34mCLI[39m Cleaning output folder
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist/index.js [22m[32m35.40 KB[39m
|
|
12
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m75.91 KB[39m
|
|
13
|
-
[32mCJS[39m ⚡️ Build success in 29ms
|
|
14
11
|
[32mESM[39m [1mdist/esm/index.js [22m[32m32.47 KB[39m
|
|
15
12
|
[32mESM[39m [1mdist/esm/index.js.map [22m[32m75.52 KB[39m
|
|
16
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 24ms
|
|
14
|
+
[32mCJS[39m [1mdist/index.js [22m[32m35.40 KB[39m
|
|
15
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m75.91 KB[39m
|
|
16
|
+
[32mCJS[39m ⚡️ Build success in 54ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 1111ms
|
|
19
19
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m7.37 KB[39m
|
|
20
20
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m7.37 KB[39m
|
|
21
|
-
Done in
|
|
21
|
+
Done in 2.26s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @sproutsocial/seeds-react-tree
|
|
2
2
|
|
|
3
|
+
## 0.4.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @sproutsocial/seeds-react-theme@4.5.1
|
|
8
|
+
- @sproutsocial/seeds-react-icon@2.5.2
|
|
9
|
+
- @sproutsocial/seeds-react-mixins@4.3.16
|
|
10
|
+
- @sproutsocial/seeds-react-popout@2.5.23
|
|
11
|
+
|
|
12
|
+
## 0.4.14
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [e38d258]
|
|
17
|
+
- @sproutsocial/seeds-react-theme@4.5.0
|
|
18
|
+
- @sproutsocial/seeds-react-system-props@3.2.1
|
|
19
|
+
- @sproutsocial/seeds-react-icon@2.5.1
|
|
20
|
+
- @sproutsocial/seeds-react-mixins@4.3.15
|
|
21
|
+
- @sproutsocial/seeds-react-popout@2.5.22
|
|
22
|
+
|
|
3
23
|
## 0.4.13
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -4,9 +4,9 @@ A WAI-ARIA treeview component for the Seeds design system. Provides a primitive
|
|
|
4
4
|
`Tree` + `TreeItem` API plus a `TreeCombobox` wrapper that pairs the tree with
|
|
5
5
|
a `role="combobox"` input following the WAI-ARIA combobox pattern.
|
|
6
6
|
|
|
7
|
-
>
|
|
7
|
+
> Exported under the `./base` subpath
|
|
8
8
|
> (`@sproutsocial/seeds-react-tree/base`) and shown in Storybook under
|
|
9
|
-
> "
|
|
9
|
+
> "Components / Tree".
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/seeds-react-tree",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.15",
|
|
4
4
|
"description": "Seeds React Tree (WAI-ARIA treeview)",
|
|
5
5
|
"author": "Sprout Social, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"test:watch": "jest --watch --coverage=false"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@sproutsocial/seeds-react-icon": "^2.5.
|
|
35
|
-
"@sproutsocial/seeds-react-mixins": "^4.3.
|
|
36
|
-
"@sproutsocial/seeds-react-popout": "^2.5.
|
|
37
|
-
"@sproutsocial/seeds-react-system-props": "^3.2.
|
|
38
|
-
"@sproutsocial/seeds-react-theme": "^4.
|
|
34
|
+
"@sproutsocial/seeds-react-icon": "^2.5.2",
|
|
35
|
+
"@sproutsocial/seeds-react-mixins": "^4.3.16",
|
|
36
|
+
"@sproutsocial/seeds-react-popout": "^2.5.23",
|
|
37
|
+
"@sproutsocial/seeds-react-system-props": "^3.2.1",
|
|
38
|
+
"@sproutsocial/seeds-react-theme": "^4.5.1",
|
|
39
39
|
"@sproutsocial/seeds-react-utilities": "^4.3.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@sproutsocial/eslint-config-seeds": "*",
|
|
43
|
-
"@sproutsocial/seeds-react-button": "^2.3.
|
|
44
|
-
"@sproutsocial/seeds-react-popout": "^2.5.
|
|
43
|
+
"@sproutsocial/seeds-react-button": "^2.3.9",
|
|
44
|
+
"@sproutsocial/seeds-react-popout": "^2.5.23",
|
|
45
45
|
"@sproutsocial/seeds-react-testing-library": "*",
|
|
46
46
|
"@sproutsocial/seeds-testing": "*",
|
|
47
47
|
"@sproutsocial/seeds-tsconfig": "*",
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
} from "./storyData";
|
|
12
12
|
|
|
13
13
|
const meta: Meta<typeof MultiTreeSearchableSelect> = {
|
|
14
|
-
title: "
|
|
14
|
+
title: "Components/Tree/MultiTreeSearchableSelect",
|
|
15
15
|
component: MultiTreeSearchableSelect,
|
|
16
16
|
};
|
|
17
17
|
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
} from "./storyData";
|
|
12
12
|
|
|
13
13
|
const meta: Meta<typeof SingleTreeSearchableSelect> = {
|
|
14
|
-
title: "
|
|
14
|
+
title: "Components/Tree/SingleTreeSearchableSelect",
|
|
15
15
|
component: SingleTreeSearchableSelect,
|
|
16
16
|
};
|
|
17
17
|
|
package/src/Tree.stories.tsx
CHANGED