@limetech/lime-elements 37.72.3 → 37.74.0
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/CHANGELOG.md +16 -0
- package/dist/cjs/limel-breadcrumbs_7.cjs.entry.js +15 -4
- package/dist/cjs/limel-breadcrumbs_7.cjs.entry.js.map +1 -1
- package/dist/cjs/limel-prosemirror-adapter.cjs.entry.js +53 -36
- package/dist/cjs/limel-prosemirror-adapter.cjs.entry.js.map +1 -1
- package/dist/cjs/limel-shortcut.cjs.entry.js.map +1 -1
- package/dist/collection/components/list/list.js +27 -2
- package/dist/collection/components/list/list.js.map +1 -1
- package/dist/collection/components/menu-list/menu-list.js +26 -2
- package/dist/collection/components/menu-list/menu-list.js.map +1 -1
- package/dist/collection/components/text-editor/prosemirror-adapter/plugins/trigger/create-html-inserter.js +11 -0
- package/dist/collection/components/text-editor/prosemirror-adapter/plugins/trigger/create-html-inserter.js.map +1 -0
- package/dist/collection/components/text-editor/prosemirror-adapter/plugins/trigger/factory.js +8 -8
- package/dist/collection/components/text-editor/prosemirror-adapter/plugins/trigger/factory.js.map +1 -1
- package/dist/collection/components/text-editor/prosemirror-adapter/plugins/trigger/inserter.js +35 -27
- package/dist/collection/components/text-editor/prosemirror-adapter/plugins/trigger/inserter.js.map +1 -1
- package/dist/collection/components/text-editor/prosemirror-adapter/prosemirror-adapter.js +1 -1
- package/dist/collection/components/text-editor/prosemirror-adapter/prosemirror-adapter.js.map +1 -1
- package/dist/collection/components/text-editor/text-editor.types.js.map +1 -1
- package/dist/collection/style/internal/lime-theme.scss +1 -1
- package/dist/collection/style/shadows.scss +8 -4
- package/dist/esm/limel-breadcrumbs_7.entry.js +15 -4
- package/dist/esm/limel-breadcrumbs_7.entry.js.map +1 -1
- package/dist/esm/limel-prosemirror-adapter.entry.js +53 -36
- package/dist/esm/limel-prosemirror-adapter.entry.js.map +1 -1
- package/dist/esm/limel-shortcut.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.css +8 -4
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-7172c8e7.entry.js → p-209cd952.entry.js} +3 -3
- package/dist/lime-elements/p-209cd952.entry.js.map +1 -0
- package/dist/lime-elements/{p-830d655c.entry.js → p-e83e845a.entry.js} +2 -2
- package/dist/lime-elements/p-e83e845a.entry.js.map +1 -0
- package/dist/lime-elements/p-f3a613a3.entry.js.map +1 -1
- package/dist/lime-elements/style/internal/lime-theme.scss +1 -1
- package/dist/lime-elements/style/shadows.scss +8 -4
- package/dist/types/components/list/list.d.ts +5 -0
- package/dist/types/components/menu-list/menu-list.d.ts +6 -0
- package/dist/types/components/text-editor/prosemirror-adapter/plugins/trigger/create-html-inserter.d.ts +5 -0
- package/dist/types/components/text-editor/prosemirror-adapter/plugins/trigger/factory.d.ts +2 -1
- package/dist/types/components/text-editor/prosemirror-adapter/plugins/trigger/inserter.d.ts +2 -1
- package/dist/types/components/text-editor/text-editor.types.d.ts +4 -1
- package/dist/types/components.d.ts +8 -0
- package/package.json +13 -13
- package/dist/lime-elements/p-7172c8e7.entry.js.map +0 -1
- package/dist/lime-elements/p-830d655c.entry.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["shortcutCss","Shortcut","this","renderLabel","label","h","getAriaLabel","_a","link","title","_b","undefined","renderNotification","badge","render","disabled","href","target","tabindex","_c","name","icon"],"sources":["./src/components/shortcut/shortcut.scss?tag=limel-shortcut&encapsulation=shadow","./src/components/shortcut/shortcut.tsx"],"sourcesContent":["/**\n* @prop --shortcut-border-radius: defines the radius of corners of the shortcut. Defaults to `1rem`\n* @prop --shortcut-icon-color: defines the fill color of the shortcut icon. Defaults to `--contrast-1000`\n* @prop --shortcut-label-color: defines the color of the shortcut label. Defaults to `--contrast-1100`\n* @prop --shortcut-background-color: defines the backgrounds color of the shortcut icon. Defaults to `--lime-elevated-surface-background-color`\n* @prop --shortcut-badge-text-color: Text color of the notification badge. Defaults to `--color-white`\n* @prop --shortcut-badge-background-color: Background color of the notification badge. Defaults to `--color-red-default`\n*/\n\n@use '../../style/mixins';\n\n:host(limel-shortcut) {\n --badge-text-color: var(\n --shortcut-badge-text-color,\n rgb(var(--color-white))\n );\n --badge-background-color: var(\n --shortcut-badge-background-color,\n rgb(var(--color-red-default))\n );\n position: relative;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n row-gap: 0.0625rem; //1px\n\n * {\n box-sizing: border-box;\n }\n}\n\n:host(limel-shortcut[disabled]) {\n a {\n opacity: 0.5;\n box-shadow: unset;\n cursor: not-allowed;\n }\n}\n\na {\n all: unset;\n @include mixins.is-elevated-clickable(\n $background-color
|
|
1
|
+
{"version":3,"names":["shortcutCss","Shortcut","this","renderLabel","label","h","getAriaLabel","_a","link","title","_b","undefined","renderNotification","badge","render","disabled","href","target","tabindex","_c","name","icon"],"sources":["./src/components/shortcut/shortcut.scss?tag=limel-shortcut&encapsulation=shadow","./src/components/shortcut/shortcut.tsx"],"sourcesContent":["/**\n* @prop --shortcut-border-radius: defines the radius of corners of the shortcut. Defaults to `1rem`\n* @prop --shortcut-icon-color: defines the fill color of the shortcut icon. Defaults to `--contrast-1000`\n* @prop --shortcut-label-color: defines the color of the shortcut label. Defaults to `--contrast-1100`\n* @prop --shortcut-background-color: defines the backgrounds color of the shortcut icon. Defaults to `--lime-elevated-surface-background-color`\n* @prop --shortcut-badge-text-color: Text color of the notification badge. Defaults to `--color-white`\n* @prop --shortcut-badge-background-color: Background color of the notification badge. Defaults to `--color-red-default`\n*/\n\n@use '../../style/mixins';\n\n:host(limel-shortcut) {\n --badge-text-color: var(\n --shortcut-badge-text-color,\n rgb(var(--color-white))\n );\n --badge-background-color: var(\n --shortcut-badge-background-color,\n rgb(var(--color-red-default))\n );\n position: relative;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n row-gap: 0.0625rem; //1px\n\n * {\n box-sizing: border-box;\n }\n}\n\n:host(limel-shortcut[disabled]) {\n a {\n opacity: 0.5;\n box-shadow: unset;\n cursor: not-allowed;\n }\n}\n\na {\n all: unset;\n @include mixins.is-elevated-clickable(\n $background-color: var(\n --shortcut-background-color,\n var(--lime-elevated-surface-background-color)\n ),\n $background-color--hovered: var(\n --shortcut-background-color,\n var(--lime-elevated-surface-background-color)\n )\n );\n @include mixins.visualize-keyboard-focus;\n text-align: center;\n\n height: calc(100% - 1rem);\n width: calc(100% - 1rem);\n padding: 0.5rem;\n\n border-radius: var(--shortcut-border-radius, 1rem);\n}\n\nlimel-icon {\n display: flex;\n height: 100%;\n width: 100%;\n justify-content: center;\n color: var(--shortcut-icon-color, rgb(var(--contrast-1000)));\n border-radius: var(--shortcut-border-radius, 1rem);\n}\n\nspan {\n @include mixins.truncate-text;\n width: 100%;\n color: var(--shortcut-label-color, rgb(var(--contrast-1100)));\n font-size: 0.75rem;\n text-align: center;\n}\n\nlimel-badge {\n position: absolute;\n top: -0.25rem;\n right: 0.125rem;\n}\n","import { Component, Prop, h } from '@stencil/core';\nimport { Link } from '../../global/shared-types/link.types';\n\n/**\n * This component can be used on places such as a start page or a dashboard.\n * Clicking on the component should navigate the user to a new screen,\n * to which you need to provide a URL, by specifying an `href` for the `link` property.\n *\n * By default, this navigation will happen within the same browser tab.\n * However, it is possible to override that behavior, by specifying a `target`\n * for the `link` property\n *\n * @exampleComponent limel-example-shortcut\n * @exampleComponent limel-example-shortcut-notification\n * @exampleComponent limel-example-shortcut-styling\n * @exampleComponent limel-example-shortcut-with-click-handler\n */\n\n@Component({\n tag: 'limel-shortcut',\n shadow: true,\n styleUrl: 'shortcut.scss',\n})\nexport class Shortcut {\n /**\n * Name of icon for the shortcut.\n */\n @Prop({ reflect: true })\n public icon: string;\n\n /**\n * The text to show below the shortcut. Long label will be truncated.\n */\n @Prop({ reflect: true })\n public label?: string = null;\n\n /**\n * Set to `true` if shortcut is disabled.\n */\n @Prop({ reflect: true })\n public disabled?: boolean = false;\n\n /**\n * If specified, will display a notification badge\n * on the shortcut.\n */\n @Prop({ reflect: true })\n public badge?: number | string;\n\n /**\n * If supplied, the shortcut will be a clickable link.\n */\n @Prop()\n public link?: Link;\n\n public render() {\n return [\n <a\n aria-disabled={this.disabled}\n href={this.link?.href}\n target={this.link?.target}\n tabindex=\"0\"\n aria-label={this.getAriaLabel()}\n title={this.link?.title}\n >\n <limel-icon name={this.icon} />\n </a>,\n this.renderLabel(),\n this.renderNotification(),\n ];\n }\n\n private renderLabel = () => {\n if (this.label) {\n return <span aria-hidden=\"true\">{this.label}</span>;\n }\n };\n\n private getAriaLabel = () => {\n if (this.label && this.link?.title) {\n return this.label + '. ' + this.link.title;\n }\n\n if (this.label) {\n return this.label;\n }\n\n if (this.link?.title) {\n return this.link.title;\n }\n\n return undefined;\n };\n\n private renderNotification = () => {\n if (this.badge) {\n return <limel-badge label={this.badge} />;\n }\n };\n}\n"],"mappings":"sCAAA,MAAMA,EAAc,8rE,MCuBPC,EAAQ,M,yBAiDTC,KAAAC,YAAc,KAClB,GAAID,KAAKE,MAAO,CACZ,OAAOC,EAAA,sBAAkB,QAAQH,KAAKE,M,GAItCF,KAAAI,aAAe,K,QACnB,GAAIJ,KAAKE,SAASG,EAAAL,KAAKM,QAAI,MAAAD,SAAA,SAAAA,EAAEE,OAAO,CAChC,OAAOP,KAAKE,MAAQ,KAAOF,KAAKM,KAAKC,K,CAGzC,GAAIP,KAAKE,MAAO,CACZ,OAAOF,KAAKE,K,CAGhB,IAAIM,EAAAR,KAAKM,QAAI,MAAAE,SAAA,SAAAA,EAAED,MAAO,CAClB,OAAOP,KAAKM,KAAKC,K,CAGrB,OAAOE,SAAS,EAGZT,KAAAU,mBAAqB,KACzB,GAAIV,KAAKW,MAAO,CACZ,OAAOR,EAAA,eAAaD,MAAOF,KAAKW,O,kCA9DhB,K,cAMI,M,yCAerBC,S,UACH,MAAO,CACHT,EAAA,qBACmBH,KAAKa,SACpBC,MAAMT,EAAAL,KAAKM,QAAI,MAAAD,SAAA,SAAAA,EAAES,KACjBC,QAAQP,EAAAR,KAAKM,QAAI,MAAAE,SAAA,SAAAA,EAAEO,OACnBC,SAAS,IAAG,aACAhB,KAAKI,eACjBG,OAAOU,EAAAjB,KAAKM,QAAI,MAAAW,SAAA,SAAAA,EAAEV,OAElBJ,EAAA,cAAYe,KAAMlB,KAAKmB,QAE3BnB,KAAKC,cACLD,KAAKU,qB"}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
// $text-secondary-on-dark: rgba(255, 255, 255, 0.7),
|
|
39
39
|
// $text-hint-on-dark: rgba(255, 255, 255, 0.5),
|
|
40
40
|
// $text-disabled-on-dark: rgba(255, 255, 255, 0.5),
|
|
41
|
-
|
|
41
|
+
// $text-icon-on-dark: rgba(255, 255, 255, 0.5),
|
|
42
42
|
);
|
|
43
43
|
@forward '@material/theme';
|
|
44
44
|
|
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
// Same as above, but when element is indicating error or warning
|
|
46
46
|
--shadow-depth-8-error: var(--shadow-depth-8), var(--shadow-error-state);
|
|
47
47
|
// Same as above, but light source is below the element, good for bottom bars, etc...
|
|
48
|
-
--shadow-depth-8-reversed: 0 -0.2rem 0.45rem 0
|
|
48
|
+
--shadow-depth-8-reversed: 0 -0.2rem 0.45rem 0
|
|
49
|
+
rgb(var(--color-black), 0.132),
|
|
49
50
|
0 -0.0375rem 0.1125rem 0 rgb(var(--color-black), 0.108);
|
|
50
51
|
|
|
51
52
|
// Good for Teaching callouts, Search results dropdown, cards, Tooltips
|
|
@@ -64,19 +65,22 @@
|
|
|
64
65
|
--shadow-depth-64-focused: var(--shadow-depth-64),
|
|
65
66
|
var(--shadow-focused-state);
|
|
66
67
|
|
|
67
|
-
--shadow-inflated-8: -0.125rem -0.125rem 0.375rem
|
|
68
|
+
--shadow-inflated-8: -0.125rem -0.125rem 0.375rem
|
|
69
|
+
rgb(var(--color-black), 0.01),
|
|
68
70
|
-0.25rem -0.25rem 0.625rem rgb(var(--color-white), 0.6),
|
|
69
71
|
0.25rem 0.25rem 0.625rem rgb(var(--color-black), 0.05),
|
|
70
72
|
0.0625rem 0.0625rem 0.625rem rgb(var(--color-white), 0.7),
|
|
71
73
|
-1px -1px 0 1px rgb(var(--color-black), 0.07) inset,
|
|
72
74
|
0 0 1px 1px rgb(var(--color-white), 0.98) inset;
|
|
73
|
-
--shadow-inflated-16: -0.1875rem -0.1875rem 0.375rem
|
|
75
|
+
--shadow-inflated-16: -0.1875rem -0.1875rem 0.375rem
|
|
76
|
+
rgb(var(--color-black), 0.01),
|
|
74
77
|
-0.375rem -0.375rem 1rem rgb(var(--color-white), 0.8),
|
|
75
78
|
0.375rem 0.375rem 1rem rgb(var(--color-black), 0.05),
|
|
76
79
|
0.125rem 0.125rem 0.625rem rgb(var(--color-white), 0.7),
|
|
77
80
|
-1px -1px 0 1px rgb(var(--color-black), 0.07) inset,
|
|
78
81
|
0 0 1px 1px rgb(var(--color-white), 0.98) inset;
|
|
79
|
-
--shadow-inflated-64: -0.1875rem -0.1875rem 0.375rem
|
|
82
|
+
--shadow-inflated-64: -0.1875rem -0.1875rem 0.375rem
|
|
83
|
+
rgb(var(--color-black), 0.01),
|
|
80
84
|
-0.625rem -0.625rem 1.875rem rgb(var(--color-white), 1),
|
|
81
85
|
0.625rem 0.625rem 2.25rem rgb(var(--color-black), 0.06),
|
|
82
86
|
0.125rem 0.125rem 0.625rem rgb(var(--color-white), 0.7),
|
|
@@ -61,6 +61,11 @@ export declare class List {
|
|
|
61
61
|
* Fired when an action has been selected from the action menu of a list item
|
|
62
62
|
*/
|
|
63
63
|
protected select: EventEmitter<ListItem | ListItem[]>;
|
|
64
|
+
/**
|
|
65
|
+
* Fires when a user interacts with an item in the list (e.g., click,
|
|
66
|
+
* keyboard select).
|
|
67
|
+
*/
|
|
68
|
+
interact: EventEmitter<ListItem>;
|
|
64
69
|
connectedCallback(): void;
|
|
65
70
|
disconnectedCallback(): void;
|
|
66
71
|
componentDidLoad(): void;
|
|
@@ -2,6 +2,7 @@ import { IconSize } from '../icon/icon.types';
|
|
|
2
2
|
import { ListSeparator } from '../list/list-item.types';
|
|
3
3
|
import { MenuItem } from '../menu/menu.types';
|
|
4
4
|
import { MenuListType } from '../menu-list/menu-list.types';
|
|
5
|
+
import { EventEmitter } from '../../stencil-public-runtime';
|
|
5
6
|
/**
|
|
6
7
|
* @private
|
|
7
8
|
*/
|
|
@@ -39,6 +40,11 @@ export declare class MenuList {
|
|
|
39
40
|
* Fired when a new value has been selected from the list.
|
|
40
41
|
*/
|
|
41
42
|
private select;
|
|
43
|
+
/**
|
|
44
|
+
* Fires when a user interacts with an item in the list (e.g., click,
|
|
45
|
+
* keyboard select).
|
|
46
|
+
*/
|
|
47
|
+
interact: EventEmitter<MenuItem>;
|
|
42
48
|
connectedCallback(): void;
|
|
43
49
|
disconnectedCallback(): void;
|
|
44
50
|
componentDidLoad(): void;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Node, Fragment } from 'prosemirror-model';
|
|
2
|
+
import { EditorView } from 'prosemirror-view';
|
|
3
|
+
import { ContentTypeConverter } from '../../../utils/content-type-converter';
|
|
4
|
+
export declare const createHtmlInserter: (view: EditorView, contentConverter: ContentTypeConverter, startPos: number, dispatchTransaction: (view: EditorView, startPos: number, fragment: Fragment | Node) => void) => (input: string) => Promise<void>;
|
|
5
|
+
//# sourceMappingURL=create-html-inserter.d.ts.map
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Plugin } from 'prosemirror-state';
|
|
2
2
|
import { TriggerCharacter } from 'src/components/text-editor/text-editor.types';
|
|
3
|
-
|
|
3
|
+
import { ContentTypeConverter } from '../../../utils/content-type-converter';
|
|
4
|
+
export declare const createTriggerPlugin: (triggerCharacters: TriggerCharacter[], contentConverter: ContentTypeConverter) => Plugin<{}>;
|
|
4
5
|
//# sourceMappingURL=factory.d.ts.map
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EditorView } from 'prosemirror-view';
|
|
2
2
|
import { TextEditor } from 'src/components/text-editor/text-editor.types';
|
|
3
|
-
|
|
3
|
+
import { ContentTypeConverter } from '../../../utils/content-type-converter';
|
|
4
|
+
export declare const inserterFactory: (view: EditorView, contentConverter: ContentTypeConverter) => TextEditor;
|
|
4
5
|
//# sourceMappingURL=inserter.d.ts.map
|
|
@@ -22,9 +22,12 @@ export type TextEditorNode = {
|
|
|
22
22
|
export interface TextEditor {
|
|
23
23
|
/**
|
|
24
24
|
* Method to insert either text or a node at the cursor position
|
|
25
|
-
*
|
|
26
25
|
*/
|
|
27
26
|
insert: (input: TextEditorNode | string) => void;
|
|
27
|
+
/**
|
|
28
|
+
* Method to insert an HTML string at the cursor position
|
|
29
|
+
*/
|
|
30
|
+
insertHtml: (input: string) => Promise<void>;
|
|
28
31
|
stopTrigger: () => void;
|
|
29
32
|
}
|
|
30
33
|
/**
|
|
@@ -6436,6 +6436,10 @@ declare namespace LocalJSX {
|
|
|
6436
6436
|
* Fired when a new value has been selected from the list. Only fired if `type` is set to `selectable`, `radio` or `checkbox`.
|
|
6437
6437
|
*/
|
|
6438
6438
|
"onChange"?: (event: LimelListCustomEvent<ListItem | ListItem[]>) => void;
|
|
6439
|
+
/**
|
|
6440
|
+
* Fires when a user interacts with an item in the list (e.g., click, keyboard select).
|
|
6441
|
+
*/
|
|
6442
|
+
"onInteract"?: (event: LimelListCustomEvent<ListItem>) => void;
|
|
6439
6443
|
/**
|
|
6440
6444
|
* Fired when an action has been selected from the action menu of a list item
|
|
6441
6445
|
*/
|
|
@@ -6565,6 +6569,10 @@ declare namespace LocalJSX {
|
|
|
6565
6569
|
* By default, lists will display 3 lines of text, and then truncate the rest. Consumers can increase or decrease this number by specifying `maxLinesSecondaryText`. If consumer enters zero or negative numbers we default to 1; and if they type decimals we round up.
|
|
6566
6570
|
*/
|
|
6567
6571
|
"maxLinesSecondaryText"?: number;
|
|
6572
|
+
/**
|
|
6573
|
+
* Fires when a user interacts with an item in the list (e.g., click, keyboard select).
|
|
6574
|
+
*/
|
|
6575
|
+
"onInteract"?: (event: LimelMenuListCustomEvent<MenuItem>) => void;
|
|
6568
6576
|
/**
|
|
6569
6577
|
* Fired when a new value has been selected from the list.
|
|
6570
6578
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@limetech/lime-elements",
|
|
3
|
-
"version": "37.
|
|
3
|
+
"version": "37.74.0",
|
|
4
4
|
"description": "Lime Elements",
|
|
5
5
|
"author": "Lime Technologies",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"lint": "npm run lint:src && npm run lint:scss",
|
|
28
28
|
"lint:fix": "npm run lint:src:fix && npm run lint:scss:fix",
|
|
29
29
|
"lint:prod": "npm run lint:src:prod && npm run lint:scss:prod",
|
|
30
|
-
"lint:src": "eslint \"**/*.{ts,tsx,js}\" --max-warnings=
|
|
30
|
+
"lint:src": "eslint \"**/*.{ts,tsx,js}\" --max-warnings=99 && prettier -c \"{!(package*).json,.prettierrc}\"",
|
|
31
31
|
"lint:src:fix": "eslint \"**/*.{ts,tsx,js}\" --fix && prettier --write \"{!(package*).json,.prettierrc}\"",
|
|
32
|
-
"lint:src:prod": "eslint \"**/*.{ts,tsx,js}\" --rule \"linebreak-style: [error, unix]\" --max-warnings=
|
|
32
|
+
"lint:src:prod": "eslint \"**/*.{ts,tsx,js}\" --rule \"linebreak-style: [error, unix]\" --max-warnings=99 && prettier -c \"{!(package*).json,.prettierrc}\"",
|
|
33
33
|
"lint:scss": "prettier -c --ignore-path ./.gitignore **/*.scss",
|
|
34
34
|
"lint:scss:fix": "prettier --write --ignore-path ./.gitignore **/*.scss",
|
|
35
35
|
"lint:scss:prod": "prettier -c --end-of-line lf --ignore-path ./.gitignore **/*.scss",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"generate": "stencil generate"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@commitlint/config-conventional": "^19.
|
|
46
|
+
"@commitlint/config-conventional": "^19.6.0",
|
|
47
47
|
"@eslint/eslintrc": "^3.2.0",
|
|
48
|
-
"@eslint/js": "^9.
|
|
49
|
-
"@microsoft/api-extractor": "^7.
|
|
48
|
+
"@eslint/js": "^9.16.0",
|
|
49
|
+
"@microsoft/api-extractor": "^7.48.0",
|
|
50
50
|
"@popperjs/core": "^2.11.8",
|
|
51
51
|
"@rjsf/core": "^2.4.2",
|
|
52
52
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
@@ -59,21 +59,21 @@
|
|
|
59
59
|
"@types/react": "^18.3.12",
|
|
60
60
|
"@types/react-dom": "^18.3.1",
|
|
61
61
|
"@types/tabulator-tables": "^4.9.4",
|
|
62
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
63
|
-
"@typescript-eslint/parser": "^8.
|
|
62
|
+
"@typescript-eslint/eslint-plugin": "^8.17.0",
|
|
63
|
+
"@typescript-eslint/parser": "^8.17.0",
|
|
64
64
|
"codemirror": "^5.65.9",
|
|
65
65
|
"cross-env": "^7.0.3",
|
|
66
66
|
"dayjs": "^1.11.13",
|
|
67
|
-
"eslint": "^9.
|
|
67
|
+
"eslint": "^9.16.0",
|
|
68
68
|
"eslint-config-prettier": "^9.1.0",
|
|
69
69
|
"eslint-plugin-ban": "^1.6.0",
|
|
70
70
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
71
71
|
"eslint-plugin-prettier": "^5.2.1",
|
|
72
72
|
"eslint-plugin-react": "^7.37.2",
|
|
73
|
-
"eslint-plugin-sonarjs": "^
|
|
74
|
-
"eslint-plugin-tsdoc": "^0.
|
|
73
|
+
"eslint-plugin-sonarjs": "^3.0.0",
|
|
74
|
+
"eslint-plugin-tsdoc": "^0.4.0",
|
|
75
75
|
"flatpickr": "^4.6.13",
|
|
76
|
-
"globals": "^15.
|
|
76
|
+
"globals": "^15.13.0",
|
|
77
77
|
"html-escaper": "^3.0.3",
|
|
78
78
|
"jest": "^27.5.1",
|
|
79
79
|
"jest-cli": "^27.5.1",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"moment": "^2.30.1",
|
|
86
86
|
"number-abbreviate": "^2.0.0",
|
|
87
87
|
"parse-css-color": "^0.2.1",
|
|
88
|
-
"prettier": "^3.
|
|
88
|
+
"prettier": "^3.4.1",
|
|
89
89
|
"prosemirror-example-setup": "^1.2.3",
|
|
90
90
|
"prosemirror-markdown": "^1.13.1",
|
|
91
91
|
"prosemirror-model": ">=1.22.1",
|