@fgv/ts-res-ui-components 5.0.1-8 → 5.0.1

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.
@@ -0,0 +1,6 @@
1
+ export type { IOrchestratorState, IOrchestratorActions, IResolutionActions } from './types';
2
+ export type { Result } from '@fgv/ts-utils';
3
+ export type { JsonValue } from '@fgv/ts-json-base';
4
+ export { ImportView } from './components/views/ImportView';
5
+ export * from './index';
6
+ //# sourceMappingURL=index.browser.d.ts.map
@@ -0,0 +1,16 @@
1
+ // Domain-specific types are now available through their respective namespaces:
2
+ // - FilterTools: FilterState, FilterActions, FilterViewProps, FilterResult, FilteredResource
3
+ // - ResolutionTools: ResolutionState, ResolutionActions, ResolutionViewProps, ResolutionResult, CandidateInfo, ConditionEvaluationResult, EditedResourceInfo
4
+ // - ResourceTools: ProcessedResources, ExtendedProcessedResources, ResourceManagerState, ResourceEditorFactory, ResourceEditorResult, ResourceEditorProps, ResourceDetailData
5
+ // - ViewStateTools: ViewBaseProps, Message, MessagesWindowProps
6
+ // - ImportTools: ImportViewProps, ImportedFile, ImportedDirectory
7
+ // - TsResTools: SourceViewProps, CompiledViewProps
8
+ // - ZipTools: ImportViewProps and ZIP utilities
9
+ // - ConfigurationTools: ConfigurationViewProps
10
+ // - GridTools: GridViewProps, MultiGridViewProps, GridColumnDefinition, GridResourceSelector, GridDropdownOption, GridCellValidation
11
+ // - ImportTools: ImportedFile, ImportedDirectory
12
+ // Export views
13
+ export { ImportView } from './components/views/ImportView';
14
+ // Browser entry point - re-exports everything from main index
15
+ export * from './index';
16
+ //# sourceMappingURL=index.browser.js.map
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.53.3"
8
+ "packageVersion": "7.54.0"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fgv/ts-res-ui-components",
3
- "version": "5.0.1-8",
3
+ "version": "5.0.1",
4
4
  "description": "Reusable React components for ts-res resource visualization and management",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -23,12 +23,12 @@
23
23
  "@heroicons/react": "~2.2.0",
24
24
  "tslib": "^2.8.1",
25
25
  "json-edit-react": "~1.29.0",
26
- "@fgv/ts-res": "5.0.1-8",
27
- "@fgv/ts-utils": "5.0.1-8",
28
- "@fgv/ts-json": "5.0.1-8",
29
- "@fgv/ts-json-base": "5.0.1-8",
30
- "@fgv/ts-web-extras": "5.0.1-8",
31
- "@fgv/ts-extras": "5.0.1-8"
26
+ "@fgv/ts-res": "5.0.1",
27
+ "@fgv/ts-utils": "5.0.1",
28
+ "@fgv/ts-json": "5.0.1",
29
+ "@fgv/ts-extras": "5.0.1",
30
+ "@fgv/ts-json-base": "5.0.1",
31
+ "@fgv/ts-web-extras": "5.0.1"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "react": ">=18.0.0",
@@ -63,7 +63,21 @@
63
63
  "@microsoft/api-documenter": "^7.27.3",
64
64
  "@microsoft/api-extractor": "^7.53.3",
65
65
  "@testing-library/dom": "^10.4.0",
66
- "@fgv/ts-utils-jest": "5.0.1-8"
66
+ "@fgv/ts-utils-jest": "5.0.1",
67
+ "@fgv/heft-dual-rig": "0.1.0"
68
+ },
69
+ "exports": {
70
+ ".": {
71
+ "node": {
72
+ "import": "./lib/index.js",
73
+ "require": "./lib/index.js"
74
+ },
75
+ "default": {
76
+ "import": "./lib/index.browser.js",
77
+ "require": "./lib/index.browser.js"
78
+ },
79
+ "types": "lib/index.d.ts"
80
+ }
67
81
  },
68
82
  "scripts": {
69
83
  "build": "heft build --clean",