@tenancy.nz/reports 1.1.7 → 1.1.9
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/dist/cjs/index.cjs +4 -8
- package/dist/esm/index.js +4 -8
- package/package.json +5 -5
- /package/dist/cjs/{OwnerBookingReport.cjs → components/OwnerBookingReport.cjs} +0 -0
- /package/dist/cjs/{ReportFooter.cjs → components/ReportFooter.cjs} +0 -0
- /package/dist/cjs/{ReportHeader.cjs → components/ReportHeader.cjs} +0 -0
- /package/dist/cjs/{ViewingAnalyticsReport.cjs → components/ViewingAnalyticsReport.cjs} +0 -0
- /package/dist/esm/{OwnerBookingReport.js → components/OwnerBookingReport.js} +0 -0
- /package/dist/esm/{ReportFooter.js → components/ReportFooter.js} +0 -0
- /package/dist/esm/{ReportHeader.js → components/ReportHeader.js} +0 -0
- /package/dist/esm/{ViewingAnalyticsReport.js → components/ViewingAnalyticsReport.js} +0 -0
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var OwnerBookingReport = require('./OwnerBookingReport.cjs');
|
|
4
|
-
var ViewingAnalyticsReport = require('./ViewingAnalyticsReport.cjs');
|
|
5
|
-
var ReportFooter = require('./ReportFooter.cjs');
|
|
6
|
-
var ReportHeader = require('./ReportHeader.cjs');
|
|
7
|
-
require('react');
|
|
8
|
-
require('react-uid');
|
|
9
|
-
require('@tenancy.nz/ui');
|
|
10
|
-
require('@tenancy.nz/feature-ui');
|
|
3
|
+
var OwnerBookingReport = require('./components/OwnerBookingReport.cjs');
|
|
4
|
+
var ViewingAnalyticsReport = require('./components/ViewingAnalyticsReport.cjs');
|
|
5
|
+
var ReportFooter = require('./components/ReportFooter.cjs');
|
|
6
|
+
var ReportHeader = require('./components/ReportHeader.cjs');
|
|
11
7
|
|
|
12
8
|
|
|
13
9
|
|
package/dist/esm/index.js
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
export { default as OwnerBookingReport } from './OwnerBookingReport.js';
|
|
2
|
-
export { default as ViewingAnalyticsReport } from './ViewingAnalyticsReport.js';
|
|
3
|
-
export { default as ReportFooter } from './ReportFooter.js';
|
|
4
|
-
export { default as ReportHeader } from './ReportHeader.js';
|
|
5
|
-
import 'react';
|
|
6
|
-
import 'react-uid';
|
|
7
|
-
import '@tenancy.nz/ui';
|
|
8
|
-
import '@tenancy.nz/feature-ui';
|
|
1
|
+
export { default as OwnerBookingReport } from './components/OwnerBookingReport.js';
|
|
2
|
+
export { default as ViewingAnalyticsReport } from './components/ViewingAnalyticsReport.js';
|
|
3
|
+
export { default as ReportFooter } from './components/ReportFooter.js';
|
|
4
|
+
export { default as ReportHeader } from './components/ReportHeader.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tenancy.nz/reports",
|
|
3
3
|
"description": "React UI reporting components.",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.9",
|
|
5
5
|
"author": "TPS <https://www.tenancy.co.nz>",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"type": "module",
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
16
16
|
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
17
|
-
"@tenancy.nz/
|
|
18
|
-
"@tenancy.nz/ui": "1.1.
|
|
17
|
+
"@tenancy.nz/ui": "1.1.9",
|
|
18
|
+
"@tenancy.nz/feature-ui": "1.1.9"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@tenancy.nz/
|
|
22
|
-
"@tenancy.nz/ui": "1.1.
|
|
21
|
+
"@tenancy.nz/ui": "1.1.9",
|
|
22
|
+
"@tenancy.nz/feature-ui": "1.1.9"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"react-uid": "^2.4.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|