@lssm/lib.ui-kit 0.0.0-canary-20251207012602 → 0.0.0-canary-20251207043720
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/_virtual/rolldown_runtime.js +33 -0
- package/dist/node_modules/@swc/helpers/cjs/_interop_require_default.js +14 -0
- package/dist/node_modules/@swc/helpers/cjs/_interop_require_wildcard.js +35 -0
- package/dist/node_modules/lucide-react/dist/esm/Icon.js +26 -0
- package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +24 -0
- package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +21 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-left.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-right.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-up.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-left.js +19 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-right.js +19 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ellipsis.js +32 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/filter.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/house.js +19 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/loader-circle.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/plus.js +19 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/refresh-ccw.js +30 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/refresh-cw.js +30 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/search.js +21 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/triangle-alert.js +26 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/x.js +19 -0
- package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +14 -0
- package/dist/node_modules/next/dist/client/add-base-path.js +30 -0
- package/dist/node_modules/next/dist/client/add-locale.js +29 -0
- package/dist/node_modules/next/dist/client/detect-domain-locale.js +26 -0
- package/dist/node_modules/next/dist/client/get-domain-locale.js +41 -0
- package/dist/node_modules/next/dist/client/has-base-path.js +28 -0
- package/dist/node_modules/next/dist/client/link.js +311 -0
- package/dist/node_modules/next/dist/client/normalize-locale-path.js +30 -0
- package/dist/node_modules/next/dist/client/normalize-trailing-slash.js +34 -0
- package/dist/node_modules/next/dist/client/request-idle-callback.js +44 -0
- package/dist/node_modules/next/dist/client/resolve-href.js +86 -0
- package/dist/node_modules/next/dist/client/use-intersection.js +104 -0
- package/dist/node_modules/next/dist/client/use-merged-ref.js +56 -0
- package/dist/node_modules/next/dist/compiled/path-to-regexp/index.js +372 -0
- package/dist/node_modules/next/dist/lib/constants.js +316 -0
- package/dist/node_modules/next/dist/lib/route-pattern-normalizer.js +69 -0
- package/dist/node_modules/next/dist/shared/lib/escape-regexp.js +23 -0
- package/dist/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js +22 -0
- package/dist/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js +42 -0
- package/dist/node_modules/next/dist/shared/lib/invariant-error.js +23 -0
- package/dist/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js +23 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/add-locale.js +30 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js +24 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/app-paths.js +41 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/format-url.js +78 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js +151 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js +77 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/index.js +32 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/interception-routes.js +92 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js +41 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js +26 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/is-local-url.js +31 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/omit.js +24 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js +33 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/parse-path.js +36 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js +24 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/querystring.js +56 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js +26 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js +94 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/route-matcher.js +46 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/route-regex.js +203 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js +167 -0
- package/dist/node_modules/next/dist/shared/lib/router-context.shared-runtime.js +20 -0
- package/dist/node_modules/next/dist/shared/lib/segment.js +80 -0
- package/dist/node_modules/next/dist/shared/lib/utils/error-once.js +25 -0
- package/dist/node_modules/next/dist/shared/lib/utils.js +172 -0
- package/dist/node_modules/next/link.js +12 -0
- package/dist/ui/atoms/LoadingSpinner/LoadingSpinner.js +2 -2
- package/dist/ui/atoms/Pagination/Pagination.js +4 -1
- package/dist/ui/atoms/SearchInput/SearchInput.js +2 -1
- package/dist/ui/breadcrumb.js +3 -2
- package/dist/ui/molecules/SearchAndFilter/SearchAndFilter.js +3 -1
- package/dist/ui/nativewind-env.d.js +0 -0
- package/dist/ui/organisms/ErrorBoundary/ErrorBoundary.js +5 -3
- package/dist/ui/organisms/ListPage/ListPage.js +12 -7
- package/package.json +198 -108
- package/dist/index.d.ts +0 -4
- package/dist/ui/accordion.d.ts +0 -35
- package/dist/ui/alert-dialog.d.ts +0 -71
- package/dist/ui/alert.d.ts +0 -36
- package/dist/ui/aspect-ratio.d.ts +0 -11
- package/dist/ui/atoms/FilterSelect/FilterSelect.d.ts +0 -7
- package/dist/ui/atoms/FilterSelect/index.d.ts +0 -3
- package/dist/ui/atoms/FilterSelect/types.d.ts +0 -18
- package/dist/ui/atoms/LoadingSpinner/LoadingSpinner.d.ts +0 -22
- package/dist/ui/atoms/LoadingSpinner/index.d.ts +0 -2
- package/dist/ui/atoms/Pagination/Pagination.d.ts +0 -7
- package/dist/ui/atoms/Pagination/index.d.ts +0 -3
- package/dist/ui/atoms/Pagination/types.d.ts +0 -15
- package/dist/ui/atoms/SearchInput/SearchInput.d.ts +0 -7
- package/dist/ui/atoms/SearchInput/index.d.ts +0 -3
- package/dist/ui/atoms/SearchInput/types.d.ts +0 -12
- package/dist/ui/avatar.d.ts +0 -27
- package/dist/ui/badge.d.ts +0 -21
- package/dist/ui/breadcrumb.d.ts +0 -38
- package/dist/ui/button.d.ts +0 -25
- package/dist/ui/card.d.ts +0 -43
- package/dist/ui/carousel.d.ts +0 -4
- package/dist/ui/checkbox.d.ts +0 -16
- package/dist/ui/collapsible.d.ts +0 -24
- package/dist/ui/command.d.ts +0 -4
- package/dist/ui/context-menu.d.ts +0 -109
- package/dist/ui/date-picker.d.ts +0 -23
- package/dist/ui/date-range-picker.d.ts +0 -30
- package/dist/ui/datetime-picker.d.ts +0 -27
- package/dist/ui/dialog.d.ts +0 -68
- package/dist/ui/dropdown-menu.d.ts +0 -111
- package/dist/ui/empty-state.d.ts +0 -28
- package/dist/ui/empty.d.ts +0 -36
- package/dist/ui/fab.d.ts +0 -35
- package/dist/ui/field.d.ts +0 -66
- package/dist/ui/form.d.ts +0 -49
- package/dist/ui/hover-card.d.ts +0 -29
- package/dist/ui/icons/Check.d.ts +0 -2
- package/dist/ui/icons/ChevronDown.d.ts +0 -2
- package/dist/ui/icons/ChevronRight.d.ts +0 -2
- package/dist/ui/icons/ChevronUp.d.ts +0 -2
- package/dist/ui/icons/CircleUser.d.ts +0 -2
- package/dist/ui/icons/Info.d.ts +0 -2
- package/dist/ui/icons/Key.d.ts +0 -2
- package/dist/ui/icons/MoonStar.d.ts +0 -2
- package/dist/ui/icons/Sun.d.ts +0 -2
- package/dist/ui/icons/X.d.ts +0 -2
- package/dist/ui/icons/iconWithClassName.d.ts +0 -6
- package/dist/ui/input.d.ts +0 -14
- package/dist/ui/label.d.ts +0 -15
- package/dist/ui/link.d.ts +0 -13
- package/dist/ui/loading-button.d.ts +0 -19
- package/dist/ui/loading-overlay.d.ts +0 -15
- package/dist/ui/loading-screen.d.ts +0 -13
- package/dist/ui/marketing/FeatureGrid.d.ts +0 -20
- package/dist/ui/marketing/Hero.d.ts +0 -27
- package/dist/ui/marketing/PricingTable.d.ts +0 -24
- package/dist/ui/marketing/index.d.ts +0 -4
- package/dist/ui/menubar.d.ts +0 -114
- package/dist/ui/molecules/Autocomplete/index.d.ts +0 -4
- package/dist/ui/molecules/SearchAndFilter/SearchAndFilter.d.ts +0 -7
- package/dist/ui/molecules/SearchAndFilter/index.d.ts +0 -3
- package/dist/ui/molecules/SearchAndFilter/types.d.ts +0 -24
- package/dist/ui/molecules/SkeletonList.d.ts +0 -15
- package/dist/ui/nativewind-env.d.ts +0 -1
- package/dist/ui/navigation-menu.d.ts +0 -67
- package/dist/ui/organisms/ErrorBoundary/ErrorBoundary.d.ts +0 -29
- package/dist/ui/organisms/ErrorBoundary/index.d.ts +0 -2
- package/dist/ui/organisms/ListPage/ListPage.d.ts +0 -28
- package/dist/ui/organisms/ListPage/index.d.ts +0 -3
- package/dist/ui/organisms/ListPage/types.d.ts +0 -41
- package/dist/ui/page-header.d.ts +0 -26
- package/dist/ui/password-strength.d.ts +0 -20
- package/dist/ui/popover.d.ts +0 -29
- package/dist/ui/progress.d.ts +0 -16
- package/dist/ui/radio-group.d.ts +0 -14
- package/dist/ui/select.d.ts +0 -83
- package/dist/ui/separator.d.ts +0 -15
- package/dist/ui/sheet.d.ts +0 -4
- package/dist/ui/sidebar.d.ts +0 -4
- package/dist/ui/skeleton.d.ts +0 -11
- package/dist/ui/stack.d.ts +0 -76
- package/dist/ui/stepper.d.ts +0 -22
- package/dist/ui/switch.d.ts +0 -14
- package/dist/ui/table.d.ts +0 -50
- package/dist/ui/tabs.d.ts +0 -32
- package/dist/ui/text.d.ts +0 -20
- package/dist/ui/textarea.d.ts +0 -9
- package/dist/ui/time-picker.d.ts +0 -21
- package/dist/ui/toggle-group.d.ts +0 -35
- package/dist/ui/toggle.d.ts +0 -33
- package/dist/ui/tooltip.d.ts +0 -31
- package/dist/ui/typography.d.ts +0 -64
- package/dist/ui/useColorScheme.d.ts +0 -11
- package/dist/ui/useListState.d.ts +0 -33
- package/dist/ui/usecases/UseCaseCard.d.ts +0 -18
- package/dist/ui/usecases/UserStoryCard.d.ts +0 -14
- package/dist/ui/usecases/index.d.ts +0 -3
- package/dist/ui/utils.d.ts +0 -6
package/README.md
CHANGED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region rolldown:runtime
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
12
|
+
key = keys[i];
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
14
|
+
__defProp(to, key, {
|
|
15
|
+
get: ((k) => from[k]).bind(null, key),
|
|
16
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return to;
|
|
22
|
+
};
|
|
23
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
24
|
+
value: mod,
|
|
25
|
+
enumerable: true
|
|
26
|
+
}) : target, mod));
|
|
27
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, { get: (a, b) => (typeof require !== "undefined" ? require : a)[b] }) : x)(function(x) {
|
|
28
|
+
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
29
|
+
throw Error("Calling `require` for \"" + x + "\" in an environment that doesn't expose the `require` function.");
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
//#endregion
|
|
33
|
+
export { __commonJSMin, __require, __toESM };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { __commonJSMin } from "../../../../_virtual/rolldown_runtime.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs
|
|
4
|
+
var require__interop_require_default = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5
|
+
function _interop_require_default(obj) {
|
|
6
|
+
return obj && obj.__esModule ? obj : { default: obj };
|
|
7
|
+
}
|
|
8
|
+
exports._ = _interop_require_default;
|
|
9
|
+
}));
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export default require__interop_require_default();
|
|
13
|
+
|
|
14
|
+
export { require__interop_require_default };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { __commonJSMin } from "../../../../_virtual/rolldown_runtime.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs
|
|
4
|
+
var require__interop_require_wildcard = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
6
|
+
if (typeof WeakMap !== "function") return null;
|
|
7
|
+
var cacheBabelInterop = /* @__PURE__ */ new WeakMap();
|
|
8
|
+
var cacheNodeInterop = /* @__PURE__ */ new WeakMap();
|
|
9
|
+
return (_getRequireWildcardCache = function(nodeInterop$1) {
|
|
10
|
+
return nodeInterop$1 ? cacheNodeInterop : cacheBabelInterop;
|
|
11
|
+
})(nodeInterop);
|
|
12
|
+
}
|
|
13
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
14
|
+
if (!nodeInterop && obj && obj.__esModule) return obj;
|
|
15
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") return { default: obj };
|
|
16
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
17
|
+
if (cache && cache.has(obj)) return cache.get(obj);
|
|
18
|
+
var newObj = { __proto__: null };
|
|
19
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
20
|
+
for (var key in obj) if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
21
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
22
|
+
if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);
|
|
23
|
+
else newObj[key] = obj[key];
|
|
24
|
+
}
|
|
25
|
+
newObj.default = obj;
|
|
26
|
+
if (cache) cache.set(obj, newObj);
|
|
27
|
+
return newObj;
|
|
28
|
+
}
|
|
29
|
+
exports._ = _interop_require_wildcard;
|
|
30
|
+
}));
|
|
31
|
+
|
|
32
|
+
//#endregion
|
|
33
|
+
export default require__interop_require_wildcard();
|
|
34
|
+
|
|
35
|
+
export { require__interop_require_wildcard };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { mergeClasses } from "./shared/src/utils.js";
|
|
2
|
+
import { defaultAttributes } from "./defaultAttributes.js";
|
|
3
|
+
import { createElement, forwardRef } from "react";
|
|
4
|
+
|
|
5
|
+
//#region ../../../node_modules/lucide-react/dist/esm/Icon.js
|
|
6
|
+
/**
|
|
7
|
+
* @license lucide-react v0.454.0 - ISC
|
|
8
|
+
*
|
|
9
|
+
* This source code is licensed under the ISC license.
|
|
10
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
11
|
+
*/
|
|
12
|
+
const Icon = forwardRef(({ color = "currentColor", size = 24, strokeWidth = 2, absoluteStrokeWidth, className = "", children, iconNode, ...rest }, ref) => {
|
|
13
|
+
return createElement("svg", {
|
|
14
|
+
ref,
|
|
15
|
+
...defaultAttributes,
|
|
16
|
+
width: size,
|
|
17
|
+
height: size,
|
|
18
|
+
stroke: color,
|
|
19
|
+
strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size) : strokeWidth,
|
|
20
|
+
className: mergeClasses("lucide", className),
|
|
21
|
+
...rest
|
|
22
|
+
}, [...iconNode.map(([tag, attrs]) => createElement(tag, attrs)), ...Array.isArray(children) ? children : [children]]);
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
//#endregion
|
|
26
|
+
export { Icon };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { mergeClasses, toKebabCase } from "./shared/src/utils.js";
|
|
2
|
+
import { Icon } from "./Icon.js";
|
|
3
|
+
import { createElement, forwardRef } from "react";
|
|
4
|
+
|
|
5
|
+
//#region ../../../node_modules/lucide-react/dist/esm/createLucideIcon.js
|
|
6
|
+
/**
|
|
7
|
+
* @license lucide-react v0.454.0 - ISC
|
|
8
|
+
*
|
|
9
|
+
* This source code is licensed under the ISC license.
|
|
10
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
11
|
+
*/
|
|
12
|
+
const createLucideIcon = (iconName, iconNode) => {
|
|
13
|
+
const Component = forwardRef(({ className, ...props }, ref) => createElement(Icon, {
|
|
14
|
+
ref,
|
|
15
|
+
iconNode,
|
|
16
|
+
className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className),
|
|
17
|
+
...props
|
|
18
|
+
}));
|
|
19
|
+
Component.displayName = `${iconName}`;
|
|
20
|
+
return Component;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
//#endregion
|
|
24
|
+
export { createLucideIcon };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
//#region ../../../node_modules/lucide-react/dist/esm/defaultAttributes.js
|
|
2
|
+
/**
|
|
3
|
+
* @license lucide-react v0.454.0 - ISC
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the ISC license.
|
|
6
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
var defaultAttributes = {
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: 24,
|
|
11
|
+
height: 24,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
strokeWidth: 2,
|
|
16
|
+
strokeLinecap: "round",
|
|
17
|
+
strokeLinejoin: "round"
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
//#endregion
|
|
21
|
+
export { defaultAttributes };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/chevron-down.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const ChevronDown = createLucideIcon("ChevronDown", [["path", {
|
|
11
|
+
d: "m6 9 6 6 6-6",
|
|
12
|
+
key: "qrunsl"
|
|
13
|
+
}]]);
|
|
14
|
+
|
|
15
|
+
//#endregion
|
|
16
|
+
export { ChevronDown };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/chevron-left.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const ChevronLeft = createLucideIcon("ChevronLeft", [["path", {
|
|
11
|
+
d: "m15 18-6-6 6-6",
|
|
12
|
+
key: "1wnfg3"
|
|
13
|
+
}]]);
|
|
14
|
+
|
|
15
|
+
//#endregion
|
|
16
|
+
export { ChevronLeft };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/chevron-right.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const ChevronRight = createLucideIcon("ChevronRight", [["path", {
|
|
11
|
+
d: "m9 18 6-6-6-6",
|
|
12
|
+
key: "mthhwq"
|
|
13
|
+
}]]);
|
|
14
|
+
|
|
15
|
+
//#endregion
|
|
16
|
+
export { ChevronRight };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/chevron-up.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const ChevronUp = createLucideIcon("ChevronUp", [["path", {
|
|
11
|
+
d: "m18 15-6-6-6 6",
|
|
12
|
+
key: "153udz"
|
|
13
|
+
}]]);
|
|
14
|
+
|
|
15
|
+
//#endregion
|
|
16
|
+
export { ChevronUp };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/chevrons-left.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const ChevronsLeft = createLucideIcon("ChevronsLeft", [["path", {
|
|
11
|
+
d: "m11 17-5-5 5-5",
|
|
12
|
+
key: "13zhaf"
|
|
13
|
+
}], ["path", {
|
|
14
|
+
d: "m18 17-5-5 5-5",
|
|
15
|
+
key: "h8a8et"
|
|
16
|
+
}]]);
|
|
17
|
+
|
|
18
|
+
//#endregion
|
|
19
|
+
export { ChevronsLeft };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/chevrons-right.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const ChevronsRight = createLucideIcon("ChevronsRight", [["path", {
|
|
11
|
+
d: "m6 17 5-5-5-5",
|
|
12
|
+
key: "xnjwq"
|
|
13
|
+
}], ["path", {
|
|
14
|
+
d: "m13 17 5-5-5-5",
|
|
15
|
+
key: "17xmmf"
|
|
16
|
+
}]]);
|
|
17
|
+
|
|
18
|
+
//#endregion
|
|
19
|
+
export { ChevronsRight };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/ellipsis.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const Ellipsis = createLucideIcon("Ellipsis", [
|
|
11
|
+
["circle", {
|
|
12
|
+
cx: "12",
|
|
13
|
+
cy: "12",
|
|
14
|
+
r: "1",
|
|
15
|
+
key: "41hilf"
|
|
16
|
+
}],
|
|
17
|
+
["circle", {
|
|
18
|
+
cx: "19",
|
|
19
|
+
cy: "12",
|
|
20
|
+
r: "1",
|
|
21
|
+
key: "1wjl8i"
|
|
22
|
+
}],
|
|
23
|
+
["circle", {
|
|
24
|
+
cx: "5",
|
|
25
|
+
cy: "12",
|
|
26
|
+
r: "1",
|
|
27
|
+
key: "1pcz8c"
|
|
28
|
+
}]
|
|
29
|
+
]);
|
|
30
|
+
|
|
31
|
+
//#endregion
|
|
32
|
+
export { Ellipsis };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/filter.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const Filter = createLucideIcon("Filter", [["polygon", {
|
|
11
|
+
points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3",
|
|
12
|
+
key: "1yg77f"
|
|
13
|
+
}]]);
|
|
14
|
+
|
|
15
|
+
//#endregion
|
|
16
|
+
export { Filter };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/house.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const House = createLucideIcon("House", [["path", {
|
|
11
|
+
d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",
|
|
12
|
+
key: "5wwlr5"
|
|
13
|
+
}], ["path", {
|
|
14
|
+
d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",
|
|
15
|
+
key: "1d0kgt"
|
|
16
|
+
}]]);
|
|
17
|
+
|
|
18
|
+
//#endregion
|
|
19
|
+
export { House };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/loader-circle.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const LoaderCircle = createLucideIcon("LoaderCircle", [["path", {
|
|
11
|
+
d: "M21 12a9 9 0 1 1-6.219-8.56",
|
|
12
|
+
key: "13zald"
|
|
13
|
+
}]]);
|
|
14
|
+
|
|
15
|
+
//#endregion
|
|
16
|
+
export { LoaderCircle };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/plus.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const Plus = createLucideIcon("Plus", [["path", {
|
|
11
|
+
d: "M5 12h14",
|
|
12
|
+
key: "1ays0h"
|
|
13
|
+
}], ["path", {
|
|
14
|
+
d: "M12 5v14",
|
|
15
|
+
key: "s699le"
|
|
16
|
+
}]]);
|
|
17
|
+
|
|
18
|
+
//#endregion
|
|
19
|
+
export { Plus };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/refresh-ccw.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const RefreshCcw = createLucideIcon("RefreshCcw", [
|
|
11
|
+
["path", {
|
|
12
|
+
d: "M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",
|
|
13
|
+
key: "14sxne"
|
|
14
|
+
}],
|
|
15
|
+
["path", {
|
|
16
|
+
d: "M3 3v5h5",
|
|
17
|
+
key: "1xhq8a"
|
|
18
|
+
}],
|
|
19
|
+
["path", {
|
|
20
|
+
d: "M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16",
|
|
21
|
+
key: "1hlbsb"
|
|
22
|
+
}],
|
|
23
|
+
["path", {
|
|
24
|
+
d: "M16 16h5v5",
|
|
25
|
+
key: "ccwih5"
|
|
26
|
+
}]
|
|
27
|
+
]);
|
|
28
|
+
|
|
29
|
+
//#endregion
|
|
30
|
+
export { RefreshCcw };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/refresh-cw.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const RefreshCw = createLucideIcon("RefreshCw", [
|
|
11
|
+
["path", {
|
|
12
|
+
d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",
|
|
13
|
+
key: "v9h5vc"
|
|
14
|
+
}],
|
|
15
|
+
["path", {
|
|
16
|
+
d: "M21 3v5h-5",
|
|
17
|
+
key: "1q7to0"
|
|
18
|
+
}],
|
|
19
|
+
["path", {
|
|
20
|
+
d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",
|
|
21
|
+
key: "3uifl3"
|
|
22
|
+
}],
|
|
23
|
+
["path", {
|
|
24
|
+
d: "M8 16H3v5",
|
|
25
|
+
key: "1cv678"
|
|
26
|
+
}]
|
|
27
|
+
]);
|
|
28
|
+
|
|
29
|
+
//#endregion
|
|
30
|
+
export { RefreshCw };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/search.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const Search = createLucideIcon("Search", [["circle", {
|
|
11
|
+
cx: "11",
|
|
12
|
+
cy: "11",
|
|
13
|
+
r: "8",
|
|
14
|
+
key: "4ej97u"
|
|
15
|
+
}], ["path", {
|
|
16
|
+
d: "m21 21-4.3-4.3",
|
|
17
|
+
key: "1qie3q"
|
|
18
|
+
}]]);
|
|
19
|
+
|
|
20
|
+
//#endregion
|
|
21
|
+
export { Search };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/triangle-alert.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const TriangleAlert = createLucideIcon("TriangleAlert", [
|
|
11
|
+
["path", {
|
|
12
|
+
d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",
|
|
13
|
+
key: "wmoenq"
|
|
14
|
+
}],
|
|
15
|
+
["path", {
|
|
16
|
+
d: "M12 9v4",
|
|
17
|
+
key: "juzpu7"
|
|
18
|
+
}],
|
|
19
|
+
["path", {
|
|
20
|
+
d: "M12 17h.01",
|
|
21
|
+
key: "p32p05"
|
|
22
|
+
}]
|
|
23
|
+
]);
|
|
24
|
+
|
|
25
|
+
//#endregion
|
|
26
|
+
export { TriangleAlert };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { createLucideIcon } from "../createLucideIcon.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../../node_modules/lucide-react/dist/esm/icons/x.js
|
|
4
|
+
/**
|
|
5
|
+
* @license lucide-react v0.454.0 - ISC
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the ISC license.
|
|
8
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
const X = createLucideIcon("X", [["path", {
|
|
11
|
+
d: "M18 6 6 18",
|
|
12
|
+
key: "1bl5f8"
|
|
13
|
+
}], ["path", {
|
|
14
|
+
d: "m6 6 12 12",
|
|
15
|
+
key: "d8bk6v"
|
|
16
|
+
}]]);
|
|
17
|
+
|
|
18
|
+
//#endregion
|
|
19
|
+
export { X };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region ../../../node_modules/lucide-react/dist/esm/shared/src/utils.js
|
|
2
|
+
/**
|
|
3
|
+
* @license lucide-react v0.454.0 - ISC
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the ISC license.
|
|
6
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
const toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
9
|
+
const mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
|
10
|
+
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
|
|
11
|
+
}).join(" ").trim();
|
|
12
|
+
|
|
13
|
+
//#endregion
|
|
14
|
+
export { mergeClasses, toKebabCase };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { __commonJSMin } from "../../../../_virtual/rolldown_runtime.js";
|
|
2
|
+
import { require_normalize_trailing_slash } from "./normalize-trailing-slash.js";
|
|
3
|
+
import { require_add_path_prefix } from "../shared/lib/router/utils/add-path-prefix.js";
|
|
4
|
+
|
|
5
|
+
//#region ../../../node_modules/next/dist/client/add-base-path.js
|
|
6
|
+
var require_add_base_path = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
Object.defineProperty(exports, "addBasePath", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function() {
|
|
11
|
+
return addBasePath;
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
const _addpathprefix = require_add_path_prefix();
|
|
15
|
+
const _normalizetrailingslash = require_normalize_trailing_slash();
|
|
16
|
+
const basePath = process.env.__NEXT_ROUTER_BASEPATH || "";
|
|
17
|
+
function addBasePath(path, required) {
|
|
18
|
+
return (0, _normalizetrailingslash.normalizePathTrailingSlash)(process.env.__NEXT_MANUAL_CLIENT_BASE_PATH && !required ? path : (0, _addpathprefix.addPathPrefix)(path, basePath));
|
|
19
|
+
}
|
|
20
|
+
if ((typeof exports.default === "function" || typeof exports.default === "object" && exports.default !== null) && typeof exports.default.__esModule === "undefined") {
|
|
21
|
+
Object.defineProperty(exports.default, "__esModule", { value: true });
|
|
22
|
+
Object.assign(exports.default, exports);
|
|
23
|
+
module.exports = exports.default;
|
|
24
|
+
}
|
|
25
|
+
}));
|
|
26
|
+
|
|
27
|
+
//#endregion
|
|
28
|
+
export default require_add_base_path();
|
|
29
|
+
|
|
30
|
+
export { require_add_base_path };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { __commonJSMin } from "../../../../_virtual/rolldown_runtime.js";
|
|
2
|
+
import { require_normalize_trailing_slash } from "./normalize-trailing-slash.js";
|
|
3
|
+
import { require_add_locale as require_add_locale$1 } from "../shared/lib/router/utils/add-locale.js";
|
|
4
|
+
|
|
5
|
+
//#region ../../../node_modules/next/dist/client/add-locale.js
|
|
6
|
+
var require_add_locale = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
Object.defineProperty(exports, "addLocale", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function() {
|
|
11
|
+
return addLocale;
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
const _normalizetrailingslash = require_normalize_trailing_slash();
|
|
15
|
+
const addLocale = (path, ...args) => {
|
|
16
|
+
if (process.env.__NEXT_I18N_SUPPORT) return (0, _normalizetrailingslash.normalizePathTrailingSlash)(require_add_locale$1().addLocale(path, ...args));
|
|
17
|
+
return path;
|
|
18
|
+
};
|
|
19
|
+
if ((typeof exports.default === "function" || typeof exports.default === "object" && exports.default !== null) && typeof exports.default.__esModule === "undefined") {
|
|
20
|
+
Object.defineProperty(exports.default, "__esModule", { value: true });
|
|
21
|
+
Object.assign(exports.default, exports);
|
|
22
|
+
module.exports = exports.default;
|
|
23
|
+
}
|
|
24
|
+
}));
|
|
25
|
+
|
|
26
|
+
//#endregion
|
|
27
|
+
export default require_add_locale();
|
|
28
|
+
|
|
29
|
+
export { require_add_locale };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { __commonJSMin } from "../../../../_virtual/rolldown_runtime.js";
|
|
2
|
+
import { require_detect_domain_locale as require_detect_domain_locale$1 } from "../shared/lib/i18n/detect-domain-locale.js";
|
|
3
|
+
|
|
4
|
+
//#region ../../../node_modules/next/dist/client/detect-domain-locale.js
|
|
5
|
+
var require_detect_domain_locale = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
Object.defineProperty(exports, "detectDomainLocale", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function() {
|
|
10
|
+
return detectDomainLocale;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
const detectDomainLocale = (...args) => {
|
|
14
|
+
if (process.env.__NEXT_I18N_SUPPORT) return require_detect_domain_locale$1().detectDomainLocale(...args);
|
|
15
|
+
};
|
|
16
|
+
if ((typeof exports.default === "function" || typeof exports.default === "object" && exports.default !== null) && typeof exports.default.__esModule === "undefined") {
|
|
17
|
+
Object.defineProperty(exports.default, "__esModule", { value: true });
|
|
18
|
+
Object.assign(exports.default, exports);
|
|
19
|
+
module.exports = exports.default;
|
|
20
|
+
}
|
|
21
|
+
}));
|
|
22
|
+
|
|
23
|
+
//#endregion
|
|
24
|
+
export default require_detect_domain_locale();
|
|
25
|
+
|
|
26
|
+
export { require_detect_domain_locale };
|