@globalbrain/sefirot 4.35.0 → 4.35.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,19 +8,19 @@ import { type FilterInput } from '../filter-inputs/FilterInput'
8
8
  import { Field } from './Field'
9
9
 
10
10
  export class ContentField extends Field<ContentFieldData> {
11
- tableCell(_v: any, _r: any): TableCell {
11
+ override tableCell(_v: any, _r: any): TableCell {
12
12
  return { type: 'empty' }
13
13
  }
14
14
 
15
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
15
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
16
16
  return {}
17
17
  }
18
18
 
19
- dataListItemComponent(): any {
19
+ override dataListItemComponent(): any {
20
20
  return null
21
21
  }
22
22
 
23
- formInputComponent(): any {
23
+ override formInputComponent(): any {
24
24
  return this.defineFormInputComponent((_props, _ctx) => {
25
25
  return () => h(SMarkdown, {
26
26
  content: this.ctx.lang === 'ja' ? this.data.bodyJa : this.data.bodyEn
@@ -9,7 +9,7 @@ import { TextFilterInput } from '../filter-inputs/TextFilterInput'
9
9
  import { Field } from './Field'
10
10
 
11
11
  export class DateField extends Field<DateFieldData> {
12
- tableCell(v: any, _r: any): TableCell {
12
+ override tableCell(v: any, _r: any): TableCell {
13
13
  return {
14
14
  type: 'day',
15
15
  value: v ? day(v) : null,
@@ -17,7 +17,7 @@ export class DateField extends Field<DateFieldData> {
17
17
  }
18
18
  }
19
19
 
20
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
20
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
21
21
  const text = new TextFilterInput()
22
22
 
23
23
  return {
@@ -26,13 +26,13 @@ export class DateField extends Field<DateFieldData> {
26
26
  }
27
27
  }
28
28
 
29
- dataListItemComponent(): any {
29
+ override dataListItemComponent(): any {
30
30
  return this.defineDataListItemComponent((value) => {
31
31
  return value ? day(value).format('YYYY-MM-DD') : ''
32
32
  })
33
33
  }
34
34
 
35
- inputToPayload(value: any): any {
35
+ override inputToPayload(value: any): any {
36
36
  if (value === null) {
37
37
  return null
38
38
  }
@@ -40,7 +40,7 @@ export class DateField extends Field<DateFieldData> {
40
40
  return value.format('YYYY-MM-DD')
41
41
  }
42
42
 
43
- payloadToInput(value: any): any {
43
+ override payloadToInput(value: any): any {
44
44
  if (value === null) {
45
45
  return null
46
46
  }
@@ -48,7 +48,7 @@ export class DateField extends Field<DateFieldData> {
48
48
  return day(value)
49
49
  }
50
50
 
51
- formInputComponent(): any {
51
+ override formInputComponent(): any {
52
52
  return this.defineFormInputComponent((props, { emit }) => {
53
53
  return () => h(SInputDate, {
54
54
  'size': 'md',
@@ -7,14 +7,14 @@ import { TextFilterInput } from '../filter-inputs/TextFilterInput'
7
7
  import { Field } from './Field'
8
8
 
9
9
  export class DatetimeField extends Field<DatetimeFieldData> {
10
- tableCell(v: any, _r: any): TableCell {
10
+ override tableCell(v: any, _r: any): TableCell {
11
11
  return {
12
12
  type: 'day',
13
13
  value: v ? day(v) : null
14
14
  }
15
15
  }
16
16
 
17
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
17
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
18
18
  const text = new TextFilterInput()
19
19
 
20
20
  return {
@@ -23,13 +23,13 @@ export class DatetimeField extends Field<DatetimeFieldData> {
23
23
  }
24
24
  }
25
25
 
26
- dataListItemComponent(): any {
26
+ override dataListItemComponent(): any {
27
27
  return this.defineDataListItemComponent((value) => {
28
28
  return value ? day(value).format('YYYY-MM-DD') : ''
29
29
  })
30
30
  }
31
31
 
32
- formInputComponent(): any {
32
+ override formInputComponent(): any {
33
33
  throw new Error('Not implemented.')
34
34
  }
35
35
  }
@@ -16,18 +16,18 @@ export class FileUploadField extends Field<FileUploadFieldData> {
16
16
  this.downloader = downloader
17
17
  }
18
18
 
19
- tableCell(v: any, _r: any): TableCell {
19
+ override tableCell(v: any, _r: any): TableCell {
20
20
  return {
21
21
  type: 'text',
22
22
  value: v
23
23
  }
24
24
  }
25
25
 
26
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
26
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
27
27
  return {}
28
28
  }
29
29
 
30
- dataListItemComponent(): any {
30
+ override dataListItemComponent(): any {
31
31
  return this.defineDataListItemComponent((value) => {
32
32
  if (value === null) {
33
33
  return null
@@ -41,11 +41,11 @@ export class FileUploadField extends Field<FileUploadFieldData> {
41
41
  })
42
42
  }
43
43
 
44
- inputEmptyValue(): any {
44
+ override inputEmptyValue(): any {
45
45
  return []
46
46
  }
47
47
 
48
- formInputComponent(): any {
48
+ override formInputComponent(): any {
49
49
  return this.defineFormInputComponent((props, { emit }) => {
50
50
  return () => h(SInputFileUpload, {
51
51
  'size': 'mini',
@@ -6,7 +6,7 @@ import { NumberFilterInput } from '../filter-inputs/NumberFilterInput'
6
6
  import { Field } from './Field'
7
7
 
8
8
  export class IdField extends Field<IdFieldData> {
9
- tableCell(v: any, _r: any): TableCell {
9
+ override tableCell(v: any, _r: any): TableCell {
10
10
  return {
11
11
  type: 'text',
12
12
  value: v.display,
@@ -15,7 +15,7 @@ export class IdField extends Field<IdFieldData> {
15
15
  }
16
16
  }
17
17
 
18
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
18
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
19
19
  const number = new NumberFilterInput()
20
20
 
21
21
  return {
@@ -24,11 +24,11 @@ export class IdField extends Field<IdFieldData> {
24
24
  }
25
25
  }
26
26
 
27
- dataListItemComponent(): any {
27
+ override dataListItemComponent(): any {
28
28
  throw new Error('Not implemented.')
29
29
  }
30
30
 
31
- formInputComponent() {
31
+ override formInputComponent() {
32
32
  throw new Error('Not implemented.')
33
33
  }
34
34
  }
@@ -9,7 +9,7 @@ import { TextFilterInput } from '../filter-inputs/TextFilterInput'
9
9
  import { Field } from './Field'
10
10
 
11
11
  export class LinkField extends Field<LinkFieldData> {
12
- tableCell(v: any, _r: any): TableCell {
12
+ override tableCell(v: any, _r: any): TableCell {
13
13
  return {
14
14
  type: 'text',
15
15
  value: v,
@@ -18,7 +18,7 @@ export class LinkField extends Field<LinkFieldData> {
18
18
  }
19
19
  }
20
20
 
21
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
21
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
22
22
  const text = new TextFilterInput()
23
23
 
24
24
  return {
@@ -27,7 +27,7 @@ export class LinkField extends Field<LinkFieldData> {
27
27
  }
28
28
  }
29
29
 
30
- dataListItemComponent(): any {
30
+ override dataListItemComponent(): any {
31
31
  return this.defineDataListItemComponent((value) => {
32
32
  return h(SLink, { href: value }, () => value)
33
33
  }, {
@@ -35,7 +35,7 @@ export class LinkField extends Field<LinkFieldData> {
35
35
  })
36
36
  }
37
37
 
38
- formInputComponent(): any {
38
+ override formInputComponent(): any {
39
39
  return this.defineFormInputComponent((props, { emit }) => {
40
40
  return () => h(SInputText, {
41
41
  'size': 'md',
@@ -6,14 +6,14 @@ import { NumberFilterInput } from '../filter-inputs/NumberFilterInput'
6
6
  import { Field } from './Field'
7
7
 
8
8
  export class NumberField extends Field<NumberFieldData> {
9
- tableCell(v: any, _r: any): TableCell {
9
+ override tableCell(v: any, _r: any): TableCell {
10
10
  return {
11
11
  type: 'number',
12
12
  value: v
13
13
  }
14
14
  }
15
15
 
16
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
16
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
17
17
  const number = new NumberFilterInput()
18
18
 
19
19
  return {
@@ -22,11 +22,11 @@ export class NumberField extends Field<NumberFieldData> {
22
22
  }
23
23
  }
24
24
 
25
- dataListItemComponent(): any {
25
+ override dataListItemComponent(): any {
26
26
  throw new Error('Not implemented.')
27
27
  }
28
28
 
29
- formInputComponent() {
29
+ override formInputComponent() {
30
30
  throw new Error('Not implemented.')
31
31
  }
32
32
  }
@@ -14,7 +14,7 @@ export class RelatedManyField extends Field<RelatedManyFieldData> {
14
14
  this.fetcher = fetcher
15
15
  }
16
16
 
17
- tableCell(v: any, _r: any): TableCell {
17
+ override tableCell(v: any, _r: any): TableCell {
18
18
  return {
19
19
  type: 'pills',
20
20
  pills: v.map((item: any) => ({
@@ -24,7 +24,7 @@ export class RelatedManyField extends Field<RelatedManyFieldData> {
24
24
  }
25
25
  }
26
26
 
27
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
27
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
28
28
  const method = this.data.resourceEndpointMethod
29
29
  const url = this.data.resourceEndpointPath
30
30
  const key = this.data.resourceEndpointDataKey
@@ -52,11 +52,11 @@ export class RelatedManyField extends Field<RelatedManyFieldData> {
52
52
  }
53
53
  }
54
54
 
55
- dataListItemComponent(): any {
55
+ override dataListItemComponent(): any {
56
56
  throw new Error('Not implemented.')
57
57
  }
58
58
 
59
- formInputComponent() {
59
+ override formInputComponent() {
60
60
  throw new Error('Not implemented.')
61
61
  }
62
62
  }
@@ -30,7 +30,7 @@ export class SelectField extends Field<SelectFieldData> {
30
30
  }
31
31
  }
32
32
 
33
- tableCell(v: any, _r: any): TableCell {
33
+ override tableCell(v: any, _r: any): TableCell {
34
34
  if (v === null) {
35
35
  return { type: 'text', value: null }
36
36
  }
@@ -70,7 +70,7 @@ export class SelectField extends Field<SelectFieldData> {
70
70
  }
71
71
  }
72
72
 
73
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
73
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
74
74
  const options = this.data.options.map((o) => ({
75
75
  label: this.labelForOption(o),
76
76
  value: o.value
@@ -86,7 +86,7 @@ export class SelectField extends Field<SelectFieldData> {
86
86
  }
87
87
  }
88
88
 
89
- dataListItemComponent(): any {
89
+ override dataListItemComponent(): any {
90
90
  return this.defineDataListItemComponent((value) => {
91
91
  if (value === null) {
92
92
  return null
@@ -124,11 +124,11 @@ export class SelectField extends Field<SelectFieldData> {
124
124
  return this.optionsForValues(value).map((o) => this.labelForOption(o)).join(', ')
125
125
  }
126
126
 
127
- inputEmptyValue(): any {
127
+ override inputEmptyValue(): any {
128
128
  return this.data.multiple ? [] : null
129
129
  }
130
130
 
131
- formInputComponent(): any {
131
+ override formInputComponent(): any {
132
132
  switch (this.data.inputAs) {
133
133
  case 'dropdown':
134
134
  return this.defineDropdownInputComponent()
@@ -7,7 +7,7 @@ import { type FilterInput } from '../filter-inputs/FilterInput'
7
7
  import { Field } from './Field'
8
8
 
9
9
  export class SlackMessageField extends Field<SlackMessageFieldData> {
10
- tableCell(v: any, _r: any): TableCell {
10
+ override tableCell(v: any, _r: any): TableCell {
11
11
  return {
12
12
  type: 'text',
13
13
  value: v,
@@ -16,11 +16,11 @@ export class SlackMessageField extends Field<SlackMessageFieldData> {
16
16
  }
17
17
  }
18
18
 
19
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
19
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
20
20
  return {}
21
21
  }
22
22
 
23
- dataListItemComponent(): any {
23
+ override dataListItemComponent(): any {
24
24
  return this.defineDataListItemComponent((value) => {
25
25
  return h(SLink, { href: value }, () => value)
26
26
  }, {
@@ -28,7 +28,7 @@ export class SlackMessageField extends Field<SlackMessageFieldData> {
28
28
  })
29
29
  }
30
30
 
31
- formInputComponent(): any {
31
+ override formInputComponent(): any {
32
32
  throw new Error('Not implemented.')
33
33
  }
34
34
  }
@@ -8,14 +8,14 @@ import { TextFilterInput } from '../filter-inputs/TextFilterInput'
8
8
  import { Field } from './Field'
9
9
 
10
10
  export class TextField extends Field<TextFieldData> {
11
- tableCell(v: any, _r: any): TableCell {
11
+ override tableCell(v: any, _r: any): TableCell {
12
12
  return {
13
13
  type: 'text',
14
14
  value: v
15
15
  }
16
16
  }
17
17
 
18
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
18
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
19
19
  const text = new TextFilterInput()
20
20
 
21
21
  return {
@@ -24,11 +24,11 @@ export class TextField extends Field<TextFieldData> {
24
24
  }
25
25
  }
26
26
 
27
- dataListItemComponent(): any {
27
+ override dataListItemComponent(): any {
28
28
  return this.defineDataListItemComponent((value) => value)
29
29
  }
30
30
 
31
- formInputComponent(): any {
31
+ override formInputComponent(): any {
32
32
  return this.defineFormInputComponent((props, { emit }) => {
33
33
  return () => h(SInputText, {
34
34
  'size': 'md',
@@ -8,14 +8,14 @@ import { TextFilterInput } from '../filter-inputs/TextFilterInput'
8
8
  import { Field } from './Field'
9
9
 
10
10
  export class TextareaField extends Field<TextareaFieldData> {
11
- tableCell(v: any, _r: any): TableCell {
11
+ override tableCell(v: any, _r: any): TableCell {
12
12
  return {
13
13
  type: 'text',
14
14
  value: v
15
15
  }
16
16
  }
17
17
 
18
- availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
18
+ override availableFilters(): Partial<Record<FilterOperator, FilterInput>> {
19
19
  const text = new TextFilterInput()
20
20
 
21
21
  return {
@@ -24,13 +24,13 @@ export class TextareaField extends Field<TextareaFieldData> {
24
24
  }
25
25
  }
26
26
 
27
- dataListItemComponent(): any {
27
+ override dataListItemComponent(): any {
28
28
  return this.defineDataListItemComponent((value) => value, {
29
29
  preWrap: true
30
30
  })
31
31
  }
32
32
 
33
- formInputComponent(): any {
33
+ override formInputComponent(): any {
34
34
  return this.defineFormInputComponent((props, { emit }) => {
35
35
  return () => h(SInputTextarea, {
36
36
  'size': 'md',
@@ -599,7 +599,6 @@ function onResizeEnd(data: { columnName: string; finalWidth: string }) {
599
599
  :cell="getCell(key, item.index)"
600
600
  :value="recordsWithSummary[item.index][key]"
601
601
  :record="recordsWithSummary[item.index]"
602
- :records="unref(options.records)!"
603
602
  >
604
603
  <template v-if="key === '__select' && !isSummary(item.index)">
605
604
  <SInputCheckbox
@@ -695,6 +694,7 @@ function onResizeEnd(data: { columnName: string; finalWidth: string }) {
695
694
  width: 100%;
696
695
  min-width: 100%;
697
696
  overflow-x: auto;
697
+ overscroll-behavior: none;
698
698
  }
699
699
 
700
700
  .container.head {
package/package.json CHANGED
@@ -1,22 +1,28 @@
1
1
  {
2
2
  "name": "@globalbrain/sefirot",
3
- "version": "4.35.0",
3
+ "version": "4.35.2",
4
4
  "description": "Vue Components for Global Brain Design System.",
5
5
  "keywords": [
6
- "vue",
7
- "vue3",
8
6
  "components",
9
7
  "design-system",
8
+ "globalbrain",
10
9
  "ui-library",
11
- "globalbrain"
10
+ "vue",
11
+ "vue3"
12
12
  ],
13
13
  "homepage": "https://sefirot.globalbrains.com/",
14
+ "license": "MIT",
15
+ "author": "Kia Ishii <ka.ishii@globalbrains.com>",
14
16
  "repository": {
15
17
  "type": "git",
16
18
  "url": "git+https://github.com/globalbrain/sefirot.git"
17
19
  },
18
- "license": "MIT",
19
- "author": "Kia Ishii <ka.ishii@globalbrains.com>",
20
+ "files": [
21
+ "lib",
22
+ "config",
23
+ "client.d.ts",
24
+ "shared.d.ts"
25
+ ],
20
26
  "type": "module",
21
27
  "exports": {
22
28
  "./client": "./client.d.ts",
@@ -30,12 +36,6 @@
30
36
  },
31
37
  "./*": "./*"
32
38
  },
33
- "files": [
34
- "lib",
35
- "config",
36
- "client.d.ts",
37
- "shared.d.ts"
38
- ],
39
39
  "scripts": {
40
40
  "docs": "pnpm docs:dev",
41
41
  "docs:dev": "vitepress dev docs --port 4011",
@@ -55,36 +55,11 @@
55
55
  "test:fail": "pnpm run type && pnpm run lint:fail && pnpm run coverage",
56
56
  "release": "release-it"
57
57
  },
58
- "peerDependencies": {
59
- "@iconify-json/ph": "^1.2.2",
60
- "@iconify-json/ri": "^1.2.7",
61
- "@popperjs/core": "^2.11.8",
62
- "@types/body-scroll-lock": "^3.1.2",
63
- "@types/lodash-es": "^4.17.12",
64
- "@types/markdown-it": "^14.1.2",
65
- "@vue/reactivity": "^3.5.27",
66
- "@vuelidate/core": "^2.0.3",
67
- "@vuelidate/validators": "^2.0.4",
68
- "@vueuse/core": "^12 || ^13 || ^14",
69
- "body-scroll-lock": "4.0.0-beta.0",
70
- "dayjs": "^1.11.19",
71
- "fuse.js": "^7.1.0",
72
- "lodash-es": "^4.17.22",
73
- "markdown-it": "^14.1.0",
74
- "normalize.css": "^8.0.1",
75
- "pinia": "^3.0.4",
76
- "postcss": "^8.5.6",
77
- "postcss-nested": "^7.0.2",
78
- "v-calendar": "3.0.1",
79
- "vue": "^3.5.27",
80
- "vue-draggable-plus": "^0.6.0",
81
- "vue-router": "^4.6.4"
82
- },
83
58
  "dependencies": {
84
- "@sentry/browser": "^10.35.0",
85
- "@sentry/vue": "^10.35.0",
59
+ "@sentry/browser": "^10.39.0",
60
+ "@sentry/vue": "^10.39.0",
86
61
  "@tanstack/vue-virtual": "3.0.0-beta.62",
87
- "@tinyhttp/content-disposition": "^2.2.2",
62
+ "@tinyhttp/content-disposition": "^2.2.4",
88
63
  "@tinyhttp/cookie": "^2.1.1",
89
64
  "@total-typescript/ts-reset": "^0.6.1",
90
65
  "@types/d3": "^7.4.3",
@@ -94,54 +69,79 @@
94
69
  "dompurify": "^3.3.1",
95
70
  "file-saver": "^2.0.5",
96
71
  "html2canvas": "^1.4.1",
97
- "jsdom": "^27.4.0",
72
+ "jsdom": "^28.1.0",
98
73
  "magic-string": "^0.30.21",
99
74
  "ofetch": "^1.5.1",
100
- "qs": "^6.14.1",
75
+ "qs": "^6.15.0",
101
76
  "unplugin-icons": "^23.0.1"
102
77
  },
103
78
  "devDependencies": {
104
- "@globalbrain/eslint-config": "^2.1.0",
105
- "@histoire/plugin-vue": "0.16.5",
79
+ "@globalbrain/eslint-config": "^3.0.1",
80
+ "@histoire/plugin-vue": "1.0.0-beta.1",
106
81
  "@iconify-json/ph": "^1.2.2",
107
- "@iconify-json/ri": "^1.2.7",
82
+ "@iconify-json/ri": "^1.2.10",
108
83
  "@popperjs/core": "^2.11.8",
109
- "@release-it/conventional-changelog": "^10.0.4",
84
+ "@release-it/conventional-changelog": "^10.0.5",
110
85
  "@types/body-scroll-lock": "^3.1.2",
111
86
  "@types/jsdom": "^27.0.0",
112
87
  "@types/lodash-es": "^4.17.12",
113
88
  "@types/markdown-it": "^14.1.2",
114
- "@types/node": "^25.0.9",
115
- "@vitejs/plugin-vue": "^6.0.3",
116
- "@vitest/coverage-v8": "^3.2.4",
117
- "@vue/reactivity": "^3.5.27",
89
+ "@types/node": "^25.3.0",
90
+ "@vitejs/plugin-vue": "^6.0.4",
91
+ "@vitest/coverage-v8": "^4.0.18",
92
+ "@vue/reactivity": "^3.5.28",
118
93
  "@vue/test-utils": "^2.4.6",
119
94
  "@vuelidate/core": "^2.0.3",
120
95
  "@vuelidate/validators": "^2.0.4",
121
96
  "@vueuse/core": "^14.1.0",
122
97
  "body-scroll-lock": "4.0.0-beta.0",
123
98
  "dayjs": "^1.11.19",
124
- "eslint": "^9.39.2",
99
+ "eslint": "^9.39.3",
125
100
  "fuse.js": "^7.1.0",
126
- "happy-dom": "^20.3.3",
127
- "histoire": "0.16.5",
128
- "lodash-es": "^4.17.22",
129
- "markdown-it": "^14.1.0",
101
+ "happy-dom": "^20.7.0",
102
+ "histoire": "1.0.0-beta.1",
103
+ "lodash-es": "^4.17.23",
104
+ "markdown-it": "^14.1.1",
130
105
  "normalize.css": "^8.0.1",
131
106
  "pinia": "^3.0.4",
132
107
  "postcss": "^8.5.6",
133
108
  "postcss-nested": "^7.0.2",
134
109
  "punycode": "^2.3.1",
135
- "release-it": "^19.2.3",
110
+ "release-it": "^19.2.4",
136
111
  "typescript": "~5.9.3",
137
112
  "v-calendar": "3.0.1",
138
- "vite": "^6.4.1",
139
- "vitepress": "^2.0.0-alpha.15",
140
- "vitest": "^3.2.4",
141
- "vue": "^3.5.27",
142
- "vue-draggable-plus": "^0.6.0",
143
- "vue-router": "^4.6.4",
144
- "vue-tsc": "^3.2.2"
113
+ "vite": "^7.3.1",
114
+ "vitepress": "^2.0.0-alpha.16",
115
+ "vitest": "^4.0.18",
116
+ "vue": "^3.5.28",
117
+ "vue-draggable-plus": "^0.6.1",
118
+ "vue-router": "^5.0.3",
119
+ "vue-tsc": "^3.2.5"
120
+ },
121
+ "peerDependencies": {
122
+ "@iconify-json/ph": "^1.2.2",
123
+ "@iconify-json/ri": "^1.2.10",
124
+ "@popperjs/core": "^2.11.8",
125
+ "@types/body-scroll-lock": "^3.1.2",
126
+ "@types/lodash-es": "^4.17.12",
127
+ "@types/markdown-it": "^14.1.2",
128
+ "@vue/reactivity": "^3.5.28",
129
+ "@vuelidate/core": "^2.0.3",
130
+ "@vuelidate/validators": "^2.0.4",
131
+ "@vueuse/core": "^12 || ^13 || ^14",
132
+ "body-scroll-lock": "4.0.0-beta.0",
133
+ "dayjs": "^1.11.19",
134
+ "fuse.js": "^7.1.0",
135
+ "lodash-es": "^4.17.23",
136
+ "markdown-it": "^14.1.1",
137
+ "normalize.css": "^8.0.1",
138
+ "pinia": "^3.0.4",
139
+ "postcss": "^8.5.6",
140
+ "postcss-nested": "^7.0.2",
141
+ "v-calendar": "3.0.1",
142
+ "vue": "^3.5.28",
143
+ "vue-draggable-plus": "^0.6.1",
144
+ "vue-router": "^4 || ^5"
145
145
  },
146
- "packageManager": "pnpm@10.28.1"
146
+ "packageManager": "pnpm@10.30.1"
147
147
  }