superdesk-ui-framework 3.0.28 → 3.0.30

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.
Binary file
@@ -194,4 +194,6 @@
194
194
  <glyph unicode="&#xe6b8;" glyph-name="list-alt-cancel" d="M67.882 891.8l60.116-60.116 0.002 0.228 128-128-0.002-0.228 63.684-63.684h0.23l64.088-64.088-0.002-0.228 63.684-63.684h0.23l64-64h-0.23l64-64h0.23l64-64h-0.23l64-64h0.23l192.088-192.088-0.004-0.226 60.012-60.012-67.882-67.882-64.208 64.208h-631.918c-34.353 0-63.413 30.677-63.991 63.019l-0.009 0.981-0.002 631.92-127.998 127.998zM832 896c34.353 0 63.413-28.717 63.991-62.961l0.009-1.039v-632.324l-184.324 184.324h56.324v64h-120.324l-63.998 64h184.322v64h-248.322l-64 64h312.322v64h-376.322l-192 192zM567.918 256l-64 64h-119.918v-64zM320 320h-64v-64h64zM439.918 384l-55.92 55.92 0.002-55.92zM320 448h-64v-64h64zM255.998 567.92l0.002-55.92h55.918z" />
195
195
  <glyph unicode="&#xe6b9;" glyph-name="post-cancel" d="M67.882 891.8l59.8-59.8 0.228 0.002 128.090-128.092v-0.228l63.68-63.68h0.228l64-64h-0.228l64-64h0.228l64-64h-0.228l64-64h0.23l128-128h-0.23l252.328-252.328-67.882-67.882-320.21 320.21-311.916-0.002-192-192v695.918l-64 64zM896 832c34.353 0 63.413-28.717 63.991-62.961l0.009-1.039v-448c0-34.353-28.717-63.413-62.961-63.991l-1.039-0.009-56.326 0.002-256.002 256 184.328-0.002v64l-248.328 0.002-64 64 312.328-0.002v64l-376.328 0.002-128 128zM439.916 384.002l-64 64-119.916-0.002v-64zM311.916 512.002l-55.916 55.916v-55.918z" />
196
196
  <glyph unicode="&#xe6ba;" glyph-name="text-block" d="M896 543.95v-191.9c0-53.012-43.038-96.050-96.050-96.050h-575.9c-53.012 0-96.050 43.038-96.050 96.050v191.9c0 53.012 43.039 96.050 96.050 96.050h575.9c53.012 0 96.050-43.038 96.050-96.050zM256 384h512v128h-512zM128 768h768v128h-768zM128 0h768v128h-768z" />
197
+ <glyph unicode="&#xe6bb;" glyph-name="graphic-cancel" d="M656.538 167.882c-43.904-135.078-170.894-232.834-320.534-232.834-185.972 0-336.956 150.984-336.956 336.956 0 149.586 97.684 276.536 232.686 320.486l-231.668 231.562 67.868 67.896 888.476-888.064-67.866-67.898zM256 840.58v119.42h768v-768h-119.12l-113.858 113.806c-14.682 221.54-191.856 398.648-413.422 413.232z" />
198
+ <glyph unicode="&#xe6bc;" glyph-name="play-cancel" d="M192.74 631.466l-192.674 192.586 67.868 67.896 888.476-888.064-67.866-67.898-341.312 341.152-318.874-191.324c-3.724-2.234-7.988-3.416-12.332-3.416-13.15 0-23.97 10.82-23.97 23.97v0.032zM385.242 711.398c-0.79 0.79-0.866 2.042-0.18 2.922 0.688 0.878 1.922 1.106 2.878 0.532 76.324-45.866 409.842-246.29 409.842-246.29 7.204-4.328 11.624-12.142 11.624-20.546 0-8.41-4.424-16.226-11.636-20.554l-80.274-48.164s-269.93 269.806-332.254 332.1z" />
197
199
  </font></defs></svg>
Binary file
Binary file
@@ -287,6 +287,8 @@ $sd-icon-font: (
287
287
  list-alt-cancel: "\e6b8",
288
288
  post-cancel: "\e6b9",
289
289
  text-block: "\e6ba",
290
+ graphic-cancel: "\e6bb",
291
+ play-cancel: "\e6bc",
290
292
  );
291
293
 
292
294
  @each $name, $value in $sd-icon-font {
@@ -1,7 +1,7 @@
1
1
  // LIST ITEMS : components/list-items.scss
2
2
  // --------------
3
3
 
4
- //background color
4
+ //background color
5
5
  $sd-ListItem-background: var(--sd-item__main-Bg);
6
6
  $sd-ListItem-background-hover: var(--sd-item__main-Bg--hover);
7
7
  $sd-ListItem-background-selected: var(--sd-item__main-Bg--selected);
@@ -38,7 +38,7 @@ $sd-ListItem-column-border: var(--sd-colour-line--x-light);
38
38
  &:hover {
39
39
  background-color: $sd-ListItem-background;
40
40
  cursor: default;
41
- }
41
+ }
42
42
  }
43
43
  &--inactive {
44
44
  background-color: transparent;
@@ -140,7 +140,7 @@ $sd-ListItem-column-border: var(--sd-colour-line--x-light);
140
140
  background-color: transparent;
141
141
  &--locked, &--error {
142
142
  background: $red;
143
- }
143
+ }
144
144
  &--success, &--active {
145
145
  background: $green;
146
146
  }
@@ -198,7 +198,7 @@ $sd-ListItem-column-border: var(--sd-colour-line--x-light);
198
198
  justify-content: center;
199
199
  z-index: 2;
200
200
  opacity: 0;
201
- transition: opacity 0.2s linear;
201
+ transition: opacity 0.2s linear;
202
202
  .sd-check__wrapper {
203
203
  height: 1.6rem;
204
204
  width: 1.6rem;
@@ -222,7 +222,7 @@ $sd-ListItem-column-border: var(--sd-colour-line--x-light);
222
222
  .sd-list-item__checkbox-container {
223
223
  opacity: 1;
224
224
  }
225
- }
225
+ }
226
226
  }
