superdesk-ui-framework 3.0.1-beta.1 → 3.0.1-beta.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.
- package/app/fonts/sd_big-icons.eot +0 -0
- package/app/fonts/sd_big-icons.svg +55 -53
- package/app/fonts/sd_big-icons.ttf +0 -0
- package/app/fonts/sd_big-icons.woff +0 -0
- package/app/fonts/sd_icons.eot +0 -0
- package/app/fonts/sd_icons.svg +1 -0
- package/app/fonts/sd_icons.ttf +0 -0
- package/app/fonts/sd_icons.woff +0 -0
- package/app/img/dots.svg +3 -0
- package/app/styles/_accessibility.scss +3 -3
- package/app/styles/_big-icon-font.scss +60 -23
- package/app/styles/_boxed-list.scss +26 -3
- package/app/styles/_buttons.scss +4 -0
- package/app/styles/_helpers.scss +4 -3
- package/app/styles/_icon-font.scss +341 -307
- package/app/styles/_icon-labels.scss +66 -10
- package/app/styles/_table-list.scss +244 -0
- package/app/styles/app.scss +1 -0
- package/app/styles/components/_list-item.scss +24 -20
- package/app/styles/components/_sd-dropzone.scss +52 -16
- package/app/styles/components/_subnav.scss +87 -80
- package/app/styles/design-tokens/_design-tokens-general.scss +7 -0
- package/app/styles/design-tokens/_new-colors.scss +4 -2
- package/app/styles/form-elements/_inputs.scss +4 -0
- package/app/styles/grids/_grid-layout.scss +21 -7
- package/app/styles/layout/_container.scss +3 -0
- package/app/styles/layout/_editor.scss +108 -16
- package/app/styles/menus/_sd-sidebar-menu.scss +6 -0
- package/app/styles/primereact/_pr-dialog.scss +39 -7
- package/app-typescript/components/CreateButton.tsx +38 -0
- package/app-typescript/components/DropZone.tsx +4 -4
- package/app-typescript/components/Icon.tsx +3 -1
- package/app-typescript/components/IconLabel.tsx +8 -1
- package/app-typescript/components/Input.tsx +2 -0
- package/app-typescript/components/Layouts/AuthoringContainer.tsx +27 -0
- package/app-typescript/components/Layouts/AuthoringInnerHeader.tsx +2 -0
- package/app-typescript/components/Layouts/AuthoringMain.tsx +11 -7
- package/app-typescript/components/Layouts/AuthoringMainToolBar.tsx +7 -1
- package/app-typescript/components/Layouts/Container.tsx +1 -1
- package/app-typescript/components/Layouts/ContentSplitter.tsx +23 -0
- package/app-typescript/components/Layouts/Layout.tsx +33 -0
- package/app-typescript/components/Layouts/LayoutContainer.tsx +1 -4
- package/app-typescript/components/Layouts/MainPanel.tsx +10 -5
- package/app-typescript/components/Layouts/OverlayPanel.tsx +19 -0
- package/app-typescript/components/Layouts/Panel.tsx +1 -0
- package/app-typescript/components/Layouts/index.tsx +8 -2
- package/app-typescript/components/Lists/BoxedList.tsx +6 -2
- package/app-typescript/components/Lists/ContentList.tsx +100 -0
- package/app-typescript/components/Lists/TableList.tsx +208 -0
- package/app-typescript/components/Modal.tsx +27 -17
- package/app-typescript/components/Navigation/SideBarTabs.tsx +10 -0
- package/app-typescript/components/SearchBar.tsx +79 -0
- package/app-typescript/components/Select.tsx +2 -0
- package/app-typescript/components/SidebarMenu.tsx +68 -0
- package/app-typescript/components/Spinner.tsx +1 -1
- package/app-typescript/components/SwitchGroup.tsx +2 -1
- package/app-typescript/index.ts +3 -0
- package/dist/dots.svg +3 -0
- package/dist/examples.bundle.css +7871 -379
- package/dist/examples.bundle.js +29461 -15740
- package/dist/playgrounds/react-playgrounds/EditorTest.tsx +9 -4
- package/dist/playgrounds/react-playgrounds/Index.tsx +3 -1
- package/dist/playgrounds/react-playgrounds/PersonalProfile.tsx +13 -0
- package/dist/playgrounds/react-playgrounds/RundownEditor.tsx +466 -0
- package/dist/playgrounds/react-playgrounds/Rundowns.tsx +1002 -0
- package/dist/playgrounds/react-playgrounds/TestGround.tsx +190 -182
- package/dist/playgrounds/react-playgrounds/UiPlayground.tsx +4 -0
- package/dist/playgrounds/react-playgrounds/components/AuthoringContainer.tsx +26 -0
- package/dist/playgrounds/react-playgrounds/components/ContentSplitter.tsx +22 -0
- package/dist/playgrounds/react-playgrounds/components/Index.tsx +6 -1
- package/dist/playgrounds/react-playgrounds/components/MainPanel.tsx +11 -1
- package/dist/playgrounds/react-playgrounds/components/SearchBar.tsx +51 -9
- package/dist/react/Container.tsx +1 -1
- package/dist/react/ContentList.tsx +280 -0
- package/dist/react/CreateButton.tsx +71 -0
- package/dist/react/DropZone.tsx +14 -6
- package/dist/react/IconButtons.tsx +6 -6
- package/dist/react/IconLabels.tsx +24 -2
- package/dist/react/Index.tsx +15 -0
- package/dist/react/Inputs.tsx +32 -3
- package/dist/react/Modal.tsx +1 -0
- package/dist/react/TableList.tsx +268 -0
- package/dist/sd_big-icons.eot +0 -0
- package/dist/sd_big-icons.svg +55 -53
- package/dist/sd_big-icons.ttf +0 -0
- package/dist/sd_big-icons.woff +0 -0
- package/dist/sd_icons.eot +0 -0
- package/dist/sd_icons.svg +1 -0
- package/dist/sd_icons.ttf +0 -0
- package/dist/sd_icons.woff +0 -0
- package/dist/superdesk-ui.bundle.css +44994 -24931
- package/dist/superdesk-ui.bundle.js +2437 -1949
- package/dist/vendor.bundle.js +27 -27
- package/examples/css/docs-page.css +2 -3
- package/examples/index.js +8 -0
- package/examples/pages/playgrounds/react-playgrounds/EditorTest.tsx +9 -4
- package/examples/pages/playgrounds/react-playgrounds/Index.tsx +3 -1
- package/examples/pages/playgrounds/react-playgrounds/PersonalProfile.tsx +13 -0
- package/examples/pages/playgrounds/react-playgrounds/RundownEditor.tsx +466 -0
- package/examples/pages/playgrounds/react-playgrounds/Rundowns.tsx +1002 -0
- package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +190 -182
- package/examples/pages/playgrounds/react-playgrounds/UiPlayground.tsx +4 -0
- package/examples/pages/playgrounds/react-playgrounds/components/AuthoringContainer.tsx +26 -0
- package/examples/pages/playgrounds/react-playgrounds/components/ContentSplitter.tsx +22 -0
- package/examples/pages/playgrounds/react-playgrounds/components/Index.tsx +6 -1
- package/examples/pages/playgrounds/react-playgrounds/components/MainPanel.tsx +11 -1
- package/examples/pages/playgrounds/react-playgrounds/components/SearchBar.tsx +51 -9
- package/examples/pages/react/Container.tsx +1 -1
- package/examples/pages/react/ContentList.tsx +280 -0
- package/examples/pages/react/CreateButton.tsx +71 -0
- package/examples/pages/react/DropZone.tsx +14 -6
- package/examples/pages/react/IconButtons.tsx +6 -6
- package/examples/pages/react/IconLabels.tsx +24 -2
- package/examples/pages/react/Index.tsx +15 -0
- package/examples/pages/react/Inputs.tsx +32 -3
- package/examples/pages/react/Modal.tsx +1 -0
- package/examples/pages/react/TableList.tsx +268 -0
- package/package.json +2 -1
- package/react/components/CreateButton.d.ts +17 -0
- package/react/components/CreateButton.js +66 -0
- package/react/components/DropZone.d.ts +2 -2
- package/react/components/DropZone.js +2 -2
- package/react/components/Icon.d.ts +1 -0
- package/react/components/Icon.js +2 -1
- package/react/components/IconLabel.d.ts +2 -0
- package/react/components/IconLabel.js +6 -3
- package/react/components/Input.d.ts +1 -0
- package/react/components/Input.js +1 -0
- package/react/components/Layouts/AuthoringContainer.d.ts +11 -0
- package/react/components/Layouts/AuthoringContainer.js +58 -0
- package/react/components/Layouts/AuthoringInnerHeader.d.ts +1 -0
- package/react/components/Layouts/AuthoringInnerHeader.js +6 -3
- package/react/components/Layouts/AuthoringMain.d.ts +3 -1
- package/react/components/Layouts/AuthoringMain.js +2 -2
- package/react/components/Layouts/AuthoringMainToolBar.d.ts +1 -0
- package/react/components/Layouts/AuthoringMainToolBar.js +8 -1
- package/react/components/Layouts/Container.d.ts +1 -1
- package/react/components/Layouts/ContentSplitter.d.ts +10 -0
- package/react/components/Layouts/ContentSplitter.js +56 -0
- package/react/components/Layouts/Layout.d.ts +8 -0
- package/react/components/Layouts/Layout.js +35 -0
- package/react/components/Layouts/LayoutContainer.js +1 -1
- package/react/components/Layouts/MainPanel.d.ts +1 -0
- package/react/components/Layouts/MainPanel.js +11 -4
- package/react/components/Layouts/OverlayPanel.d.ts +8 -0
- package/react/components/Layouts/OverlayPanel.js +49 -0
- package/react/components/Layouts/Panel.d.ts +1 -0
- package/react/components/Layouts/index.d.ts +6 -2
- package/react/components/Layouts/index.js +12 -4
- package/react/components/Lists/BoxedList.d.ts +2 -0
- package/react/components/Lists/BoxedList.js +6 -4
- package/react/components/Modal.d.ts +2 -0
- package/react/components/Modal.js +11 -3
- package/react/components/Navigation/SideBarTabs.d.ts +1 -0
- package/react/components/Navigation/SideBarTabs.js +4 -0
- package/react/components/SearchBar.d.ts +23 -0
- package/react/components/SearchBar.js +87 -0
- package/react/components/Select.d.ts +1 -0
- package/react/components/Select.js +1 -0
- package/react/components/Spinner.js +1 -1
- package/react/components/SwitchGroup.d.ts +1 -0
- package/react/components/SwitchGroup.js +1 -1
- package/react/index.d.ts +2 -0
- package/react/index.js +5 -0
- package/sd_icons.eot +0 -0
- package/sd_icons.svg +189 -0
- package/sd_icons.ttf +0 -0
- package/sd_icons.woff +0 -0
package/dist/vendor.bundle.js
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
var a = typeof exports === 'object' ? factory(require("react"), require("react-dom")) : factory(root["react"], root["react-dom"]);
|
8
8
|
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
9
9
|
}
|
10
|
-
})(typeof self !== 'undefined' ? self : this, function(__WEBPACK_EXTERNAL_MODULE_0__,
|
10
|
+
})(typeof self !== 'undefined' ? self : this, function(__WEBPACK_EXTERNAL_MODULE_0__, __WEBPACK_EXTERNAL_MODULE_7__) {
|
11
11
|
return /******/ (function(modules) { // webpackBootstrap
|
12
12
|
/******/ // The module cache
|
13
13
|
/******/ var installedModules = {};
|
@@ -70,7 +70,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
70
70
|
/******/ __webpack_require__.p = "";
|
71
71
|
/******/
|
72
72
|
/******/ // Load entry module and return exports
|
73
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
73
|
+
/******/ return __webpack_require__(__webpack_require__.s = 468);
|
74
74
|
/******/ })
|
75
75
|
/************************************************************************/
|
76
76
|
/******/ ({
|
@@ -82,7 +82,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE_0__;
|
|
82
82
|
|
83
83
|
/***/ }),
|
84
84
|
|
85
|
-
/***/
|
85
|
+
/***/ 37:
|
86
86
|
/***/ (function(module, exports) {
|
87
87
|
|
88
88
|
var g;
|
@@ -110,7 +110,7 @@ module.exports = g;
|
|
110
110
|
|
111
111
|
/***/ }),
|
112
112
|
|
113
|
-
/***/
|
113
|
+
/***/ 38:
|
114
114
|
/***/ (function(module, exports, __webpack_require__) {
|
115
115
|
|
116
116
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
@@ -10999,7 +10999,7 @@ return jQuery;
|
|
10999
10999
|
|
11000
11000
|
/***/ }),
|
11001
11001
|
|
11002
|
-
/***/
|
11002
|
+
/***/ 43:
|
11003
11003
|
/***/ (function(module, exports, __webpack_require__) {
|
11004
11004
|
|
11005
11005
|
/* WEBPACK VAR INJECTION */(function(global, module) {var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
@@ -28213,11 +28213,11 @@ return jQuery;
|
|
28213
28213
|
}
|
28214
28214
|
}.call(this));
|
28215
28215
|
|
28216
|
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(
|
28216
|
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(37), __webpack_require__(44)(module)))
|
28217
28217
|
|
28218
28218
|
/***/ }),
|
28219
28219
|
|
28220
|
-
/***/
|
28220
|
+
/***/ 44:
|
28221
28221
|
/***/ (function(module, exports) {
|
28222
28222
|
|
28223
28223
|
module.exports = function(module) {
|
@@ -28246,29 +28246,29 @@ module.exports = function(module) {
|
|
28246
28246
|
|
28247
28247
|
/***/ }),
|
28248
28248
|
|
28249
|
-
/***/
|
28249
|
+
/***/ 468:
|
28250
28250
|
/***/ (function(module, exports, __webpack_require__) {
|
28251
28251
|
|
28252
28252
|
"use strict";
|
28253
28253
|
|
28254
28254
|
|
28255
|
-
__webpack_require__(
|
28255
|
+
__webpack_require__(43);
|
28256
28256
|
|
28257
|
-
__webpack_require__(
|
28257
|
+
__webpack_require__(38);
|
28258
28258
|
|
28259
|
-
__webpack_require__(
|
28259
|
+
__webpack_require__(469);
|
28260
28260
|
|
28261
|
-
__webpack_require__(
|
28261
|
+
__webpack_require__(471);
|
28262
28262
|
|
28263
|
-
__webpack_require__(
|
28263
|
+
__webpack_require__(473);
|
28264
28264
|
|
28265
28265
|
__webpack_require__(0);
|
28266
28266
|
|
28267
|
-
__webpack_require__(
|
28267
|
+
__webpack_require__(7);
|
28268
28268
|
|
28269
28269
|
/***/ }),
|
28270
28270
|
|
28271
|
-
/***/
|
28271
|
+
/***/ 469:
|
28272
28272
|
/***/ (function(module, exports, __webpack_require__) {
|
28273
28273
|
|
28274
28274
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
@@ -28292,7 +28292,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
28292
28292
|
if ( true ) {
|
28293
28293
|
|
28294
28294
|
// AMD. Register as an anonymous module.
|
28295
|
-
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(
|
28295
|
+
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(38), __webpack_require__(470) ], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
28296
28296
|
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
28297
28297
|
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
28298
28298
|
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
@@ -29030,7 +29030,7 @@ return $.widget;
|
|
29030
29030
|
|
29031
29031
|
/***/ }),
|
29032
29032
|
|
29033
|
-
/***/
|
29033
|
+
/***/ 470:
|
29034
29034
|
/***/ (function(module, exports, __webpack_require__) {
|
29035
29035
|
|
29036
29036
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;( function( factory ) {
|
@@ -29039,7 +29039,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
29039
29039
|
if ( true ) {
|
29040
29040
|
|
29041
29041
|
// AMD. Register as an anonymous module.
|
29042
|
-
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(
|
29042
|
+
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [ __webpack_require__(38) ], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
29043
29043
|
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
29044
29044
|
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
29045
29045
|
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
@@ -29060,16 +29060,16 @@ return $.ui.version = "1.13.0";
|
|
29060
29060
|
|
29061
29061
|
/***/ }),
|
29062
29062
|
|
29063
|
-
/***/
|
29063
|
+
/***/ 471:
|
29064
29064
|
/***/ (function(module, exports, __webpack_require__) {
|
29065
29065
|
|
29066
|
-
__webpack_require__(
|
29066
|
+
__webpack_require__(472);
|
29067
29067
|
module.exports = angular;
|
29068
29068
|
|
29069
29069
|
|
29070
29070
|
/***/ }),
|
29071
29071
|
|
29072
|
-
/***/
|
29072
|
+
/***/ 472:
|
29073
29073
|
/***/ (function(module, exports, __webpack_require__) {
|
29074
29074
|
|
29075
29075
|
/* WEBPACK VAR INJECTION */(function(__webpack_provided_window_dot_jQuery) {/**
|
@@ -65672,20 +65672,20 @@ $provide.value("$locale", {
|
|
65672
65672
|
})(window);
|
65673
65673
|
|
65674
65674
|
!window.angular.$$csp().noInlineStyle && window.angular.element(document.head).prepend(window.angular.element('<style>').text('@charset "UTF-8";[ng\\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}ng\\:form{display:block;}.ng-animate-shim{visibility:hidden;}.ng-anchor{position:absolute;}'));
|
65675
|
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(
|
65675
|
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(38)))
|
65676
65676
|
|
65677
65677
|
/***/ }),
|
65678
65678
|
|
65679
|
-
/***/
|
65679
|
+
/***/ 473:
|
65680
65680
|
/***/ (function(module, exports, __webpack_require__) {
|
65681
65681
|
|
65682
|
-
__webpack_require__(
|
65682
|
+
__webpack_require__(474);
|
65683
65683
|
module.exports = 'ngAnimate';
|
65684
65684
|
|
65685
65685
|
|
65686
65686
|
/***/ }),
|
65687
65687
|
|
65688
|
-
/***/
|
65688
|
+
/***/ 474:
|
65689
65689
|
/***/ (function(module, exports) {
|
65690
65690
|
|
65691
65691
|
/**
|
@@ -69964,10 +69964,10 @@ angular.module('ngAnimate', [], function initAngularHelpers() {
|
|
69964
69964
|
|
69965
69965
|
/***/ }),
|
69966
69966
|
|
69967
|
-
/***/
|
69967
|
+
/***/ 7:
|
69968
69968
|
/***/ (function(module, exports) {
|
69969
69969
|
|
69970
|
-
module.exports =
|
69970
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE_7__;
|
69971
69971
|
|
69972
69972
|
/***/ })
|
69973
69973
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
--docs-page-color-bg-default: hsl(0, 0%, 97%);
|
7
7
|
--docs-page-color-bg-00: hsla(214, 13%, 96%, 1);
|
8
8
|
--docs-page-color-bg-10: hsla(0, 0%, 100%, 1);
|
9
|
-
--docs-page-color-bg__window-bar: hsl(
|
9
|
+
--docs-page-color-bg__window-bar: hsl(214, 13%, 90%);
|
10
10
|
--docs-page-color-bg__aside: hsla(214, 13%, 92%, 1);
|
11
11
|
--docs-page-color-bg__header: hsl(216, 45%, 24%);
|
12
12
|
|
@@ -26,7 +26,7 @@
|
|
26
26
|
--docs-page-color-bg-default: hsla(214, 13%, 96%, 1);
|
27
27
|
--docs-page-color-bg-00: hsla(214, 13%, 12%, 1);
|
28
28
|
--docs-page-color-bg-10: hsla(214, 13%, 12%, 1);
|
29
|
-
--docs-page-color-bg__window-bar: hsl(
|
29
|
+
--docs-page-color-bg__window-bar: hsl(214, 13%, 8%);
|
30
30
|
--docs-page-color-bg__aside: hsla(214, 13%, 16%, 1);
|
31
31
|
--docs-page-color-bg__header: hsl(216, 40%, 18%);
|
32
32
|
|
@@ -858,7 +858,6 @@ pre.prettyprint {
|
|
858
858
|
scroll-behavior: smooth;
|
859
859
|
}
|
860
860
|
|
861
|
-
.
|
862
861
|
/* ---------------- COLOR SWATCHES ---------------- */
|
863
862
|
|
864
863
|
.doc-swatches__grid {
|
package/examples/index.js
CHANGED
@@ -406,6 +406,14 @@ export default angular.module('ui-docs', [
|
|
406
406
|
'personal-profile': {
|
407
407
|
name: 'Personal Profile',
|
408
408
|
component: 'PersonalProfile'
|
409
|
+
},
|
410
|
+
'rundown-editor': {
|
411
|
+
name: 'Rundown Editor',
|
412
|
+
component: 'RundownEditor'
|
413
|
+
},
|
414
|
+
'rundowns': {
|
415
|
+
name: 'Rundowns',
|
416
|
+
component: 'Rundowns'
|
409
417
|
}
|
410
418
|
}
|
411
419
|
}))
|
@@ -112,6 +112,7 @@ export class EditorTest extends React.Component<IProps, IState> {
|
|
112
112
|
)}
|
113
113
|
main={(
|
114
114
|
<Layout.AuthoringMain
|
115
|
+
headerPadding='medium'
|
115
116
|
toolBar={(
|
116
117
|
<React.Fragment>
|
117
118
|
<div className="sd-editor-toolbar__content">
|
@@ -126,18 +127,19 @@ export class EditorTest extends React.Component<IProps, IState> {
|
|
126
127
|
<dd><time title="July 29, 2021 3:58 PM">07/29</time></dd>
|
127
128
|
</dl>
|
128
129
|
</div>
|
129
|
-
<ButtonGroup
|
130
|
+
<ButtonGroup align='end'>
|
130
131
|
<IconButton icon="preview-mode" toolTipAppend={true} ariaValue="Print preview" onClick={()=> false} />
|
131
132
|
<IconButton icon="adjust" ariaValue="Toogle theme" onClick={()=> false} />
|
132
133
|
<IconButton icon="switches" ariaValue="Theme settings" onClick={()=> false} />
|
133
134
|
</ButtonGroup>
|
134
135
|
</React.Fragment>
|
135
136
|
)}
|
136
|
-
authoringHeader={(
|
137
|
+
authoringHeader ={(
|
137
138
|
<React.Fragment>
|
138
139
|
<Form.FormGroup inlineLabel={true}>
|
139
140
|
<Form.FormItem>
|
140
141
|
<Input
|
142
|
+
type='text'
|
141
143
|
label='Slugline'
|
142
144
|
value='This is some value'
|
143
145
|
maxLength={30}
|
@@ -146,10 +148,11 @@ export class EditorTest extends React.Component<IProps, IState> {
|
|
146
148
|
required={false}
|
147
149
|
disabled={false}
|
148
150
|
invalid={false}
|
149
|
-
onChange={(value) => {}} />
|
151
|
+
onChange={(value) => {}} />
|
150
152
|
</Form.FormItem>
|
151
153
|
<Form.FormItem>
|
152
154
|
<Input
|
155
|
+
type='text'
|
153
156
|
label='Slugline'
|
154
157
|
value='This is some value'
|
155
158
|
maxLength={30}
|
@@ -164,6 +167,7 @@ export class EditorTest extends React.Component<IProps, IState> {
|
|
164
167
|
<Form.FormGroup inlineLabel={true}>
|
165
168
|
<Form.FormItem>
|
166
169
|
<Input
|
170
|
+
type='text'
|
167
171
|
label='Genre'
|
168
172
|
value='This is some value'
|
169
173
|
maxLength={30}
|
@@ -177,7 +181,8 @@ export class EditorTest extends React.Component<IProps, IState> {
|
|
177
181
|
</Form.FormGroup>
|
178
182
|
<Form.FormGroup marginBottom='0' inlineLabel={true}>
|
179
183
|
<Form.FormItem>
|
180
|
-
<Input
|
184
|
+
<Input
|
185
|
+
type='text'
|
181
186
|
label='Subject'
|
182
187
|
value='This is some value'
|
183
188
|
maxLength={30}
|
@@ -4,4 +4,6 @@ export { TestGround } from './TestGround';
|
|
4
4
|
export { UiPlayground } from './UiPlayground';
|
5
5
|
export { PageLayoutTest } from './PageLayoutTest';
|
6
6
|
export { EditorTest } from './EditorTest';
|
7
|
-
export {
|
7
|
+
export { RundownEditor } from './RundownEditor';
|
8
|
+
export { PersonalProfile } from './PersonalProfile';
|
9
|
+
export { Rundowns } from './Rundowns';
|
@@ -200,6 +200,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
200
200
|
<Form.FormItem>
|
201
201
|
<Input
|
202
202
|
label='First Name'
|
203
|
+
type='text'
|
203
204
|
value='Jeffrey'
|
204
205
|
error='Error message'
|
205
206
|
required={false}
|
@@ -212,6 +213,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
212
213
|
<Form.FormItem>
|
213
214
|
<Input
|
214
215
|
label='Last Name'
|
216
|
+
type='text'
|
215
217
|
value='Lebowski'
|
216
218
|
error='Error message'
|
217
219
|
required={false}
|
@@ -224,6 +226,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
224
226
|
<Form.FormItem>
|
225
227
|
<Input
|
226
228
|
label='Username'
|
229
|
+
type='text'
|
227
230
|
value='the_dude'
|
228
231
|
error='Error message'
|
229
232
|
required={false}
|
@@ -238,6 +241,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
238
241
|
<Form.FormItem>
|
239
242
|
<Input
|
240
243
|
label='Email'
|
244
|
+
type='text'
|
241
245
|
value='jeffrey.lebowski@bloodsimple.org'
|
242
246
|
error='Error message'
|
243
247
|
required={false}
|
@@ -250,6 +254,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
250
254
|
<Form.FormItem>
|
251
255
|
<Input
|
252
256
|
label='Phone number'
|
257
|
+
type='text'
|
253
258
|
value='+381 64 155 22 55'
|
254
259
|
error='Error message'
|
255
260
|
required={false}
|
@@ -345,6 +350,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
345
350
|
<Form.FormItem>
|
346
351
|
<Input
|
347
352
|
label='Sign-Off'
|
353
|
+
type='text'
|
348
354
|
value='the_dude'
|
349
355
|
error='Error message'
|
350
356
|
required={false}
|
@@ -357,6 +363,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
357
363
|
<Form.FormItem>
|
358
364
|
<Input
|
359
365
|
label='Byline'
|
366
|
+
type='text'
|
360
367
|
value='Jeffrey Lebowski'
|
361
368
|
error='Error message'
|
362
369
|
required={false}
|
@@ -369,6 +376,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
369
376
|
<Form.FormItem>
|
370
377
|
<Input
|
371
378
|
label='Job Title'
|
379
|
+
type='text'
|
372
380
|
value='the_dude'
|
373
381
|
error='Error message'
|
374
382
|
required={false}
|
@@ -381,6 +389,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
381
389
|
<Form.FormItem>
|
382
390
|
<Input
|
383
391
|
label='Biography'
|
392
|
+
type='text'
|
384
393
|
value='the_dude'
|
385
394
|
error='Error message'
|
386
395
|
required={false}
|
@@ -394,6 +403,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
394
403
|
<Form.FormItem>
|
395
404
|
<Input
|
396
405
|
label='Facebook'
|
406
|
+
type='text'
|
397
407
|
value='the_dude'
|
398
408
|
error='Error message'
|
399
409
|
required={false}
|
@@ -406,6 +416,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
406
416
|
<Form.FormItem>
|
407
417
|
<Input
|
408
418
|
label='Instagram'
|
419
|
+
type='text'
|
409
420
|
value='the_dude'
|
410
421
|
error='Error message'
|
411
422
|
required={false}
|
@@ -418,6 +429,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
418
429
|
<Form.FormItem>
|
419
430
|
<Input
|
420
431
|
label='Twitter'
|
432
|
+
type='text'
|
421
433
|
value='the_dude'
|
422
434
|
error='Error message'
|
423
435
|
required={false}
|
@@ -518,6 +530,7 @@ export class PersonalProfile extends React.Component<IProps, IState> {
|
|
518
530
|
<Form.FormItem>
|
519
531
|
<Input
|
520
532
|
label='Dateline / Located'
|
533
|
+
type='text'
|
521
534
|
value=''
|
522
535
|
error='This is error message'
|
523
536
|
required={false}
|