@rocket.chat/fuselage 0.55.0 → 0.55.2

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.
Files changed (40) hide show
  1. package/dist/components/Contextualbar/ContextualbarHeader.d.ts.map +1 -1
  2. package/dist/components/Contextualbar/ContextualbarSection.d.ts.map +1 -1
  3. package/dist/components/ContextualbarV2/Contextualbar.d.ts +10 -0
  4. package/dist/components/ContextualbarV2/Contextualbar.d.ts.map +1 -0
  5. package/dist/components/ContextualbarV2/ContextualbarAction.d.ts +10 -0
  6. package/dist/components/ContextualbarV2/ContextualbarAction.d.ts.map +1 -0
  7. package/dist/components/ContextualbarV2/ContextualbarActions.d.ts +12 -0
  8. package/dist/components/ContextualbarV2/ContextualbarActions.d.ts.map +1 -0
  9. package/dist/components/ContextualbarV2/ContextualbarButton.d.ts +27 -0
  10. package/dist/components/ContextualbarV2/ContextualbarButton.d.ts.map +1 -0
  11. package/dist/components/ContextualbarV2/ContextualbarContent.d.ts +10 -0
  12. package/dist/components/ContextualbarV2/ContextualbarContent.d.ts.map +1 -0
  13. package/dist/components/ContextualbarV2/ContextualbarEmptyContent.d.ts +12 -0
  14. package/dist/components/ContextualbarV2/ContextualbarEmptyContent.d.ts.map +1 -0
  15. package/dist/components/ContextualbarV2/ContextualbarFooter.d.ts +10 -0
  16. package/dist/components/ContextualbarV2/ContextualbarFooter.d.ts.map +1 -0
  17. package/dist/components/ContextualbarV2/ContextualbarHeader.d.ts +10 -0
  18. package/dist/components/ContextualbarV2/ContextualbarHeader.d.ts.map +1 -0
  19. package/dist/components/ContextualbarV2/ContextualbarIcon.d.ts +14 -0
  20. package/dist/components/ContextualbarV2/ContextualbarIcon.d.ts.map +1 -0
  21. package/dist/components/ContextualbarV2/ContextualbarSection.d.ts +10 -0
  22. package/dist/components/ContextualbarV2/ContextualbarSection.d.ts.map +1 -0
  23. package/dist/components/ContextualbarV2/ContextualbarSkeleton.d.ts +11 -0
  24. package/dist/components/ContextualbarV2/ContextualbarSkeleton.d.ts.map +1 -0
  25. package/dist/components/ContextualbarV2/ContextualbarTitle.d.ts +11 -0
  26. package/dist/components/ContextualbarV2/ContextualbarTitle.d.ts.map +1 -0
  27. package/dist/components/ContextualbarV2/index.d.ts +14 -0
  28. package/dist/components/ContextualbarV2/index.d.ts.map +1 -0
  29. package/dist/components/Sidebar/TopBar/TopBarV2.d.ts +8 -0
  30. package/dist/components/Sidebar/TopBar/TopBarV2.d.ts.map +1 -0
  31. package/dist/components/Sidebar/TopBar/index.d.ts +1 -0
  32. package/dist/components/Sidebar/TopBar/index.d.ts.map +1 -1
  33. package/dist/components/index.d.ts +1 -0
  34. package/dist/components/index.d.ts.map +1 -1
  35. package/dist/fuselage.css +1 -1
  36. package/dist/fuselage.css.map +1 -1
  37. package/dist/fuselage.development.js +839 -52
  38. package/dist/fuselage.development.js.map +1 -1
  39. package/dist/fuselage.production.js +1 -1
  40. package/package.json +1 -1
@@ -4136,6 +4136,742 @@ exports["default"] = (0, react_1.memo)(ContextualbarEmptyContent);
4136
4136
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4137
4137
 
4138
4138
 
