- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
24 lines
976 B
JavaScript
24 lines
976 B
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
/**
|
|
* @fileOverview Dot
|
|
*/
|
|
import * as React from 'react';
|
|
import clsx from 'clsx';
|
|
import { adaptEventHandlers } from '../util/types';
|
|
import { filterProps } from '../util/ReactUtils';
|
|
export var Dot = function Dot(props) {
|
|
var cx = props.cx,
|
|
cy = props.cy,
|
|
r = props.r,
|
|
className = props.className;
|
|
var layerClass = clsx('recharts-dot', className);
|
|
if (cx === +cx && cy === +cy && r === +r) {
|
|
return /*#__PURE__*/React.createElement("circle", _extends({}, filterProps(props, false), adaptEventHandlers(props), {
|
|
className: layerClass,
|
|
cx: cx,
|
|
cy: cy,
|
|
r: r
|
|
}));
|
|
}
|
|
return null;
|
|
}; |