@qoretechnologies/reqore 0.69.5 → 0.70.1
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/.tasks/EDITABLE_DATAVIEW.md +171 -0
- package/dist/components/Button/index.d.ts +14 -0
- package/dist/components/Button/index.d.ts.map +1 -1
- package/dist/components/Button/index.js +20 -3
- package/dist/components/Button/index.js.map +1 -1
- package/dist/components/DataView/helpers.d.ts +41 -0
- package/dist/components/DataView/helpers.d.ts.map +1 -1
- package/dist/components/DataView/helpers.js +189 -1
- package/dist/components/DataView/helpers.js.map +1 -1
- package/dist/components/DataView/index.d.ts +49 -2
- package/dist/components/DataView/index.d.ts.map +1 -1
- package/dist/components/DataView/index.js +485 -25
- package/dist/components/DataView/index.js.map +1 -1
- package/dist/components/DatePicker/index.d.ts.map +1 -1
- package/dist/components/DatePicker/index.js +2 -2
- package/dist/components/DatePicker/index.js.map +1 -1
- package/dist/components/Input/index.d.ts +6 -0
- package/dist/components/Input/index.d.ts.map +1 -1
- package/dist/components/Input/index.js +25 -10
- package/dist/components/Input/index.js.map +1 -1
- package/dist/components/KeyboardShortcut/index.d.ts +33 -0
- package/dist/components/KeyboardShortcut/index.d.ts.map +1 -0
- package/dist/components/KeyboardShortcut/index.js +69 -0
- package/dist/components/KeyboardShortcut/index.js.map +1 -0
- package/dist/components/StackedBar/index.d.ts +80 -0
- package/dist/components/StackedBar/index.d.ts.map +1 -0
- package/dist/components/StackedBar/index.js +209 -0
- package/dist/components/StackedBar/index.js.map +1 -0
- package/dist/components/Textarea/index.d.ts +5 -0
- package/dist/components/Textarea/index.d.ts.map +1 -1
- package/dist/components/Textarea/index.js +12 -3
- package/dist/components/Textarea/index.js.map +1 -1
- package/dist/containers/ReqoreProvider.d.ts.map +1 -1
- package/dist/containers/ReqoreProvider.js +3 -1
- package/dist/containers/ReqoreProvider.js.map +1 -1
- package/dist/containers/UIProvider.d.ts +1 -1
- package/dist/containers/UIProvider.d.ts.map +1 -1
- package/dist/containers/UIProvider.js.map +1 -1
- package/dist/context/ReqoreContext.d.ts +8 -0
- package/dist/context/ReqoreContext.d.ts.map +1 -1
- package/dist/context/ReqoreContext.js +1 -0
- package/dist/context/ReqoreContext.js.map +1 -1
- package/dist/helpers/shortcuts.d.ts +35 -0
- package/dist/helpers/shortcuts.d.ts.map +1 -0
- package/dist/helpers/shortcuts.js +152 -0
- package/dist/helpers/shortcuts.js.map +1 -0
- package/dist/index.d.ts +6 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +17 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- package/tests.json +1 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Helpers for parsing and displaying keyboard shortcuts.
|
|
3
|
+
*
|
|
4
|
+
* Shortcuts follow the `react-hotkeys-hook` syntax: keys joined with `+`
|
|
5
|
+
* (e.g. `'mod+k'`, `'ctrl+shift+s'`) and multiple alternatives separated by a
|
|
6
|
+
* comma or passed as an array. The special `mod` key resolves to `⌘` on macOS
|
|
7
|
+
* and `Ctrl` everywhere else, so a single declaration works cross-platform.
|
|
8
|
+
*/
|
|
9
|
+
export type TReqoreKeyboardShortcut = string | string[];
|
|
10
|
+
/**
|
|
11
|
+
* Detect macOS so we can render the platform-appropriate modifier glyphs.
|
|
12
|
+
*
|
|
13
|
+
* This intentionally mirrors `react-hotkeys-hook`'s own Apple detection
|
|
14
|
+
* (`/mac/i.test(navigator.userAgent)` excluding iOS) so the displayed hint
|
|
15
|
+
* always matches the modifier the library actually listens for — using a
|
|
16
|
+
* different source (e.g. `navigator.platform`) could make the hint say `⌘`
|
|
17
|
+
* while the binding expects `Ctrl`, or vice versa.
|
|
18
|
+
*/
|
|
19
|
+
export declare const isMacOS: () => boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Turn a single combo (e.g. `'mod+shift+k'`) into a display string.
|
|
22
|
+
* macOS concatenates glyphs (`⌘⇧K`), other platforms join with `+` (`Ctrl+Shift+K`).
|
|
23
|
+
*/
|
|
24
|
+
export declare const formatShortcutCombo: (combo: string, mac?: boolean) => string;
|
|
25
|
+
/**
|
|
26
|
+
* Format a shortcut declaration into one display string per alternative combo.
|
|
27
|
+
*/
|
|
28
|
+
export declare const formatShortcut: (shortcut: TReqoreKeyboardShortcut, mac?: boolean) => string[];
|
|
29
|
+
/**
|
|
30
|
+
* Whether any combo in the shortcut uses a modifier key. Used to decide if a
|
|
31
|
+
* button shortcut should still fire while a form field is focused (combos with a
|
|
32
|
+
* modifier are safe; bare single keys would clash with typing).
|
|
33
|
+
*/
|
|
34
|
+
export declare const shortcutHasModifier: (shortcut: TReqoreKeyboardShortcut) => boolean;
|
|
35
|
+
//# sourceMappingURL=shortcuts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shortcuts.d.ts","sourceRoot":"","sources":["../../src/helpers/shortcuts.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,MAAM,MAAM,uBAAuB,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;AAwExD;;;;;;;;GAQG;AACH,eAAO,MAAM,OAAO,QAAO,OAQ1B,CAAC;AAiCF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,GAAI,OAAO,MAAM,EAAE,MAAK,OAAmB,KAAG,MAIrD,CAAC;AAE1B;;GAEG;AACH,eAAO,MAAM,cAAc,GACzB,UAAU,uBAAuB,EACjC,MAAK,OAAmB,KACvB,MAAM,EAA6E,CAAC;AAEvF;;;;GAIG;AACH,eAAO,MAAM,mBAAmB,GAAI,UAAU,uBAAuB,KAAG,OAGrE,CAAC"}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Helpers for parsing and displaying keyboard shortcuts.
|
|
4
|
+
*
|
|
5
|
+
* Shortcuts follow the `react-hotkeys-hook` syntax: keys joined with `+`
|
|
6
|
+
* (e.g. `'mod+k'`, `'ctrl+shift+s'`) and multiple alternatives separated by a
|
|
7
|
+
* comma or passed as an array. The special `mod` key resolves to `⌘` on macOS
|
|
8
|
+
* and `Ctrl` everywhere else, so a single declaration works cross-platform.
|
|
9
|
+
*/
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.shortcutHasModifier = exports.formatShortcut = exports.formatShortcutCombo = exports.isMacOS = void 0;
|
|
12
|
+
var MODIFIER_KEYS = [
|
|
13
|
+
'mod',
|
|
14
|
+
'meta',
|
|
15
|
+
'cmd',
|
|
16
|
+
'command',
|
|
17
|
+
'ctrl',
|
|
18
|
+
'control',
|
|
19
|
+
'alt',
|
|
20
|
+
'option',
|
|
21
|
+
'shift',
|
|
22
|
+
];
|
|
23
|
+
var KEY_SYMBOLS_MAC = {
|
|
24
|
+
mod: '⌘',
|
|
25
|
+
meta: '⌘',
|
|
26
|
+
cmd: '⌘',
|
|
27
|
+
command: '⌘',
|
|
28
|
+
ctrl: '⌃',
|
|
29
|
+
control: '⌃',
|
|
30
|
+
alt: '⌥',
|
|
31
|
+
option: '⌥',
|
|
32
|
+
shift: '⇧',
|
|
33
|
+
enter: '↵',
|
|
34
|
+
return: '↵',
|
|
35
|
+
esc: 'Esc',
|
|
36
|
+
escape: 'Esc',
|
|
37
|
+
backspace: '⌫',
|
|
38
|
+
delete: '⌦',
|
|
39
|
+
del: '⌦',
|
|
40
|
+
tab: '⇥',
|
|
41
|
+
space: 'Space',
|
|
42
|
+
up: '↑',
|
|
43
|
+
arrowup: '↑',
|
|
44
|
+
down: '↓',
|
|
45
|
+
arrowdown: '↓',
|
|
46
|
+
left: '←',
|
|
47
|
+
arrowleft: '←',
|
|
48
|
+
right: '→',
|
|
49
|
+
arrowright: '→',
|
|
50
|
+
};
|
|
51
|
+
var KEY_LABELS = {
|
|
52
|
+
mod: 'Ctrl',
|
|
53
|
+
meta: 'Meta',
|
|
54
|
+
cmd: 'Win',
|
|
55
|
+
command: 'Win',
|
|
56
|
+
ctrl: 'Ctrl',
|
|
57
|
+
control: 'Ctrl',
|
|
58
|
+
alt: 'Alt',
|
|
59
|
+
option: 'Alt',
|
|
60
|
+
shift: 'Shift',
|
|
61
|
+
enter: 'Enter',
|
|
62
|
+
return: 'Enter',
|
|
63
|
+
esc: 'Esc',
|
|
64
|
+
escape: 'Esc',
|
|
65
|
+
backspace: 'Backspace',
|
|
66
|
+
delete: 'Del',
|
|
67
|
+
del: 'Del',
|
|
68
|
+
tab: 'Tab',
|
|
69
|
+
space: 'Space',
|
|
70
|
+
up: '↑',
|
|
71
|
+
arrowup: '↑',
|
|
72
|
+
down: '↓',
|
|
73
|
+
arrowdown: '↓',
|
|
74
|
+
left: '←',
|
|
75
|
+
arrowleft: '←',
|
|
76
|
+
right: '→',
|
|
77
|
+
arrowright: '→',
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Detect macOS so we can render the platform-appropriate modifier glyphs.
|
|
81
|
+
*
|
|
82
|
+
* This intentionally mirrors `react-hotkeys-hook`'s own Apple detection
|
|
83
|
+
* (`/mac/i.test(navigator.userAgent)` excluding iOS) so the displayed hint
|
|
84
|
+
* always matches the modifier the library actually listens for — using a
|
|
85
|
+
* different source (e.g. `navigator.platform`) could make the hint say `⌘`
|
|
86
|
+
* while the binding expects `Ctrl`, or vice versa.
|
|
87
|
+
*/
|
|
88
|
+
var isMacOS = function () {
|
|
89
|
+
if (typeof navigator === 'undefined') {
|
|
90
|
+
return false;
|
|
91
|
+
}
|
|
92
|
+
var ua = navigator.userAgent;
|
|
93
|
+
return /mac/i.test(ua) && !/iphone|ipad|ipod/i.test(ua);
|
|
94
|
+
};
|
|
95
|
+
exports.isMacOS = isMacOS;
|
|
96
|
+
var formatToken = function (token, mac) {
|
|
97
|
+
var key = token.trim().toLowerCase();
|
|
98
|
+
// The `focusRules` shortcut on inputs supports these aliases that match any
|
|
99
|
+
// letter / number key — render a readable range instead of the literal word.
|
|
100
|
+
if (key === 'letters') {
|
|
101
|
+
return 'A-Z';
|
|
102
|
+
}
|
|
103
|
+
if (key === 'numbers') {
|
|
104
|
+
return '0-9';
|
|
105
|
+
}
|
|
106
|
+
var map = mac ? KEY_SYMBOLS_MAC : KEY_LABELS;
|
|
107
|
+
if (map[key]) {
|
|
108
|
+
return map[key];
|
|
109
|
+
}
|
|
110
|
+
if (key.length === 1) {
|
|
111
|
+
return key.toUpperCase();
|
|
112
|
+
}
|
|
113
|
+
return key.charAt(0).toUpperCase() + key.slice(1);
|
|
114
|
+
};
|
|
115
|
+
var splitShortcut = function (shortcut) {
|
|
116
|
+
return (Array.isArray(shortcut) ? shortcut : [shortcut])
|
|
117
|
+
.flatMap(function (combo) { return (typeof combo === 'string' ? combo.split(',') : []); })
|
|
118
|
+
.map(function (combo) { return combo.trim(); })
|
|
119
|
+
.filter(Boolean);
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* Turn a single combo (e.g. `'mod+shift+k'`) into a display string.
|
|
123
|
+
* macOS concatenates glyphs (`⌘⇧K`), other platforms join with `+` (`Ctrl+Shift+K`).
|
|
124
|
+
*/
|
|
125
|
+
var formatShortcutCombo = function (combo, mac) {
|
|
126
|
+
if (mac === void 0) { mac = (0, exports.isMacOS)(); }
|
|
127
|
+
return combo
|
|
128
|
+
.split('+')
|
|
129
|
+
.map(function (token) { return formatToken(token, mac); })
|
|
130
|
+
.join(mac ? '' : '+');
|
|
131
|
+
};
|
|
132
|
+
exports.formatShortcutCombo = formatShortcutCombo;
|
|
133
|
+
/**
|
|
134
|
+
* Format a shortcut declaration into one display string per alternative combo.
|
|
135
|
+
*/
|
|
136
|
+
var formatShortcut = function (shortcut, mac) {
|
|
137
|
+
if (mac === void 0) { mac = (0, exports.isMacOS)(); }
|
|
138
|
+
return splitShortcut(shortcut).map(function (combo) { return (0, exports.formatShortcutCombo)(combo, mac); });
|
|
139
|
+
};
|
|
140
|
+
exports.formatShortcut = formatShortcut;
|
|
141
|
+
/**
|
|
142
|
+
* Whether any combo in the shortcut uses a modifier key. Used to decide if a
|
|
143
|
+
* button shortcut should still fire while a form field is focused (combos with a
|
|
144
|
+
* modifier are safe; bare single keys would clash with typing).
|
|
145
|
+
*/
|
|
146
|
+
var shortcutHasModifier = function (shortcut) {
|
|
147
|
+
return splitShortcut(shortcut).some(function (combo) {
|
|
148
|
+
return combo.split('+').some(function (token) { return MODIFIER_KEYS.includes(token.trim().toLowerCase()); });
|
|
149
|
+
});
|
|
150
|
+
};
|
|
151
|
+
exports.shortcutHasModifier = shortcutHasModifier;
|
|
152
|
+
//# sourceMappingURL=shortcuts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shortcuts.js","sourceRoot":"","sources":["../../src/helpers/shortcuts.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export { ReqoreCommentFeed } from './components/CommentFeed';
|
|
|
14
14
|
export { default as ReqoreContent } from './components/Content';
|
|
15
15
|
export { default as ReqoreControlGroup } from './components/ControlGroup';
|
|
16
16
|
export type { IReqoreDataViewEmbedded, IReqoreDataViewEnvelope, IReqoreDataViewProps, } from './components/DataView';
|
|
17
|
-
export { DEFAULT_ENVELOPE as ReqoreDataViewDefaultEnvelope, ReqoreDataView, reqoreDataValueIntent, reqoreDataValueKind, reqoreEnvelopeType, reqoreFormatScalar, reqoreHasStructuredValue, reqoreIsEnvelope, reqoreIsRecord, reqoreUnwrapEnvelope, } from './components/DataView';
|
|
17
|
+
export { DEFAULT_ENVELOPE as ReqoreDataViewDefaultEnvelope, ReqoreDataView, reqoreDataValueIntent, reqoreDataValueKind, reqoreCoerceValueToKind, reqoreDeleteAtPath, reqoreEnvelopeType, reqoreFormatScalar, reqoreHasStructuredValue, reqoreIsEnvelope, reqoreIsRecord, reqoreRenameKeyAtPath, reqoreSetAtPath, reqoreUnwrapEnvelope, } from './components/DataView';
|
|
18
18
|
export * from './components/DatePicker';
|
|
19
19
|
export { ReqoreDescriptionList } from './components/DescriptionList';
|
|
20
20
|
export { ReqoreDrawer } from './components/Drawer';
|
|
@@ -31,6 +31,10 @@ export { ReqoreH1, ReqoreH2, ReqoreH3, ReqoreH4, ReqoreH5, ReqoreH6, ReqoreHeadi
|
|
|
31
31
|
export { default as ReqoreIcon } from './components/Icon';
|
|
32
32
|
export { ReqoreIconPicker } from './components/IconPicker';
|
|
33
33
|
export { default as ReqoreInput } from './components/Input';
|
|
34
|
+
export { default as ReqoreKeyboardShortcut, ReqoreKeyboardShortcut as ReqoreKeyboardShortcutComponent, } from './components/KeyboardShortcut';
|
|
35
|
+
export type { IReqoreKeyboardShortcutProps } from './components/KeyboardShortcut';
|
|
36
|
+
export { formatShortcut, formatShortcutCombo, isMacOS, shortcutHasModifier, } from './helpers/shortcuts';
|
|
37
|
+
export type { TReqoreKeyboardShortcut } from './helpers/shortcuts';
|
|
34
38
|
export { ReqoreKeyValueTable } from './components/KeyValueTable';
|
|
35
39
|
export * from './components/Label';
|
|
36
40
|
export { default as ReqoreLayoutContent } from './components/Layout/content';
|
|
@@ -64,6 +68,7 @@ export { ReqoreSlider } from './components/Slider';
|
|
|
64
68
|
export { ReqoreHorizontalSpacer, ReqoreSpacer, ReqoreVerticalSpacer } from './components/Spacer';
|
|
65
69
|
export { ReqoreSpan } from './components/Span';
|
|
66
70
|
export { ReqoreSpinner } from './components/Spinner';
|
|
71
|
+
export { default as ReqoreStackedBar } from './components/StackedBar';
|
|
67
72
|
export { default as ReqoreStatistic } from './components/Statistic';
|
|
68
73
|
export { default as ReqoreTable } from './components/Table';
|
|
69
74
|
export { ReqoreTableBodyCell } from './components/Table/cell';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -17,9 +17,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
17
17
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
18
|
};
|
|
19
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.useReqoreTheme = exports.useReqoreProperty = exports.useReqore = exports.useReqorePaging = exports.useLatestZIndex = exports.useCloneThroughFragments = exports.ReqoreThemeContext = exports.ReqoreContext = exports.ReqoreUIProvider = exports.modalStore = exports.ReqoreNotifications = exports.ReqorePaginationContainer = exports.ReqoreIntents = exports.ReqoreSizes = exports.ReqoreColors = exports.ReqoreTree = exports.ReqoreTimeline = exports.ReqoreTimeAgo = void 0;
|
|
20
|
+
exports.ReqoreHeading = exports.ReqoreH6 = exports.ReqoreH5 = exports.ReqoreH4 = exports.ReqoreH3 = exports.ReqoreH2 = exports.ReqoreH1 = exports.ReqoreModalsWrapper = exports.ReqoreFeatureCard = exports.ReqoreErrorBoundary = exports.ReqoreEmptyState = exports.ReqoreTextEffect = exports.ReqoreEffect = exports.ReqoreDropdownItem = exports.ReqoreDropdownDivider = exports.ReqoreEntityRow = exports.ReqoreDropdown = exports.ReqoreBackdrop = exports.ReqoreDrawer = exports.ReqoreDescriptionList = exports.reqoreUnwrapEnvelope = exports.reqoreSetAtPath = exports.reqoreRenameKeyAtPath = exports.reqoreIsRecord = exports.reqoreIsEnvelope = exports.reqoreHasStructuredValue = exports.reqoreFormatScalar = exports.reqoreEnvelopeType = exports.reqoreDeleteAtPath = exports.reqoreCoerceValueToKind = exports.reqoreDataValueKind = exports.reqoreDataValueIntent = exports.ReqoreDataView = exports.ReqoreDataViewDefaultEnvelope = exports.ReqoreControlGroup = exports.ReqoreContent = exports.ReqoreCommentFeed = exports.ReqoreComment = exports.ReqoreColumn = exports.ReqoreColumns = exports.ReqoreCollection = exports.ReqoreCollapsibleContent = exports.ReqoreCheckbox = exports.ReqoreCallout = exports.ReqoreButton = exports.ReqoreBubbleGroup = exports.ReqoreBubble = exports.ReqoreBreadcrumbsItem = exports.ReqoreBreadcrumbs = exports.ReqoreAccordion = void 0;
|
|
21
|
+
exports.ReqoreTableHeaderCell = exports.ReqoreTableBodyCell = exports.ReqoreTable = exports.ReqoreStatistic = exports.ReqoreStackedBar = exports.ReqoreSpinner = exports.ReqoreSpan = exports.ReqoreVerticalSpacer = exports.ReqoreSpacer = exports.ReqoreHorizontalSpacer = exports.ReqoreSlider = exports.ReqoreSkeleton = exports.ReqoreRichTextEditor = exports.ReqoreSeverityRow = exports.ReqoreSegmentedControl = exports.ReqoreRating = exports.ReqoreRadioGroup = exports.ReqoreProgress = exports.ReqorePopover = exports.ReqoreParagraph = exports.ReqoreP = exports.ReqorePanelSkeleton = exports.ReqorePanel = exports.ReqorePagination = exports.ReqoreNotification = exports.ReqoreNotificationsWrapper = exports.ReqoreNavbarItem = exports.ReqoreNavbarGroup = exports.ReqoreNavbarDivider = exports.ReqoreHeader = exports.ReqoreFooter = exports.ReqoreMultiSelect = exports.ReqoreModal = exports.ReqoreMessage = exports.ReqoreMenuSection = exports.ReqoreMenuItem = exports.ReqoreMenuDivider = exports.ReqoreMenu = exports.ReqoreLink = exports.ReqoreLayoutContent = exports.ReqoreKeyValueTable = exports.shortcutHasModifier = exports.isMacOS = exports.formatShortcutCombo = exports.formatShortcut = exports.ReqoreKeyboardShortcutComponent = exports.ReqoreKeyboardShortcut = exports.ReqoreInput = exports.ReqoreIconPicker = exports.ReqoreIcon = void 0;
|
|
22
|
+
exports.useReqoreTheme = exports.useReqoreProperty = exports.useReqore = exports.useReqorePaging = exports.useLatestZIndex = exports.useCloneThroughFragments = exports.ReqoreThemeContext = exports.ReqoreContext = exports.ReqoreUIProvider = exports.modalStore = exports.ReqoreNotifications = exports.ReqorePaginationContainer = exports.ReqoreIntents = exports.ReqoreSizes = exports.ReqoreColors = exports.ReqoreTree = exports.ReqoreTimeline = exports.ReqoreTimeAgo = exports.ReqoreTier = exports.ReqoreTextarea = exports.ReqoreTestimonial = exports.ReqoreTagGroup = exports.ReqoreTag = exports.ReqoreTabsList = exports.ReqoreTabsListItem = exports.ReqoreTabsContent = exports.ReqoreTabs = exports.ReqoreTableValue = exports.ReqoreTableRow = void 0;
|
|
23
23
|
var Accordion_1 = require("./components/Accordion");
|
|
24
24
|
Object.defineProperty(exports, "ReqoreAccordion", { enumerable: true, get: function () { return Accordion_1.ReqoreAccordion; } });
|
|
25
25
|
var Breadcrumbs_1 = require("./components/Breadcrumbs");
|
|
@@ -56,11 +56,15 @@ Object.defineProperty(exports, "ReqoreDataViewDefaultEnvelope", { enumerable: tr
|
|
|
56
56
|
Object.defineProperty(exports, "ReqoreDataView", { enumerable: true, get: function () { return DataView_1.ReqoreDataView; } });
|
|
57
57
|
Object.defineProperty(exports, "reqoreDataValueIntent", { enumerable: true, get: function () { return DataView_1.reqoreDataValueIntent; } });
|
|
58
58
|
Object.defineProperty(exports, "reqoreDataValueKind", { enumerable: true, get: function () { return DataView_1.reqoreDataValueKind; } });
|
|
59
|
+
Object.defineProperty(exports, "reqoreCoerceValueToKind", { enumerable: true, get: function () { return DataView_1.reqoreCoerceValueToKind; } });
|
|
60
|
+
Object.defineProperty(exports, "reqoreDeleteAtPath", { enumerable: true, get: function () { return DataView_1.reqoreDeleteAtPath; } });
|
|
59
61
|
Object.defineProperty(exports, "reqoreEnvelopeType", { enumerable: true, get: function () { return DataView_1.reqoreEnvelopeType; } });
|
|
60
62
|
Object.defineProperty(exports, "reqoreFormatScalar", { enumerable: true, get: function () { return DataView_1.reqoreFormatScalar; } });
|
|
61
63
|
Object.defineProperty(exports, "reqoreHasStructuredValue", { enumerable: true, get: function () { return DataView_1.reqoreHasStructuredValue; } });
|
|
62
64
|
Object.defineProperty(exports, "reqoreIsEnvelope", { enumerable: true, get: function () { return DataView_1.reqoreIsEnvelope; } });
|
|
63
65
|
Object.defineProperty(exports, "reqoreIsRecord", { enumerable: true, get: function () { return DataView_1.reqoreIsRecord; } });
|
|
66
|
+
Object.defineProperty(exports, "reqoreRenameKeyAtPath", { enumerable: true, get: function () { return DataView_1.reqoreRenameKeyAtPath; } });
|
|
67
|
+
Object.defineProperty(exports, "reqoreSetAtPath", { enumerable: true, get: function () { return DataView_1.reqoreSetAtPath; } });
|
|
64
68
|
Object.defineProperty(exports, "reqoreUnwrapEnvelope", { enumerable: true, get: function () { return DataView_1.reqoreUnwrapEnvelope; } });
|
|
65
69
|
__exportStar(require("./components/DatePicker"), exports);
|
|
66
70
|
var DescriptionList_1 = require("./components/DescriptionList");
|
|
@@ -101,6 +105,14 @@ var IconPicker_1 = require("./components/IconPicker");
|
|
|
101
105
|
Object.defineProperty(exports, "ReqoreIconPicker", { enumerable: true, get: function () { return IconPicker_1.ReqoreIconPicker; } });
|
|
102
106
|
var Input_1 = require("./components/Input");
|
|
103
107
|
Object.defineProperty(exports, "ReqoreInput", { enumerable: true, get: function () { return __importDefault(Input_1).default; } });
|
|
108
|
+
var KeyboardShortcut_1 = require("./components/KeyboardShortcut");
|
|
109
|
+
Object.defineProperty(exports, "ReqoreKeyboardShortcut", { enumerable: true, get: function () { return __importDefault(KeyboardShortcut_1).default; } });
|
|
110
|
+
Object.defineProperty(exports, "ReqoreKeyboardShortcutComponent", { enumerable: true, get: function () { return KeyboardShortcut_1.ReqoreKeyboardShortcut; } });
|
|
111
|
+
var shortcuts_1 = require("./helpers/shortcuts");
|
|
112
|
+
Object.defineProperty(exports, "formatShortcut", { enumerable: true, get: function () { return shortcuts_1.formatShortcut; } });
|
|
113
|
+
Object.defineProperty(exports, "formatShortcutCombo", { enumerable: true, get: function () { return shortcuts_1.formatShortcutCombo; } });
|
|
114
|
+
Object.defineProperty(exports, "isMacOS", { enumerable: true, get: function () { return shortcuts_1.isMacOS; } });
|
|
115
|
+
Object.defineProperty(exports, "shortcutHasModifier", { enumerable: true, get: function () { return shortcuts_1.shortcutHasModifier; } });
|
|
104
116
|
var KeyValueTable_1 = require("./components/KeyValueTable");
|
|
105
117
|
Object.defineProperty(exports, "ReqoreKeyValueTable", { enumerable: true, get: function () { return KeyValueTable_1.ReqoreKeyValueTable; } });
|
|
106
118
|
__exportStar(require("./components/Label"), exports);
|
|
@@ -169,6 +181,8 @@ var Span_1 = require("./components/Span");
|
|
|
169
181
|
Object.defineProperty(exports, "ReqoreSpan", { enumerable: true, get: function () { return Span_1.ReqoreSpan; } });
|
|
170
182
|
var Spinner_1 = require("./components/Spinner");
|
|
171
183
|
Object.defineProperty(exports, "ReqoreSpinner", { enumerable: true, get: function () { return Spinner_1.ReqoreSpinner; } });
|
|
184
|
+
var StackedBar_1 = require("./components/StackedBar");
|
|
185
|
+
Object.defineProperty(exports, "ReqoreStackedBar", { enumerable: true, get: function () { return __importDefault(StackedBar_1).default; } });
|
|
172
186
|
var Statistic_1 = require("./components/Statistic");
|
|
173
187
|
Object.defineProperty(exports, "ReqoreStatistic", { enumerable: true, get: function () { return __importDefault(Statistic_1).default; } });
|
|
174
188
|
var Table_1 = require("./components/Table");
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,oDAAyD;AAAhD,4GAAA,eAAe,OAAA;AACxB,wDAAwE;AAA/D,iIAAA,OAAO,OAAqB;AACrC,sDAAiF;AAAxE,8HAAA,OAAO,OAAyB;AACzC,8CAAsE;AAA7D,sGAAA,YAAY,OAAA;AAAE,2GAAA,iBAAiB,OAAA;AACxC,8CAA8D;AAArD,uHAAA,OAAO,OAAgB;AAChC,gDAAqD;AAA5C,wGAAA,aAAa,OAAA;AACtB,kDAAkE;AAAzD,2HAAA,OAAO,OAAkB;AAClC,sEAA2E;AAAlE,8HAAA,wBAAwB,OAAA;AACjC,sDAA2D;AAAlD,8GAAA,gBAAgB,OAAA;AACzB,gDAAqD;AAA5C,wGAAA,aAAa,OAAA;AACtB,sDAA2D;AAAlD,sGAAA,YAAY,OAAA;AACrB,gDAAqD;AAA5C,wGAAA,aAAa,OAAA;AACtB,wDAA6D;AAApD,gHAAA,iBAAiB,OAAA;AAC1B,gDAAgE;AAAvD,yHAAA,OAAO,OAAiB;AACjC,0DAA0E;AAAjE,mIAAA,OAAO,OAAsB;AAMtC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qoretechnologies/reqore",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.70.1",
|
|
4
4
|
"description": "ReQore is a highly theme-able and modular UI library for React",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@docusaurus/core": "^3.6.0",
|
|
49
49
|
"@docusaurus/preset-classic": "^3.6.0",
|
|
50
|
-
"@qoretechnologies/qlip": "^0.1.
|
|
50
|
+
"@qoretechnologies/qlip": "^0.1.3-beta.20260622084321",
|
|
51
51
|
"@storybook/addon-docs": "^10.4.3",
|
|
52
52
|
"@storybook/addon-links": "^10.4.3",
|
|
53
53
|
"@storybook/addon-vitest": "^10.4.3",
|
|
@@ -102,6 +102,7 @@
|
|
|
102
102
|
"polished": "^4.2.2",
|
|
103
103
|
"re-resizable": "^6.9.0",
|
|
104
104
|
"react-aria-components": "^1.2.0",
|
|
105
|
+
"react-hotkeys-hook": "^5.3.2",
|
|
105
106
|
"react-icons": "5.4.0",
|
|
106
107
|
"react-popper": "^2.3.0",
|
|
107
108
|
"react-scrollbar": "^0.5.6",
|