4139
+ var __assign = (this && this.__assign) || function () {
4140
+ __assign = Object.assign || function(t) {
4141
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4142
+ s = arguments[i];
4143
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4144
+ t[p] = s[p];
4145
+ }
4146
+ return t;
4147
+ };
4148
+ return __assign.apply(this, arguments);
4149
+ };
4150
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4151
+ if (k2 === undefined) k2 = k;
4152
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4153
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4154
+ desc = { enumerable: true, get: function() { return m[k]; } };
4155
+ }
4156
+ Object.defineProperty(o, k2, desc);
4157
+ }) : (function(o, m, k, k2) {
4158
+ if (k2 === undefined) k2 = k;
4159
+ o[k2] = m[k];
4160
+ }));
4161
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4162
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4163
+ }) : function(o, v) {
4164
+ o["default"] = v;
4165
+ });
4166
+ var __importStar = (this && this.__importStar) || function (mod) {
4167
+ if (mod && mod.__esModule) return mod;
4168
+ var result = {};
4169
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4170
+ __setModuleDefault(result, mod);
4171
+ return result;
4172
+ };
4173
+ var __rest = (this && this.__rest) || function (s, e) {
4174
+ var t = {};
4175
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4176
+ t[p] = s[p];
4177
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
4178
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
4179
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
4180
+ t[p[i]] = s[p[i]];
4181
+ }
4182
+ return t;
4183
+ };
4184
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4185
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4186
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4187
+ var ContextualbarFooter = (0, react_1.forwardRef)(function ContextualbarFooter(_a, ref) {
4188
+ var children = _a.children, props = __rest(_a, ["children"]);
4189
+ return (react_1.default.createElement(__1.Box, __assign({ ref: ref, p: 24 }, props), children));
4190
+ });
4191
+ exports["default"] = (0, react_1.memo)(ContextualbarFooter);
4192
+
4193
+
4194
+ /***/ }),
4195
+
4196
+ /***/ "./src/components/Contextualbar/ContextualbarHeader.tsx":
4197
+ /*!**************************************************************!*\
4198
+ !*** ./src/components/Contextualbar/ContextualbarHeader.tsx ***!
4199
+ \**************************************************************/
4200
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4201
+
4202
+
4203
+ var __assign = (this && this.__assign) || function () {
4204
+ __assign = Object.assign || function(t) {
4205
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4206
+ s = arguments[i];
4207
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4208
+ t[p] = s[p];
4209
+ }
4210
+ return t;
4211
+ };
4212
+ return __assign.apply(this, arguments);
4213
+ };
4214
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4215
+ if (k2 === undefined) k2 = k;
4216
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4217
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4218
+ desc = { enumerable: true, get: function() { return m[k]; } };
4219
+ }
4220
+ Object.defineProperty(o, k2, desc);
4221
+ }) : (function(o, m, k, k2) {
4222
+ if (k2 === undefined) k2 = k;
4223
+ o[k2] = m[k];
4224
+ }));
4225
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4226
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4227
+ }) : function(o, v) {
4228
+ o["default"] = v;
4229
+ });
4230
+ var __importStar = (this && this.__importStar) || function (mod) {
4231
+ if (mod && mod.__esModule) return mod;
4232
+ var result = {};
4233
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4234
+ __setModuleDefault(result, mod);
4235
+ return result;
4236
+ };
4237
+ var __rest = (this && this.__rest) || function (s, e) {
4238
+ var t = {};
4239
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4240
+ t[p] = s[p];
4241
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
4242
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
4243
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
4244
+ t[p[i]] = s[p[i]];
4245
+ }
4246
+ return t;
4247
+ };
4248
+ var __importDefault = (this && this.__importDefault) || function (mod) {
4249
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4250
+ };
4251
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4252
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4253
+ var Box_1 = __importDefault(__webpack_require__(/*! ../Box */ "./src/components/Box/index.tsx"));
4254
+ var Margins_1 = __importDefault(__webpack_require__(/*! ../Margins */ "./src/components/Margins/index.ts"));
4255
+ var ContextualbarHeader = function (_a) {
4256
+ var children = _a.children, props = __rest(_a, ["children"]);
4257
+ return (react_1.default.createElement(Box_1.default, __assign({ display: 'flex', alignItems: 'center', height: 'x56', pi: 24, borderBlockEndWidth: 'default', borderBlockColor: 'extra-light', flexShrink: 0 }, props),
4258
+ react_1.default.createElement(Box_1.default, { marginInline: 'neg-x4', display: 'flex', alignItems: 'center', justifyContent: 'space-between', flexGrow: 1, height: '100%', overflow: 'hidden' },
4259
+ react_1.default.createElement(Margins_1.default, { inline: 'x4' }, children))));
4260
+ };
4261
+ exports["default"] = (0, react_1.memo)(ContextualbarHeader);
4262
+
4263
+
4264
+ /***/ }),
4265
+
4266
+ /***/ "./src/components/Contextualbar/ContextualbarIcon.tsx":
4267
+ /*!************************************************************!*\
4268
+ !*** ./src/components/Contextualbar/ContextualbarIcon.tsx ***!
4269
+ \************************************************************/
4270
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4271
+
4272
+
4273
+ var __assign = (this && this.__assign) || function () {
4274
+ __assign = Object.assign || function(t) {
4275
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4276
+ s = arguments[i];
4277
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4278
+ t[p] = s[p];
4279
+ }
4280
+ return t;
4281
+ };
4282
+ return __assign.apply(this, arguments);
4283
+ };
4284
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4285
+ if (k2 === undefined) k2 = k;
4286
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4287
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4288
+ desc = { enumerable: true, get: function() { return m[k]; } };
4289
+ }
4290
+ Object.defineProperty(o, k2, desc);
4291
+ }) : (function(o, m, k, k2) {
4292
+ if (k2 === undefined) k2 = k;
4293
+ o[k2] = m[k];
4294
+ }));
4295
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4296
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4297
+ }) : function(o, v) {
4298
+ o["default"] = v;
4299
+ });
4300
+ var __importStar = (this && this.__importStar) || function (mod) {
4301
+ if (mod && mod.__esModule) return mod;
4302
+ var result = {};
4303
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4304
+ __setModuleDefault(result, mod);
4305
+ return result;
4306
+ };
4307
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4308
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4309
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4310
+ var ContextualbarIcon = function (props) { return react_1.default.createElement(__1.Icon, __assign({}, props, { pi: 2, size: 'x24' })); };
4311
+ exports["default"] = (0, react_1.memo)(ContextualbarIcon);
4312
+
4313
+
4314
+ /***/ }),
4315
+
4316
+ /***/ "./src/components/Contextualbar/ContextualbarSection.tsx":
4317
+ /*!***************************************************************!*\
4318
+ !*** ./src/components/Contextualbar/ContextualbarSection.tsx ***!
4319
+ \***************************************************************/
4320
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4321
+
4322
+
4323
+ var __assign = (this && this.__assign) || function () {
4324
+ __assign = Object.assign || function(t) {
4325
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4326
+ s = arguments[i];
4327
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4328
+ t[p] = s[p];
4329
+ }
4330
+ return t;
4331
+ };
4332
+ return __assign.apply(this, arguments);
4333
+ };
4334
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4335
+ if (k2 === undefined) k2 = k;
4336
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4337
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4338
+ desc = { enumerable: true, get: function() { return m[k]; } };
4339
+ }
4340
+ Object.defineProperty(o, k2, desc);
4341
+ }) : (function(o, m, k, k2) {
4342
+ if (k2 === undefined) k2 = k;
4343
+ o[k2] = m[k];
4344
+ }));
4345
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4346
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4347
+ }) : function(o, v) {
4348
+ o["default"] = v;
4349
+ });
4350
+ var __importStar = (this && this.__importStar) || function (mod) {
4351
+ if (mod && mod.__esModule) return mod;
4352
+ var result = {};
4353
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4354
+ __setModuleDefault(result, mod);
4355
+ return result;
4356
+ };
4357
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4358
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4359
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4360
+ var ContextualbarSection = (0, react_1.forwardRef)(function ContextualbarSection(props, ref) {
4361
+ return (react_1.default.createElement(__1.Box, __assign({ ref: ref, "rcx-vertical-bar__section": true, pi: 24, pb: 16, display: 'flex', alignItems: 'center', flexGrow: 1, borderBlockEndWidth: 'default', borderBlockColor: 'extra-light' }, props)));
4362
+ });
4363
+ exports["default"] = (0, react_1.memo)(ContextualbarSection);
4364
+
4365
+
4366
+ /***/ }),
4367
+
4368
+ /***/ "./src/components/Contextualbar/ContextualbarSkeleton.tsx":
4369
+ /*!****************************************************************!*\
4370
+ !*** ./src/components/Contextualbar/ContextualbarSkeleton.tsx ***!
4371
+ \****************************************************************/
4372
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4373
+
4374
+
4375
+ var __assign = (this && this.__assign) || function () {
4376
+ __assign = Object.assign || function(t) {
4377
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4378
+ s = arguments[i];
4379
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4380
+ t[p] = s[p];
4381
+ }
4382
+ return t;
4383
+ };
4384
+ return __assign.apply(this, arguments);
4385
+ };
4386
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4387
+ if (k2 === undefined) k2 = k;
4388
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4389
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4390
+ desc = { enumerable: true, get: function() { return m[k]; } };
4391
+ }
4392
+ Object.defineProperty(o, k2, desc);
4393
+ }) : (function(o, m, k, k2) {
4394
+ if (k2 === undefined) k2 = k;
4395
+ o[k2] = m[k];
4396
+ }));
4397
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4398
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4399
+ }) : function(o, v) {
4400
+ o["default"] = v;
4401
+ });
4402
+ var __importStar = (this && this.__importStar) || function (mod) {
4403
+ if (mod && mod.__esModule) return mod;
4404
+ var result = {};
4405
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4406
+ __setModuleDefault(result, mod);
4407
+ return result;
4408
+ };
4409
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4410
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4411
+ var _1 = __webpack_require__(/*! . */ "./src/components/Contextualbar/index.ts");
4412
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4413
+ var ContextualbarSkeleton = function (props) { return (react_1.default.createElement(_1.Contextualbar, __assign({}, props),
4414
+ react_1.default.createElement(_1.ContextualbarHeader, null,
4415
+ react_1.default.createElement(__1.Skeleton, { width: '100%' })),
4416
+ react_1.default.createElement(__1.Box, { p: 24 },
4417
+ react_1.default.createElement(__1.Skeleton, { mbe: 4, width: '32px', height: '32px', variant: 'rect' }),
4418
+ Array(5)
4419
+ .fill(5)
4420
+ .map(function (_, index) { return (react_1.default.createElement(__1.Skeleton, { key: index })); })))); };
4421
+ exports["default"] = (0, react_1.memo)(ContextualbarSkeleton);
4422
+
4423
+
4424
+ /***/ }),
4425
+
4426
+ /***/ "./src/components/Contextualbar/ContextualbarTitle.tsx":
4427
+ /*!*************************************************************!*\
4428
+ !*** ./src/components/Contextualbar/ContextualbarTitle.tsx ***!
4429
+ \*************************************************************/
4430
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4431
+
4432
+
4433
+ var __assign = (this && this.__assign) || function () {
4434
+ __assign = Object.assign || function(t) {
4435
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4436
+ s = arguments[i];
4437
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4438
+ t[p] = s[p];
4439
+ }
4440
+ return t;
4441
+ };
4442
+ return __assign.apply(this, arguments);
4443
+ };
4444
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4445
+ if (k2 === undefined) k2 = k;
4446
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4447
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4448
+ desc = { enumerable: true, get: function() { return m[k]; } };
4449
+ }
4450
+ Object.defineProperty(o, k2, desc);
4451
+ }) : (function(o, m, k, k2) {
4452
+ if (k2 === undefined) k2 = k;
4453
+ o[k2] = m[k];
4454
+ }));
4455
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4456
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4457
+ }) : function(o, v) {
4458
+ o["default"] = v;
4459
+ });
4460
+ var __importStar = (this && this.__importStar) || function (mod) {
4461
+ if (mod && mod.__esModule) return mod;
4462
+ var result = {};
4463
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4464
+ __setModuleDefault(result, mod);
4465
+ return result;
4466
+ };
4467
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4468
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4469
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4470
+ var ContextualbarTitle = function (props) { return (react_1.default.createElement(__1.Box, __assign({ flexShrink: 1, flexGrow: 1, fontScale: 'h4', withTruncatedText: true }, props))); };
4471
+ exports["default"] = (0, react_1.memo)(ContextualbarTitle);
4472
+
4473
+
4474
+ /***/ }),
4475
+
4476
+ /***/ "./src/components/Contextualbar/index.ts":
4477
+ /*!***********************************************!*\
4478
+ !*** ./src/components/Contextualbar/index.ts ***!
4479
+ \***********************************************/
4480
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4481
+
4482
+
4483
+ var __importDefault = (this && this.__importDefault) || function (mod) {
4484
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4485
+ };
4486
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4487
+ exports.ContextualbarSection = exports.ContextualbarTitle = exports.ContextualbarSkeleton = exports.ContextualbarIcon = exports.ContextualbarHeader = exports.ContextualbarFooter = exports.ContextualbarEmptyContent = exports.ContextualbarContent = exports.ContextualbarButton = exports.ContextualbarActions = exports.ContextualbarAction = exports.Contextualbar = void 0;
4488
+ var Contextualbar_1 = __importDefault(__webpack_require__(/*! ./Contextualbar */ "./src/components/Contextualbar/Contextualbar.tsx"));
4489
+ exports.Contextualbar = Contextualbar_1.default;
4490
+ var ContextualbarAction_1 = __importDefault(__webpack_require__(/*! ./ContextualbarAction */ "./src/components/Contextualbar/ContextualbarAction.tsx"));
4491
+ exports.ContextualbarAction = ContextualbarAction_1.default;
4492
+ var ContextualbarActions_1 = __importDefault(__webpack_require__(/*! ./ContextualbarActions */ "./src/components/Contextualbar/ContextualbarActions.tsx"));
4493
+ exports.ContextualbarActions = ContextualbarActions_1.default;
4494
+ var ContextualbarButton_1 = __importDefault(__webpack_require__(/*! ./ContextualbarButton */ "./src/components/Contextualbar/ContextualbarButton.tsx"));
4495
+ exports.ContextualbarButton = ContextualbarButton_1.default;
4496
+ var ContextualbarContent_1 = __importDefault(__webpack_require__(/*! ./ContextualbarContent */ "./src/components/Contextualbar/ContextualbarContent.tsx"));
4497
+ exports.ContextualbarContent = ContextualbarContent_1.default;
4498
+ var ContextualbarEmptyContent_1 = __importDefault(__webpack_require__(/*! ./ContextualbarEmptyContent */ "./src/components/Contextualbar/ContextualbarEmptyContent.tsx"));
4499
+ exports.ContextualbarEmptyContent = ContextualbarEmptyContent_1.default;
4500
+ var ContextualbarFooter_1 = __importDefault(__webpack_require__(/*! ./ContextualbarFooter */ "./src/components/Contextualbar/ContextualbarFooter.tsx"));
4501
+ exports.ContextualbarFooter = ContextualbarFooter_1.default;
4502
+ var ContextualbarHeader_1 = __importDefault(__webpack_require__(/*! ./ContextualbarHeader */ "./src/components/Contextualbar/ContextualbarHeader.tsx"));
4503
+ exports.ContextualbarHeader = ContextualbarHeader_1.default;
4504
+ var ContextualbarIcon_1 = __importDefault(__webpack_require__(/*! ./ContextualbarIcon */ "./src/components/Contextualbar/ContextualbarIcon.tsx"));
4505
+ exports.ContextualbarIcon = ContextualbarIcon_1.default;
4506
+ var ContextualbarSection_1 = __importDefault(__webpack_require__(/*! ./ContextualbarSection */ "./src/components/Contextualbar/ContextualbarSection.tsx"));
4507
+ exports.ContextualbarSection = ContextualbarSection_1.default;
4508
+ var ContextualbarSkeleton_1 = __importDefault(__webpack_require__(/*! ./ContextualbarSkeleton */ "./src/components/Contextualbar/ContextualbarSkeleton.tsx"));
4509
+ exports.ContextualbarSkeleton = ContextualbarSkeleton_1.default;
4510
+ var ContextualbarTitle_1 = __importDefault(__webpack_require__(/*! ./ContextualbarTitle */ "./src/components/Contextualbar/ContextualbarTitle.tsx"));
4511
+ exports.ContextualbarTitle = ContextualbarTitle_1.default;
4512
+
4513
+
4514
+ /***/ }),
4515
+
4516
+ /***/ "./src/components/ContextualbarV2/Contextualbar.tsx":
4517
+ /*!**********************************************************!*\
4518
+ !*** ./src/components/ContextualbarV2/Contextualbar.tsx ***!
4519
+ \**********************************************************/
4520
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4521
+
4522
+
4523
+ var __assign = (this && this.__assign) || function () {
4524
+ __assign = Object.assign || function(t) {
4525
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4526
+ s = arguments[i];
4527
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4528
+ t[p] = s[p];
4529
+ }
4530
+ return t;
4531
+ };
4532
+ return __assign.apply(this, arguments);
4533
+ };
4534
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4535
+ if (k2 === undefined) k2 = k;
4536
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4537
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4538
+ desc = { enumerable: true, get: function() { return m[k]; } };
4539
+ }
4540
+ Object.defineProperty(o, k2, desc);
4541
+ }) : (function(o, m, k, k2) {
4542
+ if (k2 === undefined) k2 = k;
4543
+ o[k2] = m[k];
4544
+ }));
4545
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4546
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4547
+ }) : function(o, v) {
4548
+ o["default"] = v;
4549
+ });
4550
+ var __importStar = (this && this.__importStar) || function (mod) {
4551
+ if (mod && mod.__esModule) return mod;
4552
+ var result = {};
4553
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4554
+ __setModuleDefault(result, mod);
4555
+ return result;
4556
+ };
4557
+ var __rest = (this && this.__rest) || function (s, e) {
4558
+ var t = {};
4559
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4560
+ t[p] = s[p];
4561
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
4562
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
4563
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
4564
+ t[p[i]] = s[p[i]];
4565
+ }
4566
+ return t;
4567
+ };
4568
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4569
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4570
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4571
+ var Contextualbar = (0, react_1.forwardRef)(function Contextualbar(_a, ref) {
4572
+ var children = _a.children, width = _a.width, position = _a.position, _b = _a.bg, bg = _b === void 0 ? 'room' : _b, props = __rest(_a, ["children", "width", "position", "bg"]);
4573
+ return (react_1.default.createElement(__1.Box, __assign({ ref: ref, "rcx-vertical-bar": true, bg: bg, color: 'default', display: 'flex', flexDirection: 'column', flexShrink: 0, width: width, borderInlineStartWidth: 'default', borderInlineStartColor: 'extra-light', borderInlineStartStyle: 'solid', height: 'full', position: position, insetInlineEnd: 'none', insetBlockStart: 'none', zIndex: 5 }, props), children));
4574
+ });
4575
+ exports["default"] = (0, react_1.memo)(Contextualbar);
4576
+
4577
+
4578
+ /***/ }),
4579
+
4580
+ /***/ "./src/components/ContextualbarV2/ContextualbarAction.tsx":
4581
+ /*!****************************************************************!*\
4582
+ !*** ./src/components/ContextualbarV2/ContextualbarAction.tsx ***!
4583
+ \****************************************************************/
4584
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4585
+
4586
+
4587
+ var __assign = (this && this.__assign) || function () {
4588
+ __assign = Object.assign || function(t) {
4589
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4590
+ s = arguments[i];
4591
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4592
+ t[p] = s[p];
4593
+ }
4594
+ return t;
4595
+ };
4596
+ return __assign.apply(this, arguments);
4597
+ };
4598
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4599
+ if (k2 === undefined) k2 = k;
4600
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4601
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4602
+ desc = { enumerable: true, get: function() { return m[k]; } };
4603
+ }
4604
+ Object.defineProperty(o, k2, desc);
4605
+ }) : (function(o, m, k, k2) {
4606
+ if (k2 === undefined) k2 = k;
4607
+ o[k2] = m[k];
4608
+ }));
4609
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4610
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4611
+ }) : function(o, v) {
4612
+ o["default"] = v;
4613
+ });
4614
+ var __importStar = (this && this.__importStar) || function (mod) {
4615
+ if (mod && mod.__esModule) return mod;
4616
+ var result = {};
4617
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4618
+ __setModuleDefault(result, mod);
4619
+ return result;
4620
+ };
4621
+ var __rest = (this && this.__rest) || function (s, e) {
4622
+ var t = {};
4623
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4624
+ t[p] = s[p];
4625
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
4626
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
4627
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
4628
+ t[p[i]] = s[p[i]];
4629
+ }
4630
+ return t;
4631
+ };
4632
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4633
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4634
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4635
+ var ContextualbarAction = function (_a) {
4636
+ var name = _a.name, props = __rest(_a, ["name"]);
4637
+ return (react_1.default.createElement(__1.IconButton, __assign({}, props, { small: true, flexShrink: 0, icon: name })));
4638
+ };
4639
+ exports["default"] = (0, react_1.memo)(ContextualbarAction);
4640
+
4641
+
4642
+ /***/ }),
4643
+
4644
+ /***/ "./src/components/ContextualbarV2/ContextualbarActions.tsx":
4645
+ /*!*****************************************************************!*\
4646
+ !*** ./src/components/ContextualbarV2/ContextualbarActions.tsx ***!
4647
+ \*****************************************************************/
4648
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4649
+
4650
+
4651
+ var __assign = (this && this.__assign) || function () {
4652
+ __assign = Object.assign || function(t) {
4653
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4654
+ s = arguments[i];
4655
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4656
+ t[p] = s[p];
4657
+ }
4658
+ return t;
4659
+ };
4660
+ return __assign.apply(this, arguments);
4661
+ };
4662
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4663
+ if (k2 === undefined) k2 = k;
4664
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4665
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4666
+ desc = { enumerable: true, get: function() { return m[k]; } };
4667
+ }
4668
+ Object.defineProperty(o, k2, desc);
4669
+ }) : (function(o, m, k, k2) {
4670
+ if (k2 === undefined) k2 = k;
4671
+ o[k2] = m[k];
4672
+ }));
4673
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4674
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4675
+ }) : function(o, v) {
4676
+ o["default"] = v;
4677
+ });
4678
+ var __importStar = (this && this.__importStar) || function (mod) {
4679
+ if (mod && mod.__esModule) return mod;
4680
+ var result = {};
4681
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4682
+ __setModuleDefault(result, mod);
4683
+ return result;
4684
+ };
4685
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4686
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4687
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4688
+ var ContextualbarActions = function (props) { return react_1.default.createElement(__1.ButtonGroup, __assign({}, props)); };
4689
+ exports["default"] = (0, react_1.memo)(ContextualbarActions);
4690
+
4691
+
4692
+ /***/ }),
4693
+
4694
+ /***/ "./src/components/ContextualbarV2/ContextualbarButton.tsx":
4695
+ /*!****************************************************************!*\
4696
+ !*** ./src/components/ContextualbarV2/ContextualbarButton.tsx ***!
4697
+ \****************************************************************/
4698
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4699
+
4700
+
4701
+ var __assign = (this && this.__assign) || function () {
4702
+ __assign = Object.assign || function(t) {
4703
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4704
+ s = arguments[i];
4705
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4706
+ t[p] = s[p];
4707
+ }
4708
+ return t;
4709
+ };
4710
+ return __assign.apply(this, arguments);
4711
+ };
4712
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4713
+ if (k2 === undefined) k2 = k;
4714
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4715
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4716
+ desc = { enumerable: true, get: function() { return m[k]; } };
4717
+ }
4718
+ Object.defineProperty(o, k2, desc);
4719
+ }) : (function(o, m, k, k2) {
4720
+ if (k2 === undefined) k2 = k;
4721
+ o[k2] = m[k];
4722
+ }));
4723
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4724
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4725
+ }) : function(o, v) {
4726
+ o["default"] = v;
4727
+ });
4728
+ var __importStar = (this && this.__importStar) || function (mod) {
4729
+ if (mod && mod.__esModule) return mod;
4730
+ var result = {};
4731
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4732
+ __setModuleDefault(result, mod);
4733
+ return result;
4734
+ };
4735
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4736
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4737
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4738
+ var ContextualbarButton = function (props) { return react_1.default.createElement(__1.Button, __assign({}, props)); };
4739
+ exports["default"] = (0, react_1.memo)(ContextualbarButton);
4740
+
4741
+
4742
+ /***/ }),
4743
+
4744
+ /***/ "./src/components/ContextualbarV2/ContextualbarContent.tsx":
4745
+ /*!*****************************************************************!*\
4746
+ !*** ./src/components/ContextualbarV2/ContextualbarContent.tsx ***!
4747
+ \*****************************************************************/
4748
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4749
+
4750
+
4751
+ var __assign = (this && this.__assign) || function () {
4752
+ __assign = Object.assign || function(t) {
4753
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4754
+ s = arguments[i];
4755
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4756
+ t[p] = s[p];
4757
+ }
4758
+ return t;
4759
+ };
4760
+ return __assign.apply(this, arguments);
4761
+ };
4762
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4763
+ if (k2 === undefined) k2 = k;
4764
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4765
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4766
+ desc = { enumerable: true, get: function() { return m[k]; } };
4767
+ }
4768
+ Object.defineProperty(o, k2, desc);
4769
+ }) : (function(o, m, k, k2) {
4770
+ if (k2 === undefined) k2 = k;
4771
+ o[k2] = m[k];
4772
+ }));
4773
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4774
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4775
+ }) : function(o, v) {
4776
+ o["default"] = v;
4777
+ });
4778
+ var __importStar = (this && this.__importStar) || function (mod) {
4779
+ if (mod && mod.__esModule) return mod;
4780
+ var result = {};
4781
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4782
+ __setModuleDefault(result, mod);
4783
+ return result;
4784
+ };
4785
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4786
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4787
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4788
+ var ContextualbarContent = (0, react_1.forwardRef)(function ContextualbarContent(props, ref) {
4789
+ return (react_1.default.createElement(__1.Box, __assign({ ref: ref, "rcx-vertical-bar__content": true, paddingInline: 24, display: 'flex', flexDirection: 'column', overflowY: 'hidden', height: 'full' }, props)));
4790
+ });
4791
+ exports["default"] = (0, react_1.memo)(ContextualbarContent);
4792
+
4793
+
4794
+ /***/ }),
4795
+
4796
+ /***/ "./src/components/ContextualbarV2/ContextualbarEmptyContent.tsx":
4797
+ /*!**********************************************************************!*\
4798
+ !*** ./src/components/ContextualbarV2/ContextualbarEmptyContent.tsx ***!
4799
+ \**********************************************************************/
4800
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4801
+
4802
+
4803
+ var __assign = (this && this.__assign) || function () {
4804
+ __assign = Object.assign || function(t) {
4805
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4806
+ s = arguments[i];
4807
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
4808
+ t[p] = s[p];
4809
+ }
4810
+ return t;
4811
+ };
4812
+ return __assign.apply(this, arguments);
4813
+ };
4814
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4815
+ if (k2 === undefined) k2 = k;
4816
+ var desc = Object.getOwnPropertyDescriptor(m, k);
4817
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
4818
+ desc = { enumerable: true, get: function() { return m[k]; } };
4819
+ }
4820
+ Object.defineProperty(o, k2, desc);
4821
+ }) : (function(o, m, k, k2) {
4822
+ if (k2 === undefined) k2 = k;
4823
+ o[k2] = m[k];
4824
+ }));
4825
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
4826
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
4827
+ }) : function(o, v) {
4828
+ o["default"] = v;
4829
+ });
4830
+ var __importStar = (this && this.__importStar) || function (mod) {
4831
+ if (mod && mod.__esModule) return mod;
4832
+ var result = {};
4833
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
4834
+ __setModuleDefault(result, mod);
4835
+ return result;
4836
+ };
4837
+ var __rest = (this && this.__rest) || function (s, e) {
4838
+ var t = {};
4839
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4840
+ t[p] = s[p];
4841
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
4842
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
4843
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
4844
+ t[p[i]] = s[p[i]];
4845
+ }
4846
+ return t;
4847
+ };
4848
+ var __importDefault = (this && this.__importDefault) || function (mod) {
4849
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4850
+ };
4851
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4852
+ var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4853
+ var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4854
+ var ContextualbarContent_1 = __importDefault(__webpack_require__(/*! ./ContextualbarContent */ "./src/components/ContextualbarV2/ContextualbarContent.tsx"));
4855
+ var ContextualbarEmptyContent = (0, react_1.forwardRef)(function ContextualbarEmptyContent(_a, ref) {
4856
+ var _b = _a.icon, icon = _b === void 0 ? 'magnifier' : _b, _c = _a.title, title = _c === void 0 ? 'Nothing Found' : _c, subtitle = _a.subtitle, props = __rest(_a, ["icon", "title", "subtitle"]);
4857
+ return (react_1.default.createElement(ContextualbarContent_1.default, __assign({ justifyContent: 'center' }, props, { ref: ref }),
4858
+ react_1.default.createElement(__1.States, null,
4859
+ react_1.default.createElement(__1.StatesIcon, { name: icon }),
4860
+ react_1.default.createElement(__1.StatesTitle, null, title),
4861
+ subtitle && react_1.default.createElement(__1.StatesSubtitle, null, subtitle))));
4862
+ });
4863
+ exports["default"] = (0, react_1.memo)(ContextualbarEmptyContent);
4864
+
4865
+
4866
+ /***/ }),
4867
+
4868
+ /***/ "./src/components/ContextualbarV2/ContextualbarFooter.tsx":
4869
+ /*!****************************************************************!*\
4870
+ !*** ./src/components/ContextualbarV2/ContextualbarFooter.tsx ***!
4871
+ \****************************************************************/
4872
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4873
+
4874
+
4139
4875
  var __assign = (this && this.__assign) || function () {
4140
4876
  __assign = Object.assign || function(t) {
4141
4877
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -4193,10 +4929,10 @@ exports["default"] = (0, react_1.memo)(ContextualbarFooter);
4193
4929
 
4194
4930
  /***/ }),
