@xy-planning-network/trees 0.4.0-rc-6 → 0.4.0-rc-7

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 (39) hide show
  1. package/package.json +5 -4
  2. package/{dist → types}/api/base.d.ts +0 -0
  3. package/{dist/types → types}/components.d.ts +3 -1
  4. package/{dist → types}/entry.d.ts +0 -0
  5. package/{dist/types → types}/global.d.ts +0 -0
  6. package/{dist → types}/helpers/Uniques.d.ts +0 -0
  7. package/types/index.d.ts +3 -0
  8. /package/{dist → types}/lib-components/forms/BaseInput.vue.d.ts +0 -0
  9. /package/{dist → types}/lib-components/forms/Checkbox.vue.d.ts +0 -0
  10. /package/{dist → types}/lib-components/forms/DateRangePicker.vue.d.ts +0 -0
  11. /package/{dist → types}/lib-components/forms/InputHelp.vue.d.ts +0 -0
  12. /package/{dist → types}/lib-components/forms/InputLabel.vue.d.ts +0 -0
  13. /package/{dist → types}/lib-components/forms/MultiCheckboxes.vue.d.ts +0 -0
  14. /package/{dist → types}/lib-components/forms/Radio.vue.d.ts +0 -0
  15. /package/{dist → types}/lib-components/forms/Select.vue.d.ts +0 -0
  16. /package/{dist → types}/lib-components/forms/TextArea.vue.d.ts +0 -0
  17. /package/{dist → types}/lib-components/forms/Toggle.vue.d.ts +0 -0
  18. /package/{dist → types}/lib-components/forms/YesOrNoRadio.vue.d.ts +0 -0
  19. /package/{dist → types}/lib-components/index.d.ts +0 -0
  20. /package/{dist → types}/lib-components/layout/DateFilter.vue.d.ts +0 -0
  21. /package/{dist → types}/lib-components/layout/SidebarLayout.vue.d.ts +0 -0
  22. /package/{dist → types}/lib-components/layout/StackedLayout.vue.d.ts +0 -0
  23. /package/{dist → types}/lib-components/lists/Cards.vue.d.ts +0 -0
  24. /package/{dist → types}/lib-components/lists/DetailList.vue.d.ts +0 -0
  25. /package/{dist → types}/lib-components/lists/DownloadCell.vue.d.ts +0 -0
  26. /package/{dist → types}/lib-components/lists/StaticTable.vue.d.ts +0 -0
  27. /package/{dist → types}/lib-components/lists/Table.vue.d.ts +0 -0
  28. /package/{dist → types}/lib-components/navigation/ActionsDropdown.vue.d.ts +0 -0
  29. /package/{dist → types}/lib-components/navigation/Paginator.vue.d.ts +0 -0
  30. /package/{dist → types}/lib-components/navigation/Steps.vue.d.ts +0 -0
  31. /package/{dist → types}/lib-components/navigation/Tabs.vue.d.ts +0 -0
  32. /package/{dist → types}/lib-components/overlays/ContentModal.vue.d.ts +0 -0
  33. /package/{dist → types}/lib-components/overlays/Flash.vue.d.ts +0 -0
  34. /package/{dist → types}/lib-components/overlays/Modal.vue.d.ts +0 -0
  35. /package/{dist → types}/lib-components/overlays/Slideover.vue.d.ts +0 -0
  36. /package/{dist → types}/lib-components/overlays/Spinner.vue.d.ts +0 -0
  37. /package/{dist/types → types}/nav.d.ts +0 -0
  38. /package/{dist/types → types}/table.d.ts +0 -0
  39. /package/{dist/types → types}/users.d.ts +0 -0
package/package.json CHANGED
@@ -1,19 +1,20 @@
1
1
  {
2
2
  "name": "@xy-planning-network/trees",
3
- "version": "0.4.0-rc-6",
3
+ "version": "0.4.0-rc-7",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "repository": "github:xy-planning-network/trees",
7
7
  "files": [
8
8
  "config/*",
9
9
  "dist/*",
10
- "src/**/*.css"
10
+ "src/**/*.css",
11
+ "types/*"
11
12
  ],
12
13
  "main": "dist/trees.es.js",
13
14
  "module": "dist/trees.es.js",
14
15
  "style": "src/index.css",
15
16
  "unpkg": "dist/trees.umd.js",
16
- "types": "dist/entry.d.ts",
17
+ "types": "types/entry.d.ts",
17
18
  "sideEffects": [
18
19
  "*.css",
19
20
  "*.vue"
@@ -22,7 +23,7 @@
22
23
  "dev": "vite",
23
24
  "build": "vite build && vue-tsc -p src && npm run copy:types && tsc-alias -p src/tsconfig.json",
24
25
  "build:docs": "vue-tsc -p dev --noEmit && vite build --config vite.docs.config.ts",
25
- "copy:types": "copyfiles -f ./src/types/**/*.d.ts ./dist/types",
26
+ "copy:types": "copyfiles -f ./src/types/**/*.d.ts ./types",
26
27
  "lint": "eslint --ext .js,.ts,.vue src",
27
28
  "lint:fix": "eslint --fix --ext .js,.ts,.vue src dev && prettier -w -u src dev",
28
29
  "preview": "vite preview --config vite.docs.config.ts"
File without changes
@@ -1,4 +1,6 @@
1
- import { TreesComponents } from "../lib-components"
1
+ import { TreesComponents } from "./lib-components"
2
+
3
+ export default TreesComponents
2
4
 
3
5
  declare module "@vue/runtime-core" {
4
6
  // eslint-disable-next-line @typescript-eslint/no-empty-interface
File without changes
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ export * as NavTypes from "./nav"
2
+ export * as TableTypes from "./table"
3
+ export * as UserTypes from "./users"
File without changes
File without changes
File without changes
File without changes