@clickhouse/click-ui 0.0.200 → 0.0.201

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.
@@ -5,7 +5,7 @@ var __publicField = (obj, key, value) => {
5
5
  return value;
6
6
  };
7
7
  import { jsxs, jsx, Fragment as Fragment$1 } from "react/jsx-runtime";
8
- import { keyframes, styled, useTheme, css as css$1, createGlobalStyle, ThemeProvider as ThemeProvider$1 } from "styled-components";
8
+ import styled$1, { keyframes, styled, useTheme, css as css$1, createGlobalStyle, ThemeProvider as ThemeProvider$1 } from "styled-components";
9
9
  import * as React from "react";
10
10
  import React__default, { forwardRef, useCallback, createContext, useMemo, createElement as createElement$1, useContext, useRef, useEffect, useState, Children, isValidElement, cloneElement, Fragment, useLayoutEffect, useReducer, useId, PureComponent, Component, memo } from "react";
11
11
  import * as ReactDOM from "react-dom";
@@ -16782,6 +16782,287 @@ const DialogContent = ({
16782
16782
  };
16783
16783
  DialogContent.displayName = "DialogContent";
16784
16784
  Dialog.Content = DialogContent;
16785
+ const truncateFilename = (filename, maxLength = 40, delimiter = "~") => {
16786
+ if (filename.length <= maxLength) {
16787
+ return filename;
16788
+ }
16789
+ if (filename.startsWith(".")) {
16790
+ return `${filename.slice(0, maxLength)}${delimiter}`;
16791
+ }
16792
+ const extension = filename.lastIndexOf(".") !== -1 ? filename.slice(filename.lastIndexOf(".")) : "";
16793
+ const nameWithoutExtension = extension ? filename.slice(0, filename.lastIndexOf(".")) : filename;
16794
+ const truncatedName = nameWithoutExtension.slice(0, maxLength) + delimiter;
16795
+ return truncatedName + extension;
16796
+ };
16797
+ const UploadArea = styled$1.div.withConfig({
16798
+ componentId: "sc-1rzizve-0"
16799
+ })(["background-color:", ";border:", ";border-radius:", ";padding:", ";display:flex;flex-direction:", ";align-items:center;justify-content:", ";gap:", ";cursor:", ";transition:", ";", " ", ""], ({
16800
+ theme: theme2
16801
+ }) => theme2.click.fileUpload.color.background.default, ({
16802
+ theme: theme2
16803
+ }) => `1px solid ${theme2.click.fileUpload.color.stroke.default}`, ({
16804
+ theme: theme2,
16805
+ $hasFile
16806
+ }) => $hasFile ? `${theme2.click.fileUpload.sm.radii.all}` : `${theme2.click.fileUpload.md.radii.all}`, ({
16807
+ theme: theme2,
16808
+ $hasFile,
16809
+ $size
16810
+ }) => $hasFile || $size === "sm" ? `${theme2.click.fileUpload.sm.space.y} ${theme2.click.fileUpload.sm.space.x}` : `${theme2.click.fileUpload.md.space.y} ${theme2.click.fileUpload.md.space.x}`, (props) => props.$hasFile ? "row" : props.$size === "sm" ? "row" : "column", (props) => props.$hasFile ? "space-between" : props.$size === "sm" ? "space-between" : "center", ({
16811
+ theme: theme2,
16812
+ $size
16813
+ }) => $size === "sm" ? theme2.click.fileUpload.sm.space.gap : theme2.click.fileUpload.md.space.gap, (props) => props.$hasFile ? "default" : "pointer", ({
16814
+ theme: theme2
16815
+ }) => theme2.click.fileUpload.transitions.all, (props) => !props.$hasFile && css$1(["border-style:dashed;border-color:", ";", ""], ({
16816
+ theme: theme2
16817
+ }) => theme2.click.fileUpload.color.stroke.default, props.$isDragging && css$1(["background-color:", ";border-color:", ";"], ({
16818
+ theme: theme2
16819
+ }) => theme2.click.fileUpload.color.background.active, ({
16820
+ theme: theme2
16821
+ }) => theme2.click.fileUpload.color.stroke.active)), (props) => props.$isError && css$1(["background-color:", ";border:none;"], ({
16822
+ theme: theme2
16823
+ }) => theme2.click.fileUpload.color.background.error));
16824
+ const FileUploadTitle = styled$1(Title$2).withConfig({
16825
+ componentId: "sc-1rzizve-1"
16826
+ })(["font:", ";color:", ";"], ({
16827
+ theme: theme2
16828
+ }) => theme2.click.fileUpload.typography.title.default, ({
16829
+ theme: theme2,
16830
+ $isNotSupported
16831
+ }) => $isNotSupported ? theme2.click.fileUpload.color.title.error : theme2.click.fileUpload.color.title.default);
16832
+ const FileUploadDescription = styled$1(Text).withConfig({
16833
+ componentId: "sc-1rzizve-2"
16834
+ })(["font:", ";color:", ";"], ({
16835
+ theme: theme2
16836
+ }) => theme2.click.fileUpload.typography.description.default, ({
16837
+ theme: theme2
16838
+ }) => theme2.click.fileUpload.color.description.default);
16839
+ const DocumentIcon = styled$1(SvgImage).withConfig({
16840
+ componentId: "sc-1rzizve-3"
16841
+ })(["svg{width:", ";height:", ";color:", ";}"], ({
16842
+ theme: theme2
16843
+ }) => theme2.click.fileUpload.sm.icon.size.width, ({
16844
+ theme: theme2
16845
+ }) => theme2.click.fileUpload.sm.icon.size.height, ({
16846
+ theme: theme2
16847
+ }) => theme2.click.fileUpload.sm.color.icon.default);
16848
+ const UploadIcon = styled$1(SvgImage).withConfig({
16849
+ componentId: "sc-1rzizve-4"
16850
+ })(["svg{width:", ";height:", ";color:", ";}"], ({
16851
+ theme: theme2
16852
+ }) => theme2.click.fileUpload.md.icon.size.width, ({
16853
+ theme: theme2
16854
+ }) => theme2.click.fileUpload.md.icon.size.height, ({
16855
+ theme: theme2
16856
+ }) => theme2.click.fileUpload.md.color.icon.default);
16857
+ const UploadText = styled$1.div.withConfig({
16858
+ componentId: "sc-1rzizve-5"
16859
+ })(["text-align:", ";", " ", ""], (props) => props.$hasFile || props.$size === "sm" ? "left" : "center", (props) => (props.$hasFile || props.$size === "sm") && css$1(["flex:1;"]), (props) => !props.$hasFile && props.$size === "md" && css$1(["display:flex;flex-direction:column;align-items:center;width:100%;"]));
16860
+ const FileInfoHeader = styled$1.div.withConfig({
16861
+ componentId: "sc-1rzizve-6"
16862
+ })(["display:flex;align-items:center;gap:", ";width:100%;"], ({
16863
+ theme: theme2
16864
+ }) => theme2.click.fileUpload.sm.space.gap);
16865
+ const FileInfo = styled$1.div.withConfig({
16866
+ componentId: "sc-1rzizve-7"
16867
+ })(["display:flex;flex-direction:column;gap:", ";flex:1;"], ({
16868
+ theme: theme2
16869
+ }) => theme2.click.fileUpload.hasFile.header.space.gap);
16870
+ const FileDetails = styled$1.div.withConfig({
16871
+ componentId: "sc-1rzizve-8"
16872
+ })(["display:flex;gap:", ";border:none;"], ({
16873
+ theme: theme2
16874
+ }) => theme2.click.fileUpload.md.space.gap);
16875
+ const FileActions = styled$1.div.withConfig({
16876
+ componentId: "sc-1rzizve-9"
16877
+ })(["display:flex;align-items:center;margin-left:auto;gap:0;"]);
16878
+ const ProgressContainer$1 = styled$1.div.withConfig({
16879
+ componentId: "sc-1rzizve-10"
16880
+ })(["display:flex;flex-direction:row;align-items:center;justify-content:space-between;width:100%;"]);
16881
+ const ProgressBarContainer = styled$1.div.withConfig({
16882
+ componentId: "sc-1rzizve-11"
16883
+ })(["width:100%;flex:1;"]);
16884
+ const ProgressPercentage = styled$1(Text).withConfig({
16885
+ componentId: "sc-1rzizve-12"
16886
+ })(["min-width:", ";text-align:right;padding-right:", ";"], ({
16887
+ theme: theme2
16888
+ }) => theme2.sizes[10], ({
16889
+ theme: theme2
16890
+ }) => theme2.click.fileUpload.md.space.gap);
16891
+ const formatFileSize = (sizeInBytes) => {
16892
+ if (sizeInBytes < 1024) {
16893
+ return `${sizeInBytes.toFixed(1)} B`;
16894
+ } else if (sizeInBytes < 1024 * 1024) {
16895
+ return `${(sizeInBytes / 1024).toFixed(1)} KB`;
16896
+ } else if (sizeInBytes < 1024 * 1024 * 1024) {
16897
+ return `${(sizeInBytes / (1024 * 1024)).toFixed(1)} MB`;
16898
+ } else {
16899
+ return `${(sizeInBytes / (1024 * 1024 * 1024)).toFixed(1)} GB`;
16900
+ }
16901
+ };
16902
+ const isFiletypeSupported = (filename, supportedTypes) => {
16903
+ if (!supportedTypes.length)
16904
+ return true;
16905
+ const extension = filename.toLowerCase().slice(filename.lastIndexOf("."));
16906
+ return supportedTypes.some((type) => type.toLowerCase() === extension.toLowerCase());
16907
+ };
16908
+ const FileUpload = ({
16909
+ title,
16910
+ supportedFileTypes = [".txt", ".sql"],
16911
+ size: size2 = "sm",
16912
+ onFileSelect,
16913
+ onRetry,
16914
+ progress = 0,
16915
+ failureMessage = "Upload failed",
16916
+ showProgress = false,
16917
+ showSuccess = false,
16918
+ onFileSelectFailure
16919
+ }) => {
16920
+ const [isDragging, setIsDragging] = useState(false);
16921
+ const [isNotSupported, setIsNotSupported] = useState(false);
16922
+ const [file, setFile] = useState(null);
16923
+ const fileInputRef = useRef(null);
16924
+ const dragCounterRef = useRef(0);
16925
+ useEffect(() => {
16926
+ let timeoutId;
16927
+ if (isNotSupported) {
16928
+ timeoutId = setTimeout(() => {
16929
+ setIsNotSupported(false);
16930
+ }, 2e3);
16931
+ }
16932
+ return () => {
16933
+ if (timeoutId) {
16934
+ clearTimeout(timeoutId);
16935
+ }
16936
+ };
16937
+ }, [isNotSupported]);
16938
+ const handleDragEnter = useCallback((e) => {
16939
+ e.preventDefault();
16940
+ e.stopPropagation();
16941
+ dragCounterRef.current += 1;
16942
+ setIsDragging(true);
16943
+ }, []);
16944
+ const handleDragLeave = useCallback((e) => {
16945
+ e.preventDefault();
16946
+ e.stopPropagation();
16947
+ dragCounterRef.current -= 1;
16948
+ if (dragCounterRef.current <= 0) {
16949
+ setIsDragging(false);
16950
+ dragCounterRef.current = 0;
16951
+ }
16952
+ }, []);
16953
+ const handleDragOver = useCallback((e) => {
16954
+ e.preventDefault();
16955
+ e.stopPropagation();
16956
+ }, []);
16957
+ useEffect(() => {
16958
+ const handleDragEnd = () => {
16959
+ setIsDragging(false);
16960
+ dragCounterRef.current = 0;
16961
+ };
16962
+ window.addEventListener("dragend", handleDragEnd);
16963
+ document.addEventListener("drop", handleDragEnd);
16964
+ document.addEventListener("mouseleave", handleDragEnd);
16965
+ return () => {
16966
+ window.removeEventListener("dragend", handleDragEnd);
16967
+ document.removeEventListener("drop", handleDragEnd);
16968
+ document.removeEventListener("mouseleave", handleDragEnd);
16969
+ };
16970
+ }, []);
16971
+ const processFile = useCallback((file2) => {
16972
+ if (!isFiletypeSupported(file2.name, supportedFileTypes)) {
16973
+ if (onFileSelectFailure) {
16974
+ onFileSelectFailure();
16975
+ console.log("File type not supported");
16976
+ setIsNotSupported(true);
16977
+ } else {
16978
+ console.warn(`File type not supported: ${file2.name}`);
16979
+ }
16980
+ return;
16981
+ }
16982
+ const newFile = {
16983
+ name: file2.name,
16984
+ size: file2.size
16985
+ };
16986
+ setFile(newFile);
16987
+ if (onFileSelect) {
16988
+ onFileSelect(file2);
16989
+ setIsNotSupported(false);
16990
+ }
16991
+ }, [onFileSelect, supportedFileTypes, onFileSelectFailure]);
16992
+ const handleDrop = useCallback((e) => {
16993
+ e.preventDefault();
16994
+ e.stopPropagation();
16995
+ setIsDragging(false);
16996
+ dragCounterRef.current = 0;
16997
+ if (e.dataTransfer.files && e.dataTransfer.files.length > 0) {
16998
+ const file2 = e.dataTransfer.files[0];
16999
+ processFile(file2);
17000
+ }
17001
+ }, [processFile]);
17002
+ const handleFileSelect = useCallback((e) => {
17003
+ if (e.target.files && e.target.files.length > 0) {
17004
+ const file2 = e.target.files[0];
17005
+ processFile(file2);
17006
+ }
17007
+ }, [processFile]);
17008
+ const handleBrowseClick = useCallback(() => {
17009
+ if (fileInputRef.current) {
17010
+ fileInputRef.current.click();
17011
+ }
17012
+ }, []);
17013
+ const handleRemoveFile = useCallback(() => {
17014
+ setFile(null);
17015
+ if (fileInputRef.current) {
17016
+ fileInputRef.current.value = "";
17017
+ }
17018
+ }, []);
17019
+ const handleRetryUpload = useCallback(() => {
17020
+ if (onRetry) {
17021
+ onRetry();
17022
+ }
17023
+ }, [onRetry]);
17024
+ const acceptedFileTypes = supportedFileTypes.join(",");
17025
+ return /* @__PURE__ */ jsxs(Fragment$1, { children: [
17026
+ /* @__PURE__ */ jsx(UploadArea, { $isDragging: isDragging, $size: size2, $hasFile: !!file, $isError: !!file && !showSuccess && !showProgress, onDragEnter: handleDragEnter, onDragLeave: handleDragLeave, onDragOver: handleDragOver, onDrop: handleDrop, onClick: !file ? handleBrowseClick : void 0, children: !file ? /* @__PURE__ */ jsxs(Fragment$1, { children: [
17027
+ /* @__PURE__ */ jsx(UploadIcon, { name: "upload" }),
17028
+ /* @__PURE__ */ jsxs(UploadText, { $size: size2, $hasFile: false, children: [
17029
+ isNotSupported ? /* @__PURE__ */ jsx(FileUploadTitle, { $isNotSupported: true, type: "h1", children: "Unsupported file type" }) : /* @__PURE__ */ jsx(FileUploadTitle, { $isNotSupported: isNotSupported, type: "h1", children: title }),
17030
+ /* @__PURE__ */ jsxs(FileUploadDescription, { children: [
17031
+ "Files supported: ",
17032
+ supportedFileTypes.join(", ")
17033
+ ] })
17034
+ ] }),
17035
+ /* @__PURE__ */ jsx(Button, { type: "secondary", onClick: (e) => {
17036
+ e.stopPropagation();
17037
+ handleBrowseClick();
17038
+ }, children: "Browse file" })
17039
+ ] }) : /* @__PURE__ */ jsxs(FileInfo, { children: [
17040
+ /* @__PURE__ */ jsxs(FileInfoHeader, { children: [
17041
+ /* @__PURE__ */ jsx(DocumentIcon, { name: "document" }),
17042
+ /* @__PURE__ */ jsxs(FileDetails, { children: [
17043
+ /* @__PURE__ */ jsx(Text, { size: "md", children: truncateFilename(file.name) }),
17044
+ (showSuccess || showProgress) && /* @__PURE__ */ jsx(Text, { size: "md", color: "muted", children: formatFileSize(file.size) }),
17045
+ !showProgress && !showSuccess && /* @__PURE__ */ jsx(Text, { size: "md", color: "danger", children: failureMessage }),
17046
+ showSuccess && /* @__PURE__ */ jsx(SvgImage, { size: "xs", state: "success", name: "check" })
17047
+ ] }),
17048
+ /* @__PURE__ */ jsxs(FileActions, { children: [
17049
+ !showProgress && !showSuccess && /* @__PURE__ */ jsx(IconButton$1, { size: "sm", icon: "refresh", type: "ghost", onClick: handleRetryUpload }),
17050
+ /* @__PURE__ */ jsx(IconButton$1, { size: "sm", icon: "cross", type: "ghost", onClick: handleRemoveFile })
17051
+ ] })
17052
+ ] }),
17053
+ showProgress && /* @__PURE__ */ jsxs(ProgressContainer$1, { children: [
17054
+ /* @__PURE__ */ jsx(ProgressBarContainer, { children: /* @__PURE__ */ jsx(ProgressBar, { progress, type: "small" }) }),
17055
+ /* @__PURE__ */ jsxs(ProgressPercentage, { size: "sm", color: "muted", children: [
17056
+ progress,
17057
+ "%"
17058
+ ] })
17059
+ ] })
17060
+ ] }) }),
17061
+ /* @__PURE__ */ jsx("input", { type: "file", ref: fileInputRef, accept: acceptedFileTypes, onChange: handleFileSelect, style: {
17062
+ display: "none"
17063
+ } })
17064
+ ] });
17065
+ };
16785
17066
  const Flyout = ({
16786
17067
  modal = false,
16787
17068
  ...props
@@ -42938,6 +43219,126 @@ const click$3 = {
42938
43219
  }
42939
43220
  }
42940
43221
  },
43222
+ datePicker: {
43223
+ dateOption: {
43224
+ color: {
43225
+ label: {
43226
+ "default": "#161517",
43227
+ hover: "#161517",
43228
+ active: "#ffffff",
43229
+ disabled: "#a0a0a0",
43230
+ range: "#161517"
43231
+ },
43232
+ background: {
43233
+ "default": "#ffffff",
43234
+ hover: "#ffffff",
43235
+ active: "#151515",
43236
+ disabled: "#ffffff",
43237
+ range: "#e6e7e9"
43238
+ },
43239
+ stroke: {
43240
+ "default": "#ffffff",
43241
+ hover: "#151515",
43242
+ active: "#151515",
43243
+ disabled: "#ffffff",
43244
+ range: "#e6e7e9"
43245
+ }
43246
+ }
43247
+ },
43248
+ color: {
43249
+ title: {
43250
+ "default": "lch(10.2 1.39 305)"
43251
+ },
43252
+ daytitle: {
43253
+ "default": "#696e79"
43254
+ }
43255
+ }
43256
+ },
43257
+ dialog: {
43258
+ typography: {
43259
+ title: {
43260
+ "default": `600 1rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
43261
+ }
43262
+ }
43263
+ },
43264
+ flyout: {
43265
+ typography: {
43266
+ title: {
43267
+ "default": `600 1rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
43268
+ }
43269
+ },
43270
+ color: {
43271
+ background: {
43272
+ "default": "#ffffff"
43273
+ },
43274
+ title: {
43275
+ "default": "lch(10.2 1.39 305)"
43276
+ },
43277
+ description: {
43278
+ "default": "#696e79"
43279
+ },
43280
+ opaqueBackground: {
43281
+ "default": "lch(6.77 0 0 / 0.45)"
43282
+ },
43283
+ stroke: {
43284
+ "default": "#e6e7e9"
43285
+ }
43286
+ }
43287
+ },
43288
+ grid: {
43289
+ header: {
43290
+ cell: {
43291
+ color: {
43292
+ background: {
43293
+ "default": "#f6f7fa",
43294
+ selectIndirect: "lch(99.6 3.76 101)",
43295
+ selectDirect: "lch(97.5 12 97.4)"
43296
+ },
43297
+ title: {
43298
+ "default": "#696e79",
43299
+ selectIndirect: "#161517",
43300
+ selectDirect: "#161517"
43301
+ },
43302
+ stroke: {
43303
+ "default": "lch(89.3 1.07 266)",
43304
+ selectIndirect: "lch(92.8 31.1 85.9)",
43305
+ selectDirect: "lch(90.9 28.1 85.9)"
43306
+ }
43307
+ }
43308
+ }
43309
+ },
43310
+ body: {
43311
+ cell: {
43312
+ color: {
43313
+ background: {
43314
+ "default": "#ffffff",
43315
+ selectIndirect: "lch(99.4 8.48 102 / 0.2)",
43316
+ selectDirect: "lch(99.4 8.48 102 / 0.2)"
43317
+ },
43318
+ stroke: {
43319
+ "default": "#e6e7e9",
43320
+ selectIndirect: "lch(74.1 25.6 85.9)",
43321
+ selectDirect: "#FFC029"
43322
+ },
43323
+ text: {
43324
+ "default": "lch(7.17 1.44 305)",
43325
+ selectIndirect: "#161517",
43326
+ selectDirect: "#161517"
43327
+ }
43328
+ }
43329
+ }
43330
+ },
43331
+ global: {
43332
+ color: {
43333
+ stroke: {
43334
+ "default": "#e6e7e9"
43335
+ },
43336
+ background: {
43337
+ "default": "#ffffff"
43338
+ }
43339
+ }
43340
+ }
43341
+ },
42941
43342
  sidebar: {
42942
43343
  main: {
42943
43344
  color: {
@@ -43192,126 +43593,6 @@ const click$3 = {
43192
43593
  }
43193
43594
  }
43194
43595
  },
43195
- dialog: {
43196
- typography: {
43197
- title: {
43198
- "default": `600 1rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
43199
- }
43200
- }
43201
- },
43202
- flyout: {
43203
- typography: {
43204
- title: {
43205
- "default": `600 1rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
43206
- }
43207
- },
43208
- color: {
43209
- background: {
43210
- "default": "#ffffff"
43211
- },
43212
- title: {
43213
- "default": "lch(10.2 1.39 305)"
43214
- },
43215
- description: {
43216
- "default": "#696e79"
43217
- },
43218
- opaqueBackground: {
43219
- "default": "lch(6.77 0 0 / 0.45)"
43220
- },
43221
- stroke: {
43222
- "default": "#e6e7e9"
43223
- }
43224
- }
43225
- },
43226
- grid: {
43227
- header: {
43228
- cell: {
43229
- color: {
43230
- background: {
43231
- "default": "#f6f7fa",
43232
- selectIndirect: "lch(99.6 3.76 101)",
43233
- selectDirect: "lch(97.5 12 97.4)"
43234
- },
43235
- title: {
43236
- "default": "#696e79",
43237
- selectIndirect: "#161517",
43238
- selectDirect: "#161517"
43239
- },
43240
- stroke: {
43241
- "default": "lch(89.3 1.07 266)",
43242
- selectIndirect: "lch(92.8 31.1 85.9)",
43243
- selectDirect: "lch(90.9 28.1 85.9)"
43244
- }
43245
- }
43246
- }
43247
- },
43248
- body: {
43249
- cell: {
43250
- color: {
43251
- background: {
43252
- "default": "#ffffff",
43253
- selectIndirect: "lch(99.4 8.48 102 / 0.2)",
43254
- selectDirect: "lch(99.4 8.48 102 / 0.2)"
43255
- },
43256
- stroke: {
43257
- "default": "#e6e7e9",
43258
- selectIndirect: "lch(74.1 25.6 85.9)",
43259
- selectDirect: "#FFC029"
43260
- },
43261
- text: {
43262
- "default": "lch(7.17 1.44 305)",
43263
- selectIndirect: "#161517",
43264
- selectDirect: "#161517"
43265
- }
43266
- }
43267
- }
43268
- },
43269
- global: {
43270
- color: {
43271
- stroke: {
43272
- "default": "#e6e7e9"
43273
- },
43274
- background: {
43275
- "default": "#ffffff"
43276
- }
43277
- }
43278
- }
43279
- },
43280
- datePicker: {
43281
- dateOption: {
43282
- color: {
43283
- label: {
43284
- "default": "#161517",
43285
- hover: "#161517",
43286
- active: "#ffffff",
43287
- disabled: "#a0a0a0",
43288
- range: "#161517"
43289
- },
43290
- background: {
43291
- "default": "#ffffff",
43292
- hover: "#ffffff",
43293
- active: "#151515",
43294
- disabled: "#ffffff",
43295
- range: "#e6e7e9"
43296
- },
43297
- stroke: {
43298
- "default": "#ffffff",
43299
- hover: "#151515",
43300
- active: "#151515",
43301
- disabled: "#ffffff",
43302
- range: "#e6e7e9"
43303
- }
43304
- }
43305
- },
43306
- color: {
43307
- title: {
43308
- "default": "lch(10.2 1.39 305)"
43309
- },
43310
- daytitle: {
43311
- "default": "#696e79"
43312
- }
43313
- }
43314
- },
43315
43596
  global: {
43316
43597
  color: {
43317
43598
  text: {
@@ -44353,6 +44634,57 @@ const click$2 = {
44353
44634
  }
44354
44635
  }
44355
44636
  },
44637
+ datePicker: {
44638
+ dateOption: {
44639
+ color: {
44640
+ label: {
44641
+ "default": "#ffffff",
44642
+ hover: "#ffffff",
44643
+ active: "#1F1F1C",
44644
+ disabled: "#a0a0a0",
44645
+ range: "#ffffff"
44646
+ },
44647
+ background: {
44648
+ "default": "#1F1F1C",
44649
+ hover: "#1F1F1C",
44650
+ active: "#FAFF69",
44651
+ disabled: "#1F1F1C",
44652
+ range: "#323232"
44653
+ },
44654
+ stroke: {
44655
+ "default": "#1F1F1C",
44656
+ hover: "#FAFF69",
44657
+ active: "#FAFF69",
44658
+ disabled: "#1F1F1C",
44659
+ range: "#323232"
44660
+ }
44661
+ }
44662
+ },
44663
+ color: {
44664
+ title: {
44665
+ "default": "rgb(97.5% 97.5% 97.5%)"
44666
+ },
44667
+ daytitle: {
44668
+ "default": "#b3b6bd"
44669
+ }
44670
+ }
44671
+ },
44672
+ dialog: {
44673
+ color: {
44674
+ background: {
44675
+ "default": "#1F1F1C"
44676
+ },
44677
+ title: {
44678
+ "default": "rgb(97.5% 97.5% 97.5%)"
44679
+ },
44680
+ description: {
44681
+ "default": "#b3b6bd"
44682
+ },
44683
+ opaqueBackground: {
44684
+ "default": "lch(40.7 0 0 / 0.75)"
44685
+ }
44686
+ }
44687
+ },
44356
44688
  field: {
44357
44689
  color: {
44358
44690
  background: {
@@ -44402,6 +44734,67 @@ const click$2 = {
44402
44734
  }
44403
44735
  }
44404
44736
  },
44737
+ fileUpload: {
44738
+ sm: {
44739
+ color: {
44740
+ icon: {
44741
+ "default": "#b3b6bd"
44742
+ }
44743
+ }
44744
+ },
44745
+ md: {
44746
+ color: {
44747
+ icon: {
44748
+ "default": "#ffffff"
44749
+ }
44750
+ }
44751
+ },
44752
+ color: {
44753
+ background: {
44754
+ "default": "#1F1F1C",
44755
+ hover: "#1F1F1C",
44756
+ active: "rgb(19.9% 19.9% 19.9%)",
44757
+ error: "rgb(100% 13.7% 13.7% / 0.2)"
44758
+ },
44759
+ stroke: {
44760
+ "default": "rgb(23.6% 23.6% 23.6%)",
44761
+ hover: "rgb(23.6% 23.6% 23.6%)",
44762
+ active: "#414141",
44763
+ error: "rgba(0,0,0,0)"
44764
+ },
44765
+ title: {
44766
+ "default": "#ffffff",
44767
+ hover: "#ffffff",
44768
+ active: "#ffffff",
44769
+ error: "#ffbaba"
44770
+ },
44771
+ description: {
44772
+ "default": "#b3b6bd",
44773
+ hover: "#b3b6bd",
44774
+ active: "#b3b6bd",
44775
+ error: "#ffbaba"
44776
+ }
44777
+ }
44778
+ },
44779
+ flyout: {
44780
+ color: {
44781
+ background: {
44782
+ "default": "#282828"
44783
+ },
44784
+ title: {
44785
+ "default": "rgb(97.5% 97.5% 97.5%)"
44786
+ },
44787
+ description: {
44788
+ "default": "#b3b6bd"
44789
+ },
44790
+ opaqueBackground: {
44791
+ "default": "lch(6.77 0 0 / 0.45)"
44792
+ },
44793
+ stroke: {
44794
+ "default": "#323232"
44795
+ }
44796
+ }
44797
+ },
44405
44798
  genericMenu: {
44406
44799
  item: {
44407
44800
  color: {
@@ -44476,6 +44869,88 @@ const click$2 = {
44476
44869
  }
44477
44870
  }
44478
44871
  },
44872
+ grid: {
44873
+ header: {
44874
+ cell: {
44875
+ color: {
44876
+ background: {
44877
+ "default": "#282828",
44878
+ selectIndirect: "lch(19.5 0 0)",
44879
+ selectDirect: "lch(27.3 0 0)"
44880
+ },
44881
+ title: {
44882
+ "default": "#b3b6bd",
44883
+ selectIndirect: "#ffffff",
44884
+ selectDirect: "#ffffff"
44885
+ },
44886
+ stroke: {
44887
+ "default": "lch(20.3 0 0)",
44888
+ selectIndirect: "lch(26.8 0 0)",
44889
+ selectDirect: "lch(29.4 0 0)"
44890
+ }
44891
+ }
44892
+ }
44893
+ },
44894
+ body: {
44895
+ cell: {
44896
+ color: {
44897
+ background: {
44898
+ "default": "#1F1F1C",
44899
+ selectIndirect: "lch(15.8 0 0)",
44900
+ selectDirect: "lch(15.8 0 0)"
44901
+ },
44902
+ stroke: {
44903
+ "default": "#323232",
44904
+ selectIndirect: "lch(22 0 0)",
44905
+ selectDirect: "#FAFF69"
44906
+ },
44907
+ text: {
44908
+ "default": "lch(100 0 0)",
44909
+ selectIndirect: "#ffffff",
44910
+ selectDirect: "#ffffff"
44911
+ }
44912
+ }
44913
+ }
44914
+ },
44915
+ global: {
44916
+ color: {
44917
+ stroke: {
44918
+ "default": "#323232"
44919
+ },
44920
+ background: {
44921
+ "default": "#1F1F1C"
44922
+ }
44923
+ }
44924
+ }
44925
+ },
44926
+ icon: {
44927
+ color: {
44928
+ background: {
44929
+ "default": "rgba(0,0,0,0)",
44930
+ success: "rgb(20% 100% 26.7% / 0.2)",
44931
+ neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
44932
+ danger: "rgb(100% 13.7% 13.7% / 0.2)",
44933
+ info: "rgb(26.3% 49.4% 93.7% / 0.2)",
44934
+ warning: "rgb(100% 46.7% 16.1% / 0.2)"
44935
+ },
44936
+ text: {
44937
+ "default": "rgba(0,0,0,0)",
44938
+ success: "#CCFFD0",
44939
+ neutral: "#c0c0c0",
44940
+ danger: "#ffbaba",
44941
+ info: "#D0DFFB",
44942
+ warning: "#FFB88F"
44943
+ },
44944
+ stroke: {
44945
+ "default": "rgba(0,0,0,0)",
44946
+ success: "rgb(20% 100% 26.7% / 0.05)",
44947
+ neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
44948
+ danger: "rgb(100% 13.7% 13.7% / 0.05)",
44949
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
44950
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
44951
+ }
44952
+ }
44953
+ },
44479
44954
  image: {
44480
44955
  color: {
44481
44956
  stroke: "#ffffff"
@@ -44895,158 +45370,6 @@ const click$2 = {
44895
45370
  }
44896
45371
  }
44897
45372
  },
44898
- dialog: {
44899
- color: {
44900
- background: {
44901
- "default": "#1F1F1C"
44902
- },
44903
- title: {
44904
- "default": "rgb(97.5% 97.5% 97.5%)"
44905
- },
44906
- description: {
44907
- "default": "#b3b6bd"
44908
- },
44909
- opaqueBackground: {
44910
- "default": "lch(40.7 0 0 / 0.75)"
44911
- }
44912
- }
44913
- },
44914
- flyout: {
44915
- color: {
44916
- background: {
44917
- "default": "#282828"
44918
- },
44919
- title: {
44920
- "default": "rgb(97.5% 97.5% 97.5%)"
44921
- },
44922
- description: {
44923
- "default": "#b3b6bd"
44924
- },
44925
- opaqueBackground: {
44926
- "default": "lch(6.77 0 0 / 0.45)"
44927
- },
44928
- stroke: {
44929
- "default": "#323232"
44930
- }
44931
- }
44932
- },
44933
- grid: {
44934
- header: {
44935
- cell: {
44936
- color: {
44937
- background: {
44938
- "default": "#282828",
44939
- selectIndirect: "lch(19.5 0 0)",
44940
- selectDirect: "lch(27.3 0 0)"
44941
- },
44942
- title: {
44943
- "default": "#b3b6bd",
44944
- selectIndirect: "#ffffff",
44945
- selectDirect: "#ffffff"
44946
- },
44947
- stroke: {
44948
- "default": "lch(20.3 0 0)",
44949
- selectIndirect: "lch(26.8 0 0)",
44950
- selectDirect: "lch(29.4 0 0)"
44951
- }
44952
- }
44953
- }
44954
- },
44955
- body: {
44956
- cell: {
44957
- color: {
44958
- background: {
44959
- "default": "#1F1F1C",
44960
- selectIndirect: "lch(15.8 0 0)",
44961
- selectDirect: "lch(15.8 0 0)"
44962
- },
44963
- stroke: {
44964
- "default": "#323232",
44965
- selectIndirect: "lch(22 0 0)",
44966
- selectDirect: "#FAFF69"
44967
- },
44968
- text: {
44969
- "default": "lch(100 0 0)",
44970
- selectIndirect: "#ffffff",
44971
- selectDirect: "#ffffff"
44972
- }
44973
- }
44974
- }
44975
- },
44976
- global: {
44977
- color: {
44978
- stroke: {
44979
- "default": "#323232"
44980
- },
44981
- background: {
44982
- "default": "#1F1F1C"
44983
- }
44984
- }
44985
- }
44986
- },
44987
- icon: {
44988
- color: {
44989
- background: {
44990
- "default": "rgba(0,0,0,0)",
44991
- success: "rgb(20% 100% 26.7% / 0.2)",
44992
- neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
44993
- danger: "rgb(100% 13.7% 13.7% / 0.2)",
44994
- info: "rgb(26.3% 49.4% 93.7% / 0.2)",
44995
- warning: "rgb(100% 46.7% 16.1% / 0.2)"
44996
- },
44997
- text: {
44998
- "default": "rgba(0,0,0,0)",
44999
- success: "#CCFFD0",
45000
- neutral: "#c0c0c0",
45001
- danger: "#ffbaba",
45002
- info: "#D0DFFB",
45003
- warning: "#FFB88F"
45004
- },
45005
- stroke: {
45006
- "default": "rgba(0,0,0,0)",
45007
- success: "rgb(20% 100% 26.7% / 0.05)",
45008
- neutral: "rgb(62.7% 62.7% 62.7% / 0.2)",
45009
- danger: "rgb(100% 13.7% 13.7% / 0.05)",
45010
- info: "rgb(26.3% 49.4% 93.7% / 0.05)",
45011
- warning: "rgb(100% 46.7% 16.1% / 0.05)"
45012
- }
45013
- }
45014
- },
45015
- datePicker: {
45016
- dateOption: {
45017
- color: {
45018
- label: {
45019
- "default": "#ffffff",
45020
- hover: "#ffffff",
45021
- active: "#1F1F1C",
45022
- disabled: "#a0a0a0",
45023
- range: "#ffffff"
45024
- },
45025
- background: {
45026
- "default": "#1F1F1C",
45027
- hover: "#1F1F1C",
45028
- active: "#FAFF69",
45029
- disabled: "#1F1F1C",
45030
- range: "#323232"
45031
- },
45032
- stroke: {
45033
- "default": "#1F1F1C",
45034
- hover: "#FAFF69",
45035
- active: "#FAFF69",
45036
- disabled: "#1F1F1C",
45037
- range: "#323232"
45038
- }
45039
- }
45040
- },
45041
- color: {
45042
- title: {
45043
- "default": "rgb(97.5% 97.5% 97.5%)"
45044
- },
45045
- daytitle: {
45046
- "default": "#b3b6bd"
45047
- }
45048
- }
45049
- },
45050
45373
  global: {
45051
45374
  color: {
45052
45375
  background: {
@@ -46123,6 +46446,57 @@ const click$1 = {
46123
46446
  }
46124
46447
  }
46125
46448
  },
46449
+ datePicker: {
46450
+ dateOption: {
46451
+ color: {
46452
+ label: {
46453
+ "default": "#161517",
46454
+ hover: "#161517",
46455
+ active: "#ffffff",
46456
+ disabled: "#a0a0a0",
46457
+ range: "#161517"
46458
+ },
46459
+ background: {
46460
+ "default": "#ffffff",
46461
+ hover: "#ffffff",
46462
+ active: "#151515",
46463
+ disabled: "#ffffff",
46464
+ range: "#e6e7e9"
46465
+ },
46466
+ stroke: {
46467
+ "default": "#ffffff",
46468
+ hover: "#151515",
46469
+ active: "#151515",
46470
+ disabled: "#ffffff",
46471
+ range: "#e6e7e9"
46472
+ }
46473
+ }
46474
+ },
46475
+ color: {
46476
+ title: {
46477
+ "default": "lch(11.1 1.37 305)"
46478
+ },
46479
+ daytitle: {
46480
+ "default": "#696e79"
46481
+ }
46482
+ }
46483
+ },
46484
+ dialog: {
46485
+ color: {
46486
+ background: {
46487
+ "default": "#ffffff"
46488
+ },
46489
+ title: {
46490
+ "default": "lch(11.1 1.37 305)"
46491
+ },
46492
+ description: {
46493
+ "default": "#696e79"
46494
+ },
46495
+ opaqueBackground: {
46496
+ "default": "lch(6.77 0 0 / 0.75)"
46497
+ }
46498
+ }
46499
+ },
46126
46500
  field: {
46127
46501
  color: {
46128
46502
  background: {
@@ -46172,6 +46546,64 @@ const click$1 = {
46172
46546
  }
46173
46547
  }
46174
46548
  },
46549
+ fileUpload: {
46550
+ sm: {
46551
+ color: {
46552
+ icon: {
46553
+ "default": "#696e79"
46554
+ }
46555
+ }
46556
+ },
46557
+ md: {
46558
+ color: {
46559
+ icon: {
46560
+ "default": "#161517"
46561
+ }
46562
+ }
46563
+ },
46564
+ color: {
46565
+ background: {
46566
+ "default": "#ffffff",
46567
+ hover: "#ffffff",
46568
+ active: "rgb(96.6% 96.9% 98.1%)",
46569
+ error: "rgb(100% 13.7% 13.7% / 0.1)"
46570
+ },
46571
+ stroke: {
46572
+ "default": "rgb(90.7% 91.1% 91.8%)",
46573
+ hover: "rgb(90.7% 91.1% 91.8%)",
46574
+ active: "#b3b6bd",
46575
+ error: "rgba(0,0,0,0)"
46576
+ },
46577
+ title: {
46578
+ "default": "#161517",
46579
+ hover: "#161517",
46580
+ active: "#161517",
46581
+ error: "#c10000"
46582
+ },
46583
+ description: {
46584
+ "default": "#696e79",
46585
+ hover: "#696e79",
46586
+ active: "#696e79",
46587
+ error: "#c10000"
46588
+ }
46589
+ }
46590
+ },
46591
+ flyout: {
46592
+ color: {
46593
+ background: {
46594
+ "default": "#ffffff"
46595
+ },
46596
+ title: {
46597
+ "default": "lch(11.1 1.37 305)"
46598
+ },
46599
+ description: {
46600
+ "default": "#696e79"
46601
+ },
46602
+ stroke: {
46603
+ "default": "#e6e7e9"
46604
+ }
46605
+ }
46606
+ },
46175
46607
  genericMenu: {
46176
46608
  item: {
46177
46609
  color: {
@@ -46245,6 +46677,88 @@ const click$1 = {
46245
46677
  }
46246
46678
  }
46247
46679
  },
46680
+ grid: {
46681
+ header: {
46682
+ cell: {
46683
+ color: {
46684
+ background: {
46685
+ "default": "#f6f7fa",
46686
+ selectIndirect: "lch(95.6 5.84 264)",
46687
+ selectDirect: "lch(93.2 7.7 264)"
46688
+ },
46689
+ title: {
46690
+ "default": "#696e79",
46691
+ selectIndirect: "#161517",
46692
+ selectDirect: "#161517"
46693
+ },
46694
+ stroke: {
46695
+ "default": "lch(89.3 1.07 266)",
46696
+ selectIndirect: "lch(91.8 7.59 264)",
46697
+ selectDirect: "lch(86.1 15.1 266)"
46698
+ }
46699
+ }
46700
+ }
46701
+ },
46702
+ body: {
46703
+ cell: {
46704
+ color: {
46705
+ background: {
46706
+ "default": "#ffffff",
46707
+ selectIndirect: "lch(94.1 7.78 264 / 0.2)",
46708
+ selectDirect: "lch(94.1 7.78 264 / 0.2)"
46709
+ },
46710
+ stroke: {
46711
+ "default": "#e6e7e9",
46712
+ selectIndirect: "lch(70.7 12.4 266)",
46713
+ selectDirect: "#437EEF"
46714
+ },
46715
+ text: {
46716
+ "default": "lch(7.17 1.44 305)",
46717
+ selectIndirect: "#161517",
46718
+ selectDirect: "#161517"
46719
+ }
46720
+ }
46721
+ }
46722
+ },
46723
+ global: {
46724
+ color: {
46725
+ stroke: {
46726
+ "default": "#e6e7e9"
46727
+ },
46728
+ background: {
46729
+ "default": "#ffffff"
46730
+ }
46731
+ }
46732
+ }
46733
+ },
46734
+ icon: {
46735
+ color: {
46736
+ background: {
46737
+ "default": "rgba(0,0,0,0)",
46738
+ success: "rgb(20% 100% 26.7% / 0.1)",
46739
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
46740
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
46741
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
46742
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
46743
+ },
46744
+ text: {
46745
+ "default": "rgba(0,0,0,0)",
46746
+ success: "#008A0B",
46747
+ neutral: "#53575f",
46748
+ danger: "#c10000",
46749
+ info: "#437EEF",
46750
+ warning: "#A33C00"
46751
+ },
46752
+ stroke: {
46753
+ "default": "rgba(0,0,0,0)",
46754
+ success: "rgb(20% 100% 26.7% / 0.05)",
46755
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
46756
+ danger: "rgb(100% 13.7% 13.7% / 0.05)",
46757
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
46758
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
46759
+ }
46760
+ }
46761
+ },
46248
46762
  image: {
46249
46763
  color: {
46250
46764
  stroke: "#161517"
@@ -46667,155 +47181,6 @@ const click$1 = {
46667
47181
  }
46668
47182
  }
46669
47183
  },
46670
- dialog: {
46671
- color: {
46672
- background: {
46673
- "default": "#ffffff"
46674
- },
46675
- title: {
46676
- "default": "lch(11.1 1.37 305)"
46677
- },
46678
- description: {
46679
- "default": "#696e79"
46680
- },
46681
- opaqueBackground: {
46682
- "default": "lch(6.77 0 0 / 0.75)"
46683
- }
46684
- }
46685
- },
46686
- flyout: {
46687
- color: {
46688
- background: {
46689
- "default": "#ffffff"
46690
- },
46691
- title: {
46692
- "default": "lch(11.1 1.37 305)"
46693
- },
46694
- description: {
46695
- "default": "#696e79"
46696
- },
46697
- stroke: {
46698
- "default": "#e6e7e9"
46699
- }
46700
- }
46701
- },
46702
- grid: {
46703
- header: {
46704
- cell: {
46705
- color: {
46706
- background: {
46707
- "default": "#f6f7fa",
46708
- selectIndirect: "lch(95.6 5.84 264)",
46709
- selectDirect: "lch(93.2 7.7 264)"
46710
- },
46711
- title: {
46712
- "default": "#696e79",
46713
- selectIndirect: "#161517",
46714
- selectDirect: "#161517"
46715
- },
46716
- stroke: {
46717
- "default": "lch(89.3 1.07 266)",
46718
- selectIndirect: "lch(91.8 7.59 264)",
46719
- selectDirect: "lch(86.1 15.1 266)"
46720
- }
46721
- }
46722
- }
46723
- },
46724
- body: {
46725
- cell: {
46726
- color: {
46727
- background: {
46728
- "default": "#ffffff",
46729
- selectIndirect: "lch(94.1 7.78 264 / 0.2)",
46730
- selectDirect: "lch(94.1 7.78 264 / 0.2)"
46731
- },
46732
- stroke: {
46733
- "default": "#e6e7e9",
46734
- selectIndirect: "lch(70.7 12.4 266)",
46735
- selectDirect: "#437EEF"
46736
- },
46737
- text: {
46738
- "default": "lch(7.17 1.44 305)",
46739
- selectIndirect: "#161517",
46740
- selectDirect: "#161517"
46741
- }
46742
- }
46743
- }
46744
- },
46745
- global: {
46746
- color: {
46747
- stroke: {
46748
- "default": "#e6e7e9"
46749
- },
46750
- background: {
46751
- "default": "#ffffff"
46752
- }
46753
- }
46754
- }
46755
- },
46756
- icon: {
46757
- color: {
46758
- background: {
46759
- "default": "rgba(0,0,0,0)",
46760
- success: "rgb(20% 100% 26.7% / 0.1)",
46761
- neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
46762
- danger: "rgb(100% 13.7% 13.7% / 0.1)",
46763
- info: "rgb(26.3% 49.4% 93.7% / 0.1)",
46764
- warning: "rgb(100% 46.7% 16.1% / 0.1)"
46765
- },
46766
- text: {
46767
- "default": "rgba(0,0,0,0)",
46768
- success: "#008A0B",
46769
- neutral: "#53575f",
46770
- danger: "#c10000",
46771
- info: "#437EEF",
46772
- warning: "#A33C00"
46773
- },
46774
- stroke: {
46775
- "default": "rgba(0,0,0,0)",
46776
- success: "rgb(20% 100% 26.7% / 0.05)",
46777
- neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
46778
- danger: "rgb(100% 13.7% 13.7% / 0.05)",
46779
- info: "rgb(26.3% 49.4% 93.7% / 0.05)",
46780
- warning: "rgb(100% 46.7% 16.1% / 0.05)"
46781
- }
46782
- }
46783
- },
46784
- datePicker: {
46785
- dateOption: {
46786
- color: {
46787
- label: {
46788
- "default": "#161517",
46789
- hover: "#161517",
46790
- active: "#ffffff",
46791
- disabled: "#a0a0a0",
46792
- range: "#161517"
46793
- },
46794
- background: {
46795
- "default": "#ffffff",
46796
- hover: "#ffffff",
46797
- active: "#151515",
46798
- disabled: "#ffffff",
46799
- range: "#e6e7e9"
46800
- },
46801
- stroke: {
46802
- "default": "#ffffff",
46803
- hover: "#151515",
46804
- active: "#151515",
46805
- disabled: "#ffffff",
46806
- range: "#e6e7e9"
46807
- }
46808
- }
46809
- },
46810
- color: {
46811
- title: {
46812
- "default": "lch(11.1 1.37 305)"
46813
- },
46814
- daytitle: {
46815
- "default": "#696e79"
46816
- }
46817
- }
46818
- },
46819
47184
  global: {
46820
47185
  color: {
46821
47186
  background: {
@@ -48409,6 +48774,138 @@ const click = {
48409
48774
  }
48410
48775
  }
48411
48776
  },
48777
+ container: {
48778
+ space: {
48779
+ none: "0",
48780
+ xxs: "0.25rem",
48781
+ xs: "0.5rem",
48782
+ sm: "0.75rem",
48783
+ md: "1rem",
48784
+ lg: "1.5rem",
48785
+ xl: "2rem",
48786
+ xxl: "4rem"
48787
+ },
48788
+ gap: {
48789
+ none: "0",
48790
+ xxs: "0.25rem",
48791
+ xs: "0.5rem",
48792
+ sm: "0.75rem",
48793
+ md: "1rem",
48794
+ lg: "1.5rem",
48795
+ xl: "2rem",
48796
+ xxl: "4rem"
48797
+ }
48798
+ },
48799
+ datePicker: {
48800
+ dateOption: {
48801
+ space: {
48802
+ gap: "2px"
48803
+ },
48804
+ radii: {
48805
+ "default": "0.25rem",
48806
+ range: "0"
48807
+ },
48808
+ stroke: "1px",
48809
+ size: {
48810
+ height: "2rem",
48811
+ width: "2rem"
48812
+ },
48813
+ typography: {
48814
+ label: {
48815
+ "default": `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`,
48816
+ hover: `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`,
48817
+ active: `600 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`,
48818
+ disabled: `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`,
48819
+ range: `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
48820
+ }
48821
+ },
48822
+ color: {
48823
+ label: {
48824
+ "default": "#161517",
48825
+ hover: "#161517",
48826
+ active: "#ffffff",
48827
+ disabled: "#a0a0a0",
48828
+ range: "#161517"
48829
+ },
48830
+ background: {
48831
+ "default": "#ffffff",
48832
+ hover: "#ffffff",
48833
+ active: "#151515",
48834
+ disabled: "#ffffff",
48835
+ range: "#e6e7e9"
48836
+ },
48837
+ stroke: {
48838
+ "default": "#ffffff",
48839
+ hover: "#151515",
48840
+ active: "#151515",
48841
+ disabled: "#ffffff",
48842
+ range: "#e6e7e9"
48843
+ }
48844
+ }
48845
+ },
48846
+ space: {
48847
+ gap: "0.25rem"
48848
+ },
48849
+ typography: {
48850
+ daytitle: {
48851
+ "default": `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
48852
+ },
48853
+ title: {
48854
+ "default": `600 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
48855
+ }
48856
+ },
48857
+ color: {
48858
+ title: {
48859
+ "default": "lch(11.1 1.37 305)"
48860
+ },
48861
+ daytitle: {
48862
+ "default": "#696e79"
48863
+ }
48864
+ }
48865
+ },
48866
+ dialog: {
48867
+ space: {
48868
+ y: "1.5rem",
48869
+ x: "2rem",
48870
+ gap: "1rem"
48871
+ },
48872
+ title: {
48873
+ space: {
48874
+ gap: "0.25rem"
48875
+ }
48876
+ },
48877
+ radii: {
48878
+ all: "0.5rem"
48879
+ },
48880
+ shadow: {
48881
+ "default": "0 4px 6px -1px lch(6.77 0 0 / 0.15), 0 2px 4px -1px lch(6.77 0 0 / 0.15)"
48882
+ },
48883
+ stroke: {
48884
+ "default": "1px solid #e6e7e9"
48885
+ },
48886
+ typography: {
48887
+ title: {
48888
+ "default": `700 1.25rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
48889
+ },
48890
+ description: {
48891
+ "default": `400 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
48892
+ }
48893
+ },
48894
+ color: {
48895
+ background: {
48896
+ "default": "#ffffff"
48897
+ },
48898
+ title: {
48899
+ "default": "lch(11.1 1.37 305)"
48900
+ },
48901
+ description: {
48902
+ "default": "#696e79"
48903
+ },
48904
+ opaqueBackground: {
48905
+ "default": "lch(6.77 0 0 / 0.75)"
48906
+ }
48907
+ }
48908
+ },
48412
48909
  docs: {
48413
48910
  typography: {
48414
48911
  titles: {
@@ -48541,6 +49038,182 @@ const click = {
48541
49038
  }
48542
49039
  }
48543
49040
  },
49041
+ fileUpload: {
49042
+ sm: {
49043
+ icon: {
49044
+ size: {
49045
+ height: "1.5rem",
49046
+ width: "1.5rem"
49047
+ }
49048
+ },
49049
+ space: {
49050
+ gap: "0.75rem",
49051
+ x: "1rem",
49052
+ y: "0.5rem"
49053
+ },
49054
+ radii: {
49055
+ all: "0.25rem"
49056
+ },
49057
+ color: {
49058
+ icon: {
49059
+ "default": "#696e79"
49060
+ }
49061
+ }
49062
+ },
49063
+ md: {
49064
+ icon: {
49065
+ size: {
49066
+ height: "2rem",
49067
+ width: "2rem"
49068
+ }
49069
+ },
49070
+ space: {
49071
+ gap: "0.5rem",
49072
+ x: "1rem",
49073
+ y: "0.75rem"
49074
+ },
49075
+ radii: {
49076
+ all: "0.5rem"
49077
+ },
49078
+ color: {
49079
+ icon: {
49080
+ "default": "#161517"
49081
+ }
49082
+ }
49083
+ },
49084
+ typography: {
49085
+ title: {
49086
+ "default": `500 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49087
+ },
49088
+ description: {
49089
+ "default": `400 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49090
+ }
49091
+ },
49092
+ hasFile: {
49093
+ space: {
49094
+ gap: "0.75rem"
49095
+ },
49096
+ header: {
49097
+ space: {
49098
+ gap: "0.5rem"
49099
+ }
49100
+ }
49101
+ },
49102
+ transitions: {
49103
+ all: "all 100ms ease-in 0ms"
49104
+ },
49105
+ color: {
49106
+ background: {
49107
+ "default": "#ffffff",
49108
+ hover: "#ffffff",
49109
+ active: "rgb(96.6% 96.9% 98.1%)",
49110
+ error: "rgb(100% 13.7% 13.7% / 0.1)"
49111
+ },
49112
+ stroke: {
49113
+ "default": "rgb(90.7% 91.1% 91.8%)",
49114
+ hover: "rgb(90.7% 91.1% 91.8%)",
49115
+ active: "#b3b6bd",
49116
+ error: "rgba(0,0,0,0)"
49117
+ },
49118
+ title: {
49119
+ "default": "#161517",
49120
+ hover: "#161517",
49121
+ active: "#161517",
49122
+ error: "#c10000"
49123
+ },
49124
+ description: {
49125
+ "default": "#696e79",
49126
+ hover: "#696e79",
49127
+ active: "#696e79",
49128
+ error: "#c10000"
49129
+ }
49130
+ }
49131
+ },
49132
+ flyout: {
49133
+ space: {
49134
+ "default": {
49135
+ x: "0",
49136
+ y: "1.5rem",
49137
+ gap: "1rem",
49138
+ top: "0",
49139
+ content: {
49140
+ x: "1.5rem",
49141
+ y: "1.5rem",
49142
+ "row-gap": "0.25rem",
49143
+ "column-gap": "1rem"
49144
+ }
49145
+ },
49146
+ inline: {
49147
+ x: "0",
49148
+ y: "0.75rem",
49149
+ gap: "0.75rem",
49150
+ top: "3.5rem",
49151
+ content: {
49152
+ x: "0.75rem",
49153
+ y: "0.75rem",
49154
+ "row-gap": "0.25rem",
49155
+ "column-gap": "0.75rem"
49156
+ }
49157
+ }
49158
+ },
49159
+ shadow: {
49160
+ "default": "-5px 0 20px 0 rgba(0, 0, 0, 0.08), -6px 0 10px 0 rgba(0, 0, 0, 0.08)",
49161
+ reverse: "5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08)"
49162
+ },
49163
+ size: {
49164
+ "default": {
49165
+ width: "27.5rem",
49166
+ height: "100%"
49167
+ },
49168
+ wide: {
49169
+ width: "37.5rem",
49170
+ height: "100vh"
49171
+ },
49172
+ narrow: {
49173
+ width: "21rem",
49174
+ height: "100%"
49175
+ },
49176
+ widest: {
49177
+ width: "55rem",
49178
+ height: "100vh"
49179
+ }
49180
+ },
49181
+ typography: {
49182
+ "default": {
49183
+ description: {
49184
+ "default": `400 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49185
+ },
49186
+ title: {
49187
+ "default": `700 1.25rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49188
+ }
49189
+ },
49190
+ inline: {
49191
+ description: {
49192
+ "default": `400 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49193
+ },
49194
+ title: {
49195
+ "default": `600 1rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49196
+ }
49197
+ }
49198
+ },
49199
+ color: {
49200
+ background: {
49201
+ "default": "#ffffff"
49202
+ },
49203
+ title: {
49204
+ "default": "lch(11.1 1.37 305)"
49205
+ },
49206
+ description: {
49207
+ "default": "#696e79"
49208
+ },
49209
+ opaqueBackground: {
49210
+ "default": "lch(6.77 0 0 / 0.45)"
49211
+ },
49212
+ stroke: {
49213
+ "default": "#e6e7e9"
49214
+ }
49215
+ }
49216
+ },
48544
49217
  genericMenu: {
48545
49218
  item: {
48546
49219
  space: {
@@ -48709,6 +49382,149 @@ const click = {
48709
49382
  }
48710
49383
  }
48711
49384
  },
49385
+ grid: {
49386
+ header: {
49387
+ cell: {
49388
+ space: {
49389
+ y: "0.438rem",
49390
+ x: "0.5rem"
49391
+ },
49392
+ size: {
49393
+ height: "2rem"
49394
+ },
49395
+ color: {
49396
+ background: {
49397
+ "default": "#f6f7fa",
49398
+ selectIndirect: "lch(95.6 5.84 264)",
49399
+ selectDirect: "lch(93.2 7.7 264)"
49400
+ },
49401
+ title: {
49402
+ "default": "#696e79",
49403
+ selectIndirect: "#161517",
49404
+ selectDirect: "#161517"
49405
+ },
49406
+ stroke: {
49407
+ "default": "lch(89.3 1.07 266)",
49408
+ selectIndirect: "lch(91.8 7.59 264)",
49409
+ selectDirect: "lch(86.1 15.1 266)"
49410
+ }
49411
+ }
49412
+ },
49413
+ title: {
49414
+ "default": `500 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49415
+ }
49416
+ },
49417
+ body: {
49418
+ cell: {
49419
+ space: {
49420
+ y: "5.5px",
49421
+ x: "0.5rem"
49422
+ },
49423
+ size: {
49424
+ height: "2rem"
49425
+ },
49426
+ color: {
49427
+ background: {
49428
+ "default": "#ffffff",
49429
+ selectIndirect: "lch(94.1 7.78 264 / 0.2)",
49430
+ selectDirect: "lch(94.1 7.78 264 / 0.2)"
49431
+ },
49432
+ stroke: {
49433
+ "default": "#e6e7e9",
49434
+ selectIndirect: "lch(70.7 12.4 266)",
49435
+ selectDirect: "#437EEF"
49436
+ },
49437
+ text: {
49438
+ "default": "lch(7.17 1.44 305)",
49439
+ selectIndirect: "#161517",
49440
+ selectDirect: "#161517"
49441
+ }
49442
+ }
49443
+ }
49444
+ },
49445
+ cell: {
49446
+ text: {
49447
+ "default": `500 0.875rem/1.5 "Inconsolata", Consolas, '"SFMono Regular"', monospace`
49448
+ }
49449
+ },
49450
+ radii: {
49451
+ none: "0",
49452
+ sm: "0.25rem",
49453
+ md: "0.5rem",
49454
+ lg: "0.75rem"
49455
+ },
49456
+ global: {
49457
+ color: {
49458
+ stroke: {
49459
+ "default": "#e6e7e9"
49460
+ },
49461
+ background: {
49462
+ "default": "#ffffff"
49463
+ }
49464
+ }
49465
+ }
49466
+ },
49467
+ gridContainer: {
49468
+ gap: {
49469
+ none: "0",
49470
+ xxs: "0.25rem",
49471
+ xs: "0.5rem",
49472
+ sm: "0.75rem",
49473
+ md: "1rem",
49474
+ lg: "1.5rem",
49475
+ xl: "2rem",
49476
+ xxl: "4rem",
49477
+ unset: ""
49478
+ }
49479
+ },
49480
+ icon: {
49481
+ space: {
49482
+ xs: {
49483
+ all: "0.25rem"
49484
+ },
49485
+ sm: {
49486
+ all: "0.25rem"
49487
+ },
49488
+ md: {
49489
+ all: "0.365rem"
49490
+ },
49491
+ lg: {
49492
+ all: "0.5rem"
49493
+ },
49494
+ xl: {
49495
+ all: "0.75rem"
49496
+ },
49497
+ xxl: {
49498
+ all: "1rem"
49499
+ }
49500
+ },
49501
+ color: {
49502
+ background: {
49503
+ "default": "rgba(0,0,0,0)",
49504
+ success: "rgb(20% 100% 26.7% / 0.1)",
49505
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
49506
+ danger: "rgb(100% 13.7% 13.7% / 0.1)",
49507
+ info: "rgb(26.3% 49.4% 93.7% / 0.1)",
49508
+ warning: "rgb(100% 46.7% 16.1% / 0.1)"
49509
+ },
49510
+ text: {
49511
+ "default": "rgba(0,0,0,0)",
49512
+ success: "#008A0B",
49513
+ neutral: "#53575f",
49514
+ danger: "#c10000",
49515
+ info: "#437EEF",
49516
+ warning: "#A33C00"
49517
+ },
49518
+ stroke: {
49519
+ "default": "rgba(0,0,0,0)",
49520
+ success: "rgb(20% 100% 26.7% / 0.05)",
49521
+ neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
49522
+ danger: "rgb(100% 13.7% 13.7% / 0.05)",
49523
+ info: "rgb(26.3% 49.4% 93.7% / 0.05)",
49524
+ warning: "rgb(100% 46.7% 16.1% / 0.05)"
49525
+ }
49526
+ }
49527
+ },
48712
49528
  image: {
48713
49529
  sm: {
48714
49530
  size: {
@@ -48746,10 +49562,36 @@ const click = {
48746
49562
  width: "4rem"
48747
49563
  }
48748
49564
  },
49565
+ borderWidth: {
49566
+ "default": "1.5px",
49567
+ thin: "1px"
49568
+ },
48749
49569
  color: {
48750
49570
  stroke: "#161517"
48751
49571
  }
48752
49572
  },
49573
+ link: {
49574
+ space: {
49575
+ md: {
49576
+ gap: "0.25rem"
49577
+ },
49578
+ sm: {
49579
+ gap: "2px"
49580
+ }
49581
+ },
49582
+ icon: {
49583
+ size: {
49584
+ sm: {
49585
+ height: "0.75rem",
49586
+ width: "0.75rem"
49587
+ },
49588
+ md: {
49589
+ height: "1rem",
49590
+ width: "1rem"
49591
+ }
49592
+ }
49593
+ }
49594
+ },
48753
49595
  panel: {
48754
49596
  strokeWidth: {
48755
49597
  "default": "1px"
@@ -49614,388 +50456,6 @@ const click = {
49614
50456
  }
49615
50457
  }
49616
50458
  },
49617
- dialog: {
49618
- space: {
49619
- y: "1.5rem",
49620
- x: "2rem",
49621
- gap: "1rem"
49622
- },
49623
- title: {
49624
- space: {
49625
- gap: "0.25rem"
49626
- }
49627
- },
49628
- radii: {
49629
- all: "0.5rem"
49630
- },
49631
- shadow: {
49632
- "default": "0 4px 6px -1px lch(6.77 0 0 / 0.15), 0 2px 4px -1px lch(6.77 0 0 / 0.15)"
49633
- },
49634
- stroke: {
49635
- "default": "1px solid #e6e7e9"
49636
- },
49637
- typography: {
49638
- title: {
49639
- "default": `700 1.25rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49640
- },
49641
- description: {
49642
- "default": `400 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49643
- }
49644
- },
49645
- color: {
49646
- background: {
49647
- "default": "#ffffff"
49648
- },
49649
- title: {
49650
- "default": "lch(11.1 1.37 305)"
49651
- },
49652
- description: {
49653
- "default": "#696e79"
49654
- },
49655
- opaqueBackground: {
49656
- "default": "lch(6.77 0 0 / 0.75)"
49657
- }
49658
- }
49659
- },
49660
- link: {
49661
- space: {
49662
- md: {
49663
- gap: "0.25rem"
49664
- },
49665
- sm: {
49666
- gap: "2px"
49667
- }
49668
- },
49669
- icon: {
49670
- size: {
49671
- sm: {
49672
- height: "0.75rem",
49673
- width: "0.75rem"
49674
- },
49675
- md: {
49676
- height: "1rem",
49677
- width: "1rem"
49678
- }
49679
- }
49680
- }
49681
- },
49682
- flyout: {
49683
- space: {
49684
- "default": {
49685
- x: "0",
49686
- y: "1.5rem",
49687
- gap: "1rem",
49688
- top: "0",
49689
- content: {
49690
- x: "1.5rem",
49691
- y: "1.5rem",
49692
- "row-gap": "0.25rem",
49693
- "column-gap": "1rem"
49694
- }
49695
- },
49696
- inline: {
49697
- x: "0",
49698
- y: "0.75rem",
49699
- gap: "0.75rem",
49700
- top: "3.5rem",
49701
- content: {
49702
- x: "0.75rem",
49703
- y: "0.75rem",
49704
- "row-gap": "0.25rem",
49705
- "column-gap": "0.75rem"
49706
- }
49707
- }
49708
- },
49709
- shadow: {
49710
- "default": "-5px 0 20px 0 rgba(0, 0, 0, 0.08), -6px 0 10px 0 rgba(0, 0, 0, 0.08)",
49711
- reverse: "5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08)"
49712
- },
49713
- size: {
49714
- "default": {
49715
- width: "27.5rem",
49716
- height: "100%"
49717
- },
49718
- wide: {
49719
- width: "37.5rem",
49720
- height: "100vh"
49721
- },
49722
- narrow: {
49723
- width: "21rem",
49724
- height: "100%"
49725
- },
49726
- widest: {
49727
- width: "55rem",
49728
- height: "100vh"
49729
- }
49730
- },
49731
- typography: {
49732
- "default": {
49733
- description: {
49734
- "default": `400 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49735
- },
49736
- title: {
49737
- "default": `700 1.25rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49738
- }
49739
- },
49740
- inline: {
49741
- description: {
49742
- "default": `400 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49743
- },
49744
- title: {
49745
- "default": `600 1rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49746
- }
49747
- }
49748
- },
49749
- color: {
49750
- background: {
49751
- "default": "#ffffff"
49752
- },
49753
- title: {
49754
- "default": "lch(11.1 1.37 305)"
49755
- },
49756
- description: {
49757
- "default": "#696e79"
49758
- },
49759
- opaqueBackground: {
49760
- "default": "lch(6.77 0 0 / 0.45)"
49761
- },
49762
- stroke: {
49763
- "default": "#e6e7e9"
49764
- }
49765
- }
49766
- },
49767
- grid: {
49768
- header: {
49769
- cell: {
49770
- space: {
49771
- y: "0.438rem",
49772
- x: "0.5rem"
49773
- },
49774
- size: {
49775
- height: "2rem"
49776
- },
49777
- color: {
49778
- background: {
49779
- "default": "#f6f7fa",
49780
- selectIndirect: "lch(95.6 5.84 264)",
49781
- selectDirect: "lch(93.2 7.7 264)"
49782
- },
49783
- title: {
49784
- "default": "#696e79",
49785
- selectIndirect: "#161517",
49786
- selectDirect: "#161517"
49787
- },
49788
- stroke: {
49789
- "default": "lch(89.3 1.07 266)",
49790
- selectIndirect: "lch(91.8 7.59 264)",
49791
- selectDirect: "lch(86.1 15.1 266)"
49792
- }
49793
- }
49794
- },
49795
- title: {
49796
- "default": `500 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49797
- }
49798
- },
49799
- body: {
49800
- cell: {
49801
- space: {
49802
- y: "5.5px",
49803
- x: "0.5rem"
49804
- },
49805
- size: {
49806
- height: "2rem"
49807
- },
49808
- color: {
49809
- background: {
49810
- "default": "#ffffff",
49811
- selectIndirect: "lch(94.1 7.78 264 / 0.2)",
49812
- selectDirect: "lch(94.1 7.78 264 / 0.2)"
49813
- },
49814
- stroke: {
49815
- "default": "#e6e7e9",
49816
- selectIndirect: "lch(70.7 12.4 266)",
49817
- selectDirect: "#437EEF"
49818
- },
49819
- text: {
49820
- "default": "lch(7.17 1.44 305)",
49821
- selectIndirect: "#161517",
49822
- selectDirect: "#161517"
49823
- }
49824
- }
49825
- }
49826
- },
49827
- cell: {
49828
- text: {
49829
- "default": `500 0.875rem/1.5 "Inconsolata", Consolas, '"SFMono Regular"', monospace`
49830
- }
49831
- },
49832
- radii: {
49833
- none: "0",
49834
- sm: "0.25rem",
49835
- md: "0.5rem",
49836
- lg: "0.75rem"
49837
- },
49838
- global: {
49839
- color: {
49840
- stroke: {
49841
- "default": "#e6e7e9"
49842
- },
49843
- background: {
49844
- "default": "#ffffff"
49845
- }
49846
- }
49847
- }
49848
- },
49849
- container: {
49850
- space: {
49851
- none: "0",
49852
- xxs: "0.25rem",
49853
- xs: "0.5rem",
49854
- sm: "0.75rem",
49855
- md: "1rem",
49856
- lg: "1.5rem",
49857
- xl: "2rem",
49858
- xxl: "4rem"
49859
- },
49860
- gap: {
49861
- none: "0",
49862
- xxs: "0.25rem",
49863
- xs: "0.5rem",
49864
- sm: "0.75rem",
49865
- md: "1rem",
49866
- lg: "1.5rem",
49867
- xl: "2rem",
49868
- xxl: "4rem"
49869
- }
49870
- },
49871
- gridContainer: {
49872
- gap: {
49873
- none: "0",
49874
- xxs: "0.25rem",
49875
- xs: "0.5rem",
49876
- sm: "0.75rem",
49877
- md: "1rem",
49878
- lg: "1.5rem",
49879
- xl: "2rem",
49880
- xxl: "4rem",
49881
- unset: ""
49882
- }
49883
- },
49884
- icon: {
49885
- space: {
49886
- xs: {
49887
- all: "0.25rem"
49888
- },
49889
- sm: {
49890
- all: "0.25rem"
49891
- },
49892
- md: {
49893
- all: "0.365rem"
49894
- },
49895
- lg: {
49896
- all: "0.5rem"
49897
- },
49898
- xl: {
49899
- all: "0.75rem"
49900
- },
49901
- xxl: {
49902
- all: "1rem"
49903
- }
49904
- },
49905
- color: {
49906
- background: {
49907
- "default": "rgba(0,0,0,0)",
49908
- success: "rgb(20% 100% 26.7% / 0.1)",
49909
- neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
49910
- danger: "rgb(100% 13.7% 13.7% / 0.1)",
49911
- info: "rgb(26.3% 49.4% 93.7% / 0.1)",
49912
- warning: "rgb(100% 46.7% 16.1% / 0.1)"
49913
- },
49914
- text: {
49915
- "default": "rgba(0,0,0,0)",
49916
- success: "#008A0B",
49917
- neutral: "#53575f",
49918
- danger: "#c10000",
49919
- info: "#437EEF",
49920
- warning: "#A33C00"
49921
- },
49922
- stroke: {
49923
- "default": "rgba(0,0,0,0)",
49924
- success: "rgb(20% 100% 26.7% / 0.05)",
49925
- neutral: "rgb(41.2% 43.1% 47.5% / 0.1)",
49926
- danger: "rgb(100% 13.7% 13.7% / 0.05)",
49927
- info: "rgb(26.3% 49.4% 93.7% / 0.05)",
49928
- warning: "rgb(100% 46.7% 16.1% / 0.05)"
49929
- }
49930
- }
49931
- },
49932
- datePicker: {
49933
- dateOption: {
49934
- space: {
49935
- gap: "2px"
49936
- },
49937
- radii: {
49938
- "default": "0.25rem",
49939
- range: "0"
49940
- },
49941
- stroke: "1px",
49942
- size: {
49943
- height: "2rem",
49944
- width: "2rem"
49945
- },
49946
- typography: {
49947
- label: {
49948
- "default": `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`,
49949
- hover: `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`,
49950
- active: `600 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`,
49951
- disabled: `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`,
49952
- range: `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49953
- }
49954
- },
49955
- color: {
49956
- label: {
49957
- "default": "#161517",
49958
- hover: "#161517",
49959
- active: "#ffffff",
49960
- disabled: "#a0a0a0",
49961
- range: "#161517"
49962
- },
49963
- background: {
49964
- "default": "#ffffff",
49965
- hover: "#ffffff",
49966
- active: "#151515",
49967
- disabled: "#ffffff",
49968
- range: "#e6e7e9"
49969
- },
49970
- stroke: {
49971
- "default": "#ffffff",
49972
- hover: "#151515",
49973
- active: "#151515",
49974
- disabled: "#ffffff",
49975
- range: "#e6e7e9"
49976
- }
49977
- }
49978
- },
49979
- space: {
49980
- gap: "0.25rem"
49981
- },
49982
- typography: {
49983
- daytitle: {
49984
- "default": `400 0.75rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49985
- },
49986
- title: {
49987
- "default": `600 0.875rem/1.5 "Inter", '"SF Pro Display"', -apple-system, BlinkMacSystemFont, '"Segoe UI"', Roboto, Oxygen, Ubuntu, Cantarell, '"Open Sans"', '"Helvetica Neue"', sans-serif;`
49988
- }
49989
- },
49990
- color: {
49991
- title: {
49992
- "default": "lch(11.1 1.37 305)"
49993
- },
49994
- daytitle: {
49995
- "default": "#696e79"
49996
- }
49997
- }
49998
- },
49999
50459
  global: {
50000
50460
  color: {
50001
50461
  background: {
@@ -50967,6 +51427,7 @@ export {
50967
51427
  EllipsisContent,
50968
51428
  FileTabElement,
50969
51429
  FileTabs,
51430
+ FileUpload,
50970
51431
  Flags,
50971
51432
  Flyout,
50972
51433
  FormContainer,