227
227
  }
228
228
 
@@ -313,18 +313,12 @@ $sd-ListItem-column-border: var(--sd-colour-line--x-light);
313
313
  }
314
314
 
315
315
  .sd-list-item {
316
- [class^="icon-"],
317
- [class*=" icon-"] {
318
- opacity: 0.75;
319
- vertical-align: middle;
320
- color: var(--color-icon-default);
321
- }
322
316
  time {
323
317
  [class^="icon-"],
324
318
  [class*=" icon-"] {
325
319
  vertical-align: top;
326
320
  margin-inline-end: 0.2rem;
327
- }
321
+ }
328
322
  }
329
323
  }
330
324
 
@@ -475,7 +469,7 @@ $sd-ListItem-column-border: var(--sd-colour-line--x-light);
475
469
  }
476
470
  .sd-list-item--activated {
477
471
  .dropdown__toggle {
478
-
472
+
479
473
  [class^="icon-"],
480
474
  [class*=" icon-"] {
481
475
  opacity: 1;
@@ -586,7 +580,7 @@ $sd-ListItem-column-border: var(--sd-colour-line--x-light);
586
580
  color: var(--sd-colour-interactive--darken-20);
587
581
  border-bottom: 1px dotted currentColor;
588
582
  }
589
- }
583
+ }
590
584
  }
