@xy-planning-network/trees 0.7.0-rc-3 → 0.7.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/README.md +2 -2
- package/config/prettier.js +1 -0
- package/config/{tailwind.config.ts → tailwind.config.js} +4 -3
- package/config/theme/colors.ts +0 -3
- package/config/theme/fontFamily.ts +0 -1
- package/config/theme/index.ts +3 -3
- package/dist/trees.es.js +4091 -3573
- package/dist/trees.umd.js +8 -7
- package/package.json +2 -5
- package/src/lib-components/indicators/XYSpinner.vue +33 -4
- package/src/lib-components/overlays/Spinner.vue +2 -2
- package/types/lib-components/lists/StaticTable.vue.d.ts +0 -21
- package/types/lib-components/lists/StaticTableActionSlot.vue.d.ts +0 -27
- package/types/lib-components/lists/Table.vue.d.ts +0 -39
- package/types/lib-components/navigation/ActionsDropdownCallback.vue.d.ts +0 -18
- package/types/lib-components/navigation/ActionsDropdownEmit.vue.d.ts +0 -22
package/README.md
CHANGED
|
@@ -63,8 +63,8 @@ Additional peer dependecies will be installed by NPM. If you are using NPM < 7 y
|
|
|
63
63
|
|
|
64
64
|
```js
|
|
65
65
|
/* eslint-env node */
|
|
66
|
-
|
|
67
|
-
extends: "./node_modules/@xy-planning-network/trees/config/eslint.
|
|
66
|
+
module.exports = {
|
|
67
|
+
extends: "./node_modules/@xy-planning-network/trees/config/eslint.js",
|
|
68
68
|
}
|
|
69
69
|
```
|
|
70
70
|
|
package/config/prettier.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
const path = require("path")
|
|
3
|
+
const treesTheme = require("./theme")
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+
module.exports = {
|
|
5
6
|
content: [
|
|
6
7
|
path.resolve(__dirname, "../src/lib-components/**/*.vue"),
|
|
7
8
|
path.resolve(__dirname, "../src/composables/**/*.ts"),
|
package/config/theme/colors.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import colors from "tailwindcss/colors"
|
|
2
|
-
|
|
3
1
|
export const brandColors = {
|
|
4
2
|
blue: {
|
|
5
3
|
50: "#C9E4F6",
|
|
@@ -41,7 +39,6 @@ export const brandColors = {
|
|
|
41
39
|
}
|
|
42
40
|
|
|
43
41
|
export default {
|
|
44
|
-
gray: colors["neutral"], // adopt Tailwind - Neutral as the primary gray palette
|
|
45
42
|
"xy-blue": {
|
|
46
43
|
DEFAULT: brandColors["blue"][600],
|
|
47
44
|
...brandColors["blue"],
|
package/config/theme/index.ts
CHANGED