@worknice/whiteboard 0.68.1 → 0.70.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/controls/Action.stories.d.ts +2 -0
- package/dist/controls/Button.d.ts +3 -1
- package/dist/controls/Button.js +10 -2
- package/dist/controls/Button.stories.d.ts +3 -1
- package/dist/controls/ButtonLink.js +6 -0
- package/dist/controls/Disclosure.d.ts +1 -1
- package/dist/controls/Disclosure.js +2 -1
- package/dist/controls/Disclosure.stories.d.ts +3 -1
- package/dist/controls/MenuButton.d.ts +4 -1
- package/dist/controls/MenuButton.js +12 -3
- package/dist/controls/MenuButton.stories.d.ts +2 -1
- package/dist/hud/NavOrgLogo.d.ts +8 -0
- package/dist/hud/NavOrgLogo.js +45 -0
- package/dist/hud/NavOrgLogo.module.js +7 -0
- package/dist/hud/{NavTitle_module.css → NavOrgLogo_module.css} +8 -3
- package/dist/icons/components/CalendarPlus.d.ts +5 -0
- package/dist/icons/components/CalendarPlus.js +14 -0
- package/dist/icons/components/FileCirclePlus.d.ts +5 -0
- package/dist/icons/components/FileCirclePlus.js +14 -0
- package/dist/icons/components/FileImport.d.ts +5 -0
- package/dist/icons/components/FileImport.js +14 -0
- package/dist/icons/components/index.d.ts +3 -0
- package/dist/icons/components/index.js +7 -1
- package/dist/icons/svgs/CalendarPlus.js +2 -0
- package/dist/icons/svgs/FileCirclePlus.js +2 -0
- package/dist/icons/svgs/FileImport.js +2 -0
- package/dist/layouts/FullLayout.d.ts +3 -4
- package/dist/layouts/FullLayout.js +37 -38
- package/dist/layouts/FullLayout.module.js +4 -4
- package/dist/layouts/FullLayout_module.css +95 -71
- package/dist/presentation/Container_module.css +3 -3
- package/dist/presentation/Header.js +1 -0
- package/dist/presentation/Header.module.js +1 -0
- package/dist/presentation/Header_module.css +24 -3
- package/dist/presentation/PageHeader.d.ts +14 -0
- package/dist/presentation/PageHeader.js +36 -0
- package/dist/presentation/PageHeader.module.js +7 -0
- package/dist/presentation/PageHeader_module.css +19 -0
- package/dist/presentation/RichList/RichList.d.ts +6 -2
- package/dist/presentation/RichList/RichList.js +59 -9
- package/dist/presentation/RichList/RichListRow.js +2 -1
- package/dist/presentation/RichList/RichListSkeleton.js +16 -8
- package/dist/presentation/RichList/RichListSkeleton.module.js +2 -1
- package/dist/presentation/RichList/RichListSkeleton_module.css +9 -4
- package/dist/presentation/RichList/helpers.d.ts +4 -0
- package/dist/presentation/RichList/helpers.js +7 -4
- package/dist/presentation/RichList/types.d.ts +7 -0
- package/dist/shared.css +0 -9
- package/dist/static/svg/CalendarPlus.svg +1 -0
- package/dist/static/svg/FileCirclePlus.svg +1 -0
- package/dist/static/svg/FileImport.svg +1 -0
- package/package.json +2 -2
- package/dist/hud/NavTitle.d.ts +0 -8
- package/dist/hud/NavTitle.js +0 -43
- package/dist/hud/NavTitle.module.js +0 -6
|
@@ -48,12 +48,20 @@ const RichListSkeleton = ({ leadingSlot, mainSlot, contentSlots, trailingSlot, r
|
|
|
48
48
|
hasToolbar ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
49
49
|
className: __WEBPACK_EXTERNAL_MODULE__RichListSkeleton_module_js_905f84d0__["default"].toolbar,
|
|
50
50
|
children: [
|
|
51
|
-
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.
|
|
52
|
-
className: __WEBPACK_EXTERNAL_MODULE__RichListSkeleton_module_js_905f84d0__["default"].
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
51
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
52
|
+
className: __WEBPACK_EXTERNAL_MODULE__RichListSkeleton_module_js_905f84d0__["default"].searchbar,
|
|
53
|
+
children: [
|
|
54
|
+
enableRowSelection ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__SkeletonBlock_js_ce81034c__["default"], {
|
|
55
|
+
className: __WEBPACK_EXTERNAL_MODULE__RichListSkeleton_module_js_905f84d0__["default"].checkbox
|
|
56
|
+
}) : null,
|
|
57
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__SkeletonBlock_js_ce81034c__["default"], {
|
|
58
|
+
className: __WEBPACK_EXTERNAL_MODULE__RichListSkeleton_module_js_905f84d0__["default"].line,
|
|
59
|
+
style: {
|
|
60
|
+
height: 20,
|
|
61
|
+
width: 240
|
|
62
|
+
}
|
|
63
|
+
})
|
|
64
|
+
]
|
|
57
65
|
}),
|
|
58
66
|
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
|
|
59
67
|
className: __WEBPACK_EXTERNAL_MODULE__RichListSkeleton_module_js_905f84d0__["default"].grow
|
|
@@ -61,14 +69,14 @@ const RichListSkeleton = ({ leadingSlot, mainSlot, contentSlots, trailingSlot, r
|
|
|
61
69
|
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__SkeletonBlock_js_ce81034c__["default"], {
|
|
62
70
|
className: __WEBPACK_EXTERNAL_MODULE__RichListSkeleton_module_js_905f84d0__["default"].line,
|
|
63
71
|
style: {
|
|
64
|
-
height:
|
|
72
|
+
height: 20,
|
|
65
73
|
width: 84
|
|
66
74
|
}
|
|
67
75
|
}),
|
|
68
76
|
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__SkeletonBlock_js_ce81034c__["default"], {
|
|
69
77
|
className: __WEBPACK_EXTERNAL_MODULE__RichListSkeleton_module_js_905f84d0__["default"].line,
|
|
70
78
|
style: {
|
|
71
|
-
height:
|
|
79
|
+
height: 20,
|
|
72
80
|
width: 84
|
|
73
81
|
}
|
|
74
82
|
})
|
|
@@ -7,6 +7,7 @@ const RichListSkeleton_module_rslib_entry_ = {
|
|
|
7
7
|
grow: "grow-djYGNT",
|
|
8
8
|
checkbox: "checkbox-TgI6UA",
|
|
9
9
|
circle: "circle-Wh22l0",
|
|
10
|
-
line: "line-SMRPlk"
|
|
10
|
+
line: "line-SMRPlk",
|
|
11
|
+
searchbar: "searchbar-SAzIf9"
|
|
11
12
|
};
|
|
12
13
|
export { RichListSkeleton_module_rslib_entry_ as default };
|
|
@@ -20,8 +20,7 @@
|
|
|
20
20
|
box-sizing: border-box;
|
|
21
21
|
align-items: center;
|
|
22
22
|
gap: var(--size-n2);
|
|
23
|
-
|
|
24
|
-
padding: var(--size-n2) var(--richlist-padding-inline, var(--size-n1));
|
|
23
|
+
padding: 17px var(--richlist-padding-inline, var(--size-n1));
|
|
25
24
|
display: flex;
|
|
26
25
|
}
|
|
27
26
|
|
|
@@ -51,11 +50,17 @@
|
|
|
51
50
|
|
|
52
51
|
.circle-Wh22l0 {
|
|
53
52
|
border-radius: 50%;
|
|
54
|
-
width:
|
|
55
|
-
height:
|
|
53
|
+
width: 48px;
|
|
54
|
+
height: 48px;
|
|
56
55
|
}
|
|
57
56
|
|
|
58
57
|
.line-SMRPlk {
|
|
59
58
|
height: 16px;
|
|
60
59
|
}
|
|
61
60
|
|
|
61
|
+
.searchbar-SAzIf9 {
|
|
62
|
+
align-items: center;
|
|
63
|
+
gap: var(--size-00);
|
|
64
|
+
display: flex;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -62,6 +62,10 @@ export declare const RICH_LIST_INLINE_PAD_PRESET_PX: {
|
|
|
62
62
|
};
|
|
63
63
|
export declare const richListInlinePaddingPx: (rowHeight: RichListRowHeightValue) => number;
|
|
64
64
|
export declare const SELECT_COLUMN_ID = "_richListSelect";
|
|
65
|
+
/** Default TanStack column id for `mainSlot.primary` when `RichListTextField.id` is omitted. */
|
|
66
|
+
export declare const RICH_LIST_DEFAULT_PRIMARY_FIELD_ID = "_richList_primary";
|
|
67
|
+
/** Default TanStack column id for `mainSlot.secondary` when `RichListTextField.id` is omitted. */
|
|
68
|
+
export declare const RICH_LIST_DEFAULT_SECONDARY_FIELD_ID = "_richList_secondary";
|
|
65
69
|
export declare const normalizeTextField: <Type>(field: RichListTextField<Type>, position: "primary" | "secondary") => NormalizedTextField<Type>;
|
|
66
70
|
/**
|
|
67
71
|
* Accepts the wider `RichListContentSlot` shape so leading/trailing `RichListSlot`
|
|
@@ -36,9 +36,11 @@ const richListInlinePaddingPx = (rowHeight)=>{
|
|
|
36
36
|
return RICH_LIST_INLINE_PAD_PRESET_PX.large;
|
|
37
37
|
};
|
|
38
38
|
const SELECT_COLUMN_ID = "_richListSelect";
|
|
39
|
+
const RICH_LIST_DEFAULT_PRIMARY_FIELD_ID = "_richList_primary";
|
|
40
|
+
const RICH_LIST_DEFAULT_SECONDARY_FIELD_ID = "_richList_secondary";
|
|
39
41
|
const normalizeTextField = (field, position)=>{
|
|
40
42
|
if ("function" == typeof field) return {
|
|
41
|
-
id:
|
|
43
|
+
id: "primary" === position ? RICH_LIST_DEFAULT_PRIMARY_FIELD_ID : RICH_LIST_DEFAULT_SECONDARY_FIELD_ID,
|
|
42
44
|
position,
|
|
43
45
|
render: field,
|
|
44
46
|
globalFiltering: false,
|
|
@@ -47,7 +49,7 @@ const normalizeTextField = (field, position)=>{
|
|
|
47
49
|
layoutVisibility: "always"
|
|
48
50
|
};
|
|
49
51
|
return {
|
|
50
|
-
id:
|
|
52
|
+
id: field.id ?? ("primary" === position ? RICH_LIST_DEFAULT_PRIMARY_FIELD_ID : RICH_LIST_DEFAULT_SECONDARY_FIELD_ID),
|
|
51
53
|
position,
|
|
52
54
|
label: field.label,
|
|
53
55
|
value: field.value,
|
|
@@ -141,7 +143,8 @@ const richListRowActionToMenuOption = (action, row)=>{
|
|
|
141
143
|
icon: action.icon,
|
|
142
144
|
type: "link",
|
|
143
145
|
href: action.href(row),
|
|
144
|
-
external: action.external
|
|
146
|
+
external: action.external,
|
|
147
|
+
download: action.download?.(row)
|
|
145
148
|
};
|
|
146
149
|
if ("onClick" === action.type) return {
|
|
147
150
|
id: action.id,
|
|
@@ -158,4 +161,4 @@ const richListRowActionToMenuOption = (action, row)=>{
|
|
|
158
161
|
render: action.render
|
|
159
162
|
};
|
|
160
163
|
};
|
|
161
|
-
export { RICH_LIST_CONTENT_COMPACT_MAX_PX, RICH_LIST_INLINE_PAD_PRESET_PX, ROW_HEIGHT_PRESETS, SELECT_COLUMN_ID, formatSlotSize, handleDownloadCsv, isColumnWithVisibilityState, isRichListRowHeightByBreakpoint, isToggleableContentColumn, isVisibleAtBreakpoint, normalizeSlot, normalizeTextField, resolveRichListRowHeightValue, richListInlinePaddingPx, richListRowActionToMenuOption, richListRowHeightToPx };
|
|
164
|
+
export { RICH_LIST_CONTENT_COMPACT_MAX_PX, RICH_LIST_DEFAULT_PRIMARY_FIELD_ID, RICH_LIST_DEFAULT_SECONDARY_FIELD_ID, RICH_LIST_INLINE_PAD_PRESET_PX, ROW_HEIGHT_PRESETS, SELECT_COLUMN_ID, formatSlotSize, handleDownloadCsv, isColumnWithVisibilityState, isRichListRowHeightByBreakpoint, isToggleableContentColumn, isVisibleAtBreakpoint, normalizeSlot, normalizeTextField, resolveRichListRowHeightValue, richListInlinePaddingPx, richListRowActionToMenuOption, richListRowHeightToPx };
|
|
@@ -48,6 +48,11 @@ export type RichListColumnWidthMode = "shrinkable" | "fixed";
|
|
|
48
48
|
* (function form forces `globalFiltering: false` and `csvExport: false`).
|
|
49
49
|
*/
|
|
50
50
|
export type RichListTextField<Type> = ((row: Type) => ReactNode) | {
|
|
51
|
+
/**
|
|
52
|
+
* Unique id for this field in sort, group, filter, and localStorage persistence.
|
|
53
|
+
* @default `_richList_primary` or `_richList_secondary` (see `normalizeTextField`)
|
|
54
|
+
*/
|
|
55
|
+
id?: string;
|
|
51
56
|
/**
|
|
52
57
|
* Long text is truncated with an ellipsis when space is tight.
|
|
53
58
|
* Use `prefixOnWide` / `suffixOnWide` for small extras beside the main line at
|
|
@@ -388,6 +393,8 @@ export type RichListRowAction<Type> = {
|
|
|
388
393
|
href: (row: Type) => string;
|
|
389
394
|
/** When `true`, opens in a new tab with `rel="noopener noreferrer"`. */
|
|
390
395
|
external?: boolean;
|
|
396
|
+
/** Suggested filename for a download link. */
|
|
397
|
+
download?: (row: Type) => string | boolean;
|
|
391
398
|
} | {
|
|
392
399
|
type: "onClick";
|
|
393
400
|
onClick: (row: Type) => void;
|
package/dist/shared.css
CHANGED
|
@@ -402,12 +402,3 @@ body {
|
|
|
402
402
|
font: var(--font-regular);
|
|
403
403
|
}
|
|
404
404
|
|
|
405
|
-
@media (max-width: 600px) {
|
|
406
|
-
:root {
|
|
407
|
-
--font-h1: normal 700 28px / 150% var(--typeface-system);
|
|
408
|
-
--font-h2: normal 700 26px / 150% var(--typeface-system);
|
|
409
|
-
--font-h3: normal 700 24px / 150% var(--typeface-system);
|
|
410
|
-
--font-h4: normal 700 22px / 150% var(--typeface-system);
|
|
411
|
-
}
|
|
412
|
-
}
|
|
413
|
-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free 7.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M216 64C229.3 64 240 74.7 240 88L240 128L400 128L400 88C400 74.7 410.7 64 424 64C437.3 64 448 74.7 448 88L448 128L480 128C515.3 128 544 156.7 544 192L544 480C544 515.3 515.3 544 480 544L160 544C124.7 544 96 515.3 96 480L96 192C96 156.7 124.7 128 160 128L192 128L192 88C192 74.7 202.7 64 216 64zM216 176L160 176C151.2 176 144 183.2 144 192L144 480C144 488.8 151.2 496 160 496L480 496C488.8 496 496 488.8 496 480L496 192C496 183.2 488.8 176 480 176L216 176zM320 240C333.3 240 344 250.7 344 264L344 312L392 312C405.3 312 416 322.7 416 336C416 349.3 405.3 360 392 360L344 360L344 408C344 421.3 333.3 432 320 432C306.7 432 296 421.3 296 408L296 360L248 360C234.7 360 224 349.3 224 336C224 322.7 234.7 312 248 312L296 312L296 264C296 250.7 306.7 240 320 240z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Pro 7.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2026 Fonticons, Inc.--><path d="M240 112L128 112C119.2 112 112 119.2 112 128L112 512C112 520.8 119.2 528 128 528L282.9 528C289 545.3 297.5 561.4 308 576L128 576C92.7 576 64 547.3 64 512L64 128C64 92.7 92.7 64 128 64L261.5 64C278.5 64 294.8 70.7 306.8 82.7L429.3 205.3C441.3 217.3 448 233.6 448 250.6L448 272.1L312 272.1C272.2 272.1 240 239.9 240 200.1L240 112.1zM380.1 224L288 131.9L288 200C288 213.3 298.7 224 312 224L380.1 224zM464 320C543.5 320 608 384.5 608 464C608 543.5 543.5 608 464 608C384.5 608 320 543.5 320 464C320 384.5 384.5 320 464 320zM480 400C480 391.2 472.8 384 464 384C455.2 384 448 391.2 448 400L448 448L400 448C391.2 448 384 455.2 384 464C384 472.8 391.2 480 400 480L448 480L448 528C448 536.8 455.2 544 464 544C472.8 544 480 536.8 480 528L480 480L528 480C536.8 480 544 472.8 544 464C544 455.2 536.8 448 528 448L480 448L480 400z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Pro 7.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2026 Fonticons, Inc.--><path d="M192 112L304 112L304 200C304 239.8 336.2 272 376 272L464 272L464 512C464 520.8 456.8 528 448 528L192 528C183.2 528 176 520.8 176 512L176 464L128 464L128 512C128 547.3 156.7 576 192 576L448 576C483.3 576 512 547.3 512 512L512 250.5C512 233.5 505.3 217.2 493.3 205.2L370.7 82.7C358.7 70.7 342.5 64 325.5 64L192 64C156.7 64 128 92.7 128 128L128 320L176 320L176 128C176 119.2 183.2 112 192 112zM352 131.9L444.1 224L376 224C362.7 224 352 213.3 352 200L352 131.9zM64 392C64 405.3 74.7 416 88 416L310.1 416L279.1 447C269.7 456.4 269.7 471.6 279.1 480.9C288.5 490.2 303.7 490.3 313 480.9L385 408.9C394.4 399.5 394.4 384.3 385 375L313 303C303.6 293.6 288.4 293.6 279.1 303C269.8 312.4 269.7 327.6 279.1 336.9L310.1 367.9L88 367.9C74.7 367.9 64 378.6 64 391.9z"/></svg>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@worknice/whiteboard",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.70.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
7
|
"files": [
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"react-markdown": "^10.1.0",
|
|
40
40
|
"utf8": "^3.0.0",
|
|
41
41
|
"zod": "^4.1.13",
|
|
42
|
-
"@worknice/utils": "^0.
|
|
42
|
+
"@worknice/utils": "^0.53.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@anolilab/semantic-release-pnpm": "^3.2.2",
|
package/dist/hud/NavTitle.d.ts
DELETED
package/dist/hud/NavTitle.js
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
-
import * as __WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_Badge_506c1dd3__ from "@worknice/whiteboard/presentation/Badge";
|
|
3
|
-
import * as __WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_PlainText_c60690e6__ from "@worknice/whiteboard/presentation/PlainText";
|
|
4
|
-
import * as __WEBPACK_EXTERNAL_MODULE__NavTitle_module_js_9be55db0__ from "./NavTitle.module.js";
|
|
5
|
-
const NavTitle = ({ demo, logo, subtitle, title })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
6
|
-
className: __WEBPACK_EXTERNAL_MODULE__NavTitle_module_js_9be55db0__["default"].container,
|
|
7
|
-
title: title,
|
|
8
|
-
children: [
|
|
9
|
-
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
10
|
-
className: __WEBPACK_EXTERNAL_MODULE__NavTitle_module_js_9be55db0__["default"].logo,
|
|
11
|
-
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("img", {
|
|
12
|
-
src: logo,
|
|
13
|
-
alt: ""
|
|
14
|
-
})
|
|
15
|
-
}),
|
|
16
|
-
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
17
|
-
style: {
|
|
18
|
-
overflow: "hidden",
|
|
19
|
-
display: "grid"
|
|
20
|
-
},
|
|
21
|
-
children: [
|
|
22
|
-
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_PlainText_c60690e6__["default"], {
|
|
23
|
-
font: "regular-bold",
|
|
24
|
-
truncate: true,
|
|
25
|
-
children: title
|
|
26
|
-
}),
|
|
27
|
-
subtitle ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_PlainText_c60690e6__["default"], {
|
|
28
|
-
truncate: true,
|
|
29
|
-
children: subtitle
|
|
30
|
-
}) : null
|
|
31
|
-
]
|
|
32
|
-
}),
|
|
33
|
-
demo ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
34
|
-
className: __WEBPACK_EXTERNAL_MODULE__NavTitle_module_js_9be55db0__["default"].demo,
|
|
35
|
-
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_Badge_506c1dd3__["default"], {
|
|
36
|
-
color: "grey",
|
|
37
|
-
children: "Demo"
|
|
38
|
-
})
|
|
39
|
-
}) : null
|
|
40
|
-
]
|
|
41
|
-
});
|
|
42
|
-
const NavTitle_rslib_entry_ = NavTitle;
|
|
43
|
-
export { NavTitle_rslib_entry_ as default };
|