@qoretechnologies/reqore 0.73.8 → 0.73.9

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.
@@ -0,0 +1,52 @@
1
+ import { type CSSProperties, type ReactNode } from 'react';
2
+ /** Shared timing for anything that folds. See `ReqoreCollapse`. */
3
+ export declare const REQORE_COLLAPSE_DURATION_MS = 250;
4
+ export declare const REQORE_COLLAPSE_EASING = "cubic-bezier(0.4, 0, 0.2, 1)";
5
+ /**
6
+ * The transition to put on something that must move WITH a collapse but is not
7
+ * itself one — a title's font-size, a spacer's height, a margin.
8
+ *
9
+ * Two folds on different durations read as a stutter rather than as one
10
+ * movement, which is the whole reason this timing is shared rather than typed
11
+ * out per call site.
12
+ */
13
+ export declare const reqoreCollapseTransition: (...properties: string[]) => string;
14
+ export interface IReqoreCollapseProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'> {
15
+ /** When true the content folds away — height to zero, faded out. */
16
+ collapsed: boolean;
17
+ children: ReactNode;
18
+ /**
19
+ * Gap the host's flex/grid layout puts BELOW this block, in pixels.
20
+ *
21
+ * A folded block still costs its parent's `gap`, which leaves a hole exactly
22
+ * where the content used to be. Pass the parent's gap and the fold pulls the
23
+ * next row up by it, on the same curve — so the hole closes as part of the
24
+ * same movement instead of snapping shut at the end.
25
+ */
26
+ hostGap?: number;
27
+ /**
28
+ * Animate the fold. Honoured only when the global `animations.dialogs` flag
29
+ * is not disabled in the `ReqoreUIProvider` and the user is not in
30
+ * `prefers-reduced-motion`; either of those makes the fold instant.
31
+ * @default true
32
+ */
33
+ animated?: boolean;
34
+ style?: CSSProperties;
35
+ }
36
+ /**
37
+ * A controlled, buttonless collapse for a block of content.
38
+ *
39
+ * The host decides, not the reader: page chrome that folds as a table scrolls,
40
+ * a section that closes when a mode changes, a rail that gives up its room
41
+ * when space runs short. There is deliberately no affordance of its own — if
42
+ * the reader is the one deciding, `ReqoreCollapsibleContent` (a "Show more"
43
+ * reveal, which ships its toggle) or `ReqorePanel`'s own collapse is the
44
+ * component you want.
45
+ *
46
+ * What it adds over hiding the content outright is that the height ANIMATES,
47
+ * so several pieces of chrome folding at once read as one movement rather than
48
+ * as a stutter of things disappearing.
49
+ */
50
+ export declare const ReqoreCollapse: import("react").MemoExoticComponent<(props: IReqoreCollapseProps & import("react").RefAttributes<HTMLDivElement>) => import("react").ReactElement | null>;
51
+ export default ReqoreCollapse;
52
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Collapse/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAA6B,KAAK,aAAa,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAItF,mEAAmE;AACnE,eAAO,MAAM,2BAA2B,MAAM,CAAC;AAC/C,eAAO,MAAM,sBAAsB,iCAAiC,CAAC;AAErE;;;;;;;GAOG;AACH,eAAO,MAAM,wBAAwB,GAAI,GAAG,YAAY,MAAM,EAAE,KAAG,MAMpD,CAAC;AAEhB,MAAM,WAAW,oBACf,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,UAAU,CAAC;IAC9D,oEAAoE;IACpE,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,SAAS,CAAC;IACpB;;;;;;;OAOG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,aAAa,CAAC;CACvB;AA4CD;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,cAAc,2JAsC1B,CAAC;AAIF,eAAe,cAAc,CAAC"}
@@ -0,0 +1,127 @@
1
+ "use strict";
2
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
+ return cooked;
5
+ };
6
+ var __assign = (this && this.__assign) || function () {
7
+ __assign = Object.assign || function(t) {
8
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
9
+ s = arguments[i];
10
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
11
+ t[p] = s[p];
12
+ }
13
+ return t;
14
+ };
15
+ return __assign.apply(this, arguments);
16
+ };
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || (function () {
34
+ var ownKeys = function(o) {
35
+ ownKeys = Object.getOwnPropertyNames || function (o) {
36
+ var ar = [];
37
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
38
+ return ar;
39
+ };
40
+ return ownKeys(o);
41
+ };
42
+ return function (mod) {
43
+ if (mod && mod.__esModule) return mod;
44
+ var result = {};
45
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
46
+ __setModuleDefault(result, mod);
47
+ return result;
48
+ };
49
+ })();
50
+ var __rest = (this && this.__rest) || function (s, e) {
51
+ var t = {};
52
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
53
+ t[p] = s[p];
54
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
55
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
56
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
57
+ t[p[i]] = s[p[i]];
58
+ }
59
+ return t;
60
+ };
61
+ Object.defineProperty(exports, "__esModule", { value: true });
62
+ exports.ReqoreCollapse = exports.reqoreCollapseTransition = exports.REQORE_COLLAPSE_EASING = exports.REQORE_COLLAPSE_DURATION_MS = void 0;
63
+ var jsx_runtime_1 = require("react/jsx-runtime");
64
+ var react_1 = require("react");
65
+ var styled_components_1 = __importStar(require("styled-components"));
66
+ var useReqoreContext_1 = require("../../hooks/useReqoreContext");
67
+ /** Shared timing for anything that folds. See `ReqoreCollapse`. */
68
+ exports.REQORE_COLLAPSE_DURATION_MS = 250;
69
+ exports.REQORE_COLLAPSE_EASING = 'cubic-bezier(0.4, 0, 0.2, 1)';
70
+ /**
71
+ * The transition to put on something that must move WITH a collapse but is not
72
+ * itself one — a title's font-size, a spacer's height, a margin.
73
+ *
74
+ * Two folds on different durations read as a stutter rather than as one
75
+ * movement, which is the whole reason this timing is shared rather than typed
76
+ * out per call site.
77
+ */
78
+ var reqoreCollapseTransition = function () {
79
+ var properties = [];
80
+ for (var _i = 0; _i < arguments.length; _i++) {
81
+ properties[_i] = arguments[_i];
82
+ }
83
+ return properties
84
+ .map(function (property) {
85
+ return "".concat(property, " ").concat(exports.REQORE_COLLAPSE_DURATION_MS, "ms ").concat(exports.REQORE_COLLAPSE_EASING);
86
+ })
87
+ .join(', ');
88
+ };
89
+ exports.reqoreCollapseTransition = reqoreCollapseTransition;
90
+ var StyledCollapse = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), function (_a) {
91
+ var $collapsed = _a.$collapsed, $hostGap = _a.$hostGap, $animated = _a.$animated;
92
+ return (0, styled_components_1.css)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n display: grid;\n /* CSS cannot transition an auto height, but it CAN transition a grid\n track: a one-row grid going 1fr to 0fr squeezes its child, so arbitrary\n content folds with no measurement, no ResizeObserver, and no pixel\n height that rots the moment the content changes. */\n grid-template-rows: ", ";\n opacity: ", ";\n margin-bottom: ", ";\n overflow: hidden;\n ", "\n "], ["\n display: grid;\n /* CSS cannot transition an auto height, but it CAN transition a grid\n track: a one-row grid going 1fr to 0fr squeezes its child, so arbitrary\n content folds with no measurement, no ResizeObserver, and no pixel\n height that rots the moment the content changes. */\n grid-template-rows: ", ";\n opacity: ", ";\n margin-bottom: ", ";\n overflow: hidden;\n ", "\n "])), $collapsed ? '0fr' : '1fr', $collapsed ? 0 : 1, $collapsed ? "".concat(-$hostGap, "px") : 0, $animated
93
+ ? (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n transition: ", ";\n "], ["\n transition: ", ";\n "])), (0, exports.reqoreCollapseTransition)('grid-template-rows', 'opacity', 'margin-bottom')) : '');
94
+ });
95
+ var StyledCollapseContent = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), function (_a) {
96
+ var $collapsed = _a.$collapsed, $animated = _a.$animated;
97
+ return (0, styled_components_1.css)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n min-height: 0;\n overflow: hidden;\n /* Visibility takes folded content out of the tab order without\n unmounting it \u2014 a zero-height box is still focusable otherwise, so a\n keyboard user lands on controls they cannot see. Hiding waits for the\n fold to finish; showing is immediate, so the animation is never cut\n short at either end. */\n visibility: ", ";\n transition: visibility 0s linear\n ", ";\n "], ["\n min-height: 0;\n overflow: hidden;\n /* Visibility takes folded content out of the tab order without\n unmounting it \u2014 a zero-height box is still focusable otherwise, so a\n keyboard user lands on controls they cannot see. Hiding waits for the\n fold to finish; showing is immediate, so the animation is never cut\n short at either end. */\n visibility: ", ";\n transition: visibility 0s linear\n ", ";\n "])), $collapsed ? 'hidden' : 'visible', $collapsed && $animated ? "".concat(exports.REQORE_COLLAPSE_DURATION_MS, "ms") : '0s');
98
+ });
99
+ /**
100
+ * A controlled, buttonless collapse for a block of content.
101
+ *
102
+ * The host decides, not the reader: page chrome that folds as a table scrolls,
103
+ * a section that closes when a mode changes, a rail that gives up its room
104
+ * when space runs short. There is deliberately no affordance of its own — if
105
+ * the reader is the one deciding, `ReqoreCollapsibleContent` (a "Show more"
106
+ * reveal, which ships its toggle) or `ReqorePanel`'s own collapse is the
107
+ * component you want.
108
+ *
109
+ * What it adds over hiding the content outright is that the height ANIMATES,
110
+ * so several pieces of chrome folding at once read as one movement rather than
111
+ * as a stutter of things disappearing.
112
+ */
113
+ exports.ReqoreCollapse = (0, react_1.memo)((0, react_1.forwardRef)(function (_a, ref) {
114
+ var collapsed = _a.collapsed, children = _a.children, _b = _a.hostGap, hostGap = _b === void 0 ? 0 : _b, _c = _a.animated, animated = _c === void 0 ? true : _c, style = _a.style, rest = __rest(_a, ["collapsed", "children", "hostGap", "animated", "style"]);
115
+ var animations = (0, useReqoreContext_1.useReqoreProperty)('animations');
116
+ var prefersReducedMotion = (0, react_1.useMemo)(function () {
117
+ return typeof window !== 'undefined' &&
118
+ typeof window.matchMedia === 'function' &&
119
+ window.matchMedia('(prefers-reduced-motion: reduce)').matches;
120
+ }, []);
121
+ var animationsEnabled = animated && (animations === null || animations === void 0 ? void 0 : animations.dialogs) !== false && !prefersReducedMotion;
122
+ return ((0, jsx_runtime_1.jsx)(StyledCollapse, __assign({}, rest, { ref: ref, className: "".concat(rest.className || '', " reqore-collapse").trim(), "aria-hidden": collapsed, "$collapsed": collapsed, "$hostGap": hostGap, "$animated": animationsEnabled, style: style, children: (0, jsx_runtime_1.jsx)(StyledCollapseContent, { className: 'reqore-collapse-content', "$collapsed": collapsed, "$animated": animationsEnabled, children: children }) })));
123
+ }));
124
+ exports.ReqoreCollapse.displayName = 'ReqoreCollapse';
125
+ exports.default = exports.ReqoreCollapse;
126
+ var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5;
127
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/Collapse/index.tsx"],"names":[],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -5,6 +5,8 @@ export { ReqoreBubble, ReqoreBubbleGroup } from './components/Bubble';
5
5
  export { default as ReqoreButton } from './components/Button';
