superdesk-ui-framework 3.1.2 → 3.1.3
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 +57 -55
- 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 +3 -0
- package/app/fonts/sd_icons.ttf +0 -0
- package/app/fonts/sd_icons.woff +0 -0
- package/app/styles/_big-icon-font.scss +2 -0
- package/app/styles/_drag-handle.scss +2 -2
- package/app/styles/_icon-font.scss +3 -0
- package/app/styles/_sd-tag-input.scss +10 -5
- package/app/styles/_tag-labels.scss +10 -1
- package/app-typescript/components/Tag.tsx +6 -2
- package/dist/examples.bundle.css +191 -0
- package/dist/examples.bundle.js +819 -813
- package/dist/react/DragHandleDocs.tsx +5 -5
- package/dist/react/Tags.tsx +27 -22
- package/dist/sd_big-icons.eot +0 -0
- package/dist/sd_big-icons.svg +57 -55
- 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 +3 -0
- package/dist/sd_icons.ttf +0 -0
- package/dist/sd_icons.woff +0 -0
- package/dist/superdesk-ui.bundle.css +478 -9
- package/dist/superdesk-ui.bundle.js +793 -789
- package/examples/pages/react/DragHandleDocs.tsx +5 -5
- package/examples/pages/react/Tags.tsx +27 -22
- package/package.json +1 -1
- package/react/components/Tag.d.ts +2 -1
- package/react/components/Tag.js +5 -1
package/dist/examples.bundle.css
CHANGED
@@ -12008,6 +12008,135 @@ doc-react-playground {
|
|
12008
12008
|
--icon-base-size: 64px
|
12009
12009
|
; }
|
12010
12010
|
|
12011
|
+
.icon-thumb-up:before {
|
12012
|
+
content: ""; }
|
12013
|
+
|
12014
|
+
.icon-thumb-up.color--default {
|
12015
|
+
color: var(--color-icon-default); }
|
12016
|
+
|
12017
|
+
.icon-thumb-up.color--primary {
|
12018
|
+
color: var(--sd-colour-primary) !important; }
|
12019
|
+
|
12020
|
+
.icon-thumb-up.color--success {
|
12021
|
+
color: var(--sd-colour-success) !important; }
|
12022
|
+
|
12023
|
+
.icon-thumb-up.color--warning {
|
12024
|
+
color: var(--sd-colour-warning) !important; }
|
12025
|
+
|
12026
|
+
.icon-thumb-up.color--alert {
|
12027
|
+
color: var(--sd-colour-alert) !important; }
|
12028
|
+
|
12029
|
+
.icon-thumb-up.color--highlight {
|
12030
|
+
color: var(--sd-colour-highlight) !important; }
|
12031
|
+
|
12032
|
+
.icon-thumb-up.color--light {
|
12033
|
+
color: var(--color-text-lighter) !important; }
|
12034
|
+
|
12035
|
+
.icon-thumb-up.color--white {
|
12036
|
+
color: #e2e5e9 !important; }
|
12037
|
+
|
12038
|
+
.icon-thumb-up.scale--1\.5x {
|
12039
|
+
--icon-base-size: 24px
|
12040
|
+
; }
|
12041
|
+
|
12042
|
+
.icon-thumb-up.scale--2x {
|
12043
|
+
--icon-base-size: 32px
|
12044
|
+
; }
|
12045
|
+
|
12046
|
+
.icon-thumb-up.scale--3x {
|
12047
|
+
--icon-base-size: 48px
|
12048
|
+
; }
|
12049
|
+
|
12050
|
+
.icon-thumb-up.scale--4x {
|
12051
|
+
--icon-base-size: 64px
|
12052
|
+
; }
|
12053
|
+
|
12054
|
+
.icon-thumb-down:before {
|
12055
|
+
content: ""; }
|
12056
|
+
|
12057
|
+
.icon-thumb-down.color--default {
|
12058
|
+
color: var(--color-icon-default); }
|
12059
|
+
|
12060
|
+
.icon-thumb-down.color--primary {
|
12061
|
+
color: var(--sd-colour-primary) !important; }
|
12062
|
+
|
12063
|
+
.icon-thumb-down.color--success {
|
12064
|
+
color: var(--sd-colour-success) !important; }
|
12065
|
+
|
12066
|
+
.icon-thumb-down.color--warning {
|
12067
|
+
color: var(--sd-colour-warning) !important; }
|
12068
|
+
|
12069
|
+
.icon-thumb-down.color--alert {
|
12070
|
+
color: var(--sd-colour-alert) !important; }
|
12071
|
+
|
12072
|
+
.icon-thumb-down.color--highlight {
|
12073
|
+
color: var(--sd-colour-highlight) !important; }
|
12074
|
+
|
12075
|
+
.icon-thumb-down.color--light {
|
12076
|
+
color: var(--color-text-lighter) !important; }
|
12077
|
+
|
12078
|
+
.icon-thumb-down.color--white {
|
12079
|
+
color: #e2e5e9 !important; }
|
12080
|
+
|
12081
|
+
.icon-thumb-down.scale--1\.5x {
|
12082
|
+
--icon-base-size: 24px
|
12083
|
+
; }
|
12084
|
+
|
12085
|
+
.icon-thumb-down.scale--2x {
|
12086
|
+
--icon-base-size: 32px
|
12087
|
+
; }
|
12088
|
+
|
12089
|
+
.icon-thumb-down.scale--3x {
|
12090
|
+
--icon-base-size: 48px
|
12091
|
+
; }
|
12092
|
+
|
12093
|
+
.icon-thumb-down.scale--4x {
|
12094
|
+
--icon-base-size: 64px
|
12095
|
+
; }
|
12096
|
+
|
12097
|
+
.icon-open-ai:before {
|
12098
|
+
content: ""; }
|
12099
|
+
|
12100
|
+
.icon-open-ai.color--default {
|
12101
|
+
color: var(--color-icon-default); }
|
12102
|
+
|
12103
|
+
.icon-open-ai.color--primary {
|
12104
|
+
color: var(--sd-colour-primary) !important; }
|
12105
|
+
|
12106
|
+
.icon-open-ai.color--success {
|
12107
|
+
color: var(--sd-colour-success) !important; }
|
12108
|
+
|
12109
|
+
.icon-open-ai.color--warning {
|
12110
|
+
color: var(--sd-colour-warning) !important; }
|
12111
|
+
|
12112
|
+
.icon-open-ai.color--alert {
|
12113
|
+
color: var(--sd-colour-alert) !important; }
|
12114
|
+
|
12115
|
+
.icon-open-ai.color--highlight {
|
12116
|
+
color: var(--sd-colour-highlight) !important; }
|
12117
|
+
|
12118
|
+
.icon-open-ai.color--light {
|
12119
|
+
color: var(--color-text-lighter) !important; }
|
12120
|
+
|
12121
|
+
.icon-open-ai.color--white {
|
12122
|
+
color: #e2e5e9 !important; }
|
12123
|
+
|
12124
|
+
.icon-open-ai.scale--1\.5x {
|
12125
|
+
--icon-base-size: 24px
|
12126
|
+
; }
|
12127
|
+
|
12128
|
+
.icon-open-ai.scale--2x {
|
12129
|
+
--icon-base-size: 32px
|
12130
|
+
; }
|
12131
|
+
|
12132
|
+
.icon-open-ai.scale--3x {
|
12133
|
+
--icon-base-size: 48px
|
12134
|
+
; }
|
12135
|
+
|
12136
|
+
.icon-open-ai.scale--4x {
|
12137
|
+
--icon-base-size: 64px
|
12138
|
+
; }
|
12139
|
+
|
12011
12140
|
.icn-mix {
|
12012
12141
|
position: relative;
|
12013
12142
|
display: inline-flex !important;
|
@@ -16105,3 +16234,65 @@ doc-react-playground {
|
|
16105
16234
|
|
16106
16235
|
.big-icon--checkmark-circle:before {
|
16107
16236
|
content: ""; }
|
16237
|
+
|
16238
|
+
.big-icon--open-ai {
|
16239
|
+
content: ""; }
|
16240
|
+
.big-icon--open-ai.color--default {
|
16241
|
+
color: #2c323a; }
|
16242
|
+
.big-icon--open-ai.color--primary {
|
16243
|
+
color: var(--sd-colour-primary) !important; }
|
16244
|
+
.big-icon--open-ai.color--success {
|
16245
|
+
color: var(--sd-colour-success) !important; }
|
16246
|
+
.big-icon--open-ai.color--warning {
|
16247
|
+
color: var(--sd-colour-warning) !important; }
|
16248
|
+
.big-icon--open-ai.color--alert {
|
16249
|
+
color: var(--sd-colour-alert) !important; }
|
16250
|
+
.big-icon--open-ai.color--highlight {
|
16251
|
+
color: var(--sd-colour-highlight) !important; }
|
16252
|
+
.big-icon--open-ai.color--light {
|
16253
|
+
color: var(--color-text-lighter) !important; }
|
16254
|
+
.big-icon--open-ai.color--white {
|
16255
|
+
color: #e2e5e9 !important; }
|
16256
|
+
.big-icon--open-ai.scale--2x {
|
16257
|
+
--big-icon-size: 52px
|
16258
|
+
; }
|
16259
|
+
.big-icon--open-ai.scale--3x {
|
16260
|
+
--big-icon-size: 78px
|
16261
|
+
; }
|
16262
|
+
.big-icon--open-ai.scale--4x {
|
16263
|
+
--big-icon-size: 104px
|
16264
|
+
; }
|
16265
|
+
|
16266
|
+
.big-icon--open-ai:before {
|
16267
|
+
content: ""; }
|
16268
|
+
|
16269
|
+
.big-icon--general-ai {
|
16270
|
+
content: ""; }
|
16271
|
+
.big-icon--general-ai.color--default {
|
16272
|
+
color: #2c323a; }
|
16273
|
+
.big-icon--general-ai.color--primary {
|
16274
|
+
color: var(--sd-colour-primary) !important; }
|
16275
|
+
.big-icon--general-ai.color--success {
|
16276
|
+
color: var(--sd-colour-success) !important; }
|
16277
|
+
.big-icon--general-ai.color--warning {
|
16278
|
+
color: var(--sd-colour-warning) !important; }
|
16279
|
+
.big-icon--general-ai.color--alert {
|
16280
|
+
color: var(--sd-colour-alert) !important; }
|
16281
|
+
.big-icon--general-ai.color--highlight {
|
16282
|
+
color: var(--sd-colour-highlight) !important; }
|
16283
|
+
.big-icon--general-ai.color--light {
|
16284
|
+
color: var(--color-text-lighter) !important; }
|
16285
|
+
.big-icon--general-ai.color--white {
|
16286
|
+
color: #e2e5e9 !important; }
|
16287
|
+
.big-icon--general-ai.scale--2x {
|
16288
|
+
--big-icon-size: 52px
|
16289
|
+
; }
|
16290
|
+
.big-icon--general-ai.scale--3x {
|
16291
|
+
--big-icon-size: 78px
|
16292
|
+
; }
|
16293
|
+
.big-icon--general-ai.scale--4x {
|
16294
|
+
--big-icon-size: 104px
|
16295
|
+
; }
|
16296
|
+
|
16297
|
+
.big-icon--general-ai:before {
|
16298
|
+
content: ""; }
|