diff --git a/apps/web-antd/package.json b/apps/web-antd/package.json
index 6d001275d48278ceacdd86ce5f914a8232418e20..77aabdbc6b61bb3a863383dc9efd85fe0913b056 100644
--- a/apps/web-antd/package.json
+++ b/apps/web-antd/package.json
@@ -46,10 +46,18 @@
"@vueuse/core": "catalog:",
"@vueuse/integrations": "catalog:",
"ant-design-vue": "catalog:",
+ "bpmn-js": "catalog:",
+ "bpmn-js-properties-panel": "catalog:",
+ "bpmn-js-token-simulation": "catalog:",
+ "camunda-bpmn-moddle": "catalog:",
"cropperjs": "catalog:",
"dayjs": "catalog:",
+ "diagram-js": "catalog:",
+ "fast-xml-parser": "catalog:",
"highlight.js": "catalog:",
+ "min-dash": "catalog:",
"pinia": "catalog:",
+ "steady-xml": "catalog:",
"tinymce": "catalog:",
"vue": "catalog:",
"vue-dompurify-html": "catalog:",
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue
new file mode 100644
index 0000000000000000000000000000000000000000..97d15e570a739d7cba878306f217c7ca58bf1514
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue
@@ -0,0 +1,684 @@
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue
new file mode 100644
index 0000000000000000000000000000000000000000..370f295bbbe263d3694e2fa81fc00117cb8353a9
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue
@@ -0,0 +1,418 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ index + 1 }}
+
+
+
+
+ {{ record.assigneeUser?.nickname || record.ownerUser?.nickname }}
+
+
+
+
+
+ {{ record.assigneeUser?.deptName || record.ownerUser?.deptName }}
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ formatPast2(record.durationInMillis) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/index.ts b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cc2dc24fcf45d8175902a91321a98e3f38fe6652
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/index.ts
@@ -0,0 +1,8 @@
+import MyProcessDesigner from './ProcessDesigner.vue';
+
+MyProcessDesigner.install = function (Vue: any) {
+ Vue.component(MyProcessDesigner.name, MyProcessDesigner);
+};
+
+// 流程图的设计器,可编辑
+export default MyProcessDesigner;
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/index2.ts b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/index2.ts
new file mode 100644
index 0000000000000000000000000000000000000000..9f085a72ece01b1543201e756320fca9e285167d
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/index2.ts
@@ -0,0 +1,8 @@
+import MyProcessViewer from './ProcessViewer.vue';
+
+MyProcessViewer.install = function (Vue: any) {
+ Vue.component(MyProcessViewer.name, MyProcessViewer);
+};
+
+// 流程图的查看器,不可编辑
+export default MyProcessViewer;
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/contentPadProvider.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/contentPadProvider.js
new file mode 100644
index 0000000000000000000000000000000000000000..dbc0b25a58acb4d6c93d7ee21522410af1c22487
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/contentPadProvider.js
@@ -0,0 +1,440 @@
+import { getChildLanes } from 'bpmn-js/lib/features/modeling/util/LaneUtil';
+import { isAny } from 'bpmn-js/lib/features/modeling/util/ModelingUtil';
+import { isEventSubProcess, isExpanded } from 'bpmn-js/lib/util/DiUtil';
+import { is } from 'bpmn-js/lib/util/ModelUtil';
+import { hasPrimaryModifier } from 'diagram-js/lib/util/Mouse';
+import { assign, forEach, isArray } from 'min-dash';
+
+/**
+ * A provider for BPMN 2.0 elements context pad
+ */
+export default function ContextPadProvider(
+ config,
+ injector,
+ eventBus,
+ contextPad,
+ modeling,
+ elementFactory,
+ connect,
+ create,
+ popupMenu,
+ canvas,
+ rules,
+ translate,
+) {
+ config = config || {};
+
+ contextPad.registerProvider(this);
+
+ this._contextPad = contextPad;
+
+ this._modeling = modeling;
+
+ this._elementFactory = elementFactory;
+ this._connect = connect;
+ this._create = create;
+ this._popupMenu = popupMenu;
+ this._canvas = canvas;
+ this._rules = rules;
+ this._translate = translate;
+
+ if (config.autoPlace !== false) {
+ this._autoPlace = injector.get('autoPlace', false);
+ }
+
+ eventBus.on('create.end', 250, (event) => {
+ const context = event.context;
+ const shape = context.shape;
+
+ if (!hasPrimaryModifier(event) || !contextPad.isOpen(shape)) {
+ return;
+ }
+
+ const entries = contextPad.getEntries(shape);
+
+ if (entries.replace) {
+ entries.replace.action.click(event, shape);
+ }
+ });
+}
+
+ContextPadProvider.$inject = [
+ 'config.contextPad',
+ 'injector',
+ 'eventBus',
+ 'contextPad',
+ 'modeling',
+ 'elementFactory',
+ 'connect',
+ 'create',
+ 'popupMenu',
+ 'canvas',
+ 'rules',
+ 'translate',
+ 'elementRegistry',
+];
+
+ContextPadProvider.prototype.getContextPadEntries = function (element) {
+ const autoPlace = this._autoPlace;
+ const canvas = this._canvas;
+ const connect = this._connect;
+ const contextPad = this._contextPad;
+ const create = this._create;
+ const elementFactory = this._elementFactory;
+ const modeling = this._modeling;
+ const popupMenu = this._popupMenu;
+ const rules = this._rules;
+ const translate = this._translate;
+
+ const actions = {};
+
+ if (element.type === 'label') {
+ return actions;
+ }
+
+ const businessObject = element.businessObject;
+
+ function startConnect(event, element) {
+ connect.start(event, element);
+ }
+
+ function removeElement() {
+ modeling.removeElements([element]);
+ }
+
+ function getReplaceMenuPosition(element) {
+ const Y_OFFSET = 5;
+
+ const diagramContainer = canvas.getContainer();
+ const pad = contextPad.getPad(element).html;
+
+ const diagramRect = diagramContainer.getBoundingClientRect();
+ const padRect = pad.getBoundingClientRect();
+
+ const top = padRect.top - diagramRect.top;
+ const left = padRect.left - diagramRect.left;
+
+ const pos = {
+ x: left,
+ y: top + padRect.height + Y_OFFSET,
+ };
+
+ return pos;
+ }
+
+ /**
+ * Create an append action
+ *
+ * @param {string} type
+ * @param {string} className
+ * @param {string} [title]
+ * @param {object} [options]
+ *
+ * @return {object} descriptor
+ */
+ function appendAction(type, className, title, options) {
+ if (typeof title !== 'string') {
+ options = title;
+ title = translate('Append {type}', { type: type.replace(/^bpmn:/, '') });
+ }
+
+ function appendStart(event, element) {
+ const shape = elementFactory.createShape(assign({ type }, options));
+ create.start(event, shape, {
+ source: element,
+ });
+ }
+
+ const append = autoPlace
+ ? function (event, element) {
+ const shape = elementFactory.createShape(assign({ type }, options));
+
+ autoPlace.append(element, shape);
+ }
+ : appendStart;
+
+ return {
+ group: 'model',
+ className,
+ title,
+ action: {
+ dragstart: appendStart,
+ click: append,
+ },
+ };
+ }
+
+ function splitLaneHandler(count) {
+ return function (event, element) {
+ // actual split
+ modeling.splitLane(element, count);
+
+ // refresh context pad after split to
+ // get rid of split icons
+ contextPad.open(element, true);
+ };
+ }
+
+ if (
+ isAny(businessObject, ['bpmn:Lane', 'bpmn:Participant']) &&
+ isExpanded(businessObject)
+ ) {
+ const childLanes = getChildLanes(element);
+
+ assign(actions, {
+ 'lane-insert-above': {
+ group: 'lane-insert-above',
+ className: 'bpmn-icon-lane-insert-above',
+ title: translate('Add Lane above'),
+ action: {
+ click(event, element) {
+ modeling.addLane(element, 'top');
+ },
+ },
+ },
+ });
+
+ if (childLanes.length < 2) {
+ if (element.height >= 120) {
+ assign(actions, {
+ 'lane-divide-two': {
+ group: 'lane-divide',
+ className: 'bpmn-icon-lane-divide-two',
+ title: translate('Divide into two Lanes'),
+ action: {
+ click: splitLaneHandler(2),
+ },
+ },
+ });
+ }
+
+ if (element.height >= 180) {
+ assign(actions, {
+ 'lane-divide-three': {
+ group: 'lane-divide',
+ className: 'bpmn-icon-lane-divide-three',
+ title: translate('Divide into three Lanes'),
+ action: {
+ click: splitLaneHandler(3),
+ },
+ },
+ });
+ }
+ }
+
+ assign(actions, {
+ 'lane-insert-below': {
+ group: 'lane-insert-below',
+ className: 'bpmn-icon-lane-insert-below',
+ title: translate('Add Lane below'),
+ action: {
+ click(event, element) {
+ modeling.addLane(element, 'bottom');
+ },
+ },
+ },
+ });
+ }
+
+ if (is(businessObject, 'bpmn:FlowNode')) {
+ if (is(businessObject, 'bpmn:EventBasedGateway')) {
+ assign(actions, {
+ 'append.receive-task': appendAction(
+ 'bpmn:ReceiveTask',
+ 'bpmn-icon-receive-task',
+ translate('Append ReceiveTask'),
+ ),
+ 'append.message-intermediate-event': appendAction(
+ 'bpmn:IntermediateCatchEvent',
+ 'bpmn-icon-intermediate-event-catch-message',
+ translate('Append MessageIntermediateCatchEvent'),
+ { eventDefinitionType: 'bpmn:MessageEventDefinition' },
+ ),
+ 'append.timer-intermediate-event': appendAction(
+ 'bpmn:IntermediateCatchEvent',
+ 'bpmn-icon-intermediate-event-catch-timer',
+ translate('Append TimerIntermediateCatchEvent'),
+ { eventDefinitionType: 'bpmn:TimerEventDefinition' },
+ ),
+ 'append.condition-intermediate-event': appendAction(
+ 'bpmn:IntermediateCatchEvent',
+ 'bpmn-icon-intermediate-event-catch-condition',
+ translate('Append ConditionIntermediateCatchEvent'),
+ { eventDefinitionType: 'bpmn:ConditionalEventDefinition' },
+ ),
+ 'append.signal-intermediate-event': appendAction(
+ 'bpmn:IntermediateCatchEvent',
+ 'bpmn-icon-intermediate-event-catch-signal',
+ translate('Append SignalIntermediateCatchEvent'),
+ { eventDefinitionType: 'bpmn:SignalEventDefinition' },
+ ),
+ });
+ } else if (
+ isEventType(
+ businessObject,
+ 'bpmn:BoundaryEvent',
+ 'bpmn:CompensateEventDefinition',
+ )
+ ) {
+ assign(actions, {
+ 'append.compensation-activity': appendAction(
+ 'bpmn:Task',
+ 'bpmn-icon-task',
+ translate('Append compensation activity'),
+ {
+ isForCompensation: true,
+ },
+ ),
+ });
+ } else if (
+ !is(businessObject, 'bpmn:EndEvent') &&
+ !businessObject.isForCompensation &&
+ !isEventType(
+ businessObject,
+ 'bpmn:IntermediateThrowEvent',
+ 'bpmn:LinkEventDefinition',
+ ) &&
+ !isEventSubProcess(businessObject)
+ ) {
+ assign(actions, {
+ 'append.end-event': appendAction(
+ 'bpmn:EndEvent',
+ 'bpmn-icon-end-event-none',
+ translate('Append EndEvent'),
+ ),
+ 'append.gateway': appendAction(
+ 'bpmn:ExclusiveGateway',
+ 'bpmn-icon-gateway-none',
+ translate('Append Gateway'),
+ ),
+ 'append.append-task': appendAction(
+ 'bpmn:UserTask',
+ 'bpmn-icon-user-task',
+ translate('Append Task'),
+ ),
+ 'append.intermediate-event': appendAction(
+ 'bpmn:IntermediateThrowEvent',
+ 'bpmn-icon-intermediate-event-none',
+ translate('Append Intermediate/Boundary Event'),
+ ),
+ });
+ }
+ }
+
+ if (!popupMenu.isEmpty(element, 'bpmn-replace')) {
+ // Replace menu entry
+ assign(actions, {
+ replace: {
+ group: 'edit',
+ className: 'bpmn-icon-screw-wrench',
+ title: '修改类型',
+ action: {
+ click(event, element) {
+ const position = assign(getReplaceMenuPosition(element), {
+ cursor: { x: event.x, y: event.y },
+ });
+
+ popupMenu.open(element, 'bpmn-replace', position);
+ },
+ },
+ },
+ });
+ }
+
+ if (
+ isAny(businessObject, [
+ 'bpmn:FlowNode',
+ 'bpmn:InteractionNode',
+ 'bpmn:DataObjectReference',
+ 'bpmn:DataStoreReference',
+ ])
+ ) {
+ assign(actions, {
+ 'append.text-annotation': appendAction(
+ 'bpmn:TextAnnotation',
+ 'bpmn-icon-text-annotation',
+ ),
+
+ connect: {
+ group: 'connect',
+ className: 'bpmn-icon-connection-multi',
+ title: translate(
+ `Connect using ${
+ businessObject.isForCompensation ? '' : 'Sequence/MessageFlow or '
+ }Association`,
+ ),
+ action: {
+ click: startConnect,
+ dragstart: startConnect,
+ },
+ },
+ });
+ }
+
+ if (
+ isAny(businessObject, [
+ 'bpmn:DataObjectReference',
+ 'bpmn:DataStoreReference',
+ ])
+ ) {
+ assign(actions, {
+ connect: {
+ group: 'connect',
+ className: 'bpmn-icon-connection-multi',
+ title: translate('Connect using DataInputAssociation'),
+ action: {
+ click: startConnect,
+ dragstart: startConnect,
+ },
+ },
+ });
+ }
+
+ if (is(businessObject, 'bpmn:Group')) {
+ assign(actions, {
+ 'append.text-annotation': appendAction(
+ 'bpmn:TextAnnotation',
+ 'bpmn-icon-text-annotation',
+ ),
+ });
+ }
+
+ // delete element entry, only show if allowed by rules
+ let deleteAllowed = rules.allowed('elements.delete', { elements: [element] });
+
+ if (isArray(deleteAllowed)) {
+ // was the element returned as a deletion candidate?
+ deleteAllowed = deleteAllowed[0] === element;
+ }
+
+ if (deleteAllowed) {
+ assign(actions, {
+ delete: {
+ group: 'edit',
+ className: 'bpmn-icon-trash',
+ title: translate('Remove'),
+ action: {
+ click: removeElement,
+ },
+ },
+ });
+ }
+
+ return actions;
+};
+
+// helpers /////////
+
+function isEventType(eventBo, type, definition) {
+ const isType = eventBo.$instanceOf(type);
+ let isDefinition = false;
+
+ const definitions = eventBo.eventDefinitions || [];
+ forEach(definitions, (def) => {
+ if (def.$type === definition) {
+ isDefinition = true;
+ }
+ });
+
+ return isType && isDefinition;
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..d5325aedbe6c2c3e1f4247f2ba98f024096ec18c
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/content-pad/index.js
@@ -0,0 +1,6 @@
+import CustomContextPadProvider from './contentPadProvider';
+
+export default {
+ __init__: ['contextPadProvider'],
+ contextPadProvider: ['type', CustomContextPadProvider],
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/defaultEmpty.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/defaultEmpty.js
new file mode 100644
index 0000000000000000000000000000000000000000..21676ee4057e7ee7396470c9761c9d671b88c816
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/defaultEmpty.js
@@ -0,0 +1,24 @@
+export default (key, name, type) => {
+ if (!type) type = 'camunda';
+ const TYPE_TARGET = {
+ activiti: 'http://activiti.org/bpmn',
+ camunda: 'http://bpmn.io/schema/bpmn',
+ flowable: 'http://flowable.org/bpmn',
+ };
+ return `
+
+
+
+
+
+
+
+`;
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/activitiDescriptor.json b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/activitiDescriptor.json
new file mode 100644
index 0000000000000000000000000000000000000000..94ba8f6cc88c5d6260d1c7076e3b1202ebf69324
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/activitiDescriptor.json
@@ -0,0 +1,1004 @@
+{
+ "name": "Activiti",
+ "uri": "http://activiti.org/bpmn",
+ "prefix": "activiti",
+ "xml": {
+ "tagAlias": "lowerCase"
+ },
+ "associations": [],
+ "types": [
+ {
+ "name": "Definitions",
+ "isAbstract": true,
+ "extends": ["bpmn:Definitions"],
+ "properties": [
+ {
+ "name": "diagramRelationId",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "InOutBinding",
+ "superClass": ["Element"],
+ "isAbstract": true,
+ "properties": [
+ {
+ "name": "source",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "sourceExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "target",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "businessKey",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "local",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "variables",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "In",
+ "superClass": ["InOutBinding"],
+ "meta": {
+ "allowedIn": ["bpmn:CallActivity"]
+ }
+ },
+ {
+ "name": "Out",
+ "superClass": ["InOutBinding"],
+ "meta": {
+ "allowedIn": ["bpmn:CallActivity"]
+ }
+ },
+ {
+ "name": "AsyncCapable",
+ "isAbstract": true,
+ "extends": ["bpmn:Activity", "bpmn:Gateway", "bpmn:Event"],
+ "properties": [
+ {
+ "name": "async",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "asyncBefore",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "asyncAfter",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "exclusive",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": true
+ }
+ ]
+ },
+ {
+ "name": "JobPriorized",
+ "isAbstract": true,
+ "extends": ["bpmn:Process", "activiti:AsyncCapable"],
+ "properties": [
+ {
+ "name": "jobPriority",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "SignalEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:SignalEventDefinition"],
+ "properties": [
+ {
+ "name": "async",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ }
+ ]
+ },
+ {
+ "name": "ErrorEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:ErrorEventDefinition"],
+ "properties": [
+ {
+ "name": "errorCodeVariable",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "errorMessageVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Error",
+ "isAbstract": true,
+ "extends": ["bpmn:Error"],
+ "properties": [
+ {
+ "name": "activiti:errorMessage",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "PotentialStarter",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "resourceAssignmentExpression",
+ "type": "bpmn:ResourceAssignmentExpression"
+ }
+ ]
+ },
+ {
+ "name": "FormSupported",
+ "isAbstract": true,
+ "extends": ["bpmn:StartEvent", "bpmn:UserTask"],
+ "properties": [
+ {
+ "name": "formHandlerClass",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "formKey",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "TemplateSupported",
+ "isAbstract": true,
+ "extends": ["bpmn:Process", "bpmn:FlowElement"],
+ "properties": [
+ {
+ "name": "modelerTemplate",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Initiator",
+ "isAbstract": true,
+ "extends": ["bpmn:StartEvent"],
+ "properties": [
+ {
+ "name": "initiator",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ScriptTask",
+ "isAbstract": true,
+ "extends": ["bpmn:ScriptTask"],
+ "properties": [
+ {
+ "name": "resultVariable",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "resource",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Process",
+ "isAbstract": true,
+ "extends": ["bpmn:Process"],
+ "properties": [
+ {
+ "name": "candidateStarterGroups",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateStarterUsers",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "versionTag",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "historyTimeToLive",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "isStartableInTasklist",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": true
+ },
+ {
+ "name": "executionListener",
+ "isAbstract": true,
+ "type": "Expression"
+ }
+ ]
+ },
+ {
+ "name": "EscalationEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:EscalationEventDefinition"],
+ "properties": [
+ {
+ "name": "escalationCodeVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "FormalExpression",
+ "isAbstract": true,
+ "extends": ["bpmn:FormalExpression"],
+ "properties": [
+ {
+ "name": "resource",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "multiinstance_type",
+ "superClass": ["Element"]
+ },
+ {
+ "name": "multiinstance_condition",
+ "superClass": ["Element"]
+ },
+ {
+ "name": "Assignable",
+ "extends": ["bpmn:UserTask"],
+ "properties": [
+ {
+ "name": "assignee",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateUsers",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateGroups",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "dueDate",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "followUpDate",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "priority",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "multiinstance_condition",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateStrategy",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateParam",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "CallActivity",
+ "extends": ["bpmn:CallActivity"],
+ "properties": [
+ {
+ "name": "calledElementBinding",
+ "isAttr": true,
+ "type": "String",
+ "default": "latest"
+ },
+ {
+ "name": "calledElementVersion",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "calledElementVersionTag",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "calledElementTenantId",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "caseRef",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "caseBinding",
+ "isAttr": true,
+ "type": "String",
+ "default": "latest"
+ },
+ {
+ "name": "caseVersion",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "caseTenantId",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "variableMappingClass",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "variableMappingDelegateExpression",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ServiceTaskLike",
+ "extends": [
+ "bpmn:ServiceTask",
+ "bpmn:BusinessRuleTask",
+ "bpmn:SendTask",
+ "bpmn:MessageEventDefinition"
+ ],
+ "properties": [
+ {
+ "name": "expression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "class",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "delegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "resultVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "DmnCapable",
+ "extends": ["bpmn:BusinessRuleTask"],
+ "properties": [
+ {
+ "name": "decisionRef",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "decisionRefBinding",
+ "isAttr": true,
+ "type": "String",
+ "default": "latest"
+ },
+ {
+ "name": "decisionRefVersion",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "mapDecisionResult",
+ "isAttr": true,
+ "type": "String",
+ "default": "resultList"
+ },
+ {
+ "name": "decisionRefTenantId",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ExternalCapable",
+ "extends": ["activiti:ServiceTaskLike"],
+ "properties": [
+ {
+ "name": "type",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "topic",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "TaskPriorized",
+ "extends": ["bpmn:Process", "activiti:ExternalCapable"],
+ "properties": [
+ {
+ "name": "taskPriority",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Properties",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["*"]
+ },
+ "properties": [
+ {
+ "name": "values",
+ "type": "Property",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "Property",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "value",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "Connector",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["activiti:ServiceTaskLike"]
+ },
+ "properties": [
+ {
+ "name": "inputOutput",
+ "type": "InputOutput"
+ },
+ {
+ "name": "connectorId",
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "InputOutput",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:FlowNode", "activiti:Connector"]
+ },
+ "properties": [
+ {
+ "name": "inputOutput",
+ "type": "InputOutput"
+ },
+ {
+ "name": "connectorId",
+ "type": "String"
+ },
+ {
+ "name": "inputParameters",
+ "isMany": true,
+ "type": "InputParameter"
+ },
+ {
+ "name": "outputParameters",
+ "isMany": true,
+ "type": "OutputParameter"
+ }
+ ]
+ },
+ {
+ "name": "InputOutputParameter",
+ "properties": [
+ {
+ "name": "name",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ },
+ {
+ "name": "definition",
+ "type": "InputOutputParameterDefinition"
+ }
+ ]
+ },
+ {
+ "name": "InputOutputParameterDefinition",
+ "isAbstract": true
+ },
+ {
+ "name": "List",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "items",
+ "isMany": true,
+ "type": "InputOutputParameterDefinition"
+ }
+ ]
+ },
+ {
+ "name": "Map",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "entries",
+ "isMany": true,
+ "type": "Entry"
+ }
+ ]
+ },
+ {
+ "name": "Entry",
+ "properties": [
+ {
+ "name": "key",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ },
+ {
+ "name": "definition",
+ "type": "InputOutputParameterDefinition"
+ }
+ ]
+ },
+ {
+ "name": "Value",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "id",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "name",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Script",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "scriptFormat",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "resource",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Field",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": [
+ "activiti:ServiceTaskLike",
+ "activiti:ExecutionListener",
+ "activiti:TaskListener"
+ ]
+ },
+ "properties": [
+ {
+ "name": "name",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "expression",
+ "type": "String"
+ },
+ {
+ "name": "stringValue",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "string",
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "InputParameter",
+ "superClass": ["InputOutputParameter"]
+ },
+ {
+ "name": "OutputParameter",
+ "superClass": ["InputOutputParameter"]
+ },
+ {
+ "name": "Collectable",
+ "isAbstract": true,
+ "extends": ["bpmn:MultiInstanceLoopCharacteristics"],
+ "superClass": ["activiti:AsyncCapable"],
+ "properties": [
+ {
+ "name": "collection",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "elementVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "FailedJobRetryTimeCycle",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["activiti:AsyncCapable", "bpmn:MultiInstanceLoopCharacteristics"]
+ },
+ "properties": [
+ {
+ "name": "body",
+ "isBody": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ExecutionListener",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": [
+ "bpmn:Task",
+ "bpmn:ServiceTask",
+ "bpmn:UserTask",
+ "bpmn:BusinessRuleTask",
+ "bpmn:ScriptTask",
+ "bpmn:ReceiveTask",
+ "bpmn:ManualTask",
+ "bpmn:ExclusiveGateway",
+ "bpmn:SequenceFlow",
+ "bpmn:ParallelGateway",
+ "bpmn:InclusiveGateway",
+ "bpmn:EventBasedGateway",
+ "bpmn:StartEvent",
+ "bpmn:IntermediateCatchEvent",
+ "bpmn:IntermediateThrowEvent",
+ "bpmn:EndEvent",
+ "bpmn:BoundaryEvent",
+ "bpmn:CallActivity",
+ "bpmn:SubProcess",
+ "bpmn:Process"
+ ]
+ },
+ "properties": [
+ {
+ "name": "expression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "class",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "delegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "event",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "script",
+ "type": "Script"
+ },
+ {
+ "name": "fields",
+ "type": "Field",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "TaskListener",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "expression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "class",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "delegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "event",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "script",
+ "type": "Script"
+ },
+ {
+ "name": "fields",
+ "type": "Field",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "FormProperty",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "type",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "required",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "readable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "writable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "variable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "expression",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "datePattern",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "default",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "values",
+ "type": "Value",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "FormProperty",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "label",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "type",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "datePattern",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "defaultValue",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "properties",
+ "type": "Properties"
+ },
+ {
+ "name": "validation",
+ "type": "Validation"
+ },
+ {
+ "name": "values",
+ "type": "Value",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "Validation",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "constraints",
+ "type": "Constraint",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "Constraint",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "config",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "ConditionalEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:ConditionalEventDefinition"],
+ "properties": [
+ {
+ "name": "variableName",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "variableEvent",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ }
+ ],
+ "emumerations": []
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/camundaDescriptor.json b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/camundaDescriptor.json
new file mode 100644
index 0000000000000000000000000000000000000000..8322561e71021d3acd79f9fc5186697be909309c
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/camundaDescriptor.json
@@ -0,0 +1,1020 @@
+{
+ "name": "Camunda",
+ "uri": "http://camunda.org/schema/1.0/bpmn",
+ "prefix": "camunda",
+ "xml": {
+ "tagAlias": "lowerCase"
+ },
+ "associations": [],
+ "types": [
+ {
+ "name": "Definitions",
+ "isAbstract": true,
+ "extends": ["bpmn:Definitions"],
+ "properties": [
+ {
+ "name": "diagramRelationId",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "InOutBinding",
+ "superClass": ["Element"],
+ "isAbstract": true,
+ "properties": [
+ {
+ "name": "source",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "sourceExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "target",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "businessKey",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "local",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "variables",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "In",
+ "superClass": ["InOutBinding"],
+ "meta": {
+ "allowedIn": ["bpmn:CallActivity", "bpmn:SignalEventDefinition"]
+ }
+ },
+ {
+ "name": "Out",
+ "superClass": ["InOutBinding"],
+ "meta": {
+ "allowedIn": ["bpmn:CallActivity"]
+ }
+ },
+ {
+ "name": "AsyncCapable",
+ "isAbstract": true,
+ "extends": ["bpmn:Activity", "bpmn:Gateway", "bpmn:Event"],
+ "properties": [
+ {
+ "name": "async",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "asyncBefore",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "asyncAfter",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "exclusive",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": true
+ }
+ ]
+ },
+ {
+ "name": "JobPriorized",
+ "isAbstract": true,
+ "extends": ["bpmn:Process", "camunda:AsyncCapable"],
+ "properties": [
+ {
+ "name": "jobPriority",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "SignalEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:SignalEventDefinition"],
+ "properties": [
+ {
+ "name": "async",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ }
+ ]
+ },
+ {
+ "name": "ErrorEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:ErrorEventDefinition"],
+ "properties": [
+ {
+ "name": "errorCodeVariable",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "errorMessageVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Error",
+ "isAbstract": true,
+ "extends": ["bpmn:Error"],
+ "properties": [
+ {
+ "name": "camunda:errorMessage",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "PotentialStarter",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "resourceAssignmentExpression",
+ "type": "bpmn:ResourceAssignmentExpression"
+ }
+ ]
+ },
+ {
+ "name": "FormSupported",
+ "isAbstract": true,
+ "extends": ["bpmn:StartEvent", "bpmn:UserTask"],
+ "properties": [
+ {
+ "name": "formHandlerClass",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "formKey",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "TemplateSupported",
+ "isAbstract": true,
+ "extends": ["bpmn:Process", "bpmn:FlowElement"],
+ "properties": [
+ {
+ "name": "modelerTemplate",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "modelerTemplateVersion",
+ "isAttr": true,
+ "type": "Integer"
+ }
+ ]
+ },
+ {
+ "name": "Initiator",
+ "isAbstract": true,
+ "extends": ["bpmn:StartEvent"],
+ "properties": [
+ {
+ "name": "initiator",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ScriptTask",
+ "isAbstract": true,
+ "extends": ["bpmn:ScriptTask"],
+ "properties": [
+ {
+ "name": "resultVariable",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "resource",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Process",
+ "isAbstract": true,
+ "extends": ["bpmn:Process"],
+ "properties": [
+ {
+ "name": "candidateStarterGroups",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateStarterUsers",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "versionTag",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "historyTimeToLive",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "isStartableInTasklist",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": true
+ }
+ ]
+ },
+ {
+ "name": "EscalationEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:EscalationEventDefinition"],
+ "properties": [
+ {
+ "name": "escalationCodeVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "FormalExpression",
+ "isAbstract": true,
+ "extends": ["bpmn:FormalExpression"],
+ "properties": [
+ {
+ "name": "resource",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Assignable",
+ "extends": ["bpmn:UserTask"],
+ "properties": [
+ {
+ "name": "assignee",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateUsers",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateGroups",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "dueDate",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "followUpDate",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "priority",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateStrategy",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateParam",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "CallActivity",
+ "extends": ["bpmn:CallActivity"],
+ "properties": [
+ {
+ "name": "calledElementBinding",
+ "isAttr": true,
+ "type": "String",
+ "default": "latest"
+ },
+ {
+ "name": "calledElementVersion",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "calledElementVersionTag",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "calledElementTenantId",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "caseRef",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "caseBinding",
+ "isAttr": true,
+ "type": "String",
+ "default": "latest"
+ },
+ {
+ "name": "caseVersion",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "caseTenantId",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "variableMappingClass",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "variableMappingDelegateExpression",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ServiceTaskLike",
+ "extends": [
+ "bpmn:ServiceTask",
+ "bpmn:BusinessRuleTask",
+ "bpmn:SendTask",
+ "bpmn:MessageEventDefinition"
+ ],
+ "properties": [
+ {
+ "name": "expression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "class",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "delegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "resultVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "DmnCapable",
+ "extends": ["bpmn:BusinessRuleTask"],
+ "properties": [
+ {
+ "name": "decisionRef",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "decisionRefBinding",
+ "isAttr": true,
+ "type": "String",
+ "default": "latest"
+ },
+ {
+ "name": "decisionRefVersion",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "mapDecisionResult",
+ "isAttr": true,
+ "type": "String",
+ "default": "resultList"
+ },
+ {
+ "name": "decisionRefTenantId",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ExternalCapable",
+ "extends": ["camunda:ServiceTaskLike"],
+ "properties": [
+ {
+ "name": "type",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "topic",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "TaskPriorized",
+ "extends": ["bpmn:Process", "camunda:ExternalCapable"],
+ "properties": [
+ {
+ "name": "taskPriority",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Properties",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["*"]
+ },
+ "properties": [
+ {
+ "name": "values",
+ "type": "Property",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "Property",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "value",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "Connector",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["camunda:ServiceTaskLike"]
+ },
+ "properties": [
+ {
+ "name": "inputOutput",
+ "type": "InputOutput"
+ },
+ {
+ "name": "connectorId",
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "InputOutput",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:FlowNode", "camunda:Connector"]
+ },
+ "properties": [
+ {
+ "name": "inputOutput",
+ "type": "InputOutput"
+ },
+ {
+ "name": "connectorId",
+ "type": "String"
+ },
+ {
+ "name": "inputParameters",
+ "isMany": true,
+ "type": "InputParameter"
+ },
+ {
+ "name": "outputParameters",
+ "isMany": true,
+ "type": "OutputParameter"
+ }
+ ]
+ },
+ {
+ "name": "InputOutputParameter",
+ "properties": [
+ {
+ "name": "name",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ },
+ {
+ "name": "definition",
+ "type": "InputOutputParameterDefinition"
+ }
+ ]
+ },
+ {
+ "name": "InputOutputParameterDefinition",
+ "isAbstract": true
+ },
+ {
+ "name": "List",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "items",
+ "isMany": true,
+ "type": "InputOutputParameterDefinition"
+ }
+ ]
+ },
+ {
+ "name": "Map",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "entries",
+ "isMany": true,
+ "type": "Entry"
+ }
+ ]
+ },
+ {
+ "name": "Entry",
+ "properties": [
+ {
+ "name": "key",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ },
+ {
+ "name": "definition",
+ "type": "InputOutputParameterDefinition"
+ }
+ ]
+ },
+ {
+ "name": "Value",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "id",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "name",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Script",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "scriptFormat",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "resource",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Field",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": [
+ "camunda:ServiceTaskLike",
+ "camunda:ExecutionListener",
+ "camunda:TaskListener"
+ ]
+ },
+ "properties": [
+ {
+ "name": "name",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "expression",
+ "type": "String"
+ },
+ {
+ "name": "stringValue",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "string",
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "InputParameter",
+ "superClass": ["InputOutputParameter"]
+ },
+ {
+ "name": "OutputParameter",
+ "superClass": ["InputOutputParameter"]
+ },
+ {
+ "name": "Collectable",
+ "isAbstract": true,
+ "extends": ["bpmn:MultiInstanceLoopCharacteristics"],
+ "superClass": ["camunda:AsyncCapable"],
+ "properties": [
+ {
+ "name": "collection",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "elementVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "FailedJobRetryTimeCycle",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["camunda:AsyncCapable", "bpmn:MultiInstanceLoopCharacteristics"]
+ },
+ "properties": [
+ {
+ "name": "body",
+ "isBody": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ExecutionListener",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": [
+ "bpmn:Task",
+ "bpmn:ServiceTask",
+ "bpmn:UserTask",
+ "bpmn:BusinessRuleTask",
+ "bpmn:ScriptTask",
+ "bpmn:ReceiveTask",
+ "bpmn:ManualTask",
+ "bpmn:ExclusiveGateway",
+ "bpmn:SequenceFlow",
+ "bpmn:ParallelGateway",
+ "bpmn:InclusiveGateway",
+ "bpmn:EventBasedGateway",
+ "bpmn:StartEvent",
+ "bpmn:IntermediateCatchEvent",
+ "bpmn:IntermediateThrowEvent",
+ "bpmn:EndEvent",
+ "bpmn:BoundaryEvent",
+ "bpmn:CallActivity",
+ "bpmn:SubProcess",
+ "bpmn:Process"
+ ]
+ },
+ "properties": [
+ {
+ "name": "expression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "class",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "delegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "event",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "script",
+ "type": "Script"
+ },
+ {
+ "name": "fields",
+ "type": "Field",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "TaskListener",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "expression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "class",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "delegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "event",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "script",
+ "type": "Script"
+ },
+ {
+ "name": "fields",
+ "type": "Field",
+ "isMany": true
+ },
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "eventDefinitions",
+ "type": "bpmn:TimerEventDefinition",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "FormProperty",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "type",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "required",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "readable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "writable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "variable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "expression",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "datePattern",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "default",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "values",
+ "type": "Value",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "FormData",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "fields",
+ "type": "FormField",
+ "isMany": true
+ },
+ {
+ "name": "businessKey",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "FormField",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "label",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "type",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "datePattern",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "defaultValue",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "properties",
+ "type": "Properties"
+ },
+ {
+ "name": "validation",
+ "type": "Validation"
+ },
+ {
+ "name": "values",
+ "type": "Value",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "Validation",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "constraints",
+ "type": "Constraint",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "Constraint",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "config",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "ConditionalEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:ConditionalEventDefinition"],
+ "properties": [
+ {
+ "name": "variableName",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "variableEvents",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ }
+ ],
+ "emumerations": []
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/flowableDescriptor.json b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/flowableDescriptor.json
new file mode 100644
index 0000000000000000000000000000000000000000..c98c972367f09fb67d2af283a372a53e3fb65000
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/descriptor/flowableDescriptor.json
@@ -0,0 +1,1493 @@
+{
+ "name": "Flowable",
+ "uri": "http://flowable.org/bpmn",
+ "prefix": "flowable",
+ "xml": {
+ "tagAlias": "lowerCase"
+ },
+ "associations": [],
+ "types": [
+ {
+ "name": "InOutBinding",
+ "superClass": ["Element"],
+ "isAbstract": true,
+ "properties": [
+ {
+ "name": "source",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "sourceExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "target",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "businessKey",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "local",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "variables",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "In",
+ "superClass": ["InOutBinding"],
+ "meta": {
+ "allowedIn": ["bpmn:CallActivity"]
+ }
+ },
+ {
+ "name": "Out",
+ "superClass": ["InOutBinding"],
+ "meta": {
+ "allowedIn": ["bpmn:CallActivity"]
+ }
+ },
+ {
+ "name": "AsyncCapable",
+ "isAbstract": true,
+ "extends": ["bpmn:Activity", "bpmn:Gateway", "bpmn:Event"],
+ "properties": [
+ {
+ "name": "async",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "asyncBefore",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "asyncAfter",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "exclusive",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": true
+ }
+ ]
+ },
+ {
+ "name": "JobPriorized",
+ "isAbstract": true,
+ "extends": ["bpmn:Process", "flowable:AsyncCapable"],
+ "properties": [
+ {
+ "name": "jobPriority",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "SignalEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:SignalEventDefinition"],
+ "properties": [
+ {
+ "name": "async",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ }
+ ]
+ },
+ {
+ "name": "ErrorEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:ErrorEventDefinition"],
+ "properties": [
+ {
+ "name": "errorCodeVariable",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "errorMessageVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Error",
+ "isAbstract": true,
+ "extends": ["bpmn:Error"],
+ "properties": [
+ {
+ "name": "flowable:errorMessage",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "PotentialStarter",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "resourceAssignmentExpression",
+ "type": "bpmn:ResourceAssignmentExpression"
+ }
+ ]
+ },
+ {
+ "name": "FormSupported",
+ "isAbstract": true,
+ "extends": ["bpmn:StartEvent", "bpmn:UserTask"],
+ "properties": [
+ {
+ "name": "formHandlerClass",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "formKey",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "formType",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "formReadOnly",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": false
+ },
+ {
+ "name": "formInit",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": true
+ }
+ ]
+ },
+ {
+ "name": "TemplateSupported",
+ "isAbstract": true,
+ "extends": ["bpmn:Process", "bpmn:FlowElement"],
+ "properties": [
+ {
+ "name": "modelerTemplate",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Initiator",
+ "isAbstract": true,
+ "extends": ["bpmn:StartEvent"],
+ "properties": [
+ {
+ "name": "initiator",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ScriptTask",
+ "isAbstract": true,
+ "extends": ["bpmn:ScriptTask"],
+ "properties": [
+ {
+ "name": "resultVariable",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "resource",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Process",
+ "isAbstract": true,
+ "extends": ["bpmn:Process"],
+ "properties": [
+ {
+ "name": "candidateStarterGroups",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateStarterUsers",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "versionTag",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "historyTimeToLive",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "isStartableInTasklist",
+ "isAttr": true,
+ "type": "Boolean",
+ "default": true
+ }
+ ]
+ },
+ {
+ "name": "EscalationEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:EscalationEventDefinition"],
+ "properties": [
+ {
+ "name": "escalationCodeVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "FormalExpression",
+ "isAbstract": true,
+ "extends": ["bpmn:FormalExpression"],
+ "properties": [
+ {
+ "name": "resource",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Assignable",
+ "extends": ["bpmn:UserTask"],
+ "properties": [
+ {
+ "name": "assignee",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateUsers",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateGroups",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "dueDate",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "followUpDate",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "priority",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateStrategy",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "candidateParam",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Assignee",
+ "supperClass": "Element",
+ "meta": {
+ "allowedIn": ["*"]
+ },
+ "properties": [
+ {
+ "name": "label",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "viewId",
+ "type": "Number",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "CallActivity",
+ "extends": ["bpmn:CallActivity"],
+ "properties": [
+ {
+ "name": "calledElementBinding",
+ "isAttr": true,
+ "type": "String",
+ "default": "latest"
+ },
+ {
+ "name": "calledElementVersion",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "calledElementVersionTag",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "calledElementTenantId",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "caseRef",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "caseBinding",
+ "isAttr": true,
+ "type": "String",
+ "default": "latest"
+ },
+ {
+ "name": "caseVersion",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "caseTenantId",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "variableMappingClass",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "variableMappingDelegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "calledElementType",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "processInstanceName",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "inheritBusinessKey",
+ "isAttr": true,
+ "type": "Boolean"
+ },
+ {
+ "name": "businessKey",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "inheritVariables",
+ "isAttr": true,
+ "type": "Boolean"
+ }
+ ]
+ },
+ {
+ "name": "ServiceTaskLike",
+ "extends": [
+ "bpmn:ServiceTask",
+ "bpmn:BusinessRuleTask",
+ "bpmn:SendTask",
+ "bpmn:MessageEventDefinition"
+ ],
+ "properties": [
+ {
+ "name": "expression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "class",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "delegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "resultVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "DmnCapable",
+ "extends": ["bpmn:BusinessRuleTask"],
+ "properties": [
+ {
+ "name": "decisionRef",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "decisionRefBinding",
+ "isAttr": true,
+ "type": "String",
+ "default": "latest"
+ },
+ {
+ "name": "decisionRefVersion",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "mapDecisionResult",
+ "isAttr": true,
+ "type": "String",
+ "default": "resultList"
+ },
+ {
+ "name": "decisionRefTenantId",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ExternalCapable",
+ "extends": ["flowable:ServiceTaskLike"],
+ "properties": [
+ {
+ "name": "type",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "topic",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "TaskPriorized",
+ "extends": ["bpmn:Process", "flowable:ExternalCapable"],
+ "properties": [
+ {
+ "name": "taskPriority",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Properties",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["*"]
+ },
+ "properties": [
+ {
+ "name": "values",
+ "type": "Property",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "Property",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "value",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "Button",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "code",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "isHide",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "next",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "sort",
+ "type": "Integer",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "Assignee",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "type",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "value",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "condition",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "operationType",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "sort",
+ "type": "Integer",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "Connector",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["flowable:ServiceTaskLike"]
+ },
+ "properties": [
+ {
+ "name": "inputOutput",
+ "type": "InputOutput"
+ },
+ {
+ "name": "connectorId",
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "InputOutput",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:FlowNode", "flowable:Connector"]
+ },
+ "properties": [
+ {
+ "name": "inputOutput",
+ "type": "InputOutput"
+ },
+ {
+ "name": "connectorId",
+ "type": "String"
+ },
+ {
+ "name": "inputParameters",
+ "isMany": true,
+ "type": "InputParameter"
+ },
+ {
+ "name": "outputParameters",
+ "isMany": true,
+ "type": "OutputParameter"
+ }
+ ]
+ },
+ {
+ "name": "InputOutputParameter",
+ "properties": [
+ {
+ "name": "name",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ },
+ {
+ "name": "definition",
+ "type": "InputOutputParameterDefinition"
+ }
+ ]
+ },
+ {
+ "name": "InputOutputParameterDefinition",
+ "isAbstract": true
+ },
+ {
+ "name": "List",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "items",
+ "isMany": true,
+ "type": "InputOutputParameterDefinition"
+ }
+ ]
+ },
+ {
+ "name": "Map",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "entries",
+ "isMany": true,
+ "type": "Entry"
+ }
+ ]
+ },
+ {
+ "name": "Entry",
+ "properties": [
+ {
+ "name": "key",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ },
+ {
+ "name": "definition",
+ "type": "InputOutputParameterDefinition"
+ }
+ ]
+ },
+ {
+ "name": "Value",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "id",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "name",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Script",
+ "superClass": ["InputOutputParameterDefinition"],
+ "properties": [
+ {
+ "name": "scriptFormat",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "resource",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "value",
+ "isBody": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Field",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": [
+ "flowable:ServiceTaskLike",
+ "flowable:ExecutionListener",
+ "flowable:TaskListener"
+ ]
+ },
+ "properties": [
+ {
+ "name": "name",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "expression",
+ "type": "String"
+ },
+ {
+ "name": "stringValue",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "string",
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ChildField",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "type",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "required",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "readable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "writable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "variable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "expression",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "datePattern",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "default",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "values",
+ "type": "Value",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "InputParameter",
+ "superClass": ["InputOutputParameter"]
+ },
+ {
+ "name": "OutputParameter",
+ "superClass": ["InputOutputParameter"]
+ },
+ {
+ "name": "Collectable",
+ "isAbstract": true,
+ "extends": ["bpmn:MultiInstanceLoopCharacteristics"],
+ "superClass": ["flowable:AsyncCapable"],
+ "properties": [
+ {
+ "name": "collection",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "elementVariable",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "FailedJobRetryTimeCycle",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["flowable:AsyncCapable", "bpmn:MultiInstanceLoopCharacteristics"]
+ },
+ "properties": [
+ {
+ "name": "body",
+ "isBody": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ExecutionListener",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": [
+ "bpmn:Task",
+ "bpmn:ServiceTask",
+ "bpmn:UserTask",
+ "bpmn:BusinessRuleTask",
+ "bpmn:ScriptTask",
+ "bpmn:ReceiveTask",
+ "bpmn:ManualTask",
+ "bpmn:ExclusiveGateway",
+ "bpmn:SequenceFlow",
+ "bpmn:ParallelGateway",
+ "bpmn:InclusiveGateway",
+ "bpmn:EventBasedGateway",
+ "bpmn:StartEvent",
+ "bpmn:IntermediateCatchEvent",
+ "bpmn:IntermediateThrowEvent",
+ "bpmn:EndEvent",
+ "bpmn:BoundaryEvent",
+ "bpmn:CallActivity",
+ "bpmn:SubProcess",
+ "bpmn:Process"
+ ]
+ },
+ "properties": [
+ {
+ "name": "expression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "class",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "delegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "event",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "script",
+ "type": "Script"
+ },
+ {
+ "name": "fields",
+ "type": "Field",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "TaskListener",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "expression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "class",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "delegateExpression",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "event",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "script",
+ "type": "Script"
+ },
+ {
+ "name": "fields",
+ "type": "Field",
+ "isMany": true
+ },
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "eventDefinitions",
+ "type": "bpmn:TimerEventDefinition",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "FormProperty",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "type",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "required",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "readable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "writable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "variable",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "expression",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "datePattern",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "default",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "values",
+ "type": "Value",
+ "isMany": true
+ },
+ {
+ "name": "children",
+ "type": "ChildField",
+ "isMany": true
+ },
+ {
+ "name": "extensionElements",
+ "type": "bpmn:ExtensionElements",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "FormData",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "fields",
+ "type": "FormField",
+ "isMany": true
+ },
+ {
+ "name": "businessKey",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "FormField",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "label",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "type",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "datePattern",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "defaultValue",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "properties",
+ "type": "Properties"
+ },
+ {
+ "name": "validation",
+ "type": "Validation"
+ },
+ {
+ "name": "values",
+ "type": "Value",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "Validation",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "constraints",
+ "type": "Constraint",
+ "isMany": true
+ }
+ ]
+ },
+ {
+ "name": "Constraint",
+ "superClass": ["Element"],
+ "properties": [
+ {
+ "name": "name",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "config",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "ConditionalEventDefinition",
+ "isAbstract": true,
+ "extends": ["bpmn:ConditionalEventDefinition"],
+ "properties": [
+ {
+ "name": "variableName",
+ "isAttr": true,
+ "type": "String"
+ },
+ {
+ "name": "variableEvent",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "Condition",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:SequenceFlow"]
+ },
+ "properties": [
+ {
+ "name": "id",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "field",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "compare",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "value",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "logic",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "sort",
+ "type": "Integer",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "AssignStartUserHandlerType",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Integer",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "RejectHandlerType",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Integer",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "RejectReturnTaskId",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "String",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "AssignEmptyHandlerType",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Integer",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "AssignEmptyUserIds",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "String",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "ButtonsSetting",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "flowable:id",
+ "type": "Integer",
+ "isAttr": true
+ },
+ {
+ "name": "flowable:enable",
+ "type": "Boolean",
+ "isAttr": true
+ },
+ {
+ "name": "flowable:displayName",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "FieldsPermission",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "flowable:field",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "flowable:title",
+ "type": "String",
+ "isAttr": true
+ },
+ {
+ "name": "flowable:permission",
+ "type": "String",
+ "isAttr": true
+ }
+ ]
+ },
+ {
+ "name": "BoundaryEventType",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:BoundaryEvent"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Integer",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "TimeoutHandlerType",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:BoundaryEvent"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Integer",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "ApproveType",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Integer",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "ApproveMethod",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Integer",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "CandidateStrategy",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Integer",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "CandidateParam",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "String",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "SignEnable",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Boolean",
+ "isBody": true
+ }
+ ]
+ },
+ {
+ "name": "SkipExpression",
+ "extends": ["bpmn:UserTask"],
+ "properties": [
+ {
+ "name": "skipExpression",
+ "isAttr": true,
+ "type": "String"
+ }
+ ]
+ },
+ {
+ "name": "ReasonRequire",
+ "superClass": ["Element"],
+ "meta": {
+ "allowedIn": ["bpmn:UserTask"]
+ },
+ "properties": [
+ {
+ "name": "value",
+ "type": "Boolean",
+ "isBody": true
+ }
+ ]
+ }
+ ],
+ "emumerations": []
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/activitiExtension.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/activitiExtension.js
new file mode 100644
index 0000000000000000000000000000000000000000..1f04da8f98ec371ac62547b72ce7c5daf5933287
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/activitiExtension.js
@@ -0,0 +1,101 @@
+'use strict';
+
+import { some } from 'min-dash';
+
+// const some = require('min-dash').some
+// const some = some
+
+const ALLOWED_TYPES = {
+ FailedJobRetryTimeCycle: [
+ 'bpmn:StartEvent',
+ 'bpmn:BoundaryEvent',
+ 'bpmn:IntermediateCatchEvent',
+ 'bpmn:Activity',
+ ],
+ Connector: ['bpmn:EndEvent', 'bpmn:IntermediateThrowEvent'],
+ Field: ['bpmn:EndEvent', 'bpmn:IntermediateThrowEvent'],
+};
+
+function is(element, type) {
+ return (
+ element &&
+ typeof element.$instanceOf === 'function' &&
+ element.$instanceOf(type)
+ );
+}
+
+function exists(element) {
+ return element && element.length;
+}
+
+function includesType(collection, type) {
+ return (
+ exists(collection) &&
+ some(collection, (element) => {
+ return is(element, type);
+ })
+ );
+}
+
+function anyType(element, types) {
+ return some(types, (type) => {
+ return is(element, type);
+ });
+}
+
+function isAllowed(propName, propDescriptor, newElement) {
+ const name = propDescriptor.name;
+ const types = ALLOWED_TYPES[name.replace(/activiti:/, '')];
+
+ return name === propName && anyType(newElement, types);
+}
+
+function ActivitiModdleExtension(eventBus) {
+ eventBus.on(
+ 'property.clone',
+ function (context) {
+ const newElement = context.newElement;
+ const propDescriptor = context.propertyDescriptor;
+
+ this.canCloneProperty(newElement, propDescriptor);
+ },
+ this,
+ );
+}
+
+ActivitiModdleExtension.$inject = ['eventBus'];
+
+ActivitiModdleExtension.prototype.canCloneProperty = function (
+ newElement,
+ propDescriptor,
+) {
+ if (
+ isAllowed('activiti:FailedJobRetryTimeCycle', propDescriptor, newElement)
+ ) {
+ return (
+ includesType(newElement.eventDefinitions, 'bpmn:TimerEventDefinition') ||
+ includesType(newElement.eventDefinitions, 'bpmn:SignalEventDefinition') ||
+ is(
+ newElement.loopCharacteristics,
+ 'bpmn:MultiInstanceLoopCharacteristics',
+ )
+ );
+ }
+
+ if (isAllowed('activiti:Connector', propDescriptor, newElement)) {
+ return includesType(
+ newElement.eventDefinitions,
+ 'bpmn:MessageEventDefinition',
+ );
+ }
+
+ if (isAllowed('activiti:Field', propDescriptor, newElement)) {
+ return includesType(
+ newElement.eventDefinitions,
+ 'bpmn:MessageEventDefinition',
+ );
+ }
+};
+
+// module.exports = ActivitiModdleExtension;
+export default ActivitiModdleExtension;
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..7c38ff4e5e09ef59af22d0f49d4c9bb7531d56c2
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/activiti/index.js
@@ -0,0 +1,11 @@
+/*
+ * @author igdianov
+ * address https://github.com/igdianov/activiti-bpmn-moddle
+ * */
+
+import activitiExtension from './activitiExtension';
+
+export default {
+ __init__: ['ActivitiModdleExtension'],
+ ActivitiModdleExtension: ['type', activitiExtension],
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/extension.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/extension.js
new file mode 100644
index 0000000000000000000000000000000000000000..0b09c782c96e0c591cf166b2a3143fb98d8435a8
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/extension.js
@@ -0,0 +1,165 @@
+'use strict';
+
+import { isFunction, isObject, some } from 'min-dash';
+
+// const isFunction = isFunction,
+// isObject = isObject,
+// some = some
+// const isFunction = require('min-dash').isFunction,
+// isObject = require('min-dash').isObject,
+// some = require('min-dash').some
+
+const WILDCARD = '*';
+
+function CamundaModdleExtension(eventBus) {
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
+ const self = this;
+
+ eventBus.on('moddleCopy.canCopyProperty', (context) => {
+ const parent = context.parent;
+ const property = context.property;
+
+ return self.canCopyProperty(property, parent);
+ });
+}
+
+CamundaModdleExtension.$inject = ['eventBus'];
+
+/**
+ * Check wether to disallow copying property.
+ */
+CamundaModdleExtension.prototype.canCopyProperty = function (property, parent) {
+ // (1) check wether property is allowed in parent
+ if (isObject(property) && !isAllowedInParent(property, parent)) {
+ return false;
+ }
+
+ // (2) check more complex scenarios
+
+ if (is(property, 'camunda:InputOutput') && !this.canHostInputOutput(parent)) {
+ return false;
+ }
+
+ if (
+ isAny(property, ['camunda:Connector', 'camunda:Field']) &&
+ !this.canHostConnector(parent)
+ ) {
+ return false;
+ }
+
+ if (is(property, 'camunda:In') && !this.canHostIn(parent)) {
+ return false;
+ }
+};
+
+CamundaModdleExtension.prototype.canHostInputOutput = function (parent) {
+ // allowed in camunda:Connector
+ const connector = getParent(parent, 'camunda:Connector');
+
+ if (connector) {
+ return true;
+ }
+
+ // special rules inside bpmn:FlowNode
+ const flowNode = getParent(parent, 'bpmn:FlowNode');
+
+ if (!flowNode) {
+ return false;
+ }
+
+ if (
+ isAny(flowNode, ['bpmn:StartEvent', 'bpmn:Gateway', 'bpmn:BoundaryEvent'])
+ ) {
+ return false;
+ }
+
+ return !(is(flowNode, 'bpmn:SubProcess') && flowNode.get('triggeredByEvent'));
+};
+
+CamundaModdleExtension.prototype.canHostConnector = function (parent) {
+ const serviceTaskLike = getParent(parent, 'camunda:ServiceTaskLike');
+
+ if (is(serviceTaskLike, 'bpmn:MessageEventDefinition')) {
+ // only allow on throw and end events
+ return (
+ getParent(parent, 'bpmn:IntermediateThrowEvent') ||
+ getParent(parent, 'bpmn:EndEvent')
+ );
+ }
+
+ return true;
+};
+
+CamundaModdleExtension.prototype.canHostIn = function (parent) {
+ const callActivity = getParent(parent, 'bpmn:CallActivity');
+
+ if (callActivity) {
+ return true;
+ }
+
+ const signalEventDefinition = getParent(parent, 'bpmn:SignalEventDefinition');
+
+ if (signalEventDefinition) {
+ // only allow on throw and end events
+ return (
+ getParent(parent, 'bpmn:IntermediateThrowEvent') ||
+ getParent(parent, 'bpmn:EndEvent')
+ );
+ }
+
+ return true;
+};
+
+// module.exports = CamundaModdleExtension;
+export default CamundaModdleExtension;
+
+// helpers //////////
+
+function is(element, type) {
+ return (
+ element && isFunction(element.$instanceOf) && element.$instanceOf(type)
+ );
+}
+
+function isAny(element, types) {
+ return some(types, (t) => {
+ return is(element, t);
+ });
+}
+
+function getParent(element, type) {
+ if (!type) {
+ return element.$parent;
+ }
+
+ if (is(element, type)) {
+ return element;
+ }
+
+ if (!element.$parent) {
+ return;
+ }
+
+ return getParent(element.$parent, type);
+}
+
+function isAllowedInParent(property, parent) {
+ // (1) find property descriptor
+ const descriptor =
+ property.$type && property.$model.getTypeDescriptor(property.$type);
+
+ const allowedIn = descriptor && descriptor.meta && descriptor.meta.allowedIn;
+
+ if (!allowedIn || isWildcard(allowedIn)) {
+ return true;
+ }
+
+ // (2) check wether property has parent of allowed type
+ return some(allowedIn, (type) => {
+ return getParent(parent, type);
+ });
+}
+
+function isWildcard(allowedIn) {
+ return allowedIn.includes(WILDCARD);
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..43780cec0263a86dafd098569646d41b9252dde9
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/camunda/index.js
@@ -0,0 +1,8 @@
+'use strict';
+
+import extension from './extension';
+
+export default {
+ __init__: ['camundaModdleExtension'],
+ camundaModdleExtension: ['type', extension],
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/flowableExtension.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/flowableExtension.js
new file mode 100644
index 0000000000000000000000000000000000000000..a891727c7402050a5baa3c9413f10637b54229df
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/flowableExtension.js
@@ -0,0 +1,101 @@
+'use strict';
+
+import { some } from 'min-dash';
+
+// const some = some
+// const some = require('min-dash').some
+
+const ALLOWED_TYPES = {
+ FailedJobRetryTimeCycle: [
+ 'bpmn:StartEvent',
+ 'bpmn:BoundaryEvent',
+ 'bpmn:IntermediateCatchEvent',
+ 'bpmn:Activity',
+ ],
+ Connector: ['bpmn:EndEvent', 'bpmn:IntermediateThrowEvent'],
+ Field: ['bpmn:EndEvent', 'bpmn:IntermediateThrowEvent'],
+};
+
+function is(element, type) {
+ return (
+ element &&
+ typeof element.$instanceOf === 'function' &&
+ element.$instanceOf(type)
+ );
+}
+
+function exists(element) {
+ return element && element.length;
+}
+
+function includesType(collection, type) {
+ return (
+ exists(collection) &&
+ some(collection, (element) => {
+ return is(element, type);
+ })
+ );
+}
+
+function anyType(element, types) {
+ return some(types, (type) => {
+ return is(element, type);
+ });
+}
+
+function isAllowed(propName, propDescriptor, newElement) {
+ const name = propDescriptor.name;
+ const types = ALLOWED_TYPES[name.replace(/flowable:/, '')];
+
+ return name === propName && anyType(newElement, types);
+}
+
+function FlowableModdleExtension(eventBus) {
+ eventBus.on(
+ 'property.clone',
+ function (context) {
+ const newElement = context.newElement;
+ const propDescriptor = context.propertyDescriptor;
+
+ this.canCloneProperty(newElement, propDescriptor);
+ },
+ this,
+ );
+}
+
+FlowableModdleExtension.$inject = ['eventBus'];
+
+FlowableModdleExtension.prototype.canCloneProperty = function (
+ newElement,
+ propDescriptor,
+) {
+ if (
+ isAllowed('flowable:FailedJobRetryTimeCycle', propDescriptor, newElement)
+ ) {
+ return (
+ includesType(newElement.eventDefinitions, 'bpmn:TimerEventDefinition') ||
+ includesType(newElement.eventDefinitions, 'bpmn:SignalEventDefinition') ||
+ is(
+ newElement.loopCharacteristics,
+ 'bpmn:MultiInstanceLoopCharacteristics',
+ )
+ );
+ }
+
+ if (isAllowed('flowable:Connector', propDescriptor, newElement)) {
+ return includesType(
+ newElement.eventDefinitions,
+ 'bpmn:MessageEventDefinition',
+ );
+ }
+
+ if (isAllowed('flowable:Field', propDescriptor, newElement)) {
+ return includesType(
+ newElement.eventDefinitions,
+ 'bpmn:MessageEventDefinition',
+ );
+ }
+};
+
+// module.exports = FlowableModdleExtension;
+export default FlowableModdleExtension;
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..86474675b0ec507279fff43fe862e4a03fbe15e1
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/extension-moddle/flowable/index.js
@@ -0,0 +1,10 @@
+/*
+ * @author igdianov
+ * address https://github.com/igdianov/activiti-bpmn-moddle
+ * */
+import flowableExtension from './flowableExtension';
+
+export default {
+ __init__: ['FlowableModdleExtension'],
+ FlowableModdleExtension: ['type', flowableExtension],
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/palette/CustomPalette.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/palette/CustomPalette.js
new file mode 100644
index 0000000000000000000000000000000000000000..0299c5acb202b8e58d8f9f7cf9b258bbd815cd31
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/palette/CustomPalette.js
@@ -0,0 +1,233 @@
+import PaletteProvider from 'bpmn-js/lib/features/palette/PaletteProvider';
+import { assign } from 'min-dash';
+
+export default function CustomPalette(
+ palette,
+ create,
+ elementFactory,
+ spaceTool,
+ lassoTool,
+ handTool,
+ globalConnect,
+ translate,
+) {
+ PaletteProvider.call(
+ this,
+ palette,
+ create,
+ elementFactory,
+ spaceTool,
+ lassoTool,
+ handTool,
+ globalConnect,
+ translate,
+ 2000,
+ );
+}
+
+const F = function () {}; // 核心,利用空对象作为中介;
+F.prototype = PaletteProvider.prototype; // 核心,将父类的原型赋值给空对象F;
+
+// 利用中介函数重写原型链方法
+F.prototype.getPaletteEntries = function () {
+ const actions = {};
+ const create = this._create;
+ const elementFactory = this._elementFactory;
+ const spaceTool = this._spaceTool;
+ const lassoTool = this._lassoTool;
+ const handTool = this._handTool;
+ const globalConnect = this._globalConnect;
+ const translate = this._translate;
+
+ function createAction(type, group, className, title, options) {
+ function createListener(event) {
+ const shape = elementFactory.createShape(assign({ type }, options));
+
+ if (options) {
+ shape.businessObject.di.isExpanded = options.isExpanded;
+ }
+
+ create.start(event, shape);
+ }
+
+ const shortType = type.replace(/^bpmn:/, '');
+
+ return {
+ group,
+ className,
+ title: title || translate('Create {type}', { type: shortType }),
+ action: {
+ dragstart: createListener,
+ click: createListener,
+ },
+ };
+ }
+
+ function createSubprocess(event) {
+ const subProcess = elementFactory.createShape({
+ type: 'bpmn:SubProcess',
+ x: 0,
+ y: 0,
+ isExpanded: true,
+ });
+
+ const startEvent = elementFactory.createShape({
+ type: 'bpmn:StartEvent',
+ x: 40,
+ y: 82,
+ parent: subProcess,
+ });
+
+ create.start(event, [subProcess, startEvent], {
+ hints: {
+ autoSelect: [startEvent],
+ },
+ });
+ }
+
+ function createParticipant(event) {
+ create.start(event, elementFactory.createParticipantShape());
+ }
+
+ assign(actions, {
+ 'hand-tool': {
+ group: 'tools',
+ className: 'bpmn-icon-hand-tool',
+ title: '激活抓手工具',
+ // title: translate("Activate the hand tool"),
+ action: {
+ click(event) {
+ handTool.activateHand(event);
+ },
+ },
+ },
+ 'lasso-tool': {
+ group: 'tools',
+ className: 'bpmn-icon-lasso-tool',
+ title: translate('Activate the lasso tool'),
+ action: {
+ click(event) {
+ lassoTool.activateSelection(event);
+ },
+ },
+ },
+ 'space-tool': {
+ group: 'tools',
+ className: 'bpmn-icon-space-tool',
+ title: translate('Activate the create/remove space tool'),
+ action: {
+ click(event) {
+ spaceTool.activateSelection(event);
+ },
+ },
+ },
+ 'global-connect-tool': {
+ group: 'tools',
+ className: 'bpmn-icon-connection-multi',
+ title: translate('Activate the global connect tool'),
+ action: {
+ click(event) {
+ globalConnect.toggle(event);
+ },
+ },
+ },
+ 'tool-separator': {
+ group: 'tools',
+ separator: true,
+ },
+ 'create.start-event': createAction(
+ 'bpmn:StartEvent',
+ 'event',
+ 'bpmn-icon-start-event-none',
+ translate('Create StartEvent'),
+ ),
+ 'create.intermediate-event': createAction(
+ 'bpmn:IntermediateThrowEvent',
+ 'event',
+ 'bpmn-icon-intermediate-event-none',
+ translate('Create Intermediate/Boundary Event'),
+ ),
+ 'create.end-event': createAction(
+ 'bpmn:EndEvent',
+ 'event',
+ 'bpmn-icon-end-event-none',
+ translate('Create EndEvent'),
+ ),
+ 'create.exclusive-gateway': createAction(
+ 'bpmn:ExclusiveGateway',
+ 'gateway',
+ 'bpmn-icon-gateway-none',
+ translate('Create Gateway'),
+ ),
+ 'create.user-task': createAction(
+ 'bpmn:UserTask',
+ 'activity',
+ 'bpmn-icon-user-task',
+ translate('Create User Task'),
+ ),
+ 'create.call-activity': createAction(
+ 'bpmn:CallActivity',
+ 'activity',
+ 'bpmn-icon-call-activity',
+ translate('Create Call Activity'),
+ ),
+ 'create.service-task': createAction(
+ 'bpmn:ServiceTask',
+ 'activity',
+ 'bpmn-icon-service',
+ translate('Create Service Task'),
+ ),
+ 'create.data-object': createAction(
+ 'bpmn:DataObjectReference',
+ 'data-object',
+ 'bpmn-icon-data-object',
+ translate('Create DataObjectReference'),
+ ),
+ 'create.data-store': createAction(
+ 'bpmn:DataStoreReference',
+ 'data-store',
+ 'bpmn-icon-data-store',
+ translate('Create DataStoreReference'),
+ ),
+ 'create.subprocess-expanded': {
+ group: 'activity',
+ className: 'bpmn-icon-subprocess-expanded',
+ title: translate('Create expanded SubProcess'),
+ action: {
+ dragstart: createSubprocess,
+ click: createSubprocess,
+ },
+ },
+ 'create.participant-expanded': {
+ group: 'collaboration',
+ className: 'bpmn-icon-participant',
+ title: translate('Create Pool/Participant'),
+ action: {
+ dragstart: createParticipant,
+ click: createParticipant,
+ },
+ },
+ 'create.group': createAction(
+ 'bpmn:Group',
+ 'artifact',
+ 'bpmn-icon-group',
+ translate('Create Group'),
+ ),
+ });
+
+ return actions;
+};
+
+CustomPalette.$inject = [
+ 'palette',
+ 'create',
+ 'elementFactory',
+ 'spaceTool',
+ 'lassoTool',
+ 'handTool',
+ 'globalConnect',
+ 'translate',
+];
+
+CustomPalette.prototype = new F(); // 核心,将 F的实例赋值给子类;
+CustomPalette.prototype.constructor = CustomPalette; // 修复子类CustomPalette的构造器指向,防止原型链的混乱;
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/palette/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/palette/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..afe1367c88a213b1465efc047de04910fde9f109
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/palette/index.js
@@ -0,0 +1,22 @@
+// import PaletteModule from "diagram-js/lib/features/palette";
+// import CreateModule from "diagram-js/lib/features/create";
+// import SpaceToolModule from "diagram-js/lib/features/space-tool";
+// import LassoToolModule from "diagram-js/lib/features/lasso-tool";
+// import HandToolModule from "diagram-js/lib/features/hand-tool";
+// import GlobalConnectModule from "diagram-js/lib/features/global-connect";
+// import translate from "diagram-js/lib/i18n/translate";
+//
+// import PaletteProvider from "./paletteProvider";
+//
+// export default {
+// __depends__: [PaletteModule, CreateModule, SpaceToolModule, LassoToolModule, HandToolModule, GlobalConnectModule, translate],
+// __init__: ["paletteProvider"],
+// paletteProvider: ["type", PaletteProvider]
+// };
+
+import CustomPalette from './CustomPalette';
+
+export default {
+ __init__: ['paletteProvider'],
+ paletteProvider: ['type', CustomPalette],
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/palette/paletteProvider.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/palette/paletteProvider.js
new file mode 100644
index 0000000000000000000000000000000000000000..8a022542b2b2eeb88827234d731bfa382dd5720e
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/palette/paletteProvider.js
@@ -0,0 +1,219 @@
+import { assign } from 'min-dash';
+
+/**
+ * A palette provider for BPMN 2.0 elements.
+ */
+export default function PaletteProvider(
+ palette,
+ create,
+ elementFactory,
+ spaceTool,
+ lassoTool,
+ handTool,
+ globalConnect,
+ translate,
+) {
+ this._palette = palette;
+ this._create = create;
+ this._elementFactory = elementFactory;
+ this._spaceTool = spaceTool;
+ this._lassoTool = lassoTool;
+ this._handTool = handTool;
+ this._globalConnect = globalConnect;
+ this._translate = translate;
+
+ palette.registerProvider(this);
+}
+
+PaletteProvider.$inject = [
+ 'palette',
+ 'create',
+ 'elementFactory',
+ 'spaceTool',
+ 'lassoTool',
+ 'handTool',
+ 'globalConnect',
+ 'translate',
+];
+
+PaletteProvider.prototype.getPaletteEntries = function () {
+ const actions = {};
+ const create = this._create;
+ const elementFactory = this._elementFactory;
+ const spaceTool = this._spaceTool;
+ const lassoTool = this._lassoTool;
+ const handTool = this._handTool;
+ const globalConnect = this._globalConnect;
+ const translate = this._translate;
+
+ function createAction(type, group, className, title, options) {
+ function createListener(event) {
+ const shape = elementFactory.createShape(assign({ type }, options));
+
+ if (options) {
+ shape.businessObject.di.isExpanded = options.isExpanded;
+ }
+
+ create.start(event, shape);
+ }
+
+ const shortType = type.replace(/^bpmn:/, '');
+
+ return {
+ group,
+ className,
+ title: title || translate('Create {type}', { type: shortType }),
+ action: {
+ dragstart: createListener,
+ click: createListener,
+ },
+ };
+ }
+
+ function createSubprocess(event) {
+ const subProcess = elementFactory.createShape({
+ type: 'bpmn:SubProcess',
+ x: 0,
+ y: 0,
+ isExpanded: true,
+ });
+
+ const startEvent = elementFactory.createShape({
+ type: 'bpmn:StartEvent',
+ x: 40,
+ y: 82,
+ parent: subProcess,
+ });
+
+ create.start(event, [subProcess, startEvent], {
+ hints: {
+ autoSelect: [startEvent],
+ },
+ });
+ }
+
+ function createParticipant(event) {
+ create.start(event, elementFactory.createParticipantShape());
+ }
+
+ assign(actions, {
+ 'hand-tool': {
+ group: 'tools',
+ className: 'bpmn-icon-hand-tool',
+ title: translate('Activate the hand tool'),
+ action: {
+ click(event) {
+ handTool.activateHand(event);
+ },
+ },
+ },
+ 'lasso-tool': {
+ group: 'tools',
+ className: 'bpmn-icon-lasso-tool',
+ title: translate('Activate the lasso tool'),
+ action: {
+ click(event) {
+ lassoTool.activateSelection(event);
+ },
+ },
+ },
+ 'space-tool': {
+ group: 'tools',
+ className: 'bpmn-icon-space-tool',
+ title: translate('Activate the create/remove space tool'),
+ action: {
+ click(event) {
+ spaceTool.activateSelection(event);
+ },
+ },
+ },
+ 'global-connect-tool': {
+ group: 'tools',
+ className: 'bpmn-icon-connection-multi',
+ title: translate('Activate the global connect tool'),
+ action: {
+ click(event) {
+ globalConnect.toggle(event);
+ },
+ },
+ },
+ 'tool-separator': {
+ group: 'tools',
+ separator: true,
+ },
+ 'create.start-event': createAction(
+ 'bpmn:StartEvent',
+ 'event',
+ 'bpmn-icon-start-event-none',
+ translate('Create StartEvent'),
+ ),
+ 'create.intermediate-event': createAction(
+ 'bpmn:IntermediateThrowEvent',
+ 'event',
+ 'bpmn-icon-intermediate-event-none',
+ translate('Create Intermediate/Boundary Event'),
+ ),
+ 'create.end-event': createAction(
+ 'bpmn:EndEvent',
+ 'event',
+ 'bpmn-icon-end-event-none',
+ translate('Create EndEvent'),
+ ),
+ 'create.exclusive-gateway': createAction(
+ 'bpmn:ExclusiveGateway',
+ 'gateway',
+ 'bpmn-icon-gateway-none',
+ translate('Create Gateway'),
+ ),
+ 'create.user-task': createAction(
+ 'bpmn:UserTask',
+ 'activity',
+ 'bpmn-icon-user-task',
+ translate('Create User Task'),
+ ),
+ 'create.service-task': createAction(
+ 'bpmn:ServiceTask',
+ 'activity',
+ 'bpmn-icon-service',
+ translate('Create Service Task'),
+ ),
+ 'create.data-object': createAction(
+ 'bpmn:DataObjectReference',
+ 'data-object',
+ 'bpmn-icon-data-object',
+ translate('Create DataObjectReference'),
+ ),
+ 'create.data-store': createAction(
+ 'bpmn:DataStoreReference',
+ 'data-store',
+ 'bpmn-icon-data-store',
+ translate('Create DataStoreReference'),
+ ),
+ 'create.subprocess-expanded': {
+ group: 'activity',
+ className: 'bpmn-icon-subprocess-expanded',
+ title: translate('Create expanded SubProcess'),
+ action: {
+ dragstart: createSubprocess,
+ click: createSubprocess,
+ },
+ },
+ 'create.participant-expanded': {
+ group: 'collaboration',
+ className: 'bpmn-icon-participant',
+ title: translate('Create Pool/Participant'),
+ action: {
+ dragstart: createParticipant,
+ click: createParticipant,
+ },
+ },
+ 'create.group': createAction(
+ 'bpmn:Group',
+ 'artifact',
+ 'bpmn-icon-group',
+ translate('Create Group'),
+ ),
+ });
+
+ return actions;
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/translate/customTranslate.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/translate/customTranslate.js
new file mode 100644
index 0000000000000000000000000000000000000000..cc6ad6e9a6c7e37f546697f800d22dfd8e191b8e
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/translate/customTranslate.js
@@ -0,0 +1,44 @@
+// import translations from "./zh";
+//
+// export default function customTranslate(template, replacements) {
+// replacements = replacements || {};
+//
+// // Translate
+// template = translations[template] || template;
+//
+// // Replace
+// return template.replace(/{([^}]+)}/g, function(_, key) {
+// let str = replacements[key];
+// if (
+// translations[replacements[key]] !== null &&
+// translations[replacements[key]] !== "undefined"
+// ) {
+// // eslint-disable-next-line no-mixed-spaces-and-tabs
+// str = translations[replacements[key]];
+// // eslint-disable-next-line no-mixed-spaces-and-tabs
+// }
+// return str || "{" + key + "}";
+// });
+// }
+
+export default function customTranslate(translations) {
+ return function (template, replacements) {
+ replacements = replacements || {};
+ // 将模板和翻译字典的键统一转换为小写进行匹配
+ const lowerTemplate = template.toLowerCase();
+ const translation = Object.keys(translations).find(
+ (key) => key.toLowerCase() === lowerTemplate,
+ );
+
+ // 如果找到匹配的翻译,使用翻译后的模板
+ if (translation) {
+ template = translations[translation];
+ }
+
+ // 替换模板中的占位符
+ return template.replaceAll(/\{([^}]+)\}/g, (_, key) => {
+ // 如果替换值存在,返回替换值;否则返回原始占位符
+ return replacements[key] === undefined ? `{${key}}` : replacements[key];
+ });
+ };
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/translate/zh.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/translate/zh.js
new file mode 100644
index 0000000000000000000000000000000000000000..f592bb85b80e64fc668e081d46ae8f43d5769c65
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/designer/plugins/translate/zh.js
@@ -0,0 +1,246 @@
+/**
+ * This is a sample file that should be replaced with the actual translation.
+ *
+ * Checkout https://github.com/bpmn-io/bpmn-js-i18n for a list of available
+ * translations and labels to translate.
+ */
+export default {
+ // 添加部分
+ 'Append EndEvent': '追加结束事件',
+ 'Append Gateway': '追加网关',
+ 'Append Task': '追加任务',
+ 'Append Intermediate/Boundary Event': '追加中间抛出事件/边界事件',
+
+ 'Activate the global connect tool': '激活全局连接工具',
+ 'Append {type}': '添加 {type}',
+ 'Add Lane above': '在上面添加道',
+ 'Divide into two Lanes': '分割成两个道',
+ 'Divide into three Lanes': '分割成三个道',
+ 'Add Lane below': '在下面添加道',
+ 'Append compensation activity': '追加补偿活动',
+ 'Change type': '修改类型',
+ 'Connect using Association': '使用关联连接',
+ 'Connect using Sequence/MessageFlow or Association':
+ '使用顺序/消息流或者关联连接',
+ 'Connect using DataInputAssociation': '使用数据输入关联连接',
+ Remove: '移除',
+ 'Activate the hand tool': '激活抓手工具',
+ 'Activate the lasso tool': '激活套索工具',
+ 'Activate the create/remove space tool': '激活创建/删除空间工具',
+ 'Create expanded SubProcess': '创建扩展子过程',
+ 'Create IntermediateThrowEvent/BoundaryEvent': '创建中间抛出事件/边界事件',
+ 'Create Pool/Participant': '创建池/参与者',
+ 'Parallel Multi Instance': '并行多重事件',
+ 'Sequential Multi Instance': '时序多重事件',
+ DataObjectReference: '数据对象参考',
+ DataStoreReference: '数据存储参考',
+ Loop: '循环',
+ 'Ad-hoc': '即席',
+ 'Create {type}': '创建 {type}',
+ Task: '任务',
+ 'Send Task': '发送任务',
+ 'Receive Task': '接收任务',
+ 'User Task': '用户任务',
+ 'Manual Task': '手工任务',
+ 'Business Rule Task': '业务规则任务',
+ 'Service Task': '服务任务',
+ 'Script Task': '脚本任务',
+ 'Call Activity': '调用活动',
+ 'Sub-Process (collapsed)': '子流程(折叠的)',
+ 'Sub-Process (expanded)': '子流程(展开的)',
+ 'Start Event': '开始事件',
+ StartEvent: '开始事件',
+ 'Intermediate Throw Event': '中间事件',
+ 'End Event': '结束事件',
+ EndEvent: '结束事件',
+ 'Create StartEvent': '创建开始事件',
+ 'Create EndEvent': '创建结束事件',
+ 'Create Task': '创建任务',
+ 'Create User Task': '创建用户任务',
+ 'Create Call Activity': '创建调用活动',
+ 'Create Service Task': '创建服务任务',
+ 'Create Gateway': '创建网关',
+ 'Create DataObjectReference': '创建数据对象',
+ 'Create DataStoreReference': '创建数据存储',
+ 'Create Group': '创建分组',
+ 'Create Intermediate/Boundary Event': '创建中间/边界事件',
+ 'Message Start Event': '消息开始事件',
+ 'Timer Start Event': '定时开始事件',
+ 'Conditional Start Event': '条件开始事件',
+ 'Signal Start Event': '信号开始事件',
+ 'Error Start Event': '错误开始事件',
+ 'Escalation Start Event': '升级开始事件',
+ 'Compensation Start Event': '补偿开始事件',
+ 'Message Start Event (non-interrupting)': '消息开始事件(非中断)',
+ 'Timer Start Event (non-interrupting)': '定时开始事件(非中断)',
+ 'Conditional Start Event (non-interrupting)': '条件开始事件(非中断)',
+ 'Signal Start Event (non-interrupting)': '信号开始事件(非中断)',
+ 'Escalation Start Event (non-interrupting)': '升级开始事件(非中断)',
+ 'Message Intermediate Catch Event': '消息中间捕获事件',
+ 'Message Intermediate Throw Event': '消息中间抛出事件',
+ 'Timer Intermediate Catch Event': '定时中间捕获事件',
+ 'Escalation Intermediate Throw Event': '升级中间抛出事件',
+ 'Conditional Intermediate Catch Event': '条件中间捕获事件',
+ 'Link Intermediate Catch Event': '链接中间捕获事件',
+ 'Link Intermediate Throw Event': '链接中间抛出事件',
+ 'Compensation Intermediate Throw Event': '补偿中间抛出事件',
+ 'Signal Intermediate Catch Event': '信号中间捕获事件',
+ 'Signal Intermediate Throw Event': '信号中间抛出事件',
+ 'Message End Event': '消息结束事件',
+ 'Escalation End Event': '定时结束事件',
+ 'Error End Event': '错误结束事件',
+ 'Cancel End Event': '取消结束事件',
+ 'Compensation End Event': '补偿结束事件',
+ 'Signal End Event': '信号结束事件',
+ 'Terminate End Event': '终止结束事件',
+ 'Message Boundary Event': '消息边界事件',
+ 'Message Boundary Event (non-interrupting)': '消息边界事件(非中断)',
+ 'Timer Boundary Event': '定时边界事件',
+ 'Timer Boundary Event (non-interrupting)': '定时边界事件(非中断)',
+ 'Escalation Boundary Event': '升级边界事件',
+ 'Escalation Boundary Event (non-interrupting)': '升级边界事件(非中断)',
+ 'Conditional Boundary Event': '条件边界事件',
+ 'Conditional Boundary Event (non-interrupting)': '条件边界事件(非中断)',
+ 'Error Boundary Event': '错误边界事件',
+ 'Cancel Boundary Event': '取消边界事件',
+ 'Signal Boundary Event': '信号边界事件',
+ 'Signal Boundary Event (non-interrupting)': '信号边界事件(非中断)',
+ 'Compensation Boundary Event': '补偿边界事件',
+ 'Exclusive Gateway': '互斥网关',
+ 'Parallel Gateway': '并行网关',
+ 'Inclusive Gateway': '相容网关',
+ 'Complex Gateway': '复杂网关',
+ 'Event based Gateway': '事件网关',
+ Transaction: '转运',
+ 'Sub Process': '子流程',
+ 'Event Sub Process': '事件子流程',
+ 'Collapsed Pool': '折叠池',
+ 'Expanded Pool': '展开池',
+
+ // Errors
+ 'no parent for {element} in {parent}': '在{parent}里,{element}没有父类',
+ 'no shape type specified': '没有指定的形状类型',
+ 'flow elements must be children of pools/participants':
+ '流元素必须是池/参与者的子类',
+ 'out of bounds release': 'out of bounds release',
+ 'more than {count} child lanes': '子道大于{count} ',
+ 'element required': '元素不能为空',
+ 'diagram not part of bpmn:Definitions': '流程图不符合bpmn规范',
+ 'no diagram to display': '没有可展示的流程图',
+ 'no process or collaboration to display': '没有可展示的流程/协作',
+ 'element {element} referenced by {referenced}#{property} not yet drawn':
+ '由{referenced}#{property}引用的{element}元素仍未绘制',
+ 'already rendered {element}': '{element} 已被渲染',
+ 'failed to import {element}': '导入{element}失败',
+ // 属性面板的参数
+ Id: '编号',
+ Name: '名称',
+ General: '常规',
+ Details: '详情',
+ 'Message Name': '消息名称',
+ Message: '消息',
+ Initiator: '创建者',
+ 'Asynchronous Continuations': '持续异步',
+ 'Asynchronous Before': '异步前',
+ 'Asynchronous After': '异步后',
+ 'Job Configuration': '工作配置',
+ Exclusive: '排除',
+ 'Job Priority': '工作优先级',
+ 'Retry Time Cycle': '重试时间周期',
+ Documentation: '文档',
+ 'Element Documentation': '元素文档',
+ 'History Configuration': '历史配置',
+ 'History Time To Live': '历史的生存时间',
+ Forms: '表单',
+ 'Form Key': '表单key',
+ 'Form Fields': '表单字段',
+ 'Business Key': '业务key',
+ 'Form Field': '表单字段',
+ ID: '编号',
+ Type: '类型',
+ Label: '名称',
+ 'Default Value': '默认值',
+ 'Default Flow': '默认流转路径',
+ 'Conditional Flow': '条件流转路径',
+ 'Sequence Flow': '普通流转路径',
+ Validation: '校验',
+ 'Add Constraint': '添加约束',
+ Config: '配置',
+ Properties: '属性',
+ 'Add Property': '添加属性',
+ Value: '值',
+ Listeners: '监听器',
+ 'Execution Listener': '执行监听',
+ 'Event Type': '事件类型',
+ 'Listener Type': '监听器类型',
+ 'Java Class': 'Java类',
+ Expression: '表达式',
+ 'Must provide a value': '必须提供一个值',
+ 'Delegate Expression': '代理表达式',
+ Script: '脚本',
+ 'Script Format': '脚本格式',
+ 'Script Type': '脚本类型',
+ 'Inline Script': '内联脚本',
+ 'External Script': '外部脚本',
+ Resource: '资源',
+ 'Field Injection': '字段注入',
+ Extensions: '扩展',
+ 'Input/Output': '输入/输出',
+ 'Input Parameters': '输入参数',
+ 'Output Parameters': '输出参数',
+ Parameters: '参数',
+ 'Output Parameter': '输出参数',
+ 'Timer Definition Type': '定时器定义类型',
+ 'Timer Definition': '定时器定义',
+ Date: '日期',
+ Duration: '持续',
+ Cycle: '循环',
+ Signal: '信号',
+ 'Signal Name': '信号名称',
+ Escalation: '升级',
+ Error: '错误',
+ 'Link Name': '链接名称',
+ Condition: '条件名称',
+ 'Variable Name': '变量名称',
+ 'Variable Event': '变量事件',
+ 'Specify more than one variable change event as a comma separated list.':
+ '多个变量事件以逗号隔开',
+ 'Wait for Completion': '等待完成',
+ 'Activity Ref': '活动参考',
+ 'Version Tag': '版本标签',
+ Executable: '可执行文件',
+ 'External Task Configuration': '扩展任务配置',
+ 'Task Priority': '任务优先级',
+ External: '外部',
+ Connector: '连接器',
+ 'Must configure Connector': '必须配置连接器',
+ 'Connector Id': '连接器编号',
+ Implementation: '实现方式',
+ 'Field Injections': '字段注入',
+ Fields: '字段',
+ 'Result Variable': '结果变量',
+ Topic: '主题',
+ 'Configure Connector': '配置连接器',
+ 'Input Parameter': '输入参数',
+ Assignee: '代理人',
+ 'Candidate Users': '候选用户',
+ 'Candidate Groups': '候选组',
+ 'Due Date': '到期时间',
+ 'Follow Up Date': '跟踪日期',
+ Priority: '优先级',
+ 'The follow up date as an EL expression (e.g. ${someDate} or an ISO date (e.g. 2015-06-26T09:54:00)':
+ '跟踪日期必须符合EL表达式,如: ${someDate} ,或者一个ISO标准日期,如:2015-06-26T09:54:00',
+ 'The due date as an EL expression (e.g. ${someDate} or an ISO date (e.g. 2015-06-26T09:54:00)':
+ '跟踪日期必须符合EL表达式,如: ${someDate} ,或者一个ISO标准日期,如:2015-06-26T09:54:00',
+ Variables: '变量',
+ 'Candidate Starter Configuration': '候选人起动器配置',
+ 'Candidate Starter Groups': '候选人起动器组',
+ 'This maps to the process definition key.': '这映射到流程定义键。',
+ 'Candidate Starter Users': '候选人起动器的用户',
+ 'Specify more than one user as a comma separated list.':
+ '指定多个用户作为逗号分隔的列表。',
+ 'Tasklist Configuration': 'Tasklist配置',
+ Startable: '启动',
+ 'Specify more than one group as a comma separated list.':
+ '指定多个组作为逗号分隔的列表。',
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/index.ts b/apps/web-antd/src/components/bpmnProcessDesigner/package/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f27319abb3fc40735e6d8883e4903856751c5403
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/index.ts
@@ -0,0 +1,9 @@
+import './theme/index.scss';
+import 'bpmn-js/dist/assets/diagram-js.css';
+import 'bpmn-js/dist/assets/bpmn-font/css/bpmn.css';
+import 'bpmn-js/dist/assets/bpmn-font/css/bpmn-codes.css';
+import 'bpmn-js/dist/assets/bpmn-font/css/bpmn-embedded.css';
+
+export { default as MyProcessDesigner } from './designer';
+export { default as MyProcessViewer } from './designer/index2';
+export { default as MyProcessPenal } from './penal';
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/palette/ProcessPalette.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/palette/ProcessPalette.vue
new file mode 100644
index 0000000000000000000000000000000000000000..ab494d47a094a3b4672af3c6183b6ad9832e4125
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/palette/ProcessPalette.vue
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/PropertiesPanel.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/PropertiesPanel.vue
new file mode 100644
index 0000000000000000000000000000000000000000..832e6e58852ec940906f007d574b096b44e89edf
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/PropertiesPanel.vue
@@ -0,0 +1,401 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/base/ElementBaseInfo.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/base/ElementBaseInfo.vue
new file mode 100644
index 0000000000000000000000000000000000000000..ad9ece8ffbe9d5f5e94d6b41a18298711376a645
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/base/ElementBaseInfo.vue
@@ -0,0 +1,221 @@
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/ElementCustomConfig.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/ElementCustomConfig.vue
new file mode 100644
index 0000000000000000000000000000000000000000..e8b307cea4f82fe22b9e7ae54540772a8dcc8dd4
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/ElementCustomConfig.vue
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/components/BoundaryEventTimer.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/components/BoundaryEventTimer.vue
new file mode 100644
index 0000000000000000000000000000000000000000..e75ebdd396b5db5c9e51c0b9ed10bf26d61a4ca5
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/components/BoundaryEventTimer.vue
@@ -0,0 +1,307 @@
+
+
+
+
+
审批人超时未处理时
+
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+ 当超过
+
+ {
+ updateTimeModdle();
+ updateElementExtensions();
+ }
+ "
+ />
+
+
+ 未处理
+
+
+ {
+ updateTimeModdle();
+ updateElementExtensions();
+ }
+ "
+ />
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/components/UserTaskCustomConfig.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/components/UserTaskCustomConfig.vue
new file mode 100644
index 0000000000000000000000000000000000000000..61c81837912211500cd2ab551fab67bf0ff890c0
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/components/UserTaskCustomConfig.vue
@@ -0,0 +1,783 @@
+
+
+
+
+
+
审批类型
+
+
+
+ {{ item.label }}
+
+
+
+
+
审批人拒绝时
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
+
+
+
+
审批人为空时
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
+
+
+
+
审批人与提交人为同一人时
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
操作按钮
+
+
+
字段权限
+
+
+
字段名称
+
+ 只读
+
+
+ 可编辑
+
+ 隐藏
+
+
+
+
+
{{ item.title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
是否需要签名
+
+
+
+
+
审批意见
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/data.ts b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/data.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cd88300036d3ed50bb1118b0636f5a49650adf17
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/custom-config/data.ts
@@ -0,0 +1,13 @@
+import BoundaryEventTimer from './components/BoundaryEventTimer.vue';
+import UserTaskCustomConfig from './components/UserTaskCustomConfig.vue';
+
+export const CustomConfigMap = {
+ UserTask: {
+ name: '用户任务',
+ component: UserTaskCustomConfig,
+ },
+ BoundaryEventTimerEventDefinition: {
+ name: '定时边界事件(非中断)',
+ component: BoundaryEventTimer,
+ },
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/flow-condition/FlowCondition.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/flow-condition/FlowCondition.vue
new file mode 100644
index 0000000000000000000000000000000000000000..bd1ef7aaf08be2dbdd9159eb149a48a20f7692ac
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/flow-condition/FlowCondition.vue
@@ -0,0 +1,238 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/form/ElementForm.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/form/ElementForm.vue
new file mode 100644
index 0000000000000000000000000000000000000000..a4466f0300c0e777d94538fd3479e59770deb719
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/form/ElementForm.vue
@@ -0,0 +1,536 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..1688cf7d13d0b7744a7dde0ad5392f45692ee50f
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/index.js
@@ -0,0 +1,7 @@
+import MyPropertiesPanel from './PropertiesPanel.vue';
+
+MyPropertiesPanel.install = function (Vue) {
+ Vue.component(MyPropertiesPanel.name, MyPropertiesPanel);
+};
+
+export default MyPropertiesPanel;
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/ElementListeners.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/ElementListeners.vue
new file mode 100644
index 0000000000000000000000000000000000000000..3b602930ed8737f3f2d230149afa852d4cb0a0b5
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/ElementListeners.vue
@@ -0,0 +1,621 @@
+
+
+
+
+
+
+ {{ index + 1 }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 注入字段:
+
+
+
+
+
+ {{ index + 1 }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/ProcessListenerDialog.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/ProcessListenerDialog.vue
new file mode 100644
index 0000000000000000000000000000000000000000..0f620aad606c0ada05ee08a09f0b6e6186904ab3
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/ProcessListenerDialog.vue
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/UserTaskListeners.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/UserTaskListeners.vue
new file mode 100644
index 0000000000000000000000000000000000000000..bbea2d6232a044f920ab63e8b422837dd47ccbe6
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/UserTaskListeners.vue
@@ -0,0 +1,598 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 注入字段:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/template.js b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/template.js
new file mode 100644
index 0000000000000000000000000000000000000000..68ddd2326c822a84f7e2d04642e6d8ff056469da
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/template.js
@@ -0,0 +1,178 @@
+export const template = (isTaskListener) => {
+ return `
+
+
+
+
+
+
+
+ 编辑
+
+ 移除
+
+
+
+
+ 添加监听器
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${
+ isTaskListener
+ ? "" +
+ "" +
+ "" +
+ "" +
+ "" +
+ "" +
+ '' +
+ '' +
+ "" +
+ "" +
+ ''
+ : ''
+ }
+
+
+
+ 注入字段:
+ 添加字段
+
+
+
+
+
+
+
+
+ 编辑
+
+ 移除
+
+
+
+
+
+ 取 消
+ 保 存
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取 消
+ 确 定
+
+
+
+ `;
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/utilSelf.ts b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/utilSelf.ts
new file mode 100644
index 0000000000000000000000000000000000000000..8e256672698a18628e6823a251fb2a3ed42a3eca
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/listeners/utilSelf.ts
@@ -0,0 +1,96 @@
+// 初始化表单数据
+export function initListenerForm(listener: any) {
+ let self = {
+ ...listener,
+ };
+ if (listener.script) {
+ self = {
+ ...listener,
+ ...listener.script,
+ scriptType: listener.script.resource ? 'externalScript' : 'inlineScript',
+ };
+ }
+ if (
+ listener.event === 'timeout' &&
+ listener.eventDefinitions &&
+ listener.eventDefinitions.length > 0
+ ) {
+ let k = '';
+ for (const key in listener.eventDefinitions[0]) {
+ // console.log(listener.eventDefinitions, key);
+ if (key.includes('time')) {
+ k = key;
+ self.eventDefinitionType = key.replace('time', '').toLowerCase();
+ }
+ }
+ // console.log(k);
+ self.eventTimeDefinitions = listener.eventDefinitions[0][k].body;
+ }
+ return self;
+}
+
+export function initListenerType(listener: any) {
+ let listenerType;
+ if (listener.class) listenerType = 'classListener';
+ if (listener.expression) listenerType = 'expressionListener';
+ if (listener.delegateExpression) listenerType = 'delegateExpressionListener';
+ if (listener.script) listenerType = 'scriptListener';
+ return {
+ ...structuredClone(listener),
+ ...listener.script,
+ listenerType,
+ };
+}
+
+/** 将 ProcessListenerDO 转换成 initListenerForm 想同的 Form 对象 */
+export function initListenerForm2(processListener: any) {
+ switch (processListener.valueType) {
+ case 'class': {
+ return {
+ listenerType: 'classListener',
+ class: processListener.value,
+ event: processListener.event,
+ fields: [],
+ };
+ }
+ case 'delegateExpression': {
+ return {
+ listenerType: 'delegateExpressionListener',
+ delegateExpression: processListener.value,
+ event: processListener.event,
+ fields: [],
+ };
+ }
+ case 'expression': {
+ return {
+ listenerType: 'expressionListener',
+ expression: processListener.value,
+ event: processListener.event,
+ fields: [],
+ };
+ }
+ // No default
+ }
+ throw new Error('未知的监听器类型');
+}
+
+export const listenerType = {
+ classListener: 'Java 类',
+ expressionListener: '表达式',
+ delegateExpressionListener: '代理表达式',
+ scriptListener: '脚本',
+};
+
+export const eventType = {
+ create: '创建',
+ assignment: '指派',
+ complete: '完成',
+ delete: '删除',
+ update: '更新',
+ timeout: '超时',
+};
+
+export const fieldType = {
+ string: '字符串',
+ expression: '表达式',
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/multi-instance/ElementMultiInstance.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/multi-instance/ElementMultiInstance.vue
new file mode 100644
index 0000000000000000000000000000000000000000..e33d1086a00701028287865740a18a79b1fc9f45
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/multi-instance/ElementMultiInstance.vue
@@ -0,0 +1,526 @@
+
+
+
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
+
+
除了UserTask以外节点的多实例待实现
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/other/ElementOtherConfig.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/other/ElementOtherConfig.vue
new file mode 100644
index 0000000000000000000000000000000000000000..bf8250eda36926d41ad285aaa7dba45e48cd28a3
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/other/ElementOtherConfig.vue
@@ -0,0 +1,74 @@
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/properties/ElementProperties.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/properties/ElementProperties.vue
new file mode 100644
index 0000000000000000000000000000000000000000..aa7cc5724697790964e06690ff8188af0a0d15fd
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/properties/ElementProperties.vue
@@ -0,0 +1,237 @@
+
+
+
+
+
+
+
+ {{ index + 1 }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/signal-message/SignalAndMessage.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/signal-message/SignalAndMessage.vue
new file mode 100644
index 0000000000000000000000000000000000000000..df06d928ae0a04a49dd2a8caf62ca2d1c88b44e2
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/signal-message/SignalAndMessage.vue
@@ -0,0 +1,178 @@
+
+
+
+
+
+
+ 消息列表
+
+
+
+
+
+
+ {{ index + 1 }}
+
+
+
+
+
+
+
+
+ 信号列表
+
+
+
+
+
+
+
+ {{ index + 1 }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/ElementTask.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/ElementTask.vue
new file mode 100644
index 0000000000000000000000000000000000000000..d3294b5ac980c8de8dd2dcff40c5a6805c5bc1f6
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/ElementTask.vue
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/data.ts b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/data.ts
new file mode 100644
index 0000000000000000000000000000000000000000..d453b382c11e3fbed50ed1effe17b100da3c0cb3
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/data.ts
@@ -0,0 +1,40 @@
+import CallActivity from './task-components/CallActivity.vue';
+import ReceiveTask from './task-components/ReceiveTask.vue';
+import ScriptTask from './task-components/ScriptTask.vue';
+import ServiceTask from './task-components/ServiceTask.vue';
+import UserTask from './task-components/UserTask.vue';
+
+export const installedComponent = {
+ UserTask: {
+ name: '用户任务',
+ component: UserTask,
+ },
+ ServiceTask: {
+ name: '服务任务',
+ component: ServiceTask,
+ },
+ ScriptTask: {
+ name: '脚本任务',
+ component: ScriptTask,
+ },
+ ReceiveTask: {
+ name: '接收任务',
+ component: ReceiveTask,
+ },
+ CallActivity: {
+ name: '调用活动',
+ component: CallActivity,
+ },
+};
+
+export const getTaskCollapseItemName = (
+ elementType: keyof typeof installedComponent,
+) => {
+ return installedComponent[elementType].name;
+};
+
+export const isTaskCollapseItemShow = (
+ elementType: keyof typeof installedComponent,
+) => {
+ return installedComponent[elementType];
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/CallActivity.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/CallActivity.vue
new file mode 100644
index 0000000000000000000000000000000000000000..8cdb8ec4255e051620648e143d4748367f6a2921
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/CallActivity.vue
@@ -0,0 +1,361 @@
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ProcessExpressionDialog.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ProcessExpressionDialog.vue
new file mode 100644
index 0000000000000000000000000000000000000000..3f33afaa60d5a019b5da8c47138888cb2dd488d7
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ProcessExpressionDialog.vue
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ReceiveTask.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ReceiveTask.vue
new file mode 100644
index 0000000000000000000000000000000000000000..26d84ecc4829d10023fcdb657407010e474bf056
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ReceiveTask.vue
@@ -0,0 +1,156 @@
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ScriptTask.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ScriptTask.vue
new file mode 100644
index 0000000000000000000000000000000000000000..801c5e5e6fd8ac270f9b8860640767b2a83a814c
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ScriptTask.vue
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ServiceTask.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ServiceTask.vue
new file mode 100644
index 0000000000000000000000000000000000000000..0241d0bb609193d8e6072c971eb79d2d93652f7d
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/ServiceTask.vue
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/UserTask.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/UserTask.vue
new file mode 100644
index 0000000000000000000000000000000000000000..ba94f270199388ed01a6928520902caa008cbc8d
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/task/task-components/UserTask.vue
@@ -0,0 +1,563 @@
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/time-event-config/CycleConfig.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/time-event-config/CycleConfig.vue
new file mode 100644
index 0000000000000000000000000000000000000000..c5add5e9ce955c8cf9b1d868bdca11f5b4ac407e
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/time-event-config/CycleConfig.vue
@@ -0,0 +1,380 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 每{{ f.label }}
+
+
+ 从
+
+ 到
+
+ 之间每{{ f.label }}
+
+
+ 从第
+
+ 开始每
+
+ {{ f.label }}
+
+ 指定
+
+
+
+
+
+ {{ pad(n - 1) }}
+
+
+
+
+
+
+
+
+
+
+
+ 循环次数:
+
+
+ 日期时间:
+
+
+ 当前时长:
+
+
+
+ 秒:
+
+ 自定义
+
+
+ 分:
+
+ 自定义
+
+
+ 小时:
+
+ 自定义
+
+
+ 天:
+
+ 自定义
+
+
+ 月:
+
+ 自定义
+
+
+ 年:
+
+ 自定义
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/time-event-config/DurationConfig.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/time-event-config/DurationConfig.vue
new file mode 100644
index 0000000000000000000000000000000000000000..42ae2c816732e1c1e55d14ba19e968515fde575c
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/time-event-config/DurationConfig.vue
@@ -0,0 +1,99 @@
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/time-event-config/TimeEventConfig.vue b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/time-event-config/TimeEventConfig.vue
new file mode 100644
index 0000000000000000000000000000000000000000..57c8eeb9b7ba6642056c1561031c36649373c729
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/penal/time-event-config/TimeEventConfig.vue
@@ -0,0 +1,357 @@
+
+
+
+
+
+ 类型:
+
+
+
+
+
+
+
+
+ 条件:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/element-variables.scss b/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/element-variables.scss
new file mode 100644
index 0000000000000000000000000000000000000000..344d99b32a81d30e9cd498d3353ddafc56230f49
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/element-variables.scss
@@ -0,0 +1,81 @@
+/* 改变主题色变量 */
+$--color-primary: #1890ff;
+$--color-danger: #ff4d4f;
+
+/* 改变 icon 字体路径变量,必需 */
+$--font-path: '~element-ui/lib/theme-chalk/fonts';
+
+@use '~element-ui/packages/theme-chalk/src/index';
+
+.el-table td,
+.el-table th {
+ color: #333;
+}
+
+.el-drawer__header {
+ box-sizing: border-box;
+ padding: 16px 16px 8px;
+ margin: 0;
+ font-size: 18px;
+ line-height: 24px;
+ color: #303133;
+ border-bottom: 1px solid #e8e8e8;
+}
+
+div[class^='el-drawer']:focus,
+span:focus {
+ outline: none;
+}
+
+.el-drawer__body {
+ box-sizing: border-box;
+ width: 100%;
+ padding: 16px;
+ overflow-y: auto;
+}
+
+.el-dialog {
+ margin-top: 50vh !important;
+ overflow: hidden;
+ transform: translateY(-50%);
+}
+
+.el-dialog__wrapper {
+ max-height: 100vh;
+ overflow: hidden;
+}
+
+.el-dialog__header {
+ box-sizing: border-box;
+ padding: 16px 16px 8px;
+ border-bottom: 1px solid #e8e8e8;
+}
+
+.el-dialog__body {
+ box-sizing: border-box;
+ max-height: 80vh;
+ padding: 16px;
+ overflow-y: auto;
+}
+
+.el-dialog__footer {
+ box-sizing: border-box;
+ padding: 16px;
+ border-top: 1px solid #e8e8e8;
+}
+
+.el-dialog__close {
+ font-weight: 600;
+}
+
+.el-select {
+ width: 100%;
+}
+
+.el-divider:not(.el-divider--horizontal) {
+ margin: 0 8px;
+}
+
+.el-divider.el-divider--horizontal {
+ margin: 16px 0;
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/index.scss b/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/index.scss
new file mode 100644
index 0000000000000000000000000000000000000000..a2d32d4f3f97efb3b8c63c9f6ffb6957f06cb968
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/index.scss
@@ -0,0 +1,120 @@
+@use './process-designer';
+@use './process-panel';
+
+$success-color: #4eb819;
+$primary-color: #409eff;
+$danger-color: #f56c6c;
+$cancel-color: #909399;
+
+.process-viewer {
+ position: relative;
+ background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImEiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTTAgMTBoNDBNMTAgMHY0ME0wIDIwaDQwTTIwIDB2NDBNMCAzMGg0ME0zMCAwdjQwIiBmaWxsPSJub25lIiBzdHJva2U9IiNlMGUwZTAiIG9wYWNpdHk9Ii4yIi8+PHBhdGggZD0iTTQwIDBIMHY0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZTBlMGUwIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2EpIi8+PC9zdmc+')
+ repeat !important;
+ border: 1px solid #efefef;
+
+ .success-arrow {
+ fill: $success-color;
+ stroke: $success-color;
+ }
+
+ .success-conditional {
+ fill: white;
+ stroke: $success-color;
+ }
+
+ .success.djs-connection {
+ .djs-visual path {
+ stroke: $success-color !important;
+ //marker-end: url(#sequenceflow-end-white-success)!important;
+ }
+ }
+
+ .success.djs-connection.condition-expression {
+ .djs-visual path {
+ //marker-start: url(#conditional-flow-marker-white-success)!important;
+ }
+ }
+
+ .success.djs-shape {
+ .djs-visual rect {
+ fill: $success-color !important;
+ fill-opacity: 0.15 !important;
+ stroke: $success-color !important;
+ }
+
+ .djs-visual polygon {
+ stroke: $success-color !important;
+ }
+
+ .djs-visual path:nth-child(2) {
+ fill: $success-color !important;
+ stroke: $success-color !important;
+ }
+
+ .djs-visual circle {
+ fill: $success-color !important;
+ fill-opacity: 0.15 !important;
+ stroke: $success-color !important;
+ }
+ }
+
+ .primary.djs-shape {
+ .djs-visual rect {
+ fill: $primary-color !important;
+ fill-opacity: 0.15 !important;
+ stroke: $primary-color !important;
+ }
+
+ .djs-visual polygon {
+ stroke: $primary-color !important;
+ }
+
+ .djs-visual circle {
+ fill: $primary-color !important;
+ fill-opacity: 0.15 !important;
+ stroke: $primary-color !important;
+ }
+ }
+
+ .danger.djs-shape {
+ .djs-visual rect {
+ fill: $danger-color !important;
+ fill-opacity: 0.15 !important;
+ stroke: $danger-color !important;
+ }
+
+ .djs-visual polygon {
+ stroke: $danger-color !important;
+ }
+
+ .djs-visual circle {
+ fill: $danger-color !important;
+ fill-opacity: 0.15 !important;
+ stroke: $danger-color !important;
+ }
+ }
+
+ .cancel.djs-shape {
+ .djs-visual rect {
+ fill: $cancel-color !important;
+ fill-opacity: 0.15 !important;
+ stroke: $cancel-color !important;
+ }
+
+ .djs-visual polygon {
+ stroke: $cancel-color !important;
+ }
+
+ .djs-visual circle {
+ fill: $cancel-color !important;
+ fill-opacity: 0.15 !important;
+ stroke: $cancel-color !important;
+ }
+ }
+}
+
+.process-viewer .djs-tooltip-container,
+.process-viewer .djs-overlay-container,
+.process-viewer .djs-palette {
+ display: none;
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/process-designer.scss b/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/process-designer.scss
new file mode 100644
index 0000000000000000000000000000000000000000..9649244e0ee3d18d3dd8800656e52a71d7c926ce
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/process-designer.scss
@@ -0,0 +1,184 @@
+@use 'bpmn-js-token-simulation/assets/css/bpmn-js-token-simulation.css';
+
+// 边框被 token-simulation 样式覆盖了
+.djs-palette {
+ background: var(--palette-background-color);
+ border: solid 1px var(--palette-border-color) !important;
+ border-radius: 2px;
+}
+
+.my-process-designer {
+ box-sizing: border-box;
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ height: 100%;
+
+ .my-process-designer__header {
+ width: 100%;
+ min-height: 36px;
+
+ .el-button {
+ text-align: center;
+ }
+
+ .el-button-group {
+ margin: 4px;
+ }
+
+ .el-tooltip__popper {
+ .el-button {
+ width: 100%;
+ padding-right: 8px;
+ padding-left: 8px;
+ text-align: left;
+ }
+
+ .el-button:hover {
+ color: #fff;
+ background: rgb(64 158 255 / 80%);
+ }
+ }
+
+ .align {
+ position: relative;
+
+ i {
+ &::after {
+ position: absolute;
+ content: '|';
+ // transform: rotate(90deg) translate(200%, 60%);
+ transform: rotate(180deg) translate(271%, -10%);
+ }
+ }
+ }
+
+ .align.align-left i {
+ transform: rotate(90deg);
+ }
+
+ .align.align-right i {
+ transform: rotate(-90deg);
+ }
+
+ .align.align-top i {
+ transform: rotate(180deg);
+ }
+
+ .align.align-bottom i {
+ transform: rotate(0deg);
+ }
+
+ .align.align-center i {
+ transform: rotate(0deg);
+
+ &::after {
+ // transform: rotate(90deg) translate(0, 60%);
+ transform: rotate(0deg) translate(-0%, -5%);
+ }
+ }
+
+ .align.align-middle i {
+ transform: rotate(-90deg);
+
+ &::after {
+ // transform: rotate(90deg) translate(0, 60%);
+ transform: rotate(0deg) translate(0, -10%);
+ }
+ }
+ }
+
+ .my-process-designer__container {
+ display: inline-flex;
+ flex: 1;
+ width: 100%;
+
+ .my-process-designer__canvas {
+ position: relative;
+ flex: 1;
+ height: 100%;
+ background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImEiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTTAgMTBoNDBNMTAgMHY0ME0wIDIwaDQwTTIwIDB2NDBNMCAzMGg0ME0zMCAwdjQwIiBmaWxsPSJub25lIiBzdHJva2U9IiNlMGUwZTAiIG9wYWNpdHk9Ii4yIi8+PHBhdGggZD0iTTQwIDBIMHY0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZTBlMGUwIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2EpIi8+PC9zdmc+')
+ repeat !important;
+
+ div.toggle-mode {
+ display: none;
+ }
+ }
+
+ .my-process-designer__property-panel {
+ z-index: 10;
+ height: 100%;
+ overflow: scroll;
+ overflow-y: auto;
+
+ * {
+ box-sizing: border-box;
+ }
+ }
+ // svg {
+ // width: 100%;
+ // height: 100%;
+ // min-height: 100%;
+ // overflow: hidden;
+ // }
+ }
+}
+
+//侧边栏配置
+// .djs-palette .two-column .open {
+.open {
+ // .djs-palette.open {
+ .djs-palette-entries {
+ div[class^='bpmn-icon-']::before,
+ div[class*='bpmn-icon-']::before {
+ line-height: unset;
+ }
+
+ div.entry {
+ position: relative;
+ }
+
+ div.entry:hover {
+ &::after {
+ position: absolute;
+ top: 0;
+ right: -10px;
+ bottom: 0;
+ z-index: 100;
+ box-sizing: border-box;
+ display: inline-block;
+ width: max-content;
+ padding: 0 16px;
+ overflow: hidden;
+ font-size: 0.5em;
+ font-variant: normal;
+ vertical-align: text-bottom;
+ text-transform: none;
+ text-decoration: inherit;
+ content: attr(title);
+ background: #fafafa;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ box-shadow: 0 0 6px #eee;
+ transform: translateX(100%);
+ }
+ }
+ }
+}
+
+pre {
+ height: 100%;
+ max-height: calc(80vh - 32px);
+ margin: 0;
+ overflow: hidden;
+ overflow-y: auto;
+}
+
+.hljs {
+ word-break: break-word;
+ white-space: pre-wrap;
+}
+
+.hljs * {
+ font-family: Consolas, Monaco, monospace;
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/process-panel.scss b/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/process-panel.scss
new file mode 100644
index 0000000000000000000000000000000000000000..d7e8cfbcd9e70672fa78fac8677b0ca51d6c7af6
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/theme/process-panel.scss
@@ -0,0 +1,127 @@
+.process-panel__container {
+ box-sizing: border-box;
+ max-height: 100%;
+ padding: 0 8px;
+ overflow-y: scroll;
+ border-left: 1px solid #eee;
+ box-shadow: 0 0 8px #ccc;
+}
+
+.panel-tab__title {
+ padding: 0 8px;
+ font-size: 1.1em;
+ font-weight: 600;
+ line-height: 1.2em;
+
+ i {
+ margin-right: 8px;
+ font-size: 1.2em;
+ }
+}
+
+.panel-tab__content {
+ box-sizing: border-box;
+ width: 100%;
+ padding: 8px 16px;
+ border-top: 1px solid #eee;
+
+ .panel-tab__content--title {
+ display: flex;
+ justify-content: space-between;
+ padding-bottom: 8px;
+
+ span {
+ flex: 1;
+ text-align: left;
+ }
+ }
+}
+
+.element-property {
+ display: flex;
+ align-items: flex-start;
+ width: 100%;
+ margin: 8px 0;
+
+ .element-property__label {
+ box-sizing: border-box;
+ display: block;
+ width: 90px;
+ padding-right: 12px;
+ overflow: hidden;
+ font-size: 14px;
+ line-height: 32px;
+ text-align: right;
+ }
+
+ .element-property__value {
+ flex: 1;
+ line-height: 32px;
+ }
+
+ .el-form-item {
+ width: 100%;
+ padding-bottom: 18px;
+ margin-bottom: 0;
+ }
+}
+
+.list-property {
+ flex-direction: column;
+
+ .element-listener-item {
+ display: inline-grid;
+ grid-template-columns: 16px auto 32px 32px;
+ grid-column-gap: 8px;
+ width: 100%;
+ }
+
+ .element-listener-item + .element-listener-item {
+ margin-top: 8px;
+ }
+}
+
+.listener-filed__title {
+ display: inline-flex;
+ align-items: center;
+ justify-content: space-between;
+ width: 100%;
+ margin-top: 0;
+
+ span {
+ width: 200px;
+ font-size: 14px;
+ text-align: left;
+ }
+
+ i {
+ margin-right: 8px;
+ }
+}
+
+.element-drawer__button {
+ display: inline-flex;
+ justify-content: space-around;
+ width: 100%;
+ margin-top: 8px;
+}
+
+.element-drawer__button > .el-button {
+ width: 100%;
+}
+
+.el-collapse-item__content {
+ padding-bottom: 0;
+}
+
+.el-input.is-disabled .el-input__inner {
+ color: #999;
+}
+
+.el-form-item.el-form-item--mini {
+ margin-bottom: 0;
+
+ & + .el-form-item {
+ margin-top: 16px;
+ }
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/package/utils.ts b/apps/web-antd/src/components/bpmnProcessDesigner/package/utils.ts
new file mode 100644
index 0000000000000000000000000000000000000000..5a904331de0d7f8b4c0718bea1058df84daa7dd5
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/package/utils.ts
@@ -0,0 +1,93 @@
+import { toRaw } from 'vue';
+
+const bpmnInstances = () => (window as any)?.bpmnInstances;
+// 创建监听器实例
+export function createListenerObject(options, isTask, prefix) {
+ const listenerObj = Object.create(null);
+ listenerObj.event = options.event;
+ isTask && (listenerObj.id = options.id); // 任务监听器特有的 id 字段
+ switch (options.listenerType) {
+ case 'delegateExpressionListener': {
+ listenerObj.delegateExpression = options.delegateExpression;
+ break;
+ }
+ case 'expressionListener': {
+ listenerObj.expression = options.expression;
+ break;
+ }
+ case 'scriptListener': {
+ listenerObj.script = createScriptObject(options, prefix);
+ break;
+ }
+ default: {
+ listenerObj.class = options.class;
+ }
+ }
+ // 注入字段
+ if (options.fields) {
+ listenerObj.fields = options.fields.map((field) => {
+ return createFieldObject(field, prefix);
+ });
+ }
+ // 任务监听器的 定时器 设置
+ if (isTask && options.event === 'timeout' && !!options.eventDefinitionType) {
+ const timeDefinition = bpmnInstances().moddle.create(
+ 'bpmn:FormalExpression',
+ {
+ body: options.eventTimeDefinitions,
+ },
+ );
+ const TimerEventDefinition = bpmnInstances().moddle.create(
+ 'bpmn:TimerEventDefinition',
+ {
+ id: `TimerEventDefinition_${uuid(8)}`,
+ [`time${options.eventDefinitionType.replace(/^\S/, (s) => s.toUpperCase())}`]:
+ timeDefinition,
+ },
+ );
+ listenerObj.eventDefinitions = [TimerEventDefinition];
+ }
+ return bpmnInstances().moddle.create(
+ `${prefix}:${isTask ? 'TaskListener' : 'ExecutionListener'}`,
+ listenerObj,
+ );
+}
+
+// 创建 监听器的注入字段 实例
+export function createFieldObject(option, prefix) {
+ const { name, fieldType, string, expression } = option;
+ const fieldConfig =
+ fieldType === 'string' ? { name, string } : { name, expression };
+ return bpmnInstances().moddle.create(`${prefix}:Field`, fieldConfig);
+}
+
+// 创建脚本实例
+export function createScriptObject(options, prefix) {
+ const { scriptType, scriptFormat, value, resource } = options;
+ const scriptConfig =
+ scriptType === 'inlineScript'
+ ? { scriptFormat, value }
+ : { scriptFormat, resource };
+ return bpmnInstances().moddle.create(`${prefix}:Script`, scriptConfig);
+}
+
+// 更新元素扩展属性
+export function updateElementExtensions(element, extensionList) {
+ const extensions = bpmnInstances().moddle.create('bpmn:ExtensionElements', {
+ values: extensionList,
+ });
+ bpmnInstances().modeling.updateProperties(toRaw(element), {
+ extensionElements: extensions,
+ });
+}
+
+// 创建一个id
+export function uuid(length = 8, chars?) {
+ let result = '';
+ const charsString =
+ chars || '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
+ for (let i = length; i > 0; --i) {
+ result += charsString[Math.floor(Math.random() * charsString.length)];
+ }
+ return result;
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/src/highlight/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/src/highlight/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..c4890d71bea36584d23adfeab9f8a7f372b07d20
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/src/highlight/index.js
@@ -0,0 +1,5 @@
+const hljs = require('highlight.js/lib/core');
+hljs.registerLanguage('xml', require('highlight.js/lib/languages/xml'));
+hljs.registerLanguage('json', require('highlight.js/lib/languages/json'));
+
+module.exports = hljs;
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/custom-renderer/CustomRenderer.js b/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/custom-renderer/CustomRenderer.js
new file mode 100644
index 0000000000000000000000000000000000000000..506a1b3c33c967bd9049ef6152859f946dd3760c
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/custom-renderer/CustomRenderer.js
@@ -0,0 +1,30 @@
+import BpmnRenderer from 'bpmn-js/lib/draw/BpmnRenderer';
+
+export default function CustomRenderer(
+ config,
+ eventBus,
+ styles,
+ pathMap,
+ canvas,
+ textRenderer,
+) {
+ BpmnRenderer.call(
+ this,
+ config,
+ eventBus,
+ styles,
+ pathMap,
+ canvas,
+ textRenderer,
+ 2000,
+ );
+
+ this.handlers.label = function () {
+ return null;
+ };
+}
+
+const F = function () {}; // 核心,利用空对象作为中介;
+F.prototype = BpmnRenderer.prototype; // 核心,将父类的原型赋值给空对象F;
+CustomRenderer.prototype = new F(); // 核心,将 F的实例赋值给子类;
+CustomRenderer.prototype.constructor = CustomRenderer; // 修复子类CustomRenderer的构造器指向,防止原型链的混乱;
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/custom-renderer/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/custom-renderer/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..a1842ec76ba96764774b1166c1f32e7c1baf04f5
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/custom-renderer/index.js
@@ -0,0 +1,6 @@
+import CustomRenderer from './CustomRenderer';
+
+export default {
+ __init__: ['customRenderer'],
+ customRenderer: ['type', CustomRenderer],
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/rules/CustomRules.js b/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/rules/CustomRules.js
new file mode 100644
index 0000000000000000000000000000000000000000..49ed6e3e1e56b05711d105c23983bd40cddf9328
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/rules/CustomRules.js
@@ -0,0 +1,16 @@
+import BpmnRules from 'bpmn-js/lib/features/rules/BpmnRules';
+import inherits from 'inherits';
+
+export default function CustomRules(eventBus) {
+ BpmnRules.call(this, eventBus);
+}
+
+inherits(CustomRules, BpmnRules);
+
+CustomRules.prototype.canDrop = function () {
+ return false;
+};
+
+CustomRules.prototype.canMove = function () {
+ return false;
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/rules/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/rules/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..838b93ea69f97a7ce3018b7f8470d1afeff967ea
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/src/modules/rules/index.js
@@ -0,0 +1,6 @@
+import CustomRules from './CustomRules';
+
+export default {
+ __init__: ['customRules'],
+ customRules: ['type', CustomRules],
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/src/translations.ts b/apps/web-antd/src/components/bpmnProcessDesigner/src/translations.ts
new file mode 100644
index 0000000000000000000000000000000000000000..75c6155928537f9f0a0c3fe6f73d010b70583c3c
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/src/translations.ts
@@ -0,0 +1,25 @@
+/**
+ * This is a sample file that should be replaced with the actual translation.
+ *
+ * Checkout https://github.com/bpmn-io/bpmn-js-i18n for a list of available
+ * translations and labels to translate.
+ */
+export default {
+ 'Exclusive Gateway': 'Exklusives Gateway',
+ 'Parallel Gateway': 'Paralleles Gateway',
+ 'Inclusive Gateway': 'Inklusives Gateway',
+ 'Complex Gateway': 'Komplexes Gateway',
+ 'Event based Gateway': 'Ereignis-basiertes Gateway',
+ 'Message Start Event': '消息启动事件',
+ 'Timer Start Event': '定时启动事件',
+ 'Conditional Start Event': '条件启动事件',
+ 'Signal Start Event': '信号启动事件',
+ 'Error Start Event': '错误启动事件',
+ 'Escalation Start Event': '升级启动事件',
+ 'Compensation Start Event': '补偿启动事件',
+ 'Message Start Event (non-interrupting)': '消息启动事件 (非中断)',
+ 'Timer Start Event (non-interrupting)': '定时启动事件 (非中断)',
+ 'Conditional Start Event (non-interrupting)': '条件启动事件 (非中断)',
+ 'Signal Start Event (non-interrupting)': '信号启动事件 (非中断)',
+ 'Escalation Start Event (non-interrupting)': '升级启动事件 (非中断)',
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/src/utils/directive/clickOutSide.js b/apps/web-antd/src/components/bpmnProcessDesigner/src/utils/directive/clickOutSide.js
new file mode 100644
index 0000000000000000000000000000000000000000..f3deec68b7035e3e58d61615fc29f92a9072f66e
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/src/utils/directive/clickOutSide.js
@@ -0,0 +1,39 @@
+// outside.js
+
+const ctx = '@@clickoutsideContext';
+
+export default {
+ bind(el, binding, vnode) {
+ const ele = el;
+ const documentHandler = (e) => {
+ if (!vnode.context || ele.contains(e.target)) {
+ return false;
+ }
+ // 调用指令回调
+ if (binding.expression) {
+ vnode.context[el[ctx].methodName](e);
+ } else {
+ el[ctx].bindingFn(e);
+ }
+ };
+ // 将方法添加到ele
+ ele[ctx] = {
+ documentHandler,
+ methodName: binding.expression,
+ bindingFn: binding.value,
+ };
+
+ setTimeout(() => {
+ document.addEventListener('touchstart', documentHandler); // 为document绑定事件
+ });
+ },
+ update(el, binding) {
+ const ele = el;
+ ele[ctx].methodName = binding.expression;
+ ele[ctx].bindingFn = binding.value;
+ },
+ unbind(el) {
+ document.removeEventListener('touchstart', el[ctx].documentHandler); // 解绑
+ delete el[ctx];
+ },
+};
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/src/utils/index.js b/apps/web-antd/src/components/bpmnProcessDesigner/src/utils/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..973685a0b62386e151cb28dd2aa195af068cbe93
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/src/utils/index.js
@@ -0,0 +1,10 @@
+export function debounce(fn, delay = 500) {
+ let timer;
+ return function (...args) {
+ if (timer) {
+ clearTimeout(timer);
+ timer = null;
+ }
+ timer = setTimeout(fn.bind(this, ...args), delay);
+ };
+}
diff --git a/apps/web-antd/src/components/bpmnProcessDesigner/src/utils/xml2json.js b/apps/web-antd/src/components/bpmnProcessDesigner/src/utils/xml2json.js
new file mode 100644
index 0000000000000000000000000000000000000000..45ba4de8ed6cd7b559373d523d02d3b53b5d0a67
--- /dev/null
+++ b/apps/web-antd/src/components/bpmnProcessDesigner/src/utils/xml2json.js
@@ -0,0 +1,50 @@
+function xmlStr2XmlObj(xmlStr) {
+ let xmlObj = {};
+ if (document.all) {
+ const xmlDom = new window.ActiveXObject('Microsoft.XMLDOM');
+ xmlDom.loadXML(xmlStr);
+ xmlObj = xmlDom;
+ } else {
+ xmlObj = new DOMParser().parseFromString(xmlStr, 'text/xml');
+ }
+ return xmlObj;
+}
+
+function xml2json(xml) {
+ try {
+ let obj = {};
+ if (xml.children.length > 0) {
+ for (let i = 0; i < xml.children.length; i++) {
+ const item = xml.children.item(i);
+ const nodeName = item.nodeName;
+ if (obj[nodeName] === undefined) {
+ obj[nodeName] = xml2json(item);
+ } else {
+ if (obj[nodeName].push === undefined) {
+ const old = obj[nodeName];
+ obj[nodeName] = [];
+ obj[nodeName].push(old);
+ }
+ obj[nodeName].push(xml2json(item));
+ }
+ }
+ } else {
+ obj = xml.textContent;
+ }
+ return obj;
+ } catch (error) {
+ console.log(error.message);
+ }
+}
+
+function xmlObj2json(xml) {
+ const xmlObj = xmlStr2XmlObj(xml);
+ console.log(xmlObj);
+ let jsonObj = {};
+ if (xmlObj.childNodes.length > 0) {
+ jsonObj = xml2json(xmlObj);
+ }
+ return jsonObj;
+}
+
+export default xmlObj2json;
diff --git a/apps/web-antd/tsconfig.json b/apps/web-antd/tsconfig.json
index 02c287fe64295965ee0c1bb6c16d9e63cbe3a12e..f4a135585a1ede17b57332cb3af48072807bcb0b 100644
--- a/apps/web-antd/tsconfig.json
+++ b/apps/web-antd/tsconfig.json
@@ -3,6 +3,7 @@
"extends": "@vben/tsconfig/web-app.json",
"compilerOptions": {
"baseUrl": ".",
+ "allowJs": true,
"paths": {
"#/*": ["./src/*"]
}
diff --git a/packages/icons/src/iconify/index.ts b/packages/icons/src/iconify/index.ts
index c4c7116efe3eeea254c9340d9ea776e6565ac334..54857f9c2591030dffc3e51f8bc75664558c2545 100644
--- a/packages/icons/src/iconify/index.ts
+++ b/packages/icons/src/iconify/index.ts
@@ -23,4 +23,53 @@ export const TMinimize = createIconifyIcon('tabler:arrows-minimize');
export const AntdProfileOutlined = createIconifyIcon(
'ant-design:profile-outlined',
);
+
+export const FolderOpenOutlined = createIconifyIcon(
+ 'ant-design:folder-open-outlined',
+);
+
+export const DownloadOutlined = createIconifyIcon(
+ 'ant-design:download-outlined',
+);
+
+export const EyeOutlined = createIconifyIcon('ant-design:eye-outlined');
+
+export const ApiOutlined = createIconifyIcon('ant-design:api-outlined');
+
+export const ZoomOutOutlined = createIconifyIcon(
+ 'ant-design:zoom-out-outlined',
+);
+
+export const ZoomInOutlined = createIconifyIcon('ant-design:zoom-in-outlined');
+
+export const UndoOutlined = createIconifyIcon('ant-design:undo-outlined');
+
+export const RedoOutlined = createIconifyIcon('ant-design:redo-outlined');
+
+export const ReloadOutlined = createIconifyIcon('ant-design:reload-outlined');
+
+export const AlignLeftOutlined = createIconifyIcon(
+ 'ant-design:align-left-outlined',
+);
+
+export const WarningOutlined = createIconifyIcon('ant-design:warning-outlined');
+
export const RiDingding = createIconifyIcon('ri:dingding-fill');
+
+export const MenuOutlined = createIconifyIcon('ant-design:menu-outlined');
+
+export const PlusOutlined = createIconifyIcon('ant-design:plus-outlined');
+
+export const SelectOutlined = createIconifyIcon('ant-design:select-outlined');
+
+export const CheckCircleFilled = createIconifyIcon(
+ 'ant-design:check-circle-filled',
+);
+
+export const ExclamationCircleFilled = createIconifyIcon(
+ 'ant-design:exclamation-circle-filled',
+);
+
+export const QuestionCircleFilled = createIconifyIcon(
+ 'ant-design:question-circle-filled',
+);
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index cf8b328bce47b901986612081944759fe02aee9f..6db4805bc9edaf4338bca0df270ff64dd32b377a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -26,28 +26,28 @@ catalogs:
version: 19.8.1
'@eslint/js':
specifier: ^9.30.1
- version: 9.33.0
+ version: 9.35.0
'@faker-js/faker':
specifier: ^9.9.0
version: 9.9.0
'@form-create/ant-design-vue':
specifier: ^3.2.27
- version: 3.2.28
+ version: 3.2.30
'@form-create/antd-designer':
specifier: ^3.3.0
- version: 3.3.0
+ version: 3.3.1
'@form-create/designer':
specifier: ^3.3.0
- version: 3.3.0
+ version: 3.3.1
'@form-create/element-ui':
specifier: ^3.2.27
- version: 3.2.28
+ version: 3.2.30
'@form-create/naive-ui':
specifier: ^3.2.27
- version: 3.2.28
+ version: 3.2.30
'@iconify/json':
specifier: ^2.2.354
- version: 2.2.376
+ version: 2.2.382
'@iconify/tailwind':
specifier: ^1.2.0
version: 1.2.0
@@ -56,13 +56,13 @@ catalogs:
version: 5.0.0
'@intlify/core-base':
specifier: ^11.1.7
- version: 11.1.11
+ version: 11.1.12
'@intlify/unplugin-vue-i18n':
specifier: ^6.0.8
version: 6.0.8
'@jspm/generator':
specifier: ^2.6.2
- version: 2.6.3
+ version: 2.6.4
'@manypkg/get-packages':
specifier: ^3.0.0
version: 3.1.0
@@ -74,7 +74,7 @@ catalogs:
version: 2.18.2
'@playwright/test':
specifier: ^1.53.2
- version: 1.54.2
+ version: 1.55.0
'@pnpm/workspace.read-manifest':
specifier: ^1000.2.0
version: 1000.2.2
@@ -89,10 +89,10 @@ catalogs:
version: 0.5.16
'@tanstack/vue-query':
specifier: ^5.81.5
- version: 5.85.4
+ version: 5.87.1
'@tanstack/vue-store':
specifier: ^0.7.1
- version: 0.7.3
+ version: 0.7.4
'@tinyflow-ai/vue':
specifier: ^1.1.1
version: 1.1.1
@@ -134,7 +134,7 @@ catalogs:
version: 14.1.2
'@types/node':
specifier: ^22.16.0
- version: 22.17.2
+ version: 22.18.1
'@types/nprogress':
specifier: ^0.2.3
version: 0.2.3
@@ -152,10 +152,10 @@ catalogs:
version: 1.15.8
'@typescript-eslint/eslint-plugin':
specifier: ^8.35.1
- version: 8.40.0
+ version: 8.42.0
'@typescript-eslint/parser':
specifier: ^8.35.1
- version: 8.40.0
+ version: 8.42.0
'@vee-validate/zod':
specifier: ^4.15.1
version: 4.15.1
@@ -167,19 +167,19 @@ catalogs:
version: 6.0.1
'@vitejs/plugin-vue-jsx':
specifier: ^5.0.1
- version: 5.0.1
+ version: 5.1.1
'@vue/shared':
specifier: ^3.5.17
- version: 3.5.18
+ version: 3.5.21
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
'@vueuse/core':
specifier: ^13.4.0
- version: 13.7.0
+ version: 13.9.0
'@vueuse/integrations':
specifier: ^13.4.0
- version: 13.7.0
+ version: 13.9.0
'@vueuse/motion':
specifier: ^3.0.3
version: 3.0.3
@@ -233,7 +233,7 @@ catalogs:
version: 8.19.4
cssnano:
specifier: ^7.0.7
- version: 7.1.0
+ version: 7.1.1
cz-git:
specifier: ^1.11.2
version: 1.12.0
@@ -242,7 +242,7 @@ catalogs:
version: 1.12.0
dayjs:
specifier: ^1.11.13
- version: 1.11.13
+ version: 1.11.18
defu:
specifier: ^6.1.4
version: 6.1.4
@@ -257,10 +257,10 @@ catalogs:
version: 5.6.0
element-plus:
specifier: ^2.10.2
- version: 2.10.7
+ version: 2.11.2
eslint:
specifier: ^9.30.1
- version: 9.33.0
+ version: 9.35.0
eslint-config-turbo:
specifier: ^2.5.4
version: 2.5.6
@@ -347,7 +347,7 @@ catalogs:
version: 9.0.2
lefthook:
specifier: ^1.11.14
- version: 1.12.3
+ version: 1.12.4
lodash.clonedeep:
specifier: ^4.5.0
version: 4.5.0
@@ -386,7 +386,7 @@ catalogs:
version: 2.42.0
nitropack:
specifier: ^2.11.13
- version: 2.12.4
+ version: 2.12.5
nprogress:
specifier: ^0.2.0
version: 0.2.0
@@ -398,10 +398,10 @@ catalogs:
version: 4.5.0
pkg-types:
specifier: ^2.2.0
- version: 2.2.0
+ version: 2.3.0
playwright:
specifier: ^1.53.2
- version: 1.54.2
+ version: 1.55.0
postcss:
specifier: ^8.5.6
version: 8.5.6
@@ -416,7 +416,7 @@ catalogs:
version: 16.1.1
postcss-preset-env:
specifier: ^10.2.4
- version: 10.2.4
+ version: 10.3.1
postcss-scss:
specifier: ^4.0.9
version: 4.0.9
@@ -446,13 +446,13 @@ catalogs:
version: 6.0.1
rollup:
specifier: ^4.44.1
- version: 4.46.3
+ version: 4.50.1
rollup-plugin-visualizer:
specifier: ^5.14.0
version: 5.14.0
sass:
specifier: ^1.89.2
- version: 1.90.0
+ version: 1.92.1
secure-ls:
specifier: ^2.0.0
version: 2.0.0
@@ -461,7 +461,7 @@ catalogs:
version: 1.15.6
stylelint:
specifier: ^16.21.0
- version: 16.23.1
+ version: 16.24.0
stylelint-config-recess-order:
specifier: ^6.1.0
version: 6.1.0
@@ -521,7 +521,7 @@ catalogs:
version: 4.15.1
vite:
specifier: ^7.1.2
- version: 7.1.3
+ version: 7.1.5
vite-plugin-compression:
specifier: ^0.5.1
version: 0.5.1
@@ -536,7 +536,7 @@ catalogs:
version: 1.0.7
vite-plugin-pwa:
specifier: ^1.0.1
- version: 1.0.2
+ version: 1.0.3
vite-plugin-vue-devtools:
specifier: ^7.7.7
version: 7.7.7
@@ -557,7 +557,7 @@ catalogs:
version: 10.2.0
vue-i18n:
specifier: ^11.1.7
- version: 11.1.11
+ version: 11.1.12
vue-json-viewer:
specifier: ^3.0.4
version: 3.0.4
@@ -578,10 +578,10 @@ catalogs:
version: 4.1.0
vxe-pc-ui:
specifier: ^4.7.12
- version: 4.8.22
+ version: 4.9.19
vxe-table:
specifier: ^4.14.4
- version: 4.15.10
+ version: 4.16.8
watermark-js-plus:
specifier: ^1.6.2
version: 1.6.3
@@ -609,13 +609,13 @@ importers:
version: 0.5.1(encoding@0.1.13)
'@changesets/cli':
specifier: 'catalog:'
- version: 2.29.6(@types/node@22.17.2)
+ version: 2.29.6(@types/node@22.18.1)
'@playwright/test':
specifier: 'catalog:'
- version: 1.54.2
+ version: 1.55.0
'@types/node':
specifier: 'catalog:'
- version: 22.17.2
+ version: 22.18.1
'@vben/commitlint-config':
specifier: workspace:*
version: link:internal/lint-configs/commitlint-config
@@ -645,10 +645,10 @@ importers:
version: link:scripts/vsh
'@vitejs/plugin-vue':
specifier: 'catalog:'
- version: 6.0.1(vite@7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))
+ version: 6.0.1(vite@7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))
'@vitejs/plugin-vue-jsx':
specifier: 'catalog:'
- version: 5.0.1(vite@7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))
+ version: 5.1.1(vite@7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))
'@vue/test-utils':
specifier: 'catalog:'
version: 2.4.6
@@ -669,10 +669,10 @@ importers:
version: 4.1.0
lefthook:
specifier: 'catalog:'
- version: 1.12.3
+ version: 1.12.4
playwright:
specifier: 'catalog:'
- version: 1.54.2
+ version: 1.55.0
rimraf:
specifier: 'catalog:'
version: 6.0.1
@@ -687,16 +687,16 @@ importers:
version: 5.9.2
unbuild:
specifier: 'catalog:'
- version: 3.6.1(sass@1.90.0)(typescript@5.9.2)(vue-tsc@2.2.10(typescript@5.9.2))(vue@3.5.18(typescript@5.9.2))
+ version: 3.6.1(sass@1.92.1)(typescript@5.9.2)(vue-tsc@2.2.10(typescript@5.9.2))(vue@3.5.21(typescript@5.9.2))
vite:
specifier: 'catalog:'
- version: 7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ version: 7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
vitest:
specifier: 'catalog:'
- version: 3.2.4(@types/node@22.17.2)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ version: 3.2.4(@types/node@22.18.1)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-tsc:
specifier: 'catalog:'
version: 2.2.10(typescript@5.9.2)
@@ -711,7 +711,7 @@ importers:
version: 9.0.2
nitropack:
specifier: 'catalog:'
- version: 2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)
+ version: 2.12.5(encoding@0.1.13)
devDependencies:
'@types/jsonwebtoken':
specifier: 'catalog:'
@@ -724,13 +724,13 @@ importers:
dependencies:
'@form-create/ant-design-vue':
specifier: 'catalog:'
- version: 3.2.28(vue@3.5.18(typescript@5.9.2))
+ version: 3.2.30(vue@3.5.21(typescript@5.9.2))
'@form-create/antd-designer':
specifier: 'catalog:'
- version: 3.3.0(vue@3.5.18(typescript@5.9.2))
+ version: 3.3.1(vue@3.5.21(typescript@5.9.2))
'@tinymce/tinymce-vue':
specifier: 'catalog:'
- version: 6.3.0(tinymce@7.9.1)(vue@3.5.18(typescript@5.9.2))
+ version: 6.3.0(tinymce@7.9.1)(vue@3.5.21(typescript@5.9.2))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -775,52 +775,76 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
'@vueuse/integrations':
specifier: 'catalog:'
- version: 13.7.0(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(jwt-decode@4.0.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.21(typescript@5.9.2))
ant-design-vue:
specifier: 'catalog:'
- version: 4.2.6(vue@3.5.18(typescript@5.9.2))
+ version: 4.2.6(vue@3.5.21(typescript@5.9.2))
+ bpmn-js:
+ specifier: ^17.11.1
+ version: 17.11.1
+ bpmn-js-properties-panel:
+ specifier: 5.23.0
+ version: 5.23.0(@bpmn-io/properties-panel@3.33.0)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.11.1(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.11.0))(diagram-js@12.8.1)
+ bpmn-js-token-simulation:
+ specifier: ^0.36.3
+ version: 0.36.3
+ camunda-bpmn-moddle:
+ specifier: ^7.0.1
+ version: 7.0.1
cropperjs:
specifier: 'catalog:'
version: 1.6.2
dayjs:
specifier: 'catalog:'
- version: 1.11.13
+ version: 1.11.18
+ diagram-js:
+ specifier: ^12.8.1
+ version: 12.8.1
+ fast-xml-parser:
+ specifier: ^4.5.3
+ version: 4.5.3
highlight.js:
specifier: 'catalog:'
version: 11.11.1
+ min-dash:
+ specifier: ^4.2.3
+ version: 4.2.3
pinia:
specifier: ^3.0.3
- version: 3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
+ version: 3.0.3(typescript@5.9.2)(vue@3.5.21(typescript@5.9.2))
+ steady-xml:
+ specifier: ^0.1.0
+ version: 0.1.0
tinymce:
specifier: 'catalog:'
version: 7.9.1
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-dompurify-html:
specifier: 'catalog:'
- version: 5.3.0(vue@3.5.18(typescript@5.9.2))
+ version: 5.3.0(vue@3.5.21(typescript@5.9.2))
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
vue3-signature:
specifier: 'catalog:'
- version: 0.2.4(vue@3.5.18(typescript@5.9.2))
+ version: 0.2.4(vue@3.5.21(typescript@5.9.2))
apps/web-ele:
dependencies:
'@form-create/designer':
specifier: 'catalog:'
- version: 3.3.0(vue@3.5.18(typescript@5.9.2))
+ version: 3.3.1(vue@3.5.21(typescript@5.9.2))
'@form-create/element-ui':
specifier: 'catalog:'
- version: 3.2.28(vue@3.5.18(typescript@5.9.2))
+ version: 3.2.30(vue@3.5.21(typescript@5.9.2))
'@tinymce/tinymce-vue':
specifier: 'catalog:'
- version: 6.3.0(tinymce@7.9.1)(vue@3.5.18(typescript@5.9.2))
+ version: 6.3.0(tinymce@7.9.1)(vue@3.5.21(typescript@5.9.2))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -865,34 +889,34 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
cropperjs:
specifier: 'catalog:'
version: 1.6.2
dayjs:
specifier: 'catalog:'
- version: 1.11.13
+ version: 1.11.18
element-plus:
specifier: 'catalog:'
- version: 2.10.7(vue@3.5.18(typescript@5.9.2))
+ version: 2.11.2(vue@3.5.21(typescript@5.9.2))
highlight.js:
specifier: 'catalog:'
version: 11.11.1
pinia:
specifier: ^3.0.3
- version: 3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
+ version: 3.0.3(typescript@5.9.2)(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-dompurify-html:
specifier: 'catalog:'
- version: 5.3.0(vue@3.5.18(typescript@5.9.2))
+ version: 5.3.0(vue@3.5.21(typescript@5.9.2))
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
vuedraggable:
specifier: 'catalog:'
- version: 4.1.0(vue@3.5.18(typescript@5.9.2))
+ version: 4.1.0(vue@3.5.21(typescript@5.9.2))
devDependencies:
unplugin-element-plus:
specifier: 'catalog:'
@@ -902,10 +926,10 @@ importers:
dependencies:
'@form-create/antd-designer':
specifier: 'catalog:'
- version: 3.3.0(vue@3.5.18(typescript@5.9.2))
+ version: 3.3.1(vue@3.5.21(typescript@5.9.2))
'@form-create/naive-ui':
specifier: 'catalog:'
- version: 3.2.28(vue@3.5.18(typescript@5.9.2))
+ version: 3.2.30(vue@3.5.21(typescript@5.9.2))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -950,28 +974,28 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
cropperjs:
specifier: 'catalog:'
version: 1.6.2
dayjs:
specifier: 'catalog:'
- version: 1.11.13
+ version: 1.11.18
highlight.js:
specifier: 'catalog:'
version: 11.11.1
naive-ui:
specifier: 'catalog:'
- version: 2.42.0(vue@3.5.18(typescript@5.9.2))
+ version: 2.42.0(vue@3.5.21(typescript@5.9.2))
pinia:
specifier: ^3.0.3
- version: 3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
+ version: 3.0.3(typescript@5.9.2)(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
docs:
dependencies:
@@ -992,41 +1016,41 @@ importers:
version: link:../packages/styles
ant-design-vue:
specifier: 'catalog:'
- version: 4.2.6(vue@3.5.18(typescript@5.9.2))
+ version: 4.2.6(vue@3.5.21(typescript@5.9.2))
lucide-vue-next:
specifier: 'catalog:'
- version: 0.507.0(vue@3.5.18(typescript@5.9.2))
+ version: 0.507.0(vue@3.5.21(typescript@5.9.2))
medium-zoom:
specifier: 'catalog:'
version: 1.1.0
radix-vue:
specifier: 'catalog:'
- version: 1.9.17(vue@3.5.18(typescript@5.9.2))
+ version: 1.9.17(vue@3.5.21(typescript@5.9.2))
vitepress-plugin-group-icons:
specifier: 'catalog:'
- version: 1.6.3(markdown-it@14.1.0)(vite@5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1))
+ version: 1.6.3(markdown-it@14.1.0)(vite@5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0))
devDependencies:
'@nolebase/vitepress-plugin-git-changelog':
specifier: 'catalog:'
- version: 2.18.2(vitepress@1.6.4(@algolia/client-search@5.35.0)(@types/node@24.3.0)(async-validator@4.2.5)(axios@1.11.0)(jwt-decode@4.0.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.90.0)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.43.1)(typescript@5.9.2))(vue@3.5.18(typescript@5.9.2))
+ version: 2.18.2(vitepress@1.6.4(@algolia/client-search@5.37.0)(@types/node@24.3.1)(async-validator@4.2.5)(axios@1.11.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.92.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.2))(vue@3.5.21(typescript@5.9.2))
'@vben/vite-config':
specifier: workspace:*
version: link:../internal/vite-config
'@vite-pwa/vitepress':
specifier: 'catalog:'
- version: 1.0.0(vite-plugin-pwa@1.0.2(vite@5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1))(workbox-build@7.3.0)(workbox-window@7.3.0))
+ version: 1.0.0(vite-plugin-pwa@1.0.3(vite@5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0))
vitepress:
specifier: 'catalog:'
- version: 1.6.4(@algolia/client-search@5.35.0)(@types/node@24.3.0)(async-validator@4.2.5)(axios@1.11.0)(jwt-decode@4.0.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.90.0)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.43.1)(typescript@5.9.2)
+ version: 1.6.4(@algolia/client-search@5.37.0)(@types/node@24.3.1)(async-validator@4.2.5)(axios@1.11.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.92.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.2)
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
internal/lint-configs/commitlint-config:
dependencies:
'@commitlint/cli':
specifier: 'catalog:'
- version: 19.8.1(@types/node@24.3.0)(typescript@5.9.2)
+ version: 19.8.1(@types/node@24.3.1)(typescript@5.9.2)
'@commitlint/config-conventional':
specifier: 'catalog:'
version: 19.8.1
@@ -1047,65 +1071,65 @@ importers:
dependencies:
eslint-config-turbo:
specifier: 'catalog:'
- version: 2.5.6(eslint@9.33.0(jiti@2.5.1))(turbo@2.5.6)
+ version: 2.5.6(eslint@9.35.0(jiti@2.5.1))(turbo@2.5.6)
eslint-plugin-command:
specifier: 'catalog:'
- version: 3.3.1(eslint@9.33.0(jiti@2.5.1))
+ version: 3.3.1(eslint@9.35.0(jiti@2.5.1))
eslint-plugin-import-x:
specifier: 'catalog:'
- version: 4.16.1(@typescript-eslint/utils@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))
+ version: 4.16.1(@typescript-eslint/utils@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))
devDependencies:
'@eslint/js':
specifier: 'catalog:'
- version: 9.33.0
+ version: 9.35.0
'@types/eslint':
specifier: 'catalog:'
version: 9.6.1
'@typescript-eslint/eslint-plugin':
specifier: 'catalog:'
- version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
+ version: 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
'@typescript-eslint/parser':
specifier: 'catalog:'
- version: 8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
+ version: 8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
eslint:
specifier: 'catalog:'
- version: 9.33.0(jiti@2.5.1)
+ version: 9.35.0(jiti@2.5.1)
eslint-plugin-eslint-comments:
specifier: 'catalog:'
- version: 3.2.0(eslint@9.33.0(jiti@2.5.1))
+ version: 3.2.0(eslint@9.35.0(jiti@2.5.1))
eslint-plugin-jsdoc:
specifier: 'catalog:'
- version: 50.8.0(eslint@9.33.0(jiti@2.5.1))
+ version: 50.8.0(eslint@9.35.0(jiti@2.5.1))
eslint-plugin-jsonc:
specifier: 'catalog:'
- version: 2.20.1(eslint@9.33.0(jiti@2.5.1))
+ version: 2.20.1(eslint@9.35.0(jiti@2.5.1))
eslint-plugin-n:
specifier: 'catalog:'
- version: 17.21.3(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
+ version: 17.21.3(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
eslint-plugin-no-only-tests:
specifier: 'catalog:'
version: 3.3.0
eslint-plugin-perfectionist:
specifier: 'catalog:'
- version: 4.15.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
+ version: 4.15.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
eslint-plugin-prettier:
specifier: 'catalog:'
- version: 5.5.4(@types/eslint@9.6.1)(eslint@9.33.0(jiti@2.5.1))(prettier@3.6.2)
+ version: 5.5.4(@types/eslint@9.6.1)(eslint@9.35.0(jiti@2.5.1))(prettier@3.6.2)
eslint-plugin-regexp:
specifier: 'catalog:'
- version: 2.10.0(eslint@9.33.0(jiti@2.5.1))
+ version: 2.10.0(eslint@9.35.0(jiti@2.5.1))
eslint-plugin-unicorn:
specifier: 'catalog:'
- version: 59.0.1(eslint@9.33.0(jiti@2.5.1))
+ version: 59.0.1(eslint@9.35.0(jiti@2.5.1))
eslint-plugin-unused-imports:
specifier: 'catalog:'
- version: 4.2.0(@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))
+ version: 4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))
eslint-plugin-vitest:
specifier: 'catalog:'
- version: 0.5.4(@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)(vitest@3.2.4(@types/node@24.3.0)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ version: 0.5.4(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)(vitest@3.2.4(@types/node@24.3.1)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))
eslint-plugin-vue:
specifier: 'catalog:'
- version: 10.4.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.5.1)))
+ version: 10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.5.1)))
globals:
specifier: 'catalog:'
version: 16.3.0
@@ -1114,7 +1138,7 @@ importers:
version: 2.4.0
vue-eslint-parser:
specifier: 'catalog:'
- version: 10.2.0(eslint@9.33.0(jiti@2.5.1))
+ version: 10.2.0(eslint@9.35.0(jiti@2.5.1))
internal/lint-configs/prettier-config:
dependencies:
@@ -1129,13 +1153,13 @@ importers:
dependencies:
'@stylistic/stylelint-plugin':
specifier: 'catalog:'
- version: 3.1.3(stylelint@16.23.1(typescript@5.9.2))
+ version: 3.1.3(stylelint@16.24.0(typescript@5.9.2))
stylelint-config-recess-order:
specifier: 'catalog:'
- version: 6.1.0(stylelint@16.23.1(typescript@5.9.2))
+ version: 6.1.0(stylelint@16.24.0(typescript@5.9.2))
stylelint-scss:
specifier: 'catalog:'
- version: 6.12.1(stylelint@16.23.1(typescript@5.9.2))
+ version: 6.12.1(stylelint@16.24.0(typescript@5.9.2))
devDependencies:
postcss:
specifier: 'catalog:'
@@ -1151,25 +1175,25 @@ importers:
version: 3.6.2
stylelint:
specifier: 'catalog:'
- version: 16.23.1(typescript@5.9.2)
+ version: 16.24.0(typescript@5.9.2)
stylelint-config-recommended:
specifier: 'catalog:'
- version: 16.0.0(stylelint@16.23.1(typescript@5.9.2))
+ version: 16.0.0(stylelint@16.24.0(typescript@5.9.2))
stylelint-config-recommended-scss:
specifier: 'catalog:'
- version: 14.1.0(postcss@8.5.6)(stylelint@16.23.1(typescript@5.9.2))
+ version: 14.1.0(postcss@8.5.6)(stylelint@16.24.0(typescript@5.9.2))
stylelint-config-recommended-vue:
specifier: 'catalog:'
- version: 1.6.1(postcss-html@1.8.0)(stylelint@16.23.1(typescript@5.9.2))
+ version: 1.6.1(postcss-html@1.8.0)(stylelint@16.24.0(typescript@5.9.2))
stylelint-config-standard:
specifier: 'catalog:'
- version: 38.0.0(stylelint@16.23.1(typescript@5.9.2))
+ version: 38.0.0(stylelint@16.24.0(typescript@5.9.2))
stylelint-order:
specifier: 'catalog:'
- version: 7.0.0(stylelint@16.23.1(typescript@5.9.2))
+ version: 7.0.0(stylelint@16.24.0(typescript@5.9.2))
stylelint-prettier:
specifier: 'catalog:'
- version: 5.0.3(prettier@3.6.2)(stylelint@16.23.1(typescript@5.9.2))
+ version: 5.0.3(prettier@3.6.2)(stylelint@16.24.0(typescript@5.9.2))
internal/node-utils:
dependencies:
@@ -1187,7 +1211,7 @@ importers:
version: 3.4.2
dayjs:
specifier: 'catalog:'
- version: 1.11.13
+ version: 1.11.18
execa:
specifier: 'catalog:'
version: 9.6.0
@@ -1199,7 +1223,7 @@ importers:
version: 8.2.0
pkg-types:
specifier: 'catalog:'
- version: 2.2.0
+ version: 2.3.0
prettier:
specifier: 'catalog:'
version: 3.6.2
@@ -1211,7 +1235,7 @@ importers:
dependencies:
'@iconify/json':
specifier: 'catalog:'
- version: 2.2.376
+ version: 2.2.382
'@iconify/tailwind':
specifier: 'catalog:'
version: 1.2.0
@@ -1229,7 +1253,7 @@ importers:
version: 10.4.21(postcss@8.5.6)
cssnano:
specifier: 'catalog:'
- version: 7.1.0(postcss@8.5.6)
+ version: 7.1.1(postcss@8.5.6)
postcss:
specifier: 'catalog:'
version: 8.5.6
@@ -1241,7 +1265,7 @@ importers:
version: 16.1.1(postcss@8.5.6)
postcss-preset-env:
specifier: 'catalog:'
- version: 10.2.4(postcss@8.5.6)
+ version: 10.3.1(postcss@8.5.6)
tailwindcss:
specifier: 'catalog:'
version: 3.4.17
@@ -1260,16 +1284,16 @@ importers:
version: link:../../packages/types
vite:
specifier: 'catalog:'
- version: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ version: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
internal/vite-config:
dependencies:
'@intlify/unplugin-vue-i18n':
specifier: 'catalog:'
- version: 6.0.8(@vue/compiler-dom@3.5.18)(eslint@9.33.0(jiti@2.5.1))(rollup@4.46.3)(typescript@5.9.2)(vue-i18n@11.1.11(vue@3.5.18(typescript@5.9.2)))(vue@3.5.18(typescript@5.9.2))
+ version: 6.0.8(@vue/compiler-dom@3.5.21)(eslint@9.35.0(jiti@2.5.1))(rollup@4.50.1)(typescript@5.9.2)(vue-i18n@11.1.12(vue@3.5.21(typescript@5.9.2)))(vue@3.5.21(typescript@5.9.2))
'@jspm/generator':
specifier: 'catalog:'
- version: 2.6.3
+ version: 2.6.4
archiver:
specifier: 'catalog:'
version: 7.0.1
@@ -1284,16 +1308,16 @@ importers:
version: 7.2.0
nitropack:
specifier: 'catalog:'
- version: 2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13)
+ version: 2.12.5(encoding@0.1.13)
resolve.exports:
specifier: 'catalog:'
version: 2.0.3
vite-plugin-pwa:
specifier: 'catalog:'
- version: 1.0.2(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(workbox-build@7.3.0)(workbox-window@7.3.0)
+ version: 1.0.3(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(workbox-build@7.3.0)(workbox-window@7.3.0)
vite-plugin-vue-devtools:
specifier: 'catalog:'
- version: 7.7.7(rollup@4.46.3)(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))
+ version: 7.7.7(rollup@4.50.1)(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))
devDependencies:
'@pnpm/workspace.read-manifest':
specifier: 'catalog:'
@@ -1309,37 +1333,37 @@ importers:
version: link:../node-utils
'@vitejs/plugin-vue':
specifier: 'catalog:'
- version: 6.0.1(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))
+ version: 6.0.1(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))
'@vitejs/plugin-vue-jsx':
specifier: 'catalog:'
- version: 5.0.1(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))
+ version: 5.1.1(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))
dayjs:
specifier: 'catalog:'
- version: 1.11.13
+ version: 1.11.18
dotenv:
specifier: 'catalog:'
version: 16.6.1
rollup:
specifier: 'catalog:'
- version: 4.46.3
+ version: 4.50.1
rollup-plugin-visualizer:
specifier: 'catalog:'
- version: 5.14.0(rollup@4.46.3)
+ version: 5.14.0(rollup@4.50.1)
sass:
specifier: 'catalog:'
- version: 1.90.0
+ version: 1.92.1
vite:
specifier: 'catalog:'
- version: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ version: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
vite-plugin-compression:
specifier: 'catalog:'
- version: 0.5.1(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ version: 0.5.1(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))
vite-plugin-dts:
specifier: 'catalog:'
- version: 4.5.4(@types/node@24.3.0)(rollup@4.46.3)(typescript@5.9.2)(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ version: 4.5.4(@types/node@24.3.1)(rollup@4.50.1)(typescript@5.9.2)(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))
vite-plugin-html:
specifier: 'catalog:'
- version: 3.2.2(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ version: 3.2.2(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))
vite-plugin-lazy-import:
specifier: 'catalog:'
version: 1.0.7
@@ -1350,13 +1374,13 @@ importers:
dependencies:
'@iconify/vue':
specifier: 'catalog:'
- version: 5.0.0(vue@3.5.18(typescript@5.9.2))
+ version: 5.0.0(vue@3.5.21(typescript@5.9.2))
lucide-vue-next:
specifier: 'catalog:'
- version: 0.507.0(vue@3.5.18(typescript@5.9.2))
+ version: 0.507.0(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
packages/@core/base/shared:
dependencies:
@@ -1365,10 +1389,10 @@ importers:
version: 4.1.0
'@tanstack/vue-store':
specifier: 'catalog:'
- version: 0.7.3(vue@3.5.18(typescript@5.9.2))
+ version: 0.7.4(vue@3.5.21(typescript@5.9.2))
'@vue/shared':
specifier: 'catalog:'
- version: 3.5.18
+ version: 3.5.21
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -1377,7 +1401,7 @@ importers:
version: 4.2.0
dayjs:
specifier: 'catalog:'
- version: 1.11.13
+ version: 1.11.18
defu:
specifier: 'catalog:'
version: 6.1.4
@@ -1429,10 +1453,10 @@ importers:
dependencies:
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
packages/@core/composables:
dependencies:
@@ -1441,16 +1465,16 @@ importers:
version: link:../base/shared
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
radix-vue:
specifier: 'catalog:'
- version: 1.9.17(vue@3.5.18(typescript@5.9.2))
+ version: 1.9.17(vue@3.5.21(typescript@5.9.2))
sortablejs:
specifier: 'catalog:'
version: 1.15.6
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
devDependencies:
'@types/sortablejs':
specifier: 'catalog:'
@@ -1466,10 +1490,10 @@ importers:
version: link:../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
packages/@core/ui-kit/form-ui:
dependencies:
@@ -1490,16 +1514,16 @@ importers:
version: link:../../base/typings
'@vee-validate/zod':
specifier: 'catalog:'
- version: 4.15.1(vue@3.5.18(typescript@5.9.2))(zod@3.25.76)
+ version: 4.15.1(vue@3.5.21(typescript@5.9.2))(zod@3.25.76)
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
vee-validate:
specifier: 'catalog:'
- version: 4.15.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.15.1(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
zod:
specifier: 'catalog:'
version: 3.25.76
@@ -1526,10 +1550,10 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
packages/@core/ui-kit/menu-ui:
dependencies:
@@ -1550,10 +1574,10 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
packages/@core/ui-kit/popup-ui:
dependencies:
@@ -1574,10 +1598,10 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
packages/@core/ui-kit/shadcn-ui:
dependencies:
@@ -1595,22 +1619,22 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
class-variance-authority:
specifier: 'catalog:'
version: 0.7.1
lucide-vue-next:
specifier: 'catalog:'
- version: 0.507.0(vue@3.5.18(typescript@5.9.2))
+ version: 0.507.0(vue@3.5.21(typescript@5.9.2))
radix-vue:
specifier: 'catalog:'
- version: 1.9.17(vue@3.5.18(typescript@5.9.2))
+ version: 1.9.17(vue@3.5.21(typescript@5.9.2))
vee-validate:
specifier: 'catalog:'
- version: 4.15.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.15.1(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
packages/@core/ui-kit/tabs-ui:
dependencies:
@@ -1628,10 +1652,10 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
packages/constants:
dependencies:
@@ -1655,7 +1679,7 @@ importers:
version: link:../../utils
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
packages/effects/common-ui:
dependencies:
@@ -1691,10 +1715,10 @@ importers:
version: link:../../types
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
'@vueuse/integrations':
specifier: 'catalog:'
- version: 13.7.0(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(jwt-decode@4.0.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.21(typescript@5.9.2))
json-bigint:
specifier: 'catalog:'
version: 1.0.0
@@ -1706,16 +1730,16 @@ importers:
version: 6.3.7
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-json-viewer:
specifier: 'catalog:'
- version: 3.0.4(vue@3.5.18(typescript@5.9.2))
+ version: 3.0.4(vue@3.5.21(typescript@5.9.2))
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
vue-tippy:
specifier: 'catalog:'
- version: 6.7.1(vue@3.5.18(typescript@5.9.2))
+ version: 6.7.1(vue@3.5.21(typescript@5.9.2))
devDependencies:
'@types/qrcode':
specifier: 'catalog:'
@@ -1740,13 +1764,13 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
watermark-js-plus:
specifier: 'catalog:'
version: 1.6.3
@@ -1803,19 +1827,19 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
packages/effects/plugins:
dependencies:
'@tinyflow-ai/vue':
specifier: 'catalog:'
- version: 1.1.1(svelte@5.38.6)(vue@3.5.18(typescript@5.9.2))
+ version: 1.1.1(svelte@5.38.7)(vue@3.5.21(typescript@5.9.2))
'@vben-core/form-ui':
specifier: workspace:*
version: link:../../@core/ui-kit/form-ui
@@ -1845,10 +1869,10 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
'@vueuse/motion':
specifier: 'catalog:'
- version: 3.0.3(magicast@0.3.5)(vue@3.5.18(typescript@5.9.2))
+ version: 3.0.3(magicast@0.3.5)(vue@3.5.21(typescript@5.9.2))
echarts:
specifier: 'catalog:'
version: 5.6.0
@@ -1869,13 +1893,13 @@ importers:
version: 0.16.0(markmap-common@0.16.0)
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vxe-pc-ui:
specifier: 'catalog:'
- version: 4.8.22(vue@3.5.18(typescript@5.9.2))
+ version: 4.9.19(vue@3.5.21(typescript@5.9.2))
vxe-table:
specifier: 'catalog:'
- version: 4.15.10(vue@3.5.18(typescript@5.9.2))
+ version: 4.16.8(vue@3.5.21(typescript@5.9.2))
devDependencies:
'@types/markdown-it':
specifier: 'catalog:'
@@ -1916,16 +1940,16 @@ importers:
dependencies:
'@intlify/core-base':
specifier: 'catalog:'
- version: 11.1.11
+ version: 11.1.12
'@vben-core/composables':
specifier: workspace:*
version: link:../@core/composables
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-i18n:
specifier: 'catalog:'
- version: 11.1.11(vue@3.5.18(typescript@5.9.2))
+ version: 11.1.12(vue@3.5.21(typescript@5.9.2))
packages/preferences:
dependencies:
@@ -1949,19 +1973,19 @@ importers:
version: link:../@core/base/typings
pinia:
specifier: ^3.0.3
- version: 3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
+ version: 3.0.3(typescript@5.9.2)(vue@3.5.21(typescript@5.9.2))
pinia-plugin-persistedstate:
specifier: 'catalog:'
- version: 4.5.0(@nuxt/kit@3.18.1(magicast@0.3.5))(pinia@3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2)))
+ version: 4.5.0(@nuxt/kit@3.19.1(magicast@0.3.5))(pinia@3.0.3(typescript@5.9.2)(vue@3.5.21(typescript@5.9.2)))
secure-ls:
specifier: 'catalog:'
version: 2.0.0
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
packages/styles:
dependencies:
@@ -1976,10 +2000,10 @@ importers:
version: link:../@core/base/typings
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
packages/utils:
dependencies:
@@ -1991,13 +2015,13 @@ importers:
version: link:../@core/base/typings
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
playground:
dependencies:
'@tanstack/vue-query':
specifier: 'catalog:'
- version: 5.85.4(vue@3.5.18(typescript@5.9.2))
+ version: 5.87.1(vue@3.5.21(typescript@5.9.2))
'@vben-core/menu-ui':
specifier: workspace:*
version: link:../packages/@core/ui-kit/menu-ui
@@ -2045,25 +2069,25 @@ importers:
version: link:../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 13.7.0(vue@3.5.18(typescript@5.9.2))
+ version: 13.9.0(vue@3.5.21(typescript@5.9.2))
ant-design-vue:
specifier: 'catalog:'
- version: 4.2.6(vue@3.5.18(typescript@5.9.2))
+ version: 4.2.6(vue@3.5.21(typescript@5.9.2))
dayjs:
specifier: 'catalog:'
- version: 1.11.13
+ version: 1.11.18
json-bigint:
specifier: 'catalog:'
version: 1.0.0
pinia:
specifier: ^3.0.3
- version: 3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
+ version: 3.0.3(typescript@5.9.2)(vue@3.5.21(typescript@5.9.2))
vue:
specifier: ^3.5.17
- version: 3.5.18(typescript@5.9.2)
+ version: 3.5.21(typescript@5.9.2)
vue-router:
specifier: 'catalog:'
- version: 4.5.1(vue@3.5.18(typescript@5.9.2))
+ version: 4.5.1(vue@3.5.21(typescript@5.9.2))
devDependencies:
'@types/json-bigint':
specifier: 'catalog:'
@@ -2101,8 +2125,8 @@ importers:
packages:
- '@algolia/abtesting@1.1.0':
- resolution: {integrity: sha512-sEyWjw28a/9iluA37KLGu8vjxEIlb60uxznfTUmXImy7H5NvbpSO6yYgmgH5KiD7j+zTUUihiST0jEP12IoXow==}
+ '@algolia/abtesting@1.3.0':
+ resolution: {integrity: sha512-KqPVLdVNfoJzX5BKNGM9bsW8saHeyax8kmPFXul5gejrSPN3qss7PgsFH5mMem7oR8tvjvNkia97ljEYPYCN8Q==}
engines: {node: '>= 14.0.0'}
'@algolia/autocomplete-core@1.17.7':
@@ -2125,66 +2149,62 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/client-abtesting@5.35.0':
- resolution: {integrity: sha512-uUdHxbfHdoppDVflCHMxRlj49/IllPwwQ2cQ8DLC4LXr3kY96AHBpW0dMyi6ygkn2MtFCc6BxXCzr668ZRhLBQ==}
+ '@algolia/client-abtesting@5.37.0':
+ resolution: {integrity: sha512-Dp2Zq+x9qQFnuiQhVe91EeaaPxWBhzwQ6QnznZQnH9C1/ei3dvtmAFfFeaTxM6FzfJXDLvVnaQagTYFTQz3R5g==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-analytics@5.35.0':
- resolution: {integrity: sha512-SunAgwa9CamLcRCPnPHx1V2uxdQwJGqb1crYrRWktWUdld0+B2KyakNEeVn5lln4VyeNtW17Ia7V7qBWyM/Skw==}
+ '@algolia/client-analytics@5.37.0':
+ resolution: {integrity: sha512-wyXODDOluKogTuZxRII6mtqhAq4+qUR3zIUJEKTiHLe8HMZFxfUEI4NO2qSu04noXZHbv/sRVdQQqzKh12SZuQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-common@5.35.0':
- resolution: {integrity: sha512-ipE0IuvHu/bg7TjT2s+187kz/E3h5ssfTtjpg1LbWMgxlgiaZIgTTbyynM7NfpSJSKsgQvCQxWjGUO51WSCu7w==}
+ '@algolia/client-common@5.37.0':
+ resolution: {integrity: sha512-GylIFlPvLy9OMgFG8JkonIagv3zF+Dx3H401Uo2KpmfMVBBJiGfAb9oYfXtplpRMZnZPxF5FnkWaI/NpVJMC+g==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-insights@5.35.0':
- resolution: {integrity: sha512-UNbCXcBpqtzUucxExwTSfAe8gknAJ485NfPN6o1ziHm6nnxx97piIbcBQ3edw823Tej2Wxu1C0xBY06KgeZ7gA==}
+ '@algolia/client-insights@5.37.0':
+ resolution: {integrity: sha512-T63afO2O69XHKw2+F7mfRoIbmXWGzgpZxgOFAdP3fR4laid7pWBt20P4eJ+Zn23wXS5kC9P2K7Bo3+rVjqnYiw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@5.35.0':
- resolution: {integrity: sha512-/KWjttZ6UCStt4QnWoDAJ12cKlQ+fkpMtyPmBgSS2WThJQdSV/4UWcqCUqGH7YLbwlj3JjNirCu3Y7uRTClxvA==}
+ '@algolia/client-personalization@5.37.0':
+ resolution: {integrity: sha512-1zOIXM98O9zD8bYDCJiUJRC/qNUydGHK/zRK+WbLXrW1SqLFRXECsKZa5KoG166+o5q5upk96qguOtE8FTXDWQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-query-suggestions@5.35.0':
- resolution: {integrity: sha512-8oCuJCFf/71IYyvQQC+iu4kgViTODbXDk3m7yMctEncRSRV+u2RtDVlpGGfPlJQOrAY7OONwJlSHkmbbm2Kp/w==}
+ '@algolia/client-query-suggestions@5.37.0':
+ resolution: {integrity: sha512-31Nr2xOLBCYVal+OMZn1rp1H4lPs1914Tfr3a34wU/nsWJ+TB3vWjfkUUuuYhWoWBEArwuRzt3YNLn0F/KRVkg==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-search@5.35.0':
- resolution: {integrity: sha512-FfmdHTrXhIduWyyuko1YTcGLuicVbhUyRjO3HbXE4aP655yKZgdTIfMhZ/V5VY9bHuxv/fGEh3Od1Lvv2ODNTg==}
+ '@algolia/client-search@5.37.0':
+ resolution: {integrity: sha512-DAFVUvEg+u7jUs6BZiVz9zdaUebYULPiQ4LM2R4n8Nujzyj7BZzGr2DCd85ip4p/cx7nAZWKM8pLcGtkTRTdsg==}
engines: {node: '>= 14.0.0'}
- '@algolia/ingestion@1.35.0':
- resolution: {integrity: sha512-gPzACem9IL1Co8mM1LKMhzn1aSJmp+Vp434An4C0OBY4uEJRcqsLN3uLBlY+bYvFg8C8ImwM9YRiKczJXRk0XA==}
+ '@algolia/ingestion@1.37.0':
+ resolution: {integrity: sha512-pkCepBRRdcdd7dTLbFddnu886NyyxmhgqiRcHHaDunvX03Ij4WzvouWrQq7B7iYBjkMQrLS8wQqSP0REfA4W8g==}
engines: {node: '>= 14.0.0'}
- '@algolia/monitoring@1.35.0':
- resolution: {integrity: sha512-w9MGFLB6ashI8BGcQoVt7iLgDIJNCn4OIu0Q0giE3M2ItNrssvb8C0xuwJQyTy1OFZnemG0EB1OvXhIHOvQwWw==}
+ '@algolia/monitoring@1.37.0':
+ resolution: {integrity: sha512-fNw7pVdyZAAQQCJf1cc/ih4fwrRdQSgKwgor4gchsI/Q/ss9inmC6bl/69jvoRSzgZS9BX4elwHKdo0EfTli3w==}
engines: {node: '>= 14.0.0'}
- '@algolia/recommend@5.35.0':
- resolution: {integrity: sha512-AhrVgaaXAb8Ue0u2nuRWwugt0dL5UmRgS9LXe0Hhz493a8KFeZVUE56RGIV3hAa6tHzmAV7eIoqcWTQvxzlJeQ==}
+ '@algolia/recommend@5.37.0':
+ resolution: {integrity: sha512-U+FL5gzN2ldx3TYfQO5OAta2TBuIdabEdFwD5UVfWPsZE5nvOKkc/6BBqP54Z/adW/34c5ZrvvZhlhNTZujJXQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-browser-xhr@5.35.0':
- resolution: {integrity: sha512-diY415KLJZ6x1Kbwl9u96Jsz0OstE3asjXtJ9pmk1d+5gPuQ5jQyEsgC+WmEXzlec3iuVszm8AzNYYaqw6B+Zw==}
+ '@algolia/requester-browser-xhr@5.37.0':
+ resolution: {integrity: sha512-Ao8GZo8WgWFABrU7iq+JAftXV0t+UcOtCDL4mzHHZ+rQeTTf1TZssr4d0vIuoqkVNnKt9iyZ7T4lQff4ydcTrw==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-fetch@5.35.0':
- resolution: {integrity: sha512-uydqnSmpAjrgo8bqhE9N1wgcB98psTRRQXcjc4izwMB7yRl9C8uuAQ/5YqRj04U0mMQ+fdu2fcNF6m9+Z1BzDQ==}
+ '@algolia/requester-fetch@5.37.0':
+ resolution: {integrity: sha512-H7OJOXrFg5dLcGJ22uxx8eiFId0aB9b0UBhoOi4SMSuDBe6vjJJ/LeZyY25zPaSvkXNBN3vAM+ad6M0h6ha3AA==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@5.35.0':
- resolution: {integrity: sha512-RgLX78ojYOrThJHrIiPzT4HW3yfQa0D7K+MQ81rhxqaNyNBu4F1r+72LNHYH/Z+y9I1Mrjrd/c/Ue5zfDgAEjQ==}
+ '@algolia/requester-node-http@5.37.0':
+ resolution: {integrity: sha512-npZ9aeag4SGTx677eqPL3rkSPlQrnzx/8wNrl1P7GpWq9w/eTmRbOq+wKrJ2r78idlY0MMgmY/mld2tq6dc44g==}
engines: {node: '>= 14.0.0'}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
- '@ampproject/remapping@2.3.0':
- resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
- engines: {node: '>=6.0.0'}
-
'@ant-design/colors@6.0.0':
resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==}
@@ -2277,12 +2297,12 @@ packages:
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.28.0':
- resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
+ '@babel/compat-data@7.28.4':
+ resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.28.3':
- resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==}
+ '@babel/core@7.28.4':
+ resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.28.3':
@@ -2372,12 +2392,12 @@ packages:
resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.28.3':
- resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==}
+ '@babel/helpers@7.28.4':
+ resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.28.3':
- resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==}
+ '@babel/parser@7.28.4':
+ resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -2488,8 +2508,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.28.0':
- resolution: {integrity: sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==}
+ '@babel/plugin-transform-block-scoping@7.28.4':
+ resolution: {integrity: sha512-1yxmvN0MJHOhPVmAsmoW5liWwoILobu/d/ShymZmj867bAdxGbehIrew1DuLpw2Ukv+qDSSPQdYW1dLNE7t11A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2506,8 +2526,8 @@ packages:
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.28.3':
- resolution: {integrity: sha512-DoEWC5SuxuARF2KdKmGUq3ghfPMO6ZzR12Dnp5gubwbeWJo4dbNWXJPVlwvh4Zlq6Z7YVvL8VFxeSOJgjsx4Sg==}
+ '@babel/plugin-transform-classes@7.28.4':
+ resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2650,8 +2670,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.28.0':
- resolution: {integrity: sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==}
+ '@babel/plugin-transform-object-rest-spread@7.28.4':
+ resolution: {integrity: sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2698,8 +2718,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.28.3':
- resolution: {integrity: sha512-K3/M/a4+ESb5LEldjQb+XSrpY0nF+ZBFlTCbSnKaYAMfD8v33O6PMs4uYnOk19HlcsI8WMu3McdFPTiQHF/1/A==}
+ '@babel/plugin-transform-regenerator@7.28.4':
+ resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2793,29 +2813,56 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime-corejs3@7.28.3':
- resolution: {integrity: sha512-LKYxD2CIfocUFNREQ1yk+dW+8OH8CRqmgatBZYXb+XhuObO8wsDpEoCNri5bKld9cnj8xukqZjxSX8p1YiRF8Q==}
+ '@babel/runtime-corejs3@7.28.4':
+ resolution: {integrity: sha512-h7iEYiW4HebClDEhtvFObtPmIvrd1SSfpI9EhOeKk4CtIK/ngBWFpuhCzhdmRKtg71ylcue+9I6dv54XYO1epQ==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.28.3':
- resolution: {integrity: sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==}
+ '@babel/runtime@7.28.4':
+ resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.28.3':
- resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==}
+ '@babel/traverse@7.28.4':
+ resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.28.0':
- resolution: {integrity: sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==}
+ '@babel/types@7.28.4':
+ resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.28.2':
- resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
- engines: {node: '>=6.9.0'}
+ '@bpmn-io/cm-theme@0.1.0-alpha.2':
+ resolution: {integrity: sha512-ZILgiYzxk3KMvxplUXmdRFQo45/JehDPg5k9tWfehmzUOSE13ssyLPil8uCloMQnb3yyzyOWTjb/wzKXTHlFQw==}
+
+ '@bpmn-io/diagram-js-ui@0.2.3':
+ resolution: {integrity: sha512-OGyjZKvGK8tHSZ0l7RfeKhilGoOGtFDcoqSGYkX0uhFlo99OVZ9Jn1K7TJGzcE9BdKwvA5Y5kGqHEhdTxHvFfw==}
+
+ '@bpmn-io/extract-process-variables@0.8.0':
+ resolution: {integrity: sha512-yAS7ZYX+D56K+luC36u96eRMLb4VHcPUwTUqMZ/Z/Je2gou2DJLRbuBTHAB4jjKt4wFCHSG4B8Y+TrBciEYf4w==}
+
+ '@bpmn-io/feel-editor@1.12.0':
+ resolution: {integrity: sha512-l19PUPZX4DurVNZF06x3mJ0jBNnVpEJTP4tTzVBpgxofxRDWemDjfHWlY+gsuW4QFFGjVL3hV5IIEiZp/oA3Kw==}
+ engines: {node: '>= 16'}
+
+ '@bpmn-io/feel-lint@1.4.0':
+ resolution: {integrity: sha512-1bsdR/9vPD7RQVqWWPk0X0tpjLsYTDrCxIzOVtN/h32o4nPGl0dZBU5m07qaFUGD4wG3eOH4Qim1wexHG8YkBw==}
+
+ '@bpmn-io/feel-lint@2.1.0':
+ resolution: {integrity: sha512-fUGye6KppyowiwUqlfRHpMtXQ8so8jv1rh2LEQp+fhKf+WeLkbokmQwXZbCQe/4Kam/OLQRlx+p3Qnu0IrZQ6A==}
+
+ '@bpmn-io/lang-feel@2.4.0':
+ resolution: {integrity: sha512-0c1pratAD/YTOaivwLd7MljT0/MoDUMpfm87JbtAOBvivRfEr8mel5l8Ig3kgpYJ+xkznLaA9s79ZDKLh/O8ag==}
+
+ '@bpmn-io/lezer-feel@1.9.0':
+ resolution: {integrity: sha512-mV+pj+x0++9zT5/RkOOUNtkT2hpKpGWbXuFR8trJlvJeRe1dL/5yPal/RBcnk3z73tILK4kP6LzXelcsshQCEw==}
+
+ '@bpmn-io/properties-panel@3.33.0':
+ resolution: {integrity: sha512-I41JNpfX7zzKTOpmB84ETt8dnyE4OLDtzNmQBN6m3wEnfFw19VuBa7C0XXMtF/Us1zvy3yFx+dAH//Hgg9e0uQ==}
+
+ '@camunda/feel-builtins@0.2.0':
+ resolution: {integrity: sha512-Jusm8x3Onqze9E5Y0lGGdPj66bnFKLYNwDz+uG4otsEXgSL0FpF+koGHK48LkF9Jqo67KaP1y3zr2y/HIWRePw==}
'@changesets/apply-release-plan@7.0.12':
resolution: {integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==}
@@ -2888,9 +2935,23 @@ packages:
resolution: {integrity: sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==}
engines: {node: '>=18.0.0'}
- '@colors/colors@1.6.0':
- resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==}
- engines: {node: '>=0.1.90'}
+ '@codemirror/autocomplete@6.18.7':
+ resolution: {integrity: sha512-8EzdeIoWPJDsMBwz3zdzwXnUpCzMiCyz5/A3FIPpriaclFCGDkAzK13sMcnsu5rowqiyeQN2Vs2TsOcoDPZirQ==}
+
+ '@codemirror/commands@6.8.1':
+ resolution: {integrity: sha512-KlGVYufHMQzxbdQONiLyGQDUW0itrLZwq3CcY7xpv9ZLRHqzkBSoteocBHtMCoY7/Ci4xhzSrToIeLg7FxHuaw==}
+
+ '@codemirror/language@6.11.3':
+ resolution: {integrity: sha512-9HBM2XnwDj7fnu0551HkGdrUrrqmYq/WC5iv6nbY2WdicXdGbhR/gfbZOH73Aqj4351alY1+aoG9rCNfiwS1RA==}
+
+ '@codemirror/lint@6.8.5':
+ resolution: {integrity: sha512-s3n3KisH7dx3vsoeGMxsbRAgKe4O1vbrnKBClm99PU0fWxmxsx5rR2PfqQgIt+2MMJBHbiJ5rfIdLYfB9NNvsA==}
+
+ '@codemirror/state@6.5.2':
+ resolution: {integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==}
+
+ '@codemirror/view@6.38.2':
+ resolution: {integrity: sha512-bTWAJxL6EOFLPzTx+O5P5xAO3gTqpatQ2b/ARQ8itfU/v2LlpS3pH2fkL0A3E/Fx8Y2St2KES7ZEV0sHTsSW/A==}
'@commitlint/cli@19.8.1':
resolution: {integrity: sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA==}
@@ -2991,17 +3052,17 @@ packages:
'@cspell/dict-al@1.1.1':
resolution: {integrity: sha512-sD8GCaZetgQL4+MaJLXqbzWcRjfKVp8x+px3HuCaaiATAAtvjwUQ5/Iubiqwfd1boIh2Y1/3EgM3TLQ7Q8e0wQ==}
- '@cspell/dict-aws@4.0.14':
- resolution: {integrity: sha512-qLPR+OFmpzyUcuUYyCQFIURDDUGIlQsdGirPyvaIrXxs2giCKG97cAuFz5EleL3/Lo7uJAVDw0lt4Ka7wIRhjQ==}
+ '@cspell/dict-aws@4.0.15':
+ resolution: {integrity: sha512-aPY7VVR5Os4rz36EaqXBAEy14wR4Rqv+leCJ2Ug/Gd0IglJpM30LalF3e2eJChnjje3vWoEC0Rz3+e5gpZG+Kg==}
'@cspell/dict-bash@4.2.1':
resolution: {integrity: sha512-SBnzfAyEAZLI9KFS7DUG6Xc1vDFuLllY3jz0WHvmxe8/4xV3ufFE3fGxalTikc1VVeZgZmxYiABw4iGxVldYEg==}
- '@cspell/dict-companies@3.2.4':
- resolution: {integrity: sha512-36NoOjW3Vl1Sl+ccEvD6NDA4YhaKo2mg2zAyah8n7tpaFXf5QNBlnZsPCgRwPM6aG1UfN30jiyd2hIVOeoKj9A==}
+ '@cspell/dict-companies@3.2.5':
+ resolution: {integrity: sha512-H51R0w7c6RwJJPqH7Gs65tzP6ouZsYDEHmmol6MIIk0kQaOIBuFP2B3vIxHLUr2EPRVFZsMW8Ni7NmVyaQlwsg==}
- '@cspell/dict-cpp@6.0.9':
- resolution: {integrity: sha512-Xdq9MwGh0D5rsnbOqFW24NIClXXRhN11KJdySMibpcqYGeomxB2ODFBuhj1H7azO7kVGkGH0Okm4yQ2TRzBx0g==}
+ '@cspell/dict-cpp@6.0.12':
+ resolution: {integrity: sha512-N4NsCTttVpMqQEYbf0VQwCj6np+pJESov0WieCN7R/0aByz4+MXEiDieWWisaiVi8LbKzs1mEj4ZTw5K/6O2UQ==}
'@cspell/dict-cryptocurrencies@5.0.5':
resolution: {integrity: sha512-R68hYYF/rtlE6T/dsObStzN5QZw+0aQBinAXuWCVqwdS7YZo0X33vGMfChkHaiCo3Z2+bkegqHlqxZF4TD3rUA==}
@@ -3030,14 +3091,14 @@ packages:
'@cspell/dict-elixir@4.0.8':
resolution: {integrity: sha512-CyfphrbMyl4Ms55Vzuj+mNmd693HjBFr9hvU+B2YbFEZprE5AG+EXLYTMRWrXbpds4AuZcvN3deM2XVB80BN/Q==}
- '@cspell/dict-en-common-misspellings@2.1.3':
- resolution: {integrity: sha512-v1I97Hr1OrK+mwHsVzbY4vsPxx6mA5quhxzanF6XuRofz00wH4HPz8Q3llzRHxka5Wl/59gyan04UkUrvP4gdA==}
+ '@cspell/dict-en-common-misspellings@2.1.6':
+ resolution: {integrity: sha512-xV9yryOqZizbSqxRS7kSVRrxVEyWHUqwdY56IuT7eAWGyTCJNmitXzXa4p+AnEbhL+AB2WLynGVSbNoUC3ceFA==}
'@cspell/dict-en-gb@1.1.33':
resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==}
- '@cspell/dict-en_us@4.4.16':
- resolution: {integrity: sha512-/R47sUbUmba2dG/0LZyE6P6gX/DRF1sCcYNQNWyPk/KeidQRNZG+FH9U0KRvX42/2ZzMge6ebXH3WAJ52w0Vqw==}
+ '@cspell/dict-en_us@4.4.19':
+ resolution: {integrity: sha512-JYYgzhGqSGuIMNY1cTlmq3zrNpehrExMHqLmLnSM2jEGFeHydlL+KLBwBYxMy4e73w+p1+o/rmAiGsMj9g3MCw==}
'@cspell/dict-filetypes@3.0.13':
resolution: {integrity: sha512-g6rnytIpQlMNKGJT1JKzWkC+b3xCliDKpQ3ANFSq++MnR4GaLiifaC4JkVON11Oh/UTplYOR1nY3BR4X30bswA==}
@@ -3113,8 +3174,8 @@ packages:
'@cspell/dict-node@5.0.8':
resolution: {integrity: sha512-AirZcN2i84ynev3p2/1NCPEhnNsHKMz9zciTngGoqpdItUb2bDt1nJBjwlsrFI78GZRph/VaqTVFwYikmncpXg==}
- '@cspell/dict-npm@5.2.14':
- resolution: {integrity: sha512-amZCBJIqzRmPq5uKh0v2fdejt9AJQsQwx0spPFQaBZ2cRoE6qlqstPWLLc5lhz668QgSQeZ7mlURtCEWWlOtPw==}
+ '@cspell/dict-npm@5.2.17':
+ resolution: {integrity: sha512-0yp7lBXtN3CtxBrpvTu/yAuPdOHR2ucKzPxdppc3VKO068waZNpKikn1NZCzBS3dIAFGVITzUPtuTXxt9cxnSg==}
'@cspell/dict-php@4.0.15':
resolution: {integrity: sha512-iepGB2gtToMWSTvybesn4/lUp4LwXcEm0s8vasJLP76WWVkq1zYjmeS+WAIzNgsuURyZ/9mGqhS0CWMuo74ODw==}
@@ -3143,8 +3204,8 @@ packages:
'@cspell/dict-shell@1.1.1':
resolution: {integrity: sha512-T37oYxE7OV1x/1D4/13Y8JZGa1QgDCXV7AVt3HLXjn0Fe3TaNDvf5sU0fGnXKmBPqFFrHdpD3uutAQb1dlp15g==}
- '@cspell/dict-software-terms@5.1.5':
- resolution: {integrity: sha512-MX5beBP3pLmIM0mjqfrHbie3EEfyLWZ8ZqW56jcLuRlLoDcfC0FZsr66NCARgCgEwsWiidHFe87+7fFsnwqY6A==}
+ '@cspell/dict-software-terms@5.1.8':
+ resolution: {integrity: sha512-iwCHLP11OmVHEX2MzE8EPxpPw7BelvldxWe5cJ3xXIDL8TjF2dBTs2noGcrqnZi15SLYIlO8897BIOa33WHHZA==}
'@cspell/dict-sql@2.2.1':
resolution: {integrity: sha512-qDHF8MpAYCf4pWU8NKbnVGzkoxMNrFqBHyG/dgrlic5EQiKANCLELYtGlX5auIMDLmTf1inA0eNtv74tyRJ/vg==}
@@ -3197,8 +3258,8 @@ packages:
'@csstools/css-parser-algorithms': ^3.0.5
'@csstools/css-tokenizer': ^3.0.4
- '@csstools/color-helpers@5.0.2':
- resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==}
+ '@csstools/color-helpers@5.1.0':
+ resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
engines: {node: '>=18'}
'@csstools/css-calc@2.1.4':
@@ -3208,8 +3269,8 @@ packages:
'@csstools/css-parser-algorithms': ^3.0.5
'@csstools/css-tokenizer': ^3.0.4
- '@csstools/css-color-parser@3.0.10':
- resolution: {integrity: sha512-TiJ5Ajr6WRd1r8HSiwJvZBiJOqtH86aHpUjq5aEKWHiII2Qfjqd/HCWKPOW8EP4vcspXbHnXrwIDlu5savQipg==}
+ '@csstools/css-color-parser@3.1.0':
+ resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.5
@@ -3239,32 +3300,44 @@ packages:
'@csstools/css-parser-algorithms': ^3.0.5
'@csstools/css-tokenizer': ^3.0.4
+ '@csstools/postcss-alpha-function@1.0.0':
+ resolution: {integrity: sha512-r2L8KNg5Wriq5n8IUQcjzy2Rh37J5YjzP9iOyHZL5fxdWYHB08vqykHQa4wAzN/tXwDuCHnhQDGCtxfS76xn7g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
'@csstools/postcss-cascade-layers@5.0.2':
resolution: {integrity: sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-color-function@4.0.10':
- resolution: {integrity: sha512-4dY0NBu7NVIpzxZRgh/Q/0GPSz/jLSw0i/u3LTUor0BkQcz/fNhN10mSWBDsL0p9nDb0Ky1PD6/dcGbhACuFTQ==}
+ '@csstools/postcss-color-function-display-p3-linear@1.0.0':
+ resolution: {integrity: sha512-7q+OuUqfowRrP84m/Jl0wv3pfCQyUTCW5MxDIux+/yty5IkUUHOTigCjrC0Fjy3OT0ncGLudHbfLWmP7E1arNA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss: ^8.4
+
+ '@csstools/postcss-color-function@4.0.11':
+ resolution: {integrity: sha512-AtH22zLHTLm64HLdpv5EedT/zmYTm1MtdQbQhRZXxEB6iYtS6SrS1jLX3TcmUWMFzpumK/OVylCm3HcLms4slw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-color-mix-function@3.0.10':
- resolution: {integrity: sha512-P0lIbQW9I4ShE7uBgZRib/lMTf9XMjJkFl/d6w4EMNHu2qvQ6zljJGEcBkw/NsBtq/6q3WrmgxSS8kHtPMkK4Q==}
+ '@csstools/postcss-color-mix-function@3.0.11':
+ resolution: {integrity: sha512-cQpXBelpTx0YhScZM5Ve0jDCA4RzwFc7oNafzZOGgCHt/GQVYiU8Vevz9QJcwy/W0Pyi/BneY+KMjz23lI9r+Q==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-color-mix-variadic-function-arguments@1.0.0':
- resolution: {integrity: sha512-Z5WhouTyD74dPFPrVE7KydgNS9VvnjB8qcdes9ARpCOItb4jTnm7cHp4FhxCRUoyhabD0WVv43wbkJ4p8hLAlQ==}
+ '@csstools/postcss-color-mix-variadic-function-arguments@1.0.1':
+ resolution: {integrity: sha512-c7hyBtbF+jlHIcUGVdWY06bHICgguV9ypfcELU3eU3W/9fiz2dxM8PqxQk2ndXYTzLnwPvNNqu1yCmQ++N6Dcg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-content-alt-text@2.0.6':
- resolution: {integrity: sha512-eRjLbOjblXq+byyaedQRSrAejKGNAFued+LcbzT+LCL78fabxHkxYjBbxkroONxHHYu2qxhFK2dBStTLPG3jpQ==}
+ '@csstools/postcss-content-alt-text@2.0.7':
+ resolution: {integrity: sha512-cq/zWaEkpcg3RttJ5+GdNwk26NwxY5KgqgtNL777Fdd28AVGHxuBvqmK4Jq4oKhW1NX4M2LbgYAVVN0NZ+/XYQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -3281,26 +3354,26 @@ packages:
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-gamut-mapping@2.0.10':
- resolution: {integrity: sha512-QDGqhJlvFnDlaPAfCYPsnwVA6ze+8hhrwevYWlnUeSjkkZfBpcCO42SaUD8jiLlq7niouyLgvup5lh+f1qessg==}
+ '@csstools/postcss-gamut-mapping@2.0.11':
+ resolution: {integrity: sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-gradients-interpolation-method@5.0.10':
- resolution: {integrity: sha512-HHPauB2k7Oits02tKFUeVFEU2ox/H3OQVrP3fSOKDxvloOikSal+3dzlyTZmYsb9FlY9p5EUpBtz0//XBmy+aw==}
+ '@csstools/postcss-gradients-interpolation-method@5.0.11':
+ resolution: {integrity: sha512-8M3mcNTL3cGIJXDnvrJ2oWEcKi3zyw7NeYheFKePUlBmLYm1gkw9Rr/BA7lFONrOPeQA3yeMPldrrws6lqHrug==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-hwb-function@4.0.10':
- resolution: {integrity: sha512-nOKKfp14SWcdEQ++S9/4TgRKchooLZL0TUFdun3nI4KPwCjETmhjta1QT4ICQcGVWQTvrsgMM/aLB5We+kMHhQ==}
+ '@csstools/postcss-hwb-function@4.0.11':
+ resolution: {integrity: sha512-9meZbsVWTZkWsSBazQips3cHUOT29a/UAwFz0AMEXukvpIGGDR9+GMl3nIckWO5sPImsadu4F5Zy+zjt8QgCdA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-ic-unit@4.0.2':
- resolution: {integrity: sha512-lrK2jjyZwh7DbxaNnIUjkeDmU8Y6KyzRBk91ZkI5h8nb1ykEfZrtIVArdIjX4DHMIBGpdHrgP0n4qXDr7OHaKA==}
+ '@csstools/postcss-ic-unit@4.0.3':
+ resolution: {integrity: sha512-RtYYm2qUIu9vAaHB0cC8rQGlOCQAUgEc2tMr7ewlGXYipBQKjoWmyVArqsk7SEr8N3tErq6P6UOJT3amaVof5Q==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -3317,8 +3390,8 @@ packages:
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-light-dark-function@2.0.9':
- resolution: {integrity: sha512-1tCZH5bla0EAkFAI2r0H33CDnIBeLUaJh1p+hvvsylJ4svsv2wOmJjJn+OXwUZLXef37GYbRIVKX+X+g6m+3CQ==}
+ '@csstools/postcss-light-dark-function@2.0.10':
+ resolution: {integrity: sha512-g7Lwb294lSoNnyrwcqoooh9fTAp47rRNo+ILg7SLRSMU3K9ePIwRt566sNx+pehiCelv4E1ICaU1EwLQuyF2qw==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -3377,14 +3450,14 @@ packages:
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-oklab-function@4.0.10':
- resolution: {integrity: sha512-ZzZUTDd0fgNdhv8UUjGCtObPD8LYxMH+MJsW9xlZaWTV8Ppr4PtxlHYNMmF4vVWGl0T6f8tyWAKjoI6vePSgAg==}
+ '@csstools/postcss-oklab-function@4.0.11':
+ resolution: {integrity: sha512-9f03ZGxZ2VmSCrM4SDXlAYP+Xpu4VFzemfQUQFL9OYxAbpvDy0FjDipZ0i8So1pgs8VIbQI0bNjFWgfdpGw8ig==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-progressive-custom-properties@4.1.0':
- resolution: {integrity: sha512-YrkI9dx8U4R8Sz2EJaoeD9fI7s7kmeEBfmO+UURNeL6lQI7VxF6sBE+rSqdCBn4onwqmxFdBU3lTwyYb/lCmxA==}
+ '@csstools/postcss-progressive-custom-properties@4.2.0':
+ resolution: {integrity: sha512-fWCXRasX17N1NCPTCuwC3FJDV+Wc031f16cFuuMEfIsYJ1q5ABCa59W0C6VeMGqjNv6ldf37vvwXXAeaZjD9PA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -3395,8 +3468,8 @@ packages:
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-relative-color-syntax@3.0.10':
- resolution: {integrity: sha512-8+0kQbQGg9yYG8hv0dtEpOMLwB9M+P7PhacgIzVzJpixxV4Eq9AUQtQw8adMmAJU1RBBmIlpmtmm3XTRd/T00g==}
+ '@csstools/postcss-relative-color-syntax@3.0.11':
+ resolution: {integrity: sha512-oQ5fZvkcBrWR+k6arHXk0F8FlkmD4IxM+rcGDLWrF2f31tWyEM3lSraeWAV0f7BGH6LIrqmyU3+Qo/1acfoJng==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -3419,8 +3492,8 @@ packages:
peerDependencies:
postcss: ^8.4
- '@csstools/postcss-text-decoration-shorthand@4.0.2':
- resolution: {integrity: sha512-8XvCRrFNseBSAGxeaVTaNijAu+FzUvjwFXtcrynmazGb/9WUdsPCpBX+mHEHShVRq47Gy4peYAoxYs8ltUnmzA==}
+ '@csstools/postcss-text-decoration-shorthand@4.0.3':
+ resolution: {integrity: sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -3459,13 +3532,6 @@ packages:
resolution: {integrity: sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==}
engines: {node: '>=14'}
- '@dabh/diagnostics@2.0.3':
- resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==}
-
- '@dependents/detective-less@5.0.1':
- resolution: {integrity: sha512-Y6+WUMsTFWE5jb20IFP4YGa5IrGY/+a/FbOSjDF/wz9gepU2hwCYSXRHP/vPwBvwcY3SVMASt4yXxbXNXigmZQ==}
- engines: {node: '>=18'}
-
'@docsearch/css@3.8.2':
resolution: {integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==}
@@ -3489,22 +3555,22 @@ packages:
search-insights:
optional: true
- '@dual-bundle/import-meta-resolve@4.1.0':
- resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
+ '@dual-bundle/import-meta-resolve@4.2.1':
+ resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==}
'@element-plus/icons-vue@2.3.2':
resolution: {integrity: sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==}
peerDependencies:
vue: ^3.5.17
- '@emnapi/core@1.4.5':
- resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==}
+ '@emnapi/core@1.5.0':
+ resolution: {integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==}
- '@emnapi/runtime@1.4.5':
- resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==}
+ '@emnapi/runtime@1.5.0':
+ resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==}
- '@emnapi/wasi-threads@1.0.4':
- resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==}
+ '@emnapi/wasi-threads@1.1.0':
+ resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
'@emotion/hash@0.8.0':
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
@@ -3669,8 +3735,8 @@ packages:
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.7.0':
- resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
+ '@eslint-community/eslint-utils@4.9.0':
+ resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
@@ -3699,8 +3765,8 @@ packages:
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.33.0':
- resolution: {integrity: sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==}
+ '@eslint/js@9.35.0':
+ resolution: {integrity: sha512-30iXE9whjlILfWobBkNerJo+TXYsgVM5ERQwMcMKCHckHflCmf7wXDAHlARoWnh0s1U72WqlbeyE7iAcCzuCPw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
@@ -3719,28 +3785,25 @@ packages:
resolution: {integrity: sha512-OEl393iCOoo/z8bMezRlJu+GlRGlsKbUAN7jKB6LhnKoqKve5DXRpalbItIIcwnCjs1k/FOPjFzcA6Qn+H+YbA==}
engines: {node: '>=18.0.0', npm: '>=9.0.0'}
- '@fastify/busboy@3.2.0':
- resolution: {integrity: sha512-m9FVDXU3GT2ITSe0UaMA5rU3QkfC/UXtCU8y0gSN/GugTqtVldOBWIB5V6V3sbmenVZUIpU6f+mPEO2+m5iTaA==}
-
'@floating-ui/core@1.7.3':
resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
- '@floating-ui/dom@1.7.3':
- resolution: {integrity: sha512-uZA413QEpNuhtb3/iIKoYMSK07keHPYeXF02Zhd6e213j+d1NamLix/mCLxBUDW/Gx52sPH2m+chlUsyaBs/Ag==}
+ '@floating-ui/dom@1.7.4':
+ resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
'@floating-ui/utils@0.2.10':
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
- '@floating-ui/vue@1.1.8':
- resolution: {integrity: sha512-SNJAa1jbT8Gh1LvWw2uIIViLL0saV2bCY59ISCvJzhbut5DSb2H3LKUK49Xkd7SixTNHKX4LFu59nbwIXt9jjQ==}
+ '@floating-ui/vue@1.1.9':
+ resolution: {integrity: sha512-BfNqNW6KA83Nexspgb9DZuz578R7HT8MZw1CfK9I6Ah4QReNWEJsXWHN+SdmOVLNGmTPDi+fDT535Df5PzMLbQ==}
- '@form-create/ant-design-vue@3.2.28':
- resolution: {integrity: sha512-peQZkrCPqWaGOcCdkLTO/0EivWNxsSuSK4A2xHBakigmnhEoqLFclkfAzSbXbLZkWYHJnTqjN3Zst7A1Wcl9qQ==}
+ '@form-create/ant-design-vue@3.2.30':
+ resolution: {integrity: sha512-y9xBHjCCNpR9Ohjl3Gbs0vwtwQSKwBi38FMakQEI7HF2eGmlJtGnUx/mXqbzRKhc+V0X5wslSYb4r15CKzJMpQ==}
peerDependencies:
vue: ^3.5.17
- '@form-create/antd-designer@3.3.0':
- resolution: {integrity: sha512-G2RmgIEDSbN7o8+/+eKVGb82K2al3FmKBw3ZMY00tNvF6wYV72JZ0IKqgj3jX+XrfEgY/dwY0XOB3Eyxc4OTDg==}
+ '@form-create/antd-designer@3.3.1':
+ resolution: {integrity: sha512-H3/YKlLlF3mSZ4oQtAna2wO/mbVVu2frLVfxL6a+EKoyB5JrfglxSfoXG3VnLtfQYCBu0pw6/c1uHazX7KSirw==}
peerDependencies:
vue: ^3.5.17
@@ -3795,23 +3858,23 @@ packages:
'@form-create/component-wangeditor@3.2.14':
resolution: {integrity: sha512-N/U/hFBdBu2OIguxoKe1Kslq5fW6XmtyhKDImLfKLn1xI6X5WUtt3r7QTaUPcVUl2vntpM9wJ/FBdG17RzF/Dg==}
- '@form-create/core@3.2.28':
- resolution: {integrity: sha512-68SGQ6Zuz1Tf7arCjBJUdvTPSgJyK9smO/Fk3C2UqTNU/7CJo4pBKgGJdIGQNRlonuMjHsY2miz0btMllWQ3Gg==}
+ '@form-create/core@3.2.30':
+ resolution: {integrity: sha512-sLmc2pLKdnV1WdNV6iFFvBUfcDRoPGEglbMJQ08JuqW7mByfFnqXW8yOQOxpvy11cdJETidoEgNzRJR1F4Gifg==}
peerDependencies:
vue: ^3.5.17
- '@form-create/designer@3.3.0':
- resolution: {integrity: sha512-63mDHDeru0NBq1Zyb21SHAXlgppIR+vhXV0VwTz9HFNGpBZz6MChScLKrVVdfELsCpPNcBsrlnmvFZXSGqTfBA==}
+ '@form-create/designer@3.3.1':
+ resolution: {integrity: sha512-INHRQySG+cty5DJndmscQMcNhNH6YfDY/G+UUsy506upbdIORocifiVbtjY7npBF52atK7D+UekIeL6wBH61Hw==}
peerDependencies:
vue: ^3.5.17
- '@form-create/element-ui@3.2.28':
- resolution: {integrity: sha512-ksMU4lczv7z8NLp5saFdtE3Yf/9A7sxiEmKZPtvuA9HSOZ9ZtB7mt/QZ2XL0oSIdH0i2CLSovkkkWFcHW1HRqw==}
+ '@form-create/element-ui@3.2.30':
+ resolution: {integrity: sha512-ziu3iM1TtOej+F1CAVYSIHSsDHba7G7Z86nZwQFMzMR+Ogl7eVCmfYcUSKPNjbmnYtWb8f8kTE89qE3Wsmvmxw==}
peerDependencies:
vue: ^3.5.17
- '@form-create/naive-ui@3.2.28':
- resolution: {integrity: sha512-y6S0v4OD6nmoBVK85Kyk5x9lM2rY3Er7ltDB8fvT9rRuKAoSQIHPSjUetUh2lckRmBWFblBBfM4FOIIIn3VCLg==}
+ '@form-create/naive-ui@3.2.30':
+ resolution: {integrity: sha512-d5IsyLOkrgKuU/uMiLA/sSYhBHs0uLMHC+9Mb7DbEgJjrmrRWHoN2A0NTCKkYnPNsfq8ACLWkJxhWDTl+rWNsw==}
peerDependencies:
vue: ^3.5.17
@@ -3828,18 +3891,14 @@ packages:
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
- '@humanfs/node@0.16.6':
- resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
+ '@humanfs/node@0.16.7':
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/retry@0.3.1':
- resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
- engines: {node: '>=18.18'}
-
'@humanwhocodes/retry@0.4.3':
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
@@ -3847,17 +3906,17 @@ packages:
'@iconify-json/logos@1.2.9':
resolution: {integrity: sha512-G6VCdFnwZcrT6Eveq3m43oJfLw/CX8plwFcE+2jgv3fiGB64pTmnU7Yd1MNZ/eA+/Re2iEDhuCfSNOWTHwwK8w==}
- '@iconify-json/octicon@1.2.10':
- resolution: {integrity: sha512-dAwgLd35EPeEu6VHnERJ+sSJ9VKe0qFX4EXHjmWb4o7OyUfB1/F98JEjUxVa9eEHJ307z4q0AuGSVz8L3LWz5g==}
+ '@iconify-json/octicon@1.2.13':
+ resolution: {integrity: sha512-SRtqbRAl/v9FdC8D0dWlJpCkNAidAqN0R/ORj1TRGR8K5TfcrD1HSa0zmLQXJ2kKD9jowMh2WjLsIczVak4jKQ==}
- '@iconify-json/simple-icons@1.2.48':
- resolution: {integrity: sha512-EACOtZMoPJtERiAbX1De0asrrCtlwI27+03c9OJlYWsly9w1O5vcD8rTzh+kDPjo+K8FOVnq2Qy+h/CzljSKDA==}
+ '@iconify-json/simple-icons@1.2.50':
+ resolution: {integrity: sha512-Z2ggRwKYEBB9eYAEi4NqEgIzyLhu0Buh4+KGzMPD6+xG7mk52wZJwLT/glDPtfslV503VtJbqzWqBUGkCMKOFA==}
- '@iconify-json/vscode-icons@1.2.29':
- resolution: {integrity: sha512-ByqO3YPYs0n7hakQ/ZUXltJQnYibeOv41H1AdciOs7Pmba5/OsKKK1/oOjcBmvXrYuENO+IvIzORYkl6sFXgqA==}
+ '@iconify-json/vscode-icons@1.2.30':
+ resolution: {integrity: sha512-dlTOc8w4a8/QNumZzMve+APJa6xQVXPZwo8qBk/MaYfY42NPrQT83QXkbTWKDkuEu/xgHPXvKZZBL7Yy12vYQw==}
- '@iconify/json@2.2.376':
- resolution: {integrity: sha512-2jQ+5zPV7Lva9iuFOvMkcq5XQyRx7xvLuodpDI+yjAxOnB2gpWa4caFz53tyPgCWU50Zd9/JSNZaCNYSTniSrg==}
+ '@iconify/json@2.2.382':
+ resolution: {integrity: sha512-1UT0ouWPVXNteS+kaQjtDvxKy/swWqB84fq9b+xbpE7nhgfak7ljYneWSXTDU+SyfL112F9978p7Mf3C3Q/8LQ==}
'@iconify/tailwind@1.2.0':
resolution: {integrity: sha512-KgpIHWOTcRYw1XcoUqyNSrmYyfLLqZYu3AmP8zdfLk0F5TqRO8YerhlvlQmGfn7rJXgPeZN569xPAJnJ53zZxA==}
@@ -3882,11 +3941,11 @@ packages:
'@types/node':
optional: true
- '@internationalized/date@3.8.2':
- resolution: {integrity: sha512-/wENk7CbvLbkUvX1tu0mwq49CVkkWpkXubGel6birjRPyo6uQ4nQpnq5xZu823zRCwwn82zgHrvgF1vZyvmVgA==}
+ '@internationalized/date@3.9.0':
+ resolution: {integrity: sha512-yaN3brAnHRD+4KyyOsJyk49XUvj2wtbNACSqg0bz3u8t2VuzhC8Q5dfRnrSxjnnbDb+ienBnkn1TzQfE154vyg==}
- '@internationalized/number@3.6.4':
- resolution: {integrity: sha512-P+/h+RDaiX8EGt3shB9AYM1+QgkvHmJ5rKi4/59k4sg9g58k9rqsRW0WxRO7jCoHyvVbFRRFKmVTdFYdehrxHg==}
+ '@internationalized/number@3.6.5':
+ resolution: {integrity: sha512-6hY4Kl4HPBvtfS62asS/R22JzNNy8vi/Ssev7x6EobfCp+9QIB2hKvI2EtbdJ0VSQacxVNtqhE/NmF/NZ0gm6g==}
'@intlify/bundle-utils@10.0.1':
resolution: {integrity: sha512-WkaXfSevtpgtUR4t8K2M6lbR7g03mtOxFeh+vXp5KExvPqS12ppaRj1QxzwRuRI5VUto54A22BjKoBMLyHILWQ==}
@@ -3900,16 +3959,16 @@ packages:
vue-i18n:
optional: true
- '@intlify/core-base@11.1.11':
- resolution: {integrity: sha512-1Z0N8jTfkcD2Luq9HNZt+GmjpFe4/4PpZF3AOzoO1u5PTtSuXZcfhwBatywbfE2ieB/B5QHIoOFmCXY2jqVKEQ==}
+ '@intlify/core-base@11.1.12':
+ resolution: {integrity: sha512-whh0trqRsSqVLNEUCwU59pyJZYpU8AmSWl8M3Jz2Mv5ESPP6kFh4juas2NpZ1iCvy7GlNRffUD1xr84gceimjg==}
engines: {node: '>= 16'}
- '@intlify/message-compiler@11.1.11':
- resolution: {integrity: sha512-7PC6neomoc/z7a8JRjPBbu0T2TzR2MQuY5kn2e049MP7+o32Ve7O8husylkA7K9fQRe4iNXZWTPnDJ6vZdtS1Q==}
+ '@intlify/message-compiler@11.1.12':
+ resolution: {integrity: sha512-Fv9iQSJoJaXl4ZGkOCN1LDM3trzze0AS2zRz2EHLiwenwL6t0Ki9KySYlyr27yVOj5aVz0e55JePO+kELIvfdQ==}
engines: {node: '>= 16'}
- '@intlify/shared@11.1.11':
- resolution: {integrity: sha512-RIBFTIqxZSsxUqlcyoR7iiC632bq7kkOwYvZlvcVObHfrF4NhuKc4FKvu8iPCrEO+e3XsY7/UVpfgzg+M7ETzA==}
+ '@intlify/shared@11.1.12':
+ resolution: {integrity: sha512-Om86EjuQtA69hdNj3GQec9ZC0L0vPSAnXzB3gP/gyJ7+mA7t06d9aOAiqMZ+xEOsumGP4eEBlfl8zF2LOTzf2A==}
engines: {node: '>= 16'}
'@intlify/unplugin-vue-i18n@6.0.8':
@@ -3943,8 +4002,8 @@ packages:
vue-i18n:
optional: true
- '@ioredis/commands@1.3.0':
- resolution: {integrity: sha512-M/T6Zewn7sDaBQEqIZ8Rb+i9y8qfGmq+5SDFSf9sA2lUZTmdDLVdOiQaeDp+Q4wElZ9HG1GAX5KhDaidp6LQsQ==}
+ '@ioredis/commands@1.3.1':
+ resolution: {integrity: sha512-bYtU8avhGIcje3IhvF9aSjsa5URMZBHnwKtOvXsT4sfYy9gppW11gLPT/9oNqlJZD47yPKveQFTAFWpHjKvUoQ==}
'@isaacs/balanced-match@4.0.1':
resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
@@ -3981,11 +4040,11 @@ packages:
'@jridgewell/trace-mapping@0.3.30':
resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==}
- '@jspm/generator@2.6.3':
- resolution: {integrity: sha512-D1mDAZeX/8Yjul1gORbzX7OwvGZ6yCGF3NzO9Or6b7dcBUJQGEWGNyJ86pea9fl+E3FmfPb/DPl/+Ib5djd8wQ==}
+ '@jspm/generator@2.6.4':
+ resolution: {integrity: sha512-/nqYzvy0Sz8yPtYdR+cNKZD7IwaBBEFEe5JuxetZWWP9lKScaEFXkDktMhwIZZn4pGZ5rhFwpWAgsPklrqi4uw==}
- '@jspm/import-map@1.2.0':
- resolution: {integrity: sha512-FCYQTdZ3qrVSWNTV4cQkR1LfBaszqbWp3UIOd4J/ckyMmNxLDna16n0BBjS7YAqpUfy+e4xDWdPZNwWts8NDOQ==}
+ '@jspm/import-map@1.2.1':
+ resolution: {integrity: sha512-R7NxtOzblCkZL9aAUZCrMij1jeynfMUFJswPR/x/RJNOJ4F7zwCh4XApnNKeB9MVfyk+hDC7GK5NahcG1xelxA==}
'@juggle/resize-observer@3.4.0':
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
@@ -3993,6 +4052,18 @@ packages:
'@keyv/serialize@1.1.0':
resolution: {integrity: sha512-RlDgexML7Z63Q8BSaqhXdCYNBy/JQnqYIwxofUrNLGCblOMHp+xux2Q8nLMLlPpgHQPoU0Do8Z6btCpRBEqZ8g==}
+ '@lezer/common@1.2.3':
+ resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==}
+
+ '@lezer/highlight@1.2.1':
+ resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
+
+ '@lezer/lr@1.4.2':
+ resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
+
+ '@lezer/markdown@1.4.3':
+ resolution: {integrity: sha512-kfw+2uMrQ/wy/+ONfrH83OkdFNM0ye5Xq96cLlaCy7h5UT9FO54DU4oRoIc0CSBh5NWmWuiIJA7NGLMJbQ+Oxg==}
+
'@manypkg/find-root@1.1.0':
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
@@ -4016,11 +4087,14 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ '@marijn/find-cluster-break@1.0.2':
+ resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==}
+
'@microsoft/api-extractor-model@7.30.7':
resolution: {integrity: sha512-TBbmSI2/BHpfR9YhQA7nH0nqVmGgJ0xH0Ex4D99/qBDAUpnhA2oikGmdXanbw9AWWY/ExBYIpkmY8dBHdla3YQ==}
- '@microsoft/api-extractor@7.52.10':
- resolution: {integrity: sha512-LhKytJM5ZJkbHQVfW/3o747rZUNs/MGg6j/wt/9qwwqEOfvUDTYXXxIBuMgrRXhJ528p41iyz4zjBVHZU74Odg==}
+ '@microsoft/api-extractor@7.52.11':
+ resolution: {integrity: sha512-IKQ7bHg6f/Io3dQds6r9QPYk4q0OlR9A4nFDtNhUt3UUIhyitbxAqRN1CLjUVtk6IBk3xzyCMOdwwtIXQ7AlGg==}
hasBin: true
'@microsoft/fetch-event-source@2.0.1':
@@ -4035,42 +4109,6 @@ packages:
'@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
- '@netlify/binary-info@1.0.0':
- resolution: {integrity: sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw==}
-
- '@netlify/blobs@9.1.2':
- resolution: {integrity: sha512-7dMjExSH4zj4ShvLem49mE3mf0K171Tx2pV4WDWhJbRUWW3SJIR2qntz0LvUGS97N5HO1SmnzrgWUhEXCsApiw==}
- engines: {node: ^14.16.0 || >=16.0.0}
-
- '@netlify/dev-utils@2.2.0':
- resolution: {integrity: sha512-5XUvZuffe3KetyhbWwd4n2ktd7wraocCYw10tlM+/u/95iAz29GjNiuNxbCD1T6Bn1MyGc4QLVNKOWhzJkVFAw==}
- engines: {node: ^14.16.0 || >=16.0.0}
-
- '@netlify/functions@3.1.10':
- resolution: {integrity: sha512-sI93kcJ2cUoMgDRPnrEm0lZhuiDVDqM6ngS/UbHTApIH3+eg3yZM5p/0SDFQQq9Bad0/srFmgBmTdXushzY5kg==}
- engines: {node: '>=14.0.0'}
-
- '@netlify/open-api@2.37.0':
- resolution: {integrity: sha512-zXnRFkxgNsalSgU8/vwTWnav3R+8KG8SsqHxqaoJdjjJtnZR7wo3f+qqu4z+WtZ/4V7fly91HFUwZ6Uz2OdW7w==}
- engines: {node: '>=14.8.0'}
-
- '@netlify/runtime-utils@1.3.1':
- resolution: {integrity: sha512-7/vIJlMYrPJPlEW84V2yeRuG3QBu66dmlv9neTmZ5nXzwylhBEOhy11ai+34A8mHCSZI4mKns25w3HM9kaDdJg==}
- engines: {node: '>=16.0.0'}
-
- '@netlify/serverless-functions-api@1.41.2':
- resolution: {integrity: sha512-pfCkH50JV06SGMNsNPjn8t17hOcId4fA881HeYQgMBOrewjsw4csaYgHEnCxCEu24Y5x75E2ULbFpqm9CvRCqw==}
- engines: {node: '>=18.0.0'}
-
- '@netlify/serverless-functions-api@2.2.0':
- resolution: {integrity: sha512-eQNnGUMyatgEeFJ8iKI2DT7wXDEjbWmZ+hJpCZtfg1bVsD4JdprIhLqdrUqmrDgPG2r45sQYigO9oq8BWXO37w==}
- engines: {node: '>=18.0.0'}
-
- '@netlify/zip-it-and-ship-it@12.2.1':
- resolution: {integrity: sha512-zAr+8Tg80y/sUbhdUkZsq4Uy1IMzkSB6H/sKRMrDQ2NJx4uPgf5X5jMdg9g2FljNcxzpfJwc1Gg4OXQrjD0Z4A==}
- engines: {node: '>=18.14.0'}
- hasBin: true
-
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -4102,8 +4140,8 @@ packages:
engines: {node: '>=10'}
deprecated: This functionality has been moved to @npmcli/fs
- '@nuxt/kit@3.18.1':
- resolution: {integrity: sha512-z6w1Fzv27CIKFlhct05rndkJSfoslplWH5fJ9dtusEvpYScLXp5cATWIbWkte9e9zFSmQTgDQJjNs3geQHE7og==}
+ '@nuxt/kit@3.19.1':
+ resolution: {integrity: sha512-cLKNdmfFk49o9Tt7g+vwD9rYN7cLg0D6K6CRB+4aaQYxveJXQbZGgZ4z7CGq5HxIG22Ki8G3XSXaiN1s6lVyZg==}
engines: {node: '>=18.12.0'}
'@one-ini/wasm@0.1.1':
@@ -4211,8 +4249,8 @@ packages:
resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@playwright/test@1.54.2':
- resolution: {integrity: sha512-A+znathYxPf+72riFd1r1ovOLqsIIB0jKIoPjyK2kqEIe30/6jF6BC7QNluHuwUmsD2tv1XZVugN8GqfTMOxsA==}
+ '@playwright/test@1.55.0':
+ resolution: {integrity: sha512-04IXzPwHrW69XusN/SIdDdKZBzMfOT9UNT/YiJit/xpy2VuAoB8NHc8Aplb96zsWDddLnbkPL3TsmrS04ZU2xQ==}
engines: {node: '>=18'}
hasBin: true
@@ -4266,8 +4304,8 @@ packages:
'@rolldown/pluginutils@1.0.0-beta.29':
resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==}
- '@rolldown/pluginutils@1.0.0-beta.33':
- resolution: {integrity: sha512-she25NCG6NoEPC/SEB4pHs5STcnfI4VBFOzjeI63maSPrWME5J2XC8ogrBgp8NaE/xzj28/kbpSaebiMvFRj+w==}
+ '@rolldown/pluginutils@1.0.0-beta.35':
+ resolution: {integrity: sha512-slYrCpoxJUqzFDDNlvrOYRazQUNRvWPjXA17dAOISY3rDMxX6k8K4cj2H+hEYMHF81HO3uNd5rHVigAWRM5dSg==}
'@rollup/plugin-alias@5.1.1':
resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
@@ -4367,8 +4405,8 @@ packages:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
- '@rollup/pluginutils@5.2.0':
- resolution: {integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==}
+ '@rollup/pluginutils@5.3.0':
+ resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -4376,114 +4414,119 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.46.3':
- resolution: {integrity: sha512-UmTdvXnLlqQNOCJnyksjPs1G4GqXNGW1LrzCe8+8QoaLhhDeTXYBgJ3k6x61WIhlHX2U+VzEJ55TtIjR/HTySA==}
+ '@rollup/rollup-android-arm-eabi@4.50.1':
+ resolution: {integrity: sha512-HJXwzoZN4eYTdD8bVV22DN8gsPCAj3V20NHKOs8ezfXanGpmVPR7kalUHd+Y31IJp9stdB87VKPFbsGY3H/2ag==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.46.3':
- resolution: {integrity: sha512-8NoxqLpXm7VyeI0ocidh335D6OKT0UJ6fHdnIxf3+6oOerZZc+O7r+UhvROji6OspyPm+rrIdb1gTXtVIqn+Sg==}
+ '@rollup/rollup-android-arm64@4.50.1':
+ resolution: {integrity: sha512-PZlsJVcjHfcH53mOImyt3bc97Ep3FJDXRpk9sMdGX0qgLmY0EIWxCag6EigerGhLVuL8lDVYNnSo8qnTElO4xw==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.46.3':
- resolution: {integrity: sha512-csnNavqZVs1+7/hUKtgjMECsNG2cdB8F7XBHP6FfQjqhjF8rzMzb3SLyy/1BG7YSfQ+bG75Ph7DyedbUqwq1rA==}
+ '@rollup/rollup-darwin-arm64@4.50.1':
+ resolution: {integrity: sha512-xc6i2AuWh++oGi4ylOFPmzJOEeAa2lJeGUGb4MudOtgfyyjr4UPNK+eEWTPLvmPJIY/pgw6ssFIox23SyrkkJw==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.46.3':
- resolution: {integrity: sha512-r2MXNjbuYabSIX5yQqnT8SGSQ26XQc8fmp6UhlYJd95PZJkQD1u82fWP7HqvGUf33IsOC6qsiV+vcuD4SDP6iw==}
+ '@rollup/rollup-darwin-x64@4.50.1':
+ resolution: {integrity: sha512-2ofU89lEpDYhdLAbRdeyz/kX3Y2lpYc6ShRnDjY35bZhd2ipuDMDi6ZTQ9NIag94K28nFMofdnKeHR7BT0CATw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.46.3':
- resolution: {integrity: sha512-uluObTmgPJDuJh9xqxyr7MV61Imq+0IvVsAlWyvxAaBSNzCcmZlhfYcRhCdMaCsy46ccZa7vtDDripgs9Jkqsw==}
+ '@rollup/rollup-freebsd-arm64@4.50.1':
+ resolution: {integrity: sha512-wOsE6H2u6PxsHY/BeFHA4VGQN3KUJFZp7QJBmDYI983fgxq5Th8FDkVuERb2l9vDMs1D5XhOrhBrnqcEY6l8ZA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.46.3':
- resolution: {integrity: sha512-AVJXEq9RVHQnejdbFvh1eWEoobohUYN3nqJIPI4mNTMpsyYN01VvcAClxflyk2HIxvLpRcRggpX1m9hkXkpC/A==}
+ '@rollup/rollup-freebsd-x64@4.50.1':
+ resolution: {integrity: sha512-A/xeqaHTlKbQggxCqispFAcNjycpUEHP52mwMQZUNqDUJFFYtPHCXS1VAG29uMlDzIVr+i00tSFWFLivMcoIBQ==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.46.3':
- resolution: {integrity: sha512-byyflM+huiwHlKi7VHLAYTKr67X199+V+mt1iRgJenAI594vcmGGddWlu6eHujmcdl6TqSNnvqaXJqZdnEWRGA==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.50.1':
+ resolution: {integrity: sha512-54v4okehwl5TaSIkpp97rAHGp7t3ghinRd/vyC1iXqXMfjYUTm7TfYmCzXDoHUPTTf36L8pr0E7YsD3CfB3ZDg==}
cpu: [arm]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm-musleabihf@4.46.3':
- resolution: {integrity: sha512-aLm3NMIjr4Y9LklrH5cu7yybBqoVCdr4Nvnm8WB7PKCn34fMCGypVNpGK0JQWdPAzR/FnoEoFtlRqZbBBLhVoQ==}
+ '@rollup/rollup-linux-arm-musleabihf@4.50.1':
+ resolution: {integrity: sha512-p/LaFyajPN/0PUHjv8TNyxLiA7RwmDoVY3flXHPSzqrGcIp/c2FjwPPP5++u87DGHtw+5kSH5bCJz0mvXngYxw==}
cpu: [arm]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-arm64-gnu@4.46.3':
- resolution: {integrity: sha512-VtilE6eznJRDIoFOzaagQodUksTEfLIsvXymS+UdJiSXrPW7Ai+WG4uapAc3F7Hgs791TwdGh4xyOzbuzIZrnw==}
+ '@rollup/rollup-linux-arm64-gnu@4.50.1':
+ resolution: {integrity: sha512-2AbMhFFkTo6Ptna1zO7kAXXDLi7H9fGTbVaIq2AAYO7yzcAsuTNWPHhb2aTA6GPiP+JXh85Y8CiS54iZoj4opw==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm64-musl@4.46.3':
- resolution: {integrity: sha512-dG3JuS6+cRAL0GQ925Vppafi0qwZnkHdPeuZIxIPXqkCLP02l7ka+OCyBoDEv8S+nKHxfjvjW4OZ7hTdHkx8/w==}
+ '@rollup/rollup-linux-arm64-musl@4.50.1':
+ resolution: {integrity: sha512-Cgef+5aZwuvesQNw9eX7g19FfKX5/pQRIyhoXLCiBOrWopjo7ycfB292TX9MDcDijiuIJlx1IzJz3IoCPfqs9w==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-loongarch64-gnu@4.46.3':
- resolution: {integrity: sha512-iU8DxnxEKJptf8Vcx4XvAUdpkZfaz0KWfRrnIRrOndL0SvzEte+MTM7nDH4A2Now4FvTZ01yFAgj6TX/mZl8hQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.50.1':
+ resolution: {integrity: sha512-RPhTwWMzpYYrHrJAS7CmpdtHNKtt2Ueo+BlLBjfZEhYBhK00OsEqM08/7f+eohiF6poe0YRDDd8nAvwtE/Y62Q==}
cpu: [loong64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-ppc64-gnu@4.46.3':
- resolution: {integrity: sha512-VrQZp9tkk0yozJoQvQcqlWiqaPnLM6uY1qPYXvukKePb0fqaiQtOdMJSxNFUZFsGw5oA5vvVokjHrx8a9Qsz2A==}
+ '@rollup/rollup-linux-ppc64-gnu@4.50.1':
+ resolution: {integrity: sha512-eSGMVQw9iekut62O7eBdbiccRguuDgiPMsw++BVUg+1K7WjZXHOg/YOT9SWMzPZA+w98G+Fa1VqJgHZOHHnY0Q==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-riscv64-gnu@4.46.3':
- resolution: {integrity: sha512-uf2eucWSUb+M7b0poZ/08LsbcRgaDYL8NCGjUeFMwCWFwOuFcZ8D9ayPl25P3pl+D2FH45EbHdfyUesQ2Lt9wA==}
+ '@rollup/rollup-linux-riscv64-gnu@4.50.1':
+ resolution: {integrity: sha512-S208ojx8a4ciIPrLgazF6AgdcNJzQE4+S9rsmOmDJkusvctii+ZvEuIC4v/xFqzbuP8yDjn73oBlNDgF6YGSXQ==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-riscv64-musl@4.46.3':
- resolution: {integrity: sha512-7tnUcDvN8DHm/9ra+/nF7lLzYHDeODKKKrh6JmZejbh1FnCNZS8zMkZY5J4sEipy2OW1d1Ncc4gNHUd0DLqkSg==}
+ '@rollup/rollup-linux-riscv64-musl@4.50.1':
+ resolution: {integrity: sha512-3Ag8Ls1ggqkGUvSZWYcdgFwriy2lWo+0QlYgEFra/5JGtAd6C5Hw59oojx1DeqcA2Wds2ayRgvJ4qxVTzCHgzg==}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-s390x-gnu@4.46.3':
- resolution: {integrity: sha512-MUpAOallJim8CsJK+4Lc9tQzlfPbHxWDrGXZm2z6biaadNpvh3a5ewcdat478W+tXDoUiHwErX/dOql7ETcLqg==}
+ '@rollup/rollup-linux-s390x-gnu@4.50.1':
+ resolution: {integrity: sha512-t9YrKfaxCYe7l7ldFERE1BRg/4TATxIg+YieHQ966jwvo7ddHJxPj9cNFWLAzhkVsbBvNA4qTbPVNsZKBO4NSg==}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-gnu@4.46.3':
- resolution: {integrity: sha512-F42IgZI4JicE2vM2PWCe0N5mR5vR0gIdORPqhGQ32/u1S1v3kLtbZ0C/mi9FFk7C5T0PgdeyWEPajPjaUpyoKg==}
+ '@rollup/rollup-linux-x64-gnu@4.50.1':
+ resolution: {integrity: sha512-MCgtFB2+SVNuQmmjHf+wfI4CMxy3Tk8XjA5Z//A0AKD7QXUYFMQcns91K6dEHBvZPCnhJSyDWLApk40Iq/H3tA==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-musl@4.46.3':
- resolution: {integrity: sha512-oLc+JrwwvbimJUInzx56Q3ujL3Kkhxehg7O1gWAYzm8hImCd5ld1F2Gry5YDjR21MNb5WCKhC9hXgU7rRlyegQ==}
+ '@rollup/rollup-linux-x64-musl@4.50.1':
+ resolution: {integrity: sha512-nEvqG+0jeRmqaUMuwzlfMKwcIVffy/9KGbAGyoa26iu6eSngAYQ512bMXuqqPrlTyfqdlB9FVINs93j534UJrg==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rollup/rollup-win32-arm64-msvc@4.46.3':
- resolution: {integrity: sha512-lOrQ+BVRstruD1fkWg9yjmumhowR0oLAAzavB7yFSaGltY8klttmZtCLvOXCmGE9mLIn8IBV/IFrQOWz5xbFPg==}
+ '@rollup/rollup-openharmony-arm64@4.50.1':
+ resolution: {integrity: sha512-RDsLm+phmT3MJd9SNxA9MNuEAO/J2fhW8GXk62G/B4G7sLVumNFbRwDL6v5NrESb48k+QMqdGbHgEtfU0LCpbA==}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rollup/rollup-win32-arm64-msvc@4.50.1':
+ resolution: {integrity: sha512-hpZB/TImk2FlAFAIsoElM3tLzq57uxnGYwplg6WDyAxbYczSi8O2eQ+H2Lx74504rwKtZ3N2g4bCUkiamzS6TQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.46.3':
- resolution: {integrity: sha512-vvrVKPRS4GduGR7VMH8EylCBqsDcw6U+/0nPDuIjXQRbHJc6xOBj+frx8ksfZAh6+Fptw5wHrN7etlMmQnPQVg==}
+ '@rollup/rollup-win32-ia32-msvc@4.50.1':
+ resolution: {integrity: sha512-SXjv8JlbzKM0fTJidX4eVsH+Wmnp0/WcD8gJxIZyR6Gay5Qcsmdbi9zVtnbkGPG8v2vMR1AD06lGWy5FLMcG7A==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.46.3':
- resolution: {integrity: sha512-fi3cPxCnu3ZeM3EwKZPgXbWoGzm2XHgB/WShKI81uj8wG0+laobmqy5wbgEwzstlbLu4MyO8C19FyhhWseYKNQ==}
+ '@rollup/rollup-win32-x64-msvc@4.50.1':
+ resolution: {integrity: sha512-StxAO/8ts62KZVRAm4JZYq9+NqNsV7RvimNK+YM7ry//zebEH6meuugqW/P5OFUCjyQgui+9fUxT6d5NShvMvA==}
cpu: [x64]
os: [win32]
@@ -4593,17 +4636,17 @@ packages:
resolution: {integrity: sha512-Wo1iKt2b9OT7d+YGhvEPD3DXvPv2etTusIMhMUoG7fbhmxcXCtIjJDEygy91Y2JFlwGyjqiBPRozme7UD8hoqg==}
engines: {node: '>=12'}
- '@tanstack/query-core@5.85.4':
- resolution: {integrity: sha512-vXyIa8w2RK9gSQsVsw8ylOp5NmiLQnblnIY18OprXdpFxAQGbu4867ob+UH+jCYwy+wonZeao5PgG6GcGXGNnQ==}
+ '@tanstack/query-core@5.87.1':
+ resolution: {integrity: sha512-HOFHVvhOCprrWvtccSzc7+RNqpnLlZ5R6lTmngb8aq7b4rc2/jDT0w+vLdQ4lD9bNtQ+/A4GsFXy030Gk4ollA==}
- '@tanstack/store@0.7.2':
- resolution: {integrity: sha512-RP80Z30BYiPX2Pyo0Nyw4s1SJFH2jyM6f9i3HfX4pA+gm5jsnYryscdq2aIQLnL4TaGuQMO+zXmN9nh1Qck+Pg==}
+ '@tanstack/store@0.7.4':
+ resolution: {integrity: sha512-F1XqZQici1Aq6WigEfcxJSml92nW+85Om8ElBMokPNg5glCYVOmPkZGIQeieYFxcPiKTfwo0MTOQpUyJtwncrg==}
'@tanstack/virtual-core@3.13.12':
resolution: {integrity: sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==}
- '@tanstack/vue-query@5.85.4':
- resolution: {integrity: sha512-S8gZ3hkMAYYBAuNboYPCtZOtp8oz+A+4CuauSiMmusJDmSODb8c+aB0E6m9TKCIZND0pOeIJVNqFEGD6yGdIsQ==}
+ '@tanstack/vue-query@5.87.1':
+ resolution: {integrity: sha512-QkVq+uMCqB5JRlyCdttxTlyKyNvCTGXAZJIVnpW72VJbA2oOY2mdh3xzaMulCHCHm0ZOm1mgKFB/fz+RHdjB7Q==}
peerDependencies:
'@vue/composition-api': ^1.1.2
vue: ^3.5.17
@@ -4611,8 +4654,8 @@ packages:
'@vue/composition-api':
optional: true
- '@tanstack/vue-store@0.7.3':
- resolution: {integrity: sha512-UExSdMWnuMdOLoGO/1djkV0SS82OEr9iKjnwRyoeRy5UhRsLwKdvqWlin949n2K/KlZqLaws+/oYoxLv/CF7Mg==}
+ '@tanstack/vue-store@0.7.4':
+ resolution: {integrity: sha512-NWz7c1VI8w3/izvxktjaqht49ArC1HX73M8tYq3jaK+s4Xz3CUYCu1bHDwqR5O8S405AGU4UQNivryKNRvUt3A==}
peerDependencies:
'@vue/composition-api': ^1.2.1
vue: ^3.5.17
@@ -4832,14 +4875,11 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@22.17.2':
- resolution: {integrity: sha512-gL6z5N9Jm9mhY+U2KXZpteb+09zyffliRkZyZOHODGATyC5B1Jt/7TzuuiLkFsSUMLbS1OLmlj/E+/3KF4Q/4w==}
+ '@types/node@22.18.1':
+ resolution: {integrity: sha512-rzSDyhn4cYznVG+PCzGe1lwuMYJrcBS1fc3JqSa2PvtABwWo+dZ1ij5OVok3tqfpEBCBoaR4d7upFJk73HRJDw==}
- '@types/node@24.3.0':
- resolution: {integrity: sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow==}
-
- '@types/normalize-package-data@2.4.4':
- resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
+ '@types/node@24.3.1':
+ resolution: {integrity: sha512-3vXmQDXy+woz+gnrTvuvNrPzekOi+Ds0ReMxw0LzBiK3a+1k0kQn9f2NWk+lgD4rJehFUmYy2gMhJ2ZI+7YP9g==}
'@types/nprogress@0.2.3':
resolution: {integrity: sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==}
@@ -4865,9 +4905,6 @@ packages:
'@types/sortablejs@1.15.8':
resolution: {integrity: sha512-b79830lW+RZfwaztgs1aVPgbasJ8e7AXtZYHTELNXZPsERt4ymJdjV4OccDbHQAvHrCcFpbF78jkm0R6h/pZVg==}
- '@types/triple-beam@1.3.5':
- resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==}
-
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
@@ -4883,26 +4920,23 @@ packages:
'@types/web-bluetooth@0.0.21':
resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
- '@types/yauzl@2.10.3':
- resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
-
- '@typescript-eslint/eslint-plugin@8.40.0':
- resolution: {integrity: sha512-w/EboPlBwnmOBtRbiOvzjD+wdiZdgFeo17lkltrtn7X37vagKKWJABvyfsJXTlHe6XBzugmYgd4A4nW+k8Mixw==}
+ '@typescript-eslint/eslint-plugin@8.42.0':
+ resolution: {integrity: sha512-Aq2dPqsQkxHOLfb2OPv43RnIvfj05nw8v/6n3B2NABIPpHnjQnaLo9QGMTvml+tv4korl/Cjfrb/BYhoL8UUTQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.40.0
+ '@typescript-eslint/parser': ^8.42.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/parser@8.40.0':
- resolution: {integrity: sha512-jCNyAuXx8dr5KJMkecGmZ8KI61KBUhkCob+SD+C+I5+Y1FWI2Y3QmY4/cxMCC5WAsZqoEtEETVhUiUMIGCf6Bw==}
+ '@typescript-eslint/parser@8.42.0':
+ resolution: {integrity: sha512-r1XG74QgShUgXph1BYseJ+KZd17bKQib/yF3SR+demvytiRXrwd12Blnz5eYGm8tXaeRdd4x88MlfwldHoudGg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/project-service@8.40.0':
- resolution: {integrity: sha512-/A89vz7Wf5DEXsGVvcGdYKbVM9F7DyFXj52lNYUDS1L9yJfqjW/fIp5PgMuEJL/KeqVTe2QSbXAGUZljDUpArw==}
+ '@typescript-eslint/project-service@8.42.0':
+ resolution: {integrity: sha512-vfVpLHAhbPjilrabtOSNcUDmBboQNrJUiNAGoImkZKnMjs2TIcWG33s4Ds0wY3/50aZmTMqJa6PiwkwezaAklg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
@@ -4911,18 +4945,18 @@ packages:
resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/scope-manager@8.40.0':
- resolution: {integrity: sha512-y9ObStCcdCiZKzwqsE8CcpyuVMwRouJbbSrNuThDpv16dFAj429IkM6LNb1dZ2m7hK5fHyzNcErZf7CEeKXR4w==}
+ '@typescript-eslint/scope-manager@8.42.0':
+ resolution: {integrity: sha512-51+x9o78NBAVgQzOPd17DkNTnIzJ8T/O2dmMBLoK9qbY0Gm52XJcdJcCl18ExBMiHo6jPMErUQWUv5RLE51zJw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/tsconfig-utils@8.40.0':
- resolution: {integrity: sha512-jtMytmUaG9d/9kqSl/W3E3xaWESo4hFDxAIHGVW/WKKtQhesnRIJSAJO6XckluuJ6KDB5woD1EiqknriCtAmcw==}
+ '@typescript-eslint/tsconfig-utils@8.42.0':
+ resolution: {integrity: sha512-kHeFUOdwAJfUmYKjR3CLgZSglGHjbNTi1H8sTYRYV2xX6eNz4RyJ2LIgsDLKf8Yi0/GL1WZAC/DgZBeBft8QAQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/type-utils@8.40.0':
- resolution: {integrity: sha512-eE60cK4KzAc6ZrzlJnflXdrMqOBaugeukWICO2rB0KNvwdIMaEaYiywwHMzA1qFpTxrLhN9Lp4E/00EgWcD3Ow==}
+ '@typescript-eslint/type-utils@8.42.0':
+ resolution: {integrity: sha512-9KChw92sbPTYVFw3JLRH1ockhyR3zqqn9lQXol3/YbI6jVxzWoGcT3AsAW0mu1MY0gYtsXnUGV/AKpkAj5tVlQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -4932,8 +4966,8 @@ packages:
resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/types@8.40.0':
- resolution: {integrity: sha512-ETdbFlgbAmXHyFPwqUIYrfc12ArvpBhEVgGAxVYSwli26dn8Ko+lIo4Su9vI9ykTZdJn+vJprs/0eZU0YMAEQg==}
+ '@typescript-eslint/types@8.42.0':
+ resolution: {integrity: sha512-LdtAWMiFmbRLNP7JNeY0SqEtJvGMYSzfiWBSmx+VSZ1CH+1zyl8Mmw1TT39OrtsRvIYShjJWzTDMPWZJCpwBlw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/typescript-estree@7.18.0':
@@ -4945,8 +4979,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@8.40.0':
- resolution: {integrity: sha512-k1z9+GJReVVOkc1WfVKs1vBrR5MIKKbdAjDTPvIK3L8De6KbFfPFt6BKpdkdk7rZS2GtC/m6yI5MYX+UsuvVYQ==}
+ '@typescript-eslint/typescript-estree@8.42.0':
+ resolution: {integrity: sha512-ku/uYtT4QXY8sl9EDJETD27o3Ewdi72hcXg1ah/kkUgBvAYHLwj2ofswFFNXS+FL5G+AGkxBtvGt8pFBHKlHsQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
@@ -4957,8 +4991,8 @@ packages:
peerDependencies:
eslint: ^8.56.0
- '@typescript-eslint/utils@8.40.0':
- resolution: {integrity: sha512-Cgzi2MXSZyAUOY+BFwGs17s7ad/7L+gKt6Y8rAVVWS+7o6wrjeFN4nVfTpbE25MNcxyJ+iYUXflbs2xR9h4UBg==}
+ '@typescript-eslint/utils@8.42.0':
+ resolution: {integrity: sha512-JnIzu7H3RH5BrKC4NoZqRfmjqCIS1u3hGZltDYJgkVdqAezl4L9d1ZLw+36huCujtSBSAirGINF/S4UxOcR+/g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -4968,8 +5002,8 @@ packages:
resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/visitor-keys@8.40.0':
- resolution: {integrity: sha512-8CZ47QwalyRjsypfwnbI3hKy5gJDPmrkLjkgMxhi0+DZZ2QNx2naS6/hWoVYUHU7LU2zleF68V9miaVZvhFfTA==}
+ '@typescript-eslint/visitor-keys@8.42.0':
+ resolution: {integrity: sha512-3WbiuzoEowaEn8RSnhJBrxSwX8ULYE9CXaPepS2C2W3NSA5NNIvBaslpBSBElPq0UGr0xVJlXFWOAKIkyylydQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.3.0':
@@ -5083,8 +5117,8 @@ packages:
peerDependencies:
zod: ^3.24.0
- '@vercel/nft@0.29.4':
- resolution: {integrity: sha512-6lLqMNX3TuycBPABycx7A9F1bHQR7kiQln6abjFbPrf5C/05qHM9M5E4PeTE59c7z8g6vHnx1Ioihb2AQl7BTA==}
+ '@vercel/nft@0.30.1':
+ resolution: {integrity: sha512-2mgJZv4AYBFkD/nJ4QmiX5Ymxi+AisPLPcS/KPXVqniyQNqKXX+wjieAbDXQP3HcogfEbpHoRMs49Cd4pfkk8g==}
engines: {node: '>=18'}
hasBin: true
@@ -5097,8 +5131,8 @@ packages:
'@vite-pwa/assets-generator':
optional: true
- '@vitejs/plugin-vue-jsx@5.0.1':
- resolution: {integrity: sha512-X7qmQMXbdDh+sfHUttXokPD0cjPkMFoae7SgbkF9vi3idGUKmxLcnU2Ug49FHwiKXebfzQRIm5yK3sfCJzNBbg==}
+ '@vitejs/plugin-vue-jsx@5.1.1':
+ resolution: {integrity: sha512-uQkfxzlF8SGHJJVH966lFTdjM/lGcwJGzwAHpVqAPDD/QcsqoUGa+q31ox1BrUfi+FLP2ChVp7uLXE3DkHyDdQ==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
vite: ^5.0.0 || ^6.0.0 || ^7.0.0
@@ -5172,17 +5206,17 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@vue/compiler-core@3.5.18':
- resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==}
+ '@vue/compiler-core@3.5.21':
+ resolution: {integrity: sha512-8i+LZ0vf6ZgII5Z9XmUvrCyEzocvWT+TeR2VBUVlzIH6Tyv57E20mPZ1bCS+tbejgUgmjrEh7q/0F0bibskAmw==}
- '@vue/compiler-dom@3.5.18':
- resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==}
+ '@vue/compiler-dom@3.5.21':
+ resolution: {integrity: sha512-jNtbu/u97wiyEBJlJ9kmdw7tAr5Vy0Aj5CgQmo+6pxWNQhXZDPsRr1UWPN4v3Zf82s2H3kF51IbzZ4jMWAgPlQ==}
- '@vue/compiler-sfc@3.5.18':
- resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==}
+ '@vue/compiler-sfc@3.5.21':
+ resolution: {integrity: sha512-SXlyk6I5eUGBd2v8Ie7tF6ADHE9kCR6mBEuPyH1nUZ0h6Xx6nZI29i12sJKQmzbDyr2tUHMhhTt51Z6blbkTTQ==}
- '@vue/compiler-ssr@3.5.18':
- resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==}
+ '@vue/compiler-ssr@3.5.21':
+ resolution: {integrity: sha512-vKQ5olH5edFZdf5ZrlEgSO1j1DMA4u23TVK5XR1uMhvwnYvVdDF0nHXJUblL/GvzlShQbjhZZ2uvYmDlAbgo9w==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -5220,22 +5254,22 @@ packages:
typescript:
optional: true
- '@vue/reactivity@3.5.18':
- resolution: {integrity: sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==}
+ '@vue/reactivity@3.5.21':
+ resolution: {integrity: sha512-3ah7sa+Cwr9iiYEERt9JfZKPw4A2UlbY8RbbnH2mGCE8NwHkhmlZt2VsH0oDA3P08X3jJd29ohBDtX+TbD9AsA==}
- '@vue/runtime-core@3.5.18':
- resolution: {integrity: sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==}
+ '@vue/runtime-core@3.5.21':
+ resolution: {integrity: sha512-+DplQlRS4MXfIf9gfD1BOJpk5RSyGgGXD/R+cumhe8jdjUcq/qlxDawQlSI8hCKupBlvM+3eS1se5xW+SuNAwA==}
- '@vue/runtime-dom@3.5.18':
- resolution: {integrity: sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==}
+ '@vue/runtime-dom@3.5.21':
+ resolution: {integrity: sha512-3M2DZsOFwM5qI15wrMmNF5RJe1+ARijt2HM3TbzBbPSuBHOQpoidE+Pa+XEaVN+czbHf81ETRoG1ltztP2em8w==}
- '@vue/server-renderer@3.5.18':
- resolution: {integrity: sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==}
+ '@vue/server-renderer@3.5.21':
+ resolution: {integrity: sha512-qr8AqgD3DJPJcGvLcJKQo2tAc8OnXRcfxhOJCPF+fcfn5bBGz7VCcO7t+qETOPxpWK1mgysXvVT/j+xWaHeMWA==}
peerDependencies:
vue: ^3.5.17
- '@vue/shared@3.5.18':
- resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==}
+ '@vue/shared@3.5.21':
+ resolution: {integrity: sha512-+2k1EQpnYuVuu3N7atWyG3/xoFWIVJZq4Mz8XNOdScFI0etES75fbny/oU4lKWk/577P1zmg0ioYvpGEDZ3DLw==}
'@vue/test-utils@2.4.6':
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
@@ -5246,8 +5280,8 @@ packages:
'@vueuse/core@12.8.2':
resolution: {integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==}
- '@vueuse/core@13.7.0':
- resolution: {integrity: sha512-myagn09+c6BmS6yHc1gTwwsdZilAovHslMjyykmZH3JNyzI5HoWhv114IIdytXiPipdHJ2gDUx0PB93jRduJYg==}
+ '@vueuse/core@13.9.0':
+ resolution: {integrity: sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==}
peerDependencies:
vue: ^3.5.17
@@ -5295,8 +5329,8 @@ packages:
universal-cookie:
optional: true
- '@vueuse/integrations@13.7.0':
- resolution: {integrity: sha512-Na5p0ONLepNV/xCBi8vBMuzCOZh9CFT/OHnrUlABWXgWTWSHM3wrVaLS1xvAijPLU5B1ysyJDDW/hKak80oLGA==}
+ '@vueuse/integrations@13.9.0':
+ resolution: {integrity: sha512-SDobKBbPIOe0cVL7QxMzGkuUGHvWTdihi9zOrrWaWUgFKe15cwEcwfWmgrcNzjT6kHnNmWuTajPHoIzUjYNYYQ==}
peerDependencies:
async-validator: ^4
axios: ^1
@@ -5343,8 +5377,8 @@ packages:
'@vueuse/metadata@12.8.2':
resolution: {integrity: sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==}
- '@vueuse/metadata@13.7.0':
- resolution: {integrity: sha512-8okFhS/1ite8EwUdZZfvTYowNTfXmVCOrBFlA31O0HD8HKXhY+WtTRyF0LwbpJfoFPc+s9anNJIXMVrvP7UTZg==}
+ '@vueuse/metadata@13.9.0':
+ resolution: {integrity: sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==}
'@vueuse/metadata@9.13.0':
resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
@@ -5360,39 +5394,19 @@ packages:
'@vueuse/shared@12.8.2':
resolution: {integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==}
- '@vueuse/shared@13.7.0':
- resolution: {integrity: sha512-Wi2LpJi4UA9kM0OZ0FCZslACp92HlVNw1KPaDY6RAzvQ+J1s7seOtcOpmkfbD5aBSmMn9NvOakc8ZxMxmDXTIg==}
+ '@vueuse/shared@13.9.0':
+ resolution: {integrity: sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==}
peerDependencies:
vue: ^3.5.17
'@vueuse/shared@9.13.0':
resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
- '@vxe-ui/core@4.2.11':
- resolution: {integrity: sha512-Cv0XKTGgFD+CD2MGixxM+k60Y3tFEJYErQj59tuPd0y0HuSFc7sQk0fuXdbcNgxZxtAi4zX3nsDk3kY+/HeAgQ==}
+ '@vxe-ui/core@4.2.12':
+ resolution: {integrity: sha512-g6gNDykKrKLzxsDDFDYTD/6tWrV9AfSaU7WIlKCO67BSXgKDMaEVTsH7ZZ7fI5qkOO9DH1vo07kbacyBNx7gSQ==}
peerDependencies:
vue: ^3.5.17
- '@whatwg-node/disposablestack@0.0.6':
- resolution: {integrity: sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==}
- engines: {node: '>=18.0.0'}
-
- '@whatwg-node/fetch@0.10.10':
- resolution: {integrity: sha512-watz4i/Vv4HpoJ+GranJ7HH75Pf+OkPQ63NoVmru6Srgc8VezTArB00i/oQlnn0KWh14gM42F22Qcc9SU9mo/w==}
- engines: {node: '>=18.0.0'}
-
- '@whatwg-node/node-fetch@0.7.25':
- resolution: {integrity: sha512-szCTESNJV+Xd56zU6ShOi/JWROxE9IwCic8o5D9z5QECZloas6Ez5tUuKqXTAdu6fHFx1t6C+5gwj8smzOLjtg==}
- engines: {node: '>=18.0.0'}
-
- '@whatwg-node/promise-helpers@1.3.2':
- resolution: {integrity: sha512-Nst5JdK47VIl9UcGwtv2Rcgyn5lWtZ0/mhRQ4G8NN2isxpq2TO30iqHzmwoJycjWuyUfg3GFXqP/gFHXeV57IA==}
- engines: {node: '>=16.0.0'}
-
- '@whatwg-node/server@0.9.71':
- resolution: {integrity: sha512-ueFCcIPaMgtuYDS9u0qlUoEvj6GiSsKrwnOLPp9SshqjtcRaR1IEHRjoReq3sXNydsF5i0ZnmuYgXq9dV53t0g==}
- engines: {node: '>=18.0.0'}
-
'@xyflow/svelte@1.2.4':
resolution: {integrity: sha512-CygKmc3t+KevPdx9VEWa6Q0O7DegJ6qzYrOH5dQo5zp9Inm2cYAZpkUuk64ry9Djw/gwy7EvrJTjyXetuvBGOg==}
peerDependencies:
@@ -5476,8 +5490,8 @@ packages:
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- algoliasearch@5.35.0:
- resolution: {integrity: sha512-Y+moNhsqgLmvJdgTsO4GZNgsaDWv8AOGAaPeIeHKlDn/XunoAqYbA+XNpBd1dW8GOXAUDyxC9Rxc7AV4kpFcIg==}
+ algoliasearch@5.37.0:
+ resolution: {integrity: sha512-y7gau/ZOQDqoInTQp0IwTOjkrHc4Aq4R8JgpmCleFwiLl+PbN2DMWoDUWZnrK8AhNJwT++dn28Bt4NZYNLAmuA==}
engines: {node: '>= 14.0.0'}
alien-signals@0.4.14:
@@ -5566,6 +5580,10 @@ packages:
array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
+ array-move@4.0.0:
+ resolution: {integrity: sha512-+RY54S8OuVvg94THpneQvFRmqWdAHeqtMzgMW6JNurHxe8rsS07cHQdfGkXnTUXiBcyZ0j3SiDIxxj0RPiqCkQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
array-timsort@1.0.3:
resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==}
@@ -5588,10 +5606,6 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
- ast-module-types@6.0.1:
- resolution: {integrity: sha512-WHw67kLXYbZuHTmcdbIrVArCq5wxo6NEuj3hiYAWr8mwJeC+C2mMCIBIWCiDoCye/OF/xelc+teJ1ERoWmnEIA==}
- engines: {node: '>=18'}
-
astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
@@ -5702,6 +5716,24 @@ packages:
resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==}
engines: {node: '>=18'}
+ bpmn-js-properties-panel@5.23.0:
+ resolution: {integrity: sha512-4B27LM8oV14A2QWRvazV17h4NxbkNERcqU+AGJmxKImMlLhu9893MWR+pCdTQCTphBdBkuD8ksWm+1wVCedJ7g==}
+ peerDependencies:
+ '@bpmn-io/properties-panel': '>= 3.7'
+ bpmn-js: '>= 11.5'
+ camunda-bpmn-js-behaviors: '>= 0.4'
+ diagram-js: '>= 11.9'
+
+ bpmn-js-token-simulation@0.36.3:
+ resolution: {integrity: sha512-HyiExdi+vENiStn284gIUQkQliiWly4dk2kY9PJILwwuTIoKtvg1zw8LGr9ReNUiScibNbpkt45bR25Oqfq9wA==}
+ engines: {node: '>= 16'}
+
+ bpmn-js@17.11.1:
+ resolution: {integrity: sha512-ywCeTg5kvN8lYkU+fHE+YXTGlfKc55lRBn7zW3k1//toeMNPy/PS/uQiujRWdFhMrH5dbtDvlwWukNw2pjWw8Q==}
+
+ bpmn-moddle@8.1.0:
+ resolution: {integrity: sha512-yI5OAFfYVJwViKTsTsonVfCBPtB3MlefADUORwNIxxBOMp21vnoxuxsdgUWlPH/dvAEZh/+mr8UtqOBNu8NC5Q==}
+
brace-expansion@1.1.12:
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
@@ -5712,14 +5744,11 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.25.3:
- resolution: {integrity: sha512-cDGv1kkDI4/0e5yON9yM5G/0A5u8sf5TnmdX5C9qHzI9PPu++sQ9zjm1k9NiOrf3riY4OkK0zSGqfvJyJsgCBQ==}
+ browserslist@4.25.4:
+ resolution: {integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- buffer-crc32@0.2.13:
- resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
-
buffer-crc32@1.0.0:
resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
engines: {node: '>=8.0.0'}
@@ -5733,10 +5762,6 @@ packages:
buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
- builtin-modules@3.3.0:
- resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
- engines: {node: '>=6'}
-
builtin-modules@5.0.0:
resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==}
engines: {node: '>=18.20'}
@@ -5802,17 +5827,27 @@ packages:
resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
engines: {node: '>=16'}
+ camunda-bpmn-js-behaviors@1.11.1:
+ resolution: {integrity: sha512-It6OLShW7wuMC12Vc6OZPxbtRKX8j5AvqnBktXs5jyfUndqcRNHRkZ7wSEiTqAkHyl6ATNuYmfNUQzqxFyNmKg==}
+ peerDependencies:
+ bpmn-js: '>= 9'
+ camunda-bpmn-moddle: '>= 7'
+ zeebe-bpmn-moddle: '>= 0.18'
+
+ camunda-bpmn-moddle@7.0.1:
+ resolution: {integrity: sha512-Br8Diu6roMpziHdpl66Dhnm0DTnCFMrSD9zwLV08LpD52QA0UsXxU87XfHf08HjuB7ly0Hd1bvajZRpf9hbmYQ==}
+
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001735:
- resolution: {integrity: sha512-EV/laoX7Wq2J9TQlyIXRxTJqIw4sxfXS4OYgudGxBYRuTv0q7AM6yMEpU/Vo1I94thg9U6EZ2NfZx9GJq83u7w==}
+ caniuse-lite@1.0.30001741:
+ resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==}
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@5.3.1:
- resolution: {integrity: sha512-48af6xm9gQK8rhIcOxWwdGzIervm8BVTin+yRp9HEvU20BtVZ2lBywlIJBzwaDtvo0FvjeL7QdCADoUoqIbV3A==}
+ chai@5.3.3:
+ resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
engines: {node: '>=18'}
chalk-template@1.1.0:
@@ -5885,6 +5920,9 @@ packages:
class-variance-authority@0.7.1:
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
+ classnames@2.5.1:
+ resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
+
clean-css@5.3.3:
resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
engines: {node: '>= 10.0'}
@@ -5946,34 +5984,19 @@ packages:
resolution: {integrity: sha512-HcfnUFJwI2FvH73YWVbbMh7ObWxZiHIycEhv9ZEXy6e8ZKDjtZKbbYFUtsLN46HFXPvU5V2Uvc2d55Z//oFW5A==}
deprecated: This is an accidentally mis-tagged instance of 5.65.7
- color-convert@1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
-
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- color-name@1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
-
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- color-string@1.9.1:
- resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
-
- color@3.2.1:
- resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
-
colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
- colorspace@1.1.4:
- resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==}
-
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -6026,9 +6049,6 @@ packages:
peerDependencies:
'@commitlint/lint': '>=19 <20'
- common-path-prefix@3.0.0:
- resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
-
common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
@@ -6045,6 +6065,9 @@ packages:
compatx@0.2.0:
resolution: {integrity: sha512-6gLRNt4ygsi5NyMVhceOCFv14CIdDFN7fQjX1U4+47qVE/+kjPoXMK65KWK+dWxmFzMTuKazoQ9sch6pM0p5oA==}
+ component-event@0.2.1:
+ resolution: {integrity: sha512-wGA++isMqiDq1jPYeyv2as/Bt/u+3iLW0rEa+8NQ82jAv3TgqMiCM+B2SaBdn2DfLilLjjq736YcezihRYhfxw==}
+
compress-commons@6.0.2:
resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
engines: {node: '>= 14'}
@@ -6112,18 +6135,14 @@ packages:
resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
engines: {node: '>=12.13'}
- copy-file@11.1.0:
- resolution: {integrity: sha512-X8XDzyvYaA6msMyAM575CUoygY5b44QzLcGRKsK3MFmXcOvQa518dNPLsKYwkYsn72g3EiW+LE0ytd/FlqWmyw==}
- engines: {node: '>=18'}
-
- core-js-compat@3.45.0:
- resolution: {integrity: sha512-gRoVMBawZg0OnxaVv3zpqLLxaHmsubEGyTnqdpI/CEBvX4JadI1dMSHxagThprYRtSVbuQxvi6iUatdPxohHpA==}
+ core-js-compat@3.45.1:
+ resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==}
- core-js-pure@3.45.0:
- resolution: {integrity: sha512-OtwjqcDpY2X/eIIg1ol/n0y/X8A9foliaNt1dSK0gV3J2/zw+89FcNG3mPK+N8YWts4ZFUPxnrAzsxs/lf8yDA==}
+ core-js-pure@3.45.1:
+ resolution: {integrity: sha512-OHnWFKgTUshEU8MK+lOs1H8kC8GkTi9Z1tvNkxrCcw9wl3MJIO7q2ld77wjWn4/xuGrVu2X+nME1iIIPBSdyEQ==}
- core-js@3.45.0:
- resolution: {integrity: sha512-c2KZL9lP4DjkN3hk/an4pWn5b5ZefhRJnAc42n6LJ19kSnbeRbdQZE5dSeE2LBol1OwJD3X1BQvFTAsa8ReeDA==}
+ core-js@3.45.1:
+ resolution: {integrity: sha512-L4NPsJlCfZsPeXukyzHFlg/i7IIVwHSItR0wg0FLNqYClJ4MQYTYLbC7EkjKYRLZF2iof2MUgN0EGy7MdQFChg==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -6158,9 +6177,8 @@ packages:
resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
engines: {node: '>= 14'}
- cron-parser@4.9.0:
- resolution: {integrity: sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==}
- engines: {node: '>=12.0.0'}
+ crelt@1.0.6:
+ resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
croner@9.1.0:
resolution: {integrity: sha512-p9nwwR4qyT5W996vBZhdvBCnMhicY5ytZkR4D1Xj0wuTDEiMnjwR57Q3RXYY/s0EpX6Ay3vgIcfaR+ewGHsi+g==}
@@ -6243,8 +6261,8 @@ packages:
resolution: {integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==}
engines: {node: '>=12 || >=16'}
- css-has-pseudo@7.0.2:
- resolution: {integrity: sha512-nzol/h+E0bId46Kn2dQH5VElaknX2Sr0hFuB/1EomdC7j+OISt2ZzK7EHX9DZDY53WbIVAR7FYKSO2XnSf07MQ==}
+ css-has-pseudo@7.0.3:
+ resolution: {integrity: sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -6276,16 +6294,16 @@ packages:
resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
engines: {node: '>= 6'}
- cssdb@8.3.1:
- resolution: {integrity: sha512-XnDRQMXucLueX92yDe0LPKupXetWoFOgawr4O4X41l5TltgK2NVbJJVDnnOywDYfW1sTJ28AcXGKOqdRKwCcmQ==}
+ cssdb@8.4.0:
+ resolution: {integrity: sha512-lyATYGyvXwQ8h55WeQeEHXhI+47rl52pXSYkFK/ZrCbAJSgVIaPFjYc3RM8TpRHKk7W3wsAZImmLps+P5VyN9g==}
cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@7.0.8:
- resolution: {integrity: sha512-d+3R2qwrUV3g4LEMOjnndognKirBZISylDZAF/TPeCWVjEwlXS2e4eN4ICkoobRe7pD3H6lltinKVyS1AJhdjQ==}
+ cssnano-preset-default@7.0.9:
+ resolution: {integrity: sha512-tCD6AAFgYBOVpMBX41KjbvRh9c2uUjLXRyV7KHSIrwHiq5Z9o0TFfUCoM3TwVrRsRteN3sVXGNvjVNxYzkpTsA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -6296,8 +6314,8 @@ packages:
peerDependencies:
postcss: ^8.4.32
- cssnano@7.1.0:
- resolution: {integrity: sha512-Pu3rlKkd0ZtlCUzBrKL1Z4YmhKppjC1H9jo7u1o4qaKqyhvixFgu5qLyNIAOjSTg9DjVPtUqdROq2EfpVMEe+w==}
+ cssnano@7.1.1:
+ resolution: {integrity: sha512-fm4D8ti0dQmFPeF8DXSAA//btEmqCOgAc/9Oa3C1LW94h5usNrJEfrON7b4FkPZgnDEn6OUs5NdxiJZmAtGOpQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -6458,10 +6476,6 @@ packages:
resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==}
engines: {node: '>=12'}
- data-uri-to-buffer@4.0.1:
- resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
- engines: {node: '>= 12'}
-
data-view-buffer@1.0.2:
resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
engines: {node: '>= 0.4'}
@@ -6488,8 +6502,8 @@ packages:
date-fns@4.1.0:
resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
- dayjs@1.11.13:
- resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
+ dayjs@1.11.18:
+ resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==}
db0@0.3.2:
resolution: {integrity: sha512-xzWNQ6jk/+NtdfLyXEipbX55dmDSeteLFt/ayF+wZUU5bzKgmrDOxmInUTbyVRp46YwnJdkDA1KhB7WIXFofJw==}
@@ -6526,9 +6540,6 @@ packages:
supports-color:
optional: true
- decache@4.6.2:
- resolution: {integrity: sha512-2LPqkLeu8XWHU8qNCS3kcF6sCcb5zIzvWaAHYSvPfwhdd7mHuah29NssMzrTYyHN4F5oFy2ko9OBYxegtU0FEw==}
-
decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
@@ -6631,51 +6642,26 @@ packages:
resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
engines: {node: '>=8'}
- detective-amd@6.0.1:
- resolution: {integrity: sha512-TtyZ3OhwUoEEIhTFoc1C9IyJIud3y+xYkSRjmvCt65+ycQuc3VcBrPRTMWoO/AnuCyOB8T5gky+xf7Igxtjd3g==}
- engines: {node: '>=18'}
- hasBin: true
-
- detective-cjs@6.0.1:
- resolution: {integrity: sha512-tLTQsWvd2WMcmn/60T2inEJNhJoi7a//PQ7DwRKEj1yEeiQs4mrONgsUtEJKnZmrGWBBmE0kJ1vqOG/NAxwaJw==}
- engines: {node: '>=18'}
-
- detective-es6@5.0.1:
- resolution: {integrity: sha512-XusTPuewnSUdoxRSx8OOI6xIA/uld/wMQwYsouvFN2LAg7HgP06NF1lHRV3x6BZxyL2Kkoih4ewcq8hcbGtwew==}
- engines: {node: '>=18'}
+ devlop@1.1.0:
+ resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
- detective-postcss@7.0.1:
- resolution: {integrity: sha512-bEOVpHU9picRZux5XnwGsmCN4+8oZo7vSW0O0/Enq/TO5R2pIAP2279NsszpJR7ocnQt4WXU0+nnh/0JuK4KHQ==}
- engines: {node: ^14.0.0 || >=16.0.0}
+ diagram-js-direct-editing@3.2.0:
+ resolution: {integrity: sha512-+pyxeQGBSdLiZX0/tmmsm2qZSvm9YtVzod5W3RMHSTR7VrkUMD6E7EX/W9JQv3ebxO7oIdqFmytmNDDpSHnYEw==}
peerDependencies:
- postcss: ^8.4.47
-
- detective-sass@6.0.1:
- resolution: {integrity: sha512-jSGPO8QDy7K7pztUmGC6aiHkexBQT4GIH+mBAL9ZyBmnUIOFbkfZnO8wPRRJFP/QP83irObgsZHCoDHZ173tRw==}
- engines: {node: '>=18'}
+ diagram-js: '*'
- detective-scss@5.0.1:
- resolution: {integrity: sha512-MAyPYRgS6DCiS6n6AoSBJXLGVOydsr9huwXORUlJ37K3YLyiN0vYHpzs3AdJOgHobBfispokoqrEon9rbmKacg==}
- engines: {node: '>=18'}
-
- detective-stylus@5.0.1:
- resolution: {integrity: sha512-Dgn0bUqdGbE3oZJ+WCKf8Dmu7VWLcmRJGc6RCzBgG31DLIyai9WAoEhYRgIHpt/BCRMrnXLbGWGPQuBUrnF0TA==}
- engines: {node: '>=18'}
+ diagram-js@12.8.1:
+ resolution: {integrity: sha512-LF9BiwjbOPpZd0ez5VSlYRbdbEA59YQX43bWvNDp1rLMv0xwZ5yIg4oaYDK82nIQ0kH1tjvoQRpNevMTCgQVyw==}
- detective-typescript@14.0.0:
- resolution: {integrity: sha512-pgN43/80MmWVSEi5LUuiVvO/0a9ss5V7fwVfrJ4QzAQRd3cwqU1SfWGXJFcNKUqoD5cS+uIovhw5t/0rSeC5Mw==}
- engines: {node: '>=18'}
- peerDependencies:
- typescript: ^5.4.4
+ diagram-js@14.11.3:
+ resolution: {integrity: sha512-Seq9BHAXfzKS60L4v4Gvgvv72wOtvrfJQAyyPm9pntSZDMzjoodPSXnEUPud1G2zVCMGEUUW++s0reEdaWgkXA==}
- detective-vue2@2.2.0:
- resolution: {integrity: sha512-sVg/t6O2z1zna8a/UIV6xL5KUa2cMTQbdTIIvqNM0NIPswp52fe43Nwmbahzj3ww4D844u/vC2PYfiGLvD3zFA==}
- engines: {node: '>=18'}
- peerDependencies:
- typescript: ^5.4.4
+ didi@10.2.2:
+ resolution: {integrity: sha512-l8NYkYFXV1izHI65EyT8EXOjUZtKmQkHLTT89cSP7HU5J/G7AOj0dXKtLc04EXYlga99PBY18IPjOeZ+c3DI4w==}
+ engines: {node: '>= 16'}
- devlop@1.1.0:
- resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
+ didi@9.0.2:
+ resolution: {integrity: sha512-q2+aj+lnJcUweV7A9pdUrwFr4LHVmRPwTmQLtHPFz4aT7IBoryN6Iy+jmFku+oIzr5ebBkvtBCOb87+dJhb7bg==}
didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
@@ -6716,6 +6702,13 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
+ domify@1.4.2:
+ resolution: {integrity: sha512-m4yreHcUWHBncGVV7U+yQzc12vIlq0jMrtHZ5mW6dQMiL/7skSYNVX9wqKwOtyO9SGCgevrAFEgOCAHmamHTUA==}
+
+ domify@2.0.0:
+ resolution: {integrity: sha512-rmvrrmWQPD/X1A/nPBfIVg4r05792QdG9Z4Prk6oQG0F9zBMDkr0GKAdds1wjb2dq1rTz/ywc4ZxpZbgz0tttg==}
+ engines: {node: '>=18'}
+
dompurify@3.2.6:
resolution: {integrity: sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ==}
@@ -6748,8 +6741,8 @@ packages:
resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
engines: {node: '>=12'}
- dotenv@17.2.1:
- resolution: {integrity: sha512-kQhDYKZecqnM0fCnzI5eIv5L4cAe/iRI+HqMbO/hbRdTAeXDG+M9FjipUxNfbARuEg4iHIbhnhs78BCHNbSxEQ==}
+ dotenv@17.2.2:
+ resolution: {integrity: sha512-Sf2LSQP+bOlhKWWyhFsn0UsfdK/kCWRv1iuA2gXAwt3dyNabr6QSj00I2V10pidqz69soatm9ZwZvpQMTIOd5Q==}
engines: {node: '>=12'}
dotenv@8.6.0:
@@ -6785,19 +6778,19 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.206:
- resolution: {integrity: sha512-/eucXSTaI8L78l42xPurxdBzPTjAkMVCQO7unZCWk9LnZiwKcSvQUhF4c99NWQLwMQXxjlfoQy0+8m9U2yEDQQ==}
+ electron-to-chromium@1.5.214:
+ resolution: {integrity: sha512-TpvUNdha+X3ybfU78NoQatKvQEm1oq3lf2QbnmCEdw+Bd9RuIAY+hJTvq1avzHM0f7EJfnH3vbCnbzKzisc/9Q==}
- element-plus@2.10.7:
- resolution: {integrity: sha512-bL4yhepL8/0NEQA5+N2Q6ZVKLipIDkiQjK2mqtSmGh6CxJk1yaBMdG5HXfYkbk1htNcT3ULk9g23lzT323JGcA==}
+ element-plus@2.11.2:
+ resolution: {integrity: sha512-sTMDXtgeqy17TUsBSH/DL3h1/5sqIOVUUgXFoVbdD8lWWYssKrDX50CEYy4k29tYJhPHKZyFSwcLJsIajr+dDA==}
peerDependencies:
vue: ^3.5.17
emoji-regex-xs@1.0.0:
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
- emoji-regex@10.4.0:
- resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
+ emoji-regex@10.5.0:
+ resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -6805,9 +6798,6 @@ packages:
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- enabled@2.0.0:
- resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==}
-
encodeurl@2.0.0:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
@@ -6818,9 +6808,6 @@ packages:
encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
- end-of-stream@1.4.5:
- resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
-
enhanced-resolve@5.18.3:
resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
engines: {node: '>=10.13.0'}
@@ -7107,8 +7094,8 @@ packages:
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.33.0:
- resolution: {integrity: sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==}
+ eslint@9.35.0:
+ resolution: {integrity: sha512-QePbBFMJFjgmlE+cXAlbHZbHpdFVS2E/6vzCy7aKlebddvl1vadiC4JFV5u/wqTkNUwEV8WrQi257jf5f06hrg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -7205,11 +7192,6 @@ packages:
extendable-error@0.1.7:
resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
- extract-zip@2.0.1:
- resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
- engines: {node: '>= 10.17.0'}
- hasBin: true
-
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -7237,8 +7219,12 @@ packages:
resolution: {integrity: sha512-PY66/8HelapGo5nqMN17ZTKqJj1nppuS1OoC9Y0aI2jsUDlZDEYhMODTpb68wVCq+xMbaEbPGXRd7qutHzkRXA==}
engines: {node: ^14.13.1 || >=16.0.0}
- fast-uri@3.0.6:
- resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==}
+ fast-uri@3.1.0:
+ resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
+
+ fast-xml-parser@4.5.3:
+ resolution: {integrity: sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==}
+ hasBin: true
fastest-levenshtein@1.0.16:
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
@@ -7247,9 +7233,6 @@ packages:
fastq@1.19.1:
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
- fd-slicer@1.1.0:
- resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
-
fdir@6.5.0:
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
engines: {node: '>=12.0.0'}
@@ -7259,12 +7242,11 @@ packages:
picomatch:
optional: true
- fecha@4.2.3:
- resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==}
+ feelers@1.4.0:
+ resolution: {integrity: sha512-CGa/7ILuqoqTaeYeoKsg/4tzu2es9sEEJTmSjdu0lousZBw4V9gcYhHYFNmbrSrKmbAVfOzj6/DsymGJWFIOeg==}
- fetch-blob@3.2.0:
- resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
- engines: {node: ^12.20 || >= 14.13}
+ feelin@3.2.0:
+ resolution: {integrity: sha512-GFDbHsTYk7YXO1tyw1dOjb7IODeAZvNIosdGZThUwPx5XcD/XhO0hnPZXsIbAzSsIdrgGlTEEdby9fZ2gixysA==}
figures@6.1.0:
resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
@@ -7291,10 +7273,6 @@ packages:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- filter-obj@6.1.0:
- resolution: {integrity: sha512-xdMtCAODmPloU9qtmPcdBV9Kd27NtMse+4ayThxqIHUES5Z2S6bGpap5PpdmNM56ub7y3i1eyr+vJJIIgWGKmA==}
- engines: {node: '>=18'}
-
find-up-simple@1.0.1:
resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==}
engines: {node: '>=18'}
@@ -7332,9 +7310,6 @@ packages:
flatted@3.3.3:
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
- fn.name@1.1.0:
- resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
-
focus-trap@7.6.5:
resolution: {integrity: sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==}
@@ -7359,10 +7334,6 @@ packages:
resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
engines: {node: '>= 6'}
- formdata-polyfill@4.0.10:
- resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
- engines: {node: '>=12.20.0'}
-
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
@@ -7428,16 +7399,12 @@ packages:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- get-amd-module-type@6.0.1:
- resolution: {integrity: sha512-MtjsmYiCXcYDDrGqtNbeIYdAl85n+5mSv2r3FbzER/YV3ZILw4HNNIw34HuV5pyl0jzs6GFYU1VHVEefhgcNHQ==}
- engines: {node: '>=18'}
-
get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.3.0:
- resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
+ get-east-asian-width@1.3.1:
+ resolution: {integrity: sha512-R1QfovbPsKmosqTnPoRFiJ7CF9MLRgb53ChvMZm+r4p76/+8yKDy17qLL2PKInORy2RkZZekuK0efYgmzTkXyQ==}
engines: {node: '>=18'}
get-intrinsic@1.3.0:
@@ -7458,10 +7425,6 @@ packages:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
- get-stream@5.2.0:
- resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
- engines: {node: '>=8'}
-
get-stream@8.0.1:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
@@ -7557,11 +7520,6 @@ packages:
globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
- gonzales-pe@4.3.0:
- resolution: {integrity: sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==}
- engines: {node: '>=0.6.0'}
- hasBin: true
-
good-listener@1.2.2:
resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==}
@@ -7593,6 +7551,10 @@ packages:
h3@1.15.4:
resolution: {integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==}
+ hammerjs@2.0.8:
+ resolution: {integrity: sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==}
+ engines: {node: '>=0.8.0'}
+
happy-dom@17.6.3:
resolution: {integrity: sha512-UVIHeVhxmxedbWPCfgS55Jg2rDfwf2BCKeylcPSqazLz5w3Kri7Q4xdBJubsr/+VUzFLh0VjIvh13RaDA2/Xug==}
engines: {node: '>=20.0.0'}
@@ -7652,12 +7614,11 @@ packages:
hookable@5.5.3:
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- hookified@1.11.0:
- resolution: {integrity: sha512-aDdIN3GyU5I6wextPplYdfmWCo+aLmjjVbntmX6HLD5RCi/xKsivYEBhnRD+d9224zFf008ZpLMPlWF0ZodYZw==}
+ hookified@1.12.0:
+ resolution: {integrity: sha512-hMr1Y9TCLshScrBbV2QxJ9BROddxZ12MX9KsCtuGGy/3SmmN5H1PllKerrVlSotur9dlE8hmUKAOSa3WDzsZmQ==}
- hosted-git-info@7.0.2:
- resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ htm@3.1.1:
+ resolution: {integrity: sha512-983Vyg8NwUE7JkZ6NmOqpCZ+sh1bKv2iYTlUkzlWmA5JD2acKoxd4KVxbMmxX/85mtfdnDmTFoNKcg5DGAvxNQ==}
html-minifier-terser@6.1.0:
resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
@@ -7730,6 +7691,9 @@ packages:
idb@7.1.1:
resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==}
+ ids@1.0.5:
+ resolution: {integrity: sha512-XQ0yom/4KWTL29sLG+tyuycy7UmeaM/79GRtSJq6IG9cJGIPeBz5kwDCguie3TwxaMNIc3WtPi0cTa1XYHicpw==}
+
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
@@ -7757,8 +7721,8 @@ packages:
resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
engines: {node: '>=8'}
- import-meta-resolve@4.1.0:
- resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
+ import-meta-resolve@4.2.0:
+ resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -7772,10 +7736,6 @@ packages:
resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
engines: {node: '>=12'}
- index-to-position@1.1.0:
- resolution: {integrity: sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg==}
- engines: {node: '>=18'}
-
infer-owner@1.0.4:
resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
@@ -7783,6 +7743,9 @@ packages:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
+ inherits-browser@0.1.0:
+ resolution: {integrity: sha512-CJHHvW3jQ6q7lzsXPpapLdMx5hDpSF3FSh45pwsj6bKxJJ8Nl8v43i5yXnr3BdfOimGHKyniewQtnAIp3vyJJw==}
+
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
@@ -7819,9 +7782,6 @@ packages:
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- is-arrayish@0.3.2:
- resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
-
is-async-function@2.1.1:
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
engines: {node: '>= 0.4'}
@@ -7842,10 +7802,6 @@ packages:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
- is-builtin-module@3.2.1:
- resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
- engines: {node: '>=6'}
-
is-builtin-module@5.0.0:
resolution: {integrity: sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==}
engines: {node: '>=18.20'}
@@ -7900,8 +7856,8 @@ packages:
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
engines: {node: '>=12'}
- is-fullwidth-code-point@5.0.0:
- resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==}
+ is-fullwidth-code-point@5.1.0:
+ resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
engines: {node: '>=18'}
is-generator-function@1.1.0:
@@ -7968,10 +7924,6 @@ packages:
resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==}
engines: {node: '>=12'}
- is-plain-obj@2.1.0:
- resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
- engines: {node: '>=8'}
-
is-plain-obj@4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
@@ -8046,13 +7998,6 @@ packages:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
- is-url-superb@4.0.0:
- resolution: {integrity: sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==}
- engines: {node: '>=10'}
-
- is-url@1.2.4:
- resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
-
is-weakmap@2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
@@ -8212,20 +8157,12 @@ packages:
resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==}
engines: {node: '>=12', npm: '>=6'}
- junk@4.0.1:
- resolution: {integrity: sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==}
- engines: {node: '>=12.20'}
-
jwa@1.4.2:
resolution: {integrity: sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw==}
jws@3.2.2:
resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==}
- jwt-decode@4.0.0:
- resolution: {integrity: sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==}
- engines: {node: '>=18'}
-
katex@0.16.22:
resolution: {integrity: sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==}
hasBin: true
@@ -8260,18 +8197,10 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- kuler@2.0.0:
- resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==}
-
- ky@1.8.2:
- resolution: {integrity: sha512-XybQJ3d4Ea1kI27DoelE5ZCT3bSJlibYTtQuMsyzKox3TMyayw1asgQdl54WroAm+fIA3ZCr8zXW2RpR7qWVpA==}
+ ky@1.10.0:
+ resolution: {integrity: sha512-YRPCzHEWZffbfvmRrfwa+5nwBHwZuYiTrfDX0wuhGBPV0pA/zCqcOq93MDssON/baIkpYbvehIX5aLpMxrRhaA==}
engines: {node: '>=18'}
- lambda-local@2.2.0:
- resolution: {integrity: sha512-bPcgpIXbHnVGfI/omZIlgucDqlf4LrsunwoKue5JdZeGybt8L6KyJz2Zu19ffuZwIwLj2NAI2ZyaqNT6/cetcg==}
- engines: {node: '>=8'}
- hasBin: true
-
latest-version@9.0.0:
resolution: {integrity: sha512-7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA==}
engines: {node: '>=18'}
@@ -8280,58 +8209,58 @@ packages:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
- lefthook-darwin-arm64@1.12.3:
- resolution: {integrity: sha512-j1lwaosWRy3vhz8oQgCS1M6EUFN95aIYeNuqkczsBoAA6BDNAmVP1ctYEIYUK4bYaIgENbqbA9prYMAhyzh6Og==}
+ lefthook-darwin-arm64@1.12.4:
+ resolution: {integrity: sha512-/eBd9GnBS9Js2ZsHzipj2cV8siFex/g6MgBSeIxsHBJNkQFq4O42ItWxUir5Q43zFvZCjGizBlhklbmubGOZfg==}
cpu: [arm64]
os: [darwin]
- lefthook-darwin-x64@1.12.3:
- resolution: {integrity: sha512-x6aWFfLQX4m5zQ4X9zh5+hHOE5XTvNjz2zB9DI+xbIBLs2RRg0xJNT3OfgSrBU1QtEBneJ5dRQP5nl47td9GDQ==}
+ lefthook-darwin-x64@1.12.4:
+ resolution: {integrity: sha512-WDO0oR3pIAIBTZtn4/4dC0GRyrfJtPGckYbqshpH4Fkuxyy7nRGy3su+uY8kiiVYLy/nvELY2eoqnT1Rp4njFQ==}
cpu: [x64]
os: [darwin]
- lefthook-freebsd-arm64@1.12.3:
- resolution: {integrity: sha512-41OmulLqVZ0EOHmmHouJrpL59SwDD7FLoso4RsQVIBPaf8fHacdLo07Ye28VWQ5XolZQvnWcr1YXKo4JhqQMyw==}
+ lefthook-freebsd-arm64@1.12.4:
+ resolution: {integrity: sha512-/VNBWQvAsLuVilS7JB+pufTjuoj06Oz5YdGWUCo6u2XCKZ6UHzwDtGDJ0+3JQMSg8613gHmAdkGoByKjxqZSkQ==}
cpu: [arm64]
os: [freebsd]
- lefthook-freebsd-x64@1.12.3:
- resolution: {integrity: sha512-741/JRCJIS++hgYEH2uefN4FsH872V7gy2zDhcfQofiZnWP7+qhl4Wmwi8IpjIu4X7hLOC4cT18LOVU5L8KV9Q==}
+ lefthook-freebsd-x64@1.12.4:
+ resolution: {integrity: sha512-bY6klVVeBoiQEimb/z5TC5IFyczak9VOVQ8b+S/QAy+tvKo9TY6FdGwy7yxgoqTzfEkirDQxVOkalQsM/11xsg==}
cpu: [x64]
os: [freebsd]
- lefthook-linux-arm64@1.12.3:
- resolution: {integrity: sha512-BXIy1aDFZmFgmebJliNrEqZfX1lSOD4b/USvANv1UirFrNgTq5SRssd1CKfflT2PwKX6LsJTD4WabLLWZOxp9A==}
+ lefthook-linux-arm64@1.12.4:
+ resolution: {integrity: sha512-iU+tPCNcX1pztk5Zjs02+sOnjZj9kCrLn6pg954WMr9dZTIaEBljRV+ybBP/5zLlv2wfv5HFBDKDKNRYjOVF+A==}
cpu: [arm64]
os: [linux]
- lefthook-linux-x64@1.12.3:
- resolution: {integrity: sha512-FRdwdj5jsQAP2eVrtkVUqMqYNCbQ2Ix84izy29/BvLlu/hVypAGbDfUkgFnsmAd6ZsCBeYCEtPuqyg3E3SO0Rg==}
+ lefthook-linux-x64@1.12.4:
+ resolution: {integrity: sha512-IXYUSBYetftYmdii2aGIjv7kxO2m+jTYjaEoldtCDcXAPz/yV78Xx2WzY/LYNJsJ1vzbUhBqVOeRCHCwLXusTQ==}
cpu: [x64]
os: [linux]
- lefthook-openbsd-arm64@1.12.3:
- resolution: {integrity: sha512-tch5wXY4GOjKAYohH7OFoxNdVHuUSYt2Pulo2VTkMYEG8IrvJnRO5MkvgHtKDHzU5mfABQYv5+ccJykDx5hQWA==}
+ lefthook-openbsd-arm64@1.12.4:
+ resolution: {integrity: sha512-3DFLbqAlAeoqo//PE20NcGKJzBqAMbS/roPvaJ9DYA95MSywMig2jxyDoZbBhyP/J/iuFO3op7emtwgwousckA==}
cpu: [arm64]
os: [openbsd]
- lefthook-openbsd-x64@1.12.3:
- resolution: {integrity: sha512-IHbHg/rUFXrAN7LnjcQEtutCHBaD49CZge96Hpk0GZ2eEG5GTCNRnUyEf+Kf3+RTqHFgwtADdpeDa/ZaGZTM4g==}
+ lefthook-openbsd-x64@1.12.4:
+ resolution: {integrity: sha512-Nlxn3lXHK3hRDL5bP5W6+LleE9CRIc6GJ84xTo9EPwI40utsM8olAm+pFFRnE9szkHvQTkXwoBhqi2C5laxoGQ==}
cpu: [x64]
os: [openbsd]
- lefthook-windows-arm64@1.12.3:
- resolution: {integrity: sha512-wghcE5TSpb+mbtemUV6uAo9hEK09kxRzhf2nPdeDX+fw42cL2TGZsbaCnDyzaY144C+L2/wEWrLIHJMnZYkuqA==}
+ lefthook-windows-arm64@1.12.4:
+ resolution: {integrity: sha512-tWOfrTC9GNheaFXFt49G5nbBUYLqd2NBb5XW97dSLO/lU81cvuvRsMKZFBrq48LvByT7PLwEuibMuO1TminhHA==}
cpu: [arm64]
os: [win32]
- lefthook-windows-x64@1.12.3:
- resolution: {integrity: sha512-7Co/L8e2x2hGC1L33jDJ4ZlTkO3PJm25GOGpLfN1kqwhGB/uzMLeTI/PBczjlIN8isUv26ouNd9rVR7Bibrwyg==}
+ lefthook-windows-x64@1.12.4:
+ resolution: {integrity: sha512-3B295z3tdcdDrKrY98b/cSm4Elb/TXWMVQuH2xW15CJp9QY6jsgRpFJyBdyz4ggrPFhNUVnLKCpm6/saqeZWHA==}
cpu: [x64]
os: [win32]
- lefthook@1.12.3:
- resolution: {integrity: sha512-huMg+mGp6wHPjkaLdchuOvxVRMzvz6OVdhivatiH2Qn47O5Zm46jwzbVPYIanX6N/8ZTjGLBxv8tZ0KYmKt/Jg==}
+ lefthook@1.12.4:
+ resolution: {integrity: sha512-VhTFYGT55pD2hytjcn6Lckb0tCbG1Cke6rszTWVQVJpnJZ0EqQW+Pl+JYQLlruR8MO4RGFVU0UBUw17/g9TYxA==}
hasBin: true
less@4.4.1:
@@ -8347,6 +8276,9 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ lezer-feel@1.8.1:
+ resolution: {integrity: sha512-g0eGi7/INNPtPbtcz5ubInc3rSvXuJI5NfmS1hVU1FkaKNdBpwWdxXzrUb4wxr8DNXhXnUs1/a9rO4HaDzII7Q==}
+
lilconfig@3.1.3:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
@@ -8365,8 +8297,8 @@ packages:
resolution: {integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==}
engines: {node: '>=18.0.0'}
- local-pkg@1.1.1:
- resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
+ local-pkg@1.1.2:
+ resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
engines: {node: '>=14'}
locate-character@3.0.0:
@@ -8485,16 +8417,12 @@ packages:
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
engines: {node: '>=18'}
- logform@2.7.0:
- resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==}
- engines: {node: '>= 12.0.0'}
-
loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@3.2.0:
- resolution: {integrity: sha512-2NCfZcT5VGVNX9mSZIxLRkEAegDGBpuQZBy13desuHeVORmBDyAET4TkJr4SjqQy3A8JDofMN6LpkK8Xcm/dlw==}
+ loupe@3.2.1:
+ resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==}
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -8502,8 +8430,8 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.1.0:
- resolution: {integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==}
+ lru-cache@11.2.1:
+ resolution: {integrity: sha512-r8LA6i4LP4EeWOhqBaZZjDWwehd1xUJPCJd9Sv300H0ZmcUER4+JPh7bqqZeqs1o5pgtgvXm+d9UGrB5zZGDiQ==}
engines: {node: 20 || >=22}
lru-cache@5.1.1:
@@ -8518,8 +8446,8 @@ packages:
peerDependencies:
vue: ^3.5.17
- luxon@3.7.1:
- resolution: {integrity: sha512-RkRWjA926cTvz5rAb1BqyWkKbbjzCGchDUIKMCUvNi17j6f6j8uHGDV82Aqcqtzd+icoYpELmG3ksgGiFNNcNg==}
+ luxon@3.7.2:
+ resolution: {integrity: sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==}
engines: {node: '>=12'}
lz-string@1.5.0:
@@ -8529,8 +8457,8 @@ packages:
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
- magic-string@0.30.17:
- resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+ magic-string@0.30.19:
+ resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
@@ -8609,10 +8537,6 @@ packages:
resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
engines: {node: '>=18'}
- merge-options@3.0.4:
- resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==}
- engines: {node: '>=10'}
-
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -8620,9 +8544,6 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- micro-api-client@3.3.0:
- resolution: {integrity: sha512-y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg==}
-
micromark-util-character@2.1.1:
resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
@@ -8681,6 +8602,15 @@ packages:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
+ min-dash@4.2.3:
+ resolution: {integrity: sha512-VLMYQI5+FcD9Ad24VcB08uA83B07OhueAlZ88jBK6PyupTvEJwllTMUqMy0wPGYs7pZUEtEEMWdHB63m3LtEcg==}
+
+ min-dom@4.2.1:
+ resolution: {integrity: sha512-TMoL8SEEIhUWYgkj7XMSgxmwSyGI+4fP2KFFGnN3FbHfbGHVdsLYSz8LoIsgPhz4dWRmLvxWWSMgzZMJW5sZuA==}
+
+ min-dom@5.1.1:
+ resolution: {integrity: sha512-GaKUlguMAofd3OJsB0OkP17i5kucKqErgVCJxPawO9l5NwIPnr28SAr99zzlzMCWWljISBYrnZVWdE2Q92YGFQ==}
+
min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
@@ -8788,13 +8718,14 @@ packages:
vue-tsc:
optional: true
- mlly@1.7.4:
- resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
+ mlly@1.8.0:
+ resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
- module-definition@6.0.1:
- resolution: {integrity: sha512-FeVc50FTfVVQnolk/WQT8MX+2WVcDnTGiq6Wo+/+lJ2ET1bRVi3HG3YlJUfqagNMc/kUlFSoR96AJkxGpKz13g==}
- engines: {node: '>=18'}
- hasBin: true
+ moddle-xml@10.1.0:
+ resolution: {integrity: sha512-erWckwLt+dYskewKXJso9u+aAZ5172lOiYxSOqKCPTy7L/xmqH1PoeoA7eVC7oJTt3PqF5TkZzUmbjGH6soQBg==}
+
+ moddle@6.2.3:
+ resolution: {integrity: sha512-bLVN+ZHL3aKnhxc19XtjUfvdJsS3EsiEJC7bT6YPD11qYmTzvsxrGgyYz1Ouof7TZuGw0lDJ1OLmEnxcpQWk3Q==}
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
@@ -8852,13 +8783,9 @@ packages:
engines: {node: '>= 4.4.x'}
hasBin: true
- netlify@13.3.5:
- resolution: {integrity: sha512-Nc3loyVASW59W+8fLDZT1lncpG7llffyZ2o0UQLx/Fr20i7P8oP+lE7+TEcFvXj9IUWU6LjB9P3BH+iFGyp+mg==}
- engines: {node: ^14.16.0 || >=16.0.0}
-
- nitropack@2.12.4:
- resolution: {integrity: sha512-MPmPRJWTeH03f/NmpN4q3iI3Woik4uaaWIoX34W3gMJiW06Vm1te/lPzuu5EXpXOK7Q2m3FymGMPXcExqih96Q==}
- engines: {node: ^16.11.0 || >=17.0.0}
+ nitropack@2.12.5:
+ resolution: {integrity: sha512-KDTFhATOzqWHXFZkNlAH9J989Wibpl6s38eaYZj/Km2GbcUBLdcDxL4x7vd9pHWhD1Yk1u5oLh8+MsqJeQ7GMA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
xml2js: ^0.6.2
@@ -8875,11 +8802,6 @@ packages:
node-cleanup@2.1.2:
resolution: {integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==}
- node-domexception@1.0.0:
- resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
- engines: {node: '>=10.5.0'}
- deprecated: Use your platform's native DOMException instead
-
node-fetch-native@1.6.7:
resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
@@ -8892,10 +8814,6 @@ packages:
encoding:
optional: true
- node-fetch@3.3.2:
- resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
@@ -8907,15 +8825,11 @@ packages:
node-html-parser@5.4.2:
resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==}
- node-mock-http@1.0.2:
- resolution: {integrity: sha512-zWaamgDUdo9SSLw47we78+zYw/bDr5gH8pH7oRRs8V3KmBtu8GLgGIbV2p/gRPd3LWpEOpjQj7X1FOU3VFMJ8g==}
-
- node-releases@2.0.19:
- resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+ node-mock-http@1.0.3:
+ resolution: {integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==}
- node-source-walk@7.0.1:
- resolution: {integrity: sha512-3VW/8JpPqPvnJvseXowjZcirPisssnBuDikk6JIZ8jQzF7KJQX52iPFX4RYYxLycYH7IbMRSPUOga/esVjy5Yg==}
- engines: {node: '>=18'}
+ node-releases@2.0.20:
+ resolution: {integrity: sha512-7gK6zSXEH6neM212JgfYFXe+GmZQM+fia5SsusuBIUgnPheLFBmIPhtFoAQRj8/7wASYQnbDlHPVwY0BefoFgA==}
nopt@7.2.1:
resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
@@ -8927,14 +8841,6 @@ packages:
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- normalize-package-data@6.0.2:
- resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- normalize-path@2.1.1:
- resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
- engines: {node: '>=0.10.0'}
-
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
@@ -8984,6 +8890,12 @@ packages:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
+ object-refs@0.3.0:
+ resolution: {integrity: sha512-eP0ywuoWOaDoiake/6kTJlPJhs+k0qNm4nYRzXLNHj6vh+5M3i9R1epJTdxIPGlhWc4fNRQ7a6XJNCX+/L4FOQ==}
+
+ object-refs@0.4.0:
+ resolution: {integrity: sha512-6kJqKWryKZmtte6QYvouas0/EIJKPI1/MMIuRsiBlNuhIMfqYTggzX2F1AJ2+cDs288xyi9GL7FyasHINR98BQ==}
+
object.assign@4.1.7:
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
engines: {node: '>= 0.4'}
@@ -9001,9 +8913,6 @@ packages:
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
- one-time@1.0.0:
- resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==}
-
onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
@@ -9038,10 +8947,6 @@ packages:
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
engines: {node: '>= 0.4'}
- p-event@6.0.1:
- resolution: {integrity: sha512-Q6Bekk5wpzW5qIyUP4gdMEujObYstZl6DMMOSenwBvV0BlE5LkDwkjs5yHbZmdCEq2o4RJx4tE1vwxFVf2FG1w==}
- engines: {node: '>=16.17'}
-
p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
engines: {node: '>=8'}
@@ -9078,22 +8983,10 @@ packages:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
- p-map@7.0.3:
- resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==}
- engines: {node: '>=18'}
-
- p-timeout@6.1.4:
- resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==}
- engines: {node: '>=14.16'}
-
p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- p-wait-for@5.0.2:
- resolution: {integrity: sha512-lwx6u1CotQYPVju77R+D0vFomni/AqRfqLmqQ8hekklqZ6gAY9rONh7lBQ0uxWMkC2AuX9b2DVAl8To0NyP1JA==}
- engines: {node: '>=12'}
-
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
@@ -9121,10 +9014,6 @@ packages:
resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==}
engines: {node: '>=8'}
- parse-gitignore@2.0.0:
- resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==}
- engines: {node: '>=14'}
-
parse-imports-exports@0.2.4:
resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==}
@@ -9132,10 +9021,6 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
- parse-json@8.3.0:
- resolution: {integrity: sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==}
- engines: {node: '>=18'}
-
parse-ms@4.0.0:
resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
engines: {node: '>=18'}
@@ -9178,6 +9063,13 @@ packages:
resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ path-intersection@2.2.1:
+ resolution: {integrity: sha512-9u8xvMcSfuOiStv9bPdnRJQhGQXLKurew94n4GPQCdH1nj9QKC9ObbNoIpiRq8skiOBxKkt277PgOoFgAt3/rA==}
+
+ path-intersection@3.1.0:
+ resolution: {integrity: sha512-3xS3lvv/vuwm5aH2BVvNRvnvwR2Drde7jQClKpCXTYXIMMjcw/EnMhzCgeHwqbCpzi760PEfAkU53vSIlrNr9A==}
+ engines: {node: '>= 14.20'}
+
path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
@@ -9222,12 +9114,12 @@ packages:
resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
engines: {node: '>= 14.16'}
- pend@1.2.0:
- resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
-
perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
+ perfect-debounce@2.0.0:
+ resolution: {integrity: sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==}
+
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -9277,16 +9169,16 @@ packages:
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
- pkg-types@2.2.0:
- resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==}
+ pkg-types@2.3.0:
+ resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==}
- playwright-core@1.54.2:
- resolution: {integrity: sha512-n5r4HFbMmWsB4twG7tJLDN9gmBUeSPcsBZiWSE4DnYz9mJMAFqr2ID7+eGC9kpEnxExJ1epttwR59LEWCk8mtA==}
+ playwright-core@1.55.0:
+ resolution: {integrity: sha512-GvZs4vU3U5ro2nZpeiwyb0zuFaqb9sUiAJuyrWpcGouD8y9/HLgGbNRjIph7zU9D3hnPaisMl9zG9CgFi/biIg==}
engines: {node: '>=18'}
hasBin: true
- playwright@1.54.2:
- resolution: {integrity: sha512-Hu/BMoA1NAdRUuulyvQC0pEqZ4vQbGfn8f7wPXcnqQmM+zct9UliKxsIkLNmz/ku7LElUNqmaiv1TG/aL5ACsw==}
+ playwright@1.55.0:
+ resolution: {integrity: sha512-sdCWStblvV1YU909Xqx0DhOjPZE4/5lJsIS84IfN9dAZfcl/CIZ5O8l3o0j7hPMjDvqoTF8ZUcc+i/GL5erstA==}
engines: {node: '>=18'}
hasBin: true
@@ -9331,8 +9223,8 @@ packages:
peerDependencies:
postcss: ^8.4.6
- postcss-color-functional-notation@7.0.10:
- resolution: {integrity: sha512-k9qX+aXHBiLTRrWoCJuUFI6F1iF6QJQUXNVWJVSbqZgj57jDhBlOvD8gNUGl35tgqDivbGLhZeW3Ongz4feuKA==}
+ postcss-color-functional-notation@7.0.11:
+ resolution: {integrity: sha512-zfqoUSaHMko/k2PA9xnaydVTHqYv5vphq5Q2AHcG/dCdv/OkHYWcVWfVTBKZ526uzT8L7NghuvSw3C9PxlKnLg==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -9355,8 +9247,8 @@ packages:
peerDependencies:
postcss: ^8.4.32
- postcss-convert-values@7.0.6:
- resolution: {integrity: sha512-MD/eb39Mr60hvgrqpXsgbiqluawYg/8K4nKsqRsuDX9f+xN1j6awZCUv/5tLH8ak3vYp/EMXwdcnXvfZYiejCQ==}
+ postcss-convert-values@7.0.7:
+ resolution: {integrity: sha512-HR9DZLN04Xbe6xugRH6lS4ZQH2zm/bFh/ZyRkpedZozhvh+awAfbA0P36InO4fZfDhvYfNJeNvlTf1sjwGbw/A==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -9409,8 +9301,8 @@ packages:
peerDependencies:
postcss: ^8.4.32
- postcss-double-position-gradients@6.0.2:
- resolution: {integrity: sha512-7qTqnL7nfLRyJK/AHSVrrXOuvDDzettC+wGoienURV8v2svNbu6zJC52ruZtHaO6mfcagFmuTGFdzRsJKB3k5Q==}
+ postcss-double-position-gradients@6.0.3:
+ resolution: {integrity: sha512-Dl0Z9sdbMwrPslgOaGBZRGo3TASmmgTcqcUODr82MTYyJk6devXZM6MlQjpQKMJqlLJ6oL1w78U7IXFdPA5+ug==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -9466,8 +9358,8 @@ packages:
peerDependencies:
postcss: ^8.4.21
- postcss-lab-function@7.0.10:
- resolution: {integrity: sha512-tqs6TCEv9tC1Riq6fOzHuHcZyhg4k3gIAMB8GGY/zA1ssGdm6puHMVE7t75aOSoFg7UD2wyrFFhbldiCMyyFTQ==}
+ postcss-lab-function@7.0.11:
+ resolution: {integrity: sha512-BEA4jId8uQe1gyjZZ6Bunb6ZsH2izks+v25AxQJDBtigXCjTLmCPWECwQpLTtcxH589MVxhs/9TAmRC6lUEmXQ==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -9636,8 +9528,8 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-preset-env@10.2.4:
- resolution: {integrity: sha512-q+lXgqmTMdB0Ty+EQ31SuodhdfZetUlwCA/F0zRcd/XdxjzI+Rl2JhZNz5US2n/7t9ePsvuhCnEN4Bmu86zXlA==}
+ postcss-preset-env@10.3.1:
+ resolution: {integrity: sha512-8ZOOWVwQ0iMpfEYkYo+U6W7fE2dJ/tP6dtEFwPJ66eB5JjnFupfYh+y6zo+vWDO72nGhKOVdxwhTjfzcSNRg4Q==}
engines: {node: '>=18'}
peerDependencies:
postcss: ^8.4
@@ -9729,12 +9621,6 @@ packages:
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss-values-parser@6.0.2:
- resolution: {integrity: sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==}
- engines: {node: '>=10'}
- peerDependencies:
- postcss: ^8.2.9
-
postcss@8.5.6:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
@@ -9742,11 +9628,6 @@ packages:
preact@10.27.1:
resolution: {integrity: sha512-V79raXEWch/rbqoNc7nT9E4ep7lu+mI3+sBmfRD4i1M73R3WLYcCtdI0ibxGVf4eQL8ZIz2nFacqEC+rmnOORQ==}
- precinct@12.2.0:
- resolution: {integrity: sha512-NFBMuwIfaJ4SocE9YXPU/n4AcNSoFMVFjP72nvl3cx69j/ke61/hPOWFREVxLkFhhEGnA8ZuVfTqJBa+PK3b5w==}
- engines: {node: '>=18'}
- hasBin: true
-
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -9882,9 +9763,6 @@ packages:
engines: {node: '>=18'}
hasBin: true
- pump@3.0.3:
- resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
-
punycode.js@2.3.1:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
engines: {node: '>=6'}
@@ -9912,9 +9790,6 @@ packages:
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- quote-unquote@1.0.0:
- resolution: {integrity: sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==}
-
radix-vue@1.9.17:
resolution: {integrity: sha512-mVCu7I2vXt1L2IUYHTt0sZMz7s1K2ZtqKeTIxG3yC5mMFfLBG4FtE1FDeRMpDd+Hhg/ybi9+iXmAP1ISREndoQ==}
peerDependencies:
@@ -9926,6 +9801,9 @@ packages:
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
+ randomcolor@0.6.2:
+ resolution: {integrity: sha512-Mn6TbyYpFgwFuQ8KJKqf3bqqY9O1y37/0jgSK/61PUxV4QfIMv0+K2ioq8DfOjkBslcjwSzRfIDEXfzA9aCx7A==}
+
range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
@@ -9940,14 +9818,6 @@ packages:
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
- read-package-up@11.0.0:
- resolution: {integrity: sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==}
- engines: {node: '>=18'}
-
- read-pkg@9.0.1:
- resolution: {integrity: sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==}
- engines: {node: '>=18'}
-
read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
@@ -9959,10 +9829,6 @@ packages:
readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
- readable-stream@3.6.2:
- resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
- engines: {node: '>= 6'}
-
readable-stream@4.7.0:
resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -10056,9 +9922,6 @@ packages:
remove-accents@0.5.0:
resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==}
- remove-trailing-separator@1.1.0:
- resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
-
repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
@@ -10104,10 +9967,6 @@ packages:
engines: {node: '>= 0.4'}
hasBin: true
- resolve@2.0.0-next.5:
- resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
- hasBin: true
-
restore-cursor@5.1.0:
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
engines: {node: '>=18'}
@@ -10174,8 +10033,8 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- rollup@4.46.3:
- resolution: {integrity: sha512-RZn2XTjXb8t5g13f5YclGoilU/kwT696DIkY3sywjdZidNSi3+vseaQov7D7BZXVJCPv3pDWUN69C78GGbXsKw==}
+ rollup@4.50.1:
+ resolution: {integrity: sha512-78E9voJHwnXQMiQdiqswVLZwJIzdBKJ1GdI5Zx6XwoFKUIk09/sSrr+05QFzvYb8q6Y9pPV45zzDuYa3907TZA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -10215,21 +10074,20 @@ packages:
resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
engines: {node: '>= 0.4'}
- safe-stable-stringify@2.5.0:
- resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
- engines: {node: '>=10'}
-
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass@1.90.0:
- resolution: {integrity: sha512-9GUyuksjw70uNpb1MTYWsH9MQHOHY6kwfnkafC24+7aOMZn9+rVMBxRbLvw756mrBFbIsFg6Xw9IkR2Fnn3k+Q==}
+ sass@1.92.1:
+ resolution: {integrity: sha512-ffmsdbwqb3XeyR8jJR6KelIXARM9bFQe8A6Q3W4Klmwy5Ckd5gz7jgUNHo4UOqutU5Sk1DtKLbpDP0nLCg1xqQ==}
engines: {node: '>=14.0.0'}
hasBin: true
sax@1.4.1:
resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
+ saxen@8.1.2:
+ resolution: {integrity: sha512-xUOiiFbc3Ow7p8KMxwsGICPx46ZQvy3+qfNVhrkwfz3Vvq45eGt98Ft5IQaA1R/7Tb5B5MKh9fUR9x3c3nDTxw==}
+
scroll-into-view-if-needed@2.2.31:
resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==}
@@ -10354,14 +10212,11 @@ packages:
signature_pad@3.0.0-beta.4:
resolution: {integrity: sha512-cOf2NhVuTiuNqe2X/ycEmizvCDXk0DoemhsEpnkcGnA4kS5iJYTCqZ9As7tFBbsch45Q1EdX61833+6sjJ8rrw==}
- signature_pad@5.0.10:
- resolution: {integrity: sha512-t7rLjpAtxYAIrTHr7EKfY8ulTWF+G/LFMto502a61KZvZNWZSwhTPeLE6171YMDd2sSYRBwQ17ENK5huAi9Rsg==}
+ signature_pad@5.1.0:
+ resolution: {integrity: sha512-h9rIm0vZggb/wWiajLzrH0Md+YntTHIo2dUFm6mfYAIItD75yzpiIHa1HcRA9NhQqPBix2KF8TIIA9vaokomBw==}
- simple-swizzle@0.2.2:
- resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
-
- sirv@3.0.1:
- resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
+ sirv@3.0.2:
+ resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
engines: {node: '>=18'}
sisteransi@1.0.5:
@@ -10438,15 +10293,9 @@ packages:
spawndamnit@3.0.1:
resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
- spdx-correct@3.2.0:
- resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
-
spdx-exceptions@2.5.0:
resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
- spdx-expression-parse@3.0.1:
- resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
-
spdx-expression-parse@4.0.0:
resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
@@ -10472,9 +10321,6 @@ packages:
resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
engines: {node: '>=12.0.0'}
- stack-trace@0.0.10:
- resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
-
stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
@@ -10496,6 +10342,10 @@ packages:
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
engines: {node: '>=18'}
+ steady-xml@0.1.0:
+ resolution: {integrity: sha512-5sk17qO2wWRtonTNoBhoKAB35OSsGJOa3+NEa6D+1GS+de+ujDWxnflMkXBrviOfkNrPTUqduAdXhrMJs89nAw==}
+ engines: {node: '>=12.0.0'}
+
stop-iteration-iterator@1.1.0:
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
engines: {node: '>= 0.4'}
@@ -10595,9 +10445,15 @@ packages:
strip-literal@3.0.0:
resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
+ strnum@1.1.2:
+ resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==}
+
stubborn-fs@1.2.5:
resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==}
+ style-mod@4.1.2:
+ resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==}
+
style-search@0.1.0:
resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
@@ -10681,8 +10537,8 @@ packages:
peerDependencies:
stylelint: ^16.0.2
- stylelint@16.23.1:
- resolution: {integrity: sha512-dNvDTsKV1U2YtiUDfe9d2gp902veFeo3ecCWdGlmLm2WFrAV0+L5LoOj/qHSBABQwMsZPJwfC4bf39mQm1S5zw==}
+ stylelint@16.24.0:
+ resolution: {integrity: sha512-7ksgz3zJaSbTUGr/ujMXvLVKdDhLbGl3R/3arNudH7z88+XZZGNLMTepsY28WlnvEFcuOmUe7fg40Q3lfhOfSQ==}
engines: {node: '>=18.12.0'}
hasBin: true
@@ -10718,8 +10574,8 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- svelte@5.38.6:
- resolution: {integrity: sha512-ltBPlkvqk3bgCK7/N323atUpP3O3Y+DrGV4dcULrsSn4fZaaNnOmdplNznwfdWclAgvSr5rxjtzn/zJhRm6TKg==}
+ svelte@5.38.7:
+ resolution: {integrity: sha512-1ld9TPZSdUS3EtYGQzisU2nhwXoIzNQcZ71IOU9fEmltaUofQnVfW5CQuhgM/zFsZ43arZXS1BRKi0MYgUV91w==}
engines: {node: '>=18'}
sver@1.8.4:
@@ -10761,8 +10617,8 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
- tapable@2.2.2:
- resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==}
+ tapable@2.2.3:
+ resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==}
engines: {node: '>=6'}
tar-stream@3.1.7:
@@ -10788,8 +10644,8 @@ packages:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
- terser@5.43.1:
- resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==}
+ terser@5.44.0:
+ resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==}
engines: {node: '>=10'}
hasBin: true
@@ -10800,9 +10656,6 @@ packages:
resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==}
engines: {node: '>=8'}
- text-hex@1.0.0:
- resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==}
-
theme-colors@0.1.0:
resolution: {integrity: sha512-6gTEHQqWlQNiOEGHCSSQmU//E5SnXHJ4H7oHQOD8x77CvNYNQAmt73dqR71mzw5ULV87zaHLxK5pIBnsToFuZw==}
@@ -10823,6 +10676,9 @@ packages:
tiny-emitter@2.1.0:
resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
+ tiny-svg@3.1.3:
+ resolution: {integrity: sha512-9mwnPqXInRsBmH/DO6NMxBE++9LsqpVXQSSTZGc5bomoKKvL5OX/Hlotw7XVXP6XLRcHWIzZpxfovGqWKgCypQ==}
+
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
@@ -10832,8 +10688,8 @@ packages:
tinyexec@1.0.1:
resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
- tinyglobby@0.2.14:
- resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
+ tinyglobby@0.2.15:
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
engines: {node: '>=12.0.0'}
tinymce@7.9.1:
@@ -10854,13 +10710,6 @@ packages:
tippy.js@6.3.7:
resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==}
- tmp-promise@3.0.3:
- resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==}
-
- tmp@0.2.5:
- resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==}
- engines: {node: '>=14.14'}
-
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -10869,9 +10718,6 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- toml@3.0.0:
- resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==}
-
totalist@3.0.1:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
@@ -10888,10 +10734,6 @@ packages:
trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
- triple-beam@1.4.1:
- resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==}
- engines: {node: '>= 14.0.0'}
-
ts-api-utils@1.4.3:
resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
engines: {node: '>=16'}
@@ -11027,12 +10869,12 @@ packages:
undici-types@7.10.0:
resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==}
- undici@7.14.0:
- resolution: {integrity: sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ==}
+ undici@7.15.0:
+ resolution: {integrity: sha512-7oZJCPvvMvTd0OlqWsIxTuItTpJBpU1tcbVl24FMn3xt3+VSunwUasmfPJRE57oNO1KsZ4PgA1xTdAX4hq8NyQ==}
engines: {node: '>=20.18.1'}
- unenv@2.0.0-rc.19:
- resolution: {integrity: sha512-t/OMHBNAkknVCI7bVB9OWjUUAwhVv9vsPIAGnNUxnu3FxPQN11rjh0sksLMzc3g7IlTgvHmOTl4JM7JHpcv5wA==}
+ unenv@2.0.0-rc.20:
+ resolution: {integrity: sha512-8tn4tAl9vD5nWoggAAPz28vf0FY8+pQAayhU94qD+ZkIbVKCBAH/E1MWEEmhb9Whn5EgouYVfBJB20RsTLRDdg==}
unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
@@ -11095,10 +10937,6 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- unixify@1.0.0:
- resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==}
- engines: {node: '>=0.10.0'}
-
unplugin-element-plus@0.10.0:
resolution: {integrity: sha512-oRSW0x6U58xBOWKy8TcoVZNA8ElIpfp3TUJRLQI6ey/E9PpjHl9/deeTAZNt8D57Li4OA4pCJtM6p2cb4Ff4ZA==}
engines: {node: '>=18.12.0'}
@@ -11107,19 +10945,23 @@ packages:
resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==}
engines: {node: '>=18.12.0'}
+ unplugin-utils@0.3.0:
+ resolution: {integrity: sha512-JLoggz+PvLVMJo+jZt97hdIIIZ2yTzGgft9e9q8iMrC4ewufl62ekeW7mixBghonn2gVb/ICjyvlmOCUBnJLQg==}
+ engines: {node: '>=20.19.0'}
+
unplugin@1.16.1:
resolution: {integrity: sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==}
engines: {node: '>=14.0.0'}
- unplugin@2.3.6:
- resolution: {integrity: sha512-+/MdXl8bLTXI2lJF22gUBeCFqZruEpL/oM9f8wxCuKh9+Mw9qeul3gTqgbKpMeOFlusCzc0s7x2Kax2xKW+FQg==}
+ unplugin@2.3.10:
+ resolution: {integrity: sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==}
engines: {node: '>=18.12.0'}
unrs-resolver@1.11.1:
resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
- unstorage@1.16.1:
- resolution: {integrity: sha512-gdpZ3guLDhz+zWIlYP1UwQ259tG5T5vYRzDaHMkQ1bBY1SQPutvZnrRjTFaWUUpseErJIgAZS51h6NOcZVZiqQ==}
+ unstorage@1.17.1:
+ resolution: {integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==}
peerDependencies:
'@azure/app-configuration': ^1.8.0
'@azure/cosmos': ^4.2.0
@@ -11133,6 +10975,7 @@ packages:
'@planetscale/database': ^1.19.0
'@upstash/redis': ^1.34.3
'@vercel/blob': '>=0.27.1'
+ '@vercel/functions': ^2.2.12 || ^3.0.0
'@vercel/kv': ^1.0.1
aws4fetch: ^1.0.20
db0: '>=0.2.1'
@@ -11164,6 +11007,8 @@ packages:
optional: true
'@vercel/blob':
optional: true
+ '@vercel/functions':
+ optional: true
'@vercel/kv':
optional: true
aws4fetch:
@@ -11208,22 +11053,9 @@ packages:
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
- urlpattern-polyfill@10.1.0:
- resolution: {integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==}
-
- urlpattern-polyfill@8.0.2:
- resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
-
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- uuid@11.1.0:
- resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==}
- hasBin: true
-
- validate-npm-package-license@3.0.4:
- resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
-
vdirs@0.1.8:
resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==}
peerDependencies:
@@ -11282,8 +11114,8 @@ packages:
vite-plugin-lazy-import@1.0.7:
resolution: {integrity: sha512-mE6oAObOb4wqso4AoUGi9cLjdR+4vay1RCaKJvziBuFPlziZl7J0aw2hsqRTokLVRx3bli0a0VyjMOwsNDv58A==}
- vite-plugin-pwa@1.0.2:
- resolution: {integrity: sha512-O3UwjsCnoDclgJANoOgzzqW7SFgwXE/th2OmUP/ILxHKwzWxxKDBu+B/Xa9Cv4IgSVSnj2HgRVIJ7F15+vQFkA==}
+ vite-plugin-pwa@1.0.3:
+ resolution: {integrity: sha512-/OpqIpUldALGxcsEnv/ekQiQ5xHkQ53wcoN5ewX4jiIDNGs3W+eNcI1WYZeyOLmzoEjg09D7aX0O89YGjen1aw==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@vite-pwa/assets-generator': ^1.0.0
@@ -11305,8 +11137,8 @@ packages:
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
- vite@5.4.19:
- resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==}
+ vite@5.4.20:
+ resolution: {integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -11336,8 +11168,8 @@ packages:
terser:
optional: true
- vite@7.1.3:
- resolution: {integrity: sha512-OOUi5zjkDxYrKhTV3V7iKsoS37VUM7v40+HuwEmcrsf11Cdx9y3DIr2Px6liIcZFwt3XSRpQvFpL3WVy7ApkGw==}
+ vite@7.1.5:
+ resolution: {integrity: sha512-4cKBO9wR75r0BeIWWWId9XK9Lj6La5X846Zw9dFfzMRw38IlTk2iCcUt6hsyiDRcPidc55ZParFYDXi0nXOeLQ==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
@@ -11458,8 +11290,8 @@ packages:
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- vue-i18n@11.1.11:
- resolution: {integrity: sha512-LvyteQoXeQiuILbzqv13LbyBna/TEv2Ha+4ZWK2AwGHUzZ8+IBaZS0TJkCgn5izSPLcgZwXy9yyTrewCb2u/MA==}
+ vue-i18n@11.1.12:
+ resolution: {integrity: sha512-BnstPj3KLHLrsqbVU2UOrPmr0+Mv11bsUZG0PyCOzsawCivk8W00GMXHeVUWIDOgNaScCuZah47CZFE+Wnl8mw==}
engines: {node: '>= 16'}
peerDependencies:
vue: ^3.5.17
@@ -11496,8 +11328,8 @@ packages:
peerDependencies:
vue: ^3.5.17
- vue@3.5.18:
- resolution: {integrity: sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==}
+ vue@3.5.21:
+ resolution: {integrity: sha512-xxf9rum9KtOdwdRkiApWL+9hZEMWE90FHh8yS1+KJAiWYh+iGWV1FquPjoO9VUHQ+VIhsCXNNyZ5Sf4++RVZBA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -11514,11 +11346,14 @@ packages:
peerDependencies:
vue: ^3.5.17
- vxe-pc-ui@4.8.22:
- resolution: {integrity: sha512-AT2EhuMYOpe2zGolGFa2QPpwxtQmAJoBqgfX1gsJU+YsIBT08fxqohGrh14ZBkm2Y8vGn8wsJosq75T4kbCw2A==}
+ vxe-pc-ui@4.9.19:
+ resolution: {integrity: sha512-I8hgVBmFYHQCIItzSdMAdmLuizePFY5fLC8UpYvc+EXAF+rdwVos6zjKyOdY5YiARVEdlNUr1omcseNMkP0RPQ==}
- vxe-table@4.15.10:
- resolution: {integrity: sha512-1bTw5PEuwpNCFZdQ326JRw5sgldv96in77RGNQYYhTtsjXIOvmLx82QBThY5UR+r3ig8c2oGz7nsRtN1wBLRAg==}
+ vxe-table@4.16.8:
+ resolution: {integrity: sha512-s3yy+kBNDfgsneFzStcvGzNf/N8Rq9GDTkHj25RStiuJo3Gd83Qxv0d+o0t2rgb5DnAnx1bBel/WpmPqW7xaeQ==}
+
+ w3c-keyname@2.2.8:
+ resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
wangeditor@4.7.15:
resolution: {integrity: sha512-aPTdREd8BxXVyJ5MI+LU83FQ7u1EPd341iXIorRNYSOvoimNoZ4nPg+yn3FGbB93/owEa6buLw8wdhYnMCJQLg==}
@@ -11529,10 +11364,6 @@ packages:
watermark-js-plus@1.6.3:
resolution: {integrity: sha512-iCLOGf70KacIwjGF9MDViYxQcRiVwOH7l42qDHLeE2HeUsQD1EQuUC9cKRG/4SErTUmdqV3yf5WnKk2dRARHPQ==}
- web-streams-polyfill@3.3.3:
- resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
- engines: {node: '>= 8'}
-
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@@ -11604,14 +11435,6 @@ packages:
resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==}
engines: {node: '>=18'}
- winston-transport@4.9.0:
- resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==}
- engines: {node: '>= 12.0.0'}
-
- winston@3.17.0:
- resolution: {integrity: sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==}
- engines: {node: '>= 12.0.0'}
-
word-wrap@1.2.5:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
@@ -11688,10 +11511,6 @@ packages:
resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- write-file-atomic@6.0.0:
- resolution: {integrity: sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
wsl-utils@0.1.0:
resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
engines: {node: '>=18'}
@@ -11700,8 +11519,8 @@ packages:
resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==}
engines: {node: '>=12'}
- xe-utils@3.7.8:
- resolution: {integrity: sha512-V/k6B/ASYir6yLYhp62DnM17po9u1N9mou/rn4if5WoFCsAO49JpCiVpkDpwCv4zxGfWmhWgzmz4FytWF+pDVw==}
+ xe-utils@3.7.9:
+ resolution: {integrity: sha512-LWH6M7g+TKX8P2fqGxDPgJQygiULhbMtpmfxTMxJTUjuUv9y2+I45UCcVLh5AnmJSxDV1xTxsq7G5P9Eid06JQ==}
xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
@@ -11761,9 +11580,6 @@ packages:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
- yauzl@2.10.0:
- resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
-
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
@@ -11772,8 +11588,8 @@ packages:
resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==}
engines: {node: '>=12.20'}
- yoctocolors@2.1.1:
- resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
+ yoctocolors@2.1.2:
+ resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
engines: {node: '>=18'}
youch-core@0.3.3:
@@ -11783,6 +11599,9 @@ packages:
resolution: {integrity: sha512-rY2A2lSF7zC+l7HH9Mq+83D1dLlsPnEvy8jTouzaptDZM6geqZ3aJe/b7ULCwRURPtWV3vbDjA2DDMdoBol0HQ==}
engines: {node: '>=18'}
+ zeebe-bpmn-moddle@1.11.0:
+ resolution: {integrity: sha512-v2PkIAjyZEnzuFHrm9ZhpbEGMgNjYZkUw+H17JxkA7Da+dcbPHbD7fWuBWSbPzNSCOyYYmrH+PL6wp9407ptMg==}
+
zimmerframe@1.1.2:
resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
@@ -11804,143 +11623,138 @@ packages:
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
- zx@8.8.0:
- resolution: {integrity: sha512-v0VZXgSHusDvTtZROno3Ws8xkE1uNSSwH/yF8Fm+ZwBrYhr+bRNNpsnTJ32eR/t6umc7lAz5WqdP800ugW9zFA==}
+ zx@8.8.1:
+ resolution: {integrity: sha512-qvsKBnvWHstHKCluKPlEgI/D3+mdiQyMoSSeFR8IX/aXzWIas5A297KxKgPJhuPXdrR6ma0Jzx43+GQ/8sqbrw==}
engines: {node: '>= 12.17.0'}
hasBin: true
snapshots:
- '@algolia/abtesting@1.1.0':
+ '@algolia/abtesting@1.3.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)(search-insights@2.17.3)
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)':
+ '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)
- '@algolia/client-search': 5.35.0
- algoliasearch: 5.35.0
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)
+ '@algolia/client-search': 5.37.0
+ algoliasearch: 5.37.0
- '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)':
+ '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)':
dependencies:
- '@algolia/client-search': 5.35.0
- algoliasearch: 5.35.0
+ '@algolia/client-search': 5.37.0
+ algoliasearch: 5.37.0
- '@algolia/client-abtesting@5.35.0':
+ '@algolia/client-abtesting@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/client-analytics@5.35.0':
+ '@algolia/client-analytics@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/client-common@5.35.0': {}
+ '@algolia/client-common@5.37.0': {}
- '@algolia/client-insights@5.35.0':
+ '@algolia/client-insights@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/client-personalization@5.35.0':
+ '@algolia/client-personalization@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/client-query-suggestions@5.35.0':
+ '@algolia/client-query-suggestions@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/client-search@5.35.0':
+ '@algolia/client-search@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/ingestion@1.35.0':
+ '@algolia/ingestion@1.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/monitoring@1.35.0':
+ '@algolia/monitoring@1.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/recommend@5.35.0':
+ '@algolia/recommend@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
- '@algolia/requester-browser-xhr@5.35.0':
+ '@algolia/requester-browser-xhr@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
+ '@algolia/client-common': 5.37.0
- '@algolia/requester-fetch@5.35.0':
+ '@algolia/requester-fetch@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
+ '@algolia/client-common': 5.37.0
- '@algolia/requester-node-http@5.35.0':
+ '@algolia/requester-node-http@5.37.0':
dependencies:
- '@algolia/client-common': 5.35.0
+ '@algolia/client-common': 5.37.0
'@alloc/quick-lru@5.2.0': {}
- '@ampproject/remapping@2.3.0':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.30
-
'@ant-design/colors@6.0.0':
dependencies:
'@ctrl/tinycolor': 4.1.0
'@ant-design/icons-svg@4.4.2': {}
- '@ant-design/icons-vue@7.0.1(vue@3.5.18(typescript@5.9.2))':
+ '@ant-design/icons-vue@7.0.1(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@ant-design/colors': 6.0.0
'@ant-design/icons-svg': 4.4.2
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
'@antfu/install-pkg@1.1.0':
dependencies:
@@ -12003,20 +11817,20 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.28.0': {}
+ '@babel/compat-data@7.28.4': {}
- '@babel/core@7.28.3':
+ '@babel/core@7.28.4':
dependencies:
- '@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.27.1
'@babel/generator': 7.28.3
'@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
- '@babel/helpers': 7.28.3
- '@babel/parser': 7.28.3
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
+ '@babel/helpers': 7.28.4
+ '@babel/parser': 7.28.4
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
+ '@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.1
gensync: 1.0.0-beta.2
@@ -12027,47 +11841,47 @@ snapshots:
'@babel/generator@7.28.3':
dependencies:
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.30
jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.4
'@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.28.0
+ '@babel/compat-data': 7.28.4
'@babel/helper-validator-option': 7.27.1
- browserslist: 4.25.3
+ browserslist: 4.25.4
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.3)':
+ '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.4
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.3)':
+ '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.3)':
+ '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
debug: 4.4.1
@@ -12080,55 +11894,55 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.3)':
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-module-imports': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.4
'@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.3)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-wrap-function': 7.28.3
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.3)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
transitivePeerDependencies:
- supports-color
@@ -12141,575 +11955,634 @@ snapshots:
'@babel/helper-wrap-function@7.28.3':
dependencies:
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.28.3':
+ '@babel/helpers@7.28.4':
dependencies:
'@babel/template': 7.27.2
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.4
- '@babel/parser@7.28.3':
+ '@babel/parser@7.28.4':
dependencies:
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.4
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
- '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.3)
- '@babel/traverse': 7.28.3
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.3)
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-block-scoping@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.3)':
+ '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.28.3(@babel/core@7.28.3)':
+ '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-globals': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3)
- '@babel/traverse': 7.28.3
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/template': 7.27.2
- '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.3)
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.3)
- '@babel/traverse': 7.28.3
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
+ '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.3)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.28.3(@babel/core@7.28.3)':
+ '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/preset-env@7.28.3(@babel/core@7.28.3)':
+ '@babel/preset-env@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/compat-data': 7.28.0
- '@babel/core': 7.28.3
+ '@babel/compat-data': 7.28.4
+ '@babel/core': 7.28.4
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.3)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.3)
- '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.3)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.3)
- '@babel/plugin-transform-classes': 7.28.3(@babel/core@7.28.3)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.3)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-regenerator': 7.28.3(@babel/core@7.28.3)
- '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.3)
- babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.3)
- babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.3)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.3)
- core-js-compat: 3.45.0
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.4)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-block-scoping': 7.28.4(@babel/core@7.28.4)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4)
+ '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.4)
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4)
+ core-js-compat: 3.45.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.3)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.4
esutils: 2.0.3
- '@babel/preset-typescript@7.27.1(@babel/core@7.28.3)':
+ '@babel/preset-typescript@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.3)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/runtime-corejs3@7.28.3':
+ '@babel/runtime-corejs3@7.28.4':
dependencies:
- core-js-pure: 3.45.0
+ core-js-pure: 3.45.1
- '@babel/runtime@7.28.3': {}
+ '@babel/runtime@7.28.4': {}
'@babel/template@7.27.2':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
- '@babel/traverse@7.28.3':
+ '@babel/traverse@7.28.4':
dependencies:
'@babel/code-frame': 7.27.1
'@babel/generator': 7.28.3
'@babel/helper-globals': 7.28.0
- '@babel/parser': 7.28.3
+ '@babel/parser': 7.28.4
'@babel/template': 7.27.2
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.4
debug: 4.4.1
transitivePeerDependencies:
- supports-color
- '@babel/types@7.28.0':
+ '@babel/types@7.28.4':
dependencies:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/types@7.28.2':
+ '@bpmn-io/cm-theme@0.1.0-alpha.2':
dependencies:
- '@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
+ '@codemirror/language': 6.11.3
+ '@codemirror/view': 6.38.2
+ '@lezer/highlight': 1.2.1
+
+ '@bpmn-io/diagram-js-ui@0.2.3':
+ dependencies:
+ htm: 3.1.1
+ preact: 10.27.1
+
+ '@bpmn-io/extract-process-variables@0.8.0':
+ dependencies:
+ min-dash: 4.2.3
+
+ '@bpmn-io/feel-editor@1.12.0':
+ dependencies:
+ '@bpmn-io/feel-lint': 2.1.0
+ '@bpmn-io/lang-feel': 2.4.0
+ '@camunda/feel-builtins': 0.2.0
+ '@codemirror/autocomplete': 6.18.7
+ '@codemirror/commands': 6.8.1
+ '@codemirror/language': 6.11.3
+ '@codemirror/lint': 6.8.5
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.2
+ '@lezer/highlight': 1.2.1
+ min-dom: 4.2.1
+
+ '@bpmn-io/feel-lint@1.4.0':
+ dependencies:
+ '@codemirror/language': 6.11.3
+ lezer-feel: 1.8.1
+
+ '@bpmn-io/feel-lint@2.1.0':
+ dependencies:
+ '@bpmn-io/lezer-feel': 1.9.0
+ '@codemirror/language': 6.11.3
+
+ '@bpmn-io/lang-feel@2.4.0':
+ dependencies:
+ '@bpmn-io/lezer-feel': 1.9.0
+ '@codemirror/autocomplete': 6.18.7
+ '@codemirror/language': 6.11.3
+ '@lezer/common': 1.2.3
+
+ '@bpmn-io/lezer-feel@1.9.0':
+ dependencies:
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
+ min-dash: 4.2.3
+
+ '@bpmn-io/properties-panel@3.33.0':
+ dependencies:
+ '@bpmn-io/feel-editor': 1.12.0
+ '@codemirror/view': 6.38.2
+ classnames: 2.5.1
+ feelers: 1.4.0
+ focus-trap: 7.6.5
+ min-dash: 4.2.3
+ min-dom: 4.2.1
+
+ '@camunda/feel-builtins@0.2.0': {}
'@changesets/apply-release-plan@7.0.12':
dependencies:
@@ -12748,7 +12621,7 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@changesets/cli@2.29.6(@types/node@22.17.2)':
+ '@changesets/cli@2.29.6(@types/node@22.18.1)':
dependencies:
'@changesets/apply-release-plan': 7.0.12
'@changesets/assemble-release-plan': 6.0.9
@@ -12764,7 +12637,7 @@ snapshots:
'@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
'@changesets/write': 0.4.0
- '@inquirer/external-editor': 1.0.1(@types/node@22.17.2)
+ '@inquirer/external-editor': 1.0.1(@types/node@22.18.1)
'@manypkg/get-packages': 1.1.3
ansi-colors: 4.1.3
ci-info: 3.9.0
@@ -12885,13 +12758,51 @@ snapshots:
dependencies:
mime: 3.0.0
- '@colors/colors@1.6.0': {}
+ '@codemirror/autocomplete@6.18.7':
+ dependencies:
+ '@codemirror/language': 6.11.3
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.2
+ '@lezer/common': 1.2.3
+
+ '@codemirror/commands@6.8.1':
+ dependencies:
+ '@codemirror/language': 6.11.3
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.2
+ '@lezer/common': 1.2.3
+
+ '@codemirror/language@6.11.3':
+ dependencies:
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.2
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
+ style-mod: 4.1.2
+
+ '@codemirror/lint@6.8.5':
+ dependencies:
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.2
+ crelt: 1.0.6
+
+ '@codemirror/state@6.5.2':
+ dependencies:
+ '@marijn/find-cluster-break': 1.0.2
+
+ '@codemirror/view@6.38.2':
+ dependencies:
+ '@codemirror/state': 6.5.2
+ crelt: 1.0.6
+ style-mod: 4.1.2
+ w3c-keyname: 2.2.8
- '@commitlint/cli@19.8.1(@types/node@24.3.0)(typescript@5.9.2)':
+ '@commitlint/cli@19.8.1(@types/node@24.3.1)(typescript@5.9.2)':
dependencies:
'@commitlint/format': 19.8.1
'@commitlint/lint': 19.8.1
- '@commitlint/load': 19.8.1(@types/node@24.3.0)(typescript@5.9.2)
+ '@commitlint/load': 19.8.1(@types/node@24.3.1)(typescript@5.9.2)
'@commitlint/read': 19.8.1
'@commitlint/types': 19.8.1
tinyexec: 1.0.1
@@ -12938,7 +12849,7 @@ snapshots:
'@commitlint/rules': 19.8.1
'@commitlint/types': 19.8.1
- '@commitlint/load@19.8.1(@types/node@24.3.0)(typescript@5.9.2)':
+ '@commitlint/load@19.8.1(@types/node@24.3.1)(typescript@5.9.2)':
dependencies:
'@commitlint/config-validator': 19.8.1
'@commitlint/execute-rule': 19.8.1
@@ -12946,7 +12857,7 @@ snapshots:
'@commitlint/types': 19.8.1
chalk: 5.6.0
cosmiconfig: 9.0.0(typescript@5.9.2)
- cosmiconfig-typescript-loader: 6.1.0(@types/node@24.3.0)(cosmiconfig@9.0.0(typescript@5.9.2))(typescript@5.9.2)
+ cosmiconfig-typescript-loader: 6.1.0(@types/node@24.3.1)(cosmiconfig@9.0.0(typescript@5.9.2))(typescript@5.9.2)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -12975,7 +12886,7 @@ snapshots:
'@commitlint/config-validator': 19.8.1
'@commitlint/types': 19.8.1
global-directory: 4.0.1
- import-meta-resolve: 4.1.0
+ import-meta-resolve: 4.2.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
@@ -13001,10 +12912,10 @@ snapshots:
dependencies:
'@cspell/dict-ada': 4.1.1
'@cspell/dict-al': 1.1.1
- '@cspell/dict-aws': 4.0.14
+ '@cspell/dict-aws': 4.0.15
'@cspell/dict-bash': 4.2.1
- '@cspell/dict-companies': 3.2.4
- '@cspell/dict-cpp': 6.0.9
+ '@cspell/dict-companies': 3.2.5
+ '@cspell/dict-cpp': 6.0.12
'@cspell/dict-cryptocurrencies': 5.0.5
'@cspell/dict-csharp': 4.0.7
'@cspell/dict-css': 4.0.18
@@ -13014,9 +12925,9 @@ snapshots:
'@cspell/dict-docker': 1.1.16
'@cspell/dict-dotnet': 5.0.10
'@cspell/dict-elixir': 4.0.8
- '@cspell/dict-en-common-misspellings': 2.1.3
+ '@cspell/dict-en-common-misspellings': 2.1.6
'@cspell/dict-en-gb': 1.1.33
- '@cspell/dict-en_us': 4.4.16
+ '@cspell/dict-en_us': 4.4.19
'@cspell/dict-filetypes': 3.0.13
'@cspell/dict-flutter': 1.1.1
'@cspell/dict-fonts': 4.0.5
@@ -13040,7 +12951,7 @@ snapshots:
'@cspell/dict-markdown': 2.0.12(@cspell/dict-css@4.0.18)(@cspell/dict-html-symbol-entities@4.0.4)(@cspell/dict-html@4.0.12)(@cspell/dict-typescript@3.2.3)
'@cspell/dict-monkeyc': 1.0.11
'@cspell/dict-node': 5.0.8
- '@cspell/dict-npm': 5.2.14
+ '@cspell/dict-npm': 5.2.17
'@cspell/dict-php': 4.0.15
'@cspell/dict-powershell': 5.0.15
'@cspell/dict-public-licenses': 2.0.15
@@ -13050,7 +12961,7 @@ snapshots:
'@cspell/dict-rust': 4.0.12
'@cspell/dict-scala': 5.0.8
'@cspell/dict-shell': 1.1.1
- '@cspell/dict-software-terms': 5.1.5
+ '@cspell/dict-software-terms': 5.1.8
'@cspell/dict-sql': 2.2.1
'@cspell/dict-svelte': 1.0.7
'@cspell/dict-swift': 2.0.6
@@ -13076,15 +12987,15 @@ snapshots:
'@cspell/dict-al@1.1.1': {}
- '@cspell/dict-aws@4.0.14': {}
+ '@cspell/dict-aws@4.0.15': {}
'@cspell/dict-bash@4.2.1':
dependencies:
'@cspell/dict-shell': 1.1.1
- '@cspell/dict-companies@3.2.4': {}
+ '@cspell/dict-companies@3.2.5': {}
- '@cspell/dict-cpp@6.0.9': {}
+ '@cspell/dict-cpp@6.0.12': {}
'@cspell/dict-cryptocurrencies@5.0.5': {}
@@ -13104,11 +13015,11 @@ snapshots:
'@cspell/dict-elixir@4.0.8': {}
- '@cspell/dict-en-common-misspellings@2.1.3': {}
+ '@cspell/dict-en-common-misspellings@2.1.6': {}
'@cspell/dict-en-gb@1.1.33': {}
- '@cspell/dict-en_us@4.4.16': {}
+ '@cspell/dict-en_us@4.4.19': {}
'@cspell/dict-filetypes@3.0.13': {}
@@ -13161,7 +13072,7 @@ snapshots:
'@cspell/dict-node@5.0.8': {}
- '@cspell/dict-npm@5.2.14': {}
+ '@cspell/dict-npm@5.2.17': {}
'@cspell/dict-php@4.0.15': {}
@@ -13183,7 +13094,7 @@ snapshots:
'@cspell/dict-shell@1.1.1': {}
- '@cspell/dict-software-terms@5.1.5': {}
+ '@cspell/dict-software-terms@5.1.8': {}
'@cspell/dict-sql@2.2.1': {}
@@ -13200,7 +13111,7 @@ snapshots:
'@cspell/dynamic-import@8.19.4':
dependencies:
'@cspell/url': 8.19.4
- import-meta-resolve: 4.1.0
+ import-meta-resolve: 4.2.0
'@cspell/filetypes@8.19.4': {}
@@ -13212,25 +13123,25 @@ snapshots:
dependencies:
css-render: 0.15.14
- '@css-render/vue3-ssr@0.15.14(vue@3.5.18(typescript@5.9.2))':
+ '@css-render/vue3-ssr@0.15.14(vue@3.5.21(typescript@5.9.2))':
dependencies:
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
'@csstools/cascade-layer-name-parser@2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/color-helpers@5.0.2': {}
+ '@csstools/color-helpers@5.1.0': {}
'@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
dependencies:
- '@csstools/color-helpers': 5.0.2
+ '@csstools/color-helpers': 5.1.0
'@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
@@ -13251,44 +13162,62 @@ snapshots:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-alpha-function@1.0.0(postcss@8.5.6)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
+ '@csstools/utilities': 2.0.0(postcss@8.5.6)
+ postcss: 8.5.6
+
'@csstools/postcss-cascade-layers@5.0.2(postcss@8.5.6)':
dependencies:
'@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0)
postcss: 8.5.6
postcss-selector-parser: 7.1.0
- '@csstools/postcss-color-function@4.0.10(postcss@8.5.6)':
+ '@csstools/postcss-color-function-display-p3-linear@1.0.0(postcss@8.5.6)':
+ dependencies:
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
+ '@csstools/utilities': 2.0.0(postcss@8.5.6)
+ postcss: 8.5.6
+
+ '@csstools/postcss-color-function@4.0.11(postcss@8.5.6)':
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
- '@csstools/postcss-color-mix-function@3.0.10(postcss@8.5.6)':
+ '@csstools/postcss-color-mix-function@3.0.11(postcss@8.5.6)':
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
- '@csstools/postcss-color-mix-variadic-function-arguments@1.0.0(postcss@8.5.6)':
+ '@csstools/postcss-color-mix-variadic-function-arguments@1.0.1(postcss@8.5.6)':
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
- '@csstools/postcss-content-alt-text@2.0.6(postcss@8.5.6)':
+ '@csstools/postcss-content-alt-text@2.0.7(postcss@8.5.6)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
@@ -13305,34 +13234,34 @@ snapshots:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- '@csstools/postcss-gamut-mapping@2.0.10(postcss@8.5.6)':
+ '@csstools/postcss-gamut-mapping@2.0.11(postcss@8.5.6)':
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
postcss: 8.5.6
- '@csstools/postcss-gradients-interpolation-method@5.0.10(postcss@8.5.6)':
+ '@csstools/postcss-gradients-interpolation-method@5.0.11(postcss@8.5.6)':
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
- '@csstools/postcss-hwb-function@4.0.10(postcss@8.5.6)':
+ '@csstools/postcss-hwb-function@4.0.11(postcss@8.5.6)':
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
- '@csstools/postcss-ic-unit@4.0.2(postcss@8.5.6)':
+ '@csstools/postcss-ic-unit@4.0.3(postcss@8.5.6)':
dependencies:
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -13347,11 +13276,11 @@ snapshots:
postcss: 8.5.6
postcss-selector-parser: 7.1.0
- '@csstools/postcss-light-dark-function@2.0.9(postcss@8.5.6)':
+ '@csstools/postcss-light-dark-function@2.0.10(postcss@8.5.6)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
@@ -13404,16 +13333,16 @@ snapshots:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- '@csstools/postcss-oklab-function@4.0.10(postcss@8.5.6)':
+ '@csstools/postcss-oklab-function@4.0.11(postcss@8.5.6)':
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
- '@csstools/postcss-progressive-custom-properties@4.1.0(postcss@8.5.6)':
+ '@csstools/postcss-progressive-custom-properties@4.2.0(postcss@8.5.6)':
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -13425,12 +13354,12 @@ snapshots:
'@csstools/css-tokenizer': 3.0.4
postcss: 8.5.6
- '@csstools/postcss-relative-color-syntax@3.0.10(postcss@8.5.6)':
+ '@csstools/postcss-relative-color-syntax@3.0.11(postcss@8.5.6)':
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
@@ -13453,9 +13382,9 @@ snapshots:
'@csstools/css-tokenizer': 3.0.4
postcss: 8.5.6
- '@csstools/postcss-text-decoration-shorthand@4.0.2(postcss@8.5.6)':
+ '@csstools/postcss-text-decoration-shorthand@4.0.3(postcss@8.5.6)':
dependencies:
- '@csstools/color-helpers': 5.0.2
+ '@csstools/color-helpers': 5.1.0
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -13484,22 +13413,11 @@ snapshots:
'@ctrl/tinycolor@4.1.0': {}
- '@dabh/diagnostics@2.0.3':
- dependencies:
- colorspace: 1.1.4
- enabled: 2.0.0
- kuler: 2.0.0
-
- '@dependents/detective-less@5.0.1':
- dependencies:
- gonzales-pe: 4.3.0
- node-source-walk: 7.0.1
-
'@docsearch/css@3.8.2': {}
- '@docsearch/js@3.8.2(@algolia/client-search@5.35.0)(search-insights@2.17.3)':
+ '@docsearch/js@3.8.2(@algolia/client-search@5.37.0)(search-insights@2.17.3)':
dependencies:
- '@docsearch/react': 3.8.2(@algolia/client-search@5.35.0)(search-insights@2.17.3)
+ '@docsearch/react': 3.8.2(@algolia/client-search@5.37.0)(search-insights@2.17.3)
preact: 10.27.1
transitivePeerDependencies:
- '@algolia/client-search'
@@ -13508,35 +13426,35 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.8.2(@algolia/client-search@5.35.0)(search-insights@2.17.3)':
+ '@docsearch/react@3.8.2(@algolia/client-search@5.37.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)(search-insights@2.17.3)
- '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.35.0)(algoliasearch@5.35.0)
+ '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.37.0)(algoliasearch@5.37.0)
'@docsearch/css': 3.8.2
- algoliasearch: 5.35.0
+ algoliasearch: 5.37.0
optionalDependencies:
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- '@dual-bundle/import-meta-resolve@4.1.0': {}
+ '@dual-bundle/import-meta-resolve@4.2.1': {}
- '@element-plus/icons-vue@2.3.2(vue@3.5.18(typescript@5.9.2))':
+ '@element-plus/icons-vue@2.3.2(vue@3.5.21(typescript@5.9.2))':
dependencies:
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- '@emnapi/core@1.4.5':
+ '@emnapi/core@1.5.0':
dependencies:
- '@emnapi/wasi-threads': 1.0.4
+ '@emnapi/wasi-threads': 1.1.0
tslib: 2.8.1
optional: true
- '@emnapi/runtime@1.4.5':
+ '@emnapi/runtime@1.5.0':
dependencies:
tslib: 2.8.1
optional: true
- '@emnapi/wasi-threads@1.0.4':
+ '@emnapi/wasi-threads@1.1.0':
dependencies:
tslib: 2.8.1
optional: true
@@ -13550,7 +13468,7 @@ snapshots:
'@es-joy/jsdoccomment@0.50.2':
dependencies:
'@types/estree': 1.0.8
- '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/types': 8.42.0
comment-parser: 1.4.1
esquery: 1.6.0
jsdoc-type-pratt-parser: 4.1.0
@@ -13630,9 +13548,9 @@ snapshots:
'@esbuild/win32-x64@0.25.3':
optional: true
- '@eslint-community/eslint-utils@4.7.0(eslint@9.33.0(jiti@2.5.1))':
+ '@eslint-community/eslint-utils@4.9.0(eslint@9.35.0(jiti@2.5.1))':
dependencies:
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
@@ -13669,7 +13587,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.33.0': {}
+ '@eslint/js@9.35.0': {}
'@eslint/object-schema@2.1.6': {}
@@ -13685,52 +13603,47 @@ snapshots:
'@faker-js/faker@9.9.0': {}
- '@fastify/busboy@3.2.0': {}
-
'@floating-ui/core@1.7.3':
dependencies:
'@floating-ui/utils': 0.2.10
- '@floating-ui/dom@1.7.3':
+ '@floating-ui/dom@1.7.4':
dependencies:
'@floating-ui/core': 1.7.3
'@floating-ui/utils': 0.2.10
'@floating-ui/utils@0.2.10': {}
- '@floating-ui/vue@1.1.8(vue@3.5.18(typescript@5.9.2))':
+ '@floating-ui/vue@1.1.9(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@floating-ui/dom': 1.7.3
+ '@floating-ui/dom': 1.7.4
'@floating-ui/utils': 0.2.10
- vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
+ vue-demi: 0.14.10(vue@3.5.21(typescript@5.9.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@form-create/ant-design-vue@3.2.28(vue@3.5.18(typescript@5.9.2))':
+ '@form-create/ant-design-vue@3.2.30(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@form-create/component-antdv-frame': 3.2.23
'@form-create/component-antdv-group': 3.2.23
'@form-create/component-antdv-upload': 3.2.26
'@form-create/component-subform': 3.1.34
- '@form-create/core': 3.2.28(vue@3.5.18(typescript@5.9.2))
+ '@form-create/core': 3.2.30(vue@3.5.21(typescript@5.9.2))
'@form-create/utils': 3.2.23
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- '@form-create/antd-designer@3.3.0(vue@3.5.18(typescript@5.9.2))':
+ '@form-create/antd-designer@3.3.1(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@form-create/ant-design-vue': 3.2.28(vue@3.5.18(typescript@5.9.2))
+ '@form-create/ant-design-vue': 3.2.30(vue@3.5.21(typescript@5.9.2))
'@form-create/component-wangeditor': 3.2.14
'@form-create/utils': 3.2.23
- ant-design-vue: 4.2.6(vue@3.5.18(typescript@5.9.2))
+ ant-design-vue: 4.2.6(vue@3.5.21(typescript@5.9.2))
codemirror: 6.65.7
- element-plus: 2.10.7(vue@3.5.18(typescript@5.9.2))
js-beautify: 1.15.4
- signature_pad: 5.0.10
- vue: 3.5.18(typescript@5.9.2)
- vuedraggable: 4.1.0(vue@3.5.18(typescript@5.9.2))
- transitivePeerDependencies:
- - '@vue/composition-api'
+ signature_pad: 5.1.0
+ vue: 3.5.21(typescript@5.9.2)
+ vuedraggable: 4.1.0(vue@3.5.21(typescript@5.9.2))
'@form-create/component-antdv-frame@3.2.23':
dependencies:
@@ -13798,26 +13711,26 @@ snapshots:
dependencies:
wangeditor: 4.7.15
- '@form-create/core@3.2.28(vue@3.5.18(typescript@5.9.2))':
+ '@form-create/core@3.2.30(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@form-create/utils': 3.2.23
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- '@form-create/designer@3.3.0(vue@3.5.18(typescript@5.9.2))':
+ '@form-create/designer@3.3.1(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@form-create/component-wangeditor': 3.2.14
- '@form-create/element-ui': 3.2.28(vue@3.5.18(typescript@5.9.2))
+ '@form-create/element-ui': 3.2.30(vue@3.5.21(typescript@5.9.2))
'@form-create/utils': 3.2.23
codemirror: 6.65.7
- element-plus: 2.10.7(vue@3.5.18(typescript@5.9.2))
+ element-plus: 2.11.2(vue@3.5.21(typescript@5.9.2))
js-beautify: 1.15.4
- signature_pad: 5.0.10
- vue: 3.5.18(typescript@5.9.2)
- vuedraggable: 4.1.0(vue@3.5.18(typescript@5.9.2))
+ signature_pad: 5.1.0
+ vue: 3.5.21(typescript@5.9.2)
+ vuedraggable: 4.1.0(vue@3.5.21(typescript@5.9.2))
transitivePeerDependencies:
- '@vue/composition-api'
- '@form-create/element-ui@3.2.28(vue@3.5.18(typescript@5.9.2))':
+ '@form-create/element-ui@3.2.30(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@form-create/component-elm-checkbox': 3.2.23
'@form-create/component-elm-frame': 3.2.23
@@ -13827,11 +13740,11 @@ snapshots:
'@form-create/component-elm-tree': 3.2.23
'@form-create/component-elm-upload': 3.2.26
'@form-create/component-subform': 3.1.34
- '@form-create/core': 3.2.28(vue@3.5.18(typescript@5.9.2))
+ '@form-create/core': 3.2.30(vue@3.5.21(typescript@5.9.2))
'@form-create/utils': 3.2.23
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- '@form-create/naive-ui@3.2.28(vue@3.5.18(typescript@5.9.2))':
+ '@form-create/naive-ui@3.2.30(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@form-create/component-naive-checkbox': 3.2.23
'@form-create/component-naive-frame': 3.2.23
@@ -13839,9 +13752,9 @@ snapshots:
'@form-create/component-naive-radio': 3.2.23
'@form-create/component-naive-upload': 3.2.23
'@form-create/component-subform': 3.1.34
- '@form-create/core': 3.2.28(vue@3.5.18(typescript@5.9.2))
+ '@form-create/core': 3.2.30(vue@3.5.21(typescript@5.9.2))
'@form-create/utils': 3.2.23
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
'@form-create/utils@3.2.23': {}
@@ -13849,38 +13762,36 @@ snapshots:
'@gera2ld/jsx-dom@2.2.2':
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@humanfs/core@0.19.1': {}
- '@humanfs/node@0.16.6':
+ '@humanfs/node@0.16.7':
dependencies:
'@humanfs/core': 0.19.1
- '@humanwhocodes/retry': 0.3.1
+ '@humanwhocodes/retry': 0.4.3
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/retry@0.3.1': {}
-
'@humanwhocodes/retry@0.4.3': {}
'@iconify-json/logos@1.2.9':
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/octicon@1.2.10':
+ '@iconify-json/octicon@1.2.13':
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/simple-icons@1.2.48':
+ '@iconify-json/simple-icons@1.2.50':
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/vscode-icons@1.2.29':
+ '@iconify-json/vscode-icons@1.2.30':
dependencies:
'@iconify/types': 2.0.0
- '@iconify/json@2.2.376':
+ '@iconify/json@2.2.382':
dependencies:
'@iconify/types': 2.0.0
pathe: 1.1.2
@@ -13899,66 +13810,66 @@ snapshots:
debug: 4.4.1
globals: 15.15.0
kolorist: 1.8.0
- local-pkg: 1.1.1
- mlly: 1.7.4
+ local-pkg: 1.1.2
+ mlly: 1.8.0
transitivePeerDependencies:
- supports-color
- '@iconify/vue@5.0.0(vue@3.5.18(typescript@5.9.2))':
+ '@iconify/vue@5.0.0(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@iconify/types': 2.0.0
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- '@inquirer/external-editor@1.0.1(@types/node@22.17.2)':
+ '@inquirer/external-editor@1.0.1(@types/node@22.18.1)':
dependencies:
chardet: 2.1.0
iconv-lite: 0.6.3
optionalDependencies:
- '@types/node': 22.17.2
+ '@types/node': 22.18.1
- '@internationalized/date@3.8.2':
+ '@internationalized/date@3.9.0':
dependencies:
'@swc/helpers': 0.5.17
- '@internationalized/number@3.6.4':
+ '@internationalized/number@3.6.5':
dependencies:
'@swc/helpers': 0.5.17
- '@intlify/bundle-utils@10.0.1(vue-i18n@11.1.11(vue@3.5.18(typescript@5.9.2)))':
+ '@intlify/bundle-utils@10.0.1(vue-i18n@11.1.12(vue@3.5.21(typescript@5.9.2)))':
dependencies:
- '@intlify/message-compiler': 11.1.11
- '@intlify/shared': 11.1.11
+ '@intlify/message-compiler': 11.1.12
+ '@intlify/shared': 11.1.12
acorn: 8.15.0
escodegen: 2.1.0
estree-walker: 2.0.2
jsonc-eslint-parser: 2.4.0
- mlly: 1.7.4
+ mlly: 1.8.0
source-map-js: 1.2.1
yaml-eslint-parser: 1.3.0
optionalDependencies:
- vue-i18n: 11.1.11(vue@3.5.18(typescript@5.9.2))
+ vue-i18n: 11.1.12(vue@3.5.21(typescript@5.9.2))
- '@intlify/core-base@11.1.11':
+ '@intlify/core-base@11.1.12':
dependencies:
- '@intlify/message-compiler': 11.1.11
- '@intlify/shared': 11.1.11
+ '@intlify/message-compiler': 11.1.12
+ '@intlify/shared': 11.1.12
- '@intlify/message-compiler@11.1.11':
+ '@intlify/message-compiler@11.1.12':
dependencies:
- '@intlify/shared': 11.1.11
+ '@intlify/shared': 11.1.12
source-map-js: 1.2.1
- '@intlify/shared@11.1.11': {}
+ '@intlify/shared@11.1.12': {}
- '@intlify/unplugin-vue-i18n@6.0.8(@vue/compiler-dom@3.5.18)(eslint@9.33.0(jiti@2.5.1))(rollup@4.46.3)(typescript@5.9.2)(vue-i18n@11.1.11(vue@3.5.18(typescript@5.9.2)))(vue@3.5.18(typescript@5.9.2))':
+ '@intlify/unplugin-vue-i18n@6.0.8(@vue/compiler-dom@3.5.21)(eslint@9.35.0(jiti@2.5.1))(rollup@4.50.1)(typescript@5.9.2)(vue-i18n@11.1.12(vue@3.5.21(typescript@5.9.2)))(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
- '@intlify/bundle-utils': 10.0.1(vue-i18n@11.1.11(vue@3.5.18(typescript@5.9.2)))
- '@intlify/shared': 11.1.11
- '@intlify/vue-i18n-extensions': 8.0.0(@intlify/shared@11.1.11)(@vue/compiler-dom@3.5.18)(vue-i18n@11.1.11(vue@3.5.18(typescript@5.9.2)))(vue@3.5.18(typescript@5.9.2))
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
- '@typescript-eslint/scope-manager': 8.40.0
- '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.2)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
+ '@intlify/bundle-utils': 10.0.1(vue-i18n@11.1.12(vue@3.5.21(typescript@5.9.2)))
+ '@intlify/shared': 11.1.12
+ '@intlify/vue-i18n-extensions': 8.0.0(@intlify/shared@11.1.12)(@vue/compiler-dom@3.5.21)(vue-i18n@11.1.12(vue@3.5.21(typescript@5.9.2)))(vue@3.5.21(typescript@5.9.2))
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
+ '@typescript-eslint/scope-manager': 8.42.0
+ '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2)
debug: 4.4.1
fast-glob: 3.3.3
js-yaml: 4.1.0
@@ -13967,9 +13878,9 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
unplugin: 1.16.1
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
optionalDependencies:
- vue-i18n: 11.1.11(vue@3.5.18(typescript@5.9.2))
+ vue-i18n: 11.1.12(vue@3.5.21(typescript@5.9.2))
transitivePeerDependencies:
- '@vue/compiler-dom'
- eslint
@@ -13977,16 +13888,16 @@ snapshots:
- supports-color
- typescript
- '@intlify/vue-i18n-extensions@8.0.0(@intlify/shared@11.1.11)(@vue/compiler-dom@3.5.18)(vue-i18n@11.1.11(vue@3.5.18(typescript@5.9.2)))(vue@3.5.18(typescript@5.9.2))':
+ '@intlify/vue-i18n-extensions@8.0.0(@intlify/shared@11.1.12)(@vue/compiler-dom@3.5.21)(vue-i18n@11.1.12(vue@3.5.21(typescript@5.9.2)))(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@babel/parser': 7.28.3
+ '@babel/parser': 7.28.4
optionalDependencies:
- '@intlify/shared': 11.1.11
- '@vue/compiler-dom': 3.5.18
- vue: 3.5.18(typescript@5.9.2)
- vue-i18n: 11.1.11(vue@3.5.18(typescript@5.9.2))
+ '@intlify/shared': 11.1.12
+ '@vue/compiler-dom': 3.5.21
+ vue: 3.5.21(typescript@5.9.2)
+ vue-i18n: 11.1.12(vue@3.5.21(typescript@5.9.2))
- '@ioredis/commands@1.3.0': {}
+ '@ioredis/commands@1.3.1': {}
'@isaacs/balanced-match@4.0.1': {}
@@ -14031,12 +13942,12 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.5
- '@jspm/generator@2.6.3':
+ '@jspm/generator@2.6.4':
dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.3)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.3)
- '@jspm/import-map': 1.2.0
+ '@babel/core': 7.28.4
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4)
+ '@jspm/import-map': 1.2.1
es-module-lexer: 1.7.0
make-fetch-happen: 8.0.14
minimatch: 10.0.3
@@ -14047,15 +13958,30 @@ snapshots:
- bluebird
- supports-color
- '@jspm/import-map@1.2.0': {}
+ '@jspm/import-map@1.2.1': {}
'@juggle/resize-observer@3.4.0': {}
'@keyv/serialize@1.1.0': {}
+ '@lezer/common@1.2.3': {}
+
+ '@lezer/highlight@1.2.1':
+ dependencies:
+ '@lezer/common': 1.2.3
+
+ '@lezer/lr@1.4.2':
+ dependencies:
+ '@lezer/common': 1.2.3
+
+ '@lezer/markdown@1.4.3':
+ dependencies:
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
@@ -14066,7 +13992,7 @@ snapshots:
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -14082,7 +14008,7 @@ snapshots:
dependencies:
jju: 1.4.0
js-yaml: 4.1.0
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
'@mapbox/node-pre-gyp@2.0.0(encoding@0.1.13)':
dependencies:
@@ -14097,23 +14023,25 @@ snapshots:
- encoding
- supports-color
- '@microsoft/api-extractor-model@7.30.7(@types/node@24.3.0)':
+ '@marijn/find-cluster-break@1.0.2': {}
+
+ '@microsoft/api-extractor-model@7.30.7(@types/node@24.3.1)':
dependencies:
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.14.0(@types/node@24.3.0)
+ '@rushstack/node-core-library': 5.14.0(@types/node@24.3.1)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.52.10(@types/node@24.3.0)':
+ '@microsoft/api-extractor@7.52.11(@types/node@24.3.1)':
dependencies:
- '@microsoft/api-extractor-model': 7.30.7(@types/node@24.3.0)
+ '@microsoft/api-extractor-model': 7.30.7(@types/node@24.3.1)
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.14.0(@types/node@24.3.0)
+ '@rushstack/node-core-library': 5.14.0(@types/node@24.3.1)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.15.4(@types/node@24.3.0)
- '@rushstack/ts-command-line': 5.0.2(@types/node@24.3.0)
+ '@rushstack/terminal': 0.15.4(@types/node@24.3.1)
+ '@rushstack/ts-command-line': 5.0.2(@types/node@24.3.1)
lodash: 4.17.21
minimatch: 10.0.3
resolve: 1.22.10
@@ -14136,99 +14064,11 @@ snapshots:
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
- '@emnapi/core': 1.4.5
- '@emnapi/runtime': 1.4.5
+ '@emnapi/core': 1.5.0
+ '@emnapi/runtime': 1.5.0
'@tybys/wasm-util': 0.10.0
optional: true
- '@netlify/binary-info@1.0.0': {}
-
- '@netlify/blobs@9.1.2':
- dependencies:
- '@netlify/dev-utils': 2.2.0
- '@netlify/runtime-utils': 1.3.1
-
- '@netlify/dev-utils@2.2.0':
- dependencies:
- '@whatwg-node/server': 0.9.71
- chokidar: 4.0.3
- decache: 4.6.2
- dot-prop: 9.0.0
- env-paths: 3.0.0
- find-up: 7.0.0
- lodash.debounce: 4.0.8
- netlify: 13.3.5
- parse-gitignore: 2.0.0
- uuid: 11.1.0
- write-file-atomic: 6.0.0
-
- '@netlify/functions@3.1.10(encoding@0.1.13)(rollup@4.46.3)':
- dependencies:
- '@netlify/blobs': 9.1.2
- '@netlify/dev-utils': 2.2.0
- '@netlify/serverless-functions-api': 1.41.2
- '@netlify/zip-it-and-ship-it': 12.2.1(encoding@0.1.13)(rollup@4.46.3)
- cron-parser: 4.9.0
- decache: 4.6.2
- extract-zip: 2.0.1
- is-stream: 4.0.1
- jwt-decode: 4.0.0
- lambda-local: 2.2.0
- read-package-up: 11.0.0
- source-map-support: 0.5.21
- transitivePeerDependencies:
- - encoding
- - rollup
- - supports-color
-
- '@netlify/open-api@2.37.0': {}
-
- '@netlify/runtime-utils@1.3.1': {}
-
- '@netlify/serverless-functions-api@1.41.2': {}
-
- '@netlify/serverless-functions-api@2.2.0': {}
-
- '@netlify/zip-it-and-ship-it@12.2.1(encoding@0.1.13)(rollup@4.46.3)':
- dependencies:
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.0
- '@netlify/binary-info': 1.0.0
- '@netlify/serverless-functions-api': 2.2.0
- '@vercel/nft': 0.29.4(encoding@0.1.13)(rollup@4.46.3)
- archiver: 7.0.1
- common-path-prefix: 3.0.0
- copy-file: 11.1.0
- es-module-lexer: 1.7.0
- esbuild: 0.25.3
- execa: 8.0.1
- fast-glob: 3.3.3
- filter-obj: 6.1.0
- find-up: 7.0.0
- is-builtin-module: 3.2.1
- is-path-inside: 4.0.0
- junk: 4.0.1
- locate-path: 7.2.0
- merge-options: 3.0.4
- minimatch: 9.0.5
- normalize-path: 3.0.0
- p-map: 7.0.3
- path-exists: 5.0.0
- precinct: 12.2.0
- require-package-name: 2.0.1
- resolve: 2.0.0-next.5
- semver: 7.7.2
- tmp-promise: 3.0.3
- toml: 3.0.0
- unixify: 1.0.0
- urlpattern-polyfill: 8.0.2
- yargs: 17.7.2
- zod: 3.25.76
- transitivePeerDependencies:
- - encoding
- - rollup
- - supports-color
-
'@nodelib/fs.scandir@2.1.5':
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -14241,17 +14081,17 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.19.1
- '@nolebase/ui@2.18.2(vitepress@1.6.4(@algolia/client-search@5.35.0)(@types/node@24.3.0)(async-validator@4.2.5)(axios@1.11.0)(jwt-decode@4.0.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.90.0)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.43.1)(typescript@5.9.2))(vue@3.5.18(typescript@5.9.2))':
+ '@nolebase/ui@2.18.2(vitepress@1.6.4(@algolia/client-search@5.37.0)(@types/node@24.3.1)(async-validator@4.2.5)(axios@1.11.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.92.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.2))(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@iconify-json/octicon': 1.2.10
+ '@iconify-json/octicon': 1.2.13
less: 4.4.1
- vitepress: 1.6.4(@algolia/client-search@5.35.0)(@types/node@24.3.0)(async-validator@4.2.5)(axios@1.11.0)(jwt-decode@4.0.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.90.0)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.43.1)(typescript@5.9.2)
- vue: 3.5.18(typescript@5.9.2)
+ vitepress: 1.6.4(@algolia/client-search@5.37.0)(@types/node@24.3.1)(async-validator@4.2.5)(axios@1.11.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.92.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- '@nolebase/vitepress-plugin-git-changelog@2.18.2(vitepress@1.6.4(@algolia/client-search@5.35.0)(@types/node@24.3.0)(async-validator@4.2.5)(axios@1.11.0)(jwt-decode@4.0.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.90.0)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.43.1)(typescript@5.9.2))(vue@3.5.18(typescript@5.9.2))':
+ '@nolebase/vitepress-plugin-git-changelog@2.18.2(vitepress@1.6.4(@algolia/client-search@5.37.0)(@types/node@24.3.1)(async-validator@4.2.5)(axios@1.11.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.92.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.2))(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@iconify-json/octicon': 1.2.10
- '@nolebase/ui': 2.18.2(vitepress@1.6.4(@algolia/client-search@5.35.0)(@types/node@24.3.0)(async-validator@4.2.5)(axios@1.11.0)(jwt-decode@4.0.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.90.0)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.43.1)(typescript@5.9.2))(vue@3.5.18(typescript@5.9.2))
+ '@iconify-json/octicon': 1.2.13
+ '@nolebase/ui': 2.18.2(vitepress@1.6.4(@algolia/client-search@5.37.0)(@types/node@24.3.1)(async-validator@4.2.5)(axios@1.11.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.92.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.2))(vue@3.5.21(typescript@5.9.2))
colorette: 2.0.20
date-fns: 4.1.0
defu: 6.1.4
@@ -14261,7 +14101,7 @@ snapshots:
gray-matter: 4.0.3
less: 4.4.1
uncrypto: 0.1.3
- vitepress: 1.6.4(@algolia/client-search@5.35.0)(@types/node@24.3.0)(async-validator@4.2.5)(axios@1.11.0)(jwt-decode@4.0.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.90.0)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.43.1)(typescript@5.9.2)
+ vitepress: 1.6.4(@algolia/client-search@5.37.0)(@types/node@24.3.1)(async-validator@4.2.5)(axios@1.11.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.92.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.2)
transitivePeerDependencies:
- vue
@@ -14275,7 +14115,7 @@ snapshots:
mkdirp: 1.0.4
rimraf: 3.0.2
- '@nuxt/kit@3.18.1(magicast@0.3.5)':
+ '@nuxt/kit@3.19.1(magicast@0.3.5)':
dependencies:
c12: 3.2.0(magicast@0.3.5)
consola: 3.4.2
@@ -14287,14 +14127,15 @@ snapshots:
jiti: 2.5.1
klona: 2.0.6
knitwork: 1.2.0
- mlly: 1.7.4
+ mlly: 1.8.0
ohash: 2.0.11
pathe: 2.0.3
- pkg-types: 2.2.0
+ pkg-types: 2.3.0
+ rc9: 2.1.2
scule: 1.3.0
semver: 7.7.2
std-env: 3.9.0
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
ufo: 1.6.1
unctx: 2.4.1
unimport: 5.2.0
@@ -14375,9 +14216,9 @@ snapshots:
'@pkgr/core@0.2.9': {}
- '@playwright/test@1.54.2':
+ '@playwright/test@1.55.0':
dependencies:
- playwright: 1.54.2
+ playwright: 1.55.0
'@pnpm/config.env-replace@1.1.0': {}
@@ -14426,50 +14267,50 @@ snapshots:
'@rolldown/pluginutils@1.0.0-beta.29': {}
- '@rolldown/pluginutils@1.0.0-beta.33': {}
+ '@rolldown/pluginutils@1.0.0-beta.35': {}
- '@rollup/plugin-alias@5.1.1(rollup@4.46.3)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.50.1)':
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
- '@rollup/plugin-babel@5.3.1(@babel/core@7.28.3)(rollup@2.79.2)':
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.28.4)(rollup@2.79.2)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-module-imports': 7.27.1
'@rollup/pluginutils': 3.1.0(rollup@2.79.2)
rollup: 2.79.2
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-commonjs@28.0.6(rollup@4.46.3)':
+ '@rollup/plugin-commonjs@28.0.6(rollup@4.50.1)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.5.0(picomatch@4.0.3)
is-reference: 1.2.1
- magic-string: 0.30.17
+ magic-string: 0.30.19
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
- '@rollup/plugin-inject@5.0.5(rollup@4.46.3)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.50.1)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
estree-walker: 2.0.2
- magic-string: 0.30.17
+ magic-string: 0.30.19
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
- '@rollup/plugin-json@6.1.0(rollup@4.46.3)':
+ '@rollup/plugin-json@6.1.0(rollup@4.50.1)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
'@rollup/plugin-node-resolve@15.3.1(rollup@2.79.2)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@2.79.2)
+ '@rollup/pluginutils': 5.3.0(rollup@2.79.2)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
@@ -14477,15 +14318,15 @@ snapshots:
optionalDependencies:
rollup: 2.79.2
- '@rollup/plugin-node-resolve@16.0.1(rollup@4.46.3)':
+ '@rollup/plugin-node-resolve@16.0.1(rollup@4.50.1)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
'@rollup/plugin-replace@2.4.2(rollup@2.79.2)':
dependencies:
@@ -14493,28 +14334,28 @@ snapshots:
magic-string: 0.25.9
rollup: 2.79.2
- '@rollup/plugin-replace@6.0.2(rollup@4.46.3)':
+ '@rollup/plugin-replace@6.0.2(rollup@4.50.1)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
- magic-string: 0.30.17
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
+ magic-string: 0.30.19
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
'@rollup/plugin-terser@0.4.4(rollup@2.79.2)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
- terser: 5.43.1
+ terser: 5.44.0
optionalDependencies:
rollup: 2.79.2
- '@rollup/plugin-terser@0.4.4(rollup@4.46.3)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.50.1)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
- terser: 5.43.1
+ terser: 5.44.0
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
'@rollup/pluginutils@3.1.0(rollup@2.79.2)':
dependencies:
@@ -14528,7 +14369,7 @@ snapshots:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.2.0(rollup@2.79.2)':
+ '@rollup/pluginutils@5.3.0(rollup@2.79.2)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
@@ -14536,75 +14377,78 @@ snapshots:
optionalDependencies:
rollup: 2.79.2
- '@rollup/pluginutils@5.2.0(rollup@4.46.3)':
+ '@rollup/pluginutils@5.3.0(rollup@4.50.1)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
+
+ '@rollup/rollup-android-arm-eabi@4.50.1':
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.46.3':
+ '@rollup/rollup-android-arm64@4.50.1':
optional: true
- '@rollup/rollup-android-arm64@4.46.3':
+ '@rollup/rollup-darwin-arm64@4.50.1':
optional: true
- '@rollup/rollup-darwin-arm64@4.46.3':
+ '@rollup/rollup-darwin-x64@4.50.1':
optional: true
- '@rollup/rollup-darwin-x64@4.46.3':
+ '@rollup/rollup-freebsd-arm64@4.50.1':
optional: true
- '@rollup/rollup-freebsd-arm64@4.46.3':
+ '@rollup/rollup-freebsd-x64@4.50.1':
optional: true
- '@rollup/rollup-freebsd-x64@4.46.3':
+ '@rollup/rollup-linux-arm-gnueabihf@4.50.1':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.46.3':
+ '@rollup/rollup-linux-arm-musleabihf@4.50.1':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.46.3':
+ '@rollup/rollup-linux-arm64-gnu@4.50.1':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.46.3':
+ '@rollup/rollup-linux-arm64-musl@4.50.1':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.46.3':
+ '@rollup/rollup-linux-loongarch64-gnu@4.50.1':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.46.3':
+ '@rollup/rollup-linux-ppc64-gnu@4.50.1':
optional: true
- '@rollup/rollup-linux-ppc64-gnu@4.46.3':
+ '@rollup/rollup-linux-riscv64-gnu@4.50.1':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.46.3':
+ '@rollup/rollup-linux-riscv64-musl@4.50.1':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.46.3':
+ '@rollup/rollup-linux-s390x-gnu@4.50.1':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.46.3':
+ '@rollup/rollup-linux-x64-gnu@4.50.1':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.46.3':
+ '@rollup/rollup-linux-x64-musl@4.50.1':
optional: true
- '@rollup/rollup-linux-x64-musl@4.46.3':
+ '@rollup/rollup-openharmony-arm64@4.50.1':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.46.3':
+ '@rollup/rollup-win32-arm64-msvc@4.50.1':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.46.3':
+ '@rollup/rollup-win32-ia32-msvc@4.50.1':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.46.3':
+ '@rollup/rollup-win32-x64-msvc@4.50.1':
optional: true
- '@rushstack/node-core-library@5.14.0(@types/node@24.3.0)':
+ '@rushstack/node-core-library@5.14.0(@types/node@24.3.1)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -14615,23 +14459,23 @@ snapshots:
resolve: 1.22.10
semver: 7.5.4
optionalDependencies:
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
'@rushstack/rig-package@0.5.3':
dependencies:
resolve: 1.22.10
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.15.4(@types/node@24.3.0)':
+ '@rushstack/terminal@0.15.4(@types/node@24.3.1)':
dependencies:
- '@rushstack/node-core-library': 5.14.0(@types/node@24.3.0)
+ '@rushstack/node-core-library': 5.14.0(@types/node@24.3.1)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
- '@rushstack/ts-command-line@5.0.2(@types/node@24.3.0)':
+ '@rushstack/ts-command-line@5.0.2(@types/node@24.3.1)':
dependencies:
- '@rushstack/terminal': 0.15.4(@types/node@24.3.0)
+ '@rushstack/terminal': 0.15.4(@types/node@24.3.1)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -14682,7 +14526,7 @@ snapshots:
'@simonwep/pickr@1.8.2':
dependencies:
- core-js: 3.45.0
+ core-js: 3.45.1
nanopop: 2.4.2
'@sindresorhus/is@7.0.2': {}
@@ -14693,7 +14537,7 @@ snapshots:
'@speed-highlight/core@1.2.7': {}
- '@stylistic/stylelint-plugin@3.1.3(stylelint@16.23.1(typescript@5.9.2))':
+ '@stylistic/stylelint-plugin@3.1.3(stylelint@16.24.0(typescript@5.9.2))':
dependencies:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
@@ -14703,7 +14547,7 @@ snapshots:
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
style-search: 0.1.0
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.24.0(typescript@5.9.2)
'@surma/rollup-plugin-off-main-thread@2.2.3':
dependencies:
@@ -14712,9 +14556,9 @@ snapshots:
magic-string: 0.25.9
string.prototype.matchall: 4.0.12
- '@svelte-put/shortcut@4.1.0(svelte@5.38.6)':
+ '@svelte-put/shortcut@4.1.0(svelte@5.38.7)':
dependencies:
- svelte: 5.38.6
+ svelte: 5.38.7
'@sveltejs/acorn-typescript@1.0.5(acorn@8.15.0)':
dependencies:
@@ -14743,48 +14587,48 @@ snapshots:
dependencies:
remove-accents: 0.5.0
- '@tanstack/query-core@5.85.4': {}
+ '@tanstack/query-core@5.87.1': {}
- '@tanstack/store@0.7.2': {}
+ '@tanstack/store@0.7.4': {}
'@tanstack/virtual-core@3.13.12': {}
- '@tanstack/vue-query@5.85.4(vue@3.5.18(typescript@5.9.2))':
+ '@tanstack/vue-query@5.87.1(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@tanstack/match-sorter-utils': 8.19.4
- '@tanstack/query-core': 5.85.4
+ '@tanstack/query-core': 5.87.1
'@vue/devtools-api': 6.6.4
- vue: 3.5.18(typescript@5.9.2)
- vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
+ vue: 3.5.21(typescript@5.9.2)
+ vue-demi: 0.14.10(vue@3.5.21(typescript@5.9.2))
- '@tanstack/vue-store@0.7.3(vue@3.5.18(typescript@5.9.2))':
+ '@tanstack/vue-store@0.7.4(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@tanstack/store': 0.7.2
- vue: 3.5.18(typescript@5.9.2)
- vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
+ '@tanstack/store': 0.7.4
+ vue: 3.5.21(typescript@5.9.2)
+ vue-demi: 0.14.10(vue@3.5.21(typescript@5.9.2))
- '@tanstack/vue-virtual@3.13.12(vue@3.5.18(typescript@5.9.2))':
+ '@tanstack/vue-virtual@3.13.12(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@tanstack/virtual-core': 3.13.12
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- '@tinyflow-ai/ui@1.1.1(svelte@5.38.6)':
+ '@tinyflow-ai/ui@1.1.1(svelte@5.38.7)':
dependencies:
- '@floating-ui/dom': 1.7.3
- '@xyflow/svelte': 1.2.4(svelte@5.38.6)
+ '@floating-ui/dom': 1.7.4
+ '@xyflow/svelte': 1.2.4(svelte@5.38.7)
transitivePeerDependencies:
- svelte
- '@tinyflow-ai/vue@1.1.1(svelte@5.38.6)(vue@3.5.18(typescript@5.9.2))':
+ '@tinyflow-ai/vue@1.1.1(svelte@5.38.7)(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@tinyflow-ai/ui': 1.1.1(svelte@5.38.6)
- vue: 3.5.18(typescript@5.9.2)
+ '@tinyflow-ai/ui': 1.1.1(svelte@5.38.7)
+ vue: 3.5.21(typescript@5.9.2)
transitivePeerDependencies:
- svelte
- '@tinymce/tinymce-vue@6.3.0(tinymce@7.9.1)(vue@3.5.18(typescript@5.9.2))':
+ '@tinymce/tinymce-vue@6.3.0(tinymce@7.9.1)(vue@3.5.21(typescript@5.9.2))':
dependencies:
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
optionalDependencies:
tinymce: 7.9.1
@@ -14809,7 +14653,7 @@ snapshots:
'@types/conventional-commits-parser@5.0.1':
dependencies:
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
'@types/crypto-js@4.2.2': {}
@@ -14956,7 +14800,7 @@ snapshots:
'@types/jsonwebtoken@9.0.10':
dependencies:
'@types/ms': 2.1.0
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
'@types/katex@0.16.7': {}
@@ -15001,16 +14845,14 @@ snapshots:
'@types/node@12.20.55': {}
- '@types/node@22.17.2':
+ '@types/node@22.18.1':
dependencies:
undici-types: 6.21.0
- '@types/node@24.3.0':
+ '@types/node@24.3.1':
dependencies:
undici-types: 7.10.0
- '@types/normalize-package-data@2.4.4': {}
-
'@types/nprogress@0.2.3': {}
'@types/parse-json@4.0.2': {}
@@ -15021,20 +14863,18 @@ snapshots:
'@types/qrcode@1.5.5':
dependencies:
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
'@types/qs@6.14.0': {}
'@types/readdir-glob@1.1.5':
dependencies:
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
'@types/resolve@1.20.2': {}
'@types/sortablejs@1.15.8': {}
- '@types/triple-beam@1.3.5': {}
-
'@types/trusted-types@2.0.7': {}
'@types/unist@3.0.3': {}
@@ -15045,20 +14885,15 @@ snapshots:
'@types/web-bluetooth@0.0.21': {}
- '@types/yauzl@2.10.3':
- dependencies:
- '@types/node': 24.3.0
- optional: true
-
- '@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)':
+ '@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.40.0
- '@typescript-eslint/type-utils': 8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
- '@typescript-eslint/utils': 8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
- '@typescript-eslint/visitor-keys': 8.40.0
- eslint: 9.33.0(jiti@2.5.1)
+ '@typescript-eslint/parser': 8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
+ '@typescript-eslint/scope-manager': 8.42.0
+ '@typescript-eslint/type-utils': 8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
+ '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
+ '@typescript-eslint/visitor-keys': 8.42.0
+ eslint: 9.35.0(jiti@2.5.1)
graphemer: 1.4.0
ignore: 7.0.5
natural-compare: 1.4.0
@@ -15067,22 +14902,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)':
+ '@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/scope-manager': 8.40.0
- '@typescript-eslint/types': 8.40.0
- '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.2)
- '@typescript-eslint/visitor-keys': 8.40.0
+ '@typescript-eslint/scope-manager': 8.42.0
+ '@typescript-eslint/types': 8.42.0
+ '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2)
+ '@typescript-eslint/visitor-keys': 8.42.0
debug: 4.4.1
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
typescript: 5.9.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.40.0(typescript@5.9.2)':
+ '@typescript-eslint/project-service@8.42.0(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.9.2)
- '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2)
+ '@typescript-eslint/types': 8.42.0
debug: 4.4.1
typescript: 5.9.2
transitivePeerDependencies:
@@ -15093,22 +14928,22 @@ snapshots:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
- '@typescript-eslint/scope-manager@8.40.0':
+ '@typescript-eslint/scope-manager@8.42.0':
dependencies:
- '@typescript-eslint/types': 8.40.0
- '@typescript-eslint/visitor-keys': 8.40.0
+ '@typescript-eslint/types': 8.42.0
+ '@typescript-eslint/visitor-keys': 8.42.0
- '@typescript-eslint/tsconfig-utils@8.40.0(typescript@5.9.2)':
+ '@typescript-eslint/tsconfig-utils@8.42.0(typescript@5.9.2)':
dependencies:
typescript: 5.9.2
- '@typescript-eslint/type-utils@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)':
+ '@typescript-eslint/type-utils@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/types': 8.40.0
- '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.2)
- '@typescript-eslint/utils': 8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
+ '@typescript-eslint/types': 8.42.0
+ '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2)
+ '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
debug: 4.4.1
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
ts-api-utils: 2.1.0(typescript@5.9.2)
typescript: 5.9.2
transitivePeerDependencies:
@@ -15116,7 +14951,7 @@ snapshots:
'@typescript-eslint/types@7.18.0': {}
- '@typescript-eslint/types@8.40.0': {}
+ '@typescript-eslint/types@8.42.0': {}
'@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.2)':
dependencies:
@@ -15133,12 +14968,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.40.0(typescript@5.9.2)':
+ '@typescript-eslint/typescript-estree@8.42.0(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/project-service': 8.40.0(typescript@5.9.2)
- '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.9.2)
- '@typescript-eslint/types': 8.40.0
- '@typescript-eslint/visitor-keys': 8.40.0
+ '@typescript-eslint/project-service': 8.42.0(typescript@5.9.2)
+ '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2)
+ '@typescript-eslint/types': 8.42.0
+ '@typescript-eslint/visitor-keys': 8.42.0
debug: 4.4.1
fast-glob: 3.3.3
is-glob: 4.0.3
@@ -15149,24 +14984,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.18.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)':
+ '@typescript-eslint/utils@7.18.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.2)
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)':
+ '@typescript-eslint/utils@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
- '@typescript-eslint/scope-manager': 8.40.0
- '@typescript-eslint/types': 8.40.0
- '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.2)
- eslint: 9.33.0(jiti@2.5.1)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
+ '@typescript-eslint/scope-manager': 8.42.0
+ '@typescript-eslint/types': 8.42.0
+ '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2)
+ eslint: 9.35.0(jiti@2.5.1)
typescript: 5.9.2
transitivePeerDependencies:
- supports-color
@@ -15176,9 +15011,9 @@ snapshots:
'@typescript-eslint/types': 7.18.0
eslint-visitor-keys: 3.4.3
- '@typescript-eslint/visitor-keys@8.40.0':
+ '@typescript-eslint/visitor-keys@8.42.0':
dependencies:
- '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/types': 8.42.0
eslint-visitor-keys: 4.2.1
'@ungap/structured-clone@1.3.0': {}
@@ -15242,18 +15077,18 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true
- '@vee-validate/zod@4.15.1(vue@3.5.18(typescript@5.9.2))(zod@3.25.76)':
+ '@vee-validate/zod@4.15.1(vue@3.5.21(typescript@5.9.2))(zod@3.25.76)':
dependencies:
type-fest: 4.41.0
- vee-validate: 4.15.1(vue@3.5.18(typescript@5.9.2))
+ vee-validate: 4.15.1(vue@3.5.21(typescript@5.9.2))
zod: 3.25.76
transitivePeerDependencies:
- vue
- '@vercel/nft@0.29.4(encoding@0.1.13)(rollup@4.46.3)':
+ '@vercel/nft@0.30.1(encoding@0.1.13)(rollup@4.50.1)':
dependencies:
'@mapbox/node-pre-gyp': 2.0.0(encoding@0.1.13)
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
acorn: 8.15.0
acorn-import-attributes: 1.9.5(acorn@8.15.0)
async-sema: 3.1.1
@@ -15269,64 +15104,66 @@ snapshots:
- rollup
- supports-color
- '@vite-pwa/vitepress@1.0.0(vite-plugin-pwa@1.0.2(vite@5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1))(workbox-build@7.3.0)(workbox-window@7.3.0))':
+ '@vite-pwa/vitepress@1.0.0(vite-plugin-pwa@1.0.3(vite@5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0))':
dependencies:
- vite-plugin-pwa: 1.0.2(vite@5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1))(workbox-build@7.3.0)(workbox-window@7.3.0)
+ vite-plugin-pwa: 1.0.3(vite@5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0)
- '@vitejs/plugin-vue-jsx@5.0.1(vite@7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))':
+ '@vitejs/plugin-vue-jsx@5.1.1(vite@7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.3)
- '@rolldown/pluginutils': 1.0.0-beta.33
- '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.3)
- vite: 7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vue: 3.5.18(typescript@5.9.2)
+ '@babel/core': 7.28.4
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
+ '@rolldown/pluginutils': 1.0.0-beta.35
+ '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.4)
+ vite: 7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
+ vue: 3.5.21(typescript@5.9.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@5.0.1(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))':
+ '@vitejs/plugin-vue-jsx@5.1.1(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.3)
- '@rolldown/pluginutils': 1.0.0-beta.33
- '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.3)
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vue: 3.5.18(typescript@5.9.2)
+ '@babel/core': 7.28.4
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
+ '@rolldown/pluginutils': 1.0.0-beta.35
+ '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.4)
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
+ vue: 3.5.21(typescript@5.9.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.2.4(vite@5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1))(vue@3.5.18(typescript@5.9.2))':
+ '@vitejs/plugin-vue@5.2.4(vite@5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0))(vue@3.5.21(typescript@5.9.2))':
dependencies:
- vite: 5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)
- vue: 3.5.18(typescript@5.9.2)
+ vite: 5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)
+ vue: 3.5.21(typescript@5.9.2)
- '@vitejs/plugin-vue@6.0.1(vite@7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))':
+ '@vitejs/plugin-vue@6.0.1(vite@7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@rolldown/pluginutils': 1.0.0-beta.29
- vite: 7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vue: 3.5.18(typescript@5.9.2)
+ vite: 7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
+ vue: 3.5.21(typescript@5.9.2)
- '@vitejs/plugin-vue@6.0.1(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))':
+ '@vitejs/plugin-vue@6.0.1(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@rolldown/pluginutils': 1.0.0-beta.29
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vue: 3.5.18(typescript@5.9.2)
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
+ vue: 3.5.21(typescript@5.9.2)
'@vitest/expect@3.2.4':
dependencies:
'@types/chai': 5.2.2
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
- chai: 5.3.1
+ chai: 5.3.3
tinyrainbow: 2.0.0
- '@vitest/mocker@3.2.4(vite@7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
+ '@vitest/mocker@3.2.4(vite@7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
- magic-string: 0.30.17
+ magic-string: 0.30.19
optionalDependencies:
- vite: 7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite: 7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
'@vitest/pretty-format@3.2.4':
dependencies:
@@ -15341,7 +15178,7 @@ snapshots:
'@vitest/snapshot@3.2.4':
dependencies:
'@vitest/pretty-format': 3.2.4
- magic-string: 0.30.17
+ magic-string: 0.30.19
pathe: 2.0.3
'@vitest/spy@3.2.4':
@@ -15351,7 +15188,7 @@ snapshots:
'@vitest/utils@3.2.4':
dependencies:
'@vitest/pretty-format': 3.2.4
- loupe: 3.2.0
+ loupe: 3.2.1
tinyrainbow: 2.0.0
'@volar/language-core@2.4.23':
@@ -15368,62 +15205,62 @@ snapshots:
'@vue/babel-helper-vue-transform-on@1.5.0': {}
- '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.3)':
+ '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.4)':
dependencies:
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.4
'@vue/babel-helper-vue-transform-on': 1.5.0
- '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.3)
- '@vue/shared': 3.5.18
+ '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.4)
+ '@vue/shared': 3.5.21
optionalDependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
transitivePeerDependencies:
- supports-color
- '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.3)':
+ '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.4)':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.4
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- '@babel/parser': 7.28.3
- '@vue/compiler-sfc': 3.5.18
+ '@babel/parser': 7.28.4
+ '@vue/compiler-sfc': 3.5.21
transitivePeerDependencies:
- supports-color
- '@vue/compiler-core@3.5.18':
+ '@vue/compiler-core@3.5.21':
dependencies:
- '@babel/parser': 7.28.3
- '@vue/shared': 3.5.18
+ '@babel/parser': 7.28.4
+ '@vue/shared': 3.5.21
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.18':
+ '@vue/compiler-dom@3.5.21':
dependencies:
- '@vue/compiler-core': 3.5.18
- '@vue/shared': 3.5.18
+ '@vue/compiler-core': 3.5.21
+ '@vue/shared': 3.5.21
- '@vue/compiler-sfc@3.5.18':
+ '@vue/compiler-sfc@3.5.21':
dependencies:
- '@babel/parser': 7.28.3
- '@vue/compiler-core': 3.5.18
- '@vue/compiler-dom': 3.5.18
- '@vue/compiler-ssr': 3.5.18
- '@vue/shared': 3.5.18
+ '@babel/parser': 7.28.4
+ '@vue/compiler-core': 3.5.21
+ '@vue/compiler-dom': 3.5.21
+ '@vue/compiler-ssr': 3.5.21
+ '@vue/shared': 3.5.21
estree-walker: 2.0.2
- magic-string: 0.30.17
+ magic-string: 0.30.19
postcss: 8.5.6
source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.18':
+ '@vue/compiler-ssr@3.5.21':
dependencies:
- '@vue/compiler-dom': 3.5.18
- '@vue/shared': 3.5.18
+ '@vue/compiler-dom': 3.5.21
+ '@vue/shared': 3.5.21
'@vue/compiler-vue2@2.7.16':
dependencies:
@@ -15436,15 +15273,15 @@ snapshots:
dependencies:
'@vue/devtools-kit': 7.7.7
- '@vue/devtools-core@7.7.7(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))':
+ '@vue/devtools-core@7.7.7(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@vue/devtools-kit': 7.7.7
'@vue/devtools-shared': 7.7.7
mitt: 3.0.1
nanoid: 5.1.5
pathe: 2.0.3
- vite-hot-client: 2.1.0(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
- vue: 3.5.18(typescript@5.9.2)
+ vite-hot-client: 2.1.0(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))
+ vue: 3.5.21(typescript@5.9.2)
transitivePeerDependencies:
- vite
@@ -15465,9 +15302,9 @@ snapshots:
'@vue/language-core@2.2.0(typescript@5.9.2)':
dependencies:
'@volar/language-core': 2.4.23
- '@vue/compiler-dom': 3.5.18
+ '@vue/compiler-dom': 3.5.21
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.18
+ '@vue/shared': 3.5.21
alien-signals: 0.4.14
minimatch: 9.0.5
muggle-string: 0.4.1
@@ -15478,9 +15315,9 @@ snapshots:
'@vue/language-core@2.2.10(typescript@5.9.2)':
dependencies:
'@volar/language-core': 2.4.23
- '@vue/compiler-dom': 3.5.18
+ '@vue/compiler-dom': 3.5.21
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.18
+ '@vue/shared': 3.5.21
alien-signals: 1.0.13
minimatch: 9.0.5
muggle-string: 0.4.1
@@ -15488,41 +15325,41 @@ snapshots:
optionalDependencies:
typescript: 5.9.2
- '@vue/reactivity@3.5.18':
+ '@vue/reactivity@3.5.21':
dependencies:
- '@vue/shared': 3.5.18
+ '@vue/shared': 3.5.21
- '@vue/runtime-core@3.5.18':
+ '@vue/runtime-core@3.5.21':
dependencies:
- '@vue/reactivity': 3.5.18
- '@vue/shared': 3.5.18
+ '@vue/reactivity': 3.5.21
+ '@vue/shared': 3.5.21
- '@vue/runtime-dom@3.5.18':
+ '@vue/runtime-dom@3.5.21':
dependencies:
- '@vue/reactivity': 3.5.18
- '@vue/runtime-core': 3.5.18
- '@vue/shared': 3.5.18
+ '@vue/reactivity': 3.5.21
+ '@vue/runtime-core': 3.5.21
+ '@vue/shared': 3.5.21
csstype: 3.1.3
- '@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2))':
+ '@vue/server-renderer@3.5.21(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@vue/compiler-ssr': 3.5.18
- '@vue/shared': 3.5.18
- vue: 3.5.18(typescript@5.9.2)
+ '@vue/compiler-ssr': 3.5.21
+ '@vue/shared': 3.5.21
+ vue: 3.5.21(typescript@5.9.2)
- '@vue/shared@3.5.18': {}
+ '@vue/shared@3.5.21': {}
'@vue/test-utils@2.4.6':
dependencies:
js-beautify: 1.15.4
vue-component-type-helpers: 2.2.12
- '@vueuse/core@10.11.1(vue@3.5.18(typescript@5.9.2))':
+ '@vueuse/core@10.11.1(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.11.1
- '@vueuse/shared': 10.11.1(vue@3.5.18(typescript@5.9.2))
- vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
+ '@vueuse/shared': 10.11.1(vue@3.5.21(typescript@5.9.2))
+ vue-demi: 0.14.10(vue@3.5.21(typescript@5.9.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -15532,53 +15369,51 @@ snapshots:
'@types/web-bluetooth': 0.0.21
'@vueuse/metadata': 12.8.2
'@vueuse/shared': 12.8.2(typescript@5.9.2)
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
transitivePeerDependencies:
- typescript
- '@vueuse/core@13.7.0(vue@3.5.18(typescript@5.9.2))':
+ '@vueuse/core@13.9.0(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@types/web-bluetooth': 0.0.21
- '@vueuse/metadata': 13.7.0
- '@vueuse/shared': 13.7.0(vue@3.5.18(typescript@5.9.2))
- vue: 3.5.18(typescript@5.9.2)
+ '@vueuse/metadata': 13.9.0
+ '@vueuse/shared': 13.9.0(vue@3.5.21(typescript@5.9.2))
+ vue: 3.5.21(typescript@5.9.2)
- '@vueuse/core@9.13.0(vue@3.5.18(typescript@5.9.2))':
+ '@vueuse/core@9.13.0(vue@3.5.21(typescript@5.9.2))':
dependencies:
'@types/web-bluetooth': 0.0.16
'@vueuse/metadata': 9.13.0
- '@vueuse/shared': 9.13.0(vue@3.5.18(typescript@5.9.2))
- vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
+ '@vueuse/shared': 9.13.0(vue@3.5.21(typescript@5.9.2))
+ vue-demi: 0.14.10(vue@3.5.21(typescript@5.9.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@12.8.2(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(jwt-decode@4.0.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.2)':
+ '@vueuse/integrations@12.8.2(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.2)':
dependencies:
'@vueuse/core': 12.8.2(typescript@5.9.2)
'@vueuse/shared': 12.8.2(typescript@5.9.2)
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
optionalDependencies:
async-validator: 4.2.5
axios: 1.11.0
focus-trap: 7.6.5
- jwt-decode: 4.0.0
nprogress: 0.2.0
qrcode: 1.5.4
sortablejs: 1.15.6
transitivePeerDependencies:
- typescript
- '@vueuse/integrations@13.7.0(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(jwt-decode@4.0.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.18(typescript@5.9.2))':
+ '@vueuse/integrations@13.9.0(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@vueuse/core': 13.7.0(vue@3.5.18(typescript@5.9.2))
- '@vueuse/shared': 13.7.0(vue@3.5.18(typescript@5.9.2))
- vue: 3.5.18(typescript@5.9.2)
+ '@vueuse/core': 13.9.0(vue@3.5.21(typescript@5.9.2))
+ '@vueuse/shared': 13.9.0(vue@3.5.21(typescript@5.9.2))
+ vue: 3.5.21(typescript@5.9.2)
optionalDependencies:
async-validator: 4.2.5
axios: 1.11.0
focus-trap: 7.6.5
- jwt-decode: 4.0.0
nprogress: 0.2.0
qrcode: 1.5.4
sortablejs: 1.15.6
@@ -15587,87 +15422,59 @@ snapshots:
'@vueuse/metadata@12.8.2': {}
- '@vueuse/metadata@13.7.0': {}
+ '@vueuse/metadata@13.9.0': {}
'@vueuse/metadata@9.13.0': {}
- '@vueuse/motion@3.0.3(magicast@0.3.5)(vue@3.5.18(typescript@5.9.2))':
+ '@vueuse/motion@3.0.3(magicast@0.3.5)(vue@3.5.21(typescript@5.9.2))':
dependencies:
- '@vueuse/core': 13.7.0(vue@3.5.18(typescript@5.9.2))
- '@vueuse/shared': 13.7.0(vue@3.5.18(typescript@5.9.2))
+ '@vueuse/core': 13.9.0(vue@3.5.21(typescript@5.9.2))
+ '@vueuse/shared': 13.9.0(vue@3.5.21(typescript@5.9.2))
defu: 6.1.4
framesync: 6.1.2
popmotion: 11.0.5
style-value-types: 5.1.2
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
optionalDependencies:
- '@nuxt/kit': 3.18.1(magicast@0.3.5)
+ '@nuxt/kit': 3.19.1(magicast@0.3.5)
transitivePeerDependencies:
- magicast
- '@vueuse/shared@10.11.1(vue@3.5.18(typescript@5.9.2))':
+ '@vueuse/shared@10.11.1(vue@3.5.21(typescript@5.9.2))':
dependencies:
- vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
+ vue-demi: 0.14.10(vue@3.5.21(typescript@5.9.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
'@vueuse/shared@12.8.2(typescript@5.9.2)':
dependencies:
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
transitivePeerDependencies:
- typescript
- '@vueuse/shared@13.7.0(vue@3.5.18(typescript@5.9.2))':
+ '@vueuse/shared@13.9.0(vue@3.5.21(typescript@5.9.2))':
dependencies:
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- '@vueuse/shared@9.13.0(vue@3.5.18(typescript@5.9.2))':
+ '@vueuse/shared@9.13.0(vue@3.5.21(typescript@5.9.2))':
dependencies:
- vue-demi: 0.14.10(vue@3.5.18(typescript@5.9.2))
+ vue-demi: 0.14.10(vue@3.5.21(typescript@5.9.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vxe-ui/core@4.2.11(vue@3.5.18(typescript@5.9.2))':
+ '@vxe-ui/core@4.2.12(vue@3.5.21(typescript@5.9.2))':
dependencies:
dom-zindex: 1.0.6
- vue: 3.5.18(typescript@5.9.2)
- xe-utils: 3.7.8
-
- '@whatwg-node/disposablestack@0.0.6':
- dependencies:
- '@whatwg-node/promise-helpers': 1.3.2
- tslib: 2.8.1
-
- '@whatwg-node/fetch@0.10.10':
- dependencies:
- '@whatwg-node/node-fetch': 0.7.25
- urlpattern-polyfill: 10.1.0
-
- '@whatwg-node/node-fetch@0.7.25':
- dependencies:
- '@fastify/busboy': 3.2.0
- '@whatwg-node/disposablestack': 0.0.6
- '@whatwg-node/promise-helpers': 1.3.2
- tslib: 2.8.1
-
- '@whatwg-node/promise-helpers@1.3.2':
- dependencies:
- tslib: 2.8.1
-
- '@whatwg-node/server@0.9.71':
- dependencies:
- '@whatwg-node/disposablestack': 0.0.6
- '@whatwg-node/fetch': 0.10.10
- '@whatwg-node/promise-helpers': 1.3.2
- tslib: 2.8.1
+ vue: 3.5.21(typescript@5.9.2)
+ xe-utils: 3.7.9
- '@xyflow/svelte@1.2.4(svelte@5.38.6)':
+ '@xyflow/svelte@1.2.4(svelte@5.38.7)':
dependencies:
- '@svelte-put/shortcut': 4.1.0(svelte@5.38.6)
+ '@svelte-put/shortcut': 4.1.0(svelte@5.38.7)
'@xyflow/system': 0.0.68
- svelte: 5.38.6
+ svelte: 5.38.7
'@xyflow/system@0.0.68':
dependencies:
@@ -15753,26 +15560,26 @@ snapshots:
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.6
+ fast-uri: 3.1.0
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.35.0:
- dependencies:
- '@algolia/abtesting': 1.1.0
- '@algolia/client-abtesting': 5.35.0
- '@algolia/client-analytics': 5.35.0
- '@algolia/client-common': 5.35.0
- '@algolia/client-insights': 5.35.0
- '@algolia/client-personalization': 5.35.0
- '@algolia/client-query-suggestions': 5.35.0
- '@algolia/client-search': 5.35.0
- '@algolia/ingestion': 1.35.0
- '@algolia/monitoring': 1.35.0
- '@algolia/recommend': 5.35.0
- '@algolia/requester-browser-xhr': 5.35.0
- '@algolia/requester-fetch': 5.35.0
- '@algolia/requester-node-http': 5.35.0
+ algoliasearch@5.37.0:
+ dependencies:
+ '@algolia/abtesting': 1.3.0
+ '@algolia/client-abtesting': 5.37.0
+ '@algolia/client-analytics': 5.37.0
+ '@algolia/client-common': 5.37.0
+ '@algolia/client-insights': 5.37.0
+ '@algolia/client-personalization': 5.37.0
+ '@algolia/client-query-suggestions': 5.37.0
+ '@algolia/client-search': 5.37.0
+ '@algolia/ingestion': 1.37.0
+ '@algolia/monitoring': 1.37.0
+ '@algolia/recommend': 5.37.0
+ '@algolia/requester-browser-xhr': 5.37.0
+ '@algolia/requester-fetch': 5.37.0
+ '@algolia/requester-node-http': 5.37.0
alien-signals@0.4.14: {}
@@ -15798,11 +15605,11 @@ snapshots:
ansi-styles@6.2.1: {}
- ant-design-vue@4.2.6(vue@3.5.18(typescript@5.9.2)):
+ ant-design-vue@4.2.6(vue@3.5.21(typescript@5.9.2)):
dependencies:
'@ant-design/colors': 6.0.0
- '@ant-design/icons-vue': 7.0.1(vue@3.5.18(typescript@5.9.2))
- '@babel/runtime': 7.28.3
+ '@ant-design/icons-vue': 7.0.1(vue@3.5.21(typescript@5.9.2))
+ '@babel/runtime': 7.28.4
'@ctrl/tinycolor': 4.1.0
'@emotion/hash': 0.9.2
'@emotion/unitless': 0.8.1
@@ -15810,7 +15617,7 @@ snapshots:
array-tree-filter: 2.1.0
async-validator: 4.2.5
csstype: 3.1.3
- dayjs: 1.11.13
+ dayjs: 1.11.18
dom-align: 1.12.4
dom-scroll-into-view: 2.0.1
lodash: 4.17.21
@@ -15820,8 +15627,8 @@ snapshots:
shallow-equal: 1.2.1
stylis: 4.3.6
throttle-debounce: 5.0.2
- vue: 3.5.18(typescript@5.9.2)
- vue-types: 3.0.2(vue@3.5.18(typescript@5.9.2))
+ vue: 3.5.21(typescript@5.9.2)
+ vue-types: 3.0.2(vue@3.5.21(typescript@5.9.2))
warning: 4.0.3
any-promise@1.3.0: {}
@@ -15876,6 +15683,8 @@ snapshots:
array-ify@1.0.0: {}
+ array-move@4.0.0: {}
+
array-timsort@1.0.3: {}
array-tree-filter@2.1.0: {}
@@ -15896,8 +15705,6 @@ snapshots:
assertion-error@2.0.1: {}
- ast-module-types@6.0.1: {}
-
astral-regex@2.0.0: {}
async-function@1.0.0: {}
@@ -15923,8 +15730,8 @@ snapshots:
autoprefixer@10.4.21(postcss@8.5.6):
dependencies:
- browserslist: 4.25.3
- caniuse-lite: 1.0.30001735
+ browserslist: 4.25.4
+ caniuse-lite: 1.0.30001741
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -15953,27 +15760,27 @@ snapshots:
b4a@1.6.7: {}
- babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.3):
+ babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.4):
dependencies:
- '@babel/compat-data': 7.28.0
- '@babel/core': 7.28.3
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.3)
+ '@babel/compat-data': 7.28.4
+ '@babel/core': 7.28.4
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.3):
+ babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.3)
- core-js-compat: 3.45.0
+ '@babel/core': 7.28.4
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+ core-js-compat: 3.45.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.3):
+ babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
@@ -16015,6 +15822,42 @@ snapshots:
widest-line: 5.0.0
wrap-ansi: 9.0.0
+ bpmn-js-properties-panel@5.23.0(@bpmn-io/properties-panel@3.33.0)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.11.1(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.11.0))(diagram-js@12.8.1):
+ dependencies:
+ '@bpmn-io/extract-process-variables': 0.8.0
+ '@bpmn-io/properties-panel': 3.33.0
+ array-move: 4.0.0
+ bpmn-js: 17.11.1
+ camunda-bpmn-js-behaviors: 1.11.1(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.11.0)
+ diagram-js: 12.8.1
+ ids: 1.0.5
+ min-dash: 4.2.3
+ min-dom: 4.2.1
+
+ bpmn-js-token-simulation@0.36.3:
+ dependencies:
+ inherits-browser: 0.1.0
+ min-dash: 4.2.3
+ min-dom: 4.2.1
+ randomcolor: 0.6.2
+
+ bpmn-js@17.11.1:
+ dependencies:
+ bpmn-moddle: 8.1.0
+ diagram-js: 14.11.3
+ diagram-js-direct-editing: 3.2.0(diagram-js@14.11.3)
+ ids: 1.0.5
+ inherits-browser: 0.1.0
+ min-dash: 4.2.3
+ min-dom: 4.2.1
+ tiny-svg: 3.1.3
+
+ bpmn-moddle@8.1.0:
+ dependencies:
+ min-dash: 4.2.3
+ moddle: 6.2.3
+ moddle-xml: 10.1.0
+
brace-expansion@1.1.12:
dependencies:
balanced-match: 1.0.2
@@ -16028,14 +15871,12 @@ snapshots:
dependencies:
fill-range: 7.1.1
- browserslist@4.25.3:
+ browserslist@4.25.4:
dependencies:
- caniuse-lite: 1.0.30001735
- electron-to-chromium: 1.5.206
- node-releases: 2.0.19
- update-browserslist-db: 1.1.3(browserslist@4.25.3)
-
- buffer-crc32@0.2.13: {}
+ caniuse-lite: 1.0.30001741
+ electron-to-chromium: 1.5.214
+ node-releases: 2.0.20
+ update-browserslist-db: 1.1.3(browserslist@4.25.4)
buffer-crc32@1.0.0: {}
@@ -16048,8 +15889,6 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- builtin-modules@3.3.0: {}
-
builtin-modules@5.0.0: {}
bundle-name@4.1.0:
@@ -16061,14 +15900,14 @@ snapshots:
chokidar: 4.0.3
confbox: 0.2.2
defu: 6.1.4
- dotenv: 17.2.1
+ dotenv: 17.2.2
exsolve: 1.0.7
giget: 2.0.0
jiti: 2.5.1
ohash: 2.0.11
pathe: 2.0.3
perfect-debounce: 1.0.0
- pkg-types: 2.2.0
+ pkg-types: 2.3.0
rc9: 2.1.2
optionalDependencies:
magicast: 0.3.5
@@ -16100,7 +15939,7 @@ snapshots:
cacheable@1.10.4:
dependencies:
- hookified: 1.11.0
+ hookified: 1.12.0
keyv: 5.5.0
call-bind-apply-helpers@1.0.2:
@@ -16137,23 +15976,33 @@ snapshots:
camelcase@8.0.0: {}
+ camunda-bpmn-js-behaviors@1.11.1(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.11.0):
+ dependencies:
+ bpmn-js: 17.11.1
+ camunda-bpmn-moddle: 7.0.1
+ ids: 1.0.5
+ min-dash: 4.2.3
+ zeebe-bpmn-moddle: 1.11.0
+
+ camunda-bpmn-moddle@7.0.1: {}
+
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.25.3
- caniuse-lite: 1.0.30001735
+ browserslist: 4.25.4
+ caniuse-lite: 1.0.30001741
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001735: {}
+ caniuse-lite@1.0.30001741: {}
ccount@2.0.1: {}
- chai@5.3.1:
+ chai@5.3.3:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.2.0
+ loupe: 3.2.1
pathval: 2.0.1
chalk-template@1.1.0:
@@ -16205,7 +16054,7 @@ snapshots:
parse5: 7.3.0
parse5-htmlparser2-tree-adapter: 7.1.0
parse5-parser-stream: 7.1.2
- undici: 7.14.0
+ undici: 7.15.0
whatwg-mimetype: 4.0.0
chokidar@3.6.0:
@@ -16235,7 +16084,7 @@ snapshots:
circular-dependency-scanner@2.3.0:
dependencies:
'@ast-grep/napi': 0.37.0
- '@vue/compiler-sfc': 3.5.18
+ '@vue/compiler-sfc': 3.5.21
commander: 12.1.0
get-tsconfig: 4.10.1
graph-cycles: 3.0.0
@@ -16244,7 +16093,7 @@ snapshots:
node-cleanup: 2.1.2
typescript: 5.9.2
update-notifier: 7.3.1
- zx: 8.8.0
+ zx: 8.8.1
citty@0.1.6:
dependencies:
@@ -16254,6 +16103,8 @@ snapshots:
dependencies:
clsx: 2.1.1
+ classnames@2.5.1: {}
+
clean-css@5.3.3:
dependencies:
source-map: 0.6.1
@@ -16318,37 +16169,16 @@ snapshots:
codemirror@6.65.7: {}
- color-convert@1.9.3:
- dependencies:
- color-name: 1.1.3
-
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
- color-name@1.1.3: {}
-
color-name@1.1.4: {}
- color-string@1.9.1:
- dependencies:
- color-name: 1.1.4
- simple-swizzle: 0.2.2
-
- color@3.2.1:
- dependencies:
- color-convert: 1.9.3
- color-string: 1.9.1
-
colord@2.9.3: {}
colorette@2.0.20: {}
- colorspace@1.1.4:
- dependencies:
- color: 3.2.1
- text-hex: 1.0.0
-
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
@@ -16385,8 +16215,6 @@ snapshots:
dependencies:
'@commitlint/lint': 19.8.1
- common-path-prefix@3.0.0: {}
-
common-tags@1.8.2: {}
commondir@1.0.1: {}
@@ -16400,6 +16228,8 @@ snapshots:
compatx@0.2.0: {}
+ component-event@0.2.1: {}
+
compress-commons@6.0.2:
dependencies:
crc-32: 1.2.2
@@ -16465,24 +16295,19 @@ snapshots:
dependencies:
is-what: 4.1.16
- copy-file@11.1.0:
+ core-js-compat@3.45.1:
dependencies:
- graceful-fs: 4.2.11
- p-event: 6.0.1
-
- core-js-compat@3.45.0:
- dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
- core-js-pure@3.45.0: {}
+ core-js-pure@3.45.1: {}
- core-js@3.45.0: {}
+ core-js@3.45.1: {}
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@6.1.0(@types/node@24.3.0)(cosmiconfig@9.0.0(typescript@5.9.2))(typescript@5.9.2):
+ cosmiconfig-typescript-loader@6.1.0(@types/node@24.3.1)(cosmiconfig@9.0.0(typescript@5.9.2))(typescript@5.9.2):
dependencies:
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
cosmiconfig: 9.0.0(typescript@5.9.2)
jiti: 2.5.1
typescript: 5.9.2
@@ -16511,9 +16336,7 @@ snapshots:
crc-32: 1.2.2
readable-stream: 4.7.0
- cron-parser@4.9.0:
- dependencies:
- luxon: 3.7.1
+ crelt@1.0.6: {}
croner@9.1.0: {}
@@ -16622,7 +16445,7 @@ snapshots:
fast-json-stable-stringify: 2.1.0
file-entry-cache: 9.1.0
semver: 7.7.2
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
css-blank-pseudo@7.0.1(postcss@8.5.6):
dependencies:
@@ -16635,7 +16458,7 @@ snapshots:
css-functions-list@3.2.3: {}
- css-has-pseudo@7.0.2(postcss@8.5.6):
+ css-has-pseudo@7.0.3(postcss@8.5.6):
dependencies:
'@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0)
postcss: 8.5.6
@@ -16679,19 +16502,19 @@ snapshots:
css-what@6.2.2: {}
- cssdb@8.3.1: {}
+ cssdb@8.4.0: {}
cssesc@3.0.0: {}
- cssnano-preset-default@7.0.8(postcss@8.5.6):
+ cssnano-preset-default@7.0.9(postcss@8.5.6):
dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
css-declaration-sorter: 7.2.0(postcss@8.5.6)
cssnano-utils: 5.0.1(postcss@8.5.6)
postcss: 8.5.6
postcss-calc: 10.1.1(postcss@8.5.6)
postcss-colormin: 7.0.4(postcss@8.5.6)
- postcss-convert-values: 7.0.6(postcss@8.5.6)
+ postcss-convert-values: 7.0.7(postcss@8.5.6)
postcss-discard-comments: 7.0.4(postcss@8.5.6)
postcss-discard-duplicates: 7.0.2(postcss@8.5.6)
postcss-discard-empty: 7.0.1(postcss@8.5.6)
@@ -16721,9 +16544,9 @@ snapshots:
dependencies:
postcss: 8.5.6
- cssnano@7.1.0(postcss@8.5.6):
+ cssnano@7.1.1(postcss@8.5.6):
dependencies:
- cssnano-preset-default: 7.0.8(postcss@8.5.6)
+ cssnano-preset-default: 7.0.9(postcss@8.5.6)
lilconfig: 3.1.3
postcss: 8.5.6
@@ -16899,8 +16722,6 @@ snapshots:
dargs@8.1.0: {}
- data-uri-to-buffer@4.0.1: {}
-
data-view-buffer@1.0.2:
dependencies:
call-bound: 1.0.4
@@ -16929,7 +16750,7 @@ snapshots:
date-fns@4.1.0: {}
- dayjs@1.11.13: {}
+ dayjs@1.11.18: {}
db0@0.3.2: {}
@@ -16939,10 +16760,6 @@ snapshots:
dependencies:
ms: 2.1.3
- decache@4.6.2:
- dependencies:
- callsite: 1.0.0
-
decamelize@1.2.0: {}
deep-eql@5.0.2: {}
@@ -16994,9 +16811,9 @@ snapshots:
depcheck@1.4.7:
dependencies:
- '@babel/parser': 7.28.3
- '@babel/traverse': 7.28.3
- '@vue/compiler-sfc': 3.5.18
+ '@babel/parser': 7.28.4
+ '@babel/traverse': 7.28.4
+ '@vue/compiler-sfc': 3.5.21
callsite: 1.0.0
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -17036,65 +16853,44 @@ snapshots:
detect-libc@2.0.4: {}
- detective-amd@6.0.1:
- dependencies:
- ast-module-types: 6.0.1
- escodegen: 2.1.0
- get-amd-module-type: 6.0.1
- node-source-walk: 7.0.1
-
- detective-cjs@6.0.1:
- dependencies:
- ast-module-types: 6.0.1
- node-source-walk: 7.0.1
-
- detective-es6@5.0.1:
- dependencies:
- node-source-walk: 7.0.1
-
- detective-postcss@7.0.1(postcss@8.5.6):
- dependencies:
- is-url: 1.2.4
- postcss: 8.5.6
- postcss-values-parser: 6.0.2(postcss@8.5.6)
-
- detective-sass@6.0.1:
+ devlop@1.1.0:
dependencies:
- gonzales-pe: 4.3.0
- node-source-walk: 7.0.1
+ dequal: 2.0.3
- detective-scss@5.0.1:
+ diagram-js-direct-editing@3.2.0(diagram-js@14.11.3):
dependencies:
- gonzales-pe: 4.3.0
- node-source-walk: 7.0.1
-
- detective-stylus@5.0.1: {}
+ diagram-js: 14.11.3
+ min-dash: 4.2.3
+ min-dom: 4.2.1
- detective-typescript@14.0.0(typescript@5.9.2):
+ diagram-js@12.8.1:
dependencies:
- '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.2)
- ast-module-types: 6.0.1
- node-source-walk: 7.0.1
- typescript: 5.9.2
- transitivePeerDependencies:
- - supports-color
+ '@bpmn-io/diagram-js-ui': 0.2.3
+ clsx: 2.1.1
+ didi: 9.0.2
+ hammerjs: 2.0.8
+ inherits-browser: 0.1.0
+ min-dash: 4.2.3
+ min-dom: 4.2.1
+ object-refs: 0.3.0
+ path-intersection: 2.2.1
+ tiny-svg: 3.1.3
+
+ diagram-js@14.11.3:
+ dependencies:
+ '@bpmn-io/diagram-js-ui': 0.2.3
+ clsx: 2.1.1
+ didi: 10.2.2
+ inherits-browser: 0.1.0
+ min-dash: 4.2.3
+ min-dom: 4.2.1
+ object-refs: 0.4.0
+ path-intersection: 3.1.0
+ tiny-svg: 3.1.3
- detective-vue2@2.2.0(typescript@5.9.2):
- dependencies:
- '@dependents/detective-less': 5.0.1
- '@vue/compiler-sfc': 3.5.18
- detective-es6: 5.0.1
- detective-sass: 6.0.1
- detective-scss: 5.0.1
- detective-stylus: 5.0.1
- detective-typescript: 14.0.0(typescript@5.9.2)
- typescript: 5.9.2
- transitivePeerDependencies:
- - supports-color
+ didi@10.2.2: {}
- devlop@1.1.0:
- dependencies:
- dequal: 2.0.3
+ didi@9.0.2: {}
didyoumean@1.2.2: {}
@@ -17134,6 +16930,10 @@ snapshots:
dependencies:
domelementtype: 2.3.0
+ domify@1.4.2: {}
+
+ domify@2.0.0: {}
+
dompurify@3.2.6:
optionalDependencies:
'@types/trusted-types': 2.0.7
@@ -17169,7 +16969,7 @@ snapshots:
dotenv@16.6.1: {}
- dotenv@17.2.1: {}
+ dotenv@17.2.2: {}
dotenv@8.6.0: {}
@@ -17205,39 +17005,37 @@ snapshots:
dependencies:
jake: 10.9.4
- electron-to-chromium@1.5.206: {}
+ electron-to-chromium@1.5.214: {}
- element-plus@2.10.7(vue@3.5.18(typescript@5.9.2)):
+ element-plus@2.11.2(vue@3.5.21(typescript@5.9.2)):
dependencies:
'@ctrl/tinycolor': 4.1.0
- '@element-plus/icons-vue': 2.3.2(vue@3.5.18(typescript@5.9.2))
- '@floating-ui/dom': 1.7.3
+ '@element-plus/icons-vue': 2.3.2(vue@3.5.21(typescript@5.9.2))
+ '@floating-ui/dom': 1.7.4
'@popperjs/core': '@sxzz/popperjs-es@2.11.7'
'@types/lodash': 4.17.20
'@types/lodash-es': 4.17.12
- '@vueuse/core': 9.13.0(vue@3.5.18(typescript@5.9.2))
+ '@vueuse/core': 9.13.0(vue@3.5.21(typescript@5.9.2))
async-validator: 4.2.5
- dayjs: 1.11.13
+ dayjs: 1.11.18
escape-html: 1.0.3
lodash: 4.17.21
lodash-es: 4.17.21
lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
memoize-one: 6.0.0
normalize-wheel-es: 1.2.0
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
transitivePeerDependencies:
- '@vue/composition-api'
emoji-regex-xs@1.0.0: {}
- emoji-regex@10.4.0: {}
+ emoji-regex@10.5.0: {}
emoji-regex@8.0.0: {}
emoji-regex@9.2.2: {}
- enabled@2.0.0: {}
-
encodeurl@2.0.0: {}
encoding-sniffer@0.2.1:
@@ -17250,14 +17048,10 @@ snapshots:
iconv-lite: 0.6.3
optional: true
- end-of-stream@1.4.5:
- dependencies:
- once: 1.4.0
-
enhanced-resolve@5.18.3:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.2
+ tapable: 2.2.3
enquirer@2.4.1:
dependencies:
@@ -17424,20 +17218,20 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-compat-utils@0.5.1(eslint@9.33.0(jiti@2.5.1)):
+ eslint-compat-utils@0.5.1(eslint@9.35.0(jiti@2.5.1)):
dependencies:
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
semver: 7.7.2
- eslint-compat-utils@0.6.5(eslint@9.33.0(jiti@2.5.1)):
+ eslint-compat-utils@0.6.5(eslint@9.35.0(jiti@2.5.1)):
dependencies:
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
semver: 7.7.2
- eslint-config-turbo@2.5.6(eslint@9.33.0(jiti@2.5.1))(turbo@2.5.6):
+ eslint-config-turbo@2.5.6(eslint@9.35.0(jiti@2.5.1))(turbo@2.5.6):
dependencies:
- eslint: 9.33.0(jiti@2.5.1)
- eslint-plugin-turbo: 2.5.6(eslint@9.33.0(jiti@2.5.1))(turbo@2.5.6)
+ eslint: 9.35.0(jiti@2.5.1)
+ eslint-plugin-turbo: 2.5.6(eslint@9.35.0(jiti@2.5.1))(turbo@2.5.6)
turbo: 2.5.6
eslint-import-context@0.1.9(unrs-resolver@1.11.1):
@@ -17447,36 +17241,36 @@ snapshots:
optionalDependencies:
unrs-resolver: 1.11.1
- eslint-json-compat-utils@0.2.1(eslint@9.33.0(jiti@2.5.1))(jsonc-eslint-parser@2.4.0):
+ eslint-json-compat-utils@0.2.1(eslint@9.35.0(jiti@2.5.1))(jsonc-eslint-parser@2.4.0):
dependencies:
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
esquery: 1.6.0
jsonc-eslint-parser: 2.4.0
- eslint-plugin-command@3.3.1(eslint@9.33.0(jiti@2.5.1)):
+ eslint-plugin-command@3.3.1(eslint@9.35.0(jiti@2.5.1)):
dependencies:
'@es-joy/jsdoccomment': 0.50.2
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
- eslint-plugin-es-x@7.8.0(eslint@9.33.0(jiti@2.5.1)):
+ eslint-plugin-es-x@7.8.0(eslint@9.35.0(jiti@2.5.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
'@eslint-community/regexpp': 4.12.1
- eslint: 9.33.0(jiti@2.5.1)
- eslint-compat-utils: 0.5.1(eslint@9.33.0(jiti@2.5.1))
+ eslint: 9.35.0(jiti@2.5.1)
+ eslint-compat-utils: 0.5.1(eslint@9.35.0(jiti@2.5.1))
- eslint-plugin-eslint-comments@3.2.0(eslint@9.33.0(jiti@2.5.1)):
+ eslint-plugin-eslint-comments@3.2.0(eslint@9.35.0(jiti@2.5.1)):
dependencies:
escape-string-regexp: 1.0.5
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
ignore: 5.3.2
- eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1)):
+ eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1)):
dependencies:
- '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/types': 8.42.0
comment-parser: 1.4.1
debug: 4.4.1
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
is-glob: 4.0.3
minimatch: 10.0.3
@@ -17484,18 +17278,18 @@ snapshots:
stable-hash-x: 0.2.0
unrs-resolver: 1.11.1
optionalDependencies:
- '@typescript-eslint/utils': 8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
+ '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsdoc@50.8.0(eslint@9.33.0(jiti@2.5.1)):
+ eslint-plugin-jsdoc@50.8.0(eslint@9.35.0(jiti@2.5.1)):
dependencies:
'@es-joy/jsdoccomment': 0.50.2
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.4.1
escape-string-regexp: 4.0.0
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
espree: 10.4.0
esquery: 1.6.0
parse-imports-exports: 0.2.4
@@ -17504,12 +17298,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsonc@2.20.1(eslint@9.33.0(jiti@2.5.1)):
+ eslint-plugin-jsonc@2.20.1(eslint@9.35.0(jiti@2.5.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
- eslint: 9.33.0(jiti@2.5.1)
- eslint-compat-utils: 0.6.5(eslint@9.33.0(jiti@2.5.1))
- eslint-json-compat-utils: 0.2.1(eslint@9.33.0(jiti@2.5.1))(jsonc-eslint-parser@2.4.0)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
+ eslint: 9.35.0(jiti@2.5.1)
+ eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.5.1))
+ eslint-json-compat-utils: 0.2.1(eslint@9.35.0(jiti@2.5.1))(jsonc-eslint-parser@2.4.0)
espree: 10.4.0
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
@@ -17518,12 +17312,12 @@ snapshots:
transitivePeerDependencies:
- '@eslint/json'
- eslint-plugin-n@17.21.3(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2):
+ eslint-plugin-n@17.21.3(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
enhanced-resolve: 5.18.3
- eslint: 9.33.0(jiti@2.5.1)
- eslint-plugin-es-x: 7.8.0(eslint@9.33.0(jiti@2.5.1))
+ eslint: 9.35.0(jiti@2.5.1)
+ eslint-plugin-es-x: 7.8.0(eslint@9.35.0(jiti@2.5.1))
get-tsconfig: 4.10.1
globals: 15.15.0
globrex: 0.1.2
@@ -17535,51 +17329,51 @@ snapshots:
eslint-plugin-no-only-tests@3.3.0: {}
- eslint-plugin-perfectionist@4.15.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2):
+ eslint-plugin-perfectionist@4.15.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2):
dependencies:
- '@typescript-eslint/types': 8.40.0
- '@typescript-eslint/utils': 8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
- eslint: 9.33.0(jiti@2.5.1)
+ '@typescript-eslint/types': 8.42.0
+ '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
+ eslint: 9.35.0(jiti@2.5.1)
natural-orderby: 5.0.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-prettier@5.5.4(@types/eslint@9.6.1)(eslint@9.33.0(jiti@2.5.1))(prettier@3.6.2):
+ eslint-plugin-prettier@5.5.4(@types/eslint@9.6.1)(eslint@9.35.0(jiti@2.5.1))(prettier@3.6.2):
dependencies:
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
prettier: 3.6.2
prettier-linter-helpers: 1.0.0
synckit: 0.11.11
optionalDependencies:
'@types/eslint': 9.6.1
- eslint-plugin-regexp@2.10.0(eslint@9.33.0(jiti@2.5.1)):
+ eslint-plugin-regexp@2.10.0(eslint@9.35.0(jiti@2.5.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
'@eslint-community/regexpp': 4.12.1
comment-parser: 1.4.1
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
jsdoc-type-pratt-parser: 4.8.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
- eslint-plugin-turbo@2.5.6(eslint@9.33.0(jiti@2.5.1))(turbo@2.5.6):
+ eslint-plugin-turbo@2.5.6(eslint@9.35.0(jiti@2.5.1))(turbo@2.5.6):
dependencies:
dotenv: 16.0.3
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
turbo: 2.5.6
- eslint-plugin-unicorn@59.0.1(eslint@9.33.0(jiti@2.5.1)):
+ eslint-plugin-unicorn@59.0.1(eslint@9.35.0(jiti@2.5.1)):
dependencies:
'@babel/helper-validator-identifier': 7.27.1
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
'@eslint/plugin-kit': 0.2.8
ci-info: 4.3.0
clean-regexp: 1.0.0
- core-js-compat: 3.45.0
- eslint: 9.33.0(jiti@2.5.1)
+ core-js-compat: 3.45.1
+ eslint: 9.35.0(jiti@2.5.1)
esquery: 1.6.0
find-up-simple: 1.0.1
globals: 16.3.0
@@ -17592,35 +17386,35 @@ snapshots:
semver: 7.7.2
strip-indent: 4.0.0
- eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1)):
+ eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1)):
dependencies:
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
+ '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
- eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)(vitest@3.2.4(@types/node@24.3.0)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
+ eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)(vitest@3.2.4(@types/node@24.3.1)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
- '@typescript-eslint/utils': 7.18.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
- eslint: 9.33.0(jiti@2.5.1)
+ '@typescript-eslint/utils': 7.18.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
+ eslint: 9.35.0(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
- vitest: 3.2.4(@types/node@24.3.0)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
+ vitest: 3.2.4(@types/node@24.3.1)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.33.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.5.1))):
+ eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.35.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.5.1))):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
- eslint: 9.33.0(jiti@2.5.1)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
+ eslint: 9.35.0(jiti@2.5.1)
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.1.2
semver: 7.7.2
- vue-eslint-parser: 10.2.0(eslint@9.33.0(jiti@2.5.1))
+ vue-eslint-parser: 10.2.0(eslint@9.35.0(jiti@2.5.1))
xml-name-validator: 4.0.0
optionalDependencies:
- '@typescript-eslint/parser': 8.40.0(eslint@9.33.0(jiti@2.5.1))(typescript@5.9.2)
+ '@typescript-eslint/parser': 8.42.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2)
eslint-scope@8.4.0:
dependencies:
@@ -17631,17 +17425,17 @@ snapshots:
eslint-visitor-keys@4.2.1: {}
- eslint@9.33.0(jiti@2.5.1):
+ eslint@9.35.0(jiti@2.5.1):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.5.1))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.5.1))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.21.0
'@eslint/config-helpers': 0.3.1
'@eslint/core': 0.15.2
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.33.0
+ '@eslint/js': 9.35.0
'@eslint/plugin-kit': 0.3.5
- '@humanfs/node': 0.16.6
+ '@humanfs/node': 0.16.7
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.3
'@types/estree': 1.0.8
@@ -17748,7 +17542,7 @@ snapshots:
pretty-ms: 9.2.0
signal-exit: 4.1.0
strip-final-newline: 4.0.0
- yoctocolors: 2.1.1
+ yoctocolors: 2.1.2
expand-tilde@2.0.2:
dependencies:
@@ -17764,16 +17558,6 @@ snapshots:
extendable-error@0.1.7: {}
- extract-zip@2.0.1:
- dependencies:
- debug: 4.4.1
- get-stream: 5.2.0
- yauzl: 2.10.0
- optionalDependencies:
- '@types/yauzl': 2.10.3
- transitivePeerDependencies:
- - supports-color
-
fast-deep-equal@3.1.3: {}
fast-diff@1.3.0: {}
@@ -17796,7 +17580,11 @@ snapshots:
fast-string-compare@3.0.0: {}
- fast-uri@3.0.6: {}
+ fast-uri@3.1.0: {}
+
+ fast-xml-parser@4.5.3:
+ dependencies:
+ strnum: 1.1.2
fastest-levenshtein@1.0.16: {}
@@ -17804,20 +17592,33 @@ snapshots:
dependencies:
reusify: 1.1.0
- fd-slicer@1.1.0:
- dependencies:
- pend: 1.2.0
-
fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.3
- fecha@4.2.3: {}
-
- fetch-blob@3.2.0:
- dependencies:
- node-domexception: 1.0.0
- web-streams-polyfill: 3.3.3
+ feelers@1.4.0:
+ dependencies:
+ '@bpmn-io/cm-theme': 0.1.0-alpha.2
+ '@bpmn-io/feel-lint': 1.4.0
+ '@codemirror/autocomplete': 6.18.7
+ '@codemirror/commands': 6.8.1
+ '@codemirror/language': 6.11.3
+ '@codemirror/lint': 6.8.5
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.2
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
+ '@lezer/markdown': 1.4.3
+ feelin: 3.2.0
+ lezer-feel: 1.8.1
+ min-dom: 5.1.1
+
+ feelin@3.2.0:
+ dependencies:
+ '@lezer/lr': 1.4.2
+ lezer-feel: 1.8.1
+ luxon: 3.7.2
figures@6.1.0:
dependencies:
@@ -17845,8 +17646,6 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
- filter-obj@6.1.0: {}
-
find-up-simple@1.0.1: {}
find-up@4.1.0:
@@ -17874,9 +17673,9 @@ snapshots:
fix-dts-default-cjs-exports@1.0.1:
dependencies:
- magic-string: 0.30.17
- mlly: 1.7.4
- rollup: 4.46.3
+ magic-string: 0.30.19
+ mlly: 1.8.0
+ rollup: 4.50.1
flat-cache@4.0.1:
dependencies:
@@ -17892,12 +17691,10 @@ snapshots:
dependencies:
cacheable: 1.10.4
flatted: 3.3.3
- hookified: 1.11.0
+ hookified: 1.12.0
flatted@3.3.3: {}
- fn.name@1.1.0: {}
-
focus-trap@7.6.5:
dependencies:
tabbable: 6.2.0
@@ -17921,10 +17718,6 @@ snapshots:
hasown: 2.0.2
mime-types: 2.1.35
- formdata-polyfill@4.0.10:
- dependencies:
- fetch-blob: 3.2.0
-
fraction.js@4.3.7: {}
framesync@6.1.2:
@@ -17993,14 +17786,9 @@ snapshots:
gensync@1.0.0-beta.2: {}
- get-amd-module-type@6.0.1:
- dependencies:
- ast-module-types: 6.0.1
- node-source-walk: 7.0.1
-
get-caller-file@2.0.5: {}
- get-east-asian-width@1.3.0: {}
+ get-east-asian-width@1.3.1: {}
get-intrinsic@1.3.0:
dependencies:
@@ -18026,10 +17814,6 @@ snapshots:
dunder-proto: 1.0.1
es-object-atoms: 1.1.1
- get-stream@5.2.0:
- dependencies:
- pump: 3.0.3
-
get-stream@8.0.1: {}
get-stream@9.0.1:
@@ -18158,10 +17942,6 @@ snapshots:
globrex@0.1.2: {}
- gonzales-pe@4.3.0:
- dependencies:
- minimist: 1.2.8
-
good-listener@1.2.2:
dependencies:
delegate: 3.2.0
@@ -18198,11 +17978,13 @@ snapshots:
defu: 6.1.4
destr: 2.0.5
iron-webcrypto: 1.2.1
- node-mock-http: 1.0.2
+ node-mock-http: 1.0.3
radix3: 1.1.2
ufo: 1.6.1
uncrypto: 0.1.3
+ hammerjs@2.0.8: {}
+
happy-dom@17.6.3:
dependencies:
webidl-conversions: 7.0.0
@@ -18262,11 +18044,9 @@ snapshots:
hookable@5.5.3: {}
- hookified@1.11.0: {}
+ hookified@1.12.0: {}
- hosted-git-info@7.0.2:
- dependencies:
- lru-cache: 10.4.3
+ htm@3.1.1: {}
html-minifier-terser@6.1.0:
dependencies:
@@ -18276,7 +18056,7 @@ snapshots:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.43.1
+ terser: 5.44.0
html-minifier-terser@7.2.0:
dependencies:
@@ -18286,7 +18066,7 @@ snapshots:
entities: 4.5.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.43.1
+ terser: 5.44.0
html-tags@3.3.1: {}
@@ -18358,6 +18138,8 @@ snapshots:
idb@7.1.1: {}
+ ids@1.0.5: {}
+
ieee754@1.2.1: {}
ignore@5.3.2: {}
@@ -18376,7 +18158,7 @@ snapshots:
import-lazy@4.0.0: {}
- import-meta-resolve@4.1.0: {}
+ import-meta-resolve@4.2.0: {}
imurmurhash@0.1.4: {}
@@ -18384,8 +18166,6 @@ snapshots:
indent-string@5.0.0: {}
- index-to-position@1.1.0: {}
-
infer-owner@1.0.4: {}
inflight@1.0.6:
@@ -18393,6 +18173,8 @@ snapshots:
once: 1.4.0
wrappy: 1.0.2
+ inherits-browser@0.1.0: {}
+
inherits@2.0.4: {}
ini@1.3.8: {}
@@ -18409,7 +18191,7 @@ snapshots:
ioredis@5.7.0:
dependencies:
- '@ioredis/commands': 1.3.0
+ '@ioredis/commands': 1.3.1
cluster-key-slot: 1.1.2
debug: 4.4.1
denque: 2.1.0
@@ -18433,8 +18215,6 @@ snapshots:
is-arrayish@0.2.1: {}
- is-arrayish@0.3.2: {}
-
is-async-function@2.1.1:
dependencies:
async-function: 1.0.0
@@ -18458,10 +18238,6 @@ snapshots:
is-buffer@2.0.5: {}
- is-builtin-module@3.2.1:
- dependencies:
- builtin-modules: 3.3.0
-
is-builtin-module@5.0.0:
dependencies:
builtin-modules: 5.0.0
@@ -18503,9 +18279,9 @@ snapshots:
is-fullwidth-code-point@4.0.0: {}
- is-fullwidth-code-point@5.0.0:
+ is-fullwidth-code-point@5.1.0:
dependencies:
- get-east-asian-width: 1.3.0
+ get-east-asian-width: 1.3.1
is-generator-function@1.1.0:
dependencies:
@@ -18554,8 +18330,6 @@ snapshots:
is-path-inside@4.0.0: {}
- is-plain-obj@2.1.0: {}
-
is-plain-obj@4.1.0: {}
is-plain-object@3.0.1: {}
@@ -18618,10 +18392,6 @@ snapshots:
is-unicode-supported@2.1.0: {}
- is-url-superb@4.0.0: {}
-
- is-url@1.2.4: {}
-
is-weakmap@2.0.2: {}
is-weakref@1.1.1:
@@ -18764,8 +18534,6 @@ snapshots:
ms: 2.1.3
semver: 7.7.2
- junk@4.0.1: {}
-
jwa@1.4.2:
dependencies:
buffer-equal-constant-time: 1.0.1
@@ -18777,8 +18545,6 @@ snapshots:
jwa: 1.4.2
safe-buffer: 5.2.1
- jwt-decode@4.0.0: {}
-
katex@0.16.22:
dependencies:
commander: 8.3.0
@@ -18805,15 +18571,7 @@ snapshots:
kolorist@1.8.0: {}
- kuler@2.0.0: {}
-
- ky@1.8.2: {}
-
- lambda-local@2.2.0:
- dependencies:
- commander: 10.0.1
- dotenv: 16.6.1
- winston: 3.17.0
+ ky@1.10.0: {}
latest-version@9.0.0:
dependencies:
@@ -18823,48 +18581,48 @@ snapshots:
dependencies:
readable-stream: 2.3.8
- lefthook-darwin-arm64@1.12.3:
+ lefthook-darwin-arm64@1.12.4:
optional: true
- lefthook-darwin-x64@1.12.3:
+ lefthook-darwin-x64@1.12.4:
optional: true
- lefthook-freebsd-arm64@1.12.3:
+ lefthook-freebsd-arm64@1.12.4:
optional: true
- lefthook-freebsd-x64@1.12.3:
+ lefthook-freebsd-x64@1.12.4:
optional: true
- lefthook-linux-arm64@1.12.3:
+ lefthook-linux-arm64@1.12.4:
optional: true
- lefthook-linux-x64@1.12.3:
+ lefthook-linux-x64@1.12.4:
optional: true
- lefthook-openbsd-arm64@1.12.3:
+ lefthook-openbsd-arm64@1.12.4:
optional: true
- lefthook-openbsd-x64@1.12.3:
+ lefthook-openbsd-x64@1.12.4:
optional: true
- lefthook-windows-arm64@1.12.3:
+ lefthook-windows-arm64@1.12.4:
optional: true
- lefthook-windows-x64@1.12.3:
+ lefthook-windows-x64@1.12.4:
optional: true
- lefthook@1.12.3:
+ lefthook@1.12.4:
optionalDependencies:
- lefthook-darwin-arm64: 1.12.3
- lefthook-darwin-x64: 1.12.3
- lefthook-freebsd-arm64: 1.12.3
- lefthook-freebsd-x64: 1.12.3
- lefthook-linux-arm64: 1.12.3
- lefthook-linux-x64: 1.12.3
- lefthook-openbsd-arm64: 1.12.3
- lefthook-openbsd-x64: 1.12.3
- lefthook-windows-arm64: 1.12.3
- lefthook-windows-x64: 1.12.3
+ lefthook-darwin-arm64: 1.12.4
+ lefthook-darwin-x64: 1.12.4
+ lefthook-freebsd-arm64: 1.12.4
+ lefthook-freebsd-x64: 1.12.4
+ lefthook-linux-arm64: 1.12.4
+ lefthook-linux-x64: 1.12.4
+ lefthook-openbsd-arm64: 1.12.4
+ lefthook-openbsd-x64: 1.12.4
+ lefthook-windows-arm64: 1.12.4
+ lefthook-windows-x64: 1.12.4
less@4.4.1:
dependencies:
@@ -18887,6 +18645,12 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ lezer-feel@1.8.1:
+ dependencies:
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
+ min-dash: 4.2.3
+
lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
@@ -18908,7 +18672,7 @@ snapshots:
h3: 1.15.4
http-shutdown: 1.2.2
jiti: 2.5.1
- mlly: 1.7.4
+ mlly: 1.8.0
node-forge: 1.3.1
pathe: 1.1.2
std-env: 3.9.0
@@ -18925,10 +18689,10 @@ snapshots:
rfdc: 1.4.1
wrap-ansi: 9.0.0
- local-pkg@1.1.1:
+ local-pkg@1.1.2:
dependencies:
- mlly: 1.7.4
- pkg-types: 2.2.0
+ mlly: 1.8.0
+ pkg-types: 2.3.0
quansync: 0.2.11
locate-character@3.0.0: {}
@@ -19020,20 +18784,11 @@ snapshots:
strip-ansi: 7.1.0
wrap-ansi: 9.0.0
- logform@2.7.0:
- dependencies:
- '@colors/colors': 1.6.0
- '@types/triple-beam': 1.3.5
- fecha: 4.2.3
- ms: 2.1.3
- safe-stable-stringify: 2.5.0
- triple-beam: 1.4.1
-
loose-envify@1.4.0:
dependencies:
js-tokens: 4.0.0
- loupe@3.2.0: {}
+ loupe@3.2.1: {}
lower-case@2.0.2:
dependencies:
@@ -19041,7 +18796,7 @@ snapshots:
lru-cache@10.4.3: {}
- lru-cache@11.1.0: {}
+ lru-cache@11.2.1: {}
lru-cache@5.1.1:
dependencies:
@@ -19051,11 +18806,11 @@ snapshots:
dependencies:
yallist: 4.0.0
- lucide-vue-next@0.507.0(vue@3.5.18(typescript@5.9.2)):
+ lucide-vue-next@0.507.0(vue@3.5.21(typescript@5.9.2)):
dependencies:
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- luxon@3.7.1: {}
+ luxon@3.7.2: {}
lz-string@1.5.0: {}
@@ -19063,14 +18818,14 @@ snapshots:
dependencies:
sourcemap-codec: 1.4.8
- magic-string@0.30.17:
+ magic-string@0.30.19:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/parser': 7.28.4
+ '@babel/types': 7.28.4
source-map-js: 1.2.1
make-dir@2.1.0:
@@ -19113,19 +18868,19 @@ snapshots:
markmap-common@0.16.0:
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@gera2ld/jsx-dom': 2.2.2
npm2url: 0.2.4
markmap-html-parser@0.16.1(markmap-common@0.16.0):
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
cheerio: 1.0.0-rc.12
markmap-common: 0.16.0
markmap-lib@0.16.1(markmap-common@0.16.0):
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
highlight.js: 11.11.1
js-yaml: 4.1.0
katex: 0.16.22
@@ -19138,13 +18893,13 @@ snapshots:
markmap-toolbar@0.17.2(markmap-common@0.16.0):
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@gera2ld/jsx-dom': 2.2.2
markmap-common: 0.16.0
markmap-view@0.16.0(markmap-common@0.16.0):
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@gera2ld/jsx-dom': 2.2.2
'@types/d3': 7.4.3
d3: 7.9.0
@@ -19183,16 +18938,10 @@ snapshots:
meow@13.2.0: {}
- merge-options@3.0.4:
- dependencies:
- is-plain-obj: 2.1.0
-
merge-stream@2.0.0: {}
merge2@1.4.1: {}
- micro-api-client@3.3.0: {}
-
micromark-util-character@2.1.1:
dependencies:
micromark-util-symbol: 2.0.1
@@ -19238,6 +18987,19 @@ snapshots:
mimic-function@5.0.1: {}
+ min-dash@4.2.3: {}
+
+ min-dom@4.2.1:
+ dependencies:
+ component-event: 0.2.1
+ domify: 1.4.2
+ min-dash: 4.2.3
+
+ min-dom@5.1.1:
+ dependencies:
+ domify: 2.0.0
+ min-dash: 4.2.3
+
min-indent@1.0.1: {}
minimatch@10.0.3:
@@ -19315,38 +19077,43 @@ snapshots:
mkdirp@3.0.1: {}
- mkdist@2.3.0(sass@1.90.0)(typescript@5.9.2)(vue-tsc@2.2.10(typescript@5.9.2))(vue@3.5.18(typescript@5.9.2)):
+ mkdist@2.3.0(sass@1.92.1)(typescript@5.9.2)(vue-tsc@2.2.10(typescript@5.9.2))(vue@3.5.21(typescript@5.9.2)):
dependencies:
autoprefixer: 10.4.21(postcss@8.5.6)
citty: 0.1.6
- cssnano: 7.1.0(postcss@8.5.6)
+ cssnano: 7.1.1(postcss@8.5.6)
defu: 6.1.4
esbuild: 0.25.3
jiti: 1.21.7
- mlly: 1.7.4
+ mlly: 1.8.0
pathe: 2.0.3
- pkg-types: 2.2.0
+ pkg-types: 2.3.0
postcss: 8.5.6
postcss-nested: 7.0.2(postcss@8.5.6)
semver: 7.7.2
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
optionalDependencies:
- sass: 1.90.0
+ sass: 1.92.1
typescript: 5.9.2
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
vue-tsc: 2.2.10(typescript@5.9.2)
- mlly@1.7.4:
+ mlly@1.8.0:
dependencies:
acorn: 8.15.0
pathe: 2.0.3
pkg-types: 1.3.1
ufo: 1.6.1
- module-definition@6.0.1:
+ moddle-xml@10.1.0:
+ dependencies:
+ min-dash: 4.2.3
+ moddle: 6.2.3
+ saxen: 8.1.2
+
+ moddle@6.2.3:
dependencies:
- ast-module-types: 6.0.1
- node-source-walk: 7.0.1
+ min-dash: 4.2.3
mri@1.2.0: {}
@@ -19370,10 +19137,10 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- naive-ui@2.42.0(vue@3.5.18(typescript@5.9.2)):
+ naive-ui@2.42.0(vue@3.5.21(typescript@5.9.2)):
dependencies:
'@css-render/plugin-bem': 0.15.14(css-render@0.15.14)
- '@css-render/vue3-ssr': 0.15.14(vue@3.5.18(typescript@5.9.2))
+ '@css-render/vue3-ssr': 0.15.14(vue@3.5.21(typescript@5.9.2))
'@types/katex': 0.16.7
'@types/lodash': 4.17.20
'@types/lodash-es': 4.17.12
@@ -19388,10 +19155,10 @@ snapshots:
lodash-es: 4.17.21
seemly: 0.3.10
treemate: 0.3.11
- vdirs: 0.1.8(vue@3.5.18(typescript@5.9.2))
- vooks: 0.2.12(vue@3.5.18(typescript@5.9.2))
- vue: 3.5.18(typescript@5.9.2)
- vueuc: 0.4.64(vue@3.5.18(typescript@5.9.2))
+ vdirs: 0.1.8(vue@3.5.21(typescript@5.9.2))
+ vooks: 0.2.12(vue@3.5.21(typescript@5.9.2))
+ vue: 3.5.21(typescript@5.9.2)
+ vueuc: 0.4.64(vue@3.5.21(typescript@5.9.2))
nanoid@3.3.11: {}
@@ -19411,27 +19178,17 @@ snapshots:
sax: 1.4.1
optional: true
- netlify@13.3.5:
- dependencies:
- '@netlify/open-api': 2.37.0
- lodash-es: 4.17.21
- micro-api-client: 3.3.0
- node-fetch: 3.3.2
- p-wait-for: 5.0.2
- qs: 6.14.0
-
- nitropack@2.12.4(@netlify/blobs@9.1.2)(encoding@0.1.13):
+ nitropack@2.12.5(encoding@0.1.13):
dependencies:
'@cloudflare/kv-asset-handler': 0.4.0
- '@netlify/functions': 3.1.10(encoding@0.1.13)(rollup@4.46.3)
- '@rollup/plugin-alias': 5.1.1(rollup@4.46.3)
- '@rollup/plugin-commonjs': 28.0.6(rollup@4.46.3)
- '@rollup/plugin-inject': 5.0.5(rollup@4.46.3)
- '@rollup/plugin-json': 6.1.0(rollup@4.46.3)
- '@rollup/plugin-node-resolve': 16.0.1(rollup@4.46.3)
- '@rollup/plugin-replace': 6.0.2(rollup@4.46.3)
- '@rollup/plugin-terser': 0.4.4(rollup@4.46.3)
- '@vercel/nft': 0.29.4(encoding@0.1.13)(rollup@4.46.3)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.50.1)
+ '@rollup/plugin-commonjs': 28.0.6(rollup@4.50.1)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.50.1)
+ '@rollup/plugin-json': 6.1.0(rollup@4.50.1)
+ '@rollup/plugin-node-resolve': 16.0.1(rollup@4.50.1)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.50.1)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.50.1)
+ '@vercel/nft': 0.30.1(encoding@0.1.13)(rollup@4.50.1)
archiver: 7.0.1
c12: 3.2.0(magicast@0.3.5)
chokidar: 4.0.3
@@ -19460,21 +19217,21 @@ snapshots:
klona: 2.0.6
knitwork: 1.2.0
listhen: 1.9.0
- magic-string: 0.30.17
+ magic-string: 0.30.19
magicast: 0.3.5
mime: 4.0.7
- mlly: 1.7.4
+ mlly: 1.8.0
node-fetch-native: 1.6.7
- node-mock-http: 1.0.2
+ node-mock-http: 1.0.3
ofetch: 1.4.1
ohash: 2.0.11
pathe: 2.0.3
- perfect-debounce: 1.0.0
- pkg-types: 2.2.0
- pretty-bytes: 6.1.1
+ perfect-debounce: 2.0.0
+ pkg-types: 2.3.0
+ pretty-bytes: 7.0.1
radix3: 1.1.2
- rollup: 4.46.3
- rollup-plugin-visualizer: 6.0.3(rollup@4.46.3)
+ rollup: 4.50.1
+ rollup-plugin-visualizer: 6.0.3(rollup@4.50.1)
scule: 1.3.0
semver: 7.7.2
serve-placeholder: 2.0.2
@@ -19485,10 +19242,10 @@ snapshots:
ultrahtml: 1.6.0
uncrypto: 0.1.3
unctx: 2.4.1
- unenv: 2.0.0-rc.19
+ unenv: 2.0.0-rc.20
unimport: 5.2.0
- unplugin-utils: 0.2.5
- unstorage: 1.16.1(@netlify/blobs@9.1.2)(db0@0.3.2)(ioredis@5.7.0)
+ unplugin-utils: 0.3.0
+ unstorage: 1.17.1(db0@0.3.2)(ioredis@5.7.0)
untyped: 2.0.0
unwasm: 0.3.11
youch: 4.1.0-beta.8
@@ -19508,6 +19265,7 @@ snapshots:
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/blob'
+ - '@vercel/functions'
- '@vercel/kv'
- aws4fetch
- better-sqlite3
@@ -19529,8 +19287,6 @@ snapshots:
node-cleanup@2.1.2: {}
- node-domexception@1.0.0: {}
-
node-fetch-native@1.6.7: {}
node-fetch@2.7.0(encoding@0.1.13):
@@ -19539,12 +19295,6 @@ snapshots:
optionalDependencies:
encoding: 0.1.13
- node-fetch@3.3.2:
- dependencies:
- data-uri-to-buffer: 4.0.1
- fetch-blob: 3.2.0
- formdata-polyfill: 4.0.10
-
node-forge@1.3.1: {}
node-gyp-build@4.8.4: {}
@@ -19554,13 +19304,9 @@ snapshots:
css-select: 4.3.0
he: 1.2.0
- node-mock-http@1.0.2: {}
-
- node-releases@2.0.19: {}
+ node-mock-http@1.0.3: {}
- node-source-walk@7.0.1:
- dependencies:
- '@babel/parser': 7.28.3
+ node-releases@2.0.20: {}
nopt@7.2.1:
dependencies:
@@ -19570,16 +19316,6 @@ snapshots:
dependencies:
abbrev: 3.0.1
- normalize-package-data@6.0.2:
- dependencies:
- hosted-git-info: 7.0.2
- semver: 7.7.2
- validate-npm-package-license: 3.0.4
-
- normalize-path@2.1.1:
- dependencies:
- remove-trailing-separator: 1.1.0
-
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
@@ -19608,7 +19344,7 @@ snapshots:
citty: 0.1.6
consola: 3.4.2
pathe: 2.0.3
- pkg-types: 2.2.0
+ pkg-types: 2.3.0
tinyexec: 1.0.1
object-assign@4.1.1: {}
@@ -19619,6 +19355,10 @@ snapshots:
object-keys@1.1.1: {}
+ object-refs@0.3.0: {}
+
+ object-refs@0.4.0: {}
+
object.assign@4.1.7:
dependencies:
call-bind: 1.0.8
@@ -19644,10 +19384,6 @@ snapshots:
dependencies:
wrappy: 1.0.2
- one-time@1.0.0:
- dependencies:
- fn.name: 1.1.0
-
onetime@6.0.0:
dependencies:
mimic-fn: 4.0.0
@@ -19704,10 +19440,6 @@ snapshots:
object-keys: 1.1.1
safe-push-apply: 1.0.0
- p-event@6.0.1:
- dependencies:
- p-timeout: 6.1.4
-
p-filter@2.1.0:
dependencies:
p-map: 2.1.0
@@ -19742,21 +19474,13 @@ snapshots:
dependencies:
aggregate-error: 3.1.0
- p-map@7.0.3: {}
-
- p-timeout@6.1.4: {}
-
p-try@2.2.0: {}
- p-wait-for@5.0.2:
- dependencies:
- p-timeout: 6.1.4
-
package-json-from-dist@1.0.1: {}
package-json@10.0.1:
dependencies:
- ky: 1.8.2
+ ky: 1.10.0
registry-auth-token: 5.1.0
registry-url: 6.0.1
semver: 7.7.2
@@ -19782,8 +19506,6 @@ snapshots:
dependencies:
callsites: 3.1.0
- parse-gitignore@2.0.0: {}
-
parse-imports-exports@0.2.4:
dependencies:
parse-statements: 1.0.11
@@ -19795,12 +19517,6 @@ snapshots:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- parse-json@8.3.0:
- dependencies:
- '@babel/code-frame': 7.27.1
- index-to-position: 1.1.0
- type-fest: 4.41.0
-
parse-ms@4.0.0: {}
parse-node-version@1.0.1: {}
@@ -19835,6 +19551,10 @@ snapshots:
path-exists@5.0.0: {}
+ path-intersection@2.2.1: {}
+
+ path-intersection@3.1.0: {}
+
path-is-absolute@1.0.1: {}
path-key@3.1.1: {}
@@ -19850,7 +19570,7 @@ snapshots:
path-scurry@2.0.0:
dependencies:
- lru-cache: 11.1.0
+ lru-cache: 11.2.1
minipass: 7.1.2
path-type@4.0.0: {}
@@ -19865,10 +19585,10 @@ snapshots:
pathval@2.0.1: {}
- pend@1.2.0: {}
-
perfect-debounce@1.0.0: {}
+ perfect-debounce@2.0.0: {}
+
picocolors@1.1.1: {}
picomatch@2.3.1: {}
@@ -19879,19 +19599,19 @@ snapshots:
pify@4.0.1: {}
- pinia-plugin-persistedstate@4.5.0(@nuxt/kit@3.18.1(magicast@0.3.5))(pinia@3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))):
+ pinia-plugin-persistedstate@4.5.0(@nuxt/kit@3.19.1(magicast@0.3.5))(pinia@3.0.3(typescript@5.9.2)(vue@3.5.21(typescript@5.9.2))):
dependencies:
deep-pick-omit: 1.2.1
defu: 6.1.4
destr: 2.0.5
optionalDependencies:
- '@nuxt/kit': 3.18.1(magicast@0.3.5)
- pinia: 3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
+ '@nuxt/kit': 3.19.1(magicast@0.3.5)
+ pinia: 3.0.3(typescript@5.9.2)(vue@3.5.21(typescript@5.9.2))
- pinia@3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2)):
+ pinia@3.0.3(typescript@5.9.2)(vue@3.5.21(typescript@5.9.2)):
dependencies:
'@vue/devtools-api': 7.7.7
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
optionalDependencies:
typescript: 5.9.2
@@ -19900,20 +19620,20 @@ snapshots:
pkg-types@1.3.1:
dependencies:
confbox: 0.1.8
- mlly: 1.7.4
+ mlly: 1.8.0
pathe: 2.0.3
- pkg-types@2.2.0:
+ pkg-types@2.3.0:
dependencies:
confbox: 0.2.2
exsolve: 1.0.7
pathe: 2.0.3
- playwright-core@1.54.2: {}
+ playwright-core@1.55.0: {}
- playwright@1.54.2:
+ playwright@1.55.0:
dependencies:
- playwright-core: 1.54.2
+ playwright-core: 1.55.0
optionalDependencies:
fsevents: 2.3.2
@@ -19954,12 +19674,12 @@ snapshots:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-color-functional-notation@7.0.10(postcss@8.5.6):
+ postcss-color-functional-notation@7.0.11(postcss@8.5.6):
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
@@ -19977,15 +19697,15 @@ snapshots:
postcss-colormin@7.0.4(postcss@8.5.6):
dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-convert-values@7.0.6(postcss@8.5.6):
+ postcss-convert-values@7.0.7(postcss@8.5.6):
dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -20036,9 +19756,9 @@ snapshots:
dependencies:
postcss: 8.5.6
- postcss-double-position-gradients@6.0.2(postcss@8.5.6):
+ postcss-double-position-gradients@6.0.3(postcss@8.5.6):
dependencies:
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -20093,12 +19813,12 @@ snapshots:
camelcase-css: 2.0.1
postcss: 8.5.6
- postcss-lab-function@7.0.10(postcss@8.5.6):
+ postcss-lab-function@7.0.11(postcss@8.5.6):
dependencies:
- '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
@@ -20124,7 +19844,7 @@ snapshots:
postcss-merge-rules@7.0.6(postcss@8.5.6):
dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
caniuse-api: 3.0.0
cssnano-utils: 5.0.1(postcss@8.5.6)
postcss: 8.5.6
@@ -20144,7 +19864,7 @@ snapshots:
postcss-minify-params@7.0.4(postcss@8.5.6):
dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
cssnano-utils: 5.0.1(postcss@8.5.6)
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -20208,7 +19928,7 @@ snapshots:
postcss-normalize-unicode@7.0.4(postcss@8.5.6):
dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
postcss: 8.5.6
postcss-value-parser: 4.2.0
@@ -20246,22 +19966,24 @@ snapshots:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-preset-env@10.2.4(postcss@8.5.6):
+ postcss-preset-env@10.3.1(postcss@8.5.6):
dependencies:
+ '@csstools/postcss-alpha-function': 1.0.0(postcss@8.5.6)
'@csstools/postcss-cascade-layers': 5.0.2(postcss@8.5.6)
- '@csstools/postcss-color-function': 4.0.10(postcss@8.5.6)
- '@csstools/postcss-color-mix-function': 3.0.10(postcss@8.5.6)
- '@csstools/postcss-color-mix-variadic-function-arguments': 1.0.0(postcss@8.5.6)
- '@csstools/postcss-content-alt-text': 2.0.6(postcss@8.5.6)
+ '@csstools/postcss-color-function': 4.0.11(postcss@8.5.6)
+ '@csstools/postcss-color-function-display-p3-linear': 1.0.0(postcss@8.5.6)
+ '@csstools/postcss-color-mix-function': 3.0.11(postcss@8.5.6)
+ '@csstools/postcss-color-mix-variadic-function-arguments': 1.0.1(postcss@8.5.6)
+ '@csstools/postcss-content-alt-text': 2.0.7(postcss@8.5.6)
'@csstools/postcss-exponential-functions': 2.0.9(postcss@8.5.6)
'@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.5.6)
- '@csstools/postcss-gamut-mapping': 2.0.10(postcss@8.5.6)
- '@csstools/postcss-gradients-interpolation-method': 5.0.10(postcss@8.5.6)
- '@csstools/postcss-hwb-function': 4.0.10(postcss@8.5.6)
- '@csstools/postcss-ic-unit': 4.0.2(postcss@8.5.6)
+ '@csstools/postcss-gamut-mapping': 2.0.11(postcss@8.5.6)
+ '@csstools/postcss-gradients-interpolation-method': 5.0.11(postcss@8.5.6)
+ '@csstools/postcss-hwb-function': 4.0.11(postcss@8.5.6)
+ '@csstools/postcss-ic-unit': 4.0.3(postcss@8.5.6)
'@csstools/postcss-initial': 2.0.1(postcss@8.5.6)
'@csstools/postcss-is-pseudo-class': 5.0.3(postcss@8.5.6)
- '@csstools/postcss-light-dark-function': 2.0.9(postcss@8.5.6)
+ '@csstools/postcss-light-dark-function': 2.0.10(postcss@8.5.6)
'@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.5.6)
'@csstools/postcss-logical-overflow': 2.0.0(postcss@8.5.6)
'@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.5.6)
@@ -20271,39 +19993,39 @@ snapshots:
'@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.5(postcss@8.5.6)
'@csstools/postcss-nested-calc': 4.0.0(postcss@8.5.6)
'@csstools/postcss-normalize-display-values': 4.0.0(postcss@8.5.6)
- '@csstools/postcss-oklab-function': 4.0.10(postcss@8.5.6)
- '@csstools/postcss-progressive-custom-properties': 4.1.0(postcss@8.5.6)
+ '@csstools/postcss-oklab-function': 4.0.11(postcss@8.5.6)
+ '@csstools/postcss-progressive-custom-properties': 4.2.0(postcss@8.5.6)
'@csstools/postcss-random-function': 2.0.1(postcss@8.5.6)
- '@csstools/postcss-relative-color-syntax': 3.0.10(postcss@8.5.6)
+ '@csstools/postcss-relative-color-syntax': 3.0.11(postcss@8.5.6)
'@csstools/postcss-scope-pseudo-class': 4.0.1(postcss@8.5.6)
'@csstools/postcss-sign-functions': 1.1.4(postcss@8.5.6)
'@csstools/postcss-stepped-value-functions': 4.0.9(postcss@8.5.6)
- '@csstools/postcss-text-decoration-shorthand': 4.0.2(postcss@8.5.6)
+ '@csstools/postcss-text-decoration-shorthand': 4.0.3(postcss@8.5.6)
'@csstools/postcss-trigonometric-functions': 4.0.9(postcss@8.5.6)
'@csstools/postcss-unset-value': 4.0.0(postcss@8.5.6)
autoprefixer: 10.4.21(postcss@8.5.6)
- browserslist: 4.25.3
+ browserslist: 4.25.4
css-blank-pseudo: 7.0.1(postcss@8.5.6)
- css-has-pseudo: 7.0.2(postcss@8.5.6)
+ css-has-pseudo: 7.0.3(postcss@8.5.6)
css-prefers-color-scheme: 10.0.0(postcss@8.5.6)
- cssdb: 8.3.1
+ cssdb: 8.4.0
postcss: 8.5.6
postcss-attribute-case-insensitive: 7.0.1(postcss@8.5.6)
postcss-clamp: 4.1.0(postcss@8.5.6)
- postcss-color-functional-notation: 7.0.10(postcss@8.5.6)
+ postcss-color-functional-notation: 7.0.11(postcss@8.5.6)
postcss-color-hex-alpha: 10.0.0(postcss@8.5.6)
postcss-color-rebeccapurple: 10.0.0(postcss@8.5.6)
postcss-custom-media: 11.0.6(postcss@8.5.6)
postcss-custom-properties: 14.0.6(postcss@8.5.6)
postcss-custom-selectors: 8.0.5(postcss@8.5.6)
postcss-dir-pseudo-class: 9.0.1(postcss@8.5.6)
- postcss-double-position-gradients: 6.0.2(postcss@8.5.6)
+ postcss-double-position-gradients: 6.0.3(postcss@8.5.6)
postcss-focus-visible: 10.0.1(postcss@8.5.6)
postcss-focus-within: 9.0.1(postcss@8.5.6)
postcss-font-variant: 5.0.0(postcss@8.5.6)
postcss-gap-properties: 6.0.0(postcss@8.5.6)
postcss-image-set-function: 7.0.0(postcss@8.5.6)
- postcss-lab-function: 7.0.10(postcss@8.5.6)
+ postcss-lab-function: 7.0.11(postcss@8.5.6)
postcss-logical: 8.1.0(postcss@8.5.6)
postcss-nesting: 13.0.2(postcss@8.5.6)
postcss-opacity-percentage: 3.0.0(postcss@8.5.6)
@@ -20321,7 +20043,7 @@ snapshots:
postcss-reduce-initial@7.0.4(postcss@8.5.6):
dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
caniuse-api: 3.0.0
postcss: 8.5.6
@@ -20389,13 +20111,6 @@ snapshots:
postcss-value-parser@4.2.0: {}
- postcss-values-parser@6.0.2(postcss@8.5.6):
- dependencies:
- color-name: 1.1.4
- is-url-superb: 4.0.0
- postcss: 8.5.6
- quote-unquote: 1.0.0
-
postcss@8.5.6:
dependencies:
nanoid: 3.3.11
@@ -20404,26 +20119,6 @@ snapshots:
preact@10.27.1: {}
- precinct@12.2.0:
- dependencies:
- '@dependents/detective-less': 5.0.1
- commander: 12.1.0
- detective-amd: 6.0.1
- detective-cjs: 6.0.1
- detective-es6: 5.0.1
- detective-postcss: 7.0.1(postcss@8.5.6)
- detective-sass: 6.0.1
- detective-scss: 5.0.1
- detective-stylus: 5.0.1
- detective-typescript: 14.0.0(typescript@5.9.2)
- detective-vue2: 2.2.0(typescript@5.9.2)
- module-definition: 6.0.1
- node-source-walk: 7.0.1
- postcss: 8.5.6
- typescript: 5.9.2
- transitivePeerDependencies:
- - supports-color
-
prelude-ls@1.2.1: {}
prettier-linter-helpers@1.0.0:
@@ -20477,11 +20172,6 @@ snapshots:
picocolors: 1.1.1
sade: 1.8.1
- pump@3.0.3:
- dependencies:
- end-of-stream: 1.4.5
- once: 1.4.0
-
punycode.js@2.3.1: {}
punycode@2.3.1: {}
@@ -20504,22 +20194,20 @@ snapshots:
queue-microtask@1.2.3: {}
- quote-unquote@1.0.0: {}
-
- radix-vue@1.9.17(vue@3.5.18(typescript@5.9.2)):
+ radix-vue@1.9.17(vue@3.5.21(typescript@5.9.2)):
dependencies:
- '@floating-ui/dom': 1.7.3
- '@floating-ui/vue': 1.1.8(vue@3.5.18(typescript@5.9.2))
- '@internationalized/date': 3.8.2
- '@internationalized/number': 3.6.4
- '@tanstack/vue-virtual': 3.13.12(vue@3.5.18(typescript@5.9.2))
- '@vueuse/core': 10.11.1(vue@3.5.18(typescript@5.9.2))
- '@vueuse/shared': 10.11.1(vue@3.5.18(typescript@5.9.2))
+ '@floating-ui/dom': 1.7.4
+ '@floating-ui/vue': 1.1.9(vue@3.5.21(typescript@5.9.2))
+ '@internationalized/date': 3.9.0
+ '@internationalized/number': 3.6.5
+ '@tanstack/vue-virtual': 3.13.12(vue@3.5.21(typescript@5.9.2))
+ '@vueuse/core': 10.11.1(vue@3.5.21(typescript@5.9.2))
+ '@vueuse/shared': 10.11.1(vue@3.5.21(typescript@5.9.2))
aria-hidden: 1.2.6
defu: 6.1.4
fast-deep-equal: 3.1.3
nanoid: 5.1.5
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
transitivePeerDependencies:
- '@vue/composition-api'
@@ -20529,6 +20217,8 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
+ randomcolor@0.6.2: {}
+
range-parser@1.2.1: {}
rc9@2.1.2:
@@ -20547,20 +20237,6 @@ snapshots:
dependencies:
pify: 2.3.0
- read-package-up@11.0.0:
- dependencies:
- find-up-simple: 1.0.1
- read-pkg: 9.0.1
- type-fest: 4.41.0
-
- read-pkg@9.0.1:
- dependencies:
- '@types/normalize-package-data': 2.4.4
- normalize-package-data: 6.0.2
- parse-json: 8.3.0
- type-fest: 4.41.0
- unicorn-magic: 0.1.0
-
read-yaml-file@1.1.0:
dependencies:
graceful-fs: 4.2.11
@@ -20583,12 +20259,6 @@ snapshots:
string_decoder: 1.1.1
util-deprecate: 1.0.2
- readable-stream@3.6.2:
- dependencies:
- inherits: 2.0.4
- string_decoder: 1.3.0
- util-deprecate: 1.0.2
-
readable-stream@4.7.0:
dependencies:
abort-controller: 3.0.0
@@ -20694,8 +20364,6 @@ snapshots:
remove-accents@0.5.0: {}
- remove-trailing-separator@1.1.0: {}
-
repeat-string@1.6.1: {}
require-directory@2.1.1: {}
@@ -20727,12 +20395,6 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- resolve@2.0.0-next.5:
- dependencies:
- is-core-module: 2.16.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
-
restore-cursor@5.1.0:
dependencies:
onetime: 7.0.0
@@ -20755,60 +20417,61 @@ snapshots:
robust-predicates@3.0.2: {}
- rollup-plugin-dts@6.2.3(rollup@4.46.3)(typescript@5.9.2):
+ rollup-plugin-dts@6.2.3(rollup@4.50.1)(typescript@5.9.2):
dependencies:
- magic-string: 0.30.17
- rollup: 4.46.3
+ magic-string: 0.30.19
+ rollup: 4.50.1
typescript: 5.9.2
optionalDependencies:
'@babel/code-frame': 7.27.1
- rollup-plugin-visualizer@5.14.0(rollup@4.46.3):
+ rollup-plugin-visualizer@5.14.0(rollup@4.50.1):
dependencies:
open: 8.4.2
picomatch: 4.0.3
source-map: 0.7.6
yargs: 17.7.2
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
- rollup-plugin-visualizer@6.0.3(rollup@4.46.3):
+ rollup-plugin-visualizer@6.0.3(rollup@4.50.1):
dependencies:
open: 8.4.2
picomatch: 4.0.3
source-map: 0.7.6
yargs: 17.7.2
optionalDependencies:
- rollup: 4.46.3
+ rollup: 4.50.1
rollup@2.79.2:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.46.3:
+ rollup@4.50.1:
dependencies:
'@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.46.3
- '@rollup/rollup-android-arm64': 4.46.3
- '@rollup/rollup-darwin-arm64': 4.46.3
- '@rollup/rollup-darwin-x64': 4.46.3
- '@rollup/rollup-freebsd-arm64': 4.46.3
- '@rollup/rollup-freebsd-x64': 4.46.3
- '@rollup/rollup-linux-arm-gnueabihf': 4.46.3
- '@rollup/rollup-linux-arm-musleabihf': 4.46.3
- '@rollup/rollup-linux-arm64-gnu': 4.46.3
- '@rollup/rollup-linux-arm64-musl': 4.46.3
- '@rollup/rollup-linux-loongarch64-gnu': 4.46.3
- '@rollup/rollup-linux-ppc64-gnu': 4.46.3
- '@rollup/rollup-linux-riscv64-gnu': 4.46.3
- '@rollup/rollup-linux-riscv64-musl': 4.46.3
- '@rollup/rollup-linux-s390x-gnu': 4.46.3
- '@rollup/rollup-linux-x64-gnu': 4.46.3
- '@rollup/rollup-linux-x64-musl': 4.46.3
- '@rollup/rollup-win32-arm64-msvc': 4.46.3
- '@rollup/rollup-win32-ia32-msvc': 4.46.3
- '@rollup/rollup-win32-x64-msvc': 4.46.3
+ '@rollup/rollup-android-arm-eabi': 4.50.1
+ '@rollup/rollup-android-arm64': 4.50.1
+ '@rollup/rollup-darwin-arm64': 4.50.1
+ '@rollup/rollup-darwin-x64': 4.50.1
+ '@rollup/rollup-freebsd-arm64': 4.50.1
+ '@rollup/rollup-freebsd-x64': 4.50.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.50.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.50.1
+ '@rollup/rollup-linux-arm64-gnu': 4.50.1
+ '@rollup/rollup-linux-arm64-musl': 4.50.1
+ '@rollup/rollup-linux-loongarch64-gnu': 4.50.1
+ '@rollup/rollup-linux-ppc64-gnu': 4.50.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.50.1
+ '@rollup/rollup-linux-riscv64-musl': 4.50.1
+ '@rollup/rollup-linux-s390x-gnu': 4.50.1
+ '@rollup/rollup-linux-x64-gnu': 4.50.1
+ '@rollup/rollup-linux-x64-musl': 4.50.1
+ '@rollup/rollup-openharmony-arm64': 4.50.1
+ '@rollup/rollup-win32-arm64-msvc': 4.50.1
+ '@rollup/rollup-win32-ia32-msvc': 4.50.1
+ '@rollup/rollup-win32-x64-msvc': 4.50.1
fsevents: 2.3.3
rotated-array-set@3.0.0: {}
@@ -20848,11 +20511,9 @@ snapshots:
es-errors: 1.3.0
is-regex: 1.2.1
- safe-stable-stringify@2.5.0: {}
-
safer-buffer@2.1.2: {}
- sass@1.90.0:
+ sass@1.92.1:
dependencies:
chokidar: 4.0.3
immutable: 5.1.3
@@ -20862,6 +20523,8 @@ snapshots:
sax@1.4.1: {}
+ saxen@8.1.2: {}
+
scroll-into-view-if-needed@2.2.31:
dependencies:
compute-scroll-into-view: 1.0.20
@@ -21020,13 +20683,9 @@ snapshots:
signature_pad@3.0.0-beta.4: {}
- signature_pad@5.0.10: {}
-
- simple-swizzle@0.2.2:
- dependencies:
- is-arrayish: 0.3.2
+ signature_pad@5.1.0: {}
- sirv@3.0.1:
+ sirv@3.0.2:
dependencies:
'@polka/url': 1.0.0-next.29
mrmime: 2.0.1
@@ -21052,7 +20711,7 @@ snapshots:
slice-ansi@7.1.0:
dependencies:
ansi-styles: 6.2.1
- is-fullwidth-code-point: 5.0.0
+ is-fullwidth-code-point: 5.1.0
smart-buffer@4.2.0: {}
@@ -21099,18 +20758,8 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- spdx-correct@3.2.0:
- dependencies:
- spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.22
-
spdx-exceptions@2.5.0: {}
- spdx-expression-parse@3.0.1:
- dependencies:
- spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.22
-
spdx-expression-parse@4.0.0:
dependencies:
spdx-exceptions: 2.5.0
@@ -21130,8 +20779,6 @@ snapshots:
stable-hash-x@0.2.0: {}
- stack-trace@0.0.10: {}
-
stackback@0.0.2: {}
standard-as-callback@2.1.0: {}
@@ -21144,6 +20791,8 @@ snapshots:
stdin-discarder@0.2.2: {}
+ steady-xml@0.1.0: {}
+
stop-iteration-iterator@1.1.0:
dependencies:
es-errors: 1.3.0
@@ -21172,8 +20821,8 @@ snapshots:
string-width@7.2.0:
dependencies:
- emoji-regex: 10.4.0
- get-east-asian-width: 1.3.0
+ emoji-regex: 10.5.0
+ get-east-asian-width: 1.3.1
strip-ansi: 7.1.0
string.prototype.matchall@4.0.12:
@@ -21266,8 +20915,12 @@ snapshots:
dependencies:
js-tokens: 9.0.1
+ strnum@1.1.2: {}
+
stubborn-fs@1.2.5: {}
+ style-mod@4.1.2: {}
+
style-search@0.1.0: {}
style-value-types@5.1.2:
@@ -21277,69 +20930,69 @@ snapshots:
stylehacks@7.0.6(postcss@8.5.6):
dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
postcss: 8.5.6
postcss-selector-parser: 7.1.0
- stylelint-config-html@1.1.0(postcss-html@1.8.0)(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-config-html@1.1.0(postcss-html@1.8.0)(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
postcss-html: 1.8.0
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.24.0(typescript@5.9.2)
- stylelint-config-recess-order@6.1.0(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-config-recess-order@6.1.0(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
- stylelint: 16.23.1(typescript@5.9.2)
- stylelint-order: 6.0.4(stylelint@16.23.1(typescript@5.9.2))
+ stylelint: 16.24.0(typescript@5.9.2)
+ stylelint-order: 6.0.4(stylelint@16.24.0(typescript@5.9.2))
- stylelint-config-recommended-scss@14.1.0(postcss@8.5.6)(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-config-recommended-scss@14.1.0(postcss@8.5.6)(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
postcss-scss: 4.0.9(postcss@8.5.6)
- stylelint: 16.23.1(typescript@5.9.2)
- stylelint-config-recommended: 14.0.1(stylelint@16.23.1(typescript@5.9.2))
- stylelint-scss: 6.12.1(stylelint@16.23.1(typescript@5.9.2))
+ stylelint: 16.24.0(typescript@5.9.2)
+ stylelint-config-recommended: 14.0.1(stylelint@16.24.0(typescript@5.9.2))
+ stylelint-scss: 6.12.1(stylelint@16.24.0(typescript@5.9.2))
optionalDependencies:
postcss: 8.5.6
- stylelint-config-recommended-vue@1.6.1(postcss-html@1.8.0)(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-config-recommended-vue@1.6.1(postcss-html@1.8.0)(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
postcss-html: 1.8.0
semver: 7.7.2
- stylelint: 16.23.1(typescript@5.9.2)
- stylelint-config-html: 1.1.0(postcss-html@1.8.0)(stylelint@16.23.1(typescript@5.9.2))
- stylelint-config-recommended: 16.0.0(stylelint@16.23.1(typescript@5.9.2))
+ stylelint: 16.24.0(typescript@5.9.2)
+ stylelint-config-html: 1.1.0(postcss-html@1.8.0)(stylelint@16.24.0(typescript@5.9.2))
+ stylelint-config-recommended: 16.0.0(stylelint@16.24.0(typescript@5.9.2))
- stylelint-config-recommended@14.0.1(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-config-recommended@14.0.1(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.24.0(typescript@5.9.2)
- stylelint-config-recommended@16.0.0(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-config-recommended@16.0.0(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.24.0(typescript@5.9.2)
- stylelint-config-standard@38.0.0(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-config-standard@38.0.0(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
- stylelint: 16.23.1(typescript@5.9.2)
- stylelint-config-recommended: 16.0.0(stylelint@16.23.1(typescript@5.9.2))
+ stylelint: 16.24.0(typescript@5.9.2)
+ stylelint-config-recommended: 16.0.0(stylelint@16.24.0(typescript@5.9.2))
- stylelint-order@6.0.4(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-order@6.0.4(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
postcss: 8.5.6
postcss-sorting: 8.0.2(postcss@8.5.6)
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.24.0(typescript@5.9.2)
- stylelint-order@7.0.0(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-order@7.0.0(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
postcss: 8.5.6
postcss-sorting: 9.1.0(postcss@8.5.6)
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.24.0(typescript@5.9.2)
- stylelint-prettier@5.0.3(prettier@3.6.2)(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-prettier@5.0.3(prettier@3.6.2)(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
prettier: 3.6.2
prettier-linter-helpers: 1.0.0
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.24.0(typescript@5.9.2)
- stylelint-scss@6.12.1(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-scss@6.12.1(stylelint@16.24.0(typescript@5.9.2)):
dependencies:
css-tree: 3.1.0
is-plain-object: 5.0.0
@@ -21349,15 +21002,15 @@ snapshots:
postcss-resolve-nested-selector: 0.1.6
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.24.0(typescript@5.9.2)
- stylelint@16.23.1(typescript@5.9.2):
+ stylelint@16.24.0(typescript@5.9.2):
dependencies:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
'@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
'@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0)
- '@dual-bundle/import-meta-resolve': 4.1.0
+ '@dual-bundle/import-meta-resolve': 4.2.1
balanced-match: 2.0.0
colord: 2.9.3
cosmiconfig: 9.0.0(typescript@5.9.2)
@@ -21428,7 +21081,7 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svelte@5.38.6:
+ svelte@5.38.7:
dependencies:
'@jridgewell/remapping': 2.3.5
'@jridgewell/sourcemap-codec': 1.5.5
@@ -21442,7 +21095,7 @@ snapshots:
esrap: 2.1.0
is-reference: 3.0.3
locate-character: 3.0.0
- magic-string: 0.30.17
+ magic-string: 0.30.19
zimmerframe: 1.1.2
sver@1.8.4:
@@ -21510,7 +21163,7 @@ snapshots:
transitivePeerDependencies:
- ts-node
- tapable@2.2.2: {}
+ tapable@2.2.3: {}
tar-stream@3.1.7:
dependencies:
@@ -21547,7 +21200,7 @@ snapshots:
term-size@2.2.1: {}
- terser@5.43.1:
+ terser@5.44.0:
dependencies:
'@jridgewell/source-map': 0.3.11
acorn: 8.15.0
@@ -21560,8 +21213,6 @@ snapshots:
text-extensions@2.4.0: {}
- text-hex@1.0.0: {}
-
theme-colors@0.1.0: {}
thenify-all@1.6.0:
@@ -21578,13 +21229,15 @@ snapshots:
tiny-emitter@2.1.0: {}
+ tiny-svg@3.1.3: {}
+
tinybench@2.9.0: {}
tinyexec@0.3.2: {}
tinyexec@1.0.1: {}
- tinyglobby@0.2.14:
+ tinyglobby@0.2.15:
dependencies:
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
@@ -21601,20 +21254,12 @@ snapshots:
dependencies:
'@popperjs/core': 2.11.8
- tmp-promise@3.0.3:
- dependencies:
- tmp: 0.2.5
-
- tmp@0.2.5: {}
-
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
toidentifier@1.0.1: {}
- toml@3.0.0: {}
-
totalist@3.0.1: {}
tr46@0.0.3: {}
@@ -21627,8 +21272,6 @@ snapshots:
trim-lines@3.0.1: {}
- triple-beam@1.4.1: {}
-
ts-api-utils@1.4.3(typescript@5.9.2):
dependencies:
typescript: 5.9.2
@@ -21735,14 +21378,14 @@ snapshots:
has-symbols: 1.1.0
which-boxed-primitive: 1.1.1
- unbuild@3.6.1(sass@1.90.0)(typescript@5.9.2)(vue-tsc@2.2.10(typescript@5.9.2))(vue@3.5.18(typescript@5.9.2)):
+ unbuild@3.6.1(sass@1.92.1)(typescript@5.9.2)(vue-tsc@2.2.10(typescript@5.9.2))(vue@3.5.21(typescript@5.9.2)):
dependencies:
- '@rollup/plugin-alias': 5.1.1(rollup@4.46.3)
- '@rollup/plugin-commonjs': 28.0.6(rollup@4.46.3)
- '@rollup/plugin-json': 6.1.0(rollup@4.46.3)
- '@rollup/plugin-node-resolve': 16.0.1(rollup@4.46.3)
- '@rollup/plugin-replace': 6.0.2(rollup@4.46.3)
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.50.1)
+ '@rollup/plugin-commonjs': 28.0.6(rollup@4.50.1)
+ '@rollup/plugin-json': 6.1.0(rollup@4.50.1)
+ '@rollup/plugin-node-resolve': 16.0.1(rollup@4.50.1)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.50.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
citty: 0.1.6
consola: 3.4.2
defu: 6.1.4
@@ -21750,16 +21393,16 @@ snapshots:
fix-dts-default-cjs-exports: 1.0.1
hookable: 5.5.3
jiti: 2.5.1
- magic-string: 0.30.17
- mkdist: 2.3.0(sass@1.90.0)(typescript@5.9.2)(vue-tsc@2.2.10(typescript@5.9.2))(vue@3.5.18(typescript@5.9.2))
- mlly: 1.7.4
+ magic-string: 0.30.19
+ mkdist: 2.3.0(sass@1.92.1)(typescript@5.9.2)(vue-tsc@2.2.10(typescript@5.9.2))(vue@3.5.21(typescript@5.9.2))
+ mlly: 1.8.0
pathe: 2.0.3
- pkg-types: 2.2.0
+ pkg-types: 2.3.0
pretty-bytes: 7.0.1
- rollup: 4.46.3
- rollup-plugin-dts: 6.2.3(rollup@4.46.3)(typescript@5.9.2)
+ rollup: 4.50.1
+ rollup-plugin-dts: 6.2.3(rollup@4.50.1)(typescript@5.9.2)
scule: 1.3.0
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
untyped: 2.0.0
optionalDependencies:
typescript: 5.9.2
@@ -21775,16 +21418,16 @@ snapshots:
dependencies:
acorn: 8.15.0
estree-walker: 3.0.3
- magic-string: 0.30.17
- unplugin: 2.3.6
+ magic-string: 0.30.19
+ unplugin: 2.3.10
undici-types@6.21.0: {}
undici-types@7.10.0: {}
- undici@7.14.0: {}
+ undici@7.15.0: {}
- unenv@2.0.0-rc.19:
+ unenv@2.0.0-rc.20:
dependencies:
defu: 6.1.4
exsolve: 1.0.7
@@ -21812,16 +21455,16 @@ snapshots:
acorn: 8.15.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- local-pkg: 1.1.1
- magic-string: 0.30.17
- mlly: 1.7.4
+ local-pkg: 1.1.2
+ magic-string: 0.30.19
+ mlly: 1.8.0
pathe: 2.0.3
picomatch: 4.0.3
- pkg-types: 2.2.0
+ pkg-types: 2.3.0
scule: 1.3.0
strip-literal: 3.0.0
- tinyglobby: 0.2.14
- unplugin: 2.3.6
+ tinyglobby: 0.2.15
+ unplugin: 2.3.10
unplugin-utils: 0.2.5
unique-filename@1.1.1:
@@ -21863,15 +21506,11 @@ snapshots:
universalify@2.0.1: {}
- unixify@1.0.0:
- dependencies:
- normalize-path: 2.1.1
-
unplugin-element-plus@0.10.0:
dependencies:
es-module-lexer: 1.7.0
- magic-string: 0.30.17
- unplugin: 2.3.6
+ magic-string: 0.30.19
+ unplugin: 2.3.10
unplugin-utils: 0.2.5
unplugin-utils@0.2.5:
@@ -21879,12 +21518,17 @@ snapshots:
pathe: 2.0.3
picomatch: 4.0.3
+ unplugin-utils@0.3.0:
+ dependencies:
+ pathe: 2.0.3
+ picomatch: 4.0.3
+
unplugin@1.16.1:
dependencies:
acorn: 8.15.0
webpack-virtual-modules: 0.6.2
- unplugin@2.3.6:
+ unplugin@2.3.10:
dependencies:
'@jridgewell/remapping': 2.3.5
acorn: 8.15.0
@@ -21915,7 +21559,7 @@ snapshots:
'@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
'@unrs/resolver-binding-win32-x64-msvc': 1.11.1
- unstorage@1.16.1(@netlify/blobs@9.1.2)(db0@0.3.2)(ioredis@5.7.0):
+ unstorage@1.17.1(db0@0.3.2)(ioredis@5.7.0):
dependencies:
anymatch: 3.1.3
chokidar: 4.0.3
@@ -21926,7 +21570,6 @@ snapshots:
ofetch: 1.4.1
ufo: 1.6.1
optionalDependencies:
- '@netlify/blobs': 9.1.2
db0: 0.3.2
ioredis: 5.7.0
@@ -21947,17 +21590,17 @@ snapshots:
unwasm@0.3.11:
dependencies:
knitwork: 1.2.0
- magic-string: 0.30.17
- mlly: 1.7.4
+ magic-string: 0.30.19
+ mlly: 1.8.0
pathe: 2.0.3
- pkg-types: 2.2.0
- unplugin: 2.3.6
+ pkg-types: 2.3.0
+ unplugin: 2.3.10
upath@1.2.0: {}
- update-browserslist-db@1.1.3(browserslist@4.25.3):
+ update-browserslist-db@1.1.3(browserslist@4.25.4):
dependencies:
- browserslist: 4.25.3
+ browserslist: 4.25.4
escalade: 3.2.0
picocolors: 1.1.1
@@ -21980,29 +21623,18 @@ snapshots:
dependencies:
punycode: 2.3.1
- urlpattern-polyfill@10.1.0: {}
-
- urlpattern-polyfill@8.0.2: {}
-
util-deprecate@1.0.2: {}
- uuid@11.1.0: {}
-
- validate-npm-package-license@3.0.4:
- dependencies:
- spdx-correct: 3.2.0
- spdx-expression-parse: 3.0.1
-
- vdirs@0.1.8(vue@3.5.18(typescript@5.9.2)):
+ vdirs@0.1.8(vue@3.5.21(typescript@5.9.2)):
dependencies:
evtd: 0.2.4
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- vee-validate@4.15.1(vue@3.5.18(typescript@5.9.2)):
+ vee-validate@4.15.1(vue@3.5.21(typescript@5.9.2)):
dependencies:
'@vue/devtools-api': 7.7.7
type-fest: 4.41.0
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
vfile-message@4.0.3:
dependencies:
@@ -22014,17 +21646,17 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.3
- vite-hot-client@2.1.0(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
+ vite-hot-client@2.1.0(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
- vite-node@3.2.4(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1):
+ vite-node@3.2.4(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1):
dependencies:
cac: 6.7.14
debug: 4.4.1
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite: 7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -22039,13 +21671,13 @@ snapshots:
- tsx
- yaml
- vite-node@3.2.4(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1):
+ vite-node@3.2.4(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1):
dependencies:
cac: 6.7.14
debug: 4.4.1
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -22061,35 +21693,35 @@ snapshots:
- yaml
optional: true
- vite-plugin-compression@0.5.1(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
+ vite-plugin-compression@0.5.1(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
chalk: 4.1.2
debug: 4.4.1
fs-extra: 10.1.0
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- vite-plugin-dts@4.5.4(@types/node@24.3.0)(rollup@4.46.3)(typescript@5.9.2)(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
+ vite-plugin-dts@4.5.4(@types/node@24.3.1)(rollup@4.50.1)(typescript@5.9.2)(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
- '@microsoft/api-extractor': 7.52.10(@types/node@24.3.0)
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
+ '@microsoft/api-extractor': 7.52.11(@types/node@24.3.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
'@volar/typescript': 2.4.23
'@vue/language-core': 2.2.0(typescript@5.9.2)
compare-versions: 6.1.1
debug: 4.4.1
kolorist: 1.8.0
- local-pkg: 1.1.1
- magic-string: 0.30.17
+ local-pkg: 1.1.2
+ magic-string: 0.30.19
typescript: 5.9.2
optionalDependencies:
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-html@3.2.2(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
+ vite-plugin-html@3.2.2(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
'@rollup/pluginutils': 4.2.1
colorette: 2.0.20
@@ -22103,160 +21735,160 @@ snapshots:
html-minifier-terser: 6.1.0
node-html-parser: 5.4.2
pathe: 0.2.0
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
- vite-plugin-inspect@0.8.9(rollup@4.46.3)(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
+ vite-plugin-inspect@0.8.9(rollup@4.50.1)(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
debug: 4.4.1
error-stack-parser-es: 0.1.5
fs-extra: 11.3.1
open: 10.2.0
perfect-debounce: 1.0.0
picocolors: 1.1.1
- sirv: 3.0.1
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ sirv: 3.0.2
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- rollup
- supports-color
vite-plugin-lazy-import@1.0.7:
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.46.3)
+ '@rollup/pluginutils': 5.3.0(rollup@4.50.1)
es-module-lexer: 1.7.0
- rollup: 4.46.3
- xe-utils: 3.7.8
+ rollup: 4.50.1
+ xe-utils: 3.7.9
- vite-plugin-pwa@1.0.2(vite@5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1))(workbox-build@7.3.0)(workbox-window@7.3.0):
+ vite-plugin-pwa@1.0.3(vite@5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0):
dependencies:
debug: 4.4.1
pretty-bytes: 6.1.1
- tinyglobby: 0.2.14
- vite: 5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)
+ tinyglobby: 0.2.15
+ vite: 5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)
workbox-build: 7.3.0
workbox-window: 7.3.0
transitivePeerDependencies:
- supports-color
- vite-plugin-pwa@1.0.2(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(workbox-build@7.3.0)(workbox-window@7.3.0):
+ vite-plugin-pwa@1.0.3(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(workbox-build@7.3.0)(workbox-window@7.3.0):
dependencies:
debug: 4.4.1
pretty-bytes: 6.1.1
- tinyglobby: 0.2.14
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ tinyglobby: 0.2.15
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
workbox-build: 7.3.0
workbox-window: 7.3.0
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-devtools@7.7.7(rollup@4.46.3)(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2)):
+ vite-plugin-vue-devtools@7.7.7(rollup@4.50.1)(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2)):
dependencies:
- '@vue/devtools-core': 7.7.7(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.18(typescript@5.9.2))
+ '@vue/devtools-core': 7.7.7(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.21(typescript@5.9.2))
'@vue/devtools-kit': 7.7.7
'@vue/devtools-shared': 7.7.7
execa: 9.6.0
- sirv: 3.0.1
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vite-plugin-inspect: 0.8.9(rollup@4.46.3)(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
- vite-plugin-vue-inspector: 5.3.2(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ sirv: 3.0.2
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
+ vite-plugin-inspect: 0.8.9(rollup@4.50.1)(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))
+ vite-plugin-vue-inspector: 5.3.2(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))
transitivePeerDependencies:
- '@nuxt/kit'
- rollup
- supports-color
- vue
- vite-plugin-vue-inspector@5.3.2(vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
+ vite-plugin-vue-inspector@5.3.2(vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)):
dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.3)
- '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.3)
- '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.3)
- '@vue/compiler-dom': 3.5.18
+ '@babel/core': 7.28.4
+ '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.4)
+ '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
+ '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.4)
+ '@vue/compiler-dom': 3.5.21
kolorist: 1.8.0
- magic-string: 0.30.17
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ magic-string: 0.30.19
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- vite@5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1):
+ vite@5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0):
dependencies:
esbuild: 0.25.3
postcss: 8.5.6
- rollup: 4.46.3
+ rollup: 4.50.1
optionalDependencies:
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
fsevents: 2.3.3
less: 4.4.1
- sass: 1.90.0
- terser: 5.43.1
+ sass: 1.92.1
+ terser: 5.44.0
- vite@7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1):
+ vite@7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1):
dependencies:
esbuild: 0.25.3
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
- rollup: 4.46.3
- tinyglobby: 0.2.14
+ rollup: 4.50.1
+ tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 22.17.2
+ '@types/node': 22.18.1
fsevents: 2.3.3
jiti: 2.5.1
less: 4.4.1
- sass: 1.90.0
- terser: 5.43.1
+ sass: 1.92.1
+ terser: 5.44.0
yaml: 2.8.1
- vite@7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1):
+ vite@7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1):
dependencies:
esbuild: 0.25.3
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
- rollup: 4.46.3
- tinyglobby: 0.2.14
+ rollup: 4.50.1
+ tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
fsevents: 2.3.3
jiti: 2.5.1
less: 4.4.1
- sass: 1.90.0
- terser: 5.43.1
+ sass: 1.92.1
+ terser: 5.44.0
yaml: 2.8.1
- vitepress-plugin-group-icons@1.6.3(markdown-it@14.1.0)(vite@5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)):
+ vitepress-plugin-group-icons@1.6.3(markdown-it@14.1.0)(vite@5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)):
dependencies:
'@iconify-json/logos': 1.2.9
- '@iconify-json/vscode-icons': 1.2.29
+ '@iconify-json/vscode-icons': 1.2.30
'@iconify/utils': 3.0.1
markdown-it: 14.1.0
- vite: 5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)
+ vite: 5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)
transitivePeerDependencies:
- supports-color
- vitepress@1.6.4(@algolia/client-search@5.35.0)(@types/node@24.3.0)(async-validator@4.2.5)(axios@1.11.0)(jwt-decode@4.0.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.90.0)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.43.1)(typescript@5.9.2):
+ vitepress@1.6.4(@algolia/client-search@5.37.0)(@types/node@24.3.1)(async-validator@4.2.5)(axios@1.11.0)(less@4.4.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.92.1)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.44.0)(typescript@5.9.2):
dependencies:
'@docsearch/css': 3.8.2
- '@docsearch/js': 3.8.2(@algolia/client-search@5.35.0)(search-insights@2.17.3)
- '@iconify-json/simple-icons': 1.2.48
+ '@docsearch/js': 3.8.2(@algolia/client-search@5.37.0)(search-insights@2.17.3)
+ '@iconify-json/simple-icons': 1.2.50
'@shikijs/core': 2.5.0
'@shikijs/transformers': 2.5.0
'@shikijs/types': 2.5.0
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.2.4(vite@5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1))(vue@3.5.18(typescript@5.9.2))
+ '@vitejs/plugin-vue': 5.2.4(vite@5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0))(vue@3.5.21(typescript@5.9.2))
'@vue/devtools-api': 7.7.7
- '@vue/shared': 3.5.18
+ '@vue/shared': 3.5.21
'@vueuse/core': 12.8.2(typescript@5.9.2)
- '@vueuse/integrations': 12.8.2(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(jwt-decode@4.0.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.2)
+ '@vueuse/integrations': 12.8.2(async-validator@4.2.5)(axios@1.11.0)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.2)
focus-trap: 7.6.5
mark.js: 8.11.1
minisearch: 7.1.2
shiki: 2.5.0
- vite: 5.4.19(@types/node@24.3.0)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)
- vue: 3.5.18(typescript@5.9.2)
+ vite: 5.4.20(@types/node@24.3.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)
+ vue: 3.5.21(typescript@5.9.2)
optionalDependencies:
postcss: 8.5.6
transitivePeerDependencies:
@@ -22286,33 +21918,33 @@ snapshots:
- typescript
- universal-cookie
- vitest@3.2.4(@types/node@22.17.2)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1):
+ vitest@3.2.4(@types/node@22.18.1)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1):
dependencies:
'@types/chai': 5.2.2
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(vite@7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
- chai: 5.3.1
+ chai: 5.3.3
debug: 4.4.1
expect-type: 1.2.2
- magic-string: 0.30.17
+ magic-string: 0.30.19
pathe: 2.0.3
picomatch: 4.0.3
std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vite-node: 3.2.4(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite: 7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
+ vite-node: 3.2.4(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.17.2
+ '@types/node': 22.18.1
happy-dom: 17.6.3
transitivePeerDependencies:
- jiti
@@ -22328,33 +21960,33 @@ snapshots:
- tsx
- yaml
- vitest@3.2.4(@types/node@24.3.0)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1):
+ vitest@3.2.4(@types/node@24.3.1)(happy-dom@17.6.3)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1):
dependencies:
'@types/chai': 5.2.2
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@7.1.3(@types/node@22.17.2)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(vite@7.1.5(@types/node@22.18.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
- chai: 5.3.1
+ chai: 5.3.3
debug: 4.4.1
expect-type: 1.2.2
- magic-string: 0.30.17
+ magic-string: 0.30.19
pathe: 2.0.3
picomatch: 4.0.3
std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 7.1.3(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vite-node: 3.2.4(@types/node@24.3.0)(jiti@2.5.1)(less@4.4.1)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite: 7.1.5(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
+ vite-node: 3.2.4(@types/node@24.3.1)(jiti@2.5.1)(less@4.4.1)(sass@1.92.1)(terser@5.44.0)(yaml@2.8.1)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 24.3.0
+ '@types/node': 24.3.1
happy-dom: 17.6.3
transitivePeerDependencies:
- jiti
@@ -22371,10 +22003,10 @@ snapshots:
- yaml
optional: true
- vooks@0.2.12(vue@3.5.18(typescript@5.9.2)):
+ vooks@0.2.12(vue@3.5.21(typescript@5.9.2)):
dependencies:
evtd: 0.2.4
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
vscode-languageserver-textdocument@1.0.12: {}
@@ -22382,19 +22014,19 @@ snapshots:
vue-component-type-helpers@2.2.12: {}
- vue-demi@0.14.10(vue@3.5.18(typescript@5.9.2)):
+ vue-demi@0.14.10(vue@3.5.21(typescript@5.9.2)):
dependencies:
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- vue-dompurify-html@5.3.0(vue@3.5.18(typescript@5.9.2)):
+ vue-dompurify-html@5.3.0(vue@3.5.21(typescript@5.9.2)):
dependencies:
dompurify: 3.2.6
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.5.1)):
+ vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.5.1)):
dependencies:
debug: 4.4.1
- eslint: 9.33.0(jiti@2.5.1)
+ eslint: 9.35.0(jiti@2.5.1)
eslint-scope: 8.4.0
eslint-visitor-keys: 4.2.1
espree: 10.4.0
@@ -22403,27 +22035,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-i18n@11.1.11(vue@3.5.18(typescript@5.9.2)):
+ vue-i18n@11.1.12(vue@3.5.21(typescript@5.9.2)):
dependencies:
- '@intlify/core-base': 11.1.11
- '@intlify/shared': 11.1.11
+ '@intlify/core-base': 11.1.12
+ '@intlify/shared': 11.1.12
'@vue/devtools-api': 6.6.4
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- vue-json-viewer@3.0.4(vue@3.5.18(typescript@5.9.2)):
+ vue-json-viewer@3.0.4(vue@3.5.21(typescript@5.9.2)):
dependencies:
clipboard: 2.0.11
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- vue-router@4.5.1(vue@3.5.18(typescript@5.9.2)):
+ vue-router@4.5.1(vue@3.5.21(typescript@5.9.2)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- vue-tippy@6.7.1(vue@3.5.18(typescript@5.9.2)):
+ vue-tippy@6.7.1(vue@3.5.21(typescript@5.9.2)):
dependencies:
tippy.js: 6.3.7
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
vue-tsc@2.2.10(typescript@5.9.2):
dependencies:
@@ -22431,59 +22063,61 @@ snapshots:
'@vue/language-core': 2.2.10(typescript@5.9.2)
typescript: 5.9.2
- vue-types@3.0.2(vue@3.5.18(typescript@5.9.2)):
+ vue-types@3.0.2(vue@3.5.21(typescript@5.9.2)):
dependencies:
is-plain-object: 3.0.1
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- vue3-signature@0.2.4(vue@3.5.18(typescript@5.9.2)):
+ vue3-signature@0.2.4(vue@3.5.21(typescript@5.9.2)):
dependencies:
default-passive-events: 2.0.0
signature_pad: 3.0.0-beta.4
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- vue@3.5.18(typescript@5.9.2):
+ vue@3.5.21(typescript@5.9.2):
dependencies:
- '@vue/compiler-dom': 3.5.18
- '@vue/compiler-sfc': 3.5.18
- '@vue/runtime-dom': 3.5.18
- '@vue/server-renderer': 3.5.18(vue@3.5.18(typescript@5.9.2))
- '@vue/shared': 3.5.18
+ '@vue/compiler-dom': 3.5.21
+ '@vue/compiler-sfc': 3.5.21
+ '@vue/runtime-dom': 3.5.21
+ '@vue/server-renderer': 3.5.21(vue@3.5.21(typescript@5.9.2))
+ '@vue/shared': 3.5.21
optionalDependencies:
typescript: 5.9.2
- vuedraggable@4.1.0(vue@3.5.18(typescript@5.9.2)):
+ vuedraggable@4.1.0(vue@3.5.21(typescript@5.9.2)):
dependencies:
sortablejs: 1.14.0
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.21(typescript@5.9.2)
- vueuc@0.4.64(vue@3.5.18(typescript@5.9.2)):
+ vueuc@0.4.64(vue@3.5.21(typescript@5.9.2)):
dependencies:
- '@css-render/vue3-ssr': 0.15.14(vue@3.5.18(typescript@5.9.2))
+ '@css-render/vue3-ssr': 0.15.14(vue@3.5.21(typescript@5.9.2))
'@juggle/resize-observer': 3.4.0
css-render: 0.15.14
evtd: 0.2.4
seemly: 0.3.10
- vdirs: 0.1.8(vue@3.5.18(typescript@5.9.2))
- vooks: 0.2.12(vue@3.5.18(typescript@5.9.2))
- vue: 3.5.18(typescript@5.9.2)
+ vdirs: 0.1.8(vue@3.5.21(typescript@5.9.2))
+ vooks: 0.2.12(vue@3.5.21(typescript@5.9.2))
+ vue: 3.5.21(typescript@5.9.2)
- vxe-pc-ui@4.8.22(vue@3.5.18(typescript@5.9.2)):
+ vxe-pc-ui@4.9.19(vue@3.5.21(typescript@5.9.2)):
dependencies:
- '@vxe-ui/core': 4.2.11(vue@3.5.18(typescript@5.9.2))
+ '@vxe-ui/core': 4.2.12(vue@3.5.21(typescript@5.9.2))
transitivePeerDependencies:
- vue
- vxe-table@4.15.10(vue@3.5.18(typescript@5.9.2)):
+ vxe-table@4.16.8(vue@3.5.21(typescript@5.9.2)):
dependencies:
- vxe-pc-ui: 4.8.22(vue@3.5.18(typescript@5.9.2))
+ vxe-pc-ui: 4.9.19(vue@3.5.21(typescript@5.9.2))
transitivePeerDependencies:
- vue
+ w3c-keyname@2.2.8: {}
+
wangeditor@4.7.15:
dependencies:
- '@babel/runtime': 7.28.3
- '@babel/runtime-corejs3': 7.28.3
+ '@babel/runtime': 7.28.4
+ '@babel/runtime-corejs3': 7.28.4
tslib: 2.8.1
warning@4.0.3:
@@ -22492,8 +22126,6 @@ snapshots:
watermark-js-plus@1.6.3: {}
- web-streams-polyfill@3.3.3: {}
-
webidl-conversions@3.0.1: {}
webidl-conversions@4.0.2: {}
@@ -22583,26 +22215,6 @@ snapshots:
dependencies:
string-width: 7.2.0
- winston-transport@4.9.0:
- dependencies:
- logform: 2.7.0
- readable-stream: 3.6.2
- triple-beam: 1.4.1
-
- winston@3.17.0:
- dependencies:
- '@colors/colors': 1.6.0
- '@dabh/diagnostics': 2.0.3
- async: 3.2.6
- is-stream: 2.0.1
- logform: 2.7.0
- one-time: 1.0.0
- readable-stream: 3.6.2
- safe-stable-stringify: 2.5.0
- stack-trace: 0.0.10
- triple-beam: 1.4.1
- winston-transport: 4.9.0
-
word-wrap@1.2.5: {}
workbox-background-sync@7.3.0:
@@ -22617,10 +22229,10 @@ snapshots:
workbox-build@7.3.0:
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1)
- '@babel/core': 7.28.3
- '@babel/preset-env': 7.28.3(@babel/core@7.28.3)
- '@babel/runtime': 7.28.3
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.28.3)(rollup@2.79.2)
+ '@babel/core': 7.28.4
+ '@babel/preset-env': 7.28.3(@babel/core@7.28.4)
+ '@babel/runtime': 7.28.4
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.28.4)(rollup@2.79.2)
'@rollup/plugin-node-resolve': 15.3.1(rollup@2.79.2)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.2)
'@rollup/plugin-terser': 0.4.4(rollup@2.79.2)
@@ -22749,18 +22361,13 @@ snapshots:
imurmurhash: 0.1.4
signal-exit: 4.1.0
- write-file-atomic@6.0.0:
- dependencies:
- imurmurhash: 0.1.4
- signal-exit: 4.1.0
-
wsl-utils@0.1.0:
dependencies:
is-wsl: 3.1.0
xdg-basedir@5.1.0: {}
- xe-utils@3.7.8: {}
+ xe-utils@3.7.9: {}
xml-name-validator@4.0.0: {}
@@ -22826,16 +22433,11 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
- yauzl@2.10.0:
- dependencies:
- buffer-crc32: 0.2.13
- fd-slicer: 1.1.0
-
yocto-queue@0.1.0: {}
yocto-queue@1.2.1: {}
- yoctocolors@2.1.1: {}
+ yoctocolors@2.1.2: {}
youch-core@0.3.3:
dependencies:
@@ -22850,6 +22452,8 @@ snapshots:
cookie: 1.0.2
youch-core: 0.3.3
+ zeebe-bpmn-moddle@1.11.0: {}
+
zimmerframe@1.1.2: {}
zip-stream@6.0.1:
@@ -22870,4 +22474,4 @@ snapshots:
zwitch@2.0.4: {}
- zx@8.8.0: {}
+ zx@8.8.1: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 9daa279696e369f1401657a8b6a4cbffe0cae92a..67151256bd11125649bca773b3a33436587a3264 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -12,76 +12,79 @@ packages:
- scripts/*
- docs
- playground
-
catalog:
- '@ast-grep/napi': ^0.37.0
- '@changesets/changelog-github': ^0.5.1
- '@changesets/cli': ^2.29.5
- '@changesets/git': ^3.0.4
- '@clack/prompts': ^0.10.1
- '@commitlint/cli': ^19.8.1
- '@commitlint/config-conventional': ^19.8.1
- '@ctrl/tinycolor': ^4.1.0
- '@eslint/js': ^9.30.1
- '@faker-js/faker': ^9.9.0
- '@iconify/json': ^2.2.354
- '@iconify/tailwind': ^1.2.0
- '@iconify/vue': ^5.0.0
- '@intlify/core-base': ^11.1.7
- '@intlify/unplugin-vue-i18n': ^6.0.8
- '@jspm/generator': ^2.6.2
- '@manypkg/get-packages': ^3.0.0
- '@microsoft/fetch-event-source': ^2.0.1
- '@nolebase/vitepress-plugin-git-changelog': ^2.18.0
- '@playwright/test': ^1.53.2
- '@pnpm/workspace.read-manifest': ^1000.2.0
- '@stylistic/stylelint-plugin': ^3.1.3
- '@tailwindcss/nesting': 0.0.0-insiders.565cd3e
- '@tailwindcss/typography': ^0.5.16
- '@tanstack/vue-query': ^5.81.5
- '@tanstack/vue-store': ^0.7.1
- '@tinymce/tinymce-vue': ^6.1.0
- '@tinyflow-ai/vue': ^1.1.1
- '@form-create/ant-design-vue': ^3.2.27
- '@form-create/antd-designer': ^3.3.0
- '@form-create/designer': ^3.3.0
- '@form-create/naive-ui': ^3.2.27
- '@form-create/element-ui': ^3.2.27
- '@types/archiver': ^6.0.3
- '@types/eslint': ^9.6.1
- '@types/html-minifier-terser': ^7.0.2
- '@types/json-bigint': ^1.0.4
- '@types/jsonwebtoken': ^9.0.10
- '@types/lodash.clonedeep': ^4.5.9
- '@types/lodash.get': ^4.4.9
- '@types/lodash.isequal': ^4.5.8
- '@types/lodash.set': ^4.3.9
- '@types/markdown-it': ^14.1.2
- '@types/node': ^22.16.0
- '@types/nprogress': ^0.2.3
- '@types/postcss-import': ^14.0.3
- '@types/qrcode': ^1.5.5
- '@types/qs': ^6.14.0
- '@types/sortablejs': ^1.15.8
- '@types/crypto-js': ^4.2.2
- '@typescript-eslint/eslint-plugin': ^8.35.1
- '@typescript-eslint/parser': ^8.35.1
- '@vee-validate/zod': ^4.15.1
- '@vite-pwa/vitepress': ^1.0.0
- '@vitejs/plugin-vue': ^6.0.1
- '@vitejs/plugin-vue-jsx': ^5.0.1
- '@vue/reactivity': ^3.5.17
- '@vue/shared': ^3.5.17
- '@vue/test-utils': ^2.4.6
- '@vueuse/core': ^13.4.0
- '@vueuse/integrations': ^13.4.0
- '@vueuse/motion': ^3.0.3
+ "@ast-grep/napi": ^0.37.0
+ "@changesets/changelog-github": ^0.5.1
+ "@changesets/cli": ^2.29.5
+ "@changesets/git": ^3.0.4
+ "@clack/prompts": ^0.10.1
+ "@commitlint/cli": ^19.8.1
+ "@commitlint/config-conventional": ^19.8.1
+ "@ctrl/tinycolor": ^4.1.0
+ "@eslint/js": ^9.30.1
+ "@faker-js/faker": ^9.9.0
+ "@form-create/ant-design-vue": ^3.2.27
+ "@form-create/antd-designer": ^3.3.0
+ "@form-create/designer": ^3.3.0
+ "@form-create/element-ui": ^3.2.27
+ "@form-create/naive-ui": ^3.2.27
+ "@iconify/json": ^2.2.354
+ "@iconify/tailwind": ^1.2.0
+ "@iconify/vue": ^5.0.0
+ "@intlify/core-base": ^11.1.7
+ "@intlify/unplugin-vue-i18n": ^6.0.8
+ "@jspm/generator": ^2.6.2
+ "@manypkg/get-packages": ^3.0.0
+ "@microsoft/fetch-event-source": ^2.0.1
+ "@nolebase/vitepress-plugin-git-changelog": ^2.18.0
+ "@playwright/test": ^1.53.2
+ "@pnpm/workspace.read-manifest": ^1000.2.0
+ "@stylistic/stylelint-plugin": ^3.1.3
+ "@tailwindcss/nesting": 0.0.0-insiders.565cd3e
+ "@tailwindcss/typography": ^0.5.16
+ "@tanstack/vue-query": ^5.81.5
+ "@tanstack/vue-store": ^0.7.1
+ "@tinyflow-ai/vue": ^1.1.1
+ "@tinymce/tinymce-vue": ^6.1.0
+ "@types/archiver": ^6.0.3
+ "@types/crypto-js": ^4.2.2
+ "@types/eslint": ^9.6.1
+ "@types/html-minifier-terser": ^7.0.2
+ "@types/json-bigint": ^1.0.4
+ "@types/jsonwebtoken": ^9.0.10
+ "@types/lodash.clonedeep": ^4.5.9
+ "@types/lodash.get": ^4.4.9
+ "@types/lodash.isequal": ^4.5.8
+ "@types/lodash.set": ^4.3.9
+ "@types/markdown-it": ^14.1.2
+ "@types/node": ^22.16.0
+ "@types/nprogress": ^0.2.3
+ "@types/postcss-import": ^14.0.3
+ "@types/qrcode": ^1.5.5
+ "@types/qs": ^6.14.0
+ "@types/sortablejs": ^1.15.8
+ "@typescript-eslint/eslint-plugin": ^8.35.1
+ "@typescript-eslint/parser": ^8.35.1
+ "@vee-validate/zod": ^4.15.1
+ "@vite-pwa/vitepress": ^1.0.0
+ "@vitejs/plugin-vue": ^6.0.1
+ "@vitejs/plugin-vue-jsx": ^5.0.1
+ "@vue/reactivity": ^3.5.17
+ "@vue/shared": ^3.5.17
+ "@vue/test-utils": ^2.4.6
+ "@vueuse/core": ^13.4.0
+ "@vueuse/integrations": ^13.4.0
+ "@vueuse/motion": ^3.0.3
ant-design-vue: ^4.2.6
archiver: ^7.0.1
autoprefixer: ^10.4.21
axios: ^1.10.0
axios-mock-adapter: ^2.1.0
+ bpmn-js: ^17.11.1
+ bpmn-js-properties-panel: 5.23.0
+ bpmn-js-token-simulation: ^0.36.3
cac: ^6.7.14
+ camunda-bpmn-moddle: ^7.0.1
chalk: ^5.4.1
cheerio: ^1.1.0
circular-dependency-scanner: ^2.3.0
@@ -89,17 +92,17 @@ catalog:
clsx: ^2.1.1
commitlint-plugin-function-rules: ^4.0.2
consola: ^3.4.2
- cross-env: ^7.0.3
cropperjs: ^1.6.2
+ cross-env: ^7.0.3
crypto-js: ^4.2.0
cspell: ^8.19.4
- jsencrypt: ^3.3.2
cssnano: ^7.0.7
cz-git: ^1.11.2
czg: ^1.11.1
dayjs: ^1.11.13
defu: ^6.1.4
depcheck: ^1.4.7
+ diagram-js: ^12.8.1
dotenv: ^16.6.1
echarts: ^5.6.0
element-plus: ^2.10.2
@@ -120,13 +123,16 @@ catalog:
eslint-plugin-vitest: ^0.5.4
eslint-plugin-vue: ^10.2.0
execa: ^9.6.0
+ fast-xml-parser: ^4.5.3
find-up: ^7.0.0
get-port: ^7.1.0
globals: ^16.3.0
h3: ^1.15.3
happy-dom: ^17.6.3
+ highlight.js: ^11.11.1
html-minifier-terser: ^7.2.0
is-ci: ^4.1.0
+ jsencrypt: ^3.3.2
json-bigint: ^1.0.0
jsonc-eslint-parser: ^2.4.0
jsonwebtoken: ^9.0.2
@@ -142,6 +148,7 @@ catalog:
markmap-toolbar: ^0.17.0
markmap-view: ^0.16.0
medium-zoom: ^1.1.0
+ min-dash: ^4.2.3
naive-ui: ^2.42.0
nitropack: ^2.11.13
nprogress: ^0.2.0
@@ -169,6 +176,7 @@ catalog:
sass: ^1.89.2
secure-ls: ^2.0.0
sortablejs: ^1.15.6
+ steady-xml: ^0.1.0
stylelint: ^16.21.0
stylelint-config-recess-order: ^6.1.0
stylelint-config-recommended: ^16.0.0
@@ -182,8 +190,8 @@ catalog:
tailwindcss: ^3.4.17
tailwindcss-animate: ^1.0.7
theme-colors: ^0.1.0
- tippy.js: ^6.3.7
tinymce: ^7.3.0
+ tippy.js: ^6.3.7
turbo: ^2.5.4
typescript: ^5.8.3
unbuild: ^3.6.1
@@ -207,11 +215,10 @@ catalog:
vue-router: ^4.5.1
vue-tippy: ^6.7.1
vue-tsc: 2.2.10
+ vue3-signature: ^0.2.4
+ vuedraggable: ^4.1.0
vxe-pc-ui: ^4.7.12
vxe-table: ^4.14.4
watermark-js-plus: ^1.6.2
zod: ^3.25.67
zod-defaults: ^0.1.3
- highlight.js: ^11.11.1
- vue3-signature: ^0.2.4
- vuedraggable: ^4.1.0