6
6
  export { ReqoreCallout } from './components/Callout';
7
7
  export { default as ReqoreCheckbox } from './components/Checkbox';
8
+ export { REQORE_COLLAPSE_DURATION_MS, REQORE_COLLAPSE_EASING, ReqoreCollapse, reqoreCollapseTransition, } from './components/Collapse';
9
+ export type { IReqoreCollapseProps } from './components/Collapse';
8
10
  export { ReqoreCollapsibleContent } from './components/CollapsibleContent';
9
11
  export { ReqoreCollection } from './components/Collection';
10
12
  export { ReqoreColumns } from './components/Columns';
@@ -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.ReqoreH5 = exports.ReqoreH4 = exports.ReqoreH3 = exports.ReqoreH2 = exports.ReqoreH1 = exports.ReqoreModalsWrapper = exports.ReqoreFeatureCard = exports.ReqoreFadeScroller = 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.ReqoreControlGroupItem = 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.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.ReqoreNavRail = 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 = exports.ReqoreHeading = exports.ReqoreH6 = 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.ReqoreFonts = exports.ReqoreColors = exports.ReqoreTree = exports.ReqoreTimeline = exports.ReqoreTimeAgo = exports.ReqoreTier = exports.ReqoreTextarea = exports.ReqoreTestimonial = exports.ReqoreTagGroup = exports.ReqoreTag = exports.DEFAULT_TABS_OVERFLOW_MENU_MAX_HEIGHT = exports.ReqoreTabsList = exports.ReqoreTabsListItem = exports.ReqoreTabsContent = exports.ReqoreTabs = exports.ReqoreTableValue = exports.ReqoreTableRow = exports.ReqoreTableHeaderCell = exports.ReqoreTableBodyCell = exports.ReqoreTable = void 0;
20
+ exports.ReqoreH1 = exports.ReqoreModalsWrapper = exports.ReqoreFeatureCard = exports.ReqoreFadeScroller = 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.ReqoreControlGroupItem = exports.ReqoreControlGroup = exports.ReqoreContent = exports.ReqoreCommentFeed = exports.ReqoreComment = exports.ReqoreColumn = exports.ReqoreColumns = exports.ReqoreCollection = exports.ReqoreCollapsibleContent = exports.reqoreCollapseTransition = exports.ReqoreCollapse = exports.REQORE_COLLAPSE_EASING = exports.REQORE_COLLAPSE_DURATION_MS = exports.ReqoreCheckbox = exports.ReqoreCallout = exports.ReqoreButton = exports.ReqoreBubbleGroup = exports.ReqoreBubble = exports.ReqoreBreadcrumbsItem = exports.ReqoreBreadcrumbs = exports.ReqoreAccordion = void 0;
21
+ 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.ReqoreNavRail = 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 = exports.ReqoreHeading = exports.ReqoreH6 = exports.ReqoreH5 = exports.ReqoreH4 = exports.ReqoreH3 = exports.ReqoreH2 = 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.ReqoreFonts = exports.ReqoreColors = exports.ReqoreTree = exports.ReqoreTimeline = exports.ReqoreTimeAgo = exports.ReqoreTier = exports.ReqoreTextarea = exports.ReqoreTestimonial = exports.ReqoreTagGroup = exports.ReqoreTag = exports.DEFAULT_TABS_OVERFLOW_MENU_MAX_HEIGHT = exports.ReqoreTabsList = exports.ReqoreTabsListItem = exports.ReqoreTabsContent = exports.ReqoreTabs = exports.ReqoreTableValue = exports.ReqoreTableRow = exports.ReqoreTableHeaderCell = exports.ReqoreTableBodyCell = exports.ReqoreTable = exports.ReqoreStatistic = exports.ReqoreStackedBar = exports.ReqoreSpinner = exports.ReqoreSpan = 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");
@@ -35,6 +35,11 @@ var Callout_1 = require("./components/Callout");
35
35
  Object.defineProperty(exports, "ReqoreCallout", { enumerable: true, get: function () { return Callout_1.ReqoreCallout; } });
