@icos-desktop/react-components 0.1.19 → 0.1.20

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/build/index.d.ts CHANGED
@@ -101,18 +101,9 @@ interface API$1 {
101
101
  queryBuildingGeneralInfo: string;
102
102
  }
103
103
 
104
- type Sense = {
105
- regionName: string;
106
- houseName: string;
107
- code: string;
108
- };
109
104
  interface RegionDetailProps {
110
105
  api?: API$1;
111
- sense: Sense;
112
- peopleData?: {
113
- name: string;
114
- value: string | number;
115
- }[];
106
+ code: string;
116
107
  handleHouse?: (id: string) => void;
117
108
  }
118
109