591
585
  .sd-list-header__number {
592
586
  margin-inline-start: 1rem;
@@ -11904,6 +11904,92 @@ doc-react-playground {
11904
11904
  --icon-base-size: 64px
11905
11905
  ; }
11906
11906
 
11907
+ .icon-graphic-cancel:before {
11908
+ content: ""; }
11909
+
11910
+ .icon-graphic-cancel.color--default {
11911
+ color: var(--color-icon-default); }
11912
+
11913
+ .icon-graphic-cancel.color--primary {
11914
+ color: var(--sd-colour-primary) !important; }
11915
+
11916
+ .icon-graphic-cancel.color--success {
11917
+ color: var(--sd-colour-success) !important; }
11918
+
11919
+ .icon-graphic-cancel.color--warning {
11920
+ color: var(--sd-colour-warning) !important; }
11921
+
11922
+ .icon-graphic-cancel.color--alert {
11923
+ color: var(--sd-colour-alert) !important; }
11924
+
11925
+ .icon-graphic-cancel.color--highlight {
11926
+ color: var(--sd-colour-highlight) !important; }
11927
+
11928
+ .icon-graphic-cancel.color--light {
11929
+ color: var(--color-text-lighter) !important; }
11930
+
11931
+ .icon-graphic-cancel.color--white {
11932
+ color: #e2e5e9 !important; }
11933
+
11934
+ .icon-graphic-cancel.scale--1\.5x {
11935
+ --icon-base-size: 24px
11936
+ ; }
11937
+
11938
+ .icon-graphic-cancel.scale--2x {
11939
+ --icon-base-size: 32px
11940
+ ; }
11941
+
11942
+ .icon-graphic-cancel.scale--3x {
11943
+ --icon-base-size: 48px
11944
+ ; }
11945
+
11946
+ .icon-graphic-cancel.scale--4x {
11947
+ --icon-base-size: 64px
11948
+ ; }
11949
+
11950
+ .icon-play-cancel:before {
11951
+ content: ""; }
11952
+
11953
+ .icon-play-cancel.color--default {
11954
+ color: var(--color-icon-default); }
11955
+
11956
+ .icon-play-cancel.color--primary {
11957
+ color: var(--sd-colour-primary) !important; }
11958
+
11959
+ .icon-play-cancel.color--success {
11960
+ color: var(--sd-colour-success) !important; }
11961
+
11962
+ .icon-play-cancel.color--warning {
11963
+ color: var(--sd-colour-warning) !important; }
11964
+
11965
+ .icon-play-cancel.color--alert {
11966
+ color: var(--sd-colour-alert) !important; }
11967
+
11968
+ .icon-play-cancel.color--highlight {
11969
+ color: var(--sd-colour-highlight) !important; }
11970
+
11971
+ .icon-play-cancel.color--light {
11972
+ color: var(--color-text-lighter) !important; }
11973
+
11974
+ .icon-play-cancel.color--white {
11975
+ color: #e2e5e9 !important; }
11976
+
11977
+ .icon-play-cancel.scale--1\.5x {
11978
+ --icon-base-size: 24px
11979
+ ; }
11980
+
11981
+ .icon-play-cancel.scale--2x {
11982
+ --icon-base-size: 32px
11983
+ ; }
11984
+
11985
+ .icon-play-cancel.scale--3x {
11986
+ --icon-base-size: 48px
11987
+ ; }
11988
+
11989
+ .icon-play-cancel.scale--4x {
11990
+ --icon-base-size: 64px
11991
+ ; }
11992
+
11907
11993
  .icn-mix {
11908
11994
  position: relative;
11909
11995
  display: inline-flex !important;
@@ -63947,7 +63947,7 @@ exports.TagInput = TagInput;
63947
63947
  /***/ (function(module, exports) {
63948
63948
 
63949
63949
  // removed by extract-text-webpack-plugin
63950
- module.exports = {"icon":"photo, video, map-marker, slideshow, text, file, calendar, composite, audio, stream, ingest, archive, time, pin, expand, ascending, descending, th, grid-view, th-list, list-view, pencil, lock, retweet, unspike, fullscreen, fetch-as, search, star, star-empty, multi-star, th-large, grid-view-large, ok, zoom-in, zoom-out, signal, filter-large, trash, user, download, upload, repeat, refresh, list-alt, plus-large, picture, question-sign, info-sign, plus-sign, minus-sign, remove-sign, share-alt, exclamation-sign, eye-open, copy, comment, warning-sign, adjust, folder-close, folder-open, download-alt, tasks, globe, link, expand-thin, assign, dots, dots-vertical, backward-thin, forward-thin, chevron-left-thin, chevron-right-thin, switches, plus-small, minus-small, close-small, post, external, chevron-up-thin, chevron-down-thin, pick, revert, package-plus, list-plus, envelope, heart, home, print, font, bold, italic, underline, strikethrough, align-left, align-center, align-right, align-justify, unordered-list, indent-left, indent-right, ban-circle, bell, random, settings, package-create, list-menu, new-doc, edit-line, calendar-list, collapse, broadcast, broadcast-create, kill, graphic, close-thick, move, takes-package, highlight-package, preview-mode, unlocked, code, cut, paste, arrow-left, arrow-right, info-large, help-large, attachment, attachment-large, table, ordered-list, heading-1, heading-2, heading-3, heading-4, heading-5, heading-6, quote, multiedit, phone, mobile, twitter, facebook, linked-in, twitter-circle, facebook-circle, linked-in-circle, recurring, paragraph, suggestion, event, kanban-view, subscript, superscript, clear-format, preformatted, crop, flip-horizontal, flip-vertical, rotate-right, rotate-left, business, paywall, analytics, amp, undo, redo, instagram, play, stop, pause, fast_rewind, fast_forward, skip_previous, skip_next, add-image, add-gallery, text-format, to-uppercase, to-lowercase, arrow-small, clear-all, rundown, photo-cancel, video-cancel, text-cancel, file-cancel, audio-cancel, list-alt-cancel, post-cancel, text-block"};
63950
+ module.exports = {"icon":"photo, video, map-marker, slideshow, text, file, calendar, composite, audio, stream, ingest, archive, time, pin, expand, ascending, descending, th, grid-view, th-list, list-view, pencil, lock, retweet, unspike, fullscreen, fetch-as, search, star, star-empty, multi-star, th-large, grid-view-large, ok, zoom-in, zoom-out, signal, filter-large, trash, user, download, upload, repeat, refresh, list-alt, plus-large, picture, question-sign, info-sign, plus-sign, minus-sign, remove-sign, share-alt, exclamation-sign, eye-open, copy, comment, warning-sign, adjust, folder-close, folder-open, download-alt, tasks, globe, link, expand-thin, assign, dots, dots-vertical, backward-thin, forward-thin, chevron-left-thin, chevron-right-thin, switches, plus-small, minus-small, close-small, post, external, chevron-up-thin, chevron-down-thin, pick, revert, package-plus, list-plus, envelope, heart, home, print, font, bold, italic, underline, strikethrough, align-left, align-center, align-right, align-justify, unordered-list, indent-left, indent-right, ban-circle, bell, random, settings, package-create, list-menu, new-doc, edit-line, calendar-list, collapse, broadcast, broadcast-create, kill, graphic, close-thick, move, takes-package, highlight-package, preview-mode, unlocked, code, cut, paste, arrow-left, arrow-right, info-large, help-large, attachment, attachment-large, table, ordered-list, heading-1, heading-2, heading-3, heading-4, heading-5, heading-6, quote, multiedit, phone, mobile, twitter, facebook, linked-in, twitter-circle, facebook-circle, linked-in-circle, recurring, paragraph, suggestion, event, kanban-view, subscript, superscript, clear-format, preformatted, crop, flip-horizontal, flip-vertical, rotate-right, rotate-left, business, paywall, analytics, amp, undo, redo, instagram, play, stop, pause, fast_rewind, fast_forward, skip_previous, skip_next, add-image, add-gallery, text-format, to-uppercase, to-lowercase, arrow-small, clear-all, rundown, photo-cancel, video-cancel, text-cancel, file-cancel, audio-cancel, list-alt-cancel, post-cancel, text-block, graphic-cancel, play-cancel"};
63951
63951
 
63952
63952
  /***/ }),
63953
63953
  /* 279 */
@@ -142948,7 +142948,7 @@ exports.ResizablePanelsDoc = ResizablePanelsDoc;
142948
142948
  /* 681 */
142949
142949
  /***/ (function(module, exports) {
142950
142950
 
142951
- module.exports = {"name":"superdesk-ui-framework","version":"3.0.28","license":"AGPL-3.0","repository":{"type":"git","url":"https://github.com/superdesk/superdesk-ui-framework.git"},"main":"dist/superdesk-ui.bundle.js","types":"react/index.d.ts","contributors":["Nemanja Pavlovic","Vladimir Stefanovic","Darko Tomic","Aleksandar Jelicic","Tomas Kikutis","Dragana Zivkovic"],"scripts":{"start":"webpack-dev-server --config tasks/webpack.dev.js","server":"webpack --watch --config tasks/webpack.prod.js && tsc-watch","build":"webpack --config tasks/webpack.prod.js && tsc","build-ui":"webpack && tsc && npm run lint","lint":"eslint --parser=@typescript-eslint/parser app && tslint -c tslint.json 'app-typescript/**/*.{ts,tsx}'","lint-fix":"tsc -p tsconfig.json --noEmit && tslint --fix -c tslint.json 'app-typescript/**/*.{ts,tsx}'","prepublishOnly":"npm run build","unit-test":"mocha","debug-unit-tests":"mocha --inspect-brk"},"devDependencies":{"@types/assert":"^1.5.6","@types/chart.js":"^2.9.24","@types/classnames":"^2.2.9","@types/enzyme":"^3.10.12","@types/lodash":"^4.14.161","@types/mocha":"^9.1.1","@types/react":"16.8.23","@types/react-beautiful-dnd":"^13.1.2","@types/react-dom":"16.8.0","@types/react-router-dom":"^5.1.2","@types/react-scrollspy":"^3.3.5","@typescript-eslint/parser":"^5.58.0","angular":"^1.7.9","angular-animate":"^1.7.9","angular-route":"^1.7.9","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","classnames":"^2.2.5","clean-webpack-plugin":"^1.0.0","code-prettify":"^0.1.0","copy-webpack-plugin":"^4.6.0","css-loader":"^2.1.1","eslint":"^4.6.1","eslint-loader":"^1.9.0","eslint-plugin-angular":"^3.1.1","eslint-plugin-react":"^7.3.0","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","html-loader":"^0.5.1","html-webpack-plugin":"^2.30.1","jquery":"^3.1.1","jquery-ui":"^1.12.1","jsdom":"20.0.3","jsdom-global":"3.0.2","lodash":"4.17.21","mocha":"^8.4.0","node-sass":"6.0","prismjs":"^1.28.0","prop-types":"^15.6.0","react":"16.8.6","react-bootstrap":"^0.31.2","react-dom":"16.8.6","react-redux":"^5.0.6","react-router-dom":"^5.1.2","redux":"^3.7.2","redux-form":"^7.0.4","sass-loader":"^6.0.6","style-loader":"^0.18.2","superdesk-code-style":"^1.1.2","ts-loader":"^6.0.2","ts-node":"^10.9.1","tslint":"^5.18.0","typescript":"4.9.5","url-loader":"^1.1.2","webpack":"^3.5.5","webpack-cli":"3.3.10","webpack-dev-server":"2.11.1","webpack-merge":"^4.2.1"},"dependencies":{"@material-ui/lab":"^4.0.0-alpha.56","@popperjs/core":"^2.4.0","@superdesk/primereact":"^5.0.2-10","@superdesk/react-resizable-panels":"0.0.39","@types/enzyme-adapter-react-16":"^1.0.6","@types/node":"^14.10.2","chart.js":"^2.9.3","date-fns":"2.7.0","enzyme":"^3.11.0","enzyme-adapter-react-16":"^1.15.7","moment":"^2.29.3","popper-max-size-modifier":"^0.2.0","popper.js":"1.14.4","primeicons":"2.0.0","react-beautiful-dnd":"^13.0.0","react-id-generator":"^3.0.0","react-popper":"^2.2.3","react-scrollspy":"^3.4.3"}}
142951
+ module.exports = {"name":"superdesk-ui-framework","version":"3.0.30","license":"AGPL-3.0","repository":{"type":"git","url":"https://github.com/superdesk/superdesk-ui-framework.git"},"main":"dist/superdesk-ui.bundle.js","types":"react/index.d.ts","contributors":["Nemanja Pavlovic","Vladimir Stefanovic","Darko Tomic","Aleksandar Jelicic","Tomas Kikutis","Dragana Zivkovic"],"scripts":{"start":"webpack-dev-server --config tasks/webpack.dev.js","server":"webpack --watch --config tasks/webpack.prod.js && tsc-watch","build":"webpack --config tasks/webpack.prod.js && tsc","build-ui":"webpack && tsc && npm run lint","lint":"eslint --parser=@typescript-eslint/parser app && tslint -c tslint.json 'app-typescript/**/*.{ts,tsx}'","lint-fix":"tsc -p tsconfig.json --noEmit && tslint --fix -c tslint.json 'app-typescript/**/*.{ts,tsx}'","prepublishOnly":"npm run build","unit-test":"mocha","debug-unit-tests":"mocha --inspect-brk"},"devDependencies":{"@types/assert":"^1.5.6","@types/chart.js":"^2.9.24","@types/classnames":"^2.2.9","@types/enzyme":"^3.10.12","@types/lodash":"^4.14.161","@types/mocha":"^9.1.1","@types/react":"16.8.23","@types/react-beautiful-dnd":"^13.1.2","@types/react-dom":"16.8.0","@types/react-router-dom":"^5.1.2","@types/react-scrollspy":"^3.3.5","@typescript-eslint/parser":"^5.58.0","angular":"^1.7.9","angular-animate":"^1.7.9","angular-route":"^1.7.9","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","classnames":"^2.2.5","clean-webpack-plugin":"^1.0.0","code-prettify":"^0.1.0","copy-webpack-plugin":"^4.6.0","css-loader":"^2.1.1","eslint":"^4.6.1","eslint-loader":"^1.9.0","eslint-plugin-angular":"^3.1.1","eslint-plugin-react":"^7.3.0","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","html-loader":"^0.5.1","html-webpack-plugin":"^2.30.1","jquery":"^3.1.1","jquery-ui":"^1.12.1","jsdom":"20.0.3","jsdom-global":"3.0.2","lodash":"4.17.21","mocha":"^8.4.0","node-sass":"6.0","prismjs":"^1.28.0","prop-types":"^15.6.0","react":"16.8.6","react-bootstrap":"^0.31.2","react-dom":"16.8.6","react-redux":"^5.0.6","react-router-dom":"^5.1.2","redux":"^3.7.2","redux-form":"^7.0.4","sass-loader":"^6.0.6","style-loader":"^0.18.2","superdesk-code-style":"^1.1.2","ts-loader":"^6.0.2","ts-node":"^10.9.1","tslint":"^5.18.0","typescript":"4.9.5","url-loader":"^1.1.2","webpack":"^3.5.5","webpack-cli":"3.3.10","webpack-dev-server":"2.11.1","webpack-merge":"^4.2.1"},"dependencies":{"@material-ui/lab":"^4.0.0-alpha.56","@popperjs/core":"^2.4.0","@superdesk/primereact":"^5.0.2-10","@superdesk/react-resizable-panels":"0.0.39","@types/enzyme-adapter-react-16":"^1.0.6","@types/node":"^14.10.2","chart.js":"^2.9.3","date-fns":"2.7.0","enzyme":"^3.11.0","enzyme-adapter-react-16":"^1.15.7","moment":"^2.29.3","popper-max-size-modifier":"^0.2.0","popper.js":"1.14.4","primeicons":"2.0.0","react-beautiful-dnd":"^13.0.0","react-id-generator":"^3.0.0","react-popper":"^2.2.3","react-scrollspy":"^3.4.3"}}
142952
142952
 
142953
142953
  /***/ }),
142954
142954
  /* 682 */
package/dist/sd_icons.eot CHANGED
Binary file
package/dist/sd_icons.svg CHANGED
@@ -194,4 +194,6 @@
194
194
  <glyph unicode="&#xe6b8;" glyph-name="list-alt-cancel" d="M67.882 891.8l60.116-60.116 0.002 0.228 128-128-0.002-0.228 63.684-63.684h0.23l64.088-64.088-0.002-0.228 63.684-63.684h0.23l64-64h-0.23l64-64h0.23l64-64h-0.23l64-64h0.23l192.088-192.088-0.004-0.226 60.012-60.012-67.882-67.882-64.208 64.208h-631.918c-34.353 0-63.413 30.677-63.991 63.019l-0.009 0.981-0.002 631.92-127.998 127.998zM832 896c34.353 0 63.413-28.717 63.991-62.961l0.009-1.039v-632.324l-184.324 184.324h56.324v64h-120.324l-63.998 64h184.322v64h-248.322l-64 64h312.322v64h-376.322l-192 192zM567.918 256l-64 64h-119.918v-64zM320 320h-64v-64h64zM439.918 384l-55.92 55.92 0.002-55.92zM320 448h-64v-64h64zM255.998 567.92l0.002-55.92h55.918z" />
195
195
  <glyph unicode="&#xe6b9;" glyph-name="post-cancel" d="M67.882 891.8l59.8-59.8 0.228 0.002 128.090-128.092v-0.228l63.68-63.68h0.228l64-64h-0.228l64-64h0.228l64-64h-0.228l64-64h0.23l128-128h-0.23l252.328-252.328-67.882-67.882-320.21 320.21-311.916-0.002-192-192v695.918l-64 64zM896 832c34.353 0 63.413-28.717 63.991-62.961l0.009-1.039v-448c0-34.353-28.717-63.413-62.961-63.991l-1.039-0.009-56.326 0.002-256.002 256 184.328-0.002v64l-248.328 0.002-64 64 312.328-0.002v64l-376.328 0.002-128 128zM439.916 384.002l-64 64-119.916-0.002v-64zM311.916 512.002l-55.916 55.916v-55.918z" />
196
196
  <glyph unicode="&#xe6ba;" glyph-name="text-block" d="M896 543.95v-191.9c0-53.012-43.038-96.050-96.050-96.050h-575.9c-53.012 0-96.050 43.038-96.050 96.050v191.9c0 53.012 43.039 96.050 96.050 96.050h575.9c53.012 0 96.050-43.038 96.050-96.050zM256 384h512v128h-512zM128 768h768v128h-768zM128 0h768v128h-768z" />
197
+ <glyph unicode="&#xe6bb;" glyph-name="graphic-cancel" d="M656.538 167.882c-43.904-135.078-170.894-232.834-320.534-232.834-185.972 0-336.956 150.984-336.956 336.956 0 149.586 97.684 276.536 232.686 320.486l-231.668 231.562 67.868 67.896 888.476-888.064-67.866-67.898zM256 840.58v119.42h768v-768h-119.12l-113.858 113.806c-14.682 221.54-191.856 398.648-413.422 413.232z" />
198
+ <glyph unicode="&#xe6bc;" glyph-name="play-cancel" d="M192.74 631.466l-192.674 192.586 67.868 67.896 888.476-888.064-67.866-67.898-341.312 341.152-318.874-191.324c-3.724-2.234-7.988-3.416-12.332-3.416-13.15 0-23.97 10.82-23.97 23.97v0.032zM385.242 711.398c-0.79 0.79-0.866 2.042-0.18 2.922 0.688 0.878 1.922 1.106 2.878 0.532 76.324-45.866 409.842-246.29 409.842-246.29 7.204-4.328 11.624-12.142 11.624-20.546 0-8.41-4.424-16.226-11.636-20.554l-80.274-48.164s-269.93 269.806-332.254 332.1z" />
197
199
  </font></defs></svg>
package/dist/sd_icons.ttf CHANGED
Binary file
Binary file
@@ -10582,6 +10582,92 @@
10582
10582
  --icon-base-size: 64px
10583
10583
  ; }
10584
10584
 
10585
+ .icon-graphic-cancel:before {
10586
+ content: ""; }
10587
+
10588
+ .icon-graphic-cancel.color--default {
10589
+ color: var(--color-icon-default); }
10590
+
10591
+ .icon-graphic-cancel.color--primary {
10592
+ color: var(--sd-colour-primary) !important; }
10593
+
10594
+ .icon-graphic-cancel.color--success {
10595
+ color: var(--sd-colour-success) !important; }
10596
+
10597
+ .icon-graphic-cancel.color--warning {
10598
+ color: var(--sd-colour-warning) !important; }
10599
+
10600
+ .icon-graphic-cancel.color--alert {
10601
+ color: var(--sd-colour-alert) !important; }
10602
+
10603
+ .icon-graphic-cancel.color--highlight {
10604
+ color: var(--sd-colour-highlight) !important; }
10605
+
10606
+ .icon-graphic-cancel.color--light {
10607
+ color: var(--color-text-lighter) !important; }
10608
+
10609
+ .icon-graphic-cancel.color--white {
10610
+ color: #e2e5e9 !important; }
10611
+
10612
+ .icon-graphic-cancel.scale--1\.5x {
10613
+ --icon-base-size: 24px
10614
+ ; }
10615
+
10616
+ .icon-graphic-cancel.scale--2x {
10617
+ --icon-base-size: 32px
10618
+ ; }
10619
+
10620
+ .icon-graphic-cancel.scale--3x {
10621
+ --icon-base-size: 48px
10622
+ ; }
10623
+
10624
+ .icon-graphic-cancel.scale--4x {
10625
+ --icon-base-size: 64px
10626
+ ; }
10627
+
10628
+ .icon-play-cancel:before {
10629
+ content: ""; }
10630
+
10631
+ .icon-play-cancel.color--default {
10632
+ color: var(--color-icon-default); }
10633
+
10634
+ .icon-play-cancel.color--primary {
10635
+ color: var(--sd-colour-primary) !important; }
10636
+
10637
+ .icon-play-cancel.color--success {
10638
+ color: var(--sd-colour-success) !important; }
10639
+
10640
+ .icon-play-cancel.color--warning {
10641
+ color: var(--sd-colour-warning) !important; }
10642
+
10643
+ .icon-play-cancel.color--alert {
10644
+ color: var(--sd-colour-alert) !important; }
10645
+
10646
+ .icon-play-cancel.color--highlight {
10647
+ color: var(--sd-colour-highlight) !important; }
10648
+
10649
+ .icon-play-cancel.color--light {
10650
+ color: var(--color-text-lighter) !important; }
10651
+
10652
+ .icon-play-cancel.color--white {
10653
+ color: #e2e5e9 !important; }
10654
+
10655
+ .icon-play-cancel.scale--1\.5x {
10656
+ --icon-base-size: 24px
10657
+ ; }
10658
+
10659
+ .icon-play-cancel.scale--2x {
10660
+ --icon-base-size: 32px
10661
+ ; }
10662
+
10663
+ .icon-play-cancel.scale--3x {
10664
+ --icon-base-size: 48px
10665
+ ; }
10666
+
10667
+ .icon-play-cancel.scale--4x {
10668
+ --icon-base-size: 64px
10669
+ ; }
10670
+
10585
10671
  .icn-mix {
10586
10672
  position: relative;
10587
10673
  display: inline-flex !important;
@@ -29692,6 +29778,92 @@ a.label {
29692
29778
  --icon-base-size: 64px
29693
29779
  ; }
29694
29780
 
29781
+ .icon-graphic-cancel:before {
29782
+ content: ""; }
29783
+
29784
+ .icon-graphic-cancel.color--default {
29785
+ color: var(--color-icon-default); }
29786
+
29787
+ .icon-graphic-cancel.color--primary {
29788
+ color: var(--sd-colour-primary) !important; }
29789
+
29790
+ .icon-graphic-cancel.color--success {
29791
+ color: var(--sd-colour-success) !important; }
29792
+
29793
+ .icon-graphic-cancel.color--warning {
29794
+ color: var(--sd-colour-warning) !important; }
29795
+
29796
+ .icon-graphic-cancel.color--alert {
29797
+ color: var(--sd-colour-alert) !important; }
29798
+
29799
+ .icon-graphic-cancel.color--highlight {
29800
+ color: var(--sd-colour-highlight) !important; }
29801
+
29802
+ .icon-graphic-cancel.color--light {
29803
+ color: var(--color-text-lighter) !important; }
29804
+
29805
+ .icon-graphic-cancel.color--white {
29806
+ color: #e2e5e9 !important; }
29807
+
29808
+ .icon-graphic-cancel.scale--1\.5x {
29809
+ --icon-base-size: 24px
29810
+ ; }
29811
+
29812
+ .icon-graphic-cancel.scale--2x {
29813
+ --icon-base-size: 32px
29814
+ ; }
29815
+
29816
+ .icon-graphic-cancel.scale--3x {
29817
+ --icon-base-size: 48px
29818
+ ; }
29819
+
29820
+ .icon-graphic-cancel.scale--4x {
29821
+ --icon-base-size: 64px
29822
+ ; }
29823
+
29824
+ .icon-play-cancel:before {
29825
+ content: ""; }
29826
+
29827
+ .icon-play-cancel.color--default {
29828
+ color: var(--color-icon-default); }
29829
+
29830
+ .icon-play-cancel.color--primary {
29831
+ color: var(--sd-colour-primary) !important; }
29832
+
29833
+ .icon-play-cancel.color--success {
29834
+ color: var(--sd-colour-success) !important; }
29835
+
29836
+ .icon-play-cancel.color--warning {
29837
+ color: var(--sd-colour-warning) !important; }
29838
+
29839
+ .icon-play-cancel.color--alert {
29840
+ color: var(--sd-colour-alert) !important; }
29841
+
29842
+ .icon-play-cancel.color--highlight {
29843
+ color: var(--sd-colour-highlight) !important; }
29844
+
29845
+ .icon-play-cancel.color--light {
29846
+ color: var(--color-text-lighter) !important; }
29847
+
29848
+ .icon-play-cancel.color--white {
29849
+ color: #e2e5e9 !important; }
29850
+
29851
+ .icon-play-cancel.scale--1\.5x {
29852
+ --icon-base-size: 24px
29853
+ ; }
29854
+
29855
+ .icon-play-cancel.scale--2x {
29856
+ --icon-base-size: 32px
29857
+ ; }
29858
+
29859
+ .icon-play-cancel.scale--3x {
29860
+ --icon-base-size: 48px
29861
+ ; }
29862
+
29863
+ .icon-play-cancel.scale--4x {
29864
+ --icon-base-size: 64px
29865
+ ; }
29866
+
29695
29867
  .icn-mix {
29696
29868
  position: relative;
29697
29869
  display: inline-flex !important;
@@ -41563,12 +41735,6 @@ a.text-link {
41563
41735
  .sd-list-item .badge {
41564
41736
  margin: 0.2rem; }
41565
41737
 
41566
- .sd-list-item [class^="icon-"],
41567
- .sd-list-item [class*=" icon-"] {
41568
- opacity: 0.75;
41569
- vertical-align: middle;
41570
- color: var(--color-icon-default); }
41571
-
41572
41738
  .sd-list-item time [class^="icon-"],
41573
41739
  .sd-list-item time [class*=" icon-"] {
41574
41740
  vertical-align: top;
@@ -61720,6 +61886,92 @@ i.sd-sidetab-menu__helper-icon {
61720
61886
  --icon-base-size: 64px
61721
61887
  ; }
61722
61888
 
61889
+ .icon-graphic-cancel:before {
61890
+ content: ""; }
61891
+
61892
+ .icon-graphic-cancel.color--default {
61893
+ color: var(--color-icon-default); }
61894
+
61895
+ .icon-graphic-cancel.color--primary {
61896
+ color: var(--sd-colour-primary) !important; }
61897
+
61898
+ .icon-graphic-cancel.color--success {
61899
+ color: var(--sd-colour-success) !important; }
61900
+
61901
+ .icon-graphic-cancel.color--warning {
61902
+ color: var(--sd-colour-warning) !important; }
61903
+
61904
+ .icon-graphic-cancel.color--alert {
61905
+ color: var(--sd-colour-alert) !important; }
61906
+
61907
+ .icon-graphic-cancel.color--highlight {
61908
+ color: var(--sd-colour-highlight) !important; }
61909
+
61910
+ .icon-graphic-cancel.color--light {
61911
+ color: var(--color-text-lighter) !important; }
61912
+
61913
+ .icon-graphic-cancel.color--white {
61914
+ color: #e2e5e9 !important; }
61915
+
61916
+ .icon-graphic-cancel.scale--1\.5x {
61917
+ --icon-base-size: 24px
61918
+ ; }
61919
+
61920
+ .icon-graphic-cancel.scale--2x {
61921
+ --icon-base-size: 32px
61922
+ ; }
61923
+
61924
+ .icon-graphic-cancel.scale--3x {
61925
+ --icon-base-size: 48px
61926
+ ; }
61927
+
61928
+ .icon-graphic-cancel.scale--4x {
61929
+ --icon-base-size: 64px
61930
+ ; }
61931
+
61932
+ .icon-play-cancel:before {
61933
+ content: ""; }
61934
+
61935
+ .icon-play-cancel.color--default {
61936
+ color: var(--color-icon-default); }
61937
+
61938
+ .icon-play-cancel.color--primary {
61939
+ color: var(--sd-colour-primary) !important; }
61940
+
61941
+ .icon-play-cancel.color--success {
61942
+ color: var(--sd-colour-success) !important; }
61943
+
61944
+ .icon-play-cancel.color--warning {
61945
+ color: var(--sd-colour-warning) !important; }
61946
+
61947
+ .icon-play-cancel.color--alert {
61948
+ color: var(--sd-colour-alert) !important; }
61949
+
61950
+ .icon-play-cancel.color--highlight {
61951
+ color: var(--sd-colour-highlight) !important; }
61952
+
61953
+ .icon-play-cancel.color--light {
61954
+ color: var(--color-text-lighter) !important; }
61955
+
61956
+ .icon-play-cancel.color--white {
61957
+ color: #e2e5e9 !important; }
61958
+
61959
+ .icon-play-cancel.scale--1\.5x {
61960
+ --icon-base-size: 24px
61961
+ ; }
61962
+
61963
+ .icon-play-cancel.scale--2x {
61964
+ --icon-base-size: 32px
61965
+ ; }
61966
+
61967
+ .icon-play-cancel.scale--3x {
61968
+ --icon-base-size: 48px
61969
+ ; }
61970
+
61971
+ .icon-play-cancel.scale--4x {
61972
+ --icon-base-size: 64px
61973
+ ; }
61974
+
61723
61975
  .icn-mix {
61724
61976
  position: relative;
61725
61977
  display: inline-flex !important;
@@ -63564,7 +63564,7 @@ exports.TagInput = TagInput;
63564
63564
  /***/ (function(module, exports) {
63565
63565
 
63566
63566
  // removed by extract-text-webpack-plugin
63567
- module.exports = {"icon":"photo, video, map-marker, slideshow, text, file, calendar, composite, audio, stream, ingest, archive, time, pin, expand, ascending, descending, th, grid-view, th-list, list-view, pencil, lock, retweet, unspike, fullscreen, fetch-as, search, star, star-empty, multi-star, th-large, grid-view-large, ok, zoom-in, zoom-out, signal, filter-large, trash, user, download, upload, repeat, refresh, list-alt, plus-large, picture, question-sign, info-sign, plus-sign, minus-sign, remove-sign, share-alt, exclamation-sign, eye-open, copy, comment, warning-sign, adjust, folder-close, folder-open, download-alt, tasks, globe, link, expand-thin, assign, dots, dots-vertical, backward-thin, forward-thin, chevron-left-thin, chevron-right-thin, switches, plus-small, minus-small, close-small, post, external, chevron-up-thin, chevron-down-thin, pick, revert, package-plus, list-plus, envelope, heart, home, print, font, bold, italic, underline, strikethrough, align-left, align-center, align-right, align-justify, unordered-list, indent-left, indent-right, ban-circle, bell, random, settings, package-create, list-menu, new-doc, edit-line, calendar-list, collapse, broadcast, broadcast-create, kill, graphic, close-thick, move, takes-package, highlight-package, preview-mode, unlocked, code, cut, paste, arrow-left, arrow-right, info-large, help-large, attachment, attachment-large, table, ordered-list, heading-1, heading-2, heading-3, heading-4, heading-5, heading-6, quote, multiedit, phone, mobile, twitter, facebook, linked-in, twitter-circle, facebook-circle, linked-in-circle, recurring, paragraph, suggestion, event, kanban-view, subscript, superscript, clear-format, preformatted, crop, flip-horizontal, flip-vertical, rotate-right, rotate-left, business, paywall, analytics, amp, undo, redo, instagram, play, stop, pause, fast_rewind, fast_forward, skip_previous, skip_next, add-image, add-gallery, text-format, to-uppercase, to-lowercase, arrow-small, clear-all, rundown, photo-cancel, video-cancel, text-cancel, file-cancel, audio-cancel, list-alt-cancel, post-cancel, text-block"};
63567
+ module.exports = {"icon":"photo, video, map-marker, slideshow, text, file, calendar, composite, audio, stream, ingest, archive, time, pin, expand, ascending, descending, th, grid-view, th-list, list-view, pencil, lock, retweet, unspike, fullscreen, fetch-as, search, star, star-empty, multi-star, th-large, grid-view-large, ok, zoom-in, zoom-out, signal, filter-large, trash, user, download, upload, repeat, refresh, list-alt, plus-large, picture, question-sign, info-sign, plus-sign, minus-sign, remove-sign, share-alt, exclamation-sign, eye-open, copy, comment, warning-sign, adjust, folder-close, folder-open, download-alt, tasks, globe, link, expand-thin, assign, dots, dots-vertical, backward-thin, forward-thin, chevron-left-thin, chevron-right-thin, switches, plus-small, minus-small, close-small, post, external, chevron-up-thin, chevron-down-thin, pick, revert, package-plus, list-plus, envelope, heart, home, print, font, bold, italic, underline, strikethrough, align-left, align-center, align-right, align-justify, unordered-list, indent-left, indent-right, ban-circle, bell, random, settings, package-create, list-menu, new-doc, edit-line, calendar-list, collapse, broadcast, broadcast-create, kill, graphic, close-thick, move, takes-package, highlight-package, preview-mode, unlocked, code, cut, paste, arrow-left, arrow-right, info-large, help-large, attachment, attachment-large, table, ordered-list, heading-1, heading-2, heading-3, heading-4, heading-5, heading-6, quote, multiedit, phone, mobile, twitter, facebook, linked-in, twitter-circle, facebook-circle, linked-in-circle, recurring, paragraph, suggestion, event, kanban-view, subscript, superscript, clear-format, preformatted, crop, flip-horizontal, flip-vertical, rotate-right, rotate-left, business, paywall, analytics, amp, undo, redo, instagram, play, stop, pause, fast_rewind, fast_forward, skip_previous, skip_next, add-image, add-gallery, text-format, to-uppercase, to-lowercase, arrow-small, clear-all, rundown, photo-cancel, video-cancel, text-cancel, file-cancel, audio-cancel, list-alt-cancel, post-cancel, text-block, graphic-cancel, play-cancel"};
63568
63568
 
63569
63569
  /***/ }),
63570
63570
  /* 279 */
@@ -124644,7 +124644,7 @@ __webpack_require__(758);
124644
124644
  /***/ (function(module, exports) {
124645
124645
 
124646
124646
  // removed by extract-text-webpack-plugin
124647
- module.exports = {"icon":"photo, video, map-marker, slideshow, text, file, calendar, composite, audio, stream, ingest, archive, time, pin, expand, ascending, descending, th, grid-view, th-list, list-view, pencil, lock, retweet, unspike, fullscreen, fetch-as, search, star, star-empty, multi-star, th-large, grid-view-large, ok, zoom-in, zoom-out, signal, filter-large, trash, user, download, upload, repeat, refresh, list-alt, plus-large, picture, question-sign, info-sign, plus-sign, minus-sign, remove-sign, share-alt, exclamation-sign, eye-open, copy, comment, warning-sign, adjust, folder-close, folder-open, download-alt, tasks, globe, link, expand-thin, assign, dots, dots-vertical, backward-thin, forward-thin, chevron-left-thin, chevron-right-thin, switches, plus-small, minus-small, close-small, post, external, chevron-up-thin, chevron-down-thin, pick, revert, package-plus, list-plus, envelope, heart, home, print, font, bold, italic, underline, strikethrough, align-left, align-center, align-right, align-justify, unordered-list, indent-left, indent-right, ban-circle, bell, random, settings, package-create, list-menu, new-doc, edit-line, calendar-list, collapse, broadcast, broadcast-create, kill, graphic, close-thick, move, takes-package, highlight-package, preview-mode, unlocked, code, cut, paste, arrow-left, arrow-right, info-large, help-large, attachment, attachment-large, table, ordered-list, heading-1, heading-2, heading-3, heading-4, heading-5, heading-6, quote, multiedit, phone, mobile, twitter, facebook, linked-in, twitter-circle, facebook-circle, linked-in-circle, recurring, paragraph, suggestion, event, kanban-view, subscript, superscript, clear-format, preformatted, crop, flip-horizontal, flip-vertical, rotate-right, rotate-left, business, paywall, analytics, amp, undo, redo, instagram, play, stop, pause, fast_rewind, fast_forward, skip_previous, skip_next, add-image, add-gallery, text-format, to-uppercase, to-lowercase, arrow-small, clear-all, rundown, photo-cancel, video-cancel, text-cancel, file-cancel, audio-cancel, list-alt-cancel, post-cancel, text-block"};
124647
+ module.exports = {"icon":"photo, video, map-marker, slideshow, text, file, calendar, composite, audio, stream, ingest, archive, time, pin, expand, ascending, descending, th, grid-view, th-list, list-view, pencil, lock, retweet, unspike, fullscreen, fetch-as, search, star, star-empty, multi-star, th-large, grid-view-large, ok, zoom-in, zoom-out, signal, filter-large, trash, user, download, upload, repeat, refresh, list-alt, plus-large, picture, question-sign, info-sign, plus-sign, minus-sign, remove-sign, share-alt, exclamation-sign, eye-open, copy, comment, warning-sign, adjust, folder-close, folder-open, download-alt, tasks, globe, link, expand-thin, assign, dots, dots-vertical, backward-thin, forward-thin, chevron-left-thin, chevron-right-thin, switches, plus-small, minus-small, close-small, post, external, chevron-up-thin, chevron-down-thin, pick, revert, package-plus, list-plus, envelope, heart, home, print, font, bold, italic, underline, strikethrough, align-left, align-center, align-right, align-justify, unordered-list, indent-left, indent-right, ban-circle, bell, random, settings, package-create, list-menu, new-doc, edit-line, calendar-list, collapse, broadcast, broadcast-create, kill, graphic, close-thick, move, takes-package, highlight-package, preview-mode, unlocked, code, cut, paste, arrow-left, arrow-right, info-large, help-large, attachment, attachment-large, table, ordered-list, heading-1, heading-2, heading-3, heading-4, heading-5, heading-6, quote, multiedit, phone, mobile, twitter, facebook, linked-in, twitter-circle, facebook-circle, linked-in-circle, recurring, paragraph, suggestion, event, kanban-view, subscript, superscript, clear-format, preformatted, crop, flip-horizontal, flip-vertical, rotate-right, rotate-left, business, paywall, analytics, amp, undo, redo, instagram, play, stop, pause, fast_rewind, fast_forward, skip_previous, skip_next, add-image, add-gallery, text-format, to-uppercase, to-lowercase, arrow-small, clear-all, rundown, photo-cancel, video-cancel, text-cancel, file-cancel, audio-cancel, list-alt-cancel, post-cancel, text-block, graphic-cancel, play-cancel"};
124648
124648
 
124649
124649
  /***/ })
124650
124650
  /******/ ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superdesk-ui-framework",
3
- "version": "3.0.28",
3
+ "version": "3.0.30",
4
4
  "license": "AGPL-3.0",
5
5
  "repository": {
6
6
  "type": "git",