@dartech/dossym-ui 1.1.2 → 1.2.0
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/dist/index.cjs +712 -0
- package/dist/index.css +1 -0
- package/dist/index.d.cts +127 -0
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2 -3
- package/dist/styles.css +1 -1
- package/package.json +5 -2
- package/dist/Table-C_OoLcYS.js +0 -1
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,712 @@
|
|
|
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 __copyProps = (to, from, except, desc) => {
|
|
9
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
10
|
+
key = keys[i];
|
|
11
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
12
|
+
get: ((k) => from[k]).bind(null, key),
|
|
13
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
19
|
+
value: mod,
|
|
20
|
+
enumerable: true
|
|
21
|
+
}) : target, mod));
|
|
22
|
+
|
|
23
|
+
//#endregion
|
|
24
|
+
let __gravity_ui_uikit = require("@gravity-ui/uikit");
|
|
25
|
+
__gravity_ui_uikit = __toESM(__gravity_ui_uikit);
|
|
26
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
27
|
+
react_jsx_runtime = __toESM(react_jsx_runtime);
|
|
28
|
+
let react = require("react");
|
|
29
|
+
react = __toESM(react);
|
|
30
|
+
let classnames = require("classnames");
|
|
31
|
+
classnames = __toESM(classnames);
|
|
32
|
+
let __gravity_ui_date_components = require("@gravity-ui/date-components");
|
|
33
|
+
__gravity_ui_date_components = __toESM(__gravity_ui_date_components);
|
|
34
|
+
let __gravity_ui_date_utils = require("@gravity-ui/date-utils");
|
|
35
|
+
__gravity_ui_date_utils = __toESM(__gravity_ui_date_utils);
|
|
36
|
+
let __gravity_ui_navigation = require("@gravity-ui/navigation");
|
|
37
|
+
__gravity_ui_navigation = __toESM(__gravity_ui_navigation);
|
|
38
|
+
let __gravity_ui_components = require("@gravity-ui/components");
|
|
39
|
+
__gravity_ui_components = __toESM(__gravity_ui_components);
|
|
40
|
+
|
|
41
|
+
//#region src/provider/ThemeProvider.tsx
|
|
42
|
+
const ThemeProvider = ({ theme = "light", children }) => {
|
|
43
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.ThemeProvider, {
|
|
44
|
+
theme,
|
|
45
|
+
children
|
|
46
|
+
});
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
//#endregion
|
|
50
|
+
//#region src/components/Inputs/Select/Select.module.scss
|
|
51
|
+
var Select_module_default = {
|
|
52
|
+
"root": "root__-XdEH",
|
|
53
|
+
"label": "label__1F18J"
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
//#endregion
|
|
57
|
+
//#region src/components/Inputs/Select/Select.tsx
|
|
58
|
+
const BaseSelect = ({ label, leftIcon, rootClassName,...rest }) => {
|
|
59
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
60
|
+
className: (0, classnames.default)(Select_module_default.root, rootClassName),
|
|
61
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("label", {
|
|
62
|
+
className: (0, classnames.default)("header-subheader-1", Select_module_default.label),
|
|
63
|
+
children: label
|
|
64
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.Select, {
|
|
65
|
+
label: leftIcon,
|
|
66
|
+
...rest
|
|
67
|
+
})]
|
|
68
|
+
});
|
|
69
|
+
};
|
|
70
|
+
const Select = Object.assign((0, react.memo)(BaseSelect), { Option: __gravity_ui_uikit.Select.Option });
|
|
71
|
+
Select.displayName = "Select";
|
|
72
|
+
|
|
73
|
+
//#endregion
|
|
74
|
+
//#region src/components/Inputs/NumberInput/NumberInput.module.scss
|
|
75
|
+
var NumberInput_module_default = {
|
|
76
|
+
"root": "root__wcl6b",
|
|
77
|
+
"label": "label__td8i1"
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
//#endregion
|
|
81
|
+
//#region src/components/Inputs/NumberInput/NumberInput.tsx
|
|
82
|
+
const NumberInput = (0, react.memo)(({ size = "m", label, hiddenControls = true, rootClassName,...rest }) => {
|
|
83
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
84
|
+
className: (0, classnames.default)(NumberInput_module_default.root, rootClassName),
|
|
85
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("label", {
|
|
86
|
+
className: (0, classnames.default)(`header-subheader-${subheaderType$2[size]}`, NumberInput_module_default.label),
|
|
87
|
+
children: label
|
|
88
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.NumberInput, {
|
|
89
|
+
hiddenControls,
|
|
90
|
+
size,
|
|
91
|
+
...rest
|
|
92
|
+
})]
|
|
93
|
+
});
|
|
94
|
+
});
|
|
95
|
+
NumberInput.displayName = "NumberInput";
|
|
96
|
+
const subheaderType$2 = {
|
|
97
|
+
s: 1,
|
|
98
|
+
m: 1,
|
|
99
|
+
l: 1,
|
|
100
|
+
xl: 2
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
//#endregion
|
|
104
|
+
//#region src/components/Inputs/Slider/Slider.module.scss
|
|
105
|
+
var Slider_module_default = {
|
|
106
|
+
"root": "root__ohWza",
|
|
107
|
+
"horizontal": "horizontal__suDN6",
|
|
108
|
+
"slider": "slider__B-YMu",
|
|
109
|
+
"vertical": "vertical__--9GZ",
|
|
110
|
+
"input": "input__vL1kz"
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
//#endregion
|
|
114
|
+
//#region src/components/Inputs/Slider/Slider.tsx
|
|
115
|
+
const Slider = (0, react.memo)(({ showInput = false, inputOrientation = "vertical", size, rootClassName, value, validationState, onUpdate, onUpdateComplete, disabled,...rest }) => {
|
|
116
|
+
if (showInput) {
|
|
117
|
+
const [localValue, setLocalValue] = (0, react.useState)(value);
|
|
118
|
+
const handleUpdate = (0, react.useCallback)((value$1) => {
|
|
119
|
+
setLocalValue(value$1);
|
|
120
|
+
onUpdate?.(value$1);
|
|
121
|
+
}, [onUpdate]);
|
|
122
|
+
const handleUpdateComplete = (0, react.useCallback)((value$1) => {
|
|
123
|
+
setLocalValue(value$1);
|
|
124
|
+
onUpdateComplete?.(value$1);
|
|
125
|
+
}, [onUpdateComplete]);
|
|
126
|
+
const handleInputUpdate = (0, react.useCallback)((value$1) => {
|
|
127
|
+
handleUpdate(value$1);
|
|
128
|
+
handleUpdateComplete(value$1);
|
|
129
|
+
}, [onUpdate, onUpdateComplete]);
|
|
130
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
131
|
+
className: (0, classnames.default)(Slider_module_default.root, inputOrientation === "horizontal" && Slider_module_default.horizontal, rootClassName),
|
|
132
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.Slider, {
|
|
133
|
+
className: (0, classnames.default)(Slider_module_default.slider, inputOrientation === "vertical" && Slider_module_default.vertical),
|
|
134
|
+
size,
|
|
135
|
+
value: localValue,
|
|
136
|
+
onUpdate: handleUpdate,
|
|
137
|
+
onUpdateComplete: handleUpdateComplete,
|
|
138
|
+
validationState,
|
|
139
|
+
disabled,
|
|
140
|
+
...rest
|
|
141
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(NumberInput, {
|
|
142
|
+
rootClassName: Slider_module_default.input,
|
|
143
|
+
size,
|
|
144
|
+
value: localValue,
|
|
145
|
+
onUpdate: handleInputUpdate,
|
|
146
|
+
validationState,
|
|
147
|
+
disabled
|
|
148
|
+
})]
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.Slider, {
|
|
152
|
+
size,
|
|
153
|
+
value,
|
|
154
|
+
onUpdate,
|
|
155
|
+
onUpdateComplete,
|
|
156
|
+
validationState,
|
|
157
|
+
disabled,
|
|
158
|
+
...rest
|
|
159
|
+
});
|
|
160
|
+
});
|
|
161
|
+
Slider.displayName = "Slider";
|
|
162
|
+
|
|
163
|
+
//#endregion
|
|
164
|
+
//#region src/components/Inputs/TextArea/TextArea.module.scss
|
|
165
|
+
var TextArea_module_default = {
|
|
166
|
+
"root": "root__025M5",
|
|
167
|
+
"label": "label__XnuEZ"
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
//#endregion
|
|
171
|
+
//#region src/components/Inputs/TextArea/TextArea.tsx
|
|
172
|
+
const TextArea = (0, react.memo)(({ size = "m", label, rootClassName,...rest }) => {
|
|
173
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
174
|
+
className: (0, classnames.default)(TextArea_module_default.root, rootClassName),
|
|
175
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("label", {
|
|
176
|
+
className: (0, classnames.default)(`header-subheader-${subheaderType$1[size]}`, TextArea_module_default.label),
|
|
177
|
+
children: label
|
|
178
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.TextArea, {
|
|
179
|
+
size,
|
|
180
|
+
...rest
|
|
181
|
+
})]
|
|
182
|
+
});
|
|
183
|
+
});
|
|
184
|
+
TextArea.displayName = "TextArea";
|
|
185
|
+
const subheaderType$1 = {
|
|
186
|
+
s: 1,
|
|
187
|
+
m: 1,
|
|
188
|
+
l: 2,
|
|
189
|
+
xl: 2
|
|
190
|
+
};
|
|
191
|
+
|
|
192
|
+
//#endregion
|
|
193
|
+
//#region src/components/Inputs/TextInput/TextInput.module.scss
|
|
194
|
+
var TextInput_module_default = {
|
|
195
|
+
"root": "root__OHOLL",
|
|
196
|
+
"label": "label__dgaMd"
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
//#endregion
|
|
200
|
+
//#region src/components/Inputs/TextInput/TextInput.tsx
|
|
201
|
+
const TextInput = (0, react.memo)(({ size = "m", label, rootClassName,...rest }) => {
|
|
202
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
203
|
+
className: (0, classnames.default)(TextInput_module_default.root, rootClassName),
|
|
204
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("label", {
|
|
205
|
+
className: (0, classnames.default)(`header-subheader-${subheaderType[size]}`, TextInput_module_default.label),
|
|
206
|
+
children: label
|
|
207
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.TextInput, {
|
|
208
|
+
size,
|
|
209
|
+
...rest
|
|
210
|
+
})]
|
|
211
|
+
});
|
|
212
|
+
});
|
|
213
|
+
TextInput.displayName = "TextInput";
|
|
214
|
+
const subheaderType = {
|
|
215
|
+
s: 1,
|
|
216
|
+
m: 1,
|
|
217
|
+
l: 1,
|
|
218
|
+
xl: 2
|
|
219
|
+
};
|
|
220
|
+
|
|
221
|
+
//#endregion
|
|
222
|
+
//#region src/components/DataDisplay/List/List.module.scss
|
|
223
|
+
var List_module_default = {
|
|
224
|
+
"root": "root__W0bfY",
|
|
225
|
+
"filter": "filter__ljh-b",
|
|
226
|
+
"items": "items__aNMD0",
|
|
227
|
+
"item": "item__syt18",
|
|
228
|
+
"buttons": "buttons__tye0k",
|
|
229
|
+
"button": "button__X2WyQ",
|
|
230
|
+
"apply": "apply__3VI1A",
|
|
231
|
+
"cancel": "cancel__19r13"
|
|
232
|
+
};
|
|
233
|
+
|
|
234
|
+
//#endregion
|
|
235
|
+
//#region src/components/DataDisplay/List/List.tsx
|
|
236
|
+
var List = class extends __gravity_ui_uikit.List {
|
|
237
|
+
render() {
|
|
238
|
+
const { onApply, onCancel, applyText, cancelText, filterClassName, itemsClassName, itemClassName, itemsHeight = 288, rootClassName, buttonsClassName, cancelClassName, applyClassName,...rest } = this.props;
|
|
239
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
240
|
+
className: (0, classnames.default)(List_module_default.root, rootClassName),
|
|
241
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.List, {
|
|
242
|
+
filterClassName: (0, classnames.default)(List_module_default.filter, filterClassName),
|
|
243
|
+
itemsClassName: (0, classnames.default)(List_module_default.items, itemsClassName),
|
|
244
|
+
itemClassName: (0, classnames.default)(List_module_default.item, itemClassName),
|
|
245
|
+
itemsHeight,
|
|
246
|
+
...rest
|
|
247
|
+
}), applyText && /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
248
|
+
className: (0, classnames.default)(List_module_default.buttons, buttonsClassName),
|
|
249
|
+
children: [cancelText && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
|
|
250
|
+
className: (0, classnames.default)(List_module_default.button, List_module_default.cancel, "text-body-1", cancelClassName),
|
|
251
|
+
onClick: onCancel,
|
|
252
|
+
children: cancelText
|
|
253
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
|
|
254
|
+
className: (0, classnames.default)(List_module_default.button, List_module_default.apply, "text-body-1", applyClassName),
|
|
255
|
+
onClick: onApply,
|
|
256
|
+
children: applyText
|
|
257
|
+
})]
|
|
258
|
+
})]
|
|
259
|
+
});
|
|
260
|
+
}
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
//#endregion
|
|
264
|
+
//#region src/components/DataDisplay/FilePreview/FilePreview.module.scss
|
|
265
|
+
var FilePreview_module_default = {
|
|
266
|
+
"root": "root__hsz0V",
|
|
267
|
+
"s": "s__mSd-5",
|
|
268
|
+
"sideBlock": "sideBlock__7uElG",
|
|
269
|
+
"description": "description__3FNHI",
|
|
270
|
+
"actions": "actions__XPlLm",
|
|
271
|
+
"container": "container__B8OBV",
|
|
272
|
+
"error": "error__w3xyh"
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
//#endregion
|
|
276
|
+
//#region src/components/DataDisplay/FilePreview/FilePreview.tsx
|
|
277
|
+
const FilePreview = (0, react.memo)(({ size = "s", error,...rest }) => {
|
|
278
|
+
if (size === "s") {
|
|
279
|
+
const { actions, description,...restProps } = rest;
|
|
280
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(FilePreviewWrapper, {
|
|
281
|
+
error,
|
|
282
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
283
|
+
className: (0, classnames.default)(FilePreview_module_default.root, FilePreview_module_default[size]),
|
|
284
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.FilePreview, { ...restProps }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
285
|
+
className: FilePreview_module_default.sideBlock,
|
|
286
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
|
|
287
|
+
className: (0, classnames.default)(FilePreview_module_default.description, "text-caption-2"),
|
|
288
|
+
children: description
|
|
289
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("div", {
|
|
290
|
+
className: FilePreview_module_default.actions,
|
|
291
|
+
children: actions?.map(({ icon, title, onClick }, i) => {
|
|
292
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
|
|
293
|
+
onClick,
|
|
294
|
+
"aria-label": title,
|
|
295
|
+
type: "button",
|
|
296
|
+
children: icon
|
|
297
|
+
}, i);
|
|
298
|
+
})
|
|
299
|
+
})]
|
|
300
|
+
})]
|
|
301
|
+
})
|
|
302
|
+
});
|
|
303
|
+
}
|
|
304
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(FilePreviewWrapper, {
|
|
305
|
+
error,
|
|
306
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.FilePreview, {
|
|
307
|
+
className: (0, classnames.default)(FilePreview_module_default.root, FilePreview_module_default[size]),
|
|
308
|
+
...rest
|
|
309
|
+
})
|
|
310
|
+
});
|
|
311
|
+
});
|
|
312
|
+
FilePreview.displayName = "FilePreview";
|
|
313
|
+
const FilePreviewWrapper = ({ error, children }) => {
|
|
314
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
315
|
+
className: FilePreview_module_default.container,
|
|
316
|
+
children: [children, Boolean(error) && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("p", {
|
|
317
|
+
className: (0, classnames.default)(FilePreview_module_default.error, "text-small-1"),
|
|
318
|
+
role: "status",
|
|
319
|
+
"aria-live": "polite",
|
|
320
|
+
children: error
|
|
321
|
+
})]
|
|
322
|
+
});
|
|
323
|
+
};
|
|
324
|
+
|
|
325
|
+
//#endregion
|
|
326
|
+
//#region src/components/Overlays/Popover/Popover.module.scss
|
|
327
|
+
var Popover_module_default = {
|
|
328
|
+
"root": "root__fmtP7",
|
|
329
|
+
"special": "special__QIhQl",
|
|
330
|
+
"announcement": "announcement__ZxIUH"
|
|
331
|
+
};
|
|
332
|
+
|
|
333
|
+
//#endregion
|
|
334
|
+
//#region src/components/Overlays/Popover/Popover.tsx
|
|
335
|
+
const Popover = (0, react.memo)(({ theme = "info", className,...rest }) => {
|
|
336
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__gravity_ui_uikit.Popover, {
|
|
337
|
+
className: (0, classnames.default)(Popover_module_default.root, Popover_module_default[theme], className),
|
|
338
|
+
...rest
|
|
339
|
+
});
|
|
340
|
+
});
|
|
341
|
+
Popover.displayName = "Popover";
|
|
342
|
+
|
|
343
|
+
//#endregion
|
|
344
|
+
Object.defineProperty(exports, 'ActionBar', {
|
|
345
|
+
enumerable: true,
|
|
346
|
+
get: function () {
|
|
347
|
+
return __gravity_ui_navigation.ActionBar;
|
|
348
|
+
}
|
|
349
|
+
});
|
|
350
|
+
Object.defineProperty(exports, 'ActionTooltip', {
|
|
351
|
+
enumerable: true,
|
|
352
|
+
get: function () {
|
|
353
|
+
return __gravity_ui_uikit.ActionTooltip;
|
|
354
|
+
}
|
|
355
|
+
});
|
|
356
|
+
Object.defineProperty(exports, 'ActionsPanel', {
|
|
357
|
+
enumerable: true,
|
|
358
|
+
get: function () {
|
|
359
|
+
return __gravity_ui_uikit.ActionsPanel;
|
|
360
|
+
}
|
|
361
|
+
});
|
|
362
|
+
Object.defineProperty(exports, 'Alert', {
|
|
363
|
+
enumerable: true,
|
|
364
|
+
get: function () {
|
|
365
|
+
return __gravity_ui_uikit.Alert;
|
|
366
|
+
}
|
|
367
|
+
});
|
|
368
|
+
Object.defineProperty(exports, 'AsideHeader', {
|
|
369
|
+
enumerable: true,
|
|
370
|
+
get: function () {
|
|
371
|
+
return __gravity_ui_navigation.AsideHeader;
|
|
372
|
+
}
|
|
373
|
+
});
|
|
374
|
+
Object.defineProperty(exports, 'Avatar', {
|
|
375
|
+
enumerable: true,
|
|
376
|
+
get: function () {
|
|
377
|
+
return __gravity_ui_uikit.Avatar;
|
|
378
|
+
}
|
|
379
|
+
});
|
|
380
|
+
Object.defineProperty(exports, 'AvatarStack', {
|
|
381
|
+
enumerable: true,
|
|
382
|
+
get: function () {
|
|
383
|
+
return __gravity_ui_uikit.AvatarStack;
|
|
384
|
+
}
|
|
385
|
+
});
|
|
386
|
+
Object.defineProperty(exports, 'Breadcrumbs', {
|
|
387
|
+
enumerable: true,
|
|
388
|
+
get: function () {
|
|
389
|
+
return __gravity_ui_uikit.Breadcrumbs;
|
|
390
|
+
}
|
|
391
|
+
});
|
|
392
|
+
Object.defineProperty(exports, 'Button', {
|
|
393
|
+
enumerable: true,
|
|
394
|
+
get: function () {
|
|
395
|
+
return __gravity_ui_uikit.Button;
|
|
396
|
+
}
|
|
397
|
+
});
|
|
398
|
+
Object.defineProperty(exports, 'Calendar', {
|
|
399
|
+
enumerable: true,
|
|
400
|
+
get: function () {
|
|
401
|
+
return __gravity_ui_date_components.Calendar;
|
|
402
|
+
}
|
|
403
|
+
});
|
|
404
|
+
Object.defineProperty(exports, 'Card', {
|
|
405
|
+
enumerable: true,
|
|
406
|
+
get: function () {
|
|
407
|
+
return __gravity_ui_uikit.Card;
|
|
408
|
+
}
|
|
409
|
+
});
|
|
410
|
+
Object.defineProperty(exports, 'ChangelogDialog', {
|
|
411
|
+
enumerable: true,
|
|
412
|
+
get: function () {
|
|
413
|
+
return __gravity_ui_components.ChangelogDialog;
|
|
414
|
+
}
|
|
415
|
+
});
|
|
416
|
+
Object.defineProperty(exports, 'Checkbox', {
|
|
417
|
+
enumerable: true,
|
|
418
|
+
get: function () {
|
|
419
|
+
return __gravity_ui_uikit.Checkbox;
|
|
420
|
+
}
|
|
421
|
+
});
|
|
422
|
+
Object.defineProperty(exports, 'DatePicker', {
|
|
423
|
+
enumerable: true,
|
|
424
|
+
get: function () {
|
|
425
|
+
return __gravity_ui_date_components.DatePicker;
|
|
426
|
+
}
|
|
427
|
+
});
|
|
428
|
+
Object.defineProperty(exports, 'DefinitionList', {
|
|
429
|
+
enumerable: true,
|
|
430
|
+
get: function () {
|
|
431
|
+
return __gravity_ui_uikit.DefinitionList;
|
|
432
|
+
}
|
|
433
|
+
});
|
|
434
|
+
Object.defineProperty(exports, 'Dialog', {
|
|
435
|
+
enumerable: true,
|
|
436
|
+
get: function () {
|
|
437
|
+
return __gravity_ui_uikit.Dialog;
|
|
438
|
+
}
|
|
439
|
+
});
|
|
440
|
+
Object.defineProperty(exports, 'Drawer', {
|
|
441
|
+
enumerable: true,
|
|
442
|
+
get: function () {
|
|
443
|
+
return __gravity_ui_navigation.Drawer;
|
|
444
|
+
}
|
|
445
|
+
});
|
|
446
|
+
Object.defineProperty(exports, 'DrawerItem', {
|
|
447
|
+
enumerable: true,
|
|
448
|
+
get: function () {
|
|
449
|
+
return __gravity_ui_navigation.DrawerItem;
|
|
450
|
+
}
|
|
451
|
+
});
|
|
452
|
+
Object.defineProperty(exports, 'DropdownMenu', {
|
|
453
|
+
enumerable: true,
|
|
454
|
+
get: function () {
|
|
455
|
+
return __gravity_ui_uikit.DropdownMenu;
|
|
456
|
+
}
|
|
457
|
+
});
|
|
458
|
+
exports.FilePreview = FilePreview;
|
|
459
|
+
Object.defineProperty(exports, 'Footer', {
|
|
460
|
+
enumerable: true,
|
|
461
|
+
get: function () {
|
|
462
|
+
return __gravity_ui_navigation.Footer;
|
|
463
|
+
}
|
|
464
|
+
});
|
|
465
|
+
Object.defineProperty(exports, 'Hotkey', {
|
|
466
|
+
enumerable: true,
|
|
467
|
+
get: function () {
|
|
468
|
+
return __gravity_ui_uikit.Hotkey;
|
|
469
|
+
}
|
|
470
|
+
});
|
|
471
|
+
Object.defineProperty(exports, 'Icon', {
|
|
472
|
+
enumerable: true,
|
|
473
|
+
get: function () {
|
|
474
|
+
return __gravity_ui_uikit.Icon;
|
|
475
|
+
}
|
|
476
|
+
});
|
|
477
|
+
Object.defineProperty(exports, 'Label', {
|
|
478
|
+
enumerable: true,
|
|
479
|
+
get: function () {
|
|
480
|
+
return __gravity_ui_uikit.Label;
|
|
481
|
+
}
|
|
482
|
+
});
|
|
483
|
+
exports.List = List;
|
|
484
|
+
Object.defineProperty(exports, 'Loader', {
|
|
485
|
+
enumerable: true,
|
|
486
|
+
get: function () {
|
|
487
|
+
return __gravity_ui_uikit.Loader;
|
|
488
|
+
}
|
|
489
|
+
});
|
|
490
|
+
exports.NumberInput = NumberInput;
|
|
491
|
+
Object.defineProperty(exports, 'OnboardingMenu', {
|
|
492
|
+
enumerable: true,
|
|
493
|
+
get: function () {
|
|
494
|
+
return __gravity_ui_components.OnboardingMenu;
|
|
495
|
+
}
|
|
496
|
+
});
|
|
497
|
+
Object.defineProperty(exports, 'Overlay', {
|
|
498
|
+
enumerable: true,
|
|
499
|
+
get: function () {
|
|
500
|
+
return __gravity_ui_uikit.Overlay;
|
|
501
|
+
}
|
|
502
|
+
});
|
|
503
|
+
Object.defineProperty(exports, 'Pagination', {
|
|
504
|
+
enumerable: true,
|
|
505
|
+
get: function () {
|
|
506
|
+
return __gravity_ui_uikit.Pagination;
|
|
507
|
+
}
|
|
508
|
+
});
|
|
509
|
+
Object.defineProperty(exports, 'PlaceholderContainer', {
|
|
510
|
+
enumerable: true,
|
|
511
|
+
get: function () {
|
|
512
|
+
return __gravity_ui_uikit.PlaceholderContainer;
|
|
513
|
+
}
|
|
514
|
+
});
|
|
515
|
+
exports.Popover = Popover;
|
|
516
|
+
Object.defineProperty(exports, 'Popup', {
|
|
517
|
+
enumerable: true,
|
|
518
|
+
get: function () {
|
|
519
|
+
return __gravity_ui_uikit.Popup;
|
|
520
|
+
}
|
|
521
|
+
});
|
|
522
|
+
Object.defineProperty(exports, 'Progress', {
|
|
523
|
+
enumerable: true,
|
|
524
|
+
get: function () {
|
|
525
|
+
return __gravity_ui_uikit.Progress;
|
|
526
|
+
}
|
|
527
|
+
});
|
|
528
|
+
Object.defineProperty(exports, 'Radio', {
|
|
529
|
+
enumerable: true,
|
|
530
|
+
get: function () {
|
|
531
|
+
return __gravity_ui_uikit.Radio;
|
|
532
|
+
}
|
|
533
|
+
});
|
|
534
|
+
Object.defineProperty(exports, 'RadioGroup', {
|
|
535
|
+
enumerable: true,
|
|
536
|
+
get: function () {
|
|
537
|
+
return __gravity_ui_uikit.RadioGroup;
|
|
538
|
+
}
|
|
539
|
+
});
|
|
540
|
+
Object.defineProperty(exports, 'RangeDatePicker', {
|
|
541
|
+
enumerable: true,
|
|
542
|
+
get: function () {
|
|
543
|
+
return __gravity_ui_date_components.RangeDatePicker;
|
|
544
|
+
}
|
|
545
|
+
});
|
|
546
|
+
Object.defineProperty(exports, 'SegmentedRadioGroup', {
|
|
547
|
+
enumerable: true,
|
|
548
|
+
get: function () {
|
|
549
|
+
return __gravity_ui_uikit.SegmentedRadioGroup;
|
|
550
|
+
}
|
|
551
|
+
});
|
|
552
|
+
exports.Select = Select;
|
|
553
|
+
Object.defineProperty(exports, 'Skeleton', {
|
|
554
|
+
enumerable: true,
|
|
555
|
+
get: function () {
|
|
556
|
+
return __gravity_ui_uikit.Skeleton;
|
|
557
|
+
}
|
|
558
|
+
});
|
|
559
|
+
exports.Slider = Slider;
|
|
560
|
+
Object.defineProperty(exports, 'Spin', {
|
|
561
|
+
enumerable: true,
|
|
562
|
+
get: function () {
|
|
563
|
+
return __gravity_ui_uikit.Spin;
|
|
564
|
+
}
|
|
565
|
+
});
|
|
566
|
+
Object.defineProperty(exports, 'Stepper', {
|
|
567
|
+
enumerable: true,
|
|
568
|
+
get: function () {
|
|
569
|
+
return __gravity_ui_uikit.Stepper;
|
|
570
|
+
}
|
|
571
|
+
});
|
|
572
|
+
Object.defineProperty(exports, 'Switch', {
|
|
573
|
+
enumerable: true,
|
|
574
|
+
get: function () {
|
|
575
|
+
return __gravity_ui_uikit.Switch;
|
|
576
|
+
}
|
|
577
|
+
});
|
|
578
|
+
Object.defineProperty(exports, 'Tab', {
|
|
579
|
+
enumerable: true,
|
|
580
|
+
get: function () {
|
|
581
|
+
return __gravity_ui_uikit.Tab;
|
|
582
|
+
}
|
|
583
|
+
});
|
|
584
|
+
Object.defineProperty(exports, 'TabList', {
|
|
585
|
+
enumerable: true,
|
|
586
|
+
get: function () {
|
|
587
|
+
return __gravity_ui_uikit.TabList;
|
|
588
|
+
}
|
|
589
|
+
});
|
|
590
|
+
Object.defineProperty(exports, 'TabPanel', {
|
|
591
|
+
enumerable: true,
|
|
592
|
+
get: function () {
|
|
593
|
+
return __gravity_ui_uikit.TabPanel;
|
|
594
|
+
}
|
|
595
|
+
});
|
|
596
|
+
Object.defineProperty(exports, 'TabProvider', {
|
|
597
|
+
enumerable: true,
|
|
598
|
+
get: function () {
|
|
599
|
+
return __gravity_ui_uikit.TabProvider;
|
|
600
|
+
}
|
|
601
|
+
});
|
|
602
|
+
Object.defineProperty(exports, 'Table', {
|
|
603
|
+
enumerable: true,
|
|
604
|
+
get: function () {
|
|
605
|
+
return __gravity_ui_uikit.Table;
|
|
606
|
+
}
|
|
607
|
+
});
|
|
608
|
+
exports.TextArea = TextArea;
|
|
609
|
+
exports.TextInput = TextInput;
|
|
610
|
+
exports.ThemeProvider = ThemeProvider;
|
|
611
|
+
Object.defineProperty(exports, 'Toast', {
|
|
612
|
+
enumerable: true,
|
|
613
|
+
get: function () {
|
|
614
|
+
return __gravity_ui_uikit.Toast;
|
|
615
|
+
}
|
|
616
|
+
});
|
|
617
|
+
Object.defineProperty(exports, 'Toaster', {
|
|
618
|
+
enumerable: true,
|
|
619
|
+
get: function () {
|
|
620
|
+
return __gravity_ui_uikit.Toaster;
|
|
621
|
+
}
|
|
622
|
+
});
|
|
623
|
+
Object.defineProperty(exports, 'ToasterComponent', {
|
|
624
|
+
enumerable: true,
|
|
625
|
+
get: function () {
|
|
626
|
+
return __gravity_ui_uikit.ToasterComponent;
|
|
627
|
+
}
|
|
628
|
+
});
|
|
629
|
+
Object.defineProperty(exports, 'ToasterProvider', {
|
|
630
|
+
enumerable: true,
|
|
631
|
+
get: function () {
|
|
632
|
+
return __gravity_ui_uikit.ToasterProvider;
|
|
633
|
+
}
|
|
634
|
+
});
|
|
635
|
+
Object.defineProperty(exports, 'Toc', {
|
|
636
|
+
enumerable: true,
|
|
637
|
+
get: function () {
|
|
638
|
+
return __gravity_ui_uikit.Toc;
|
|
639
|
+
}
|
|
640
|
+
});
|
|
641
|
+
Object.defineProperty(exports, 'Tooltip', {
|
|
642
|
+
enumerable: true,
|
|
643
|
+
get: function () {
|
|
644
|
+
return __gravity_ui_uikit.Tooltip;
|
|
645
|
+
}
|
|
646
|
+
});
|
|
647
|
+
Object.defineProperty(exports, 'User', {
|
|
648
|
+
enumerable: true,
|
|
649
|
+
get: function () {
|
|
650
|
+
return __gravity_ui_uikit.User;
|
|
651
|
+
}
|
|
652
|
+
});
|
|
653
|
+
Object.defineProperty(exports, 'UserLabel', {
|
|
654
|
+
enumerable: true,
|
|
655
|
+
get: function () {
|
|
656
|
+
return __gravity_ui_uikit.UserLabel;
|
|
657
|
+
}
|
|
658
|
+
});
|
|
659
|
+
Object.defineProperty(exports, 'dateTime', {
|
|
660
|
+
enumerable: true,
|
|
661
|
+
get: function () {
|
|
662
|
+
return __gravity_ui_date_utils.dateTime;
|
|
663
|
+
}
|
|
664
|
+
});
|
|
665
|
+
Object.defineProperty(exports, 'dateTimeParse', {
|
|
666
|
+
enumerable: true,
|
|
667
|
+
get: function () {
|
|
668
|
+
return __gravity_ui_date_utils.dateTimeParse;
|
|
669
|
+
}
|
|
670
|
+
});
|
|
671
|
+
Object.defineProperty(exports, 'getTimeZonesList', {
|
|
672
|
+
enumerable: true,
|
|
673
|
+
get: function () {
|
|
674
|
+
return __gravity_ui_date_utils.getTimeZonesList;
|
|
675
|
+
}
|
|
676
|
+
});
|
|
677
|
+
Object.defineProperty(exports, 'useToaster', {
|
|
678
|
+
enumerable: true,
|
|
679
|
+
get: function () {
|
|
680
|
+
return __gravity_ui_uikit.useToaster;
|
|
681
|
+
}
|
|
682
|
+
});
|
|
683
|
+
Object.defineProperty(exports, 'withTableActions', {
|
|
684
|
+
enumerable: true,
|
|
685
|
+
get: function () {
|
|
686
|
+
return __gravity_ui_uikit.withTableActions;
|
|
687
|
+
}
|
|
688
|
+
});
|
|
689
|
+
Object.defineProperty(exports, 'withTableCopy', {
|
|
690
|
+
enumerable: true,
|
|
691
|
+
get: function () {
|
|
692
|
+
return __gravity_ui_uikit.withTableCopy;
|
|
693
|
+
}
|
|
694
|
+
});
|
|
695
|
+
Object.defineProperty(exports, 'withTableSelection', {
|
|
696
|
+
enumerable: true,
|
|
697
|
+
get: function () {
|
|
698
|
+
return __gravity_ui_uikit.withTableSelection;
|
|
699
|
+
}
|
|
700
|
+
});
|
|
701
|
+
Object.defineProperty(exports, 'withTableSettings', {
|
|
702
|
+
enumerable: true,
|
|
703
|
+
get: function () {
|
|
704
|
+
return __gravity_ui_uikit.withTableSettings;
|
|
705
|
+
}
|
|
706
|
+
});
|
|
707
|
+
Object.defineProperty(exports, 'withTableSorting', {
|
|
708
|
+
enumerable: true,
|
|
709
|
+
get: function () {
|
|
710
|
+
return __gravity_ui_uikit.withTableSorting;
|
|
711
|
+
}
|
|
712
|
+
});
|
package/dist/index.css
CHANGED