Added Statistics calculation
Statistics now show calculated values
This commit is contained in:
parent
fe87374e47
commit
fc0f69dacb
2147 changed files with 141321 additions and 39 deletions
64
node_modules/@mui/x-date-pickers/esm/AdapterDateFnsBase/AdapterDateFnsBase.d.ts
generated
vendored
Normal file
64
node_modules/@mui/x-date-pickers/esm/AdapterDateFnsBase/AdapterDateFnsBase.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
import { MakeRequired } from '@mui/x-internals/types';
|
||||
import { AdapterFormats, AdapterOptions, DateBuilderReturnType, FieldFormatTokenMap, MuiPickersAdapter } from "../models/index.js";
|
||||
type DateFnsLocaleBase = {
|
||||
formatLong: {
|
||||
date: (...args: Array<any>) => any;
|
||||
time: (...args: Array<any>) => any;
|
||||
dateTime: (...args: Array<any>) => any;
|
||||
};
|
||||
code?: string;
|
||||
};
|
||||
type DateFnsAdapterBaseOptions<DateFnsLocale extends DateFnsLocaleBase> = MakeRequired<AdapterOptions<DateFnsLocale, never>, 'locale'> & {
|
||||
longFormatters: Record<'p' | 'P', (token: string, formatLong: DateFnsLocaleBase['formatLong']) => string>;
|
||||
lib?: string;
|
||||
};
|
||||
/**
|
||||
* Based on `@date-io/date-fns`
|
||||
*
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2017 Dmitriy Kovalenko
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
export declare class AdapterDateFnsBase<DateFnsLocale extends DateFnsLocaleBase> implements Pick<MuiPickersAdapter<DateFnsLocale>, 'date' | 'getInvalidDate' | 'getTimezone' | 'setTimezone' | 'toJsDate' | 'getCurrentLocaleCode' | 'is12HourCycleInCurrentLocale' | 'expandFormat' | 'formatNumber'> {
|
||||
isMUIAdapter: boolean;
|
||||
isTimezoneCompatible: boolean;
|
||||
lib: string;
|
||||
locale: DateFnsLocale;
|
||||
formats: AdapterFormats;
|
||||
formatTokenMap: FieldFormatTokenMap;
|
||||
escapedCharacters: {
|
||||
start: string;
|
||||
end: string;
|
||||
};
|
||||
longFormatters: DateFnsAdapterBaseOptions<DateFnsLocale>['longFormatters'];
|
||||
constructor(props: DateFnsAdapterBaseOptions<DateFnsLocale>);
|
||||
date: <T extends string | null | undefined>(value?: T) => DateBuilderReturnType<T>;
|
||||
getInvalidDate: () => Date;
|
||||
getTimezone: () => string;
|
||||
setTimezone: (value: Date) => Date;
|
||||
toJsDate: (value: Date) => Date;
|
||||
getCurrentLocaleCode: () => string;
|
||||
is12HourCycleInCurrentLocale: () => boolean;
|
||||
expandFormat: (format: string) => string;
|
||||
formatNumber: (numberToFormat: string) => string;
|
||||
getDayOfWeek: (value: Date) => number;
|
||||
}
|
||||
export {};
|
||||
286
node_modules/@mui/x-date-pickers/esm/AdapterDateFnsBase/AdapterDateFnsBase.js
generated
vendored
Normal file
286
node_modules/@mui/x-date-pickers/esm/AdapterDateFnsBase/AdapterDateFnsBase.js
generated
vendored
Normal file
|
|
@ -0,0 +1,286 @@
|
|||
import _extends from "@babel/runtime/helpers/esm/extends";
|
||||
const formatTokenMap = {
|
||||
// Year
|
||||
y: {
|
||||
sectionType: 'year',
|
||||
contentType: 'digit',
|
||||
maxLength: 4
|
||||
},
|
||||
yy: 'year',
|
||||
yyy: {
|
||||
sectionType: 'year',
|
||||
contentType: 'digit',
|
||||
maxLength: 4
|
||||
},
|
||||
yyyy: 'year',
|
||||
// Month
|
||||
M: {
|
||||
sectionType: 'month',
|
||||
contentType: 'digit',
|
||||
maxLength: 2
|
||||
},
|
||||
MM: 'month',
|
||||
MMMM: {
|
||||
sectionType: 'month',
|
||||
contentType: 'letter'
|
||||
},
|
||||
MMM: {
|
||||
sectionType: 'month',
|
||||
contentType: 'letter'
|
||||
},
|
||||
L: {
|
||||
sectionType: 'month',
|
||||
contentType: 'digit',
|
||||
maxLength: 2
|
||||
},
|
||||
LL: 'month',
|
||||
LLL: {
|
||||
sectionType: 'month',
|
||||
contentType: 'letter'
|
||||
},
|
||||
LLLL: {
|
||||
sectionType: 'month',
|
||||
contentType: 'letter'
|
||||
},
|
||||
// Day of the month
|
||||
d: {
|
||||
sectionType: 'day',
|
||||
contentType: 'digit',
|
||||
maxLength: 2
|
||||
},
|
||||
dd: 'day',
|
||||
do: {
|
||||
sectionType: 'day',
|
||||
contentType: 'digit-with-letter'
|
||||
},
|
||||
// Day of the week
|
||||
E: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
EE: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
EEE: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
EEEE: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
EEEEE: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
i: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'digit',
|
||||
maxLength: 1
|
||||
},
|
||||
ii: 'weekDay',
|
||||
iii: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
iiii: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
// eslint-disable-next-line id-denylist
|
||||
e: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'digit',
|
||||
maxLength: 1
|
||||
},
|
||||
ee: 'weekDay',
|
||||
eee: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
eeee: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
eeeee: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
eeeeee: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
c: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'digit',
|
||||
maxLength: 1
|
||||
},
|
||||
cc: 'weekDay',
|
||||
ccc: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
cccc: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
ccccc: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
cccccc: {
|
||||
sectionType: 'weekDay',
|
||||
contentType: 'letter'
|
||||
},
|
||||
// Meridiem
|
||||
a: 'meridiem',
|
||||
aa: 'meridiem',
|
||||
aaa: 'meridiem',
|
||||
// Hours
|
||||
H: {
|
||||
sectionType: 'hours',
|
||||
contentType: 'digit',
|
||||
maxLength: 2
|
||||
},
|
||||
HH: 'hours',
|
||||
h: {
|
||||
sectionType: 'hours',
|
||||
contentType: 'digit',
|
||||
maxLength: 2
|
||||
},
|
||||
hh: 'hours',
|
||||
// Minutes
|
||||
m: {
|
||||
sectionType: 'minutes',
|
||||
contentType: 'digit',
|
||||
maxLength: 2
|
||||
},
|
||||
mm: 'minutes',
|
||||
// Seconds
|
||||
s: {
|
||||
sectionType: 'seconds',
|
||||
contentType: 'digit',
|
||||
maxLength: 2
|
||||
},
|
||||
ss: 'seconds'
|
||||
};
|
||||
const defaultFormats = {
|
||||
year: 'yyyy',
|
||||
month: 'LLLL',
|
||||
monthShort: 'MMM',
|
||||
dayOfMonth: 'd',
|
||||
dayOfMonthFull: 'do',
|
||||
weekday: 'EEEE',
|
||||
weekdayShort: 'EEEEEE',
|
||||
hours24h: 'HH',
|
||||
hours12h: 'hh',
|
||||
meridiem: 'aa',
|
||||
minutes: 'mm',
|
||||
seconds: 'ss',
|
||||
fullDate: 'PP',
|
||||
keyboardDate: 'P',
|
||||
shortDate: 'MMM d',
|
||||
normalDate: 'd MMMM',
|
||||
normalDateWithWeekday: 'EEE, MMM d',
|
||||
fullTime12h: 'hh:mm aa',
|
||||
fullTime24h: 'HH:mm',
|
||||
keyboardDateTime12h: 'P hh:mm aa',
|
||||
keyboardDateTime24h: 'P HH:mm'
|
||||
};
|
||||
/**
|
||||
* Based on `@date-io/date-fns`
|
||||
*
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2017 Dmitriy Kovalenko
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
export class AdapterDateFnsBase {
|
||||
isMUIAdapter = true;
|
||||
isTimezoneCompatible = false;
|
||||
formatTokenMap = (() => formatTokenMap)();
|
||||
escapedCharacters = {
|
||||
start: "'",
|
||||
end: "'"
|
||||
};
|
||||
constructor(props) {
|
||||
const {
|
||||
locale,
|
||||
formats,
|
||||
longFormatters,
|
||||
lib
|
||||
} = props;
|
||||
this.locale = locale;
|
||||
this.formats = _extends({}, defaultFormats, formats);
|
||||
this.longFormatters = longFormatters;
|
||||
this.lib = lib || 'date-fns';
|
||||
}
|
||||
date = value => {
|
||||
if (typeof value === 'undefined') {
|
||||
return new Date();
|
||||
}
|
||||
if (value === null) {
|
||||
return null;
|
||||
}
|
||||
return new Date(value);
|
||||
};
|
||||
getInvalidDate = () => new Date('Invalid Date');
|
||||
getTimezone = () => {
|
||||
return 'default';
|
||||
};
|
||||
setTimezone = value => {
|
||||
return value;
|
||||
};
|
||||
toJsDate = value => {
|
||||
return value;
|
||||
};
|
||||
getCurrentLocaleCode = () => {
|
||||
// `code` is undefined only in `date-fns` types, but all locales have it
|
||||
return this.locale.code;
|
||||
};
|
||||
|
||||
// Note: date-fns input types are more lenient than this adapter, so we need to expose our more
|
||||
// strict signature and delegate to the more lenient signature. Otherwise, we have downstream type errors upon usage.
|
||||
is12HourCycleInCurrentLocale = () => {
|
||||
return /a/.test(this.locale.formatLong.time({
|
||||
width: 'short'
|
||||
}));
|
||||
};
|
||||
expandFormat = format => {
|
||||
const longFormatRegexp = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g;
|
||||
|
||||
// @see https://github.com/date-fns/date-fns/blob/master/src/format/index.js#L31
|
||||
return format.match(longFormatRegexp).map(token => {
|
||||
const firstCharacter = token[0];
|
||||
if (firstCharacter === 'p' || firstCharacter === 'P') {
|
||||
const longFormatter = this.longFormatters[firstCharacter];
|
||||
return longFormatter(token, this.locale.formatLong);
|
||||
}
|
||||
return token;
|
||||
}).join('');
|
||||
};
|
||||
formatNumber = numberToFormat => {
|
||||
return numberToFormat;
|
||||
};
|
||||
getDayOfWeek = value => {
|
||||
return value.getDay() + 1;
|
||||
};
|
||||
}
|
||||
1
node_modules/@mui/x-date-pickers/esm/AdapterDateFnsBase/index.d.ts
generated
vendored
Normal file
1
node_modules/@mui/x-date-pickers/esm/AdapterDateFnsBase/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
export { AdapterDateFnsBase } from "./AdapterDateFnsBase.js";
|
||||
1
node_modules/@mui/x-date-pickers/esm/AdapterDateFnsBase/index.js
generated
vendored
Normal file
1
node_modules/@mui/x-date-pickers/esm/AdapterDateFnsBase/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
export { AdapterDateFnsBase } from "./AdapterDateFnsBase.js";
|
||||
Loading…
Add table
Add a link
Reference in a new issue