UNPKG

@lion/calendar

Version:
1,881 lines 68.9 kB
{ "schemaVersion": "1.0.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.js" } } ] }, { "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", "description": "", "name": "LionCalendar", "members": [ { "kind": "field", "name": "__data", "privacy": "private", "type": { "text": "{months: Month[]}" } }, { "kind": "field", "name": "minDate", "type": { "text": "Date" } }, { "kind": "field", "name": "maxDate", "type": { "text": "Date" } }, { "kind": "field", "name": "dayPreprocessor", "type": { "text": "(day: Day) => import(\"../types/day\").Day" }, "parameters": [ { "name": "day", "type": { "text": "Day" } } ] }, { "kind": "field", "name": "disableDates", "type": { "text": "(day: Date) => boolean" }, "parameters": [ { "name": "day", "type": { "text": "Date" } } ] }, { "kind": "field", "name": "firstDayOfWeek", "type": { "text": "number" } }, { "kind": "field", "name": "weekdayHeaderNotation", "type": { "text": "string" } }, { "kind": "field", "name": "__today", "privacy": "private" }, { "kind": "field", "name": "centralDate", "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", "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", "type": { "text": "Date | null" } }, { "kind": "method", "name": "goToNextMonth", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "goToPreviousMonth", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "goToNextYear", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "goToPreviousYear", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "focusDate", "return": { "type": { "text": "Promise<void>" } }, "parameters": [ { "name": "date", "type": { "text": "Date" } } ] }, { "kind": "method", "name": "focusCentralDate", "return": { "type": { "text": "void" } } }, { "kind": "method", "name": "focusSelectedDate", "return": { "type": { "text": "Promise<void>" } } }, { "kind": "field", "name": "__contentWrapperElement", "type": { "text": "HTMLButtonElement | undefined" } }, { "kind": "method", "name": "initCentralDate", "return": { "type": { "text": "void" } }, "description": "This exposes an interface for datepickers that want to\nreinitialize when calendar is opened" }, { "kind": "field", "name": "__calculateInitialCentralDate", "privacy": "private" }, { "kind": "field", "name": "__initialCentralDate", "type": { "text": "Date" } }, { "kind": "field", "name": "__renderMonthNavigation", "privacy": "private", "parameters": [ { "name": "month", "type": { "text": "string" } }, { "name": "year", "type": { "text": "number" } } ] }, { "kind": "field", "name": "__renderYearNavigation", "privacy": "private", "parameters": [ { "name": "month", "type": { "text": "string" } }, { "name": "year", "type": { "text": "number" } } ] }, { "kind": "field", "name": "__renderNavigation", "privacy": "private" }, { "kind": "field", "name": "__renderData", "privacy": "private" }, { "kind": "field", "name": "__getPreviousDisabled", "privacy": "private", "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "previousMonth", "type": { "text": "string" } }, { "name": "previousYear", "type": { "text": "number" } } ] }, { "kind": "field", "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", "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", "parameters": [ { "name": "mode", "type": { "text": "string" } }, { "name": "type", "type": { "text": "string" } }, { "name": "month", "type": { "text": "string" } }, { "name": "year", "type": { "text": "number" } } ] }, { "kind": "field", "name": "__coreDayPreprocessor", "privacy": "private", "parameters": [ { "name": "_day", "type": { "text": "Day" } }, { "name": "param1", "type": { "text": "*" } } ] }, { "kind": "field", "name": "__createData", "privacy": "private", "parameters": [ { "name": "options", "optional": true, "type": { "text": "Day" } } ] }, { "kind": "field", "name": "__disableDatesChanged", "privacy": "private" }, { "kind": "field", "name": "__dateSelectedByUser", "privacy": "private", "parameters": [ { "name": "selectedDate", "type": { "text": "Date" } } ] }, { "kind": "field", "name": "selectedDate", "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", "parameters": [ { "name": "date", "type": { "text": "Date" } } ] }, { "kind": "field", "name": "__findBestEnabledDateFor", "privacy": "private", "parameters": [ { "name": "date", "type": { "text": "Date" } }, { "name": "opts", "type": { "text": "@param {String} [opts.mode] Find best date in `future/past/both`\n * " } } ] }, { "kind": "field", "name": "__clickDateDelegation", "privacy": "private", "parameters": [ { "name": "ev", "type": { "text": "Event" } } ] }, { "kind": "field", "name": "__focusDateDelegation", "privacy": "private" }, { "kind": "field", "name": "__blurDateDelegation", "privacy": "private" }, { "kind": "field", "name": "__keyboardNavigationEvent", "privacy": "private", "parameters": [ { "name": "ev", "type": { "text": "KeyboardEvent" } } ] }, { "kind": "field", "name": "__modifyDate", "privacy": "private", "parameters": [ { "name": "modify", "type": { "text": "number" } }, { "name": "opts", "type": { "text": "@param {string} opts.dateType\n * @param {string} opts.type\n * @param {string} opts.mode\n * " } } ] }, { "kind": "field", "name": "__getLocale", "privacy": "private" } ], "superclass": { "name": "LionCalendar_base", "module": "src/LionCalendar.d.ts" }, "tagName": "lion-calendar", "customElement": true } ], "exports": [ { "kind": "js", "name": "LionCalendar", "declaration": { "name": "LionCalendar", "module": "src/LionCalendar.d.ts" } } ] }, { "kind": "javascript-module", "path": "src/LionCalendar.js", "declarations": [ { "kind": "class", "description": "", "name": "LionCalendar", "members": [ { "kind": "field", "name": "localizeNamespaces", "static": true }, { "kind": "field", "name": "focusedDate" }, { "kind": "method", "name": "goToNextMonth" }, { "kind": "method", "name": "goToPreviousMonth" }, { "kind": "method", "name": "goToNextYear" }, { "kind": "method", "name": "goToPreviousYear" }, { "kind": "method", "name": "focusDate", "parameters": [ { "name": "date", "type": { "text": "Date" } } ] }, { "kind": "method", "name": "focusCentralDate" }, { "kind": "method", "name": "focusSelectedDate" }, { "kind": "method", "name": "initCentralDate", "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", "parameters": [ { "name": "month", "type": { "text": "string" } }, { "name": "year", "type": { "text": "number" } } ], "privacy": "private" }, { "kind": "method", "name": "__renderYearNavigation", "parameters": [ { "name": "month", "type": { "text": "string" } }, { "name": "year", "type": { "text": "number" } } ], "privacy": "private" }, { "kind": "method", "name": "__renderNavigation", "privacy": "private" }, { "kind": "method", "name": "__renderData", "privacy": "private" }, { "kind": "method", "name": "__getPreviousDisabled", "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "previousMonth", "type": { "text": "string" } }, { "name": "previousYear", "type": { "text": "number" } } ], "privacy": "private" }, { "kind": "method", "name": "__getNextDisabled", "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "nextMonth", "type": { "text": "string" } }, { "name": "nextYear", "type": { "text": "number" } } ], "privacy": "private" }, { "kind": "method", "name": "__renderPreviousButton", "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "previousMonth", "type": { "text": "string" } }, { "name": "previousYear", "type": { "text": "number" } } ], "privacy": "protected" }, { "kind": "method", "name": "__renderNextButton", "parameters": [ { "name": "type", "type": { "text": "string" } }, { "name": "nextMonth", "type": { "text": "string" } }, { "name": "nextYear", "type": { "text": "number" } } ], "privacy": "protected" }, { "kind": "method", "name": "__getNavigationLabel", "parameters": [ { "name": "mode", "type": { "text": "string" } }, { "name": "type", "type": { "text": "string" } }, { "name": "month", "type": { "text": "string" } }, { "name": "year", "type": { "text": "number" } } ], "privacy": "private" }, { "kind": "method", "name": "__coreDayPreprocessor", "parameters": [ { "name": "_day", "type": { "text": "Day" } }, { "name": "{ currentMonth = false }", "default": "{}" }, { "name": "param1", "type": { "text": "*" } } ], "privacy": "private" }, { "kind": "method", "name": "__createData", "parameters": [ { "name": "options", "optional": true, "type": { "text": "Day" } } ], "privacy": "private" }, { "kind": "method", "name": "__disableDatesChanged", "privacy": "private" }, { "kind": "method", "name": "__dateSelectedByUser", "parameters": [ { "name": "selectedDate", "type": { "text": "Date" } } ], "privacy": "private" }, { "kind": "method", "name": "__centralDateChanged", "privacy": "private" }, { "kind": "method", "name": "__focusedDateChanged", "privacy": "private" }, { "kind": "method", "name": "__ensureValidCentralDate", "privacy": "private" }, { "kind": "method", "name": "__isEnabledDate", "parameters": [ { "name": "date", "type": { "text": "Date" } } ], "privacy": "private" }, { "kind": "method", "name": "__findBestEnabledDateFor", "parameters": [ { "name": "date", "type": { "text": "Date" } }, { "name": "{ mode = 'both' }", "default": "{}" }, { "name": "opts", "type": { "text": "@param {String} [opts.mode] Find best date in `future/past/both`\n * " } } ], "privacy": "private" }, { "kind": "method", "name": "__clickDateDelegation", "parameters": [ { "name": "ev", "type": { "text": "Event" } } ], "privacy": "private" }, { "kind": "method", "name": "__focusDateDelegation", "privacy": "private" }, { "kind": "method", "name": "__blurDateDelegation", "privacy": "private" }, { "kind": "method", "name": "__keyboardNavigationEvent", "parameters": [ { "name": "ev", "type": { "text": "KeyboardEvent" } } ], "privacy": "private" }, { "kind": "method", "name": "__modifyDate", "parameters": [ { "name": "modify", "type": { "text": "number" } }, { "name": "{ dateType, type, mode }" }, { "name": "opts", "type": { "text": "@param {string} opts.dateType\n * @param {string} opts.type\n * @param {string} opts.mode\n * " } } ], "privacy": "private" }, { "kind": "method", "name": "__getLocale", "privacy": "private" }, { "kind": "field", "name": "__data", "type": { "text": "{months: Month[]}" }, "privacy": "private", "default": "{ months: [] }", "description": "Data to render current month grid" }, { "kind": "field", "name": "minDate", "default": "new Date(0)", "privacy": "public", "description": "Minimum date. All dates before will be disabled" }, { "kind": "field", "name": "maxDate", "default": "new Date(8640000000000000)", "privacy": "public", "description": "Maximum date. All dates after will be disabled" }, { "kind": "field", "name": "dayPreprocessor", "parameters": [ { "name": "day", "type": { "text": "Day" } } ] }, { "kind": "field", "name": "disableDates", "parameters": [ { "name": "day", "type": { "text": "Date" } } ], "privacy": "public", "description": "Disable certain dates" }, { "kind": "field", "name": "firstDayOfWeek", "type": { "text": "number" }, "default": "0", "privacy": "public", "description": "Weekday that will be displayed in first column of month grid.\n0: sunday, 1: monday, 2: tuesday, 3: wednesday , 4: thursday, 5: friday, 6: saturday\nDefault is 0" }, { "kind": "field", "name": "weekdayHeaderNotation", "type": { "text": "string" }, "default": "'short'", "privacy": "public", "description": "Weekday header notation, based on Intl DatetimeFormat:\n- 'long' (e.g., Thursday)\n- 'short' (e.g., Thu)\n- 'narrow' (e.g., T).\nDefault is 'short'" }, { "kind": "field", "name": "__today", "privacy": "private" }, { "kind": "field", "name": "centralDate", "type": { "text": "Date" }, "privacy": "public", "description": "The date that\n1. determines the currently visible month\n2. will be focused when the month grid gets focused by the keyboard" }, { "kind": "field", "name": "__focusedDate", "type": { "text": "Date | null" }, "privacy": "private", "default": "null", "description": "The currently focused date (if any)" }, { "kind": "field", "name": "__connectedCallbackDone", "type": { "text": "boolean" }, "privacy": "private", "default": "false" }, { "kind": "field", "name": "__eventsAdded", "type": { "text": "boolean" }, "privacy": "private", "default": "false" }, { "kind": "field", "name": "locale", "type": { "text": "string" }, "default": "''", "privacy": "public", "description": "Different locale for this component scope" }, { "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": "selectedDate", "privacy": "public", "description": "The selected date, usually synchronized with datepicker-input\nNot to be confused with the focused date (therefore not necessarily in active month view)" } ], "events": [ { "name": "user-selected-date-changed", "type": { "text": "CustomEvent" } } ], "mixins": [ { "name": "LocalizeMixin", "package": "@lion/localize" } ], "superclass": { "name": "LitElement", "package": "@lion/core" }, "tagName": "lion-calendar", "customElement": true } ], "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(\"@lion/core\").CSSResult" } } ], "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", "default": "css`\n :host {\n display: block;\n }\n\n :host([hidden]) {\n display: none;\n }\n\n .calendar {\n display: block;\n }\n\n .calendar__navigation {\n padding: 0 8px;\n }\n\n .calendar__navigation__month,\n .calendar__navigation__year {\n display: flex;\n }\n\n .calendar__navigation-heading {\n margin: 0.5em 0;\n }\n\n .calendar__previous-button,\n .calendar__next-button {\n background-color: #fff;\n border: 0;\n padding: 0;\n min-width: 40px;\n min-height: 40px;\n }\n\n .calendar__grid {\n width: 100%;\n padding: 8px 8px;\n }\n\n .calendar__weekday-header {\n }\n\n .calendar__day-cell {\n text-align: center;\n }\n\n .calendar__day-button {\n background-color: #fff;\n border: 0;\n color: black;\n padding: 0;\n min-width: 40px;\n min-height: 40px;\n }\n\n .calendar__day-button__text {\n pointer-events: none;\n }\n\n .calendar__day-button[today] {\n text-decoration: underline;\n }\n\n .calendar__day-button[selected] {\n background: #ccc;\n }\n\n .calendar__day-button[previous-month],\n .calendar__day-button[next-month] {\n color: rgb(115, 115, 115);\n }\n\n .calendar__day-button:hover {\n border: 1px solid green;\n }\n\n .calendar__day-button[disabled] {\n background-color: #fff;\n color: #eee;\n outline: none;\n }\n`" } ], "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": [], "exports": [ { "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": [], "exports": [ { "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": [], "exports": [ { "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": [], "exports": [ { "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": [], "exports": [ { "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": [], "exports": [ { "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": [], "exports": [ { "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": [], "exports": [ { "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": [], "exports": [ { "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": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "translations/pl.d.ts" } } ] }, { "kind": "javascript-module", "path": "translations/pl.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "translations/pl.js" } } ] }, { "kind": "javascript-module", "path": "translations/ro.d.ts", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "translations/ro.d.ts" } } ] }, { "kind": "javascript-module", "path": "translations/ro.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "translations/ro.js" } } ] }, { "kind": "javascript-module", "path": "translations/ru.d.ts", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "translations/ru.d.ts" } } ] }, { "kind": "javascript-module", "path": "translations/ru.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "translations/ru.js" } } ] }, { "kind": "javascript-module", "path": "translations/sk.d.ts", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "translations/sk.d.ts" } } ] }, { "kind": "javascript-module", "path": "translations/sk.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "translations/sk.js" } } ] }, { "kind": "javascript-module", "path": "translations/uk.d.ts", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "translations/uk.d.ts" } } ] }, { "kind": "javascript-module", "path": "translations/uk.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "translations/uk.js" } } ] }, { "kind": "javascript-module", "path": "translations/zh.d.ts", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "name": "_default", "module": "translations/zh.d.ts" } } ] }, { "kind": "javascript-module", "path": "translations/zh.js", "declarations": [], "exports": [ { "kind": "js", "name": "default", "declaration": { "module": "translations/zh.js" } } ] }, { "kind": "javascript-module", "path": "types/day.d.ts", "declarations": [], "exports": [] }, { "kind": "javascript-module", "path": "src/utils/createDay.d.ts", "declarations": [ { "kind": "function", "name": "createDay", "return": { "type": { "text": "Day" } }, "parameters": [ { "name": "date", "optional": true, "type": { "text": "Date" }, "description": "," }, { "name": "{ weekOrder, central, startOfWeek, selected, previousMonth, currentMonth, nextMonth, past, today, future, disabled, }", "optional": true, "type": { "text": "{\n weekOrder?: number | undefined;\n central?: boolean | undefined;\n startOfWeek?: boolean | undefined;\n selected?: boolean | undefined;\n previousMonth?: boolean | undefined;\n currentMonth?: boolean | undefined;\n nextMonth?: boolean | undefined;\n past?: boolean | undefined;\n today?: boolean | undefined;\n future?: boolean | undefined;\n disabled?: boolean | undefined;\n}" } } ] } ], "exports": [ { "kind": "js", "name": "createDay", "declaration": { "name": "createDay", "module": "src/utils/createDay.d.t