4195
4931
 
4196
- /***/ "./src/components/Contextualbar/ContextualbarHeader.tsx":
4197
- /*!**************************************************************!*\
4198
- !*** ./src/components/Contextualbar/ContextualbarHeader.tsx ***!
4199
- \**************************************************************/
4932
+ /***/ "./src/components/ContextualbarV2/ContextualbarHeader.tsx":
4933
+ /*!****************************************************************!*\
4934
+ !*** ./src/components/ContextualbarV2/ContextualbarHeader.tsx ***!
4935
+ \****************************************************************/
4200
4936
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4201
4937
 
4202
4938
 
@@ -4267,10 +5003,10 @@ var templateObject_1;
4267
5003
 
4268
5004
  /***/ }),
4269
5005
 
4270
- /***/ "./src/components/Contextualbar/ContextualbarIcon.tsx":
4271
- /*!************************************************************!*\
4272
- !*** ./src/components/Contextualbar/ContextualbarIcon.tsx ***!
4273
- \************************************************************/
5006
+ /***/ "./src/components/ContextualbarV2/ContextualbarIcon.tsx":
5007
+ /*!**************************************************************!*\
5008
+ !*** ./src/components/ContextualbarV2/ContextualbarIcon.tsx ***!
5009
+ \**************************************************************/
4274
5010
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4275
5011
 