36
36
  var Checkbox_1 = require("./components/Checkbox");
37
37
  Object.defineProperty(exports, "ReqoreCheckbox", { enumerable: true, get: function () { return __importDefault(Checkbox_1).default; } });
38
+ var Collapse_1 = require("./components/Collapse");
39
+ Object.defineProperty(exports, "REQORE_COLLAPSE_DURATION_MS", { enumerable: true, get: function () { return Collapse_1.REQORE_COLLAPSE_DURATION_MS; } });
40
+ Object.defineProperty(exports, "REQORE_COLLAPSE_EASING", { enumerable: true, get: function () { return Collapse_1.REQORE_COLLAPSE_EASING; } });
41
+ Object.defineProperty(exports, "ReqoreCollapse", { enumerable: true, get: function () { return Collapse_1.ReqoreCollapse; } });
42
+ Object.defineProperty(exports, "reqoreCollapseTransition", { enumerable: true, get: function () { return Collapse_1.reqoreCollapseTransition; } });
38
43
  var CollapsibleContent_1 = require("./components/CollapsibleContent");
39
44
  Object.defineProperty(exports, "ReqoreCollapsibleContent", { enumerable: true, get: function () { return CollapsibleContent_1.ReqoreCollapsibleContent; } });
40
45
  var Collection_1 = require("./components/Collection");
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
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.73.8",
3
+ "version": "0.73.9",
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",