diff --git a/.eslintrc.js b/.eslintrc.js index e4279b3942..554fe35282 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -37,6 +37,7 @@ const eslintrc = { 'react/forbid-prop-types': 0, 'react/jsx-indent': 0, 'react/jsx-wrap-multilines': ['error', { declaration: false, assignment: false }], + 'import/extensions': 0, 'import/no-extraneous-dependencies': [ 'error', { @@ -86,7 +87,6 @@ const eslintrc = { 'react/static-property-placement': 0, 'jest/no-test-callback': 0, 'jest/expect-expect': 0, - 'import/extensions': 0, }, globals: { gtag: true, diff --git a/components/calendar/Header.tsx b/components/calendar/Header.tsx index 04f56a9724..ecfc0ca828 100644 --- a/components/calendar/Header.tsx +++ b/components/calendar/Header.tsx @@ -1,223 +1,188 @@ import * as React from 'react'; -import * as moment from 'moment'; +import { GenerateConfig } from 'rc-picker/lib/generate'; +import { Locale } from 'rc-picker/lib/interface'; import Select from '../select'; -import { Group, Button, RadioChangeEvent } from '../radio'; -import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; +import { Group, Button } from '../radio'; +import { CalendarMode } from './generateCalendar'; -const { Option } = Select; +const YearSelectOffset = 10; +const YearSelectTotal = 20; -function getMonthsLocale(value: moment.Moment) { - const current = value.clone(); - const localeData = value.localeData(); - const months: any[] = []; - for (let i = 0; i < 12; i++) { - current.month(i); - months.push(localeData.monthsShort(current)); - } - return months; +interface SharedProps { + prefixCls: string; + value: DateType; + validRange?: [DateType, DateType]; + generateConfig: GenerateConfig; + locale: Locale; + fullscreen: boolean; + divRef: React.RefObject; + onChange: (year: DateType) => void; } -export interface RenderHeader { - value: moment.Moment; - onChange?: (value: moment.Moment) => void; - type: string; - onTypeChange: (type: string) => void; -} +function YearSelect(props: SharedProps) { + const { + fullscreen, + validRange, + generateConfig, + locale, + prefixCls, + value, + onChange, + divRef, + } = props; -export type HeaderRender = (headerRender: RenderHeader) => React.ReactNode; + const year = generateConfig.getYear(value); -export interface HeaderProps { - prefixCls?: string; - locale?: any; - fullscreen?: boolean; - yearSelectOffset?: number; - yearSelectTotal?: number; - type?: string; - onValueChange?: (value: moment.Moment) => void; - onTypeChange?: (type: string) => void; - value: moment.Moment; - validRange?: [moment.Moment, moment.Moment]; - headerRender?: HeaderRender; -} + let start = year - YearSelectOffset; + let end = start + YearSelectTotal; -export default class Header extends React.Component { - static defaultProps = { - yearSelectOffset: 10, - yearSelectTotal: 20, - }; - - private calenderHeaderNode: HTMLDivElement; - - getYearSelectElement(prefixCls: string, year: number) { - const { yearSelectOffset, yearSelectTotal, locale = {}, fullscreen, validRange } = this.props; - let start = year - (yearSelectOffset as number); - let end = start + (yearSelectTotal as number); - if (validRange) { - start = validRange[0].get('year'); - end = validRange[1].get('year') + 1; - } - const suffix = locale.year === '年' ? '年' : ''; - const options: React.ReactElement[] = []; - for (let index = start; index < end; index++) { - const optionValue = `${index}`; - options.push( - , - ); - } - return ( - - ); + if (validRange) { + start = generateConfig.getYear(validRange[0]); + end = generateConfig.getYear(validRange[1]) + 1; } - getMonthSelectElement(prefixCls: string, month: number, months: number[]) { - const { fullscreen, validRange, value } = this.props; - const options: React.ReactElement[] = []; - let start = 0; - let end = 12; - if (validRange) { - const [rangeStart, rangeEnd] = validRange; - const currentYear = value.get('year'); - if (rangeEnd.get('year') === currentYear) { - end = rangeEnd.get('month') + 1; - } - if (rangeStart.get('year') === currentYear) { - start = rangeStart.get('month'); - } - } - - for (let index = start; index < end; index++) { - const optionValue = `${index}`; - options.push( - , - ); - } - return ( - - ); + const suffix = locale && locale.year === '年' ? '年' : ''; + const options: { label: string; value: number }[] = []; + for (let index = start; index < end; index++) { + options.push({ label: `${index}${suffix}`, value: index }); } - onYearChange = (year: string) => { - const { value, validRange } = this.props; - const newValue = value.clone(); - newValue.year(parseInt(year, 10)); - // switch the month so that it remains within range when year changes - if (validRange) { - const [start, end] = validRange; - const newYear = newValue.get('year'); - const newMonth = newValue.get('month'); - if (newYear === end.get('year') && newMonth > end.get('month')) { - newValue.month(end.get('month')); - } - if (newYear === start.get('year') && newMonth < start.get('month')) { - newValue.month(start.get('month')); - } + return ( + { + onChange(generateConfig.setMonth(value, newMonth)); + }} + getPopupContainer={() => divRef!.current!} + /> + ); } + +interface ModeSwitchProps extends Omit, 'onChange'> { + mode: CalendarMode; + onModeChange: (type: CalendarMode) => void; +} + +function ModeSwitch(props: ModeSwitchProps) { + const { prefixCls, locale, mode, fullscreen, onModeChange } = props; + return ( + { + onModeChange(value); + }} + value={mode} + size={fullscreen ? 'default' : 'small'} + className={`${prefixCls}-mode-switch`} + > + + + + ); +} + +export interface CalendarHeaderProps { + prefixCls: string; + value: DateType; + validRange?: [DateType, DateType]; + generateConfig: GenerateConfig; + locale: Locale; + mode: CalendarMode; + fullscreen: boolean; + onChange: (date: DateType) => void; + onModeChange: (mode: CalendarMode) => void; +} +function CalendarHeader(props: CalendarHeaderProps) { + const { prefixCls, fullscreen, mode, onChange, onModeChange } = props; + const divRef = React.useRef(null); + + const sharedProps = { + ...props, + onChange, + fullscreen, + divRef, + }; + + return ( +
+ + {mode === 'month' && } + +
+ ); +} + +export default CalendarHeader; diff --git a/components/calendar/__tests__/__snapshots__/demo.test.js.snap b/components/calendar/__tests__/__snapshots__/demo.test.js.snap index d4c9611ca0..9b8217f374 100644 --- a/components/calendar/__tests__/__snapshots__/demo.test.js.snap +++ b/components/calendar/__tests__/__snapshots__/demo.test.js.snap @@ -2,13 +2,13 @@ exports[`renders ./components/calendar/demo/basic.md correctly 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 30 +
+ 30 +
+
-
-
- -
- - - - - - - - + -
- 06 +
+ 06 +
+
-
-
- -
- - - - - - - - + -
- 13 +
+ 13 +
+
-
-
- -
- - - - - - - - + -
- 20 +
+ 20 +
+
-
-
- -
- - - - - - - - + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
+
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
+
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
+
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
+
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+ + + + +
@@ -1056,16 +950,16 @@ exports[`renders ./components/calendar/demo/basic.md correctly 1`] = ` exports[`renders ./components/calendar/demo/card.md correctly 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 30 +
+ 30 +
+
-
-
- -
- - - - - - - - + -
- 06 +
+ 06 +
+
-
-
- -
- - - - - - - - + -
- 13 +
+ 13 +
+
-
-
- -
- - - - - - - - + -
- 20 +
+ 20 +
+
-
-
- -
- - - - - - - - + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
+
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
+
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
+
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
+
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+ + + + +
@@ -2117,7 +1905,7 @@ exports[`renders ./components/calendar/demo/customize-header.md correctly 1`] = style="width:300px;border:1px solid #d9d9d9;border-radius:4px" >
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 30 +
+ 30 +
+
-
-
- -
- - - - - - - - + -
- 06 +
+ 06 +
+
-
-
- -
- - - - - - - - + -
- 13 +
+ 13 +
+
-
-
- -
- - - - - - - - + -
- 20 +
+ 20 +
+
-
-
- -
- - - - - - - - + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
+
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
+
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
+
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
+
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+ + + + +
@@ -3197,13 +2879,13 @@ exports[`renders ./components/calendar/demo/customize-header.md correctly 1`] = exports[`renders ./components/calendar/demo/notice-calendar.md correctly 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 30 -
-
-
    -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
-
- 31 -
-
-
    -
-
-
-
-
- 01 -
-
-
    -
-
-
-
-
- 02 -
-
-
    -
-
-
-
-
- 03 -
-
-
    -
-
-
-
-
- 04 -
-
-
    -
-
-
-
-
- 05 -
-
-
    -
-
-
-
-
- 06 -
-
-
    -
-
-
-
-
- 07 -
-
-
    -
-
-
-
-
- 08 -
-
-
    -
  • - - - - This is warning event. - - -
  • -
  • - - - - This is usual event. - - -
  • -
-
-
-
-
-
- 09 -
-
-
    -
-
-
-
-
- 10 -
-
-
    +
    -
  • - - - - This is warning event. - - -
  • -
  • - - - - This is usual event. - - -
  • -
  • - - - - This is error event. - - -
  • -
+
    +
- -
-
+
- 11 -
-
-
    -
- -
-
-
- 12 -
-
-
    -
-
-
-
-
- 13 -
-
-
    -
-
-
-
-
- 14 -
-
-
    -
-
-
-
-
- 15 -
-
-
    -
  • - - - - This is warning event - - -
  • -
  • - - - - This is very long usual event。。.... - - -
  • -
  • - - - - This is error event 1. - - -
  • -
  • - - - - This is error event 2. - - -
  • -
  • - - - - This is error event 3. - - -
  • -
  • - - - - This is error event 4. - - -
  • -
-
-
-
-
-
- 16 -
-
-
    -
-
-
-
-
- 17 -
-
-
    -
-
-
-
-
- 18 -
-
-
    -
-
-
-
-
- 19 -
-
-
    -
-
-
-
-
- 20 -
-
-
    -
-
-
-
-
- 21 -
-
-
    -
-
-
-
-
- 22 -
-
-
    -
-
-
-
-
- 23 -
-
-
    -
-
-
-
-
- 24 -
-
-
    -
-
-
-
-
- 25 -
-
-
    -
-
-
-
-
- 26 -
-
-
    -
-
-
-
-
- 27 -
-
-
    -
-
-
-
-
- 28 -
-
-
    -
-
-
-
-
- 29 -
-
-
    -
-
-
-
-
- 30 -
-
-
    -
-
-
-
-
- 01 -
-
-
    -
-
-
-
-
- 02 -
-
-
    -
-
-
-
-
- 03 -
-
-
    -
-
-
-
-
- 04 -
-
-
    -
-
-
-
-
- 05 -
-
-
    -
-
-
-
-
- 06 -
-
-
    -
-
-
-
-
- 07 -
-
-
    -
-
-
-
-
- 08 -
-
-
    +
    -
  • - - - - This is warning event. - - -
  • -
  • - - - - This is usual event. - - -
  • -
+
    +
- -
-
+
- 09 -
-
-
    -
- -
-
-
- 10 -
-
-
    -
  • - - - - This is warning event. - - -
  • -
  • - - - - This is usual event. - - -
  • -
  • - - - - This is error event. - - -
  • -
+ 01 +
+
+
    +
- -
+ + +
+
+ 02 +
+
+
    +
+
+ + +
+
+ 03 +
+
+
    +
+
+ + +
+
+ 04 +
+
+
    +
+
+ + +
+
+ 05 +
+
+
    +
+
+ + + + +
+
+ 06 +
+
+
    +
+
+ + +
+
+ 07 +
+
+
    +
+
+ + +
+
+ 08 +
+
+
    +
  • + + + + This is warning event. + + +
  • +
  • + + + + This is usual event. + + +
  • +
+
+
+ + +
+
+ 09 +
+
+
    +
+
+ + +
+
+ 10 +
+
+
    +
  • + + + + This is warning event. + + +
  • +
  • + + + + This is usual event. + + +
  • +
  • + + + + This is error event. + + +
  • +
+
+
+ + +
+
+ 11 +
+
+
    +
+
+ + +
+
+ 12 +
+
+
    +
+
+ + + + +
+
+ 13 +
+
+
    +
+
+ + +
+
+ 14 +
+
+
    +
+
+ + +
+
+ 15 +
+
+
    +
  • + + + + This is warning event + + +
  • +
  • + + + + This is very long usual event。。.... + + +
  • +
  • + + + + This is error event 1. + + +
  • +
  • + + + + This is error event 2. + + +
  • +
  • + + + + This is error event 3. + + +
  • +
  • + + + + This is error event 4. + + +
  • +
+
+
+ + +
+
+ 16 +
+
+
    +
+
+ + +
+
+ 17 +
+
+
    +
+
+ + +
+
+ 18 +
+
+
    +
+
+ + +
+
+ 19 +
+
+
    +
+
+ + + + +
+
+ 20 +
+
+
    +
+
+ + +
+
+ 21 +
+
+
    +
+
+ + +
+
+ 22 +
+
+
    +
+
+ + +
+
+ 23 +
+
+
    +
+
+ + +
+
+ 24 +
+
+
    +
+
+ + +
+
+ 25 +
+
+
    +
+
+ + +
+
+ 26 +
+
+
    +
+
+ + + + +
+
+ 27 +
+
+
    +
+
+ + +
+
+ 28 +
+
+
    +
+
+ + +
+
+ 29 +
+
+
    +
+
+ + +
+
+ 30 +
+
+
    +
+
+ + +
+
+ 01 +
+
+
    +
+
+ + +
+
+ 02 +
+
+
    +
+
+ + +
+
+ 03 +
+
+
    +
+
+ + + + +
+
+ 04 +
+
+
    +
+
+ + +
+
+ 05 +
+
+
    +
+
+ + +
+
+ 06 +
+
+
    +
+
+ + +
+
+ 07 +
+
+
    +
+
+ + +
+
+ 08 +
+
+
    +
  • + + + + This is warning event. + + +
  • +
  • + + + + This is usual event. + + +
  • +
+
+
+ + +
+
+ 09 +
+
+
    +
+
+ + +
+
+ 10 +
+
+
    +
  • + + + + This is warning event. + + +
  • +
  • + + + + This is usual event. + + +
  • +
  • + + + + This is error event. + + +
  • +
+
+
+ + + + +
@@ -4662,13 +4238,13 @@ exports[`renders ./components/calendar/demo/select.md correctly 1`] = ` />
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - - + -
- 08 +
+ 08 +
+
-
-
- -
- - - - - - - - + -
- 15 +
+ 15 +
+
-
-
- -
- - - - - - - - + -
- 22 +
+ 22 +
+
-
-
- -
- - - - - - - - + -
- 29 +
+ 29 +
+
-
-
- -
- - - - - - - - + -
- 05 +
+ 05 +
+
-
-
- -
- - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
+
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
+
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
+
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
+
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
-
+
- 11 +
+ 11 +
+
-
-
-
+ + + + +
diff --git a/components/calendar/__tests__/__snapshots__/index.test.js.snap b/components/calendar/__tests__/__snapshots__/index.test.js.snap index d4a8177d00..a471c845ec 100644 --- a/components/calendar/__tests__/__snapshots__/index.test.js.snap +++ b/components/calendar/__tests__/__snapshots__/index.test.js.snap @@ -2,13 +2,13 @@ exports[`Calendar Calendar should support locale 1`] = `
- Oct + 10月
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 30 +
+ 01 +
+
-
-
- -
- - - - - - - - + -
- 07 +
+ 08 +
+
-
-
- -
- - - - - - - - + -
- 14 +
+ 15 +
+
-
-
- -
- - - - - - - - + -
- 21 +
+ 22 +
+
-
-
- -
- - - - - - - - + -
- 28 +
+ 29 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 05 +
+
-
-
- -
- - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ 一 + + 二 + + 三 + + 四 + + 五 + + 六 + + 日 +
-
+
- 01 +
+ 02 +
+
-
-
-
-
+
- 02 +
+ 03 +
+
-
-
-
-
+
- 03 +
+ 04 +
+
-
-
-
-
+
- 04 +
+ 05 +
+
-
-
-
-
+
- 05 +
+ 06 +
+
-
-
-
-
+
- 06 +
+ 07 +
+
-
-
-
+
-
+
- 08 +
+ 09 +
+
-
-
-
-
+
- 09 +
+ 10 +
+
-
-
-
-
+
- 10 +
+ 11 +
+
-
-
-
-
+
- 11 +
+ 12 +
+
-
-
-
-
+
- 12 +
+ 13 +
+
-
-
-
-
+
- 13 +
+ 14 +
+
-
-
-
+
-
+
- 15 +
+ 16 +
+
-
-
-
-
+
- 16 +
+ 17 +
+
-
-
-
-
+
- 17 +
+ 18 +
+
-
-
-
-
+
- 18 +
+ 19 +
+
-
-
-
-
+
- 19 +
+ 20 +
+
-
-
-
-
+
- 20 +
+ 21 +
+
-
-
-
+
-
+
- 22 +
+ 23 +
+
-
-
-
-
+
- 23 +
+ 24 +
+
-
-
-
-
+
- 24 +
+ 25 +
+
-
-
-
-
+
- 25 +
+ 26 +
+
-
-
-
-
+
- 26 +
+ 27 +
+
-
-
-
-
+
- 27 +
+ 28 +
+
-
-
-
+
-
+
- 29 +
+ 30 +
+
-
-
-
-
+
- 30 +
+ 31 +
+
-
-
-
-
+
- 31 +
+ 01 +
+
-
-
-
-
+
- 01 +
+ 02 +
+
-
-
-
-
+
- 02 +
+ 03 +
+
-
-
-
-
+
- 03 +
+ 04 +
+
-
-
-
+
-
+
- 05 +
+ 06 +
+
-
-
-
-
+
- 06 +
+ 07 +
+
-
-
-
-
+
- 07 +
+ 08 +
+
-
-
-
-
+
- 08 +
+ 09 +
+
-
-
-
-
+
- 09 +
+ 10 +
+
-
-
-
-
+
- 10 +
+ 11 +
+
-
-
-
+ + + + +
diff --git a/components/calendar/__tests__/index.test.js b/components/calendar/__tests__/index.test.js index e0e7e00216..d7be188f06 100644 --- a/components/calendar/__tests__/index.test.js +++ b/components/calendar/__tests__/index.test.js @@ -1,5 +1,6 @@ import React from 'react'; import Moment from 'moment'; +import momentGenerateConfig from 'rc-picker/lib/generate/moment'; import { mount } from 'enzyme'; import MockDate from 'mockdate'; import Calendar from '..'; @@ -11,7 +12,6 @@ import mountTest from '../../../tests/shared/mountTest'; describe('Calendar', () => { mountTest(Calendar); - mountTest(() =>
); function openSelect(wrapper, className) { wrapper @@ -34,7 +34,7 @@ describe('Calendar', () => { const onSelect = jest.fn(); const wrapper = mount(); wrapper - .find('.ant-fullcalendar-cell') + .find('.ant-picker-cell') .at(0) .simulate('click'); expect(onSelect).toHaveBeenCalledWith(expect.anything()); @@ -49,11 +49,11 @@ describe('Calendar', () => { , ); wrapper - .find('[title="February 1, 2018"]') + .find('[title="2018-02-01"]') .at(0) .simulate('click'); wrapper - .find('[title="February 2, 2018"]') + .find('[title="2018-02-02"]') .at(0) .simulate('click'); expect(onSelect.mock.calls.length).toBe(1); @@ -66,12 +66,10 @@ describe('Calendar', () => { , ); wrapper - .find('[title="February 20, 2018"]') + .find('[title="2018-02-20"]') .at(0) .simulate('click'); - const elem = wrapper - .find('[title="February 20, 2018"]') - .hasClass('ant-fullcalendar-disabled-cell'); + const elem = wrapper.find('[title="2018-02-20"]').hasClass('ant-picker-cell-disabled'); expect(elem).toEqual(true); expect(onSelect.mock.calls.length).toBe(0); }); @@ -89,28 +87,28 @@ describe('Calendar', () => { ); expect( wrapper - .find('[title="Jan"]') + .find('[title="2018-01"]') .at(0) - .hasClass('ant-fullcalendar-month-panel-cell-disabled'), + .hasClass('ant-picker-cell-disabled'), ).toBe(true); expect( wrapper - .find('[title="Feb"]') + .find('[title="2018-02"]') .at(0) - .hasClass('ant-fullcalendar-month-panel-cell-disabled'), + .hasClass('ant-picker-cell-disabled'), ).toBe(false); expect( wrapper - .find('[title="Jun"]') + .find('[title="2018-06"]') .at(0) - .hasClass('ant-fullcalendar-month-panel-cell-disabled'), + .hasClass('ant-picker-cell-disabled'), ).toBe(true); wrapper - .find('[title="Jan"]') + .find('[title="2018-01"]') .at(0) .simulate('click'); wrapper - .find('[title="Mar"]') + .find('[title="2018-03"]') .at(0) .simulate('click'); expect(onSelect.mock.calls.length).toBe(1); @@ -119,9 +117,9 @@ describe('Calendar', () => { it('months other than in valid range should not be shown in header', () => { const validRange = [Moment('2017-02-02'), Moment('2018-05-18')]; const wrapper = mount(); - openSelect(wrapper, '.ant-fullcalendar-year-select'); + openSelect(wrapper, '.ant-picker-calendar-year-select'); clickSelectItem(wrapper); - openSelect(wrapper, '.ant-fullcalendar-month-select'); + openSelect(wrapper, '.ant-picker-calendar-month-select'); // 2 years and 11 months expect(wrapper.find('.ant-select-item-option').length).toBe(13); }); @@ -129,8 +127,7 @@ describe('Calendar', () => { it('getDateRange should returns a disabledDate function', () => { const validRange = [Moment('2018-02-02'), Moment('2018-05-18')]; const wrapper = mount(); - const instance = wrapper.instance(); - const disabledDate = instance.getDateRange(validRange); + const { disabledDate } = wrapper.find('PickerPanel').props(); expect(disabledDate(Moment('2018-06-02'))).toBe(true); expect(disabledDate(Moment('2018-04-02'))).toBe(false); }); @@ -139,9 +136,9 @@ describe('Calendar', () => { const monthMode = 'month'; const yearMode = 'year'; const wrapper = mount(); - expect(wrapper.state().mode).toEqual(monthMode); - wrapper.setProps({ mode: 'year' }); - expect(wrapper.state().mode).toEqual(yearMode); + expect(wrapper.find('CalendarHeader').props().mode).toEqual(monthMode); + wrapper.setProps({ mode: yearMode }); + expect(wrapper.find('CalendarHeader').props().mode).toEqual(yearMode); }); it('Calendar should switch mode', () => { @@ -149,9 +146,9 @@ describe('Calendar', () => { const yearMode = 'year'; const onPanelChangeStub = jest.fn(); const wrapper = mount(); - expect(wrapper.state().mode).toEqual(yearMode); + expect(wrapper.find('CalendarHeader').props().mode).toEqual(yearMode); wrapper.setProps({ mode: monthMode }); - expect(wrapper.state().mode).toEqual(monthMode); + expect(wrapper.find('CalendarHeader').props().mode).toEqual(monthMode); expect(onPanelChangeStub).toHaveBeenCalledTimes(0); }); @@ -170,7 +167,7 @@ describe('Calendar', () => { const wrapper = mount(); wrapper - .find('.ant-fullcalendar-cell') + .find('.ant-picker-cell') .at(0) .simulate('click'); @@ -182,12 +179,14 @@ describe('Calendar', () => { const onPanelChange = jest.fn(); const date = new Moment(new Date(Date.UTC(2017, 7, 9, 8))); const wrapper = mount(); - expect(wrapper.state().mode).toBe('month'); - expect(wrapper.find('.ant-fullcalendar-table').length).toBe(1); - expect(wrapper.find('.ant-fullcalendar-month-panel-table').length).toBe(0); + + expect(wrapper.find('CalendarHeader').props().mode).toBe('month'); + expect(wrapper.find('.ant-picker-date-panel').length).toBe(1); + expect(wrapper.find('.ant-picker-month-panel').length).toBe(0); + wrapper.find('.ant-radio-button-input[value="year"]').simulate('change'); - expect(wrapper.find('.ant-fullcalendar-table').length).toBe(0); - expect(wrapper.find('.ant-fullcalendar-month-panel-table').length).toBe(1); + expect(wrapper.find('.ant-picker-date-panel').length).toBe(0); + expect(wrapper.find('.ant-picker-month-panel').length).toBe(1); expect(onPanelChange).toHaveBeenCalled(); expect(onPanelChange.mock.calls[0][1]).toEqual('year'); }); @@ -195,13 +194,15 @@ describe('Calendar', () => { const createWrapper = (start, end, value, onValueChange) => { const wrapper = mount(
, ); - openSelect(wrapper, '.ant-fullcalendar-year-select'); + openSelect(wrapper, '.ant-picker-calendar-year-select'); clickSelectItem(wrapper); }; @@ -223,6 +224,29 @@ describe('Calendar', () => { expect(onValueChange).toHaveBeenCalledWith(value.year('2019').month('10')); }); + it('if change year and new month > end month, set value.month to end.month ', () => { + const value = new Moment('2018-11-03'); + const start = new Moment('2000-01-01'); + const end = new Moment('2019-03-01'); + const onValueChange = jest.fn(); + const wrapper = mount( +
, + ); + openSelect(wrapper, '.ant-picker-calendar-year-select'); + wrapper + .find('.ant-select-item-option') + .last() + .simulate('click'); + expect(onValueChange).toHaveBeenCalledWith(value.year('2019').month('2')); + }); + it('onMonthChange should work correctly', () => { const start = new Moment('2018-11-01'); const end = new Moment('2019-03-01'); @@ -230,14 +254,16 @@ describe('Calendar', () => { const onValueChange = jest.fn(); const wrapper = mount(
, ); - openSelect(wrapper, '.ant-fullcalendar-month-select'); + openSelect(wrapper, '.ant-picker-calendar-month-select'); clickSelectItem(wrapper); expect(onValueChange).toHaveBeenCalledWith(value.month(10)); }); @@ -247,8 +273,10 @@ describe('Calendar', () => { const value = new Moment('2018-12-03'); const wrapper = mount(
, @@ -264,6 +292,8 @@ describe('Calendar', () => { const onMonthChange = jest.fn(); const onYearChange = jest.fn(); const onTypeChange = jest.fn(); + + // Year const headerRender = jest.fn(({ value }) => { const year = value.year(); const options = []; @@ -297,6 +327,8 @@ describe('Calendar', () => { .simulate('click'); expect(onYearChange).toHaveBeenCalled(); + + // Month const headerRenderWithMonth = jest.fn(({ value }) => { const start = 0; const end = 12; @@ -316,14 +348,15 @@ describe('Calendar', () => { , ); } + const month = value.month(); return ( @@ -339,8 +372,10 @@ describe('Calendar', () => { findSelectItem(wrapperWithMonth) .last() .simulate('click'); + expect(onMonthChange).toHaveBeenCalled(); + // Type const headerRenderWithTypeChange = jest.fn(({ type }) => { return ( @@ -360,4 +395,28 @@ describe('Calendar', () => { .simulate('change'); expect(onTypeChange).toHaveBeenCalled(); }); + + it('dateFullCellRender', () => { + const wrapper = mount( +
Bamboo
} />, + ); + expect( + wrapper + .find('.light') + .first() + .text(), + ).toEqual('Bamboo'); + }); + + it('monthFullCellRender', () => { + const wrapper = mount( +
Light
} />, + ); + expect( + wrapper + .find('.bamboo') + .first() + .text(), + ).toEqual('Light'); + }); }); diff --git a/components/calendar/demo/basic.md b/components/calendar/demo/basic.md index aacbd767a3..0e8a602e6d 100644 --- a/components/calendar/demo/basic.md +++ b/components/calendar/demo/basic.md @@ -17,7 +17,7 @@ A basic calendar component with Year/Month switch. import { Calendar } from 'antd'; function onPanelChange(value, mode) { - console.log(value, mode); + console.log(value.format('YYYY-MM-DD'), mode); } ReactDOM.render(, mountNode); diff --git a/components/calendar/demo/card.md b/components/calendar/demo/card.md index bf23da200e..5c1a384eb4 100644 --- a/components/calendar/demo/card.md +++ b/components/calendar/demo/card.md @@ -21,7 +21,7 @@ function onPanelChange(value, mode) { } ReactDOM.render( -
+
, mountNode, diff --git a/components/calendar/generateCalendar.tsx b/components/calendar/generateCalendar.tsx new file mode 100644 index 0000000000..84848edbae --- /dev/null +++ b/components/calendar/generateCalendar.tsx @@ -0,0 +1,287 @@ +import * as React from 'react'; +import classNames from 'classnames'; +import padStart from 'lodash/padStart'; +import { PickerPanel as RCPickerPanel } from 'rc-picker'; +import { Locale } from 'rc-picker/lib/interface'; +import { GenerateConfig } from 'rc-picker/lib/generate'; +import { + PickerPanelBaseProps as RCPickerPanelBaseProps, + PickerPanelDateProps as RCPickerPanelDateProps, + PickerPanelTimeProps as RCPickerPanelTimeProps, +} from 'rc-picker/lib/PickerPanel'; +import LocaleReceiver from '../locale-provider/LocaleReceiver'; +import enUS from './locale/en_US'; +import { ConfigContext } from '../config-provider'; +import CalendarHeader from './Header'; + +type InjectDefaultProps = Omit< + Props, + 'locale' | 'generateConfig' | 'prevIcon' | 'nextIcon' | 'superPrevIcon' | 'superNextIcon' +> & { + locale?: typeof enUS; + size?: 'large' | 'default' | 'small'; +}; + +// Picker Props +export type PickerPanelBaseProps = InjectDefaultProps>; +export type PickerPanelDateProps = InjectDefaultProps>; +export type PickerPanelTimeProps = InjectDefaultProps>; + +export type PickerProps = + | PickerPanelBaseProps + | PickerPanelDateProps + | PickerPanelTimeProps; + +export type CalendarMode = 'year' | 'month'; +export type HeaderRender = (config: { + value: DateType; + type: CalendarMode; + onChange: (date: DateType) => void; + onTypeChange: (type: CalendarMode) => void; +}) => React.ReactNode; + +export interface CalendarProps { + prefixCls?: string; + className?: string; + style?: React.CSSProperties; + locale?: typeof enUS; + validRange?: [DateType, DateType]; + disabledDate?: (date: DateType) => boolean; + dateFullCellRender?: (date: DateType) => React.ReactNode; + dateCellRender?: (date: DateType) => React.ReactNode; + monthFullCellRender?: (date: DateType) => React.ReactNode; + monthCellRender?: (date: DateType) => React.ReactNode; + headerRender?: HeaderRender; + value?: DateType; + defaultValue?: DateType; + mode?: CalendarMode; + fullscreen?: boolean; + onChange?: (date: DateType) => void; + onPanelChange?: (date: DateType, mode: CalendarMode) => void; + onSelect?: (date: DateType) => void; +} + +function generateCalendar(generateConfig: GenerateConfig) { + function isSameMonth(date1: DateType, date2: DateType) { + return ( + date1 === date2 || + (date1 && + date2 && + generateConfig.getYear(date1) === generateConfig.getYear(date2) && + generateConfig.getMonth(date1) === generateConfig.getMonth(date2)) + ); + } + + function isSameDate(date1: DateType, date2: DateType) { + return ( + isSameMonth(date1, date2) && generateConfig.getDate(date1) === generateConfig.getDate(date2) + ); + } + + const Calendar = (props: CalendarProps) => { + const { + prefixCls: customizePrefixCls, + className, + dateFullCellRender, + dateCellRender, + monthFullCellRender, + monthCellRender, + headerRender, + value, + defaultValue, + disabledDate, + mode, + validRange, + fullscreen = true, + onChange, + onPanelChange, + onSelect, + } = props; + const { getPrefixCls } = React.useContext(ConfigContext); + const prefixCls = getPrefixCls('picker', customizePrefixCls); + const calendarPrefixCls = `${prefixCls}-calendar`; + const today = generateConfig.getNow(); + + // ====================== State ======================= + + // Value + const [innerValue, setInnerValue] = React.useState( + () => value || defaultValue || generateConfig.getNow(), + ); + + const mergedValue = value || innerValue; + + // Mode + const [innerMode, setInnerMode] = React.useState(() => mode || 'month'); + const mergedMode = mode || innerMode; + const panelMode = React.useMemo<'month' | 'date'>( + () => (mergedMode === 'year' ? 'month' : 'date'), + [mergedMode], + ); + + // Disabled Date + const mergedDisabledDate = React.useMemo(() => { + if (validRange) { + return (date: DateType) => { + return ( + generateConfig.isAfter(validRange[0], date) || + generateConfig.isAfter(date, validRange[1]) + ); + }; + } + + return disabledDate; + }, [disabledDate, validRange]); + + // ====================== Events ====================== + const triggerPanelChange = (date: DateType, newMode: CalendarMode) => { + if (onPanelChange) { + onPanelChange(date, newMode); + } + }; + + const triggerChange = (date: DateType) => { + setInnerValue(date); + + if (!isSameDate(date, mergedValue)) { + triggerPanelChange(date, mergedMode); + + if (onChange) { + onChange(date); + } + } + }; + + const triggerModeChange = (newMode: CalendarMode) => { + setInnerMode(newMode); + triggerPanelChange(mergedValue, newMode); + }; + + const onInternalSelect = (date: DateType) => { + triggerChange(date); + + if (onSelect) { + onSelect(date); + } + }; + + // ====================== Locale ====================== + const getDefaultLocale = () => { + const { locale } = props; + const result = { + ...enUS, + ...locale, + }; + result.lang = { + ...result.lang, + ...((locale || {}) as any).lang, + }; + return result; + }; + + // ====================== Render ====================== + const dateRender = React.useCallback( + (date: DateType): React.ReactNode => { + if (dateFullCellRender) { + return dateFullCellRender(date); + } + + return ( +
+
+ {padStart(String(generateConfig.getDate(date)), 2, '0')} +
+
+ {dateCellRender && dateCellRender(date)} +
+
+ ); + }, + [dateFullCellRender, dateCellRender], + ); + + const monthRender = React.useCallback( + (date: DateType, locale: Locale): React.ReactNode => { + if (monthFullCellRender) { + return monthFullCellRender(date); + } + + const months = locale.shortMonths || generateConfig.locale.getShortMonths!(locale.locale); + + return ( +
+
+ {months[generateConfig.getMonth(date)]} +
+
+ {monthCellRender && monthCellRender(date)} +
+
+ ); + }, + [monthFullCellRender, monthCellRender], + ); + + return ( + + {(mergedLocale: any) => { + return ( +
+ {headerRender ? ( + headerRender({ + value: mergedValue, + type: mergedMode, + onChange: onInternalSelect, + onTypeChange: triggerModeChange, + }) + ) : ( + + )} + + monthRender(date, mergedLocale.lang)} + onSelect={onInternalSelect} + mode={panelMode} + picker={panelMode as any} + disabledDate={mergedDisabledDate} + hideHeader + /> +
+ ); + }} +
+ ); + }; + + return Calendar; +} + +export default generateCalendar; diff --git a/components/calendar/index.tsx b/components/calendar/index.tsx index 5e93efa780..0dc2d87852 100644 --- a/components/calendar/index.tsx +++ b/components/calendar/index.tsx @@ -1,281 +1,7 @@ -import * as React from 'react'; -import * as PropTypes from 'prop-types'; -import * as moment from 'moment'; -import FullCalendar from 'rc-calendar/lib/FullCalendar'; -import { polyfill } from 'react-lifecycles-compat'; -import Header, { HeaderRender } from './Header'; -import enUS from './locale/en_US'; -import LocaleReceiver from '../locale-provider/LocaleReceiver'; -import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; -import interopDefault from '../_util/interopDefault'; +import { Moment } from 'moment'; +import momentGenerateConfig from 'rc-picker/lib/generate/moment'; +import generateCalendar from './generateCalendar'; -export { HeaderProps } from './Header'; - -function noop() { - return null; -} - -function zerofixed(v: number) { - if (v < 10) { - return `0${v}`; - } - return `${v}`; -} - -export type CalendarMode = 'month' | 'year'; -export interface CalendarProps { - prefixCls?: string; - className?: string; - value?: moment.Moment; - defaultValue?: moment.Moment; - mode?: CalendarMode; - fullscreen?: boolean; - dateCellRender?: (date: moment.Moment) => React.ReactNode; - monthCellRender?: (date: moment.Moment) => React.ReactNode; - dateFullCellRender?: (date: moment.Moment) => React.ReactNode; - monthFullCellRender?: (date: moment.Moment) => React.ReactNode; - locale?: any; - style?: React.CSSProperties; - onPanelChange?: (date?: moment.Moment, mode?: CalendarMode) => void; - onSelect?: (date?: moment.Moment) => void; - onChange?: (date?: moment.Moment) => void; - disabledDate?: (current: moment.Moment) => boolean; - validRange?: [moment.Moment, moment.Moment]; - headerRender?: HeaderRender; -} - -export interface CalendarState { - value: moment.Moment; - mode?: CalendarMode; -} - -class Calendar extends React.Component { - static defaultProps = { - locale: {}, - fullscreen: true, - onSelect: noop, - onPanelChange: noop, - onChange: noop, - }; - - static propTypes = { - monthCellRender: PropTypes.func, - dateCellRender: PropTypes.func, - monthFullCellRender: PropTypes.func, - dateFullCellRender: PropTypes.func, - fullscreen: PropTypes.bool, - locale: PropTypes.object, - prefixCls: PropTypes.string, - className: PropTypes.string, - style: PropTypes.object, - onPanelChange: PropTypes.func, - value: PropTypes.object as PropTypes.Requireable, - onSelect: PropTypes.func, - onChange: PropTypes.func, - headerRender: PropTypes.func, - }; - - static getDerivedStateFromProps(nextProps: CalendarProps) { - const newState = {} as CalendarState; - if ('value' in nextProps) { - newState.value = nextProps.value!; - } - if ('mode' in nextProps) { - newState.mode = nextProps.mode; - } - return Object.keys(newState).length > 0 ? newState : null; - } - - prefixCls?: string; - - constructor(props: CalendarProps) { - super(props); - - const value = props.value || props.defaultValue || interopDefault(moment)(); - if (!interopDefault(moment).isMoment(value)) { - throw new Error( - 'The value/defaultValue of Calendar must be a moment object after `antd@2.0`, ' + - 'see: https://u.ant.design/calendar-value', - ); - } - this.state = { - value, - mode: props.mode || 'month', - }; - } - - onHeaderValueChange = (value: moment.Moment) => { - this.setValue(value, 'changePanel'); - }; - - onHeaderTypeChange = (mode: CalendarMode) => { - this.setState({ mode }); - this.onPanelChange(this.state.value, mode); - }; - - onPanelChange(value: moment.Moment, mode: CalendarMode | undefined) { - const { onPanelChange, onChange } = this.props; - if (onPanelChange) { - onPanelChange(value, mode); - } - if (onChange && value !== this.state.value) { - onChange(value); - } - } - - onSelect = (value: moment.Moment) => { - this.setValue(value, 'select'); - }; - - setValue = (value: moment.Moment, way: 'select' | 'changePanel') => { - const prevValue = this.props.value || this.state.value; - const { mode } = this.state; - - if (!('value' in this.props)) { - this.setState({ value }); - } - if (way === 'select') { - if (prevValue && prevValue.month() !== value.month()) { - this.onPanelChange(value, mode); - } - if (this.props.onSelect) { - this.props.onSelect(value); - } - } else if (way === 'changePanel') { - this.onPanelChange(value, mode); - } - }; - - getDateRange = ( - validRange: [moment.Moment, moment.Moment], - disabledDate?: (current: moment.Moment) => boolean, - ) => (current: moment.Moment) => { - if (!current) { - return false; - } - const [startDate, endDate] = validRange; - const inRange = !current.isBetween(startDate, endDate, 'days', '[]'); - if (disabledDate) { - return disabledDate(current) || inRange; - } - return inRange; - }; - - getDefaultLocale = () => { - const result = { - ...enUS, - ...this.props.locale, - }; - result.lang = { - ...result.lang, - ...(this.props.locale || {}).lang, - }; - return result; - }; - - monthCellRender = (value: moment.Moment) => { - const { monthCellRender = noop as Function } = this.props; - const { prefixCls } = this; - return ( -
-
{value.localeData().monthsShort(value)}
-
{monthCellRender(value)}
-
- ); - }; - - dateCellRender = (value: moment.Moment) => { - const { dateCellRender = noop as Function } = this.props; - const { prefixCls } = this; - return ( -
-
{zerofixed(value.date())}
-
{dateCellRender(value)}
-
- ); - }; - - renderCalendar = (locale: any, localeCode: string) => { - const { state, props } = this; - const { value, mode } = state; - if (value && localeCode) { - value.locale(localeCode); - } - const { - prefixCls: customizePrefixCls, - style, - className, - fullscreen, - headerRender, - dateFullCellRender, - monthFullCellRender, - } = props; - const monthCellRender = monthFullCellRender || this.monthCellRender; - const dateCellRender = dateFullCellRender || this.dateCellRender; - - let { disabledDate } = props; - - if (props.validRange) { - disabledDate = this.getDateRange(props.validRange, disabledDate); - } - - return ( - - {({ getPrefixCls }: ConfigConsumerProps) => { - const prefixCls = getPrefixCls('fullcalendar', customizePrefixCls); - - // To support old version react. - // Have to add prefixCls on the instance. - // https://github.com/facebook/react/issues/12397 - this.prefixCls = prefixCls; - - let cls = className || ''; - if (fullscreen) { - cls += ` ${prefixCls}-fullscreen`; - } - - return ( -
-
- -
- ); - }} -
- ); - }; - - render() { - return ( - - {this.renderCalendar} - - ); - } -} - -polyfill(Calendar); +const Calendar = generateCalendar(momentGenerateConfig); export default Calendar; diff --git a/components/calendar/style/index.less b/components/calendar/style/index.less index fcae4ba3bc..c6b8c0ce3f 100644 --- a/components/calendar/style/index.less +++ b/components/calendar/style/index.less @@ -1,279 +1,165 @@ @import '../../style/themes/index'; @import '../../style/mixins/index'; -@full-calendar-prefix-cls: ~'@{ant-prefix}-fullcalendar'; +@calendar-prefix-cls: ~'@{ant-prefix}-picker-calendar'; +@calendar-picker-prefix-cls: ~'@{ant-prefix}-picker'; -.@{full-calendar-prefix-cls} { +.@{calendar-prefix-cls} { .reset-component; + background: @calendar-bg; - border-top: @border-width-base @border-style-base @border-color-base; - outline: none; - - .@{ant-prefix}-select&-year-select { - width: 90px; - - &.@{ant-prefix}-select-sm { - width: 70px; - } - } - - .@{ant-prefix}-select&-month-select { - width: 80px; - margin-left: 8px; - text-align: left; - - &.@{ant-prefix}-select-sm { - width: 70px; - } - } - + // ========================= Header ========================= &-header { + display: flex; + justify-content: flex-end; padding: 11px 16px 11px 0; - text-align: right; - .@{ant-prefix}-select-dropdown { - text-align: left; + .@{calendar-prefix-cls}-year-select { + width: 85px; } - .@{ant-prefix}-radio-group { - margin-left: 8px; - text-align: left; + .@{calendar-prefix-cls}-month-select { + width: 70px; + margin-left: @padding-xs; } - label.@{ant-prefix}-radio-button { - height: 22px; - padding: 0 10px; - line-height: 20px; + .@{calendar-prefix-cls}-mode-switch { + margin-left: @padding-xs; } } - &-date-panel { - position: relative; - outline: none; - } - - &-calendar-body { - padding: 8px 12px; - } - - table { - width: 100%; - max-width: 100%; - height: 256px; - background-color: transparent; - border-collapse: collapse; - } - - table, - th, - td { + .@{calendar-picker-prefix-cls}-panel { border: 0; - } - - td { - position: relative; - } - - &-calendar-table { - margin-bottom: 0; - border-spacing: 0; - } - - &-column-header { - width: 33px; - padding: 0; - line-height: 18px; - text-align: center; - .@{full-calendar-prefix-cls}-column-header-inner { - display: block; - font-weight: normal; - } - } - - &-week-number-header { - .@{full-calendar-prefix-cls}-column-header-inner { - display: none; - } - } - - &-month, - &-date { - text-align: center; - transition: all 0.3s; - } - - &-value { - display: block; - width: 24px; - height: 24px; - margin: 0 auto; - padding: 0; - color: @text-color; - line-height: 24px; - background: transparent; - border-radius: @border-radius-base; - transition: all 0.3s; - - &:hover { - background: @item-hover-bg; - cursor: pointer; - } - - &:active { - color: @text-color-inverse; - background: @primary-color; - } - } - - &-month-panel-cell &-value { - width: 48px; - } - - &-today &-value, - &-month-panel-current-cell &-value { - box-shadow: 0 0 0 1px @primary-color inset; - } - - &-selected-day &-value, - &-month-panel-selected-cell &-value { - color: @text-color-inverse; - background: @primary-color; - } - - &-disabled-cell-first-of-row &-value { - border-top-left-radius: @border-radius-base; - border-bottom-left-radius: @border-radius-base; - } - - &-disabled-cell-last-of-row &-value { - border-top-right-radius: @border-radius-base; - border-bottom-right-radius: @border-radius-base; - } - - &-last-month-cell &-value, - &-next-month-btn-day &-value { - color: @disabled-color; - } - - &-month-panel-table { - width: 100%; - table-layout: fixed; - border-collapse: separate; - } - - &-content { - position: absolute; - bottom: -9px; - left: 0; - width: 100%; - } - - &-fullscreen { - border-top: 0; - } - - &-fullscreen &-table { - table-layout: fixed; - } - - &-fullscreen &-header { - .@{ant-prefix}-radio-group { - margin-left: 16px; - } - label.@{ant-prefix}-radio-button { - height: @input-height-base; - line-height: @input-height-base - 2px; - } - } - - &-fullscreen &-month, - &-fullscreen &-date { - display: block; - height: 116px; - margin: 0 4px; - padding: 4px 8px; - color: @text-color; - text-align: left; - border-top: 2px solid @border-color-split; - transition: background 0.3s; - - &:hover { - background: @item-hover-bg; - cursor: pointer; - } - - &:active { - background: @primary-2; - } - } - - &-fullscreen &-column-header { - padding-right: 12px; - padding-bottom: 5px; - text-align: right; - } - - &-fullscreen &-value { - width: auto; - text-align: right; - background: transparent; - } - - &-fullscreen &-today &-value { - color: @text-color; - } - - &-fullscreen &-month-panel-current-cell &-month, - &-fullscreen &-today &-date { - background: transparent; - border-top-color: @primary-color; - } - - &-fullscreen &-month-panel-current-cell &-value, - &-fullscreen &-today &-value { - box-shadow: none; - } - - &-fullscreen &-month-panel-selected-cell &-month, - &-fullscreen &-selected-day &-date { - background: @primary-1; - } - - &-fullscreen &-month-panel-selected-cell &-value, - &-fullscreen &-selected-day &-value { - color: @primary-color; - } - - &-fullscreen &-last-month-cell &-date, - &-fullscreen &-next-month-btn-day &-date { - color: @disabled-color; - } - - &-fullscreen &-content { - position: static; - width: auto; - height: 88px; - overflow-y: auto; - } - - &-disabled-cell &-date { - &, - &:hover { - cursor: not-allowed; - } - } - - &-disabled-cell:not(&-today) &-date { - &, - &:hover { - background: transparent; - } - } - - &-disabled-cell &-value { - width: auto; - color: @disabled-color; + border-top: @border-width-base @border-style-base @border-color-split; border-radius: 0; - cursor: not-allowed; + + .@{calendar-picker-prefix-cls}-month-panel, + .@{calendar-picker-prefix-cls}-date-panel { + width: auto; + } + + .@{calendar-picker-prefix-cls}-body { + padding: @padding-xs @padding-sm; + } + } + + .@{calendar-picker-prefix-cls}-panel { + .@{calendar-picker-prefix-cls}-content { + width: 100%; + } + } + + // ========================== Mini ========================== + &-mini { + .@{calendar-picker-prefix-cls}-content { + height: 256px; + + th { + height: auto; + padding: 0; + line-height: 18px; + } + } + } + + // ========================== Full ========================== + &-full { + .@{calendar-prefix-cls}-header { + .@{calendar-prefix-cls}-year-select { + width: 90px; + } + + .@{calendar-prefix-cls}-month-select { + width: 80px; + margin-left: @padding-xs; + } + + .@{calendar-prefix-cls}-mode-switch { + margin-left: @padding-md; + } + } + + .@{calendar-picker-prefix-cls}-panel { + display: block; + width: 100%; + text-align: right; + border: 0; + + .@{calendar-picker-prefix-cls}-body { + th, + td { + padding: 0; + } + + th { + height: auto; + padding: 0 12px 5px 0; + line-height: 18px; + } + } + + // Cell + .@{calendar-picker-prefix-cls}-cell { + &::before { + display: none; + } + + &:hover { + .@{calendar-prefix-cls}-date { + background: @item-hover-bg; + } + } + + .@{calendar-prefix-cls}-date-today::before { + display: none; + } + + &-selected, + &-selected:hover { + .@{calendar-prefix-cls}-date, + .@{calendar-prefix-cls}-date-today { + background: @calendar-item-active-bg; + + .@{calendar-prefix-cls}-date-value { + color: @primary-color; + } + } + } + } + + // Cell date + .@{calendar-prefix-cls}-date { + display: block; + width: auto; + height: auto; + margin: 0 @padding-xs / 2; + padding: @padding-xs / 2 @padding-xs 0; + border: 0; + border-top: 2px solid @border-color-split; + border-radius: 0; + transition: background 0.3s; + + &-value { + line-height: 24px; + transition: color 0.3s; + } + + &-content { + position: static; + width: auto; + height: 86px; + overflow-y: auto; + line-height: @line-height-base; + } + + &-today { + border-color: @primary-color; + + .@{calendar-prefix-cls}-date-value { + color: @text-color; + } + } + } + } } } diff --git a/components/config-provider/__tests__/__snapshots__/components.test.js.snap b/components/config-provider/__tests__/__snapshots__/components.test.js.snap index f233cbd27d..59790362b8 100644 --- a/components/config-provider/__tests__/__snapshots__/components.test.js.snap +++ b/components/config-provider/__tests__/__snapshots__/components.test.js.snap @@ -1053,13 +1053,13 @@ exports[`ConfigProvider components Button prefixCls 1`] = ` exports[`ConfigProvider components Calendar configProvider 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
- - - - + - - - - - + + - - - - - + + - - - - - + + - - - - -
-
+
- Jan +
+ Jan +
+
-
-
-
-
+
- Feb +
+ Feb +
+
-
-
-
-
+
- Mar +
+ Mar +
+
-
-
-
-
+
- Apr +
+ Apr +
+
-
-
-
-
+
- May +
+ May +
+
-
-
-
-
+
- Jun +
+ Jun +
+
-
-
-
-
+
- Jul +
+ Jul +
+
-
-
-
-
+
- Aug +
+ Aug +
+
-
-
-
-
+
- Sep +
+ Sep +
+
-
-
-
-
+
- Oct +
+ Oct +
+
-
-
-
-
+
- Nov +
+ Nov +
+
-
-
-
-
+
- Dec +
+ Dec +
+
-
-
-
+ + + + +
@@ -2467,13 +2341,13 @@ exports[`ConfigProvider components Calendar configProvider 1`] = ` exports[`ConfigProvider components Calendar normal 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
- - - - + - - - - - + + - - - - - + + - - - - - + + - - - - -
-
+
- Jan +
+ Jan +
+
-
-
-
-
+
- Feb +
+ Feb +
+
-
-
-
-
+
- Mar +
+ Mar +
+
-
-
-
-
+
- Apr +
+ Apr +
+
-
-
-
-
+
- May +
+ May +
+
-
-
-
-
+
- Jun +
+ Jun +
+
-
-
-
-
+
- Jul +
+ Jul +
+
-
-
-
-
+
- Aug +
+ Aug +
+
-
-
-
-
+
- Sep +
+ Sep +
+
-
-
-
-
+
- Oct +
+ Oct +
+
-
-
-
-
+
- Nov +
+ Nov +
+
-
-
-
-
+
- Dec +
+ Dec +
+
-
-
-
+ + + + +
@@ -3881,13 +3629,13 @@ exports[`ConfigProvider components Calendar normal 1`] = ` exports[`ConfigProvider components Calendar prefixCls 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
- - - - + - - - - - + + - - - - - + + - - - - - + + - - - - -
-
+
- Jan +
+ Jan +
+
-
-
-
-
+
- Feb +
+ Feb +
+
-
-
-
-
+
- Mar +
+ Mar +
+
-
-
-
-
+
- Apr +
+ Apr +
+
-
-
-
-
+
- May +
+ May +
+
-
-
-
-
+
- Jun +
+ Jun +
+
-
-
-
-
+
- Jul +
+ Jul +
+
-
-
-
-
+
- Aug +
+ Aug +
+
-
-
-
-
+
- Sep +
+ Sep +
+
-
-
-
-
+
- Oct +
+ Oct +
+
-
-
-
-
+
- Nov +
+ Nov +
+
-
-
-
-
+
- Dec +
+ Dec +
+
-
-
-
+ + + + +
@@ -6206,257 +5828,306 @@ exports[`ConfigProvider components Comment prefixCls 1`] = ` exports[`ConfigProvider components DatePicker DatePicker configProvider 1`] = `
- -
+
- + +
- +
`; exports[`ConfigProvider components DatePicker DatePicker normal 1`] = `
- -
+
- + +
- +
`; exports[`ConfigProvider components DatePicker DatePicker prefixCls 1`] = `
- -
+
- + +
- +
`; exports[`ConfigProvider components DatePicker MonthPicker configProvider 1`] = `
- -
+
- + +
- +
`; exports[`ConfigProvider components DatePicker MonthPicker normal 1`] = `
- -
+
- + +
- +
`; exports[`ConfigProvider components DatePicker MonthPicker prefixCls 1`] = `
- -
+
- + +
- +
`; exports[`ConfigProvider components DatePicker RangePicker configProvider 1`] = `
- - +
+
- ~ + → +
+
+
+
+ - +
`; exports[`ConfigProvider components DatePicker RangePicker normal 1`] = `
- - +
+
- ~ + → +
+
+
+
+ - +
`; exports[`ConfigProvider components DatePicker RangePicker prefixCls 1`] = `
- - +
+
- ~ + → +
+
+
+
+ - +
`; exports[`ConfigProvider components DatePicker WeekPicker configProvider 1`] = `
- - - + + - - +
+
`; exports[`ConfigProvider components DatePicker WeekPicker normal 1`] = `
- - - + + - - +
+
`; exports[`ConfigProvider components DatePicker WeekPicker prefixCls 1`] = `
- - - + + - - +
+
`; @@ -12965,1087 +12674,1405 @@ exports[`ConfigProvider components Tags prefixCls 1`] = ` exports[`ConfigProvider components TimePicker configProvider 1`] = ` Array [ - - - + - + + - - , +
+
,
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -14058,1087 +14085,1405 @@ Array [ exports[`ConfigProvider components TimePicker normal 1`] = ` Array [ - - - + - + + - - , +
+
,
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -15151,1087 +15496,1405 @@ Array [ exports[`ConfigProvider components TimePicker prefixCls 1`] = ` Array [ - - - + - + + - - , +
+
,
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
diff --git a/components/date-picker/InputIcon.tsx b/components/date-picker/InputIcon.tsx deleted file mode 100644 index 023a01b8d5..0000000000 --- a/components/date-picker/InputIcon.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import * as React from 'react'; -import classNames from 'classnames'; -import { CalendarOutlined } from '@ant-design/icons'; - -export default function InputIcon(props: { suffixIcon: React.ReactNode; prefixCls: string }) { - const { suffixIcon, prefixCls } = props; - return ( - (suffixIcon && - (React.isValidElement<{ className?: string }>(suffixIcon) ? ( - React.cloneElement(suffixIcon, { - className: classNames({ - [suffixIcon.props.className!]: suffixIcon.props.className, - [`${prefixCls}-picker-icon`]: true, - }), - }) - ) : ( - {suffixIcon} - ))) || - ); -} diff --git a/components/date-picker/PickerButton.tsx b/components/date-picker/PickerButton.tsx new file mode 100644 index 0000000000..708f32c6d6 --- /dev/null +++ b/components/date-picker/PickerButton.tsx @@ -0,0 +1,6 @@ +import * as React from 'react'; +import Button, { ButtonProps } from '../button'; + +export default function PickerButton(props: ButtonProps) { + return
,
, +] +`; + +exports[`DatePicker prop locale should works 1`] = ` +Array [ +
+
+ + + + + + + + + + + +
+
, +
+
+
+
+
+
+ + +
+ + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ пo + + вт + + ср + + че + + пе + + сa + + нe +
+
+ 27 +
+
+
+ 28 +
+
+
+ 29 +
+
+
+ 30 +
+
+
+ 31 +
+
+
+ 1 +
+
+
+ 2 +
+
+
+ 3 +
+
+
+ 4 +
+
+
+ 5 +
+
+
+ 6 +
+
+
+ 7 +
+
+
+ 8 +
+
+
+ 9 +
+
+
+ 10 +
+
+
+ 11 +
+
+
+ 12 +
+
+
+ 13 +
+
+
+ 14 +
+
+
+ 15 +
+
+
+ 16 +
+
+
+ 17 +
+
+
+ 18 +
+
+
+ 19 +
+
+
+ 20 +
+
+
+ 21 +
+
+
+ 22 +
+
+
+ 23 +
+
+
+ 24 +
+
+
+ 25 +
+
+
+ 26 +
+
+
+ 27 +
+
+
+ 28 +
+
+
+ 29 +
+
+
+ 30 +
+
+
+ 31 +
+
+
+ 1 +
+
+
+ 2 +
+
+
+ 3 +
+
+
+ 4 +
+
+
+ 5 +
+
+
+ 6 +
+
+
+
+ +
+
+
+
, +] `; diff --git a/components/date-picker/__tests__/__snapshots__/RangePicker.test.js.snap b/components/date-picker/__tests__/__snapshots__/RangePicker.test.js.snap index 5db40e1583..609784bcbd 100644 --- a/components/date-picker/__tests__/__snapshots__/RangePicker.test.js.snap +++ b/components/date-picker/__tests__/__snapshots__/RangePicker.test.js.snap @@ -1,35 +1,44 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`RangePicker customize separator 1`] = ` - - - - test - +
+
+ test +
+
+
+
+ - -`; - -exports[`RangePicker show month panel according to value 1`] = ` -
-
-
-
-
-
-
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - 一 - - - - 二 - - - - 三 - - - - 四 - - - - 五 - - - - 六 - - - - 日 - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
-
-
- - ~ - - -
- -
-
-
-
-`; - -exports[`RangePicker switch to corresponding month panel when click presetted ranges 1`] = ` -
-
-
-
-
-
-
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - 一 - - - - 二 - - - - 三 - - - - 四 - - - - 五 - - - - 六 - - - - 日 - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
-
-
- - ~ - - -
- -
-
-
`; diff --git a/components/date-picker/__tests__/__snapshots__/WeekPicker.test.js.snap b/components/date-picker/__tests__/__snapshots__/WeekPicker.test.js.snap index 782aed9539..00bbec2f59 100644 --- a/components/date-picker/__tests__/__snapshots__/WeekPicker.test.js.snap +++ b/components/date-picker/__tests__/__snapshots__/WeekPicker.test.js.snap @@ -1,826 +1,43 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`WeekPicker should support dateRender 1`] = ` -
- -
-`; - exports[`WeekPicker should support style prop 1`] = ` - - - + + - - +
+
`; diff --git a/components/date-picker/__tests__/__snapshots__/demo.test.js.snap b/components/date-picker/__tests__/__snapshots__/demo.test.js.snap index f57f1b5f9b..95ad371172 100644 --- a/components/date-picker/__tests__/__snapshots__/demo.test.js.snap +++ b/components/date-picker/__tests__/__snapshots__/demo.test.js.snap @@ -2,221 +2,246 @@ exports[`renders ./components/date-picker/demo/basic.md correctly 1`] = `
- -
+
- + +
- +

- -
- - - - -
-
-
- - - - ~ - - - - - - - -
- - - - + + - -
+
+
+
+
+
+ + + + + + +
+
+
+
+
+ + + + + + +
+
`; exports[`renders ./components/date-picker/demo/date-render.md correctly 1`] = `
- -
- - - - -
-
- - + + + + + + +
+
+
+
+
+
- ~ + → +
+
+
+
+ - +
`; exports[`renders ./components/date-picker/demo/disabled.md correctly 1`] = `
- -
- - - - -
-
-
- -
- - - - -
-
-
- - + + + + + + +
+
+
+
+
+ + + + + + +
+
+
+
+
+
+
- ~ + → +
+
+
+
+ - +
+
+
+
+ +
+
+ + → + +
+
+ +
+
+ + + + + + + + + + +
`; exports[`renders ./components/date-picker/demo/disabled-date.md correctly 1`] = `
- -
- - - - -
-
-
- -
- - - - -
-
-
- - + + + + + + +
+
+
+
+
+ + + + + + +
+
+
+
+
+
+
- ~ + → +
+
+
+
+ - +
`; exports[`renders ./components/date-picker/demo/extra-footer.md correctly 1`] = `
- -
- - - - -
-
- -
- - - - -
-
- - + + + + + + +
+
+
+
+
+ + + + + + +
+
+
+
+
+
+
- ~ + → +
+
+
+
+ - - +
+
- +
+
- ~ + → +
+
+
+
+ - - +
+
-
+
- + +
- +
`; exports[`renders ./components/date-picker/demo/format.md correctly 1`] = `
- -
- - - - - - - -
-
-
- -
- - - - - - - -
-
-
- -
- - - - - - - -
-
-
- - + + + + + + + + + + + +
+
+
+
+
+ + + + + + + + + + + +
+
+
+
+
+ + + + + + + + + + + +
+
+
+
+
+
+
- ~ + → +
+
- - - +
+
+ - + + + + + +
`; exports[`renders ./components/date-picker/demo/mode.md correctly 1`] = `
- -
- - - - -
-
-
- - + + + + + + +
+
+
+
+
+
+
- ~ + → +
+
+
+
+ - +
`; exports[`renders ./components/date-picker/demo/presetted-ranges.md correctly 1`] = `
- - +
+
- ~ + → +
+
+
+
+ - +

- - +
+
- ~ + → +
+
+
+
+ - +
+
+`; + +exports[`renders ./components/date-picker/demo/range-picker.md correctly 1`] = ` +
+
+
+ +
+
+ + → + +
+
+ +
+
+ + + + + +
+
+
+
+ +
+
+ + → + +
+
+ +
+
+ + + + + +
+
+
+
+ +
+
+ + → + +
+
+ +
+
+ + + + + +
+
+
+
+ +
+
+ + → + +
+
+ +
+
+ + + + + +
+
+
+
+ +
+
+ + → + +
+
+ +
+
+ + + + + +
`; @@ -1174,136 +1780,126 @@ exports[`renders ./components/date-picker/demo/size.md correctly 1`] = `


- -
+
- + +
- +

- -
- - - - -
-
-
- - + + + + + + +
+
+
+
+
+
+
- ~ + → - - - - - - -
- - +
+
+
+ - +
+
+
+
+ + + + + + +
+
`; exports[`renders ./components/date-picker/demo/start-end.md correctly 1`] = `
- -
+
- + +
- - +
-
+
- + +
- +
`; exports[`renders ./components/date-picker/demo/suffix.md correctly 1`] = `
- -
+
- + +
- +

- -
+
- + +
- +

- - +
+
- ~ + → - - - - - - -
- - +
+
+
+ - +

- -
+
+ + + + + + +
+
+
+
+
ab
- +

- -
+
ab
- +

- - +
+
- ~ + → - - - ab - - - -
- - +
+ +
+
+ + ab + +
+
+
+
ab - - +
+
`; exports[`renders ./components/date-picker/demo/time.md correctly 1`] = `
- -
- - - - -
-
-
- - - ~ + + + +
+
+
+
+
+
+
+ + → + +
+
+ +
+
+ - +
`; diff --git a/components/date-picker/__tests__/__snapshots__/other.test.js.snap b/components/date-picker/__tests__/__snapshots__/other.test.js.snap index 78765228d9..c25add3453 100644 --- a/components/date-picker/__tests__/__snapshots__/other.test.js.snap +++ b/components/date-picker/__tests__/__snapshots__/other.test.js.snap @@ -3,260 +3,184 @@ exports[`MonthPicker and WeekPicker render MonthPicker 1`] = `
-
- - - + - @@ -268,703 +192,583 @@ exports[`MonthPicker and WeekPicker render MonthPicker 1`] = ` exports[`MonthPicker and WeekPicker render WeekPicker 1`] = `
-
- - + - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- - x - +
+ + Su - - 一 - + + Mo - - 二 - + + Tu - - 三 - + + We - - 四 - + + Th - - 五 - + + Fr - - 六 - - - - 日 - + + Sa
- 52 - -
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
-
- 1 -
-
-
-
-
- 2 -
-
-
1
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
- 2 - -
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
- 3 - -
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
- 4 - -
- 24 -
-
-
- 25 -
-
-
26
27
28
29
30
- 5 -
31
1
+ 2 +
2
3
4
5
6
+
+ 7 +
+
+
+ 8 +
+
+ 3 + +
+ 9 +
+
+
+ 10 +
+
+
+ 11 +
+
+
+ 12 +
+
+
+ 13 +
+
+
+ 14 +
+
+
+ 15 +
+
+ 4 + +
+ 16 +
+
+
+ 17 +
+
+
+ 18 +
+
+
+ 19 +
+
+
+ 20 +
+
+
+ 21 +
+
+
+ 22 +
+
+ 5 + +
+ 23 +
+
+
+ 24 +
+
+
+ 25 +
+
+
+ 26 +
+
+
+ 27 +
+
+
+ 28 +
+
+
+ 29 +
+
+ 6 + +
+ 30 +
+
+
+ 31 +
+
+
+ 1 +
+
+
+ 2 +
+
+
+ 3 +
+
+
+ 4 +
+
+
+ 5 +
+
@@ -977,228 +781,261 @@ exports[`MonthPicker and WeekPicker render WeekPicker 1`] = ` `; exports[`Picker format by locale date 1`] = ` - -
+
- + + - + +
- +
`; exports[`Picker format by locale dateTime 1`] = ` - -
+
- + + - + +
- +
`; exports[`Picker format by locale month 1`] = ` - -
+
- + + - + +
- +
`; exports[`Picker format by locale week 1`] = ` - - - + + - + + -
-
+
+
`; diff --git a/components/date-picker/__tests__/focus.test.js b/components/date-picker/__tests__/focus.test.js deleted file mode 100644 index e02358ffec..0000000000 --- a/components/date-picker/__tests__/focus.test.js +++ /dev/null @@ -1,89 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; -import moment from 'moment'; -import MockDate from 'mockdate'; -import DatePicker from '..'; -import Input from '../../input'; -import { selectDate, openPanel } from './utils'; - -const { MonthPicker, WeekPicker, RangePicker } = DatePicker; - -describe('DatePicker', () => { - beforeEach(() => { - MockDate.set(moment('2016-11-22')); - }); - - afterEach(() => { - MockDate.reset(); - }); - - it('should focus trigger input after select date in DatePicker', () => { - const wrapper = mount(); - openPanel(wrapper); - selectDate(wrapper, moment('2016-11-23')); - expect(wrapper.find('.ant-calendar-picker-input').getDOMNode()).toBe(document.activeElement); - }); - - it('should focus trigger input after select date in RangePicker', () => { - const wrapper = mount(); - openPanel(wrapper); - selectDate(wrapper, moment('2016-11-23'), 0); - selectDate(wrapper, moment('2016-11-28'), 1); - expect(wrapper.find('.ant-calendar-picker').getDOMNode()).toBe(document.activeElement); - }); - - it('should focus trigger input after select date in MonthPicker', () => { - const wrapper = mount(); - openPanel(wrapper); - wrapper - .find('.ant-calendar-month-panel-month') - .first() - .simulate('click'); - wrapper - .find('.ant-calendar-month-panel-cell') - .at(6) - .hasClass('ant-calendar-month-panel-selected-cell'); - expect(wrapper.find('.ant-calendar-picker-input').getDOMNode()).toBe(document.activeElement); - }); - - it('should focus trigger input after select date in WeekPicker', () => { - const wrapper = mount(); - openPanel(wrapper); - selectDate(wrapper, moment('2016-11-23')); - expect(wrapper.find('.ant-calendar-picker-input').getDOMNode()).toBe(document.activeElement); - }); - - it('should not auto focus trigger input when open prop is true in DatePicker', () => { - const wrapper = mount(); - const wrapperInput = mount(); - wrapperInput.instance().select(); - expect(wrapper.find('.ant-calendar-picker-input').getDOMNode()).not.toBe( - document.activeElement, - ); - }); - - it('should not auto focus trigger input when open prop is true in RangePicker', () => { - const wrapper = mount(); - const wrapperInput = mount(); - wrapperInput.instance().select(); - expect(wrapper.find('.ant-calendar-picker').getDOMNode()).not.toBe(document.activeElement); - }); - - it('should not auto focus trigger input when open prop is true in WeekPicker', () => { - const wrapper = mount(); - const wrapperInput = mount(); - wrapperInput.instance().select(); - expect(wrapper.find('.ant-calendar-picker-input').getDOMNode()).not.toBe( - document.activeElement, - ); - }); - - it('should not auto focus trigger input when open prop is true in MonthPicker', () => { - const wrapper = mount(); - const wrapperInput = mount(); - wrapperInput.instance().select(); - expect(wrapper.find('.ant-calendar-picker-input').getDOMNode()).not.toBe( - document.activeElement, - ); - }); -}); diff --git a/components/date-picker/__tests__/invalid.test.js b/components/date-picker/__tests__/invalid.test.js deleted file mode 100644 index ff8ff6d6c5..0000000000 --- a/components/date-picker/__tests__/invalid.test.js +++ /dev/null @@ -1,52 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; -import DatePicker from '..'; - -const { MonthPicker, WeekPicker, RangePicker } = DatePicker; - -describe('invalid value or defaultValue', () => { - beforeAll(() => { - jest.spyOn(console, 'error').mockImplementation(() => undefined); - }); - - afterAll(() => { - // eslint-disable-next-line no-console - console.error.mockRestore(); - }); - - it('DatePicker should throw error when value or defaultValue is not moment object', () => { - expect(() => { - mount(); - }).toThrow('The value/defaultValue of DatePicker or MonthPicker must be a moment object after `antd@2.0`, see: https://u.ant.design/date-picker-value'); - expect(() => { - mount(); - }).toThrow('The value/defaultValue of DatePicker or MonthPicker must be a moment object after `antd@2.0`, see: https://u.ant.design/date-picker-value') - }); - - it('WeekPicker should throw error when value or defaultValue is not moment object', () => { - expect(() => { - mount(); - }).toThrow('The value/defaultValue of WeekPicker must be a moment object after `antd@2.0`, see: https://u.ant.design/date-picker-value'); - expect(() => { - mount(); - }).toThrow('The value/defaultValue of WeekPicker must be a moment object after `antd@2.0`, see: https://u.ant.design/date-picker-value'); - }); - - it('RangePicker should throw error when value or defaultValue is not moment object', () => { - expect(() => { - mount(); - }).toThrow('The value/defaultValue of RangePicker must be a moment object array after `antd@2.0`, see: https://u.ant.design/date-picker-value'); - expect(() => { - mount(); - }).toThrow('The value/defaultValue of RangePicker must be a moment object array after `antd@2.0`, see: https://u.ant.design/date-picker-value') - }); - - it('MonthPicker should throw error when value or defaultValue is not moment object', () => { - expect(() => { - mount(); - }).toThrow('The value/defaultValue of DatePicker or MonthPicker must be a moment object after `antd@2.0`, see: https://u.ant.design/date-picker-value'); - expect(() => { - mount(); - }).toThrow('The value/defaultValue of DatePicker or MonthPicker must be a moment object after `antd@2.0`, see: https://u.ant.design/date-picker-value') - }); -}); diff --git a/components/date-picker/__tests__/showTime.test.js b/components/date-picker/__tests__/showTime.test.js deleted file mode 100644 index d8463d02b4..0000000000 --- a/components/date-picker/__tests__/showTime.test.js +++ /dev/null @@ -1,155 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; -import moment from 'moment'; -import DatePicker from '..'; - -const { RangePicker } = DatePicker; - -describe('DatePicker with showTime', () => { - it('should trigger onChange when select value', () => { - const onChangeFn = jest.fn(); - const onOpenChangeFn = jest.fn(); - const wrapper = mount( - , - ); - - const calendarWrapper = mount( - wrapper - .find('Trigger') - .instance() - .getComponent(), - ); - calendarWrapper - .find('.ant-calendar-date') - .at(0) - .simulate('click'); - expect(onChangeFn).toHaveBeenCalled(); - expect(onOpenChangeFn).not.toHaveBeenCalled(); - }); - - it('should trigger onOk when press ok button', () => { - const onOkFn = jest.fn(); - const onOpenChangeFn = jest.fn(); - const onChangeFn = jest.fn(); - - const wrapper = mount( - , - ); - - const calendarWrapper = mount( - wrapper - .find('Trigger') - .instance() - .getComponent(), - ); - calendarWrapper.find('.ant-calendar-ok-btn').simulate('click'); - expect(onOkFn).toHaveBeenCalled(); - expect(onOpenChangeFn).toHaveBeenCalledWith(false); - expect(onChangeFn).not.toHaveBeenCalled(); - }); - - it('should trigger onChange when click Now link', () => { - const onOpenChangeFn = jest.fn(); - const onChangeFn = jest.fn(); - - const wrapper = mount( - , - ); - - const calendarWrapper = mount( - wrapper - .find('Trigger') - .instance() - .getComponent(), - ); - calendarWrapper.find('.ant-calendar-today-btn').simulate('click'); - expect(onOpenChangeFn).toHaveBeenCalledWith(false); - expect(onChangeFn).toHaveBeenCalled(); - }); - - it('should have correct className when use12Hours is true', () => { - const wrapper = mount(); - const calendarWrapper = mount( - wrapper - .find('Trigger') - .instance() - .getComponent(), - ); - expect(calendarWrapper.find('.ant-calendar-time-picker-column-4').length).toBe(0); - calendarWrapper - .find('.ant-calendar-time-picker-btn') - .at(0) - .simulate('click'); - expect(calendarWrapper.find('.ant-calendar-time-picker-column-4').hostNodes().length).toBe(1); - }); -}); - -describe('RangePicker with showTime', () => { - it('should trigger onChange when select value', () => { - const onChangeFn = jest.fn(); - const onOpenChangeFn = jest.fn(); - const wrapper = mount( - , - ); - - function findNode(selector) { - return wrapper.find('Trigger').find(selector); - } - - expect( - findNode('.ant-calendar-time-picker-btn').hasClass('ant-calendar-time-picker-btn-disabled'), - ).toBe(true); - expect(findNode('.ant-calendar-ok-btn').hasClass('ant-calendar-ok-btn-disabled')).toBe(true); - findNode('.ant-calendar-date') - .at(10) - .simulate('click'); - findNode('.ant-calendar-date') - .at(11) - .simulate('click'); - - expect( - findNode('.ant-calendar-time-picker-btn').hasClass('ant-calendar-time-picker-btn-disabled'), - ).toBe(false); - expect(findNode('.ant-calendar-ok-btn').hasClass('ant-calendar-ok-btn-disabled')).toBe(false); - expect(onChangeFn).toHaveBeenCalled(); - expect(onOpenChangeFn).not.toHaveBeenCalled(); - }); - - it('should trigger onOk when press ok button', () => { - const onOkFn = jest.fn(); - const onChangeFn = jest.fn(); - const onOpenChangeFn = jest.fn(); - const wrapper = mount( - , - ); - - function findNode(selector) { - return wrapper.find('Trigger').find(selector); - } - - findNode('.ant-calendar-date') - .at(10) - .simulate('click'); - findNode('.ant-calendar-date') - .at(11) - .simulate('click'); - onChangeFn.mockClear(); - findNode('.ant-calendar-ok-btn').simulate('click'); - expect(onOkFn).toHaveBeenCalled(); - expect(onOpenChangeFn).toHaveBeenCalledWith(false); - expect(onChangeFn).not.toHaveBeenCalled(); - }); -}); diff --git a/components/date-picker/__tests__/utils.js b/components/date-picker/__tests__/utils.js index d3472c216e..51a4288601 100644 --- a/components/date-picker/__tests__/utils.js +++ b/components/date-picker/__tests__/utils.js @@ -31,3 +31,38 @@ export function nextYear(wrapper) { export function nextMonth(wrapper) { wrapper.find('.ant-calendar-next-month-btn').simulate('click'); } + +export function openPicker(wrapper, index = 0) { + wrapper + .find('input') + .at(index) + .simulate('mousedown') + .simulate('focus'); +} +export function closePicker(wrapper, index = 0) { + wrapper + .find('input') + .at(index) + .simulate('blur'); +} + +export function selectCell(wrapper, text, index = 0) { + let matchCell; + + wrapper + .find('table') + .at(index) + .find('td') + .forEach(td => { + if (td.text() === String(text) && td.props().className.includes('-in-view')) { + matchCell = td; + td.simulate('click'); + } + }); + + if (!matchCell) { + throw new Error('Cell not match in picker panel.'); + } + + return matchCell; +} diff --git a/components/date-picker/createPicker.tsx b/components/date-picker/createPicker.tsx deleted file mode 100644 index 7d4f4f40d8..0000000000 --- a/components/date-picker/createPicker.tsx +++ /dev/null @@ -1,275 +0,0 @@ -import * as React from 'react'; -import * as moment from 'moment'; -import { polyfill } from 'react-lifecycles-compat'; -import MonthCalendar from 'rc-calendar/lib/MonthCalendar'; -import RcDatePicker from 'rc-calendar/lib/Picker'; -import classNames from 'classnames'; -import omit from 'omit.js'; -import { CloseCircleFilled, CalendarOutlined } from '@ant-design/icons'; - -import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; -import warning from '../_util/warning'; -import interopDefault from '../_util/interopDefault'; -import getDataOrAriaProps from '../_util/getDataOrAriaProps'; -import { formatDate } from './utils'; - -export interface PickerProps { - value?: moment.Moment; - open?: boolean; - prefixCls: string; -} - -export interface PickerState { - open: boolean; - value: moment.Moment | null; - showDate: moment.Moment | null; -} - -export default function createPicker(TheCalendar: React.ComponentClass): any { - class CalenderWrapper extends React.Component { - static defaultProps = { - allowClear: true, - showToday: true, - }; - - static getDerivedStateFromProps(nextProps: PickerProps, prevState: PickerState) { - const state: Partial = {}; - let { open } = prevState; - - if ('open' in nextProps) { - state.open = nextProps.open; - open = nextProps.open || false; - } - if ('value' in nextProps) { - state.value = nextProps.value; - if ( - nextProps.value !== prevState.value || - (!open && nextProps.value !== prevState.showDate) - ) { - state.showDate = nextProps.value; - } - } - return Object.keys(state).length > 0 ? state : null; - } - - private input: any; - - private prefixCls?: string; - - constructor(props: any) { - super(props); - const value = props.value || props.defaultValue; - if (value && !interopDefault(moment).isMoment(value)) { - throw new Error( - 'The value/defaultValue of DatePicker or MonthPicker must be ' + - 'a moment object after `antd@2.0`, see: https://u.ant.design/date-picker-value', - ); - } - this.state = { - value, - showDate: value, - open: false, - }; - } - - componentDidUpdate(_: PickerProps, prevState: PickerState) { - if (!('open' in this.props) && prevState.open && !this.state.open) { - this.focus(); - } - } - - saveInput = (node: any) => { - this.input = node; - }; - - clearSelection = (e: React.MouseEvent) => { - e.preventDefault(); - e.stopPropagation(); - this.handleChange(null); - }; - - handleChange = (value: moment.Moment | null) => { - const { props } = this; - if (!('value' in props)) { - this.setState({ - value, - showDate: value, - }); - } - props.onChange(value, formatDate(value, props.format)); - }; - - handleCalendarChange = (value: moment.Moment) => { - this.setState({ showDate: value }); - }; - - handleOpenChange = (open: boolean) => { - const { onOpenChange } = this.props; - if (!('open' in this.props)) { - this.setState({ open }); - } - - if (onOpenChange) { - onOpenChange(open); - } - }; - - focus() { - this.input.focus(); - } - - blur() { - this.input.blur(); - } - - renderFooter = (...args: any[]) => { - const { renderExtraFooter } = this.props; - const { prefixCls } = this; - return renderExtraFooter ? ( -
{renderExtraFooter(...args)}
- ) : null; - }; - - renderPicker = ({ getPrefixCls }: ConfigConsumerProps) => { - const { value, showDate, open } = this.state; - const props = omit(this.props, ['onChange']); - const { prefixCls: customizePrefixCls, locale, localeCode, suffixIcon } = props; - - const prefixCls = getPrefixCls('calendar', customizePrefixCls); - // To support old version react. - // Have to add prefixCls on the instance. - // https://github.com/facebook/react/issues/12397 - this.prefixCls = prefixCls; - - const placeholder = 'placeholder' in props ? props.placeholder : locale.lang.placeholder; - - const disabledTime = props.showTime ? props.disabledTime : null; - - const calendarClassName = classNames({ - [`${prefixCls}-time`]: props.showTime, - [`${prefixCls}-month`]: MonthCalendar === TheCalendar, - }); - - if (value && localeCode) { - value.locale(localeCode); - } - - let pickerProps: Object = {}; - let calendarProps: any = {}; - const pickerStyle: { minWidth?: number } = {}; - if (props.showTime) { - calendarProps = { - // fix https://github.com/ant-design/ant-design/issues/1902 - onSelect: this.handleChange, - }; - pickerStyle.minWidth = 195; - } else { - pickerProps = { - onChange: this.handleChange, - }; - } - if ('mode' in props) { - calendarProps.mode = props.mode; - } - - warning( - !('onOK' in props), - 'DatePicker', - 'It should be `DatePicker[onOk]` or `MonthPicker[onOk]`, instead of `onOK`!', - ); - const calendar = ( - - ); - - const clearIcon = - !props.disabled && props.allowClear && value ? ( - - ) : null; - - const inputIcon = (suffixIcon && - (React.isValidElement<{ className?: string }>(suffixIcon) ? ( - React.cloneElement(suffixIcon, { - className: classNames({ - [suffixIcon.props.className!]: suffixIcon.props.className, - [`${prefixCls}-picker-icon`]: true, - }), - }) - ) : ( - {suffixIcon} - ))) || ; - - const dataOrAriaProps = getDataOrAriaProps(props); - const input = ({ value: inputValue }: { value: moment.Moment | null }) => ( -
- - {clearIcon} - {inputIcon} -
- ); - - return ( - - - {input} - - - ); - }; - - render() { - return {this.renderPicker}; - } - } - polyfill(CalenderWrapper); - - return CalenderWrapper; -} diff --git a/components/date-picker/demo/basic.md b/components/date-picker/demo/basic.md index f29d45215c..d485041f18 100644 --- a/components/date-picker/demo/basic.md +++ b/components/date-picker/demo/basic.md @@ -16,8 +16,6 @@ Basic use case. Users can select or input a date in panel. ```jsx import { DatePicker } from 'antd'; -const { MonthPicker, RangePicker, WeekPicker } = DatePicker; - function onChange(date, dateString) { console.log(date, dateString); } @@ -26,11 +24,11 @@ ReactDOM.render(

- +
- +
- +
, mountNode, ); diff --git a/components/date-picker/demo/disabled-date.md b/components/date-picker/demo/disabled-date.md index 5b330ed8d6..ee2cba2d05 100644 --- a/components/date-picker/demo/disabled-date.md +++ b/components/date-picker/demo/disabled-date.md @@ -17,7 +17,7 @@ Disabled part of dates and time by `disabledDate` and `disabledTime` respectivel import moment from 'moment'; import { DatePicker } from 'antd'; -const { MonthPicker, RangePicker } = DatePicker; +const { RangePicker } = DatePicker; function range(start, end) { const result = []; @@ -64,7 +64,7 @@ ReactDOM.render( showTime={{ defaultValue: moment('00:00:00', 'HH:mm:ss') }} />
- +
+
+
, mountNode, ); diff --git a/components/date-picker/demo/extra-footer.md b/components/date-picker/demo/extra-footer.md index c37481cc41..75489dd2d1 100644 --- a/components/date-picker/demo/extra-footer.md +++ b/components/date-picker/demo/extra-footer.md @@ -16,15 +16,19 @@ Render extra footer in panel for customized requirements. ```jsx import { DatePicker } from 'antd'; -const { RangePicker, MonthPicker } = DatePicker; +const { RangePicker } = DatePicker; ReactDOM.render(
'extra footer'} /> +
'extra footer'} showTime /> +
'extra footer'} /> +
'extra footer'} showTime /> - 'extra footer'} placeholder="Select month" /> +
+ 'extra footer'} picker="month" />
, mountNode, ); diff --git a/components/date-picker/demo/format.md b/components/date-picker/demo/format.md index 6189914364..f2104bcdbd 100644 --- a/components/date-picker/demo/format.md +++ b/components/date-picker/demo/format.md @@ -1,5 +1,5 @@ --- -order: 1 +order: 2 title: zh-CN: 日期格式 en-US: Date Format @@ -17,7 +17,7 @@ We can set the date format by `format`. import { DatePicker } from 'antd'; import moment from 'moment'; -const { MonthPicker, RangePicker } = DatePicker; +const { RangePicker } = DatePicker; const dateFormat = 'YYYY/MM/DD'; const monthFormat = 'YYYY/MM'; @@ -30,7 +30,7 @@ ReactDOM.render(

- +
+ +
+ +
+ +
+ +
+ +
, + mountNode, +); +``` diff --git a/components/date-picker/demo/size.md b/components/date-picker/demo/size.md index 4f61671aee..a6170a40bb 100644 --- a/components/date-picker/demo/size.md +++ b/components/date-picker/demo/size.md @@ -1,5 +1,5 @@ --- -order: 2 +order: 11 title: zh-CN: 三种大小 en-US: Three Sizes @@ -16,7 +16,7 @@ The input box comes in three sizes. `default` will be used if `size` is omitted. ```jsx import { DatePicker, Radio } from 'antd'; -const { MonthPicker, RangePicker, WeekPicker } = DatePicker; +const { RangePicker } = DatePicker; class PickerSizesDemo extends React.Component { state = { @@ -40,11 +40,11 @@ class PickerSizesDemo extends React.Component {

- +

- +
); } diff --git a/components/date-picker/demo/start-end.md b/components/date-picker/demo/start-end.md index 68805c2793..821b5e8c14 100644 --- a/components/date-picker/demo/start-end.md +++ b/components/date-picker/demo/start-end.md @@ -1,8 +1,9 @@ --- -order: 6 +order: 99 title: zh-CN: 自定义日期范围选择 en-US: Customized Range Picker +debug: true --- ## zh-CN diff --git a/components/date-picker/demo/suffix.md b/components/date-picker/demo/suffix.md index 75e40e4f0d..a50c5090f1 100644 --- a/components/date-picker/demo/suffix.md +++ b/components/date-picker/demo/suffix.md @@ -1,5 +1,5 @@ --- -order: 13 +order: 99 debug: true title: zh-CN: 后缀图标 @@ -19,7 +19,7 @@ import { DatePicker } from 'antd'; import { SmileOutlined } from '@ant-design/icons'; const smileIcon = ; -const { MonthPicker, RangePicker, WeekPicker } = DatePicker; +const { RangePicker } = DatePicker; function onChange(date, dateString) { console.log(date, dateString); @@ -29,19 +29,19 @@ ReactDOM.render(

- +

- +

- +

- +
, mountNode, ); diff --git a/components/date-picker/demo/time.md b/components/date-picker/demo/time.md index a4a33963a9..5c25d6cd45 100644 --- a/components/date-picker/demo/time.md +++ b/components/date-picker/demo/time.md @@ -29,12 +29,11 @@ function onOk(value) { ReactDOM.render(
- +
diff --git a/components/date-picker/generatePicker.tsx b/components/date-picker/generatePicker.tsx new file mode 100644 index 0000000000..130b8e5a85 --- /dev/null +++ b/components/date-picker/generatePicker.tsx @@ -0,0 +1,317 @@ +import * as React from 'react'; +import classNames from 'classnames'; +import RCPicker, { RangePicker as RCRangePicker } from 'rc-picker'; +import { GenerateConfig } from 'rc-picker/lib/generate/index'; +import { + PickerBaseProps as RCPickerBaseProps, + PickerDateProps as RCPickerDateProps, + PickerTimeProps as RCPickerTimeProps, +} from 'rc-picker/lib/Picker'; +import { SharedTimeProps } from 'rc-picker/lib/panels/TimePanel'; +import { + RangePickerBaseProps as RCRangePickerBaseProps, + RangePickerDateProps as RCRangePickerDateProps, + RangePickerTimeProps as RCRangePickerTimeProps, +} from 'rc-picker/lib/RangePicker'; +import { PickerMode } from 'rc-picker/lib/interface'; +import { CalendarOutlined, ClockCircleOutlined, CloseCircleFilled } from '@ant-design/icons'; +import { ConfigContext, ConfigConsumerProps } from '../config-provider'; +import LocaleReceiver from '../locale-provider/LocaleReceiver'; +import enUS from './locale/en_US'; +import { getPlaceholder, getRangePlaceholder } from './util'; +import PickerButton from './PickerButton'; +import PickerTag from './PickerTag'; + +const Components = { button: PickerButton, rangeItem: PickerTag }; + +function toArray(list: T | T[]): T[] { + if (!list) { + return []; + } + return Array.isArray(list) ? list : [list]; +} + +function getTimeProps( + props: { format?: string; picker?: PickerMode } & SharedTimeProps, +) { + const { format, picker, showHour, showMinute, showSecond, use12Hours } = props; + + const firstFormat = toArray(format)[0]; + const showTimeObj: SharedTimeProps = { ...props }; + + if (firstFormat) { + if (!firstFormat.includes('s') && showSecond === undefined) { + showTimeObj.showSecond = false; + } + if (!firstFormat.includes('m') && showMinute === undefined) { + showTimeObj.showMinute = false; + } + if (!firstFormat.includes('H') && !firstFormat.includes('h') && showHour === undefined) { + showTimeObj.showHour = false; + } + + if ((firstFormat.includes('a') || firstFormat.includes('A')) && use12Hours === undefined) { + showTimeObj.use12Hours = true; + } + } + + if (picker === 'time') { + return showTimeObj; + } + + return { + showTime: showTimeObj, + }; +} + +type InjectDefaultProps = Omit< + Props, + | 'locale' + | 'generateConfig' + | 'prevIcon' + | 'nextIcon' + | 'superPrevIcon' + | 'superNextIcon' + | 'hideHeader' + | 'components' +> & { + locale?: typeof enUS; + size?: 'large' | 'default' | 'small'; +}; + +// Picker Props +export type PickerBaseProps = InjectDefaultProps>; +export type PickerDateProps = InjectDefaultProps>; +export type PickerTimeProps = InjectDefaultProps>; + +export type PickerProps = + | PickerBaseProps + | PickerDateProps + | PickerTimeProps; + +// Range Picker Props +export type RangePickerBaseProps = InjectDefaultProps>; +export type RangePickerDateProps = InjectDefaultProps>; +export type RangePickerTimeProps = InjectDefaultProps>; + +export type RangePickerProps = + | RangePickerBaseProps + | RangePickerDateProps + | RangePickerTimeProps; + +function generatePicker(generateConfig: GenerateConfig) { + // =========================== Picker =========================== + type DatePickerProps = PickerProps; + + function getPicker( + picker?: PickerMode, + displayName?: string, + ) { + class Picker extends React.Component { + static contextType = ConfigContext; + + static displayName: string; + + context: ConfigConsumerProps; + + pickerRef = React.createRef>(); + + focus = () => { + if (this.pickerRef.current) { + this.pickerRef.current.focus(); + } + }; + + blur = () => { + if (this.pickerRef.current) { + this.pickerRef.current.blur(); + } + }; + + getDefaultLocale = () => { + const { locale } = this.props; + const result = { + ...enUS, + ...locale, + }; + result.lang = { + ...result.lang, + ...((locale || {}) as any).lang, + }; + return result; + }; + + renderPicker = (locale: any) => { + const { getPrefixCls } = this.context; + const { prefixCls: customizePrefixCls, className, size, ...restProps } = this.props; + const { format, showTime } = this.props as any; + const prefixCls = getPrefixCls('picker', customizePrefixCls); + + const additionalProps = { + showToday: true, + }; + + let additionalOverrideProps: any = {}; + if (picker) { + additionalOverrideProps.picker = picker; + } + const mergedPicker = picker || this.props.picker; + + additionalOverrideProps = { + ...additionalOverrideProps, + ...(showTime ? getTimeProps({ format, picker: mergedPicker, ...showTime }) : {}), + ...(mergedPicker === 'time' + ? getTimeProps({ format, ...this.props, picker: mergedPicker }) + : {}), + }; + + return ( + + ref={this.pickerRef} + placeholder={getPlaceholder(mergedPicker, locale)} + suffixIcon={mergedPicker === 'time' ? : } + clearIcon={} + allowClear + transitionName="slide-up" + {...additionalProps} + {...restProps} + {...additionalOverrideProps} + locale={locale!.lang} + className={classNames(className, { + [`${prefixCls}-${size}`]: size, + })} + prefixCls={prefixCls} + generateConfig={generateConfig} + prevIcon={} + nextIcon={} + superPrevIcon={} + superNextIcon={} + components={Components} + /> + ); + }; + + render() { + return ( + + {this.renderPicker} + + ); + } + } + + if (displayName) { + Picker.displayName = displayName; + } + + return Picker as React.ComponentClass; + } + + const DatePicker = getPicker(); + const WeekPicker = getPicker, 'picker'>>('week', 'WeekPicker'); + const MonthPicker = getPicker, 'picker'>>('month', 'MonthPicker'); + const YearPicker = getPicker, 'picker'>>('year', 'YearPicker'); + const TimePicker = getPicker, 'picker'>>('time', 'TimePicker'); + + // ======================== Range Picker ======================== + class RangePicker extends React.Component> { + static contextType = ConfigContext; + + context: ConfigConsumerProps; + + pickerRef = React.createRef>(); + + focus = () => { + if (this.pickerRef.current) { + this.pickerRef.current.focus(); + } + }; + + blur = () => { + if (this.pickerRef.current) { + this.pickerRef.current.blur(); + } + }; + + getDefaultLocale = () => { + const { locale } = this.props; + const result = { + ...enUS, + ...locale, + }; + result.lang = { + ...result.lang, + ...((locale || {}) as any).lang, + }; + return result; + }; + + renderPicker = (locale: any) => { + const { getPrefixCls } = this.context; + const { prefixCls: customizePrefixCls, className, size, ...restProps } = this.props; + const { format, showTime, picker } = this.props as any; + const prefixCls = getPrefixCls('picker', customizePrefixCls); + + let additionalOverrideProps: any = {}; + + additionalOverrideProps = { + ...additionalOverrideProps, + ...(showTime ? getTimeProps({ format, picker, ...showTime }) : {}), + ...(picker === 'time' ? getTimeProps({ format, ...this.props, picker }) : {}), + }; + + return ( + + separator={} + ref={this.pickerRef} + placeholder={getRangePlaceholder(picker, locale)} + suffixIcon={picker === 'time' ? : } + clearIcon={} + allowClear + transitionName="slide-up" + {...restProps} + className={classNames(className, { + [`${prefixCls}-${size}`]: size, + })} + {...additionalOverrideProps} + locale={locale!.lang} + prefixCls={prefixCls} + generateConfig={generateConfig} + prevIcon={} + nextIcon={} + superPrevIcon={} + superNextIcon={} + components={Components} + /> + ); + }; + + render() { + return ( + + {this.renderPicker} + + ); + } + } + + // =========================== Export =========================== + type MergedDatePicker = typeof DatePicker & { + WeekPicker: typeof WeekPicker; + MonthPicker: typeof MonthPicker; + YearPicker: typeof YearPicker; + RangePicker: React.ComponentClass>; + TimePicker: typeof TimePicker; + }; + + const MergedDatePicker = DatePicker as MergedDatePicker; + MergedDatePicker.WeekPicker = WeekPicker; + MergedDatePicker.MonthPicker = MonthPicker; + MergedDatePicker.YearPicker = YearPicker; + MergedDatePicker.RangePicker = RangePicker; + MergedDatePicker.TimePicker = TimePicker; + + return MergedDatePicker; +} + +export default generatePicker; diff --git a/components/date-picker/index.en-US.md b/components/date-picker/index.en-US.md index 8c1e7118e4..b477c30443 100644 --- a/components/date-picker/index.en-US.md +++ b/components/date-picker/index.en-US.md @@ -12,12 +12,13 @@ By clicking the input box, you can select a date from a popup calendar. ## API -There are four kinds of picker: +There are five kinds of picker: - DatePicker - MonthPicker - RangePicker - WeekPicker +- YearPicker ### Localization @@ -31,19 +32,16 @@ import locale from 'antd/es/date-picker/locale/zh_CN'; ; ``` -**Note:** Part of locale of DatePicker, MonthPicker, RangePicker, WeekPicker is read from value. So, please set the locale of moment correctly. - ```jsx // The default locale is en-US, if you want to use other locale, just set locale in entry file globally. import moment from 'moment'; -import 'moment/locale/zh-cn'; ; ``` ### Common API -The following APIs are shared by DatePicker, MonthPicker, RangePicker, WeekPicker. +The following APIs are shared by DatePicker, YearPicker, MonthPicker, RangePicker, WeekPicker. | Property | Description | Type | Default | Version | | --- | --- | --- | --- | --- | @@ -54,10 +52,11 @@ The following APIs are shared by DatePicker, MonthPicker, RangePicker, WeekPicke | disabled | determine whether the DatePicker is disabled | boolean | false | | | disabledDate | specify the date that cannot be selected | (currentDate: moment) => boolean | - | | | dropdownClassName | to customize the className of the popup calendar | string | - | | -| getCalendarContainer | to set the container of the floating layer, while the default is to create a `div` element in `body` | function(trigger) | - | | +| getPopupContainer | to set the container of the floating layer, while the default is to create a `div` element in `body` | function(trigger) | - | | | locale | localization configuration | object | [default](https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json) | | -| mode | picker panel mode([Cannot select year or month anymore?](/docs/react/faq#When-set-mode-to-DatePicker/RangePicker,-cannot-select-year-or-month-anymore?) | `time|date|month|year|decade` | 'date' | | +| mode | picker panel mode([Cannot select year or month anymore?](/docs/react/faq#When-set-mode-to-DatePicker/RangePicker,-cannot-select-year-or-month-anymore?) | `time|date|month|year|decade` | - | | | open | open state of picker | boolean | - | | +| picker | Set picker type | `date`, `week`, `month`, `year` | `date` | | | placeholder | placeholder of date input | string\|RangePicker\[] | - | | | popupStyle | to customize the style of the popup calendar | object | {} | | | size | determine the size of the input box, the height of `large` and `small`, are 40px and 24px respectively, while default size is 32px | string | - | | @@ -90,6 +89,17 @@ The following APIs are shared by DatePicker, MonthPicker, RangePicker, WeekPicke | onOk | callback when click ok button | function() | - | | | onPanelChange | Callback function for panel changing | function(value, mode) | - | | +### YearPicker + +| Property | Description | Type | Default | Version | +| --- | --- | --- | --- | --- | +| defaultValue | to set default date | [moment](http://momentjs.com/) | - | | +| defaultPickerValue | to set default picker date | [moment](http://momentjs.com/) | - | | +| format | to set the date format, refer to [moment.js](http://momentjs.com/) | string | "YYYY" | | +| renderExtraFooter | render extra footer in panel | () => React.ReactNode | - | | +| value | to set date | [moment](http://momentjs.com/) | - | | +| onChange | a callback function, can be executed when the selected time is changing | function(date: moment, dateString: string) | - | | + ### MonthPicker | Property | Description | Type | Default | Version | @@ -117,8 +127,10 @@ The following APIs are shared by DatePicker, MonthPicker, RangePicker, WeekPicke | Property | Description | Type | Default | Version | | --- | --- | --- | --- | --- | +| allowEmpty | Allow start or end input leave empty | \[boolean, boolean] | \[false, false] | | | defaultValue | to set default date | \[[moment](http://momentjs.com/), [moment](http://momentjs.com/)] | - | | | defaultPickerValue | to set default picker date | \[[moment](http://momentjs.com/), [moment](http://momentjs.com/)\] | - | | +| disabled | disable start or end | [boolean, boolean] | - | | | disabledTime | to specify the time that cannot be selected | function(dates: \[moment, moment], partial: `'start'|'end'`) | - | | | format | to set the date format, refer to [moment.js](http://momentjs.com/). When an array is provided, all values are used for parsing and first value is used for formatting. | string \| string[] | "YYYY-MM-DD HH:mm:ss" | | | ranges | preseted ranges for quick selection | { \[range: string]: [moment](http://momentjs.com/)\[] } \| { \[range: string]: () => [moment](http://momentjs.com/)\[] } | - | | @@ -129,10 +141,9 @@ The following APIs are shared by DatePicker, MonthPicker, RangePicker, WeekPicke | value | to set date | \[[moment](http://momentjs.com/), [moment](http://momentjs.com/)] | - | | | onCalendarChange | a callback function, can be executed when the start time or the end time of the range is changing | function(dates: \[moment, moment], dateStrings: \[string, string]) | - | | | onChange | a callback function, can be executed when the selected time is changing | function(dates: \[moment, moment], dateStrings: \[string, string]) | - | | -| onOk | callback when click ok button | function(dates: [moment](http://momentjs.com/)\[]) | - | | diff --git a/components/date-picker/index.tsx b/components/date-picker/index.tsx index 413efdd450..66a275d48b 100755 --- a/components/date-picker/index.tsx +++ b/components/date-picker/index.tsx @@ -1,22 +1,7 @@ -import * as React from 'react'; -import RcCalendar from 'rc-calendar'; -import MonthCalendar from 'rc-calendar/lib/MonthCalendar'; -import createPicker from './createPicker'; -import wrapPicker from './wrapPicker'; -import RangePicker from './RangePicker'; -import WeekPicker from './WeekPicker'; -import { DatePickerProps, DatePickerDecorator } from './interface'; +import { Moment } from 'moment'; +import momentGenerateConfig from 'rc-picker/lib/generate/moment'; +import generatePicker from './generatePicker'; -const DatePicker = wrapPicker(createPicker(RcCalendar), 'date') as React.ClassicComponentClass< - DatePickerProps ->; +const DatePicker = generatePicker(momentGenerateConfig); -const MonthPicker = wrapPicker(createPicker(MonthCalendar), 'month'); - -Object.assign(DatePicker, { - RangePicker: wrapPicker(RangePicker, 'date'), - MonthPicker, - WeekPicker: wrapPicker(WeekPicker, 'week'), -}); - -export default DatePicker as DatePickerDecorator; +export default DatePicker; diff --git a/components/date-picker/index.zh-CN.md b/components/date-picker/index.zh-CN.md index 92b5332fce..1d300cae44 100644 --- a/components/date-picker/index.zh-CN.md +++ b/components/date-picker/index.zh-CN.md @@ -13,12 +13,13 @@ subtitle: 日期选择框 ## API -日期类组件包括以下四种形式。 +日期类组件包括以下五种形式。 - DatePicker - MonthPicker - RangePicker - WeekPicker +- YearPicker ### 国际化配置 @@ -32,20 +33,17 @@ import locale from 'antd/es/date-picker/locale/zh_CN'; ; ``` -**注意:**DatePicker、MonthPicker、RangePicker、WeekPicker 部分 locale 是从 value 中读取,所以请先正确设置 moment 的 locale。 - ```jsx // 默认语言为 en-US,如果你需要设置其他语言,推荐在入口文件全局设置 locale import moment from 'moment'; import 'moment/locale/zh-cn'; -moment.locale('zh-cn'); ; ``` ### 共同的 API -以下 API 为 DatePicker、MonthPicker、RangePicker, WeekPicker 共享的 API。 +以下 API 为 DatePicker、YearPicker、MonthPicker、RangePicker, WeekPicker 共享的 API。 | 参数 | 说明 | 类型 | 默认值 | 版本 | | --- | --- | --- | --- | --- | @@ -56,10 +54,11 @@ moment.locale('zh-cn'); | disabled | 禁用 | boolean | false | | | disabledDate | 不可选择的日期 | (currentDate: moment) => boolean | 无 | | | dropdownClassName | 额外的弹出日历 className | string | - | | -| getCalendarContainer | 定义浮层的容器,默认为 body 上新建 div | function(trigger) | 无 | | +| getPopupContainer | 定义浮层的容器,默认为 body 上新建 div | function(trigger) | 无 | | | locale | 国际化配置 | object | [默认配置](https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json) | | -| mode | 日期面板的状态([设置后无法选择年份/月份?](/docs/react/faq#当我指定了-DatePicker/RangePicker-的-mode-属性后,点击后无法选择年份/月份?)) | `time|date|month|year|decade` | 'date' | | +| mode | 日期面板的状态([设置后无法选择年份/月份?](/docs/react/faq#当我指定了-DatePicker/RangePicker-的-mode-属性后,点击后无法选择年份/月份?)) | `time|date|month|year|decade` | - | | | open | 控制弹层是否展开 | boolean | - | | +| picker | 设置选择器类型 | `date`, `week`, `month`, `year` | `date` | | | placeholder | 输入框提示文字 | string\|RangePicker\[] | - | | | popupStyle | 额外的弹出日历样式 | object | {} | | | size | 输入框大小,`large` 高度为 40px,`small` 为 24px,默认是 32px | string | 无 | | @@ -92,6 +91,17 @@ moment.locale('zh-cn'); | onOk | 点击确定按钮的回调 | function() | - | | | onPanelChange | 日期面板变化时的回调 | function(value, mode) | - | | +### YearPicker + +| 参数 | 说明 | 类型 | 默认值 | 版本 | +| --- | --- | --- | --- | --- | +| defaultValue | 默认日期 | [moment](http://momentjs.com/) | 无 | | +| defaultPickerValue | 默认面板日期 | [moment](http://momentjs.com/) | 无 | | +| format | 展示的日期格式,配置参考 [moment.js](http://momentjs.com/) | string | "YYYY" | | +| renderExtraFooter | 在面板中添加额外的页脚 | () => React.ReactNode | - | | +| value | 日期 | [moment](http://momentjs.com/) | 无 | | +| onChange | 时间发生变化的回调,发生在用户选择时间时 | function(date: moment, dateString: string) | - | | + ### MonthPicker | 参数 | 说明 | 类型 | 默认值 | 版本 | @@ -119,8 +129,10 @@ moment.locale('zh-cn'); | 参数 | 说明 | 类型 | 默认值 | 版本 | | --- | --- | --- | --- | --- | +| allowEmpty | 允许起始项部分为空 | \[boolean, boolean] | \[false, false] | | | defaultValue | 默认日期 | [moment](http://momentjs.com/)\[] | 无 | | | defaultPickerValue | 默认面板日期 | [moment](http://momentjs.com/)\[] | 无 | | +| disabled | 禁用起始项 | [boolean, boolean] | 无 | | | disabledTime | 不可选择的时间 | function(dates: \[moment, moment\], partial: `'start'|'end'`) | 无 | | | format | 展示的日期格式 | string | "YYYY-MM-DD HH:mm:ss" | | | ranges | 预设时间范围快捷选择 | { \[range: string]: [moment](http://momentjs.com/)\[] } \| { \[range: string]: () => [moment](http://momentjs.com/)\[] } | 无 | | @@ -131,10 +143,9 @@ moment.locale('zh-cn'); | value | 日期 | [moment](http://momentjs.com/)\[] | 无 | | | onCalendarChange | 待选日期发生变化的回调 | function(dates: \[moment, moment\], dateStrings: \[string, string\]) | 无 | | | onChange | 日期范围发生变化的回调 | function(dates: \[moment, moment\], dateStrings: \[string, string\]) | 无 | | -| onOk | 点击确定按钮的回调 | function(dates: [moment](http://momentjs.com/)\[]) | - | | diff --git a/components/date-picker/interface.tsx b/components/date-picker/interface.tsx deleted file mode 100644 index 02dd9dd995..0000000000 --- a/components/date-picker/interface.tsx +++ /dev/null @@ -1,114 +0,0 @@ -import * as React from 'react'; -import * as moment from 'moment'; -import { TimePickerProps } from '../time-picker'; -import { tuple } from '../_util/type'; - -export interface PickerProps { - id?: number | string; - name?: string; - prefixCls?: string; - inputPrefixCls?: string; - format?: string | string[]; - disabled?: boolean; - allowClear?: boolean; - className?: string; - pickerClass?: string; - pickerInputClass?: string; - suffixIcon?: React.ReactNode; - style?: React.CSSProperties; - popupStyle?: React.CSSProperties; - dropdownClassName?: string; - locale?: any; - size?: 'large' | 'small' | 'default'; - getCalendarContainer?: (triggerNode: Element) => HTMLElement; - open?: boolean; - onOpenChange?: (status: boolean) => void; - disabledDate?: (current: moment.Moment | undefined) => boolean; - dateRender?: (current: moment.Moment, today: moment.Moment) => React.ReactNode; - autoFocus?: boolean; - onFocus?: React.FocusEventHandler; - onBlur?: (e: React.SyntheticEvent) => void; -} - -export interface SinglePickerProps { - value?: moment.Moment; - defaultValue?: moment.Moment; - defaultPickerValue?: moment.Moment; - placeholder?: string; - renderExtraFooter?: (mode: DatePickerMode) => React.ReactNode; - onChange?: (date: moment.Moment | null, dateString: string) => void; -} - -const DatePickerModes = tuple('time', 'date', 'month', 'year', 'decade'); -export type DatePickerMode = typeof DatePickerModes[number]; - -export interface DatePickerProps extends PickerProps, SinglePickerProps { - showTime?: TimePickerProps | boolean; - showToday?: boolean; - open?: boolean; - disabledTime?: ( - current: moment.Moment | undefined, - ) => { - disabledHours?: () => number[]; - disabledMinutes?: () => number[]; - disabledSeconds?: () => number[]; - }; - onOpenChange?: (status: boolean) => void; - onPanelChange?: (value: moment.Moment | undefined, mode: DatePickerMode) => void; - onOk?: (selectedTime: moment.Moment) => void; - mode?: DatePickerMode; -} - -export interface MonthPickerProps extends PickerProps, SinglePickerProps { - monthCellContentRender?: (date: moment.Moment, locale: any) => React.ReactNode; -} - -export type RangePickerValue = - | undefined[] - | [moment.Moment] - | [undefined, moment.Moment] - | [moment.Moment, undefined] - | [moment.Moment, moment.Moment]; -export type RangePickerPresetRange = RangePickerValue | (() => RangePickerValue); - -export interface RangePickerProps extends PickerProps { - className?: string; - tagPrefixCls?: string; - value?: RangePickerValue; - defaultValue?: RangePickerValue; - defaultPickerValue?: RangePickerValue; - timePicker?: React.ReactNode; - onChange?: (dates: RangePickerValue, dateStrings: [string, string]) => void; - onCalendarChange?: (dates: RangePickerValue, dateStrings: [string, string]) => void; - onOk?: (selectedTime: RangePickerPresetRange) => void; - showTime?: TimePickerProps | boolean; - showToday?: boolean; - ranges?: { - [range: string]: RangePickerPresetRange; - }; - placeholder?: [string, string]; - mode?: string | string[]; - separator?: React.ReactNode; - disabledTime?: ( - current: moment.Moment | undefined, - type: string, - ) => { - disabledHours?: () => number[]; - disabledMinutes?: () => number[]; - disabledSeconds?: () => number[]; - }; - onPanelChange?: (value?: RangePickerValue, mode?: string | string[]) => void; - renderExtraFooter?: () => React.ReactNode; - onMouseEnter?: (e: React.MouseEvent) => void; - onMouseLeave?: (e: React.MouseEvent) => void; -} - -export interface WeekPickerProps extends PickerProps, SinglePickerProps { - // - currently no own props - -} - -export interface DatePickerDecorator extends React.ClassicComponentClass { - RangePicker: React.ClassicComponentClass; - MonthPicker: React.ClassicComponentClass; - WeekPicker: React.ClassicComponentClass; -} diff --git a/components/date-picker/locale/ar_EG.tsx b/components/date-picker/locale/ar_EG.tsx index ad840b669b..a947bd68b6 100644 --- a/components/date-picker/locale/ar_EG.tsx +++ b/components/date-picker/locale/ar_EG.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/ar_EG'; +import CalendarLocale from 'rc-picker/lib/locale/ar_EG'; import TimePickerLocale from '../../time-picker/locale/ar_EG'; // Merge into a locale object diff --git a/components/date-picker/locale/bg_BG.tsx b/components/date-picker/locale/bg_BG.tsx index 48809956ef..f0990834b7 100644 --- a/components/date-picker/locale/bg_BG.tsx +++ b/components/date-picker/locale/bg_BG.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/bg_BG'; +import CalendarLocale from 'rc-picker/lib/locale/bg_BG'; import TimePickerLocale from '../../time-picker/locale/bg_BG'; // Merge into a locale object diff --git a/components/date-picker/locale/ca_ES.tsx b/components/date-picker/locale/ca_ES.tsx index dc66660ab5..612a65894b 100644 --- a/components/date-picker/locale/ca_ES.tsx +++ b/components/date-picker/locale/ca_ES.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/ca_ES'; +import CalendarLocale from 'rc-picker/lib/locale/ca_ES'; import TimePickerLocale from '../../time-picker/locale/ca_ES'; // Merge into a locale object diff --git a/components/date-picker/locale/cs_CZ.tsx b/components/date-picker/locale/cs_CZ.tsx index eb542ab505..64443106b6 100644 --- a/components/date-picker/locale/cs_CZ.tsx +++ b/components/date-picker/locale/cs_CZ.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/cs_CZ'; +import CalendarLocale from 'rc-picker/lib/locale/cs_CZ'; import TimePickerLocale from '../../time-picker/locale/cs_CZ'; // Merge into a locale object diff --git a/components/date-picker/locale/da_DK.tsx b/components/date-picker/locale/da_DK.tsx index ba4a295eef..6e73975ff3 100644 --- a/components/date-picker/locale/da_DK.tsx +++ b/components/date-picker/locale/da_DK.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/da_DK'; +import CalendarLocale from 'rc-picker/lib/locale/da_DK'; import TimePickerLocale from '../../time-picker/locale/da_DK'; // Merge into a locale object diff --git a/components/date-picker/locale/de_DE.tsx b/components/date-picker/locale/de_DE.tsx index 383a3df31d..ee5035339f 100644 --- a/components/date-picker/locale/de_DE.tsx +++ b/components/date-picker/locale/de_DE.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/de_DE'; +import CalendarLocale from 'rc-picker/lib/locale/de_DE'; import TimePickerLocale from '../../time-picker/locale/de_DE'; // Merge into a locale object diff --git a/components/date-picker/locale/el_GR.tsx b/components/date-picker/locale/el_GR.tsx index 2fbf538969..bad2eec615 100644 --- a/components/date-picker/locale/el_GR.tsx +++ b/components/date-picker/locale/el_GR.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/el_GR'; +import CalendarLocale from 'rc-picker/lib/locale/el_GR'; import TimePickerLocale from '../../time-picker/locale/el_GR'; // Merge into a locale object diff --git a/components/date-picker/locale/en_GB.tsx b/components/date-picker/locale/en_GB.tsx index a0dd22a6a0..1cdde6c7c3 100644 --- a/components/date-picker/locale/en_GB.tsx +++ b/components/date-picker/locale/en_GB.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/en_GB'; +import CalendarLocale from 'rc-picker/lib/locale/en_GB'; import TimePickerLocale from '../../time-picker/locale/en_GB'; // Merge into a locale object diff --git a/components/date-picker/locale/en_US.tsx b/components/date-picker/locale/en_US.tsx index b1c215104d..2212912759 100644 --- a/components/date-picker/locale/en_US.tsx +++ b/components/date-picker/locale/en_US.tsx @@ -1,11 +1,17 @@ -import CalendarLocale from 'rc-calendar/lib/locale/en_US'; +import CalendarLocale from 'rc-picker/lib/locale/en_US'; import TimePickerLocale from '../../time-picker/locale/en_US'; // Merge into a locale object const locale = { lang: { placeholder: 'Select date', + yearPlaceholder: 'Select year', + monthPlaceholder: 'Select month', + weekPlaceholder: 'Select week', rangePlaceholder: ['Start date', 'End date'], + rangeYearPlaceholder: ['Start year', 'End year'], + rangeMonthPlaceholder: ['Start month', 'End month'], + rangeWeekPlaceholder: ['Start week', 'End week'], ...CalendarLocale, }, timePickerLocale: { diff --git a/components/date-picker/locale/es_ES.tsx b/components/date-picker/locale/es_ES.tsx index 9d193de483..592df2cd97 100644 --- a/components/date-picker/locale/es_ES.tsx +++ b/components/date-picker/locale/es_ES.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/es_ES'; +import CalendarLocale from 'rc-picker/lib/locale/es_ES'; import TimePickerLocale from '../../time-picker/locale/es_ES'; // Merge into a locale object diff --git a/components/date-picker/locale/et_EE.tsx b/components/date-picker/locale/et_EE.tsx index 91956c2800..d1e316cb22 100644 --- a/components/date-picker/locale/et_EE.tsx +++ b/components/date-picker/locale/et_EE.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/et_EE'; +import CalendarLocale from 'rc-picker/lib/locale/et_EE'; import TimePickerLocale from '../../time-picker/locale/et_EE'; // 统一合并为完整的 Locale diff --git a/components/date-picker/locale/example.json b/components/date-picker/locale/example.json index 4c260f9221..2fb5ee33f8 100644 --- a/components/date-picker/locale/example.json +++ b/components/date-picker/locale/example.json @@ -1,5 +1,6 @@ { "lang": { + "locale": "en_US", "placeholder": "Select date", "rangePlaceholder": ["Start date", "End date"], "today": "Today", diff --git a/components/date-picker/locale/fa_IR.tsx b/components/date-picker/locale/fa_IR.tsx index 6f8524439c..bbe7035c67 100644 --- a/components/date-picker/locale/fa_IR.tsx +++ b/components/date-picker/locale/fa_IR.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/fa_IR'; +import CalendarLocale from 'rc-picker/lib/locale/fa_IR'; import TimePickerLocale from '../../time-picker/locale/fa_IR'; // Merge into a locale object diff --git a/components/date-picker/locale/fi_FI.tsx b/components/date-picker/locale/fi_FI.tsx index f92304d533..ca58e1b26f 100644 --- a/components/date-picker/locale/fi_FI.tsx +++ b/components/date-picker/locale/fi_FI.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/fi_FI'; +import CalendarLocale from 'rc-picker/lib/locale/fi_FI'; import TimePickerLocale from '../../time-picker/locale/fi_FI'; // Merge into a locale object diff --git a/components/date-picker/locale/fr_BE.tsx b/components/date-picker/locale/fr_BE.tsx index b398858400..b4d91837e2 100644 --- a/components/date-picker/locale/fr_BE.tsx +++ b/components/date-picker/locale/fr_BE.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/fr_BE'; +import CalendarLocale from 'rc-picker/lib/locale/fr_BE'; import TimePickerLocale from '../../time-picker/locale/fr_BE'; // Merge into a locale object diff --git a/components/date-picker/locale/fr_FR.tsx b/components/date-picker/locale/fr_FR.tsx index cb7fa438e0..229cf66ae8 100644 --- a/components/date-picker/locale/fr_FR.tsx +++ b/components/date-picker/locale/fr_FR.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/fr_FR'; +import CalendarLocale from 'rc-picker/lib/locale/fr_FR'; import TimePickerLocale from '../../time-picker/locale/fr_FR'; // Merge into a locale object diff --git a/components/date-picker/locale/he_IL.tsx b/components/date-picker/locale/he_IL.tsx index 1f0aaa1a13..7cb4096c74 100644 --- a/components/date-picker/locale/he_IL.tsx +++ b/components/date-picker/locale/he_IL.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/he_IL'; +import CalendarLocale from 'rc-picker/lib/locale/he_IL'; import TimePickerLocale from '../../time-picker/locale/he_IL'; // Merge into a locale object diff --git a/components/date-picker/locale/hi_IN.tsx b/components/date-picker/locale/hi_IN.tsx index 6b49a74e9f..d475904b2c 100644 --- a/components/date-picker/locale/hi_IN.tsx +++ b/components/date-picker/locale/hi_IN.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/hi_IN'; +import CalendarLocale from 'rc-picker/lib/locale/hi_IN'; import TimePickerLocale from '../../time-picker/locale/hi_IN'; // Merge into a locale object diff --git a/components/date-picker/locale/hr_HR.tsx b/components/date-picker/locale/hr_HR.tsx index 37d8e40fc9..cfef8f3de1 100644 --- a/components/date-picker/locale/hr_HR.tsx +++ b/components/date-picker/locale/hr_HR.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/hr_HR'; +import CalendarLocale from 'rc-picker/lib/locale/hr_HR'; import TimePickerLocale from '../../time-picker/locale/hr_HR'; // Merge into a locale object diff --git a/components/date-picker/locale/hu_HU.tsx b/components/date-picker/locale/hu_HU.tsx index c2c2a9cf21..640fcf2c28 100644 --- a/components/date-picker/locale/hu_HU.tsx +++ b/components/date-picker/locale/hu_HU.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/hu_HU'; +import CalendarLocale from 'rc-picker/lib/locale/hu_HU'; import TimePickerLocale from '../../time-picker/locale/hu_HU'; // Merge into a locale object diff --git a/components/date-picker/locale/id_ID.tsx b/components/date-picker/locale/id_ID.tsx index e1390af7dd..479061acdf 100644 --- a/components/date-picker/locale/id_ID.tsx +++ b/components/date-picker/locale/id_ID.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/id_ID'; +import CalendarLocale from 'rc-picker/lib/locale/id_ID'; import TimePickerLocale from '../../time-picker/locale/id_ID'; // Merge into a locale object diff --git a/components/date-picker/locale/is_IS.tsx b/components/date-picker/locale/is_IS.tsx index 7c70f1e934..25656ddcee 100644 --- a/components/date-picker/locale/is_IS.tsx +++ b/components/date-picker/locale/is_IS.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/is_IS'; +import CalendarLocale from 'rc-picker/lib/locale/is_IS'; import TimePickerLocale from '../../time-picker/locale/is_IS'; // Merge into a locale object diff --git a/components/date-picker/locale/it_IT.tsx b/components/date-picker/locale/it_IT.tsx index cf797aa434..14dd3e03c5 100644 --- a/components/date-picker/locale/it_IT.tsx +++ b/components/date-picker/locale/it_IT.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/it_IT'; +import CalendarLocale from 'rc-picker/lib/locale/it_IT'; import TimePickerLocale from '../../time-picker/locale/it_IT'; // Merge into a locale object diff --git a/components/date-picker/locale/ja_JP.tsx b/components/date-picker/locale/ja_JP.tsx index 0506cef8b2..6412724372 100644 --- a/components/date-picker/locale/ja_JP.tsx +++ b/components/date-picker/locale/ja_JP.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/ja_JP'; +import CalendarLocale from 'rc-picker/lib/locale/ja_JP'; import TimePickerLocale from '../../time-picker/locale/ja_JP'; const locale = { diff --git a/components/date-picker/locale/kn_IN.tsx b/components/date-picker/locale/kn_IN.tsx index c58aa7d51f..9004f7a821 100644 --- a/components/date-picker/locale/kn_IN.tsx +++ b/components/date-picker/locale/kn_IN.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/kn_IN'; +import CalendarLocale from 'rc-picker/lib/locale/kn_IN'; import TimePickerLocale from '../../time-picker/locale/kn_IN'; // Merge into a locale object diff --git a/components/date-picker/locale/ko_KR.tsx b/components/date-picker/locale/ko_KR.tsx index ad08d7207b..54673517ea 100644 --- a/components/date-picker/locale/ko_KR.tsx +++ b/components/date-picker/locale/ko_KR.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/ko_KR'; +import CalendarLocale from 'rc-picker/lib/locale/ko_KR'; import TimePickerLocale from '../../time-picker/locale/ko_KR'; // Merge into a locale object diff --git a/components/date-picker/locale/ku_IQ.tsx b/components/date-picker/locale/ku_IQ.tsx index 8d7fd3af28..363db69083 100755 --- a/components/date-picker/locale/ku_IQ.tsx +++ b/components/date-picker/locale/ku_IQ.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/ku_IQ'; +import CalendarLocale from 'rc-picker/lib/locale/ku_IQ'; import TimePickerLocale from '../../time-picker/locale/ku_IQ'; // Merge into a locale object diff --git a/components/date-picker/locale/lv_LV.tsx b/components/date-picker/locale/lv_LV.tsx index 254b1280bb..4a857a685b 100644 --- a/components/date-picker/locale/lv_LV.tsx +++ b/components/date-picker/locale/lv_LV.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/lv_LV'; +import CalendarLocale from 'rc-picker/lib/locale/lv_LV'; import TimePickerLocale from '../../time-picker/locale/lv_LV'; // Merge into a locale object diff --git a/components/date-picker/locale/mk_MK.tsx b/components/date-picker/locale/mk_MK.tsx index e9a3a9c495..fcbe0a5f4f 100644 --- a/components/date-picker/locale/mk_MK.tsx +++ b/components/date-picker/locale/mk_MK.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/mk_MK'; +import CalendarLocale from 'rc-picker/lib/locale/mk_MK'; import TimePickerLocale from '../../time-picker/locale/mk_MK'; // Merge into a locale object diff --git a/components/date-picker/locale/mn_MN.tsx b/components/date-picker/locale/mn_MN.tsx index f7f2735be0..2ffad50acd 100644 --- a/components/date-picker/locale/mn_MN.tsx +++ b/components/date-picker/locale/mn_MN.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/mn_MN'; +import CalendarLocale from 'rc-picker/lib/locale/mn_MN'; import TimePickerLocale from '../../time-picker/locale/mn_MN'; // Merge into a locale object diff --git a/components/date-picker/locale/ms_MY.tsx b/components/date-picker/locale/ms_MY.tsx index 7382d546fe..4818c62ba1 100644 --- a/components/date-picker/locale/ms_MY.tsx +++ b/components/date-picker/locale/ms_MY.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/ms_MY'; +import CalendarLocale from 'rc-picker/lib/locale/ms_MY'; import TimePickerLocale from '../../time-picker/locale/ms_MY'; // Merge into a locale object diff --git a/components/date-picker/locale/nb_NO.tsx b/components/date-picker/locale/nb_NO.tsx index 4fda0792c8..5b68d846a9 100644 --- a/components/date-picker/locale/nb_NO.tsx +++ b/components/date-picker/locale/nb_NO.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/nb_NO'; +import CalendarLocale from 'rc-picker/lib/locale/nb_NO'; import TimePickerLocale from '../../time-picker/locale/nb_NO'; // Merge into a locale object diff --git a/components/date-picker/locale/nl_BE.tsx b/components/date-picker/locale/nl_BE.tsx index 6961fe772a..d82c1a5f86 100644 --- a/components/date-picker/locale/nl_BE.tsx +++ b/components/date-picker/locale/nl_BE.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/nl_BE'; +import CalendarLocale from 'rc-picker/lib/locale/nl_BE'; import TimePickerLocale from '../../time-picker/locale/nl_BE'; // Merge into a locale object diff --git a/components/date-picker/locale/nl_NL.tsx b/components/date-picker/locale/nl_NL.tsx index 7e6e9c0efa..d7c0474130 100644 --- a/components/date-picker/locale/nl_NL.tsx +++ b/components/date-picker/locale/nl_NL.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/nl_NL'; +import CalendarLocale from 'rc-picker/lib/locale/nl_NL'; import TimePickerLocale from '../../time-picker/locale/nl_NL'; // Merge into a locale object diff --git a/components/date-picker/locale/pl_PL.tsx b/components/date-picker/locale/pl_PL.tsx index 4b5c1233c0..fdf52532d7 100644 --- a/components/date-picker/locale/pl_PL.tsx +++ b/components/date-picker/locale/pl_PL.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/pl_PL'; +import CalendarLocale from 'rc-picker/lib/locale/pl_PL'; import TimePickerLocale from '../../time-picker/locale/pl_PL'; // Merge into a locale object diff --git a/components/date-picker/locale/pt_BR.tsx b/components/date-picker/locale/pt_BR.tsx index 7c7e048123..9c28c8bbb4 100644 --- a/components/date-picker/locale/pt_BR.tsx +++ b/components/date-picker/locale/pt_BR.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/pt_BR'; +import CalendarLocale from 'rc-picker/lib/locale/pt_BR'; import TimePickerLocale from '../../time-picker/locale/pt_BR'; // Merge into a locale object diff --git a/components/date-picker/locale/pt_PT.tsx b/components/date-picker/locale/pt_PT.tsx index 3d9b5bf64b..3fc96e4860 100644 --- a/components/date-picker/locale/pt_PT.tsx +++ b/components/date-picker/locale/pt_PT.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/pt_PT'; +import CalendarLocale from 'rc-picker/lib/locale/pt_PT'; import TimePickerLocale from '../../time-picker/locale/pt_PT'; // Merge into a locale object diff --git a/components/date-picker/locale/ro_RO.tsx b/components/date-picker/locale/ro_RO.tsx index a2cc553f71..9af71f4105 100644 --- a/components/date-picker/locale/ro_RO.tsx +++ b/components/date-picker/locale/ro_RO.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/ro_RO'; +import CalendarLocale from 'rc-picker/lib/locale/ro_RO'; import TimePickerLocale from '../../time-picker/locale/ro_RO'; // Merge into a locale object diff --git a/components/date-picker/locale/ru_RU.tsx b/components/date-picker/locale/ru_RU.tsx index 76f7f7f26c..3ad9375e59 100644 --- a/components/date-picker/locale/ru_RU.tsx +++ b/components/date-picker/locale/ru_RU.tsx @@ -2,7 +2,7 @@ * Created by Andrey Gayvoronsky on 13/04/16. */ -import CalendarLocale from 'rc-calendar/lib/locale/ru_RU'; +import CalendarLocale from 'rc-picker/lib/locale/ru_RU'; import TimePickerLocale from '../../time-picker/locale/ru_RU'; const locale = { diff --git a/components/date-picker/locale/sk_SK.tsx b/components/date-picker/locale/sk_SK.tsx index 3b135fdf9b..443672ef0f 100644 --- a/components/date-picker/locale/sk_SK.tsx +++ b/components/date-picker/locale/sk_SK.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/sk_SK'; +import CalendarLocale from 'rc-picker/lib/locale/sk_SK'; import TimePickerLocale from '../../time-picker/locale/sk_SK'; // 统一合并为完整的 Locale diff --git a/components/date-picker/locale/sl_SI.tsx b/components/date-picker/locale/sl_SI.tsx index 43da753a8f..bdab516103 100644 --- a/components/date-picker/locale/sl_SI.tsx +++ b/components/date-picker/locale/sl_SI.tsx @@ -3,6 +3,7 @@ import TimePickerLocale from '../../time-picker/locale/sl_SI'; // Merge into a locale object const locale = { lang: { + locale: 'sl', placeholder: 'Izberite datum', rangePlaceholder: ['Začetni datum', 'Končni datum'], today: 'Danes', diff --git a/components/date-picker/locale/sr_RS.tsx b/components/date-picker/locale/sr_RS.tsx index 7f8424bf70..0c5906ed0e 100644 --- a/components/date-picker/locale/sr_RS.tsx +++ b/components/date-picker/locale/sr_RS.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/sr_RS'; +import CalendarLocale from 'rc-picker/lib/locale/sr_RS'; import TimePickerLocale from '../../time-picker/locale/sr_RS'; // Merge into a locale object diff --git a/components/date-picker/locale/sv_SE.tsx b/components/date-picker/locale/sv_SE.tsx index 28ff284286..2415703e4a 100644 --- a/components/date-picker/locale/sv_SE.tsx +++ b/components/date-picker/locale/sv_SE.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/sv_SE'; +import CalendarLocale from 'rc-picker/lib/locale/sv_SE'; import TimePickerLocale from '../../time-picker/locale/sv_SE'; const locale = { diff --git a/components/date-picker/locale/ta_IN.tsx b/components/date-picker/locale/ta_IN.tsx index 3606999265..50126ca6d6 100644 --- a/components/date-picker/locale/ta_IN.tsx +++ b/components/date-picker/locale/ta_IN.tsx @@ -1,5 +1,5 @@ // Tamil Locale added to rc-calendar -import CalendarLocale from 'rc-calendar/lib/locale/ta_IN'; +import CalendarLocale from 'rc-picker/lib/locale/ta_IN'; import TimePickerLocale from '../../time-picker/locale/ta_IN'; // Merge into a locale object diff --git a/components/date-picker/locale/th_TH.tsx b/components/date-picker/locale/th_TH.tsx index bd17b9f967..52b15438e4 100644 --- a/components/date-picker/locale/th_TH.tsx +++ b/components/date-picker/locale/th_TH.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/th_TH'; +import CalendarLocale from 'rc-picker/lib/locale/th_TH'; import TimePickerLocale from '../../time-picker/locale/th_TH'; // Merge into a locale object diff --git a/components/date-picker/locale/tr_TR.tsx b/components/date-picker/locale/tr_TR.tsx index 809fc52d3d..3a2514752f 100644 --- a/components/date-picker/locale/tr_TR.tsx +++ b/components/date-picker/locale/tr_TR.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/tr_TR'; +import CalendarLocale from 'rc-picker/lib/locale/tr_TR'; import TimePickerLocale from '../../time-picker/locale/tr_TR'; // Merge into a locale object diff --git a/components/date-picker/locale/uk_UA.tsx b/components/date-picker/locale/uk_UA.tsx index 1ae866f151..237df43d4d 100644 --- a/components/date-picker/locale/uk_UA.tsx +++ b/components/date-picker/locale/uk_UA.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/uk_UA'; +import CalendarLocale from 'rc-picker/lib/locale/uk_UA'; import TimePickerLocale from '../../time-picker/locale/uk_UA'; const locale = { diff --git a/components/date-picker/locale/vi_VN.tsx b/components/date-picker/locale/vi_VN.tsx index d871d6eaa0..0f43e8bfea 100644 --- a/components/date-picker/locale/vi_VN.tsx +++ b/components/date-picker/locale/vi_VN.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/vi_VN'; +import CalendarLocale from 'rc-picker/lib/locale/vi_VN'; import TimePickerLocale from '../../time-picker/locale/vi_VN'; // Merge into a locale object diff --git a/components/date-picker/locale/zh_CN.tsx b/components/date-picker/locale/zh_CN.tsx index a4aad3fd99..13c4d6dc98 100644 --- a/components/date-picker/locale/zh_CN.tsx +++ b/components/date-picker/locale/zh_CN.tsx @@ -1,10 +1,16 @@ -import CalendarLocale from 'rc-calendar/lib/locale/zh_CN'; +import CalendarLocale from 'rc-picker/lib/locale/zh_CN'; import TimePickerLocale from '../../time-picker/locale/zh_CN'; const locale = { lang: { placeholder: '请选择日期', + yearPlaceholder: '请选择年份', + monthPlaceholder: '请选择月份', + weekPlaceholder: '请选择周', rangePlaceholder: ['开始日期', '结束日期'], + rangeYearPlaceholder: ['开始年份', '结束年份'], + rangeMonthPlaceholder: ['开始月份', '结束月份'], + rangeWeekPlaceholder: ['开始周', '结束周'], ...CalendarLocale, }, timePickerLocale: { diff --git a/components/date-picker/locale/zh_TW.tsx b/components/date-picker/locale/zh_TW.tsx index 291b6da6f3..6dffc873b5 100644 --- a/components/date-picker/locale/zh_TW.tsx +++ b/components/date-picker/locale/zh_TW.tsx @@ -1,4 +1,4 @@ -import CalendarLocale from 'rc-calendar/lib/locale/zh_TW'; +import CalendarLocale from 'rc-picker/lib/locale/zh_TW'; import TimePickerLocale from '../../time-picker/locale/zh_TW'; const locale = { diff --git a/components/date-picker/style/Calendar.less b/components/date-picker/style/Calendar.less deleted file mode 100644 index 1adf1b07ae..0000000000 --- a/components/date-picker/style/Calendar.less +++ /dev/null @@ -1,402 +0,0 @@ -.calendarLeftArrow() { - height: 100%; - - &::before, - &::after { - position: relative; - top: -1px; - display: inline-block; - width: 8px; - height: 8px; - vertical-align: middle; - border: 0 solid #aaa; - border-width: 1.5px 0 0 1.5px; - border-radius: 1px; - transform: rotate(-45deg) scale(0.8); - transition: all 0.3s; - content: ''; - } - - &:hover::before, - &:hover::after { - border-color: @text-color; - } - - &::after { - display: none; - } -} - -.calendarLeftDoubleArrow() { - .calendarLeftArrow; - - &::after { - position: relative; - left: -3px; - display: inline-block; - } -} - -.calendarRightArrow() { - .calendarLeftArrow; - - &::before, - &::after { - transform: rotate(135deg) scale(0.8); - } -} - -.calendarRightDoubleArrow() { - .calendarRightArrow; - - &::before { - position: relative; - left: 3px; - } - - &::after { - display: inline-block; - } -} - -.calendarPanelHeader(@calendar-prefix-cls) { - height: 40px; - line-height: 40px; - text-align: center; - border-bottom: @border-width-base @border-style-base @border-color-split; - user-select: none; - - a:hover { - color: @link-hover-color; - } - - .@{calendar-prefix-cls}-century-select, - .@{calendar-prefix-cls}-decade-select, - .@{calendar-prefix-cls}-year-select, - .@{calendar-prefix-cls}-month-select { - display: inline-block; - padding: 0 2px; - color: @heading-color; - font-weight: 500; - line-height: 40px; - } - - .@{calendar-prefix-cls}-century-select-arrow, - .@{calendar-prefix-cls}-decade-select-arrow, - .@{calendar-prefix-cls}-year-select-arrow, - .@{calendar-prefix-cls}-month-select-arrow { - display: none; - } - - .@{calendar-prefix-cls}-prev-century-btn, - .@{calendar-prefix-cls}-next-century-btn, - .@{calendar-prefix-cls}-prev-decade-btn, - .@{calendar-prefix-cls}-next-decade-btn, - .@{calendar-prefix-cls}-prev-month-btn, - .@{calendar-prefix-cls}-next-month-btn, - .@{calendar-prefix-cls}-prev-year-btn, - .@{calendar-prefix-cls}-next-year-btn { - position: absolute; - top: 0; - display: inline-block; - padding: 0 5px; - color: @text-color-secondary; - font-size: 16px; - font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif; - line-height: 40px; - } - - .@{calendar-prefix-cls}-prev-century-btn, - .@{calendar-prefix-cls}-prev-decade-btn, - .@{calendar-prefix-cls}-prev-year-btn { - left: 7px; - .calendarLeftDoubleArrow; - } - - .@{calendar-prefix-cls}-next-century-btn, - .@{calendar-prefix-cls}-next-decade-btn, - .@{calendar-prefix-cls}-next-year-btn { - right: 7px; - .calendarRightDoubleArrow; - } - - .@{calendar-prefix-cls}-prev-month-btn { - left: 29px; - .calendarLeftArrow; - } - - .@{calendar-prefix-cls}-next-month-btn { - right: 29px; - .calendarRightArrow; - } -} - -.calendar-selected-cell() { - .@{calendar-prefix-cls}-date { - color: @text-color-inverse; - background: @primary-color; - border: @border-width-base @border-style-base transparent; - - &:hover { - background: @primary-color; - } - } -} - -.@{calendar-prefix-cls} { - position: relative; - width: 280px; - font-size: @font-size-base; - line-height: @line-height-base; - text-align: left; - list-style: none; - background-color: @calendar-bg; - background-clip: padding-box; - border: @border-width-base @border-style-base @calendar-border-color; - border-radius: @border-radius-base; - outline: none; - box-shadow: @box-shadow-base; - - &-input-wrap { - height: 34px; - padding: 6px @control-padding-horizontal - 2px; - border-bottom: @border-width-base @border-style-base @border-color-split; - } - - &-input { - width: 100%; - height: 22px; - color: @input-color; - background: @calendar-input-bg; - border: 0; - outline: 0; - cursor: auto; - .placeholder; - } - - &-week-number { - width: 286px; - - &-cell { - text-align: center; - } - } - - &-header { - .calendarPanelHeader(@calendar-prefix-cls); - } - - &-body { - padding: 8px 12px; - } - - table { - width: 100%; - max-width: 100%; - background-color: transparent; - border-collapse: collapse; - } - - table, - th, - td { - text-align: center; - border: 0; - } - - &-calendar-table { - margin-bottom: 0; - border-spacing: 0; - } - - &-column-header { - width: 33px; - padding: 6px 0; - line-height: 18px; - text-align: center; - .@{calendar-prefix-cls}-column-header-inner { - display: block; - font-weight: normal; - } - } - - &-week-number-header { - .@{calendar-prefix-cls}-column-header-inner { - display: none; - } - } - - &-cell { - height: 30px; - padding: 3px 0; - } - - &-date { - display: block; - width: 24px; - height: 24px; - margin: 0 auto; - padding: 0; - color: @text-color; - line-height: 22px; - text-align: center; - background: transparent; - border: @border-width-base @border-style-base transparent; - border-radius: @border-radius-base; - transition: background 0.3s ease; - - &-panel { - position: relative; - outline: none; - } - - &:hover { - background: @item-hover-bg; - cursor: pointer; - } - - &:active { - color: @text-color-inverse; - background: @primary-5; - } - } - - &-today &-date { - color: @primary-color; - font-weight: bold; - border-color: @primary-color; - } - - &-selected-day &-date { - background: @primary-2; - } - - &-last-month-cell &-date, - &-next-month-btn-day &-date { - &, - &:hover { - color: @disabled-color; - background: transparent; - border-color: transparent; - } - } - - &-disabled-cell &-date { - position: relative; - width: auto; - color: @disabled-color; - background: @disabled-bg; - border: @border-width-base @border-style-base transparent; - border-radius: 0; - cursor: not-allowed; - - &:hover { - background: @disabled-bg; - } - } - - &-disabled-cell&-selected-day &-date::before { - position: absolute; - top: -1px; - left: 5px; - width: 24px; - height: 24px; - background: rgba(0, 0, 0, 0.1); - border-radius: @border-radius-base; - content: ''; - } - - &-disabled-cell&-today &-date { - position: relative; - padding-right: 5px; - padding-left: 5px; - &::before { - position: absolute; - top: -1px; - left: 5px; - width: 24px; - height: 24px; - border: @border-width-base @border-style-base @disabled-color; - border-radius: @border-radius-base; - content: ' '; - } - } - - &-disabled-cell-first-of-row &-date { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - } - - &-disabled-cell-last-of-row &-date { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } - - &-footer { - padding: 0 12px; - line-height: 38px; - border-top: @border-width-base @border-style-base @border-color-split; - &:empty { - border-top: 0; - } - &-btn { - display: block; - text-align: center; - } - &-extra { - text-align: left; - } - } - - .@{calendar-prefix-cls}-today-btn, - .@{calendar-prefix-cls}-clear-btn { - display: inline-block; - margin: 0 0 0 8px; - text-align: center; - &-disabled { - color: @disabled-color; - cursor: not-allowed; - } - &:only-child { - margin: 0; - } - } - - .@{calendar-prefix-cls}-clear-btn { - position: absolute; - top: 7px; - right: 5px; - display: none; - width: 20px; - height: 20px; - margin: 0; - overflow: hidden; - line-height: 20px; - text-align: center; - text-indent: -76px; - } - - .@{calendar-prefix-cls}-clear-btn::after { - display: inline-block; - width: 20px; - color: @disabled-color; - font-size: @font-size-base; - line-height: 1; - text-indent: 43px; - transition: color 0.3s ease; - } - - .@{calendar-prefix-cls}-clear-btn:hover::after { - color: @text-color-secondary; - } - - .@{calendar-prefix-cls}-ok-btn { - .btn; - .btn-primary; - .button-size(@btn-height-sm; @btn-padding-sm; @font-size-base; @border-radius-base); - - line-height: @btn-height-sm - 2px; - - .button-disabled(); - } -} diff --git a/components/date-picker/style/MonthPicker.less b/components/date-picker/style/MonthPicker.less deleted file mode 100644 index 27955fe370..0000000000 --- a/components/date-picker/style/MonthPicker.less +++ /dev/null @@ -1,11 +0,0 @@ -.@{calendar-prefix-cls}-month { - .@{calendar-prefix-cls}-month-header-wrap { - position: relative; - height: 288px; - } - .@{calendar-prefix-cls}-month-panel, - .@{calendar-prefix-cls}-year-panel { - top: 0; - height: 100%; - } -} diff --git a/components/date-picker/style/Picker.less b/components/date-picker/style/Picker.less deleted file mode 100644 index e0a5e119c2..0000000000 --- a/components/date-picker/style/Picker.less +++ /dev/null @@ -1,109 +0,0 @@ -@import '../../button/style/mixin'; - -.@{calendar-prefix-cls}-picker-container { - .reset-component; - - position: absolute; - z-index: @zindex-picker; - font-family: @font-family; - - &.slide-up-enter.slide-up-enter-active&-placement-topLeft, - &.slide-up-enter.slide-up-enter-active&-placement-topRight, - &.slide-up-appear.slide-up-appear-active&-placement-topLeft, - &.slide-up-appear.slide-up-appear-active&-placement-topRight { - animation-name: antSlideDownIn; - } - - &.slide-up-enter.slide-up-enter-active&-placement-bottomLeft, - &.slide-up-enter.slide-up-enter-active&-placement-bottomRight, - &.slide-up-appear.slide-up-appear-active&-placement-bottomLeft, - &.slide-up-appear.slide-up-appear-active&-placement-bottomRight { - animation-name: antSlideUpIn; - } - - &.slide-up-leave.slide-up-leave-active&-placement-topLeft, - &.slide-up-leave.slide-up-leave-active&-placement-topRight { - animation-name: antSlideDownOut; - } - - &.slide-up-leave.slide-up-leave-active&-placement-bottomLeft, - &.slide-up-leave.slide-up-leave-active&-placement-bottomRight { - animation-name: antSlideUpOut; - } -} - -.@{calendar-prefix-cls}-picker { - .reset-component; - - position: relative; - display: inline-block; - outline: none; - cursor: text; - transition: opacity 0.3s; - - &-input { - outline: none; - - &.@{ant-prefix}-input { - line-height: @line-height-base; - } - } - - &-input.@{ant-prefix}-input-sm { - padding-top: 0; - padding-bottom: 0; - } - - &:hover &-input:not(.@{ant-prefix}-input-disabled) { - border-color: @input-hover-border-color; - } - - &:focus &-input:not(.@{ant-prefix}-input-disabled) { - .active(); - } - - &-clear, - &-icon { - position: absolute; - top: 50%; - right: @control-padding-horizontal; - z-index: 1; - width: 14px; - height: 14px; - margin-top: -7px; - font-size: @font-size-sm; - line-height: 14px; - transition: all 0.3s; - user-select: none; - } - - &-clear { - z-index: 2; - color: @disabled-color; - font-size: @font-size-base; - background: @input-bg; - cursor: pointer; - opacity: 0; - pointer-events: none; - &:hover { - color: @text-color-secondary; - } - } - - &:hover &-clear { - opacity: 1; - pointer-events: auto; - } - - &-icon { - display: inline-block; - color: @disabled-color; - font-size: @font-size-base; - line-height: 1; - } - - &-small &-clear, - &-small &-icon { - right: @control-padding-horizontal-sm; - } -} diff --git a/components/date-picker/style/RangePicker.less b/components/date-picker/style/RangePicker.less deleted file mode 100644 index 5bbdd2998f..0000000000 --- a/components/date-picker/style/RangePicker.less +++ /dev/null @@ -1,248 +0,0 @@ -@input-box-height: 34px; - -.@{calendar-prefix-cls}-range-picker-input { - width: 44%; - height: 99%; - text-align: center; - background-color: transparent; - border: 0; - outline: 0; - .placeholder(); - - &[disabled] { - cursor: not-allowed; - } -} - -.@{calendar-prefix-cls}-range-picker-separator { - display: inline-block; - min-width: 10px; - height: 100%; - color: @text-color-secondary; - white-space: nowrap; - text-align: center; - vertical-align: top; - pointer-events: none; -} - -.@{calendar-prefix-cls}-range { - width: 552px; - overflow: hidden; - - .@{calendar-prefix-cls}-date-panel { - &::after { - display: block; - clear: both; - height: 0; - visibility: hidden; - content: '.'; - } - } - &-part { - position: relative; - width: 50%; - } - - &-left { - float: left; - .@{calendar-prefix-cls} { - &-time-picker-inner { - border-right: 1px solid @border-color-split; - } - } - } - - &-right { - float: right; - .@{calendar-prefix-cls} { - &-time-picker-inner { - border-left: 1px solid @border-color-split; - } - } - } - - &-middle { - position: absolute; - left: 50%; - z-index: 1; - height: @input-box-height; - margin: 1px 0 0 0; - padding: 0 200px 0 0; - color: @text-color-secondary; - line-height: @input-box-height; - text-align: center; - transform: translateX(-50%); - pointer-events: none; - } - - &-right .@{calendar-prefix-cls}-date-input-wrap { - margin-left: -90px; - } - - &.@{calendar-prefix-cls}-time &-middle { - padding: 0 10px 0 0; - transform: translateX(-50%); - } - - .@{calendar-prefix-cls}-today - :not(.@{calendar-prefix-cls}-disabled-cell) - :not(.@{calendar-prefix-cls}-last-month-cell) - :not(.@{calendar-prefix-cls}-next-month-btn-day) { - .@{calendar-prefix-cls}-date { - color: @primary-color; - background: @primary-2; - border-color: @primary-color; - } - } - - .@{calendar-prefix-cls}-selected-start-date, - .@{calendar-prefix-cls}-selected-end-date { - .calendar-selected-cell; - } - - &.@{calendar-prefix-cls}-time &-right .@{calendar-prefix-cls}-date-input-wrap { - margin-left: 0; - } - - .@{calendar-prefix-cls}-input-wrap { - position: relative; - height: @input-box-height; - } - - .@{calendar-prefix-cls}-input, - .@{calendar-timepicker-prefix-cls}-input { - .input; - height: @input-height-sm; - padding-right: 0; - padding-left: 0; - line-height: @input-height-sm; - border: 0; - box-shadow: none; - - &:focus { - box-shadow: none; - } - } - - .@{calendar-timepicker-prefix-cls}-icon { - display: none; - } - - &.@{calendar-prefix-cls}-week-number { - width: 574px; - - .@{calendar-prefix-cls}-range-part { - width: 286px; - } - } - - .@{calendar-prefix-cls}-year-panel, - .@{calendar-prefix-cls}-month-panel, - .@{calendar-prefix-cls}-decade-panel { - top: @input-box-height; - } - .@{calendar-prefix-cls}-month-panel .@{calendar-prefix-cls}-year-panel { - top: 0; - } - .@{calendar-prefix-cls}-decade-panel-table, - .@{calendar-prefix-cls}-year-panel-table, - .@{calendar-prefix-cls}-month-panel-table { - height: 208px; - } - - .@{calendar-prefix-cls}-in-range-cell { - position: relative; - border-radius: 0; - > div { - position: relative; - z-index: 1; - } - &::before { - position: absolute; - top: 4px; - right: 0; - bottom: 4px; - left: 0; - display: block; - background: @calendar-item-active-bg; - border: 0; - border-radius: 0; - content: ''; - } - } - - .@{calendar-prefix-cls}-footer-extra { - float: left; - } - - // `div` for selector specificity - div&-quick-selector { - text-align: left; - - > a { - margin-right: 8px; - } - } - - .@{calendar-prefix-cls}, - .@{calendar-prefix-cls}-month-panel, - .@{calendar-prefix-cls}-year-panel, - .@{calendar-prefix-cls}-decade-panel { - &-header { - border-bottom: 0; - } - &-body { - border-top: @border-width-base @border-style-base @border-color-split; - } - } - - &.@{calendar-prefix-cls}-time { - .@{calendar-timepicker-prefix-cls} { - top: 68px; - z-index: 2; // cover .ant-calendar-range .ant-calendar-in-range-cell > div (z-index: 1) - width: 100%; - height: 207px; - &-panel { - height: 267px; - margin-top: -34px; - } - - &-inner { - height: 100%; - padding-top: 40px; - background: none; - } - - &-combobox { - display: inline-block; - height: 100%; - background-color: @component-background; - border-top: @border-width-base @border-style-base @border-color-split; - } - &-select { - height: 100%; - ul { - max-height: 100%; - } - } - } - .@{calendar-prefix-cls}-footer .@{calendar-prefix-cls}-time-picker-btn { - margin-right: 8px; - } - .@{calendar-prefix-cls}-today-btn { - height: 22px; - margin: 8px 12px; - line-height: 22px; - } - } - - &-with-ranges.@{calendar-prefix-cls}-time .@{calendar-timepicker-prefix-cls} { - height: 233px; - } -} - -.@{calendar-prefix-cls}-range.@{calendar-prefix-cls}-show-time-picker { - .@{calendar-prefix-cls}-body { - border-top-color: transparent; - } -} diff --git a/components/date-picker/style/WeekPicker.less b/components/date-picker/style/WeekPicker.less deleted file mode 100644 index 8b592d7b0e..0000000000 --- a/components/date-picker/style/WeekPicker.less +++ /dev/null @@ -1,21 +0,0 @@ -.@{calendar-prefix-cls}-week-number { - &-cell { - opacity: 0.5; - } - .@{calendar-prefix-cls}-body tr { - cursor: pointer; - transition: all 0.3s; - &:hover { - background: @primary-1; - } - &.@{calendar-prefix-cls}-active-week { - font-weight: bold; - background: @primary-2; - } - .@{calendar-prefix-cls}-selected-day .@{calendar-prefix-cls}-date, - .@{calendar-prefix-cls}-selected-day:hover .@{calendar-prefix-cls}-date { - color: @text-color; - background: transparent; - } - } -} diff --git a/components/date-picker/style/index.less b/components/date-picker/style/index.less index 14eedcced9..9f694329e6 100644 --- a/components/date-picker/style/index.less +++ b/components/date-picker/style/index.less @@ -1,17 +1,286 @@ @import '../../style/themes/index'; @import '../../style/mixins/index'; @import '../../input/style/mixin'; -@import '../../button/style/mixin'; +@import './panel'; -@calendar-prefix-cls: ~'@{ant-prefix}-calendar'; -@calendar-timepicker-prefix-cls: ~'@{ant-prefix}-calendar-time-picker'; +@picker-prefix-cls: ~'@{ant-prefix}-picker'; +@picker-text-height: 40px; -@import 'Picker'; -@import 'Calendar'; -@import 'RangePicker'; -@import 'TimePicker'; -@import 'MonthPanel'; -@import 'YearPanel'; -@import 'DecadePanel'; -@import 'MonthPicker'; -@import 'WeekPicker'; +.@{picker-prefix-cls} { + @vertical-fix-base: @input-height-base - ceil(@font-size-base * @line-height-base) - 2 * + @input-padding-vertical-base - 2 * @border-width-base; + @vertical-fix-lg: @input-height-lg - ceil(@font-size-lg * @line-height-base) - 2 * + @input-padding-vertical-lg - 2 * @border-width-base; + @vertical-fix-sm: @input-height-sm - ceil(@font-size-base * @line-height-base) - 2 * + @input-padding-vertical-sm - 2 * @border-width-base; + @arrow-size: 10px; + + .reset-component; + display: inline-flex; + padding: @input-padding-vertical-base @input-padding-horizontal-base @input-padding-vertical-base + + @vertical-fix-base; + background: @component-background; + border: @border-width-base @border-style-base @select-border-color; + border-radius: @border-radius-base; + transition: border @animation-duration-slow, box-shadow @animation-duration-slow; + + &:hover, + &-focused { + .hover(); + } + + &-focused { + .active(); + } + + &&-disabled { + background: @input-disabled-bg; + border-color: @select-border-color; + } + + // ======================== Input ========================= + &-input { + position: relative; + display: inline-flex; + width: 100%; + + > input { + .input(); + flex: auto; + + // Fix Firefox flex not correct: + // https://github.com/ant-design/ant-design/pull/20023#issuecomment-564389553 + min-width: 1px; + height: auto; + padding: 0; + background: transparent; + + border: 0; + + &:focus { + box-shadow: none; + } + + &[disabled] { + background: transparent; + } + } + + &:hover { + .@{picker-prefix-cls}-clear { + opacity: 1; + } + } + } + + // Size + &-large { + padding: @input-padding-vertical-lg @input-padding-horizontal-lg @input-padding-vertical-lg + + @vertical-fix-lg; + + .@{picker-prefix-cls}-input > input { + font-size: @font-size-lg; + } + } + + &-small { + padding: @input-padding-vertical-sm @input-padding-horizontal-sm @input-padding-vertical-sm + + @vertical-fix-sm; + } + + &-suffix { + align-self: center; + margin-left: @padding-xs / 2; + color: @disabled-color; + pointer-events: none; + } + + &-clear { + position: absolute; + top: 50%; + right: 0; + color: @disabled-color; + background: @component-background; + transform: translateY(-50%); + cursor: pointer; + opacity: 0; + transition: opacity @animation-duration-slow, color @animation-duration-slow; + + &:hover { + color: @text-color-secondary; + } + } + + &-separator { + display: inline-block; + align-self: center; + width: 2em; + height: @font-size-lg; + color: @disabled-color; + font-size: @font-size-lg; + line-height: @font-size-lg; + text-align: center; + } + + // ======================== Range ========================= + &-range { + position: relative; + display: inline-flex; + + // Clear + .@{picker-prefix-cls}-clear { + right: @input-padding-horizontal-base; + } + + &:hover { + .@{picker-prefix-cls}-clear { + opacity: 1; + } + } + + // Active bar + .@{picker-prefix-cls}-active-bar { + bottom: -@border-width-base; + height: 2px; + margin-left: @input-padding-horizontal-base; + background: @primary-color; + opacity: 0; + transition: all @animation-duration-slow ease-out; + pointer-events: none; + } + + &.@{picker-prefix-cls}-focused { + .@{picker-prefix-cls}-active-bar { + opacity: 1; + } + } + } + + // ======================= Dropdown ======================= + &-dropdown { + .reset-component; + position: absolute; + z-index: @zindex-picker-panel; + + &-hidden { + display: none; + } + + &-placement-bottomLeft { + .@{picker-prefix-cls}-range-arrow { + top: @arrow-size / 2 - @arrow-size / 3; + display: block; + transform: rotate(-45deg); + } + } + + &-placement-topLeft { + .@{picker-prefix-cls}-range-arrow { + bottom: @arrow-size / 2 - @arrow-size / 3; + display: block; + transform: rotate(135deg); + } + } + } + + &-dropdown-range { + padding: (@arrow-size * 2 / 3) 0; + + &-hidden { + display: none; + } + } + + // Time picker with additional style + &-dropdown &-panel > &-time-panel { + padding-top: @padding-xs / 2; + } + + // ======================== Ranges ======================== + &-ranges { + padding: @padding-xs / 2 @padding-sm; + overflow: hidden; + line-height: @picker-text-height - 2 * @border-width-base - @padding-xs / 2; + text-align: left; + list-style: none; + + > li { + display: inline-block; + } + + .@{picker-prefix-cls}-preset { + cursor: pointer; + } + + .@{picker-prefix-cls}-ok { + float: right; + margin-left: @padding-xs; + } + } + + &-range-wrapper { + display: flex; + } + + &-range-arrow { + position: absolute; + z-index: 1; + display: none; + width: @arrow-size; + height: @arrow-size; + margin-left: @input-padding-horizontal-base * 1.5; + transition: left @animation-duration-slow ease-out; + + // .@{picker-prefix-cls}-time-range-wrapper & { + // display: none !important; + // } + + &::before, + &::after { + position: absolute; + content: ''; + } + + &::before { + top: 0; + right: 0; + width: @arrow-size; + height: @arrow-size; + border: @arrow-size / 2 solid @border-color-split; + border-color: @border-color-split @border-color-split transparent transparent; + } + &::after { + top: @border-width-base; + right: @border-width-base; + width: @arrow-size; + height: @arrow-size; + border: @arrow-size / 2 solid @border-color-split; + border-color: @calendar-bg @calendar-bg transparent transparent; + } + } + + &-panel-container { + overflow: hidden; + vertical-align: top; + background: @calendar-bg; + border-radius: @border-radius-base; + box-shadow: @box-shadow-base; + transition: margin @animation-duration-slow; + + .@{picker-prefix-cls}-panels { + display: inline-flex; + flex-wrap: nowrap; + } + + .@{picker-prefix-cls}-panel { + vertical-align: top; + background: transparent; + border-width: 0 0 @border-width-base 0; + border-radius: 0; + + &-focused { + border-color: @border-color-split; + } + } + } +} diff --git a/components/date-picker/style/index.tsx b/components/date-picker/style/index.tsx index f27ae9b25f..cc4424295a 100644 --- a/components/date-picker/style/index.tsx +++ b/components/date-picker/style/index.tsx @@ -1,8 +1,5 @@ -import '../../style/index.less'; import './index.less'; // style dependencies -// deps-lint-skip: input -import '../../input/style'; -import '../../time-picker/style'; import '../../tag/style'; +import '../../button/style'; diff --git a/components/date-picker/style/panel.less b/components/date-picker/style/panel.less new file mode 100644 index 0000000000..ed460cd819 --- /dev/null +++ b/components/date-picker/style/panel.less @@ -0,0 +1,627 @@ +@import './index'; + +@picker-cell-inner-cls: ~'@{picker-prefix-cls}-cell-inner'; +@picker-legacy-cell-cls: ~'@{ant-prefix}-calendar-date'; + +.@{picker-prefix-cls} { + @picker-basic-cell-hover-color: lighten(@primary-color, 40%); + @picker-basic-cell-hover-with-range-color: lighten(@primary-color, 35%); + @picker-border: @border-width-base @border-style-base @border-color-split; + @picker-arrow-size: 7px; + @picker-date-hover-range-border: @border-width-base dashed lighten(@primary-color, 20%); + @picker-panel-width: 280px; + @picker-year-month-cell-width: 60px; + + &-panel { + display: inline-block; + text-align: center; + background: @calendar-bg; + border: @picker-border; + border-radius: @border-radius-base; + outline: none; + + &-focused { + border-color: @primary-color; + } + } + + // ======================================================== + // = Shared Panel = + // ======================================================== + &-decade-panel, + &-year-panel, + &-month-panel, + &-week-panel, + &-date-panel, + &-time-panel { + display: flex; + flex-direction: column; + width: @picker-panel-width; + } + + // ======================= Header ======================= + &-header { + display: flex; + padding: 0 @padding-xs; + color: @heading-color; + border-bottom: @picker-border; + + > * { + flex: none; + } + + button { + padding: 0; + color: @disabled-color; + line-height: @picker-text-height; + background: transparent; + border: 0; + cursor: pointer; + transition: color @animation-duration-slow; + } + + > button { + min-width: 1.6em; + font-size: @font-size-base; + + &:hover { + color: @text-color; + } + } + + &-view { + flex: auto; + font-weight: 500; + line-height: @picker-text-height; + + button { + color: inherit; + font-weight: inherit; + + &:not(:first-child) { + margin-left: @padding-xs; + } + + &:hover { + color: @primary-color; + } + } + } + } + + // Arrow button + &-prev-icon, + &-next-icon, + &-super-prev-icon, + &-super-next-icon { + position: relative; + display: inline-block; + width: @picker-arrow-size; + height: @picker-arrow-size; + + &::before { + position: absolute; + top: 0; + left: 0; + display: inline-block; + width: @picker-arrow-size; + height: @picker-arrow-size; + border: 0 solid currentColor; + border-width: 1.5px 0 0 1.5px; + content: ''; + } + } + + &-super-prev-icon, + &-super-next-icon { + &::after { + position: absolute; + top: ceil(@picker-arrow-size / 2); + left: ceil(@picker-arrow-size / 2); + display: inline-block; + width: @picker-arrow-size; + height: @picker-arrow-size; + border: 0 solid currentColor; + border-width: 1.5px 0 0 1.5px; + content: ''; + } + } + + &-prev-icon, + &-super-prev-icon { + transform: rotate(-45deg); + } + + &-next-icon, + &-super-next-icon { + transform: rotate(135deg); + } + + // ======================== Body ======================== + &-content { + width: 100%; + table-layout: fixed; + border-collapse: collapse; + + th, + td { + position: relative; + min-width: 24px; + font-weight: 400; + } + + th { + height: 30px; + color: @text-color; + line-height: 30px; + } + } + + .picker-cell-inner(@cellClassName) { + &::before { + position: absolute; + top: 50%; + right: 0; + left: 0; + z-index: 1; + height: 24px; + transform: translateY(-50%); + content: ''; + } + + // >>> Default + .@{cellClassName} { + position: relative; + z-index: 2; + display: inline-block; + min-width: 24px; + height: 24px; + line-height: 24px; + border-radius: @border-radius-base; + transition: background @animation-duration-slow, border @animation-duration-slow; + } + + // >>> Hover + &:hover:not(&-in-view), + &:hover:not(&-selected):not(&-range-start):not(&-range-end):not(&-range-hover-start):not(&-range-hover-end) { + .@{cellClassName} { + background: @picker-basic-cell-hover-color; + } + } + + // >>> Today + &-in-view&-today .@{cellClassName} { + &::before { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + border: @border-width-base @border-style-base @primary-color; + border-radius: @border-radius-base; + content: ''; + } + } + + // >>> In Range + &-in-view&-in-range { + position: relative; + + &::before { + background: @picker-basic-cell-hover-color; + } + } + + // >>> Selected + &-in-view&-selected .@{cellClassName}, + &-in-view&-range-start .@{cellClassName}, + &-in-view&-range-end .@{cellClassName} { + color: @text-color-inverse; + background: @primary-color; + } + + &-in-view&-range-start:not(&-range-start-single), + &-in-view&-range-end:not(&-range-end-single) { + &::before { + background: @picker-basic-cell-hover-color; + } + } + + &-in-view&-range-start::before { + left: 50%; + } + &-in-view&-range-end::before { + right: 50%; + } + + // >>> Range Hover + &-in-view&-range-hover-start:not(&-in-range):not(&-range-start):not(&-range-end), + &-in-view&-range-hover-end:not(&-in-range):not(&-range-start):not(&-range-end), + &-in-view&-range-hover-start&-range-start-single, + &-in-view&-range-hover-end&-range-end-single, + &-in-view&-range-hover:not(&-in-range) { + &::after { + position: absolute; + top: 50%; + z-index: 0; + height: 24px; + border-top: @picker-date-hover-range-border; + border-bottom: @picker-date-hover-range-border; + transform: translateY(-50%); + content: ''; + } + } + + // Add space for stash + &-range-hover-start::after, + &-range-hover-end::after, + &-range-hover::after { + right: 0; + left: 2px; + } + + // Hover with in range + &-in-view&-in-range&-range-hover::before, + &-in-view&-range-start&-range-hover::before, + &-in-view&-range-end&-range-hover::before, + &-in-view&-range-start:not(&-range-start-single)&-range-hover-start::before, + &-in-view&-range-end:not(&-range-end-single)&-range-hover-end::before, + .@{picker-prefix-cls}-panel + > :not(.@{picker-prefix-cls}-date-panel) + &-in-view&-in-range&-range-hover-start::before, + .@{picker-prefix-cls}-panel + > :not(.@{picker-prefix-cls}-date-panel) + &-in-view&-in-range&-range-hover-end::before { + background: @picker-basic-cell-hover-with-range-color; + } + + // DatePanel only + .@{picker-prefix-cls}-date-panel &-in-view&-in-range&-range-hover-start .@{cellClassName}, + .@{picker-prefix-cls}-date-panel &-in-view&-in-range&-range-hover-end .@{cellClassName} { + &::after { + position: absolute; + top: 0; + bottom: 0; + z-index: -1; + background: @picker-basic-cell-hover-with-range-color; + content: ''; + } + } + .@{picker-prefix-cls}-date-panel + &-in-view&-in-range&-range-hover-start + .@{cellClassName}::after { + right: -6px - @border-width-base; + left: 0; + } + .@{picker-prefix-cls}-date-panel &-in-view&-in-range&-range-hover-end .@{cellClassName}::after { + right: 0; + left: -6px - @border-width-base; + } + + // Hover with range start & end + &-range-hover&-range-start::after { + right: 50%; + } + &-range-hover&-range-end::after { + left: 50%; + } + + // Edge start + tr > &-in-view&-range-hover:first-child::after, + tr > &-in-view&-range-hover-end:first-child::after, + &-in-view&-range-hover-edge-start:not(&-range-hover-edge-start-near-range)::after, + &-in-view&-range-hover-start::after { + left: 6px; + border-left: @picker-date-hover-range-border; + border-top-left-radius: @border-radius-base; + border-bottom-left-radius: @border-radius-base; + } + + // Edge end + tr > &-in-view&-range-hover:last-child::after, + tr > &-in-view&-range-hover-start:last-child::after, + &-in-view&-range-hover-edge-end:not(&-range-hover-edge-end-near-range)::after, + &-in-view&-range-hover-end::after { + right: 6px; + border-right: @picker-date-hover-range-border; + border-top-right-radius: @border-radius-base; + border-bottom-right-radius: @border-radius-base; + } + + // >>> Disabled + &-disabled { + pointer-events: none; + + .@{cellClassName} { + color: @disabled-color; + background: transparent; + } + + &::before { + background: @disabled-bg; + } + } + &-disabled&-today .@{cellClassName}::before { + border-color: @disabled-color; + } + } + + &-cell { + padding: 3px 0; + color: @disabled-color; + cursor: pointer; + + // In view + &-in-view { + color: @text-color; + } + + // Disabled + &-disabled { + cursor: not-allowed; + } + + .picker-cell-inner(~'@{picker-cell-inner-cls}'); + .picker-cell-inner(~'@{picker-legacy-cell-cls}'); + } + + &-decade-panel, + &-year-panel, + &-month-panel { + .@{picker-prefix-cls}-content { + height: 265px; + } + + .@{picker-cell-inner-cls} { + padding: 0 @padding-xs; + } + + .@{picker-prefix-cls}-cell { + &-disabled .@{picker-cell-inner-cls} { + background: @disabled-bg; + } + } + } + + &-decade-panel { + .@{picker-prefix-cls}-cell { + &::before { + display: none; + } + } + } + + // ======================== Footer ======================== + &-footer { + line-height: @picker-text-height - 2 * @border-width-base; + text-align: center; + border-bottom: @border-width-base @border-style-base transparent; + + .@{picker-prefix-cls}-panel & { + border-top: @picker-border; + } + + &-extra { + padding: 0 @padding-sm; + line-height: @picker-text-height - 2 * @border-width-base; + text-align: left; + + &:not(:last-child) { + border-bottom: @picker-border; + } + } + } + + &-now { + text-align: left; + } + + &-today-btn { + color: @link-color; + + &:hover { + color: @link-hover-color; + } + + &:active { + color: @link-active-color; + } + } + + // ======================================================== + // = Special = + // ======================================================== + + // ===================== Decade Panel ===================== + &-decade-panel { + .@{picker-cell-inner-cls} { + padding: 0 (@padding-xs / 2); + } + } + + // ================== Year & Month Panel ================== + &-year-panel, + &-month-panel { + @hover-cell-fixed-distance: ( + (@picker-panel-width - @padding-xs * 2) / 3 - @picker-year-month-cell-width + ) / 2; + + .@{picker-prefix-cls}-body { + padding: 0 @padding-xs; + } + + .@{picker-cell-inner-cls} { + width: @picker-year-month-cell-width; + } + + .@{picker-prefix-cls}-cell-range-hover-start::after { + left: @hover-cell-fixed-distance; + border-left: @picker-date-hover-range-border; + border-radius: @border-radius-base 0 0 @border-radius-base; + } + .@{picker-prefix-cls}-cell-range-hover-end::after { + right: @hover-cell-fixed-distance; + border-right: @picker-date-hover-range-border; + border-radius: 0 @border-radius-base @border-radius-base 0; + } + } + + // ====================== Week Panel ====================== + &-week-panel { + .@{picker-prefix-cls}-body { + padding: @padding-xs @padding-sm; + } + + // Clear cell style + .@{picker-prefix-cls}-cell { + &:hover .@{picker-cell-inner-cls}, + &-selected .@{picker-cell-inner-cls}, + .@{picker-cell-inner-cls} { + background: transparent !important; + } + } + + &-row { + td { + transition: background @animation-duration-slow; + } + + &:hover td { + background: @picker-basic-cell-hover-color; + } + + &-selected td, + &-selected:hover td { + background: @primary-color; + + &.@{picker-prefix-cls}-cell-week { + color: fade(@text-color-inverse, 50%); + } + + &.@{picker-prefix-cls}-cell-today .@{picker-cell-inner-cls}::before { + border-color: @text-color-inverse; + } + + .@{picker-cell-inner-cls} { + color: @text-color-inverse; + } + } + } + } + + // ====================== Date Panel ====================== + &-date-panel { + .@{picker-prefix-cls}-body { + padding: @padding-xs @padding-sm; + } + + .@{picker-prefix-cls}-content { + width: 36px * 7; + + th { + width: 36px; + } + } + } + + // ==================== Datetime Panel ==================== + &-datetime-panel { + display: flex; + + .@{picker-prefix-cls}-time-panel { + border-left: @picker-border; + } + + .@{picker-prefix-cls}-date-panel, + .@{picker-prefix-cls}-time-panel { + transition: opacity @animation-duration-slow; + } + + // Keyboard + &-active { + .@{picker-prefix-cls}-date-panel, + .@{picker-prefix-cls}-time-panel { + opacity: 0.3; + + &-active { + opacity: 1; + } + } + } + } + + // ====================== Time Panel ====================== + &-time-panel { + width: auto; + min-width: auto; + + .@{picker-prefix-cls}-content { + display: flex; + flex: auto; + height: 224px; + } + + &-column { + flex: 1 0 auto; + width: 56px; + margin: 0; + padding: 0 0 194px 0; + overflow-y: hidden; + text-align: left; + list-style: none; + transition: background @animation-duration-slow; + + &:not(:first-child) { + border-left: @picker-border; + } + + &-active { + background: fade(@calendar-item-active-bg, 20%); + } + + &:hover { + overflow-y: auto; + } + + > li { + margin: 0; + padding: 0; + + &.@{picker-prefix-cls}-time-panel-cell { + .@{picker-prefix-cls}-time-panel-cell-inner { + display: block; + width: 100%; + height: 32px; + margin: 0; + padding: 0; + color: @text-color; + line-height: 32px; + text-align: center; + border-radius: 0; + cursor: pointer; + transition: background @animation-duration-slow; + + &:hover { + background: @item-hover-bg; + } + } + + &-selected { + .@{picker-prefix-cls}-time-panel-cell-inner { + background: @calendar-item-active-bg; + } + } + + &-disabled { + .@{picker-prefix-cls}-time-panel-cell-inner { + color: @disabled-color; + background: transparent; + cursor: not-allowed; + } + } + } + } + } + } +} diff --git a/components/date-picker/util.ts b/components/date-picker/util.ts new file mode 100644 index 0000000000..d5f05e22cd --- /dev/null +++ b/components/date-picker/util.ts @@ -0,0 +1,33 @@ +import { PickerMode } from 'rc-picker/lib/interface'; + +export function getPlaceholder(picker: PickerMode | undefined, locale: any): string { + if (picker === 'year' && locale.lang.yearPlaceholder) { + return locale.lang.yearPlaceholder; + } + if (picker === 'month' && locale.lang.monthPlaceholder) { + return locale.lang.monthPlaceholder; + } + if (picker === 'week' && locale.lang.weekPlaceholder) { + return locale.lang.weekPlaceholder; + } + if (picker === 'time' && locale.timePickerLocale.placeholder) { + return locale!.timePickerLocale.placeholder; + } + return locale.lang.placeholder; +} + +export function getRangePlaceholder(picker: PickerMode | undefined, locale: any): [string, string] { + if (picker === 'year' && locale.lang.yearPlaceholder) { + return locale.lang.rangeYearPlaceholder; + } + if (picker === 'month' && locale.lang.monthPlaceholder) { + return locale.lang.rangeMonthPlaceholder; + } + if (picker === 'week' && locale.lang.weekPlaceholder) { + return locale.lang.rangeWeekPlaceholder; + } + if (picker === 'time' && locale.timePickerLocale.placeholder) { + return locale!.timePickerLocale.rangePlaceholder; + } + return locale.lang.rangePlaceholder; +} diff --git a/components/date-picker/utils.ts b/components/date-picker/utils.ts deleted file mode 100644 index b0014e1275..0000000000 --- a/components/date-picker/utils.ts +++ /dev/null @@ -1,15 +0,0 @@ -import * as moment from 'moment'; - -// eslint-disable-next-line import/prefer-default-export -export function formatDate( - value: moment.Moment | undefined | null, - format: string | string[] | undefined, -): string { - if (!value) { - return ''; - } - if (Array.isArray(format)) { - format = format[0]; - } - return value.format(format); -} diff --git a/components/date-picker/wrapPicker.tsx b/components/date-picker/wrapPicker.tsx deleted file mode 100644 index a81d9b4f87..0000000000 --- a/components/date-picker/wrapPicker.tsx +++ /dev/null @@ -1,233 +0,0 @@ -import * as React from 'react'; -import { polyfill } from 'react-lifecycles-compat'; -import TimePickerPanel from 'rc-time-picker/lib/Panel'; -import classNames from 'classnames'; -import * as moment from 'moment'; -import enUS from './locale/en_US'; -import interopDefault from '../_util/interopDefault'; -import LocaleReceiver from '../locale-provider/LocaleReceiver'; -import { generateShowHourMinuteSecond } from '../time-picker'; -import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; -import warning from '../_util/warning'; - -type PickerType = 'date' | 'week' | 'month'; - -interface PickerMap { - [name: string]: string; -} - -const DEFAULT_FORMAT: PickerMap = { - date: 'YYYY-MM-DD', - dateTime: 'YYYY-MM-DD HH:mm:ss', - week: 'gggg-wo', - month: 'YYYY-MM', -}; - -const LOCALE_FORMAT_MAPPING: PickerMap = { - date: 'dateFormat', - dateTime: 'dateTimeFormat', - week: 'weekFormat', - month: 'monthFormat', -}; - -function getColumns({ showHour, showMinute, showSecond, use12Hours }: any) { - let column = 0; - if (showHour) { - column += 1; - } - if (showMinute) { - column += 1; - } - if (showSecond) { - column += 1; - } - if (use12Hours) { - column += 1; - } - return column; -} - -function checkValidate(value: any, propName: string) { - const values: any[] = Array.isArray(value) ? value : [value]; - values.forEach(val => { - if (!val) return; - - warning( - !interopDefault(moment).isMoment(val) || val.isValid(), - 'DatePicker', - `\`${propName}\` provides invalidate moment time. If you want to set empty value, use \`null\` instead.`, - ); - }); -} - -export default function wrapPicker(Picker: React.ComponentClass, pickerType: PickerType): any { - class PickerWrapper extends React.Component { - static defaultProps = { - transitionName: 'slide-up', - popupStyle: {}, - onChange() {}, - onOk() {}, - onOpenChange() {}, - locale: {}, - }; - - static getDerivedStateFromProps({ value, defaultValue }: any) { - checkValidate(defaultValue, 'defaultValue'); - checkValidate(value, 'value'); - return {}; - } - - // Since we need call `getDerivedStateFromProps` for check. Need leave an empty `state` here. - state = {}; - - private picker: any; - - componentDidMount() { - const { autoFocus, disabled } = this.props; - if (autoFocus && !disabled) { - this.focus(); - } - } - - savePicker = (node: any) => { - this.picker = node; - }; - - getDefaultLocale = () => { - const result = { - ...enUS, - ...this.props.locale, - }; - result.lang = { - ...result.lang, - ...(this.props.locale || {}).lang, - }; - return result; - }; - - handleOpenChange = (open: boolean) => { - const { onOpenChange } = this.props; - onOpenChange(open); - }; - - handleFocus: React.FocusEventHandler = e => { - const { onFocus } = this.props; - if (onFocus) { - onFocus(e); - } - }; - - handleBlur: React.FocusEventHandler = e => { - const { onBlur } = this.props; - if (onBlur) { - onBlur(e); - } - }; - - handleMouseEnter: React.MouseEventHandler = e => { - const { onMouseEnter } = this.props; - if (onMouseEnter) { - onMouseEnter(e); - } - }; - - handleMouseLeave: React.MouseEventHandler = e => { - const { onMouseLeave } = this.props; - if (onMouseLeave) { - onMouseLeave(e); - } - }; - - focus() { - this.picker.focus(); - } - - blur() { - this.picker.blur(); - } - - renderPicker = (locale: any, localeCode: string) => { - const { format, showTime } = this.props; - const mergedPickerType = showTime ? `${pickerType}Time` : pickerType; - const mergedFormat = - format || - locale[LOCALE_FORMAT_MAPPING[mergedPickerType]] || - DEFAULT_FORMAT[mergedPickerType]; - - return ( - - {({ getPrefixCls, getPopupContainer: getContextPopupContainer }: ConfigConsumerProps) => { - const { - prefixCls: customizePrefixCls, - inputPrefixCls: customizeInputPrefixCls, - getCalendarContainer, - size, - disabled, - } = this.props; - const getPopupContainer = getCalendarContainer || getContextPopupContainer; - const prefixCls = getPrefixCls('calendar', customizePrefixCls); - const inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls); - const pickerClass = classNames(`${prefixCls}-picker`, { - [`${prefixCls}-picker-${size}`]: !!size, - }); - const pickerInputClass = classNames(`${prefixCls}-picker-input`, inputPrefixCls, { - [`${inputPrefixCls}-lg`]: size === 'large', - [`${inputPrefixCls}-sm`]: size === 'small', - [`${inputPrefixCls}-disabled`]: disabled, - }); - - const timeFormat = (showTime && showTime.format) || 'HH:mm:ss'; - const rcTimePickerProps = { - ...generateShowHourMinuteSecond(timeFormat), - format: timeFormat, - use12Hours: showTime && showTime.use12Hours, - }; - const columns = getColumns(rcTimePickerProps); - const timePickerCls = `${prefixCls}-time-picker-column-${columns}`; - const timePicker = showTime ? ( - {}} - /> - ) : null; - - return ( - - ); - }} - - ); - }; - - render() { - return ( - - {this.renderPicker} - - ); - } - } - - polyfill(PickerWrapper); - return PickerWrapper; -} diff --git a/components/form/__tests__/__snapshots__/demo.test.js.snap b/components/form/__tests__/__snapshots__/demo.test.js.snap index 26dcb21d79..19308f5926 100644 --- a/components/form/__tests__/__snapshots__/demo.test.js.snap +++ b/components/form/__tests__/__snapshots__/demo.test.js.snap @@ -2519,39 +2519,44 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
- -
+
- + +
- +
@@ -2575,40 +2580,44 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
- -
+
- + +
- +
@@ -2632,39 +2641,44 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
- -
+
- + +
- +
@@ -2688,36 +2702,48 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
- - +
+
- ~ + → +
+
+
+
+ - +
@@ -2760,37 +2786,48 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
- - +
+
- ~ + → +
+
+
+
+ - +
@@ -2833,44 +2870,47 @@ exports[`renders ./components/form/demo/time-related-controls.md correctly 1`] =
- - - + - + + - - +
+
@@ -4357,39 +4397,45 @@ exports[`renders ./components/form/demo/validate-static.md correctly 1`] = `
- -
+
- + +
- +
@@ -4436,45 +4482,48 @@ exports[`renders ./components/form/demo/validate-static.md correctly 1`] = `
- - - + - + + - - +
+
@@ -4737,38 +4786,44 @@ exports[`renders ./components/form/demo/validate-static.md correctly 1`] = `
- -
+
- + +
- +
@@ -4787,38 +4842,44 @@ exports[`renders ./components/form/demo/validate-static.md correctly 1`] = `
- -
+
- + +
- +
diff --git a/components/form/style/index.less b/components/form/style/index.less index d12c3fc11b..7e944df66b 100644 --- a/components/form/style/index.less +++ b/components/form/style/index.less @@ -181,11 +181,15 @@ // ======================== Picker ========================= // Fix issue: https://github.com/ant-design/ant-design/issues/4783 - .@{ant-prefix}-calendar-picker, - .@{ant-prefix}-time-picker { - &-icon, - &-clear { - right: 28px; + .@{ant-prefix}-picker { + padding-right: @input-padding-horizontal-base + @font-size-base * 1.3; + + &-large { + padding-right: @input-padding-horizontal-lg + @font-size-base * 1.3; + } + + &-small { + padding-right: @input-padding-horizontal-sm + @font-size-base * 1.3; } } @@ -255,18 +259,9 @@ } } - // arrow and icon - .@{ant-prefix}-calendar-picker-icon::after, - .@{ant-prefix}-time-picker-icon::after, - .@{ant-prefix}-picker-icon::after, - .@{ant-prefix}-select-arrow, - .@{ant-prefix}-cascader-picker-arrow { - color: @warning-color; - } - //input-number, timepicker .@{ant-prefix}-input-number, - .@{ant-prefix}-time-picker-input { + .@{ant-prefix}-picker { border-color: @warning-color; &-focused, &:focus { @@ -318,18 +313,9 @@ } } - // arrow and icon - .@{ant-prefix}-calendar-picker-icon::after, - .@{ant-prefix}-time-picker-icon::after, - .@{ant-prefix}-picker-icon::after, - .@{ant-prefix}-select-arrow, - .@{ant-prefix}-cascader-picker-arrow { - color: @error-color; - } - //input-number, timepicker .@{ant-prefix}-input-number, - .@{ant-prefix}-time-picker-input { + .@{ant-prefix}-picker { border-color: @error-color; &-focused, &:focus { diff --git a/components/input/__tests__/__snapshots__/demo.test.js.snap b/components/input/__tests__/__snapshots__/demo.test.js.snap index 31948afcbb..f6d7eea10e 100644 --- a/components/input/__tests__/__snapshots__/demo.test.js.snap +++ b/components/input/__tests__/__snapshots__/demo.test.js.snap @@ -396,78 +396,87 @@ exports[`renders ./components/input/demo/align.md correctly 1`] = ` />
- -
+
- + +
- - +
- - + - + + - - +
+
- - +
+
- ~ + → +
+
+
+
+ - - +
-
+
- + +
- +
@@ -1180,39 +1208,45 @@ exports[`renders ./components/input/demo/group.md correctly 1`] = ` type="text" value="input content" /> - -
+
- + +
- +

- -
+
- + + - + +
-
+
+
+
- +
`; exports[`Locale Provider set moment locale when locale changes 2`] = `
- -
+
- + + - + +
-
+
+
+
- +
`; exports[`Locale Provider set moment locale when locale changes 3`] = `
- -
+
- + + - + +
-
+
+
+
- +
`; @@ -2726,1893 +2129,2009 @@ exports[`Locale Provider should display the text as ar 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -4620,36 +4139,49 @@ exports[`Locale Provider should display the text as ar 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - س - - - - ح - - - - ن - - - - ث - - - - ر - - - - خ - - - - ج - -
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
-
-
- - ~ - -
+
- +
@@ -6543,13 +5713,13 @@ exports[`Locale Provider should display the text as ar 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 26 +
+ 26 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - - + -
- 09 +
+ 09 +
+
-
-
- -
- - - - - - - - + -
- 16 +
+ 16 +
+
-
-
- -
- - - - - - - - + -
- 23 +
+ 23 +
+
-
-
- -
- - - - - - - - + -
- 30 +
+ 30 +
+
-
-
- -
- - - - - - - -
- - س - - - - ح - - - - ن - - - - ث - - - - ر - - - - خ - - - - ج - -
+
+ س + + ح + + ن + + ث + + ر + + خ + + ج +
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+
-
+
- 10 +
+ 10 +
+
-
-
-
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
+
-
+
- 17 +
+ 17 +
+
-
-
-
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
+
-
+
- 24 +
+ 24 +
+
-
-
-
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
+
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
+ + + + +
@@ -8148,1893 +7212,2009 @@ exports[`Locale Provider should display the text as bg 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -10042,36 +9222,49 @@ exports[`Locale Provider should display the text as bg 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - пн - - - - вт - - - - ср - - - - чт - - - - пт - - - - сб - - - - нд - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -11965,13 +10796,13 @@ exports[`Locale Provider should display the text as bg 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - пн - - - - вт - - - - ср - - - - чт - - - - пт - - - - сб - - - - нд - -
+
+ пн + + вт + + ср + + чт + + пт + + сб + + нд +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -13570,1893 +12295,2009 @@ exports[`Locale Provider should display the text as ca 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -15464,36 +14305,49 @@ exports[`Locale Provider should display the text as ca 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - dl - - - - dt - - - - dc - - - - dj - - - - dv - - - - ds - - - - dg - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -17387,13 +15879,13 @@ exports[`Locale Provider should display the text as ca 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - dl - - - - dt - - - - dc - - - - dj - - - - dv - - - - ds - - - - dg - -
+
+ dl + + dt + + dc + + dj + + dv + + ds + + dg +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -18992,1893 +17378,2009 @@ exports[`Locale Provider should display the text as cs 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -20886,36 +19388,49 @@ exports[`Locale Provider should display the text as cs 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - po - - - - út - - - - st - - - - čt - - - - pá - - - - so - - - - ne - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -22809,13 +20962,13 @@ exports[`Locale Provider should display the text as cs 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - po - - - - út - - - - st - - - - čt - - - - pá - - - - so - - - - ne - -
+
+ po + + út + + st + + čt + + pá + + so + + ne +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -24414,1893 +22461,2009 @@ exports[`Locale Provider should display the text as da 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -26308,36 +24471,49 @@ exports[`Locale Provider should display the text as da 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ma - - - - ti - - - - on - - - - to - - - - fr - - - - lø - - - - sø - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -28231,13 +26045,13 @@ exports[`Locale Provider should display the text as da 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - ma - - - - ti - - - - on - - - - to - - - - fr - - - - lø - - - - sø - -
+
+ ma + + ti + + on + + to + + fr + + lø + + sø +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -29836,1893 +27544,2009 @@ exports[`Locale Provider should display the text as de 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -31730,36 +29554,49 @@ exports[`Locale Provider should display the text as de 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Mo - - - - Di - - - - Mi - - - - Do - - - - Fr - - - - Sa - - - - So - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -33653,13 +31128,13 @@ exports[`Locale Provider should display the text as de 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - Mo - - - - Di - - - - Mi - - - - Do - - - - Fr - - - - Sa - - - - So - -
+
+ Mo + + Di + + Mi + + Do + + Fr + + Sa + + So +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -35258,1893 +32627,2009 @@ exports[`Locale Provider should display the text as el 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -37152,36 +34637,49 @@ exports[`Locale Provider should display the text as el 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Δε - - - - Τρ - - - - Τε - - - - Πε - - - - Πα - - - - Σα - - - - Κυ - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -39075,13 +36211,13 @@ exports[`Locale Provider should display the text as el 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - Δε - - - - Τρ - - - - Τε - - - - Πε - - - - Πα - - - - Σα - - - - Κυ - -
+
+ Δε + + Τρ + + Τε + + Πε + + Πα + + Σα + + Κυ +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -40680,1893 +37710,2009 @@ exports[`Locale Provider should display the text as en 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -42574,36 +39720,49 @@ exports[`Locale Provider should display the text as en 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -44497,13 +41294,13 @@ exports[`Locale Provider should display the text as en 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - Su - - - - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -46102,1893 +42793,2009 @@ exports[`Locale Provider should display the text as en-gb 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -47996,36 +44803,49 @@ exports[`Locale Provider should display the text as en-gb 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - - - - Su - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -49919,13 +46377,13 @@ exports[`Locale Provider should display the text as en-gb 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - Mo - - - - Tu - - - - We - - - - Th - - - - Fr - - - - Sa - - - - Su - -
+
+ Mo + + Tu + + We + + Th + + Fr + + Sa + + Su +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -51524,1893 +47876,2009 @@ exports[`Locale Provider should display the text as es 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -53418,36 +49886,49 @@ exports[`Locale Provider should display the text as es 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - lu - - - - ma - - - - mi - - - - ju - - - - vi - - - - sá - - - - do - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -55341,13 +51460,13 @@ exports[`Locale Provider should display the text as es 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - lu - - - - ma - - - - mi - - - - ju - - - - vi - - - - sá - - - - do - -
+
+ lu + + ma + + mi + + ju + + vi + + sá + + do +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -56946,1893 +52959,2009 @@ exports[`Locale Provider should display the text as et 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -58840,36 +54969,49 @@ exports[`Locale Provider should display the text as et 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - E - - - - T - - - - K - - - - N - - - - R - - - - L - - - - P - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -60763,13 +56543,13 @@ exports[`Locale Provider should display the text as et 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - E - - - - T - - - - K - - - - N - - - - R - - - - L - - - - P - -
+
+ E + + T + + K + + N + + R + + L + + P +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -62368,1893 +58042,2009 @@ exports[`Locale Provider should display the text as fa 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -64262,36 +60052,49 @@ exports[`Locale Provider should display the text as fa 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ش - - - - ی - - - - د - - - - س - - - - چ - - - - پ - - - - ج - -
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
-
-
- - ~ - -
+
- +
@@ -66185,13 +61626,13 @@ exports[`Locale Provider should display the text as fa 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 26 +
+ 26 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - - + -
- 09 +
+ 09 +
+
-
-
- -
- - - - - - - - + -
- 16 +
+ 16 +
+
-
-
- -
- - - - - - - - + -
- 23 +
+ 23 +
+
-
-
- -
- - - - - - - - + -
- 30 +
+ 30 +
+
-
-
- -
- - - - - - - -
- - ش - - - - ی - - - - د - - - - س - - - - چ - - - - پ - - - - ج - -
+
+ ش + + ی + + د + + س + + چ + + پ + + ج +
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+
-
+
- 10 +
+ 10 +
+
-
-
-
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
+
-
+
- 17 +
+ 17 +
+
-
-
-
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
+
-
+
- 24 +
+ 24 +
+
-
-
-
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
+
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
+ + + + +
@@ -67790,1893 +63125,2009 @@ exports[`Locale Provider should display the text as fi 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -69684,36 +65135,49 @@ exports[`Locale Provider should display the text as fi 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ma - - - - ti - - - - ke - - - - to - - - - pe - - - - la - - - - su - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -71607,13 +66709,13 @@ exports[`Locale Provider should display the text as fi 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - ma - - - - ti - - - - ke - - - - to - - - - pe - - - - la - - - - su - -
+
+ ma + + ti + + ke + + to + + pe + + la + + su +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -73212,1893 +68208,2009 @@ exports[`Locale Provider should display the text as fr 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -75106,36 +70218,49 @@ exports[`Locale Provider should display the text as fr 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - lu - - - - ma - - - - me - - - - je - - - - ve - - - - sa - - - - di - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -77029,13 +71792,13 @@ exports[`Locale Provider should display the text as fr 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - lu - - - - ma - - - - me - - - - je - - - - ve - - - - sa - - - - di - -
+
+ lu + + ma + + me + + je + + ve + + sa + + di +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -78634,1893 +73291,2009 @@ exports[`Locale Provider should display the text as fr 2`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -80528,36 +75301,49 @@ exports[`Locale Provider should display the text as fr 2`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - lu - - - - ma - - - - me - - - - je - - - - ve - - - - sa - - - - di - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -82451,13 +76875,13 @@ exports[`Locale Provider should display the text as fr 2`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - lu - - - - ma - - - - me - - - - je - - - - ve - - - - sa - - - - di - -
+
+ lu + + ma + + me + + je + + ve + + sa + + di +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -84056,1893 +78374,2009 @@ exports[`Locale Provider should display the text as he 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -85950,36 +80384,49 @@ exports[`Locale Provider should display the text as he 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - א - - - - ב - - - - ג - - - - ד - - - - ה - - - - ו - - - - ש - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -87873,13 +81958,13 @@ exports[`Locale Provider should display the text as he 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - א - - - - ב - - - - ג - - - - ד - - - - ה - - - - ו - - - - ש - -
+
+ א + + ב + + ג + + ד + + ה + + ו + + ש +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -89478,1893 +83457,2009 @@ exports[`Locale Provider should display the text as hi 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -91372,36 +85467,49 @@ exports[`Locale Provider should display the text as hi 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - र - - - - सो - - - - मं - - - - बु - - - - गु - - - - शु - - - - श - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -93295,13 +87041,13 @@ exports[`Locale Provider should display the text as hi 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - र - - - - सो - - - - मं - - - - बु - - - - गु - - - - शु - - - - श - -
+
+ र + + सो + + मं + + बु + + गु + + शु + + श +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -94900,1893 +88540,2009 @@ exports[`Locale Provider should display the text as hr 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -96794,36 +90550,49 @@ exports[`Locale Provider should display the text as hr 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - po - - - - ut - - - - sr - - - - če - - - - pe - - - - su - - - - ne - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -98717,13 +92124,13 @@ exports[`Locale Provider should display the text as hr 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - po - - - - ut - - - - sr - - - - če - - - - pe - - - - su - - - - ne - -
+
+ po + + ut + + sr + + če + + pe + + su + + ne +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -100322,1893 +93623,2009 @@ exports[`Locale Provider should display the text as hu 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -102216,36 +95633,49 @@ exports[`Locale Provider should display the text as hu 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - h - - - - k - - - - sze - - - - cs - - - - p - - - - szo - - - - v - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -104139,13 +97207,13 @@ exports[`Locale Provider should display the text as hu 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - h - - - - k - - - - sze - - - - cs - - - - p - - - - szo - - - - v - -
+
+ h + + k + + sze + + cs + + p + + szo + + v +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -105744,1893 +98706,2009 @@ exports[`Locale Provider should display the text as hy 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -107638,36 +100716,49 @@ exports[`Locale Provider should display the text as hy 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - h - - - - k - - - - sze - - - - cs - - - - p - - - - szo - - - - v - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -109561,13 +102290,13 @@ exports[`Locale Provider should display the text as hy 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - h - - - - k - - - - sze - - - - cs - - - - p - - - - szo - - - - v - -
+
+ h + + k + + sze + + cs + + p + + szo + + v +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -111166,1893 +103789,2009 @@ exports[`Locale Provider should display the text as id 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -113060,36 +105799,49 @@ exports[`Locale Provider should display the text as id 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Sn - - - - Sl - - - - Rb - - - - Km - - - - Jm - - - - Sb - - - - Mg - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -114983,13 +107373,13 @@ exports[`Locale Provider should display the text as id 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - Sn - - - - Sl - - - - Rb - - - - Km - - - - Jm - - - - Sb - - - - Mg - -
+
+ Sn + + Sl + + Rb + + Km + + Jm + + Sb + + Mg +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -116588,1893 +108872,2009 @@ exports[`Locale Provider should display the text as is 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -118482,36 +110882,49 @@ exports[`Locale Provider should display the text as is 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Má - - - - Þr - - - - Mi - - - - Fi - - - - Fö - - - - La - - - - Su - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -120405,13 +112456,13 @@ exports[`Locale Provider should display the text as is 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - Má - - - - Þr - - - - Mi - - - - Fi - - - - Fö - - - - La - - - - Su - -
+
+ Má + + Þr + + Mi + + Fi + + Fö + + La + + Su +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -122010,1893 +113955,2009 @@ exports[`Locale Provider should display the text as it 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -123904,36 +115965,49 @@ exports[`Locale Provider should display the text as it 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - lu - - - - ma - - - - me - - - - gi - - - - ve - - - - sa - - - - do - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -125827,13 +117539,13 @@ exports[`Locale Provider should display the text as it 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - lu - - - - ma - - - - me - - - - gi - - - - ve - - - - sa - - - - do - -
+
+ lu + + ma + + me + + gi + + ve + + sa + + do +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -127432,1893 +119038,2009 @@ exports[`Locale Provider should display the text as ja 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -129326,36 +121048,49 @@ exports[`Locale Provider should display the text as ja 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - 日 - - - - 月 - - - - 火 - - - - 水 - - - - 木 - - - - 金 - - - - 土 - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -131249,13 +122622,13 @@ exports[`Locale Provider should display the text as ja 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - 日 - - - - 月 - - - - 火 - - - - 水 - - - - 木 - - - - 金 - - - - 土 - -
+
+ 日 + + 月 + + 火 + + 水 + + 木 + + 金 + + 土 +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -132854,1893 +124121,2009 @@ exports[`Locale Provider should display the text as kn 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -134748,36 +126131,49 @@ exports[`Locale Provider should display the text as kn 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ಭಾ - - - - ಸೋ - - - - ಮಂ - - - - ಬು - - - - ಗು - - - - ಶು - - - - ಶ - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -136671,13 +127705,13 @@ exports[`Locale Provider should display the text as kn 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - ಭಾ - - - - ಸೋ - - - - ಮಂ - - - - ಬು - - - - ಗು - - - - ಶು - - - - ಶ - -
+
+ ಭಾ + + ಸೋ + + ಮಂ + + ಬು + + ಗು + + ಶು + + ಶ +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -138276,1893 +129204,2009 @@ exports[`Locale Provider should display the text as ko 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -140170,36 +131214,49 @@ exports[`Locale Provider should display the text as ko 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - 일 - - - - 월 - - - - 화 - - - - 수 - - - - 목 - - - - 금 - - - - 토 - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -142093,13 +132788,13 @@ exports[`Locale Provider should display the text as ko 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - 일 - - - - 월 - - - - 화 - - - - 수 - - - - 목 - - - - 금 - - - - 토 - -
+
+ 일 + + 월 + + 화 + + 수 + + 목 + + 금 + + 토 +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -143698,1893 +134287,2009 @@ exports[`Locale Provider should display the text as ku-iq 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -145592,36 +136297,49 @@ exports[`Locale Provider should display the text as ku-iq 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ش - - - - ی - - - - د - - - - س - - - - چ - - - - پ - - - - ه - -
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
-
-
- - ~ - -
+
- +
@@ -147515,13 +137871,13 @@ exports[`Locale Provider should display the text as ku-iq 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 26 +
+ 26 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - - + -
- 09 +
+ 09 +
+
-
-
- -
- - - - - - - - + -
- 16 +
+ 16 +
+
-
-
- -
- - - - - - - - + -
- 23 +
+ 23 +
+
-
-
- -
- - - - - - - - + -
- 30 +
+ 30 +
+
-
-
- -
- - - - - - - -
- - ش - - - - ی - - - - د - - - - س - - - - چ - - - - پ - - - - ه - -
+
+ ش + + ی + + د + + س + + چ + + پ + + ه +
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+
-
+
- 10 +
+ 10 +
+
-
-
-
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
+
-
+
- 17 +
+ 17 +
+
-
-
-
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
+
-
+
- 24 +
+ 24 +
+
-
-
-
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
+
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
+ + + + +
@@ -149120,1893 +139370,2009 @@ exports[`Locale Provider should display the text as lv 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -151014,36 +141380,49 @@ exports[`Locale Provider should display the text as lv 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - P - - - - O - - - - T - - - - C - - - - Pk - - - - S - - - - Sv - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -152937,13 +142954,13 @@ exports[`Locale Provider should display the text as lv 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - P - - - - O - - - - T - - - - C - - - - Pk - - - - S - - - - Sv - -
+
+ P + + O + + T + + C + + Pk + + S + + Sv +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -154542,1893 +144453,2009 @@ exports[`Locale Provider should display the text as mk 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -156436,36 +146463,49 @@ exports[`Locale Provider should display the text as mk 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - пo - - - - вт - - - - ср - - - - че - - - - пе - - - - сa - - - - нe - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -158359,13 +148037,13 @@ exports[`Locale Provider should display the text as mk 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - пo - - - - вт - - - - ср - - - - че - - - - пе - - - - сa - - - - нe - -
+
+ пo + + вт + + ср + + че + + пе + + сa + + нe +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -159964,1893 +149536,2009 @@ exports[`Locale Provider should display the text as mn-mn 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -161858,36 +151546,49 @@ exports[`Locale Provider should display the text as mn-mn 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Ня - - - - Да - - - - Мя - - - - Лх - - - - Пү - - - - Ба - - - - Бя - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -163781,13 +153120,13 @@ exports[`Locale Provider should display the text as mn-mn 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - Ня - - - - Да - - - - Мя - - - - Лх - - - - Пү - - - - Ба - - - - Бя - -
+
+ Ня + + Да + + Мя + + Лх + + Пү + + Ба + + Бя +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -165386,1893 +154619,2009 @@ exports[`Locale Provider should display the text as ms-my 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -167280,36 +156629,49 @@ exports[`Locale Provider should display the text as ms-my 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Is - - - - Sl - - - - Rb - - - - Km - - - - Jm - - - - Sb - - - - Ah - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -169203,13 +158203,13 @@ exports[`Locale Provider should display the text as ms-my 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - Is - - - - Sl - - - - Rb - - - - Km - - - - Jm - - - - Sb - - - - Ah - -
+
+ Is + + Sl + + Rb + + Km + + Jm + + Sb + + Ah +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -170808,1893 +159702,2009 @@ exports[`Locale Provider should display the text as nb 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -172702,36 +161712,49 @@ exports[`Locale Provider should display the text as nb 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ma - - - - ti - - - - on - - - - to - - - - fr - - - - lø - - - - sø - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -174625,13 +163286,13 @@ exports[`Locale Provider should display the text as nb 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - ma - - - - ti - - - - on - - - - to - - - - fr - - - - lø - - - - sø - -
+
+ ma + + ti + + on + + to + + fr + + lø + + sø +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -176230,1893 +164785,2009 @@ exports[`Locale Provider should display the text as ne-np 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -178124,36 +166795,49 @@ exports[`Locale Provider should display the text as ne-np 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - आ. - - - - सो. - - - - मं. - - - - बु. - - - - बि. - - - - शु. - - - - श. - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -180047,13 +168369,13 @@ exports[`Locale Provider should display the text as ne-np 1`] = `
- सेप्ट. + Sep
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - आ. - - - - सो. - - - - मं. - - - - बु. - - - - बि. - - - - शु. - - - - श. - -
+
+ Su + + Mo + + Tu + + We + + Th + + Fr + + Sa +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -181652,1893 +169868,2009 @@ exports[`Locale Provider should display the text as nl 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -183546,36 +171878,49 @@ exports[`Locale Provider should display the text as nl 1`] = `
- - + +
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ma - - - - di - - - - wo - - - - do - - - - vr - - - - za - - - - zo - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -185469,13 +173452,13 @@ exports[`Locale Provider should display the text as nl 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - ma - - - - di - - - - wo - - - - do - - - - vr - - - - za - - - - zo - -
+
+ ma + + di + + wo + + do + + vr + + za + + zo +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -187074,1893 +174951,2009 @@ exports[`Locale Provider should display the text as nl-be 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -188968,36 +176961,49 @@ exports[`Locale Provider should display the text as nl-be 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ma - - - - di - - - - wo - - - - do - - - - vr - - - - za - - - - zo - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -190891,13 +178535,13 @@ exports[`Locale Provider should display the text as nl-be 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - ma - - - - di - - - - wo - - - - do - - - - vr - - - - za - - - - zo - -
+
+ ma + + di + + wo + + do + + vr + + za + + zo +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -192496,1893 +180034,2009 @@ exports[`Locale Provider should display the text as pl 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -194390,36 +182044,49 @@ exports[`Locale Provider should display the text as pl 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Pn - - - - Wt - - - - Śr - - - - Cz - - - - Pt - - - - So - - - - Nd - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -196313,13 +183618,13 @@ exports[`Locale Provider should display the text as pl 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - Pn - - - - Wt - - - - Śr - - - - Cz - - - - Pt - - - - So - - - - Nd - -
+
+ Pn + + Wt + + Śr + + Cz + + Pt + + So + + Nd +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -197918,1893 +185117,2009 @@ exports[`Locale Provider should display the text as pt 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -199812,36 +187127,49 @@ exports[`Locale Provider should display the text as pt 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - 2ª - - - - 3ª - - - - 4ª - - - - 5ª - - - - 6ª - - - - Sá - - - - Do - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -201735,13 +188701,13 @@ exports[`Locale Provider should display the text as pt 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - 2ª - - - - 3ª - - - - 4ª - - - - 5ª - - - - 6ª - - - - Sá - - - - Do - -
+
+ 2ª + + 3ª + + 4ª + + 5ª + + 6ª + + Sá + + Do +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -203340,1893 +190200,2009 @@ exports[`Locale Provider should display the text as pt-br 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -205234,36 +192210,49 @@ exports[`Locale Provider should display the text as pt-br 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Do - - - - 2ª - - - - 3ª - - - - 4ª - - - - 5ª - - - - 6ª - - - - Sá - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -207157,13 +193784,13 @@ exports[`Locale Provider should display the text as pt-br 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - Do - - - - 2ª - - - - 3ª - - - - 4ª - - - - 5ª - - - - 6ª - - - - Sá - -
+
+ Do + + 2ª + + 3ª + + 4ª + + 5ª + + 6ª + + Sá +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -208762,1893 +195283,2009 @@ exports[`Locale Provider should display the text as ro 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -210656,36 +197293,49 @@ exports[`Locale Provider should display the text as ro 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Lu - - - - Ma - - - - Mi - - - - Jo - - - - Vi - - - - Sâ - - - - Du - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -212579,13 +198867,13 @@ exports[`Locale Provider should display the text as ro 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - Lu - - - - Ma - - - - Mi - - - - Jo - - - - Vi - - - - Sâ - - - - Du - -
+
+ Lu + + Ma + + Mi + + Jo + + Vi + + Sâ + + Du +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -214184,1893 +200366,2009 @@ exports[`Locale Provider should display the text as ru 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -216078,36 +202376,49 @@ exports[`Locale Provider should display the text as ru 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - пн - - - - вт - - - - ср - - - - чт - - - - пт - - - - сб - - - - вс - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -218001,13 +203950,13 @@ exports[`Locale Provider should display the text as ru 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - пн - - - - вт - - - - ср - - - - чт - - - - пт - - - - сб - - - - вс - -
+
+ пн + + вт + + ср + + чт + + пт + + сб + + вс +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -219606,1893 +205449,2009 @@ exports[`Locale Provider should display the text as sk 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -221500,36 +207459,49 @@ exports[`Locale Provider should display the text as sk 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - po - - - - ut - - - - st - - - - št - - - - pi - - - - so - - - - ne - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -223423,13 +209033,13 @@ exports[`Locale Provider should display the text as sk 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - po - - - - ut - - - - st - - - - št - - - - pi - - - - so - - - - ne - -
+
+ po + + ut + + st + + št + + pi + + so + + ne +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -225028,1893 +210532,2009 @@ exports[`Locale Provider should display the text as sl 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -226922,36 +212542,49 @@ exports[`Locale Provider should display the text as sl 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - po - - - - to - - - - sr - - - - če - - - - pe - - - - so - - - - ne - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -228845,13 +214116,13 @@ exports[`Locale Provider should display the text as sl 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - po - - - - to - - - - sr - - - - če - - - - pe - - - - so - - - - ne - -
+
+ po + + to + + sr + + če + + pe + + so + + ne +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -230450,1893 +215615,2009 @@ exports[`Locale Provider should display the text as sr 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -232344,36 +217625,49 @@ exports[`Locale Provider should display the text as sr 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - po - - - - ut - - - - sr - - - - če - - - - pe - - - - su - - - - ne - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -234267,13 +219199,13 @@ exports[`Locale Provider should display the text as sr 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - po - - - - ut - - - - sr - - - - če - - - - pe - - - - su - - - - ne - -
+
+ po + + ut + + sr + + če + + pe + + su + + ne +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -235872,1893 +220698,2009 @@ exports[`Locale Provider should display the text as sv 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -237766,36 +222708,49 @@ exports[`Locale Provider should display the text as sv 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - må - - - - ti - - - - on - - - - to - - - - fr - - - - lö - - - - sö - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -239689,13 +224282,13 @@ exports[`Locale Provider should display the text as sv 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - må - - - - ti - - - - on - - - - to - - - - fr - - - - lö - - - - sö - -
+
+ må + + ti + + on + + to + + fr + + lö + + sö +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -241294,1893 +225781,2009 @@ exports[`Locale Provider should display the text as ta 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -243188,36 +227791,49 @@ exports[`Locale Provider should display the text as ta 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ஞா - - - - தி - - - - செ - - - - பு - - - - வி - - - - வெ - - - - ச - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -245111,13 +229365,13 @@ exports[`Locale Provider should display the text as ta 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - ஞா - - - - தி - - - - செ - - - - பு - - - - வி - - - - வெ - - - - ச - -
+
+ ஞா + + தி + + செ + + பு + + வி + + வெ + + ச +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -246716,1893 +230864,2009 @@ exports[`Locale Provider should display the text as th 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -248610,36 +232874,49 @@ exports[`Locale Provider should display the text as th 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - อา. - - - - จ. - - - - อ. - - - - พ. - - - - พฤ. - - - - ศ. - - - - ส. - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -250533,13 +234448,13 @@ exports[`Locale Provider should display the text as th 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - อา. - - - - จ. - - - - อ. - - - - พ. - - - - พฤ. - - - - ศ. - - - - ส. - -
+
+ อา. + + จ. + + อ. + + พ. + + พฤ. + + ศ. + + ส. +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
@@ -252138,1893 +235947,2009 @@ exports[`Locale Provider should display the text as tr 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -254032,36 +237957,49 @@ exports[`Locale Provider should display the text as tr 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Pt - - - - Sa - - - - Ça - - - - Pe - - - - Cu - - - - Ct - - - - Pz - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -255955,13 +239531,13 @@ exports[`Locale Provider should display the text as tr 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - Pt - - - - Sa - - - - Ça - - - - Pe - - - - Cu - - - - Ct - - - - Pz - -
+
+ Pt + + Sa + + Ça + + Pe + + Cu + + Ct + + Pz +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -257560,1893 +241030,2009 @@ exports[`Locale Provider should display the text as uk 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -259454,36 +243040,49 @@ exports[`Locale Provider should display the text as uk 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - пн - - - - вт - - - - ср - - - - чт - - - - пт - - - - сб - - - - нд - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -261377,13 +244614,13 @@ exports[`Locale Provider should display the text as uk 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - пн - - - - вт - - - - ср - - - - чт - - - - пт - - - - сб - - - - нд - -
+
+ пн + + вт + + ср + + чт + + пт + + сб + + нд +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -262982,1893 +246113,2009 @@ exports[`Locale Provider should display the text as vi 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -264876,36 +248123,49 @@ exports[`Locale Provider should display the text as vi 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - T2 - - - - T3 - - - - T4 - - - - T5 - - - - T6 - - - - T7 - - - - CN - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -266799,13 +249697,13 @@ exports[`Locale Provider should display the text as vi 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - T2 - - - - T3 - - - - T4 - - - - T5 - - - - T6 - - - - T7 - - - - CN - -
+
+ T2 + + T3 + + T4 + + T5 + + T6 + + T7 + + CN +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -268404,1893 +251196,2009 @@ exports[`Locale Provider should display the text as zh-cn 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -270298,36 +253206,49 @@ exports[`Locale Provider should display the text as zh-cn 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - 一 - - - - 二 - - - - 三 - - - - 四 - - - - 五 - - - - 六 - - - - 日 - -
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
-
-
- - ~ - -
+
- +
@@ -272221,13 +254780,13 @@ exports[`Locale Provider should display the text as zh-cn 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 28 +
+ 28 +
+
-
-
- -
- - - - - - - - + -
- 04 +
+ 04 +
+
-
-
- -
- - - - - - - - + -
- 11 +
+ 11 +
+
-
-
- -
- - - - - - - - + -
- 18 +
+ 18 +
+
-
-
- -
- - - - - - - - + -
- 25 +
+ 25 +
+
-
-
- -
- - - - - - - - + -
- 02 +
+ 02 +
+
-
-
- -
- - - - - - - -
- - 一 - - - - 二 - - - - 三 - - - - 四 - - - - 五 - - - - 六 - - - - 日 - -
+
+ 一 + + 二 + + 三 + + 四 + + 五 + + 六 + + 日 +
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
+
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
-
+
- 10 +
+ 10 +
+
-
-
-
+
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
-
+
- 17 +
+ 17 +
+
-
-
-
+
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
-
+
- 24 +
+ 24 +
+
-
-
-
+
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
+
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
+ + + + +
@@ -273826,1893 +256279,2009 @@ exports[`Locale Provider should display the text as zh-tw 1`] = `
- -
+
- + +
-
+
+
+
- - +
- - + - + + - - +
+
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 -
  • -
-
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -275720,36 +258289,49 @@ exports[`Locale Provider should display the text as zh-tw 1`] = `
- - +
+
- ~ + → +
+
+
+
+ -
+
+
+
+
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - 日 - - - - 一 - - - - 二 - - - - 三 - - - - 四 - - - - 五 - - - - 六 - -
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 31 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
- 8 -
-
-
- 9 -
-
-
- 10 -
-
-
- 11 -
-
-
- 12 -
-
-
- 13 -
-
-
- 14 -
-
-
- 15 -
-
-
- 16 -
-
-
- 17 -
-
-
- 18 -
-
-
- 19 -
-
-
- 20 -
-
-
- 21 -
-
-
- 22 -
-
-
- 23 -
-
-
- 24 -
-
-
- 25 -
-
-
- 26 -
-
-
- 27 -
-
-
- 28 -
-
-
- 29 -
-
-
- 30 -
-
-
- 1 -
-
-
- 2 -
-
-
- 3 -
-
-
- 4 -
-
-
- 5 -
-
-
- 6 -
-
-
- 7 -
-
-
-
-
- - ~ - -
+
- +
@@ -277643,13 +259863,13 @@ exports[`Locale Provider should display the text as zh-tw 1`] = `
- - - - - - - - - - - - - - - + + + + + + + + + + + -
- 27 +
+ 27 +
+
-
-
- -
- - - - - - - - + -
- 03 +
+ 03 +
+
-
-
- -
- - - - - - - - + -
- 10 +
+ 10 +
+
-
-
- -
- - - - - - - - + -
- 17 +
+ 17 +
+
-
-
- -
- - - - - - - - + -
- 24 +
+ 24 +
+
-
-
- -
- - - - - - - - + -
- 01 +
+ 01 +
+
-
-
- -
- - - - - - - -
- - 日 - - - - 一 - - - - 二 - - - - 三 - - - - 四 - - - - 五 - - - - 六 - -
+
+ 日 + + 一 + + 二 + + 三 + + 四 + + 五 + + 六 +
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
-
+
- 31 +
+ 31 +
+
-
-
-
-
+
- 01 +
+ 01 +
+
-
-
-
-
+
- 02 +
+ 02 +
+
-
-
-
+
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
-
+
- 08 +
+ 08 +
+
-
-
-
-
+
- 09 +
+ 09 +
+
-
-
-
+
-
+
- 11 +
+ 11 +
+
-
-
-
-
+
- 12 +
+ 12 +
+
-
-
-
-
+
- 13 +
+ 13 +
+
-
-
-
-
+
- 14 +
+ 14 +
+
-
-
-
-
+
- 15 +
+ 15 +
+
-
-
-
-
+
- 16 +
+ 16 +
+
-
-
-
+
-
+
- 18 +
+ 18 +
+
-
-
-
-
+
- 19 +
+ 19 +
+
-
-
-
-
+
- 20 +
+ 20 +
+
-
-
-
-
+
- 21 +
+ 21 +
+
-
-
-
-
+
- 22 +
+ 22 +
+
-
-
-
-
+
- 23 +
+ 23 +
+
-
-
-
+
-
+
- 25 +
+ 25 +
+
-
-
-
-
+
- 26 +
+ 26 +
+
-
-
-
-
+
- 27 +
+ 27 +
+
-
-
-
-
+
- 28 +
+ 28 +
+
-
-
-
-
+
- 29 +
+ 29 +
+
-
-
-
-
+
- 30 +
+ 30 +
+
-
-
-
+
-
+
- 02 +
+ 02 +
+
-
-
-
-
+
- 03 +
+ 03 +
+
-
-
-
-
+
- 04 +
+ 04 +
+
-
-
-
-
+
- 05 +
+ 05 +
+
-
-
-
-
+
- 06 +
+ 06 +
+
-
-
-
-
+
- 07 +
+ 07 +
+
-
-
-
+ + + + +
diff --git a/components/locale/hy_AM.tsx b/components/locale/hy_AM.tsx index ee698cddaa..e934cfbb00 100644 --- a/components/locale/hy_AM.tsx +++ b/components/locale/hy_AM.tsx @@ -1,5 +1,6 @@ const datePickerLocale = { lang: { + locale: 'hy', placeholder: 'Ընտրեք ամսաթիվը', rangePlaceholder: ['Մեկնարկի ամսաթիվ', 'Ավարտի ամսաթիվը'], today: 'Այսօր', diff --git a/components/pagination/style/index.less b/components/pagination/style/index.less index f911f059fc..589e04b908 100644 --- a/components/pagination/style/index.less +++ b/components/pagination/style/index.less @@ -353,7 +353,7 @@ background: @pagination-item-disabled-bg-active; border-color: transparent; a { - color: @pagination-item-disabled-color-active;; + color: @pagination-item-disabled-color-active; } } } diff --git a/components/time-picker/__tests__/__snapshots__/demo.test.js.snap b/components/time-picker/__tests__/__snapshots__/demo.test.js.snap index a27da9a2de..f3a5155625 100644 --- a/components/time-picker/__tests__/__snapshots__/demo.test.js.snap +++ b/components/time-picker/__tests__/__snapshots__/demo.test.js.snap @@ -2,607 +2,728 @@ exports[`renders ./components/time-picker/demo/12hours.md correctly 1`] = `
- - - + - + + - - - +
+
- - + - + + - - - +
+
- - + - + + - - +
+
`; exports[`renders ./components/time-picker/demo/addon.md correctly 1`] = ` - - - + - + + - -
+ + `; exports[`renders ./components/time-picker/demo/basic.md correctly 1`] = ` - - - + - + + - -
+ + `; exports[`renders ./components/time-picker/demo/disabled.md correctly 1`] = ` - - - + - + + - - + + `; exports[`renders ./components/time-picker/demo/hide-column.md correctly 1`] = ` - - - + - + + - - - - - + + + + + + `; exports[`renders ./components/time-picker/demo/interval-options.md correctly 1`] = ` - - - + - + + - - + + +`; + +exports[`renders ./components/time-picker/demo/range-picker.md correctly 1`] = ` +
+
+
+ +
+
+ + → + +
+
+ +
+
+ + + + + +
+
`; exports[`renders ./components/time-picker/demo/size.md correctly 1`] = `
- - - + - + + - - - - - - + + + +
+
+
- - + - + + - - - - - - + + + +
+ +
- - + - + + - - - - - + + + + +
+ `; exports[`renders ./components/time-picker/demo/suffix.md correctly 1`] = ` - - - + - + + - - + + `; exports[`renders ./components/time-picker/demo/value.md correctly 1`] = ` - - - + - + + - - + + `; diff --git a/components/time-picker/__tests__/__snapshots__/index.test.js.snap b/components/time-picker/__tests__/__snapshots__/index.test.js.snap index b4667cd9c6..98725dd57e 100644 --- a/components/time-picker/__tests__/__snapshots__/index.test.js.snap +++ b/components/time-picker/__tests__/__snapshots__/index.test.js.snap @@ -1,64 +1,24 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`TimePicker not render clean icon when allowClear is false 1`] = ` - - - - - - - - -`; - -exports[`TimePicker prop locale should works 1`] = ` -Array [ - - + +`; + +exports[`TimePicker prop locale should works 1`] = ` +Array [ +
+
- + - - - - , + + + + + + + + + +
+
,
- -
-
-
    -
  • +
      - 00 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    +
      - 01 - -
    • +
      + 00 +
      +
    • +
    • +
      + 01 +
      +
    • +
    • +
      + 02 +
      +
    • +
    • +
      + 03 +
      +
    • +
    • +
      + 04 +
      +
    • +
    • +
      + 05 +
      +
    • +
    • +
      + 06 +
      +
    • +
    • +
      + 07 +
      +
    • +
    • +
      + 08 +
      +
    • +
    • +
      + 09 +
      +
    • +
    • +
      + 10 +
      +
    • +
    • +
      + 11 +
      +
    • +
    • +
      + 12 +
      +
    • +
    • +
      + 13 +
      +
    • +
    • +
      + 14 +
      +
    • +
    • +
      + 15 +
      +
    • +
    • +
      + 16 +
      +
    • +
    • +
      + 17 +
      +
    • +
    • +
      + 18 +
      +
    • +
    • +
      + 19 +
      +
    • +
    • +
      + 20 +
      +
    • +
    • +
      + 21 +
      +
    • +
    • +
      + 22 +
      +
    • +
    • +
      + 23 +
      +
    • +
    • +
      + 24 +
      +
    • +
    • +
      + 25 +
      +
    • +
    • +
      + 26 +
      +
    • +
    • +
      + 27 +
      +
    • +
    • +
      + 28 +
      +
    • +
    • +
      + 29 +
      +
    • +
    • +
      + 30 +
      +
    • +
    • +
      + 31 +
      +
    • +
    • +
      + 32 +
      +
    • +
    • +
      + 33 +
      +
    • +
    • +
      + 34 +
      +
    • +
    • +
      + 35 +
      +
    • +
    • +
      + 36 +
      +
    • +
    • +
      + 37 +
      +
    • +
    • +
      + 38 +
      +
    • +
    • +
      + 39 +
      +
    • +
    • +
      + 40 +
      +
    • +
    • +
      + 41 +
      +
    • +
    • +
      + 42 +
      +
    • +
    • +
      + 43 +
      +
    • +
    • +
      + 44 +
      +
    • +
    • +
      + 45 +
      +
    • +
    • +
      + 46 +
      +
    • +
    • +
      + 47 +
      +
    • +
    • +
      + 48 +
      +
    • +
    • +
      + 49 +
      +
    • +
    • +
      + 50 +
      +
    • +
    • +
      + 51 +
      +
    • +
    • +
      + 52 +
      +
    • +
    • +
      + 53 +
      +
    • +
    • +
      + 54 +
      +
    • +
    • +
      + 55 +
      +
    • +
    • +
      + 56 +
      +
    • +
    • +
      + 57 +
      +
    • +
    • +
      + 58 +
      +
    • +
    • +
      + 59 +
      +
    • +
    +
      - 02 - -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    +
  • +
    + 00 +
    +
  • +
  • +
    + 01 +
    +
  • +
  • +
    + 02 +
    +
  • +
  • +
    + 03 +
    +
  • +
  • +
    + 04 +
    +
  • +
  • +
    + 05 +
    +
  • +
  • +
    + 06 +
    +
  • +
  • +
    + 07 +
    +
  • +
  • +
    + 08 +
    +
  • +
  • +
    + 09 +
    +
  • +
  • +
    + 10 +
    +
  • +
  • +
    + 11 +
    +
  • +
  • +
    + 12 +
    +
  • +
  • +
    + 13 +
    +
  • +
  • +
    + 14 +
    +
  • +
  • +
    + 15 +
    +
  • +
  • +
    + 16 +
    +
  • +
  • +
    + 17 +
    +
  • +
  • +
    + 18 +
    +
  • +
  • +
    + 19 +
    +
  • +
  • +
    + 20 +
    +
  • +
  • +
    + 21 +
    +
  • +
  • +
    + 22 +
    +
  • +
  • +
    + 23 +
    +
  • +
  • +
    + 24 +
    +
  • +
  • +
    + 25 +
    +
  • +
  • +
    + 26 +
    +
  • +
  • +
    + 27 +
    +
  • +
  • +
    + 28 +
    +
  • +
  • +
    + 29 +
    +
  • +
  • +
    + 30 +
    +
  • +
  • +
    + 31 +
    +
  • +
  • +
    + 32 +
    +
  • +
  • +
    + 33 +
    +
  • +
  • +
    + 34 +
    +
  • +
  • +
    + 35 +
    +
  • +
  • +
    + 36 +
    +
  • +
  • +
    + 37 +
    +
  • +
  • +
    + 38 +
    +
  • +
  • +
    + 39 +
    +
  • +
  • +
    + 40 +
    +
  • +
  • +
    + 41 +
    +
  • +
  • +
    + 42 +
    +
  • +
  • +
    + 43 +
    +
  • +
  • +
    + 44 +
    +
  • +
  • +
    + 45 +
    +
  • +
  • +
    + 46 +
    +
  • +
  • +
    + 47 +
    +
  • +
  • +
    + 48 +
    +
  • +
  • +
    + 49 +
    +
  • +
  • +
    + 50 +
    +
  • +
  • +
    + 51 +
    +
  • +
  • +
    + 52 +
    +
  • +
  • +
    + 53 +
    +
  • +
  • +
    + 54 +
    +
  • +
  • +
    + 55 +
    +
  • +
  • +
    + 56 +
    +
  • +
  • +
    + 57 +
    +
  • +
  • +
    + 58 +
    +
  • +
  • +
    + 59 +
    +
  • +
+
-
    +
    • - 00 + + Now +
    • - 01 -
    • -
    • - 02 -
    • -
    • - 03 -
    • -
    • - 04 -
    • -
    • - 05 -
    • -
    • - 06 -
    • -
    • - 07 -
    • -
    • - 08 -
    • -
    • - 09 -
    • -
    • - 10 -
    • -
    • - 11 -
    • -
    • - 12 -
    • -
    • - 13 -
    • -
    • - 14 -
    • -
    • - 15 -
    • -
    • - 16 -
    • -
    • - 17 -
    • -
    • - 18 -
    • -
    • - 19 -
    • -
    • - 20 -
    • -
    • - 21 -
    • -
    • - 22 -
    • -
    • - 23 -
    • -
    • - 24 -
    • -
    • - 25 -
    • -
    • - 26 -
    • -
    • - 27 -
    • -
    • - 28 -
    • -
    • - 29 -
    • -
    • - 30 -
    • -
    • - 31 -
    • -
    • - 32 -
    • -
    • - 33 -
    • -
    • - 34 -
    • -
    • - 35 -
    • -
    • - 36 -
    • -
    • - 37 -
    • -
    • - 38 -
    • -
    • - 39 -
    • -
    • - 40 -
    • -
    • - 41 -
    • -
    • - 42 -
    • -
    • - 43 -
    • -
    • - 44 -
    • -
    • - 45 -
    • -
    • - 46 -
    • -
    • - 47 -
    • -
    • - 48 -
    • -
    • - 49 -
    • -
    • - 50 -
    • -
    • - 51 -
    • -
    • - 52 -
    • -
    • - 53 -
    • -
    • - 54 -
    • -
    • - 55 -
    • -
    • - 56 -
    • -
    • - 57 -
    • -
    • - 58 -
    • -
    • - 59 -
    • -
    -
-
-
    -
  • - 00 -
  • -
  • - 01 -
  • -
  • - 02 -
  • -
  • - 03 -
  • -
  • - 04 -
  • -
  • - 05 -
  • -
  • - 06 -
  • -
  • - 07 -
  • -
  • - 08 -
  • -
  • - 09 -
  • -
  • - 10 -
  • -
  • - 11 -
  • -
  • - 12 -
  • -
  • - 13 -
  • -
  • - 14 -
  • -
  • - 15 -
  • -
  • - 16 -
  • -
  • - 17 -
  • -
  • - 18 -
  • -
  • - 19 -
  • -
  • - 20 -
  • -
  • - 21 -
  • -
  • - 22 -
  • -
  • - 23 -
  • -
  • - 24 -
  • -
  • - 25 -
  • -
  • - 26 -
  • -
  • - 27 -
  • -
  • - 28 -
  • -
  • - 29 -
  • -
  • - 30 -
  • -
  • - 31 -
  • -
  • - 32 -
  • -
  • - 33 -
  • -
  • - 34 -
  • -
  • - 35 -
  • -
  • - 36 -
  • -
  • - 37 -
  • -
  • - 38 -
  • -
  • - 39 -
  • -
  • - 40 -
  • -
  • - 41 -
  • -
  • - 42 -
  • -
  • - 43 -
  • -
  • - 44 -
  • -
  • - 45 -
  • -
  • - 46 -
  • -
  • - 47 -
  • -
  • - 48 -
  • -
  • - 49 -
  • -
  • - 50 -
  • -
  • - 51 -
  • -
  • - 52 -
  • -
  • - 53 -
  • -
  • - 54 -
  • -
  • - 55 -
  • -
  • - 56 -
  • -
  • - 57 -
  • -
  • - 58 -
  • -
  • - 59 +
@@ -1154,15 +1477,3 @@ Array [
, ] `; - -exports[`TimePicker renders addon correctly 1`] = ` -
- -
-`; diff --git a/components/time-picker/__tests__/index.test.js b/components/time-picker/__tests__/index.test.js index 1571b02900..300096cb57 100644 --- a/components/time-picker/__tests__/index.test.js +++ b/components/time-picker/__tests__/index.test.js @@ -1,10 +1,10 @@ import React from 'react'; -import { mount, render } from 'enzyme'; -import RcTimePicker from 'rc-time-picker/lib/TimePicker'; +import { mount } from 'enzyme'; import moment from 'moment'; import TimePicker from '..'; import focusTest from '../../../tests/shared/focusTest'; import mountTest from '../../../tests/shared/mountTest'; +import { resetWarned } from '../../_util/warning'; describe('TimePicker', () => { const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {}); @@ -17,22 +17,21 @@ describe('TimePicker', () => { errorSpy.mockRestore(); }); - focusTest(TimePicker); + focusTest(TimePicker, true); mountTest(TimePicker); - it('renders addon correctly', () => { - const addon = () => ; - const wrapper = mount(); - const rcTimePicker = wrapper.find(RcTimePicker); - const addonWrapper = render(rcTimePicker.props().addon()); + it('warning for addon', () => { + resetWarned(); + const addon = () => ( + + ); + const wrapper = mount(); - expect(addonWrapper).toMatchSnapshot(); - }); - - it('allowEmpty deprecated', () => { - mount(); + expect(wrapper.find('.my-btn').length).toBeTruthy(); expect(errorSpy).toHaveBeenCalledWith( - 'Warning: [antd: TimePicker] `allowEmpty` is deprecated. Please use `allowClear` instead.', + 'Warning: [antd: TimePicker] `addon` is deprecated. Please use `renderExtraFooter` instead.', ); }); @@ -43,31 +42,11 @@ describe('TimePicker', () => { expect(wrapper.render()).toMatchSnapshot(); }); - it('handleChange should work correctly', done => { - const date = moment('2000-01-01 00:00:00'); - const onChange = (value, formattedValue) => { - expect(value).toBe(date); - expect(formattedValue).toBe(date.format('HH:mm:ss')); - done(); - }; - const wrapper = mount().instance(); - wrapper.handleChange(date); - }); - - it('handleOpenClose should work correctly', done => { - const onOpenChange = open => { - expect(open).toBe(true); - done(); - }; - const wrapper = mount().instance(); - wrapper.handleOpenClose({ open: true }); - }); - it('clearIcon should render correctly', () => { const clearIcon =
test
; const wrapper = mount(); expect(wrapper.find('Picker').prop('clearIcon')).toEqual( -
test
, +
test
, ); }); diff --git a/components/time-picker/demo/12hours.md b/components/time-picker/demo/12hours.md index ad1987cd6f..e4b74d3dc8 100644 --- a/components/time-picker/demo/12hours.md +++ b/components/time-picker/demo/12hours.md @@ -23,7 +23,7 @@ function onChange(time, timeString) { ReactDOM.render(
- +
, mountNode, diff --git a/components/time-picker/demo/addon.md b/components/time-picker/demo/addon.md index 303afbe845..f62f80ebd5 100644 --- a/components/time-picker/demo/addon.md +++ b/components/time-picker/demo/addon.md @@ -11,7 +11,7 @@ title: ## en-US -Render addon contents to timepicker panel's bottom. +Render addon contents to time picker panel's bottom. ```jsx import { TimePicker, Button } from 'antd'; @@ -30,7 +30,7 @@ class TimePickerAddonDemo extends React.Component { ( + renderExtraFooter={() => ( diff --git a/components/time-picker/demo/range-picker.md b/components/time-picker/demo/range-picker.md new file mode 100644 index 0000000000..d0768dbf35 --- /dev/null +++ b/components/time-picker/demo/range-picker.md @@ -0,0 +1,27 @@ +--- +order: 13 +title: + zh-CN: 范围选择器 + en-US: Range Picker +--- + +## zh-CN + +通过 `RangePicker` 使用时间范围选择器。 + +## en-US + +Use time range picker with `RangePicker`. + +```jsx +import { TimePicker } from 'antd'; + +const { RangePicker } = TimePicker; + +ReactDOM.render( +
+ +
, + mountNode, +); +``` diff --git a/components/time-picker/demo/suffix.md b/components/time-picker/demo/suffix.md index 92b25dc39e..9afa4fe79d 100644 --- a/components/time-picker/demo/suffix.md +++ b/components/time-picker/demo/suffix.md @@ -1,5 +1,5 @@ --- -order: 12 +order: 99 debug: true title: zh-CN: 后缀图标 diff --git a/components/time-picker/index.en-US.md b/components/time-picker/index.en-US.md index 801124e306..0a0fed219e 100644 --- a/components/time-picker/index.en-US.md +++ b/components/time-picker/index.en-US.md @@ -23,7 +23,6 @@ import moment from 'moment'; | Property | Description | Type | Default | Version | | --- | --- | --- | --- | --- | -| addon | called from timepicker panel to render some addon to its bottom | function | - | | | allowClear | allow clearing text | boolean | true | | | autoFocus | get focus when component mounted | boolean | false | | | className | className of picker | string | '' | | @@ -48,6 +47,7 @@ import moment from 'moment'; | suffixIcon | The custom suffix icon | ReactNode | - | | | clearIcon | The custom clear icon | ReactNode | - | | | use12Hours | display as 12 hours format, with default format `h:mm:ss a` | boolean | false | | +| renderExtraFooter | called from time picker panel to render some addon to its bottom | () => ReactNode | - | | | value | to set time | [moment](http://momentjs.com/) | - | | | onChange | a callback function, can be executed when the selected time is changing | function(time: moment, timeString: string): void | - | | | onOpenChange | a callback function which will be called while panel opening/closing | (open: boolean): void | - | | @@ -59,4 +59,4 @@ import moment from 'moment'; | blur() | remove focus | | | focus() | get focus | | - + diff --git a/components/time-picker/index.tsx b/components/time-picker/index.tsx index 798636c4f5..5410c5469f 100644 --- a/components/time-picker/index.tsx +++ b/components/time-picker/index.tsx @@ -1,244 +1,55 @@ +import { Moment } from 'moment'; import * as React from 'react'; -import * as moment from 'moment'; -import omit from 'omit.js'; -import RcTimePicker from 'rc-time-picker/lib/TimePicker'; -import classNames from 'classnames'; -import { ClockCircleOutlined, CloseCircleFilled } from '@ant-design/icons'; - +import DatePicker from '../date-picker'; +import { PickerTimeProps, RangePickerTimeProps } from '../date-picker/generatePicker'; import warning from '../_util/warning'; -import LocaleReceiver from '../locale-provider/LocaleReceiver'; -import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; -import enUS from './locale/en_US'; -import interopDefault from '../_util/interopDefault'; -export function generateShowHourMinuteSecond(format: string) { - // Ref: http://momentjs.com/docs/#/parsing/string-format/ - return { - showHour: format.indexOf('H') > -1 || format.indexOf('h') > -1 || format.indexOf('k') > -1, - showMinute: format.indexOf('m') > -1, - showSecond: format.indexOf('s') > -1, - }; +const { TimePicker: InternalTimePicker, RangePicker: InternalRangePicker } = DatePicker; + +export interface TimeRangePickerProps extends RangePickerTimeProps {} + +const RangePicker = React.forwardRef((props, ref) => { + return ; +}); + +export interface TimePickerProps extends PickerTimeProps { + addon?: () => React.ReactNode; } -export interface TimePickerProps { - className?: string; - size?: 'large' | 'default' | 'small'; - value?: moment.Moment; - defaultValue?: moment.Moment | moment.Moment[]; - open?: boolean; - format?: string; - onChange?: (time: moment.Moment, timeString: string) => void; - onOpenChange?: (open: boolean) => void; - onAmPmChange?: (ampm: 'AM' | 'PM') => void; - disabled?: boolean; - placeholder?: string; - prefixCls?: string; - hideDisabledOptions?: boolean; - disabledHours?: () => number[]; - disabledMinutes?: (selectedHour: number) => number[]; - disabledSeconds?: (selectedHour: number, selectedMinute: number) => number[]; - style?: React.CSSProperties; - getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement; - addon?: Function; - use12Hours?: boolean; - focusOnOpen?: boolean; - hourStep?: number; - minuteStep?: number; - secondStep?: number; - allowEmpty?: boolean; - allowClear?: boolean; - inputReadOnly?: boolean; - clearText?: string; - defaultOpenValue?: moment.Moment; - popupClassName?: string; - popupStyle?: React.CSSProperties; - suffixIcon?: React.ReactNode; - clearIcon?: React.ReactNode; - locale?: TimePickerLocale; -} - -export interface TimePickerLocale { - placeholder: string; -} - -class TimePicker extends React.Component { - static defaultProps = { - align: { - offset: [0, -2], - }, - disabledHours: undefined, - disabledMinutes: undefined, - disabledSeconds: undefined, - hideDisabledOptions: false, - placement: 'bottomLeft', - transitionName: 'slide-up', - focusOnOpen: true, - }; - - static getDerivedStateFromProps(nextProps: TimePickerProps) { - if ('value' in nextProps) { - return { value: nextProps.value }; - } - return null; - } - - private timePickerRef: typeof RcTimePicker; - - constructor(props: TimePickerProps) { - super(props); - const value = props.value || props.defaultValue; - if (value && !interopDefault(moment).isMoment(value)) { - throw new Error( - 'The value/defaultValue of TimePicker must be a moment object after `antd@2.0`, ' + - 'see: https://u.ant.design/time-picker-value', - ); - } - this.state = { - value, - }; - - warning( - !('allowEmpty' in props), - 'TimePicker', - '`allowEmpty` is deprecated. Please use `allowClear` instead.', - ); - } - - getDefaultFormat() { - const { format, use12Hours } = this.props; - if (format) { - return format; - } - if (use12Hours) { - return 'h:mm:ss a'; - } - return 'HH:mm:ss'; - } - - getAllowClear() { - const { allowClear, allowEmpty } = this.props; - if ('allowClear' in this.props) { - return allowClear; - } - return allowEmpty; - } - - getDefaultLocale = () => { - const defaultLocale = { - ...enUS, - ...this.props.locale, - }; - return defaultLocale; - }; - - handleOpenClose = ({ open }: { open: boolean }) => { - const { onOpenChange } = this.props; - if (onOpenChange) { - onOpenChange(open); - } - }; - - saveTimePicker = (timePickerRef: typeof RcTimePicker) => { - this.timePickerRef = timePickerRef; - }; - - handleChange = (value: moment.Moment) => { - if (!('value' in this.props)) { - this.setState({ value }); - } - const { onChange, format = 'HH:mm:ss' } = this.props; - if (onChange) { - onChange(value, (value && value.format(format)) || ''); - } - }; - - focus() { - this.timePickerRef.focus(); - } - - blur() { - this.timePickerRef.blur(); - } - - renderInputIcon(prefixCls: string) { - const { suffixIcon } = this.props; - const clockIcon = (suffixIcon && - React.isValidElement<{ className?: string }>(suffixIcon) && - React.cloneElement(suffixIcon, { - className: classNames(suffixIcon.props.className, `${prefixCls}-clock-icon`), - })) || ; - - return {clockIcon}; - } - - renderClearIcon(prefixCls: string) { - const { clearIcon } = this.props; - - const clearIconPrefixCls = `${prefixCls}-clear`; - - if (clearIcon && React.isValidElement<{ className?: string }>(clearIcon)) { - return React.cloneElement(clearIcon, { - className: classNames(clearIcon.props.className, clearIconPrefixCls), - }); - } - - return ; - } - - renderTimePicker = (locale: TimePickerLocale) => ( - - {({ getPopupContainer: getContextPopupContainer, getPrefixCls }: ConfigConsumerProps) => { - const { - getPopupContainer, - prefixCls: customizePrefixCls, - className, - addon, - placeholder, - ...props - } = this.props; - const { size } = props; - const pickerProps = omit(props, ['defaultValue', 'suffixIcon', 'allowEmpty', 'allowClear']); - - const format = this.getDefaultFormat(); - const prefixCls = getPrefixCls('time-picker', customizePrefixCls); - const pickerClassName = classNames(className, { - [`${prefixCls}-${size}`]: !!size, - }); - - const pickerAddon = (panel: React.ReactElement) => - addon ?
{addon(panel)}
: null; - - return ( - +const TimePicker = React.forwardRef( + ({ addon, renderExtraFooter, ...restProps }, ref) => { + const internalRenderExtraFooter = React.useMemo(() => { + if (renderExtraFooter) { + return renderExtraFooter; + } + if (addon) { + warning( + false, + 'TimePicker', + '`addon` is deprecated. Please use `renderExtraFooter` instead.', ); - }} -
- ); + return addon; + } + return undefined; + }, [addon, renderExtraFooter]); - render() { return ( - - {this.renderTimePicker} - + ); - } -} + }, +); -export default TimePicker; +TimePicker.displayName = 'TimePicker'; + +type MergedTimePicker = typeof TimePicker & { + RangePicker: typeof RangePicker; +}; + +(TimePicker as MergedTimePicker).RangePicker = RangePicker; + +export default TimePicker as MergedTimePicker; diff --git a/components/time-picker/index.zh-CN.md b/components/time-picker/index.zh-CN.md index 16aa304ca9..62400229dd 100644 --- a/components/time-picker/index.zh-CN.md +++ b/components/time-picker/index.zh-CN.md @@ -24,7 +24,6 @@ import moment from 'moment'; | 参数 | 说明 | 类型 | 默认值 | 版本 | | --- | --- | --- | --- | --- | -| addon | 选择框底部显示自定义的内容 | function | 无 | | | allowClear | 是否展示清除按钮 | boolean | true | | | autoFocus | 自动获取焦点 | boolean | false | | | className | 选择器类名 | string | '' | | @@ -48,6 +47,7 @@ import moment from 'moment'; | secondStep | 秒选项间隔 | number | 1 | | | suffixIcon | 自定义的选择框后缀图标 | ReactNode | - | | | clearIcon | 自定义的清除图标 | ReactNode | - | | +| renderExtraFooter | 选择框底部显示自定义的内容 | () => ReactNode | 无 | | | use12Hours | 使用 12 小时制,为 true 时 `format` 默认为 `h:mm:ss a` | boolean | false | | | value | 当前时间 | [moment](http://momentjs.com/) | 无 | | | onChange | 时间发生变化的回调 | function(time: moment, timeString: string): void | 无 | | @@ -60,4 +60,4 @@ import moment from 'moment'; | blur() | 移除焦点 | | | focus() | 获取焦点 | | - + diff --git a/components/time-picker/locale/en_US.tsx b/components/time-picker/locale/en_US.tsx index b95b5a3625..47a00e8353 100644 --- a/components/time-picker/locale/en_US.tsx +++ b/components/time-picker/locale/en_US.tsx @@ -1,5 +1,6 @@ const locale = { placeholder: 'Select time', + rangePlaceholder: ['Start time', 'End time'], }; export default locale; diff --git a/components/time-picker/locale/zh_CN.tsx b/components/time-picker/locale/zh_CN.tsx index 6898e575d1..531b71cf52 100644 --- a/components/time-picker/locale/zh_CN.tsx +++ b/components/time-picker/locale/zh_CN.tsx @@ -1,5 +1,6 @@ const locale = { placeholder: '请选择时间', + rangePlaceholder: ['开始时间', '结束时间'], }; export default locale; diff --git a/components/time-picker/style/index.less b/components/time-picker/style/index.less index 127d7977d1..af7ae24a92 100644 --- a/components/time-picker/style/index.less +++ b/components/time-picker/style/index.less @@ -1,247 +1,3 @@ @import '../../style/themes/index'; @import '../../style/mixins/index'; @import '../../input/style/mixin'; - -@timepicker-prefix-cls: ~'@{ant-prefix}-time-picker'; -@timepicker-item-height: 32px; - -.@{timepicker-prefix-cls}-panel { - .reset-component; - - position: absolute; - z-index: @zindex-picker; - font-family: @font-family; - - &-inner { - position: relative; - left: -2px; - font-size: @font-size-base; - text-align: left; - list-style: none; - background-color: @time-picker-panel-inner-bg; - background-clip: padding-box; - border-radius: @border-radius-base; - outline: none; - box-shadow: @box-shadow-base; - } - - &-input { - width: 100%; - max-width: @time-picker-panel-column-width * 3 - @control-padding-horizontal - 2px; - margin: 0; - padding: 0; - line-height: normal; - background-color: inherit; - border: 0; - outline: 0; - cursor: auto; - - .placeholder; - - &-wrap { - position: relative; - padding: 7px 2px 7px @control-padding-horizontal; - border-bottom: @border-width-base @border-style-base @border-color-split; - } - - &-invalid { - border-color: @error-color; - } - } - - &-narrow &-input-wrap { - max-width: @time-picker-panel-column-width * 2; - } - - &-select { - position: relative; // Fix chrome weird render bug - float: left; - width: @time-picker-panel-column-width; - max-height: @timepicker-item-height * 6; - overflow: hidden; - font-size: @font-size-base; - border-left: @border-width-base @border-style-base @border-color-split; - - &:hover { - overflow-y: auto; - } - - &:first-child { - margin-left: 0; - border-left: 0; - } - - &:last-child { - border-right: 0; - } - - &:only-child { - width: 100%; - } - - ul { - // use fixed width instead of 100% - // to fix strange render bug in safari: https://github.com/ant-design/ant-design/issues/17842 - width: @time-picker-panel-column-width; - margin: 0; - padding: 0 0 @timepicker-item-height * 5; - list-style: none; - } - - li { - width: 100%; - height: @timepicker-item-height; - margin: 0; - padding: 0 0 0 @control-padding-horizontal; - line-height: @timepicker-item-height; - text-align: left; - list-style: none; - cursor: pointer; - transition: all 0.3s; - user-select: none; - - &:focus { - color: @primary-color; - font-weight: 600; - outline: none; - } - } - - li:hover { - background: @item-hover-bg; - } - - li&-option-selected { - font-weight: 600; - background: @time-picker-selected-bg; - &:hover { - background: @time-picker-selected-bg; - } - } - - li&-option-disabled { - color: @btn-disable-color; - &:hover { - background: transparent; - cursor: not-allowed; - } - &:focus { - color: @btn-disable-color; - font-weight: inherit; - } - } - } - - &-combobox { - .clearfix; - } - - &-addon { - padding: 8px; - border-top: @border-width-base @border-style-base @border-color-split; - } - - &.slide-up-enter.slide-up-enter-active&-placement-topLeft, - &.slide-up-enter.slide-up-enter-active&-placement-topRight, - &.slide-up-appear.slide-up-appear-active&-placement-topLeft, - &.slide-up-appear.slide-up-appear-active&-placement-topRight { - animation-name: antSlideDownIn; - } - - &.slide-up-enter.slide-up-enter-active&-placement-bottomLeft, - &.slide-up-enter.slide-up-enter-active&-placement-bottomRight, - &.slide-up-appear.slide-up-appear-active&-placement-bottomLeft, - &.slide-up-appear.slide-up-appear-active&-placement-bottomRight { - animation-name: antSlideUpIn; - } - - &.slide-up-leave.slide-up-leave-active&-placement-topLeft, - &.slide-up-leave.slide-up-leave-active&-placement-topRight { - animation-name: antSlideDownOut; - } - - &.slide-up-leave.slide-up-leave-active&-placement-bottomLeft, - &.slide-up-leave.slide-up-leave-active&-placement-bottomRight { - animation-name: antSlideUpOut; - } -} - -.@{timepicker-prefix-cls} { - .reset-component; - - position: relative; - display: inline-block; - width: 128px; - outline: none; - cursor: text; - transition: opacity 0.3s; - - &-input { - .input; - &[disabled] { - .disabled; - } - } - - &-open { - opacity: 0; - } - - &-icon, - &-clear.@{iconfont-css-prefix} { - position: absolute; - top: 50%; - right: @control-padding-horizontal - 1px; - z-index: 1; - width: 14px; - height: 14px; - margin-top: -7px; - color: @disabled-color; - line-height: 14px; - transition: all 0.3s @ease-in-out; - user-select: none; - .@{timepicker-prefix-cls}-clock-icon { - display: block; - color: @disabled-color; - line-height: 1; - } - } - - &-clear { - z-index: 2; - background: @input-bg; - opacity: 0; - pointer-events: none; - &:hover { - color: @text-color-secondary; - } - } - &:hover &-clear { - opacity: 1; - pointer-events: auto; - } - - &-large &-input { - .input-lg; - } - - &-small &-input { - .input-sm; - } - - &-small &-icon, - &-small &-clear { - right: @control-padding-horizontal-sm - 1px; - } -} - -// Fix cursor height in safari -// https://stackoverflow.com/q/3843408/3040605 -// https://browserstrangeness.github.io/css_hacks.html#safari -@media not all and (min-resolution: 0.001dpcm) { - @supports (-webkit-appearance: none) and (stroke-color: transparent) { - .@{ant-prefix}-input { - line-height: @line-height-base; - } - } -} diff --git a/components/time-picker/style/index.tsx b/components/time-picker/style/index.tsx index 3a3ab0de59..b2534aab0b 100644 --- a/components/time-picker/style/index.tsx +++ b/components/time-picker/style/index.tsx @@ -1,2 +1,5 @@ import '../../style/index.less'; import './index.less'; + +// style dependencies +import '../../date-picker/style'; diff --git a/components/tooltip/__tests__/tooltip.test.js b/components/tooltip/__tests__/tooltip.test.js index 190f905d7b..0435488949 100644 --- a/components/tooltip/__tests__/tooltip.test.js +++ b/components/tooltip/__tests__/tooltip.test.js @@ -204,8 +204,8 @@ describe('Tooltip', () => { , ); - expect(wrapper.find('span.ant-calendar-picker')).toHaveLength(1); - const picker = wrapper.find('span.ant-calendar-picker').at(0); + expect(wrapper.find('.ant-picker')).toHaveLength(1); + const picker = wrapper.find('.ant-picker').at(0); picker.simulate('mouseenter'); await sleep(100); expect(onVisibleChange).toHaveBeenCalledWith(true); diff --git a/components/typography/Title.tsx b/components/typography/Title.tsx index 03e7c5b4a1..a78d8bee66 100644 --- a/components/typography/Title.tsx +++ b/components/typography/Title.tsx @@ -5,7 +5,7 @@ import { tupleNum, Omit } from '../_util/type'; const TITLE_ELE_LIST = tupleNum(1, 2, 3, 4); -export type TitleProps = Omit; +export type TitleProps = Omit; const Title: React.SFC = props => { const { level = 1, ...restProps } = props; diff --git a/package.json b/package.json index a7dbaa16ae..d4db8ee4f1 100644 --- a/package.json +++ b/package.json @@ -120,6 +120,7 @@ "rc-menu": "~8.0.0-alpha.4", "rc-notification": "~3.3.1", "rc-pagination": "~1.20.11", + "rc-picker": "^0.0.1-alpha.58", "rc-progress": "~2.5.0", "rc-rate": "~2.5.0", "rc-resize-observer": "^0.1.0", diff --git a/site/bisheng.config.js b/site/bisheng.config.js index f5d131fd3a..549f75cd8c 100644 --- a/site/bisheng.config.js +++ b/site/bisheng.config.js @@ -134,6 +134,8 @@ module.exports = { config.plugins.push(new CSSSplitWebpackPlugin({ size: 4000 })); + delete config.module.noParse; + return config; }, diff --git a/tests/shared/focusTest.js b/tests/shared/focusTest.js index db5db0fa53..3630e080a5 100644 --- a/tests/shared/focusTest.js +++ b/tests/shared/focusTest.js @@ -1,20 +1,40 @@ import React from 'react'; import { mount } from 'enzyme'; +import { spyElementPrototypes } from 'rc-util/lib/test/domHook'; // eslint-disable-next-line jest/no-export -export default function focusTest(Component) { +export default function focusTest(Component, refFocus = false) { describe('focus and blur', () => { + let domSpy; + let focused = false; + let blurred = false; + beforeAll(() => { jest.useFakeTimers(); + if (refFocus) { + domSpy = spyElementPrototypes(HTMLElement, { + focus() { + focused = true; + }, + blur() { + blurred = true; + }, + }); + } }); let container; beforeEach(() => { container = document.createElement('div'); document.body.appendChild(container); + focused = false; + blurred = false; }); afterAll(() => { + if (domSpy) { + domSpy.mockRestore(); + } jest.useRealTimers(); }); @@ -22,29 +42,79 @@ export default function focusTest(Component) { document.body.removeChild(container); }); - it('focus() and onFocus', () => { - const handleFocus = jest.fn(); - const wrapper = mount(, { attachTo: container }); - wrapper.instance().focus(); - jest.runAllTimers(); - expect(handleFocus).toHaveBeenCalled(); - }); + if (refFocus) { + it('Ref: focus() and onFocus', () => { + const onFocus = jest.fn(); + const ref = React.createRef(); + const wrapper = mount( +
+ +
, + ); + ref.current.focus(); + expect(focused).toBeTruthy(); - it('blur() and onBlur', () => { - const handleBlur = jest.fn(); - const wrapper = mount(, { attachTo: container }); - wrapper.instance().focus(); - jest.runAllTimers(); - wrapper.instance().blur(); - jest.runAllTimers(); - expect(handleBlur).toHaveBeenCalled(); - }); + wrapper + .find('input') + .first() + .simulate('focus'); + expect(onFocus).toHaveBeenCalled(); + }); - it('autoFocus', () => { - const handleFocus = jest.fn(); - mount(, { attachTo: container }); - jest.runAllTimers(); - expect(handleFocus).toHaveBeenCalled(); - }); + it('Ref: blur() and onBlur', () => { + const onBlur = jest.fn(); + const ref = React.createRef(); + const wrapper = mount( +
+ +
, + ); + ref.current.blur(); + expect(blurred).toBeTruthy(); + + wrapper + .find('input') + .first() + .simulate('blur'); + expect(onBlur).toHaveBeenCalled(); + }); + + it('Ref: autoFocus', () => { + const onFocus = jest.fn(); + const wrapper = mount(); + + expect(focused).toBeTruthy(); + + wrapper + .find('input') + .first() + .simulate('focus'); + expect(onFocus).toHaveBeenCalled(); + }); + } else { + it('focus() and onFocus', () => { + const handleFocus = jest.fn(); + const wrapper = mount(, { attachTo: container }); + wrapper.instance().focus(); + expect(handleFocus).toHaveBeenCalled(); + }); + + it('blur() and onBlur', () => { + const handleBlur = jest.fn(); + const wrapper = mount(, { attachTo: container }); + wrapper.instance().focus(); + jest.runAllTimers(); + wrapper.instance().blur(); + jest.runAllTimers(); + expect(handleBlur).toHaveBeenCalled(); + }); + + it('autoFocus', () => { + const handleFocus = jest.fn(); + mount(, { attachTo: container }); + jest.runAllTimers(); + expect(handleFocus).toHaveBeenCalled(); + }); + } }); }