4276
5012
 
@@ -4317,10 +5053,10 @@ exports["default"] = (0, react_1.memo)(ContextualbarIcon);
4317
5053
 
4318
5054
  /***/ }),
4319
5055
 
4320
- /***/ "./src/components/Contextualbar/ContextualbarSection.tsx":
4321
- /*!***************************************************************!*\
4322
- !*** ./src/components/Contextualbar/ContextualbarSection.tsx ***!
4323
- \***************************************************************/
5056
+ /***/ "./src/components/ContextualbarV2/ContextualbarSection.tsx":
5057
+ /*!*****************************************************************!*\
5058
+ !*** ./src/components/ContextualbarV2/ContextualbarSection.tsx ***!
5059
+ \*****************************************************************/
4324
5060
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4325
5061
 
4326
5062
 
@@ -4369,10 +5105,10 @@ exports["default"] = (0, react_1.memo)(ContextualbarSection);
4369
5105
 
4370
5106
  /***/ }),
4371
5107
 
4372
- /***/ "./src/components/Contextualbar/ContextualbarSkeleton.tsx":
4373
- /*!****************************************************************!*\
4374
- !*** ./src/components/Contextualbar/ContextualbarSkeleton.tsx ***!
4375
- \****************************************************************/
5108
+ /***/ "./src/components/ContextualbarV2/ContextualbarSkeleton.tsx":
5109
+ /*!******************************************************************!*\
5110
+ !*** ./src/components/ContextualbarV2/ContextualbarSkeleton.tsx ***!
5111
+ \******************************************************************/
4376
5112
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4377
5113
 
