@bbl-digital/snorre 2.2.52 → 2.2.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +89 -59
- package/esm/core/Button/index.js +2 -1
- package/esm/core/Button/styles.js +26 -17
- package/esm/core/CommentsTimeline/CommentLine/index.js +3 -2
- package/esm/core/Editor/config.js +8 -1
- package/esm/core/Editor/index.js +7 -4
- package/esm/core/Editor/styles.js +6 -6
- package/esm/core/NoticeCard/index.js +1 -1
- package/esm/core/NoticeCard/privateComponents/NoticeAttachmentBlock/styles.js +8 -8
- package/esm/core/NoticeCard/styles.js +4 -4
- package/esm/core/TabNav/index.js +8 -4
- package/esm/core/TabNav/styles.js +17 -10
- package/esm/utils/dates.js +5 -1
- package/lib/core/Box/styles.d.ts +1 -0
- package/lib/core/Box/styles.d.ts.map +1 -1
- package/lib/core/BoxedTable/TableRow/styles.d.ts +2 -0
- package/lib/core/BoxedTable/TableRow/styles.d.ts.map +1 -1
- package/lib/core/Button/index.d.ts +2 -0
- package/lib/core/Button/index.d.ts.map +1 -1
- package/lib/core/Button/index.js +2 -1
- package/lib/core/Button/styles.d.ts +1 -0
- package/lib/core/Button/styles.d.ts.map +1 -1
- package/lib/core/Button/styles.js +26 -17
- package/lib/core/CollapseList/styles.d.ts +1 -0
- package/lib/core/CollapseList/styles.d.ts.map +1 -1
- package/lib/core/CommentsTimeline/CommentLine/index.d.ts +2 -0
- package/lib/core/CommentsTimeline/CommentLine/index.d.ts.map +1 -1
- package/lib/core/CommentsTimeline/CommentLine/index.js +3 -2
- package/lib/core/Editor/config.d.ts +2 -0
- package/lib/core/Editor/config.d.ts.map +1 -1
- package/lib/core/Editor/config.js +8 -1
- package/lib/core/Editor/index.d.ts.map +1 -1
- package/lib/core/Editor/index.js +7 -4
- package/lib/core/Editor/styles.d.ts.map +1 -1
- package/lib/core/Editor/styles.js +6 -6
- package/lib/core/FileInput/styles.d.ts +1 -0
- package/lib/core/FileInput/styles.d.ts.map +1 -1
- package/lib/core/InfoButton/styles.d.ts +1 -0
- package/lib/core/InfoButton/styles.d.ts.map +1 -1
- package/lib/core/NoticeCard/index.js +1 -1
- package/lib/core/NoticeCard/privateComponents/NoticeAttachmentBlock/styles.d.ts.map +1 -1
- package/lib/core/NoticeCard/privateComponents/NoticeAttachmentBlock/styles.js +8 -8
- package/lib/core/NoticeCard/styles.d.ts.map +1 -1
- package/lib/core/NoticeCard/styles.js +4 -4
- package/lib/core/TabNav/index.d.ts +3 -1
- package/lib/core/TabNav/index.d.ts.map +1 -1
- package/lib/core/TabNav/index.js +8 -4
- package/lib/core/TabNav/styles.d.ts +4 -0
- package/lib/core/TabNav/styles.d.ts.map +1 -1
- package/lib/core/TabNav/styles.js +17 -10
- package/lib/utils/dates.d.ts +2 -1
- package/lib/utils/dates.d.ts.map +1 -1
- package/lib/utils/dates.js +5 -1
- package/package.json +3 -1
package/esm/core/Button/index.js
CHANGED
@@ -23,6 +23,7 @@ const Button = props => {
|
|
23
23
|
back,
|
24
24
|
small,
|
25
25
|
transparentBg,
|
26
|
+
focusable,
|
26
27
|
...restProps
|
27
28
|
} = props;
|
28
29
|
const theme = useTheme();
|
@@ -36,7 +37,7 @@ const Button = props => {
|
|
36
37
|
return _jsx(ButtonOrLink, {
|
37
38
|
disabled: disabled,
|
38
39
|
loading: loading,
|
39
|
-
css: theme => [styles.default(theme), outline && styles.outline(theme), danger && styles.danger(theme), success && styles.success(theme), highlight && styles.highlighted, disabled && styles.disabled(theme), (beforeIcon || afterIcon) && styles.icon(theme), beforeIcon && styles.beforeIcon, afterIcon && styles.afterIcon, border && styles.border(border), nostyle && styles.nostyle, loading && styles.loading(theme), back && styles.back(theme), css && css, small && styles.small, danger && outline && styles.dangerOutline(theme), transparentBg && styles.transparentBg],
|
40
|
+
css: theme => [styles.default(theme), outline && styles.outline(theme), danger && styles.danger(theme), success && styles.success(theme), highlight && styles.highlighted, disabled && styles.disabled(theme), (beforeIcon || afterIcon) && styles.icon(theme), beforeIcon && styles.beforeIcon, afterIcon && styles.afterIcon, border && styles.border(border), nostyle && styles.nostyle, loading && styles.loading(theme), back && styles.back(theme), css && css, small && styles.small, danger && outline && styles.dangerOutline(theme), transparentBg && styles.transparentBg, focusable && styles.focusable],
|
40
41
|
afterIcon: afterIcon,
|
41
42
|
beforeIcon: back ? _jsx(IconChevronLeft, {
|
42
43
|
size: '12px'
|