@layerfi/components 0.1.129 → 0.1.130
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 +11244 -7524
- package/dist/esm/index.mjs +5835 -3850
- package/dist/index.css +8657 -8663
- package/dist/index.d.ts +4 -4
- package/package.json +4 -5
package/dist/index.d.ts
CHANGED
|
@@ -1118,6 +1118,8 @@ declare type TimeRangePickerConfig = {
|
|
|
1118
1118
|
csvMoneyFormat?: MoneyFormat;
|
|
1119
1119
|
};
|
|
1120
1120
|
|
|
1121
|
+
export declare const TimeTracking: ({ showTitle, onReportsClick, stringOverrides }: TimeTrackingProps) => JSX_2.Element;
|
|
1122
|
+
|
|
1121
1123
|
declare interface TimeTrackingProps {
|
|
1122
1124
|
showTitle?: boolean;
|
|
1123
1125
|
onReportsClick?: () => void;
|
|
@@ -1140,6 +1142,8 @@ declare type UnifiedReportProps = {
|
|
|
1140
1142
|
dateSelectionMode?: DateSelectionMode;
|
|
1141
1143
|
};
|
|
1142
1144
|
|
|
1145
|
+
export declare const UnifiedReports: ({ dateSelectionMode }: UnifiedReportProps) => JSX_2.Element;
|
|
1146
|
+
|
|
1143
1147
|
declare type UnknownEnumValue = string & Record<never, never>;
|
|
1144
1148
|
|
|
1145
1149
|
export declare const unstable_MileageSummaryCard: () => JSX_2.Element;
|
|
@@ -1150,10 +1154,6 @@ export declare const unstable_MileageTracking: ({ showTitle }: {
|
|
|
1150
1154
|
|
|
1151
1155
|
export declare const unstable_TaxEstimates: ({ onClickReviewTransactions: onReviewClicked }: TaxEstimatesProps) => JSX_2.Element;
|
|
1152
1156
|
|
|
1153
|
-
export declare const unstable_TimeTracking: ({ showTitle, onReportsClick, stringOverrides }: TimeTrackingProps) => JSX_2.Element;
|
|
1154
|
-
|
|
1155
|
-
export declare const unstable_UnifiedReports: ({ dateSelectionMode }: UnifiedReportProps) => JSX_2.Element;
|
|
1156
|
-
|
|
1157
1157
|
export declare const useLayerContext: () => LayerContextShape;
|
|
1158
1158
|
|
|
1159
1159
|
declare type Variants = Partial<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@layerfi/components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.130",
|
|
4
4
|
"description": "Layer React Components",
|
|
5
5
|
"main": "dist/cjs/index.cjs",
|
|
6
6
|
"module": "dist/esm/index.mjs",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@types/node": "^24.9.0",
|
|
62
62
|
"@types/react": "^18.2.0",
|
|
63
63
|
"@types/react-dom": "^18.2.0",
|
|
64
|
-
"@vitejs/plugin-react": "^
|
|
64
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
65
65
|
"chokidar-cli": "^3.0.0",
|
|
66
66
|
"eslint": "^9.26.0",
|
|
67
67
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
@@ -85,9 +85,8 @@
|
|
|
85
85
|
"tsx": "^4.20.6",
|
|
86
86
|
"typescript": "^5.8.3",
|
|
87
87
|
"typescript-eslint": "^8.32.0",
|
|
88
|
-
"vite": "
|
|
89
|
-
"vite-plugin-dts": "^
|
|
90
|
-
"vite-tsconfig-paths": "^5.1.4"
|
|
88
|
+
"vite": "^8.0.10",
|
|
89
|
+
"vite-plugin-dts": "^5.0.0"
|
|
91
90
|
},
|
|
92
91
|
"lint-staged": {
|
|
93
92
|
"*.{css,scss}": "stylelint --fix"
|