4378
5114
 
@@ -4412,10 +5148,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
4412
5148
  };
4413
5149
  Object.defineProperty(exports, "__esModule", ({ value: true }));
4414
5150
  var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
4415
- var _1 = __webpack_require__(/*! . */ "./src/components/Contextualbar/index.ts");
5151
+ var _1 = __webpack_require__(/*! . */ "./src/components/ContextualbarV2/index.ts");
4416
5152
  var __1 = __webpack_require__(/*! .. */ "./src/components/index.ts");
4417
- var ContextualbarSkeleton = function (props) { return (react_1.default.createElement(_1.Contextualbar, __assign({}, props),
4418
- react_1.default.createElement(_1.ContextualbarHeader, null,
5153
+ var ContextualbarSkeleton = function (props) { return (react_1.default.createElement(_1.ContextualbarV2, __assign({}, props),
5154
+ react_1.default.createElement(_1.ContextualbarV2Header, null,
4419
5155
  react_1.default.createElement(__1.Skeleton, { width: '100%' })),
4420
5156
  react_1.default.createElement(__1.Box, { p: 24 },
4421
5157
  react_1.default.createElement(__1.Skeleton, { mbe: 4, width: '32px', height: '32px', variant: 'rect' }),
@@ -4427,10 +5163,10 @@ exports["default"] = (0, react_1.memo)(ContextualbarSkeleton);
4427
5163
 
4428
5164
  /***/ }),
4429
5165
 
4430
- /***/ "./src/components/Contextualbar/ContextualbarTitle.tsx":
4431
- /*!*************************************************************!*\
4432
- !*** ./src/components/Contextualbar/ContextualbarTitle.tsx ***!
4433
- \*************************************************************/
5166
+ /***/ "./src/components/ContextualbarV2/ContextualbarTitle.tsx":
5167
+ /*!***************************************************************!*\
5168
+ !*** ./src/components/ContextualbarV2/ContextualbarTitle.tsx ***!
5169
+ \***************************************************************/
4434
5170
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4435
5171
 
4436
5172
 
@@ -4477,10 +5213,10 @@ exports["default"] = (0, react_1.memo)(ContextualbarTitle);
4477
5213
 
4478
5214
  /***/ }),
4479
5215
 
4480
- /***/ "./src/components/Contextualbar/index.ts":
4481
- /*!***********************************************!*\
4482
- !*** ./src/components/Contextualbar/index.ts ***!
4483
- \***********************************************/
5216
+ /***/ "./src/components/ContextualbarV2/index.ts":
5217
+ /*!*************************************************!*\
5218
+ !*** ./src/components/ContextualbarV2/index.ts ***!
5219
+ \*************************************************/
4484
5220
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4485
5221
 
4486
5222
 
@@ -4488,31 +5224,31 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4488
5224
  return (mod && mod.__esModule) ? mod : { "default": mod };
4489
5225
  };
4490
5226
  Object.defineProperty(exports, "__esModule", ({ value: true }));
4491
- exports.ContextualbarSection = exports.ContextualbarTitle = exports.ContextualbarSkeleton = exports.ContextualbarIcon = exports.ContextualbarHeader = exports.ContextualbarFooter = exports.ContextualbarEmptyContent = exports.ContextualbarContent = exports.ContextualbarButton = exports.ContextualbarActions = exports.ContextualbarAction = exports.Contextualbar = void 0;
4492
- var Contextualbar_1 = __importDefault(__webpack_require__(/*! ./Contextualbar */ "./src/components/Contextualbar/Contextualbar.tsx"));
4493
- exports.Contextualbar = Contextualbar_1.default;
4494
- var ContextualbarAction_1 = __importDefault(__webpack_require__(/*! ./ContextualbarAction */ "./src/components/Contextualbar/ContextualbarAction.tsx"));
4495
- exports.ContextualbarAction = ContextualbarAction_1.default;
4496
- var ContextualbarActions_1 = __importDefault(__webpack_require__(/*! ./ContextualbarActions */ "./src/components/Contextualbar/ContextualbarActions.tsx"));
4497
- exports.ContextualbarActions = ContextualbarActions_1.default;
4498
- var ContextualbarButton_1 = __importDefault(__webpack_require__(/*! ./ContextualbarButton */ "./src/components/Contextualbar/ContextualbarButton.tsx"));
4499
- exports.ContextualbarButton = ContextualbarButton_1.default;
4500
- var ContextualbarContent_1 = __importDefault(__webpack_require__(/*! ./ContextualbarContent */ "./src/components/Contextualbar/ContextualbarContent.tsx"));
4501
- exports.ContextualbarContent = ContextualbarContent_1.default;
4502
- var ContextualbarEmptyContent_1 = __importDefault(__webpack_require__(/*! ./ContextualbarEmptyContent */ "./src/components/Contextualbar/ContextualbarEmptyContent.tsx"));
4503
- exports.ContextualbarEmptyContent = ContextualbarEmptyContent_1.default;
4504
- var ContextualbarFooter_1 = __importDefault(__webpack_require__(/*! ./ContextualbarFooter */ "./src/components/Contextualbar/ContextualbarFooter.tsx"));
4505
- exports.ContextualbarFooter = ContextualbarFooter_1.default;
4506
- var ContextualbarHeader_1 = __importDefault(__webpack_require__(/*! ./ContextualbarHeader */ "./src/components/Contextualbar/ContextualbarHeader.tsx"));
4507
- exports.ContextualbarHeader = ContextualbarHeader_1.default;
4508
- var ContextualbarIcon_1 = __importDefault(__webpack_require__(/*! ./ContextualbarIcon */ "./src/components/Contextualbar/ContextualbarIcon.tsx"));
4509
- exports.ContextualbarIcon = ContextualbarIcon_1.default;
4510
- var ContextualbarSection_1 = __importDefault(__webpack_require__(/*! ./ContextualbarSection */ "./src/components/Contextualbar/ContextualbarSection.tsx"));
4511
- exports.ContextualbarSection = ContextualbarSection_1.default;
4512
- var ContextualbarSkeleton_1 = __importDefault(__webpack_require__(/*! ./ContextualbarSkeleton */ "./src/components/Contextualbar/ContextualbarSkeleton.tsx"));
4513
- exports.ContextualbarSkeleton = ContextualbarSkeleton_1.default;
4514
- var ContextualbarTitle_1 = __importDefault(__webpack_require__(/*! ./ContextualbarTitle */ "./src/components/Contextualbar/ContextualbarTitle.tsx"));
4515
- exports.ContextualbarTitle = ContextualbarTitle_1.default;
5227
+ exports.ContextualbarV2Section = exports.ContextualbarV2Title = exports.ContextualbarV2Skeleton = exports.ContextualbarV2Icon = exports.ContextualbarV2Header = exports.ContextualbarV2Footer = exports.ContextualbarV2EmptyContent = exports.ContextualbarV2Content = exports.ContextualbarV2Button = exports.ContextualbarV2Actions = exports.ContextualbarV2Action = exports.ContextualbarV2 = void 0;
5228
+ var Contextualbar_1 = __importDefault(__webpack_require__(/*! ./Contextualbar */ "./src/components/ContextualbarV2/Contextualbar.tsx"));
5229
+ exports.ContextualbarV2 = Contextualbar_1.default;
5230
+ var ContextualbarAction_1 = __importDefault(__webpack_require__(/*! ./ContextualbarAction */ "./src/components/ContextualbarV2/ContextualbarAction.tsx"));
5231
+ exports.ContextualbarV2Action = ContextualbarAction_1.default;
5232
+ var ContextualbarActions_1 = __importDefault(__webpack_require__(/*! ./ContextualbarActions */ "./src/components/ContextualbarV2/ContextualbarActions.tsx"));
5233
+ exports.ContextualbarV2Actions = ContextualbarActions_1.default;
5234
+ var ContextualbarButton_1 = __importDefault(__webpack_require__(/*! ./ContextualbarButton */ "./src/components/ContextualbarV2/ContextualbarButton.tsx"));
5235
+ exports.ContextualbarV2Button = ContextualbarButton_1.default;
5236
+ var ContextualbarContent_1 = __importDefault(__webpack_require__(/*! ./ContextualbarContent */ "./src/components/ContextualbarV2/ContextualbarContent.tsx"));
5237
+ exports.ContextualbarV2Content = ContextualbarContent_1.default;
5238
+ var ContextualbarEmptyContent_1 = __importDefault(__webpack_require__(/*! ./ContextualbarEmptyContent */ "./src/components/ContextualbarV2/ContextualbarEmptyContent.tsx"));
5239
+ exports.ContextualbarV2EmptyContent = ContextualbarEmptyContent_1.default;
5240
+ var ContextualbarFooter_1 = __importDefault(__webpack_require__(/*! ./ContextualbarFooter */ "./src/components/ContextualbarV2/ContextualbarFooter.tsx"));
5241
+ exports.ContextualbarV2Footer = ContextualbarFooter_1.default;
5242
+ var ContextualbarHeader_1 = __importDefault(__webpack_require__(/*! ./ContextualbarHeader */ "./src/components/ContextualbarV2/ContextualbarHeader.tsx"));
5243
+ exports.ContextualbarV2Header = ContextualbarHeader_1.default;
5244
+ var ContextualbarIcon_1 = __importDefault(__webpack_require__(/*! ./ContextualbarIcon */ "./src/components/ContextualbarV2/ContextualbarIcon.tsx"));
5245
+ exports.ContextualbarV2Icon = ContextualbarIcon_1.default;
5246
+ var ContextualbarSection_1 = __importDefault(__webpack_require__(/*! ./ContextualbarSection */ "./src/components/ContextualbarV2/ContextualbarSection.tsx"));
5247
+ exports.ContextualbarV2Section = ContextualbarSection_1.default;
5248
+ var ContextualbarSkeleton_1 = __importDefault(__webpack_require__(/*! ./ContextualbarSkeleton */ "./src/components/ContextualbarV2/ContextualbarSkeleton.tsx"));
5249
+ exports.ContextualbarV2Skeleton = ContextualbarSkeleton_1.default;
5250
+ var ContextualbarTitle_1 = __importDefault(__webpack_require__(/*! ./ContextualbarTitle */ "./src/components/ContextualbarV2/ContextualbarTitle.tsx"));
5251
+ exports.ContextualbarV2Title = ContextualbarTitle_1.default;
4516
5252
 
4517
5253
 
4518
5254
  /***/ }),
@@ -15924,6 +16660,55 @@ var TopBarToolBox = function (_a) {
15924
16660
  exports.TopBarToolBox = TopBarToolBox;
15925
16661
 
15926
16662
 
16663
+ /***/ }),
16664
+
16665
+ /***/ "./src/components/Sidebar/TopBar/TopBarV2.tsx":
16666
+ /*!****************************************************!*\
16667
+ !*** ./src/components/Sidebar/TopBar/TopBarV2.tsx ***!
16668
+ \****************************************************/
16669
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
16670
+
16671
+
16672
+ var __assign = (this && this.__assign) || function () {
16673
+ __assign = Object.assign || function(t) {
16674
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
16675
+ s = arguments[i];
16676
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
16677
+ t[p] = s[p];
16678
+ }
16679
+ return t;
16680
+ };
16681
+ return __assign.apply(this, arguments);
16682
+ };
16683
+ var __rest = (this && this.__rest) || function (s, e) {
16684
+ var t = {};
16685
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16686
+ t[p] = s[p];
16687
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
16688
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
16689
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
16690
+ t[p[i]] = s[p[i]];
16691
+ }
16692
+ return t;
16693
+ };
16694
+ var __importDefault = (this && this.__importDefault) || function (mod) {
16695
+ return (mod && mod.__esModule) ? mod : { "default": mod };
16696
+ };
16697
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
16698
+ exports.TopBarV2 = void 0;
16699
+ var react_1 = __importDefault(__webpack_require__(/*! react */ "react"));
16700
+ var TopBarV2 = function (_a) {
16701
+ var className = _a.className, props = __rest(_a, ["className"]);
16702
+ return (react_1.default.createElement("div", __assign({ className: [
16703
+ 'rc-box rc-box--full rcx-sidebar-topbar-v2 rcx-sidebar-topbar-v2',
16704
+ className,
16705
+ ]
16706
+ .filter(Boolean)
16707
+ .join(' ') }, props)));
16708
+ };
16709
+ exports.TopBarV2 = TopBarV2;
16710
+
16711
+
15927
16712
  /***/ }),
