UNPKG

@lion/calendar

Version:
2,019 lines 79.5 kB
{ "schemaVersion": "0.1.0", "readme": "", "modules": [ { "kind": "javascript-module", "path": "./index.d.ts", "declarations": [], "exports": [ { "kind": "js", "name": "isSameDate", "declaration": { "name": "isSameDate", "module": "\"./src/utils/isSameDate.js\"" } }, { "kind": "js", "name": "LionCalendar", "declaration": { "name": "LionCalendar", "module": "\"./src/LionCalendar.js\"" } } ] }, { "kind": "javascript-module", "path": "./index.js", "declarations": [], "exports": [ { "kind": "js", "name": "isSameDate", "declaration": { "name": "isSameDate", "module": "./src/utils/isSameDate.js" } }, { "kind": "js", "name": "LionCalendar", "declaration": { "name": "LionCalendar", "module": "./src/LionCalendar.js" } } ] }, { "kind": "javascript-module", "path": "./lion-calendar.d.ts", "declarations": [], "exports": [] }, { "kind": "javascript-module", "path": "./lion-calendar.js", "declarations": [], "exports": [ { "kind": "custom-element-definition", "name": "lion-calendar", "declaration": { "name": "LionCalendar", "module": "./src/LionCalendar.d.ts" } } ] }, { "kind": "javascript-module", "path": "./test-helpers.d.ts", "declarations": [], "exports": [ { "kind": "js", "name": "CalendarObject", "declaration": { "name": "CalendarObject", "module": "\"./test-helpers/CalendarObject.js\"" } }, { "kind": "js", "name": "DayObject", "declaration": { "name": "DayObject", "module": "\"./test-helpers/DayObject.js\"" } }, { "kind": "js", "name": "weekdayNames", "declaration": { "name": "weekdayNames", "module": "\"./test-helpers/weekdayNames.js\"" } } ] }, { "kind": "javascript-module", "path": "./test-helpers.js", "declarations": [], "exports": [ { "kind": "js", "name": "CalendarObject", "declaration": { "name": "CalendarObject", "module": "./test-helpers/CalendarObject.js" } }, { "kind": "js", "name": "DayObject", "declaration": { "name": "DayObject", "module": "./test-helpers/DayObject.js" } }, { "kind": "js", "name": "weekdayNames", "declaration": { "name": "weekdayNames", "module": "./test-helpers/weekdayNames.js" } } ] }, { "kind": "javascript-module", "path": "./src/LionCalendar.d.ts", "declarations": [ { "kind": "class", "name": "LionCalendar", "superclass": { "name": "LionCalendar_base", "module": "./src/LionCalendar.d.ts" }, "members": [ { "kind": "field", "name": "__data", "privacy": "private", "type": { "text": "{months: Month[]}" } }, { "kind": "field", "name": "minDate", "privacy": "public", "type": { "text": "Date" } }, { "kind": "field", "name": "maxDate", "privacy": "public", "type": { "text": "Date" } }, { "kind": "field", "name": "dayPreprocessor", "privacy": "public", "type": { "text": "(day: Day) => import(\"../types/day.js\").Day" } }, { "kind": "field", "name": "disableDates", "privacy": "public", "type": { "text": "(day: Date) => boolean" } }, { "kind": "field", "name": "firstDayOfWeek", "privacy": "public", "type": { "text": "number" } }, { "kind": "field", "name": "weekdayHeaderNotation", "privacy": "public", "type": { "text": "string" } }, { "kind": "field", "name": "__today", "privacy": "private" }, { "kind": "field", "name": "centralDate", "privacy": "public", "type": { "text": "Date" } }, { "kind": "field", "name": "__focusedDate", "privacy": "private", "type": { "text": "Date | null" } }, { "kind": "field", "name": "__connectedCallbackDone", "privacy": "private" }, { "kind": "field", "name": "__eventsAdded", "privacy": "private" }, { "kind": "field", "name": "locale", "privacy": "public", "type": { "text": "string" } }, { "kind": "field", "name": "__boundKeyboardNavigationEvent", "privacy": "private" }, { "kind": "field", "name": "__boundClickDateDelegation", "privacy": "private" }, { "kind": "field", "name": "__boundFocusDateDelegation", "privacy": "private" }, { "kind": "field", "name": "__boundBlurDateDelegation", "privacy": "private" }, { "kind": "field", "name": "focusedDate", "privacy": "public", "type": { "text": "Date | null" } }, { "kind": "method", "name": "goToNextMonth", "privacy": "public", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "goToPreviousMonth", "privacy": "public", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "goToNextYear", "privacy": "public", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "goToPreviousYear", "privacy": "public", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "focusDate", "privacy": "public", "return": { "type": { "text": "Promise<void>" } }, "parameters": [ { "name": "date", "type": { "text": "Date" } } ] }, { "kind": "method", "name": "focusCentralDate", "privacy": "public", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "focusSelectedDate", "privacy": "public", "return": { "type": { "text": "Promise<void>" } } }, { "kind": "field", "name": "__contentWrapperElement", "privacy": "public", "type": { "text": "HTMLButtonElement | undefined" } }, { "kind": "method", "name": "initCentralDate", "privacy": "public", "description": "This exposes an interface for datepickers that want to\nreinitialize when calendar is opened", "return": { "type": { "text": "void" } } }, { "kind": "field", "name": "__calculateInitialCentralDate", "privacy": "private" }, { "kind": "field", "name": "__initialCentralDate", "privacy": "public", "type": { "text": "Date | undefined" } }, { "kind": "field", "name": "__renderMonthNavigation", "privacy": "private" }, { "kind": "field", "name": "__renderYearNavigation", "privacy": "private" }, { "kind": "field", "name": "__renderNavigation", "privacy": "private" }, { "kind": "field", "name": "__renderData", "privacy": "private" }, { "kind": "field", "name": "__getPreviousDisabled", "privacy": "private" }, { "kind": "field", "name": "__getNextDisabled", "privacy": "private" }, { "kind": "method", "name": "__renderPreviousButton", "privacy": "protected", "return": { "type": { "text": "import(\"@lion/core\").TemplateResult<1>" } }, "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "previousMonth", "type": { "text": "string" } }, { "name": "previousYear", "type": { "text": "number" } } ] }, { "kind": "method", "name": "__renderNextButton", "privacy": "protected", "return": { "type": { "text": "import(\"@lion/core\").TemplateResult<1>" } }, "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "nextMonth", "type": { "text": "string" } }, { "name": "nextYear", "type": { "text": "number" } } ] }, { "kind": "field", "name": "__getNavigationLabel", "privacy": "private" }, { "kind": "field", "name": "__coreDayPreprocessor", "privacy": "private" }, { "kind": "field", "name": "__createData", "privacy": "private" }, { "kind": "field", "name": "__disableDatesChanged", "privacy": "private" }, { "kind": "field", "name": "__dateSelectedByUser", "privacy": "private" }, { "kind": "field", "name": "selectedDate", "privacy": "public", "type": { "text": "Date | undefined" } }, { "kind": "field", "name": "__centralDateChanged", "privacy": "private" }, { "kind": "field", "name": "__focusedDateChanged", "privacy": "private" }, { "kind": "field", "name": "__ensureValidCentralDate", "privacy": "private" }, { "kind": "field", "name": "__isEnabledDate", "privacy": "private" }, { "kind": "field", "name": "__findBestEnabledDateFor", "privacy": "private" }, { "kind": "field", "name": "__clickDateDelegation", "privacy": "private" }, { "kind": "field", "name": "__focusDateDelegation", "privacy": "private" }, { "kind": "field", "name": "__blurDateDelegation", "privacy": "private" }, { "kind": "field", "name": "__keyboardNavigationEvent", "privacy": "private" }, { "kind": "field", "name": "__modifyDate", "privacy": "private" }, { "kind": "field", "name": "__getLocale", "privacy": "private" } ] } ], "exports": [ { "kind": "js", "name": "LionCalendar", "declaration": { "name": "LionCalendar", "module": "./src/LionCalendar.d.ts" } } ] }, { "kind": "javascript-module", "path": "./src/LionCalendar.js", "declarations": [ { "kind": "class", "name": "LionCalendar", "events": [ { "name": "user-selected-date-changed", "type": { "text": "CustomEvent" } } ], "mixins": [ { "name": "LocalizeMixin", "package": "@lion/localize" } ], "superclass": { "name": "LitElement", "package": "@lion/core" }, "members": [ { "kind": "field", "name": "localizeNamespaces", "static": true, "privacy": "public" }, { "kind": "field", "name": "focusedDate", "privacy": "public" }, { "kind": "method", "name": "goToNextMonth", "privacy": "public" }, { "kind": "method", "name": "goToPreviousMonth", "privacy": "public" }, { "kind": "method", "name": "goToNextYear", "privacy": "public" }, { "kind": "method", "name": "goToPreviousYear", "privacy": "public" }, { "kind": "method", "name": "focusDate", "privacy": "public", "parameters": [ { "name": "date", "type": { "text": "Date" } } ] }, { "kind": "method", "name": "focusCentralDate", "privacy": "public" }, { "kind": "method", "name": "focusSelectedDate", "privacy": "public" }, { "kind": "method", "name": "initCentralDate", "privacy": "public", "description": "This exposes an interface for datepickers that want to\nreinitialize when calendar is opened" }, { "kind": "method", "name": "__calculateInitialCentralDate", "privacy": "private" }, { "kind": "method", "name": "__renderMonthNavigation", "privacy": "private", "parameters": [ { "name": "month", "type": { "text": "string" } }, { "name": "year", "type": { "text": "number" } } ] }, { "kind": "method", "name": "__renderYearNavigation", "privacy": "private", "parameters": [ { "name": "month", "type": { "text": "string" } }, { "name": "year", "type": { "text": "number" } } ] }, { "kind": "method", "name": "__renderNavigation", "privacy": "private" }, { "kind": "method", "name": "__renderData", "privacy": "private" }, { "kind": "method", "name": "__getPreviousDisabled", "privacy": "private", "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "previousMonth", "type": { "text": "string" } }, { "name": "previousYear", "type": { "text": "number" } } ] }, { "kind": "method", "name": "__getNextDisabled", "privacy": "private", "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "nextMonth", "type": { "text": "string" } }, { "name": "nextYear", "type": { "text": "number" } } ] }, { "kind": "method", "name": "__renderPreviousButton", "privacy": "protected", "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "previousMonth", "type": { "text": "string" } }, { "name": "previousYear", "type": { "text": "number" } } ] }, { "kind": "method", "name": "__renderNextButton", "privacy": "protected", "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "nextMonth", "type": { "text": "string" } }, { "name": "nextYear", "type": { "text": "number" } } ] }, { "kind": "method", "name": "__getNavigationLabel", "privacy": "private", "parameters": [ { "name": "mode", "type": { "text": "string" } }, { "name": "type", "type": { "text": "string" } }, { "name": "month", "type": { "text": "string" } }, { "name": "year", "type": { "text": "number" } } ] }, { "kind": "method", "name": "__coreDayPreprocessor", "privacy": "private", "parameters": [ { "name": "_day", "type": { "text": "Day" } }, { "name": "param1", "type": { "text": "*" } } ] }, { "kind": "method", "name": "__createData", "privacy": "private", "parameters": [ { "name": "options", "type": { "text": "Day" }, "optional": true } ] }, { "kind": "method", "name": "__disableDatesChanged", "privacy": "private" }, { "kind": "method", "name": "__dateSelectedByUser", "privacy": "private", "parameters": [ { "name": "selectedDate", "type": { "text": "Date" } } ] }, { "kind": "method", "name": "__centralDateChanged", "privacy": "private" }, { "kind": "method", "name": "__focusedDateChanged", "privacy": "private" }, { "kind": "method", "name": "__ensureValidCentralDate", "privacy": "private" }, { "kind": "method", "name": "__isEnabledDate", "privacy": "private", "parameters": [ { "name": "date", "type": { "text": "Date" } } ] }, { "kind": "method", "name": "__findBestEnabledDateFor", "privacy": "private", "parameters": [ { "name": "date", "type": { "text": "Date" } }, { "name": "opts", "type": { "text": "Object" } }, { "name": "opts.mode", "type": { "text": "String" }, "description": "Find best date in `future/past/both`", "optional": true } ] }, { "kind": "method", "name": "__clickDateDelegation", "privacy": "private", "parameters": [ { "name": "ev", "type": { "text": "Event" } } ] }, { "kind": "method", "name": "__focusDateDelegation", "privacy": "private" }, { "kind": "method", "name": "__blurDateDelegation", "privacy": "private" }, { "kind": "method", "name": "__keyboardNavigationEvent", "privacy": "private", "parameters": [ { "name": "ev", "type": { "text": "KeyboardEvent" } } ] }, { "kind": "method", "name": "__modifyDate", "privacy": "private", "parameters": [ { "name": "modify", "type": { "text": "number" } }, { "name": "opts", "type": { "text": "Object" } }, { "name": "opts.dateType", "type": { "text": "string" } }, { "name": "opts.type", "type": { "text": "string" } }, { "name": "opts.mode", "type": { "text": "string" } } ] }, { "kind": "method", "name": "__getLocale", "privacy": "private" }, { "kind": "field", "name": "minDate", "privacy": "public", "default": "new Date(0)" }, { "kind": "field", "name": "maxDate", "privacy": "public", "default": "new Date(8640000000000000)" }, { "kind": "field", "name": "disableDates", "privacy": "public" }, { "kind": "field", "name": "selectedDate", "privacy": "public" }, { "kind": "field", "name": "centralDate", "privacy": "public", "type": { "text": "Date" }, "default": "this.__today" }, { "kind": "field", "name": "firstDayOfWeek", "privacy": "public", "default": "0" }, { "kind": "field", "name": "weekdayHeaderNotation", "privacy": "public", "default": "'short'" }, { "kind": "field", "name": "locale", "privacy": "public", "default": "''" }, { "kind": "field", "name": "__focusedDate", "privacy": "public", "type": { "text": "Date | null" }, "default": "null" }, { "kind": "field", "name": "__data", "privacy": "public", "type": { "text": "{months: Month[]}" }, "default": "{ months: [] }" } ], "tagName": "lion-calendar" } ], "exports": [ { "kind": "js", "name": "LionCalendar", "declaration": { "name": "LionCalendar", "module": "./src/LionCalendar.js" } } ] }, { "kind": "javascript-module", "path": "./src/calendarStyle.d.ts", "declarations": [ { "kind": "variable", "name": "calendarStyle", "type": { "text": "import(\"lit\").CSSResultGroup" } } ], "exports": [ { "kind": "js", "name": "calendarStyle", "declaration": { "name": "calendarStyle", "module": "./src/calendarStyle.d.ts" } } ] }, { "kind": "javascript-module", "path": "./src/calendarStyle.js", "declarations": [ { "kind": "variable", "name": "calendarStyle" } ], "exports": [ { "kind": "js", "name": "calendarStyle", "declaration": { "name": "calendarStyle", "module": "./src/calendarStyle.js" } } ] }, { "kind": "javascript-module", "path": "./test/demos.screenshots-test.d.ts", "declarations": [], "exports": [] }, { "kind": "javascript-module", "path": "./test/demos.screenshots-test.js", "declarations": [], "exports": [] }, { "kind": "javascript-module", "path": "./test/lion-calendar.test.d.ts", "declarations": [], "exports": [] }, { "kind": "javascript-module", "path": "./translations/bg.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/bg.d.ts" } }, { "kind": "js", "name": "previousMonth", "declaration": { "name": "previousMonth", "module": "./translations/bg.d.ts" } }, { "kind": "js", "name": "nextFullYear", "declaration": { "name": "nextFullYear", "module": "./translations/bg.d.ts" } }, { "kind": "js", "name": "previousFullYear", "declaration": { "name": "previousFullYear", "module": "./translations/bg.d.ts" } }, { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "./translations/bg.d.ts" } } ] }, { "kind": "javascript-module", "path": "./translations/bg.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "./translations/bg.js" } } ] }, { "kind": "javascript-module", "path": "./translations/cs.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/cs.d.ts" } }, { "kind": "js", "name": "previousMonth", "declaration": { "name": "previousMonth", "module": "./translations/cs.d.ts" } }, { "kind": "js", "name": "nextFullYear", "declaration": { "name": "nextFullYear", "module": "./translations/cs.d.ts" } }, { "kind": "js", "name": "previousFullYear", "declaration": { "name": "previousFullYear", "module": "./translations/cs.d.ts" } }, { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "./translations/cs.d.ts" } } ] }, { "kind": "javascript-module", "path": "./translations/cs.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "./translations/cs.js" } } ] }, { "kind": "javascript-module", "path": "./translations/de.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/de.d.ts" } }, { "kind": "js", "name": "previousMonth", "declaration": { "name": "previousMonth", "module": "./translations/de.d.ts" } }, { "kind": "js", "name": "nextFullYear", "declaration": { "name": "nextFullYear", "module": "./translations/de.d.ts" } }, { "kind": "js", "name": "previousFullYear", "declaration": { "name": "previousFullYear", "module": "./translations/de.d.ts" } }, { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "./translations/de.d.ts" } } ] }, { "kind": "javascript-module", "path": "./translations/de.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "./translations/de.js" } } ] }, { "kind": "javascript-module", "path": "./translations/en.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/en.d.ts" } }, { "kind": "js", "name": "previousMonth", "declaration": { "name": "previousMonth", "module": "./translations/en.d.ts" } }, { "kind": "js", "name": "nextFullYear", "declaration": { "name": "nextFullYear", "module": "./translations/en.d.ts" } }, { "kind": "js", "name": "previousFullYear", "declaration": { "name": "previousFullYear", "module": "./translations/en.d.ts" } }, { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "./translations/en.d.ts" } } ] }, { "kind": "javascript-module", "path": "./translations/en.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "./translations/en.js" } } ] }, { "kind": "javascript-module", "path": "./translations/es.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/es.d.ts" } }, { "kind": "js", "name": "previousMonth", "declaration": { "name": "previousMonth", "module": "./translations/es.d.ts" } }, { "kind": "js", "name": "nextFullYear", "declaration": { "name": "nextFullYear", "module": "./translations/es.d.ts" } }, { "kind": "js", "name": "previousFullYear", "declaration": { "name": "previousFullYear", "module": "./translations/es.d.ts" } }, { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "./translations/es.d.ts" } } ] }, { "kind": "javascript-module", "path": "./translations/es.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "./translations/es.js" } } ] }, { "kind": "javascript-module", "path": "./translations/fr.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/fr.d.ts" } }, { "kind": "js", "name": "previousMonth", "declaration": { "name": "previousMonth", "module": "./translations/fr.d.ts" } }, { "kind": "js", "name": "nextFullYear", "declaration": { "name": "nextFullYear", "module": "./translations/fr.d.ts" } }, { "kind": "js", "name": "previousFullYear", "declaration": { "name": "previousFullYear", "module": "./translations/fr.d.ts" } }, { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "./translations/fr.d.ts" } } ] }, { "kind": "javascript-module", "path": "./translations/fr.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "./translations/fr.js" } } ] }, { "kind": "javascript-module", "path": "./translations/hu.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/hu.d.ts" } }, { "kind": "js", "name": "previousMonth", "declaration": { "name": "previousMonth", "module": "./translations/hu.d.ts" } }, { "kind": "js", "name": "nextFullYear", "declaration": { "name": "nextFullYear", "module": "./translations/hu.d.ts" } }, { "kind": "js", "name": "previousFullYear", "declaration": { "name": "previousFullYear", "module": "./translations/hu.d.ts" } }, { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "./translations/hu.d.ts" } } ] }, { "kind": "javascript-module", "path": "./translations/hu.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "./translations/hu.js" } } ] }, { "kind": "javascript-module", "path": "./translations/it.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/it.d.ts" } }, { "kind": "js", "name": "previousMonth", "declaration": { "name": "previousMonth", "module": "./translations/it.d.ts" } }, { "kind": "js", "name": "nextFullYear", "declaration": { "name": "nextFullYear", "module": "./translations/it.d.ts" } }, { "kind": "js", "name": "previousFullYear", "declaration": { "name": "previousFullYear", "module": "./translations/it.d.ts" } }, { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "./translations/it.d.ts" } } ] }, { "kind": "javascript-module", "path": "./translations/it.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "./translations/it.js" } } ] }, { "kind": "javascript-module", "path": "./translations/nl.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/nl.d.ts" } }, { "kind": "js", "name": "previousMonth", "declaration": { "name": "previousMonth", "module": "./translations/nl.d.ts" } }, { "kind": "js", "name": "nextFullYear", "declaration": { "name": "nextFullYear", "module": "./translations/nl.d.ts" } }, { "kind": "js", "name": "previousFullYear", "declaration": { "name": "previousFullYear", "module": "./translations/nl.d.ts" } }, { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "./translations/nl.d.ts" } } ] }, { "kind": "javascript-module", "path": "./translations/nl.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "./translations/nl.js" } } ] }, { "kind": "javascript-module", "path": "./translations/pl.d.ts", "declarations": [ { "kind": "variable", "name": "nextMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "previousMonth", "type": { "text": "string" } }, { "kind": "variable", "name": "nextFullYear", "type": { "text": "string" } }, { "kind": "variable", "name": "previousFullYear", "type": { "text": "string" } } ], "exports": [ { "kind": "js", "name": "nextMonth", "declaration": { "name": "nextMonth", "module": "./translations/pl.d.ts" } }