15928
16713
 
15929
16714
  /***/ "./src/components/Sidebar/TopBar/TopBarWrapper.tsx":
@@ -16000,6 +16785,7 @@ exports["default"] = Object.assign(TopBar_1.TopBar, {
16000
16785
  Title: TopBarTitle_1.TopBarTitle,
16001
16786
  });
16002
16787
  __exportStar(__webpack_require__(/*! ./TopBar */ "./src/components/Sidebar/TopBar/TopBar.tsx"), exports);
16788
+ __exportStar(__webpack_require__(/*! ./TopBarV2 */ "./src/components/Sidebar/TopBar/TopBarV2.tsx"), exports);
16003
16789
  __exportStar(__webpack_require__(/*! ./TopBarAction */ "./src/components/Sidebar/TopBar/TopBarAction.tsx"), exports);
16004
16790
  __exportStar(__webpack_require__(/*! ./TopBarActions */ "./src/components/Sidebar/TopBar/TopBarActions.tsx"), exports);
16005
16791
  __exportStar(__webpack_require__(/*! ./TopBarSection */ "./src/components/Sidebar/TopBar/TopBarSection.tsx"), exports);
@@ -18792,6 +19578,7 @@ __exportStar(__webpack_require__(/*! ./Chevron */ "./src/components/Chevron/inde
18792
19578
  var CodeSnippet_1 = __webpack_require__(/*! ./CodeSnippet */ "./src/components/CodeSnippet/index.tsx");
18793
19579
  Object.defineProperty(exports, "CodeSnippet", ({ enumerable: true, get: function () { return __importDefault(CodeSnippet_1).default; } }));
18794
19580
  __exportStar(__webpack_require__(/*! ./Contextualbar */ "./src/components/Contextualbar/index.ts"), exports);
19581
+ __exportStar(__webpack_require__(/*! ./ContextualbarV2 */ "./src/components/ContextualbarV2/index.ts"), exports);
18795
19582
  var Chip_1 = __webpack_require__(/*! ./Chip */ "./src/components/Chip/index.ts");
18796
19583
  Object.defineProperty(exports, "Chip", ({ enumerable: true, get: function () { return __importDefault(Chip_1).default; } }));
18797
19584
  __exportStar(__webpack_require__(/*! ./Divider */ "./src/components/Divider/index.tsx"), exports);