@dxos/plugin-board 0.8.4-main.422d1c7879 → 0.8.4-main.51f1e5ca51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/browser/chunk-J5LGTIGS.mjs +10 -0
- package/dist/lib/browser/chunk-J5LGTIGS.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +10 -38
- package/dist/lib/browser/index.mjs.map +4 -4
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/translations.mjs +29 -0
- package/dist/lib/browser/translations.mjs.map +7 -0
- package/dist/lib/browser/types/index.mjs +31 -2
- package/dist/lib/browser/types/index.mjs.map +4 -4
- package/dist/lib/node-esm/chunk-HSLMI22Q.mjs +11 -0
- package/dist/lib/node-esm/chunk-HSLMI22Q.mjs.map +7 -0
- package/dist/lib/node-esm/index.mjs +10 -38
- package/dist/lib/node-esm/index.mjs.map +4 -4
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/lib/node-esm/translations.mjs +30 -0
- package/dist/lib/node-esm/translations.mjs.map +7 -0
- package/dist/lib/node-esm/types/index.mjs +31 -2
- package/dist/lib/node-esm/types/index.mjs.map +4 -4
- package/dist/types/src/BoardPlugin.d.ts.map +1 -1
- package/dist/types/src/capabilities/react-surface.d.ts.map +1 -1
- package/dist/types/src/containers/BoardContainer/BoardContainer.d.ts.map +1 -1
- package/dist/types/src/containers/BoardContainer/BoardContainer.stories.d.ts +30 -23
- package/dist/types/src/containers/BoardContainer/BoardContainer.stories.d.ts.map +1 -1
- package/dist/types/src/index.d.ts +0 -1
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/translations.d.ts +22 -15
- package/dist/types/src/translations.d.ts.map +1 -1
- package/dist/types/src/types/Board.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +49 -39
- package/src/BoardPlugin.tsx +3 -4
- package/src/containers/BoardContainer/BoardContainer.stories.tsx +3 -3
- package/src/containers/BoardContainer/BoardContainer.tsx +42 -13
- package/src/index.ts +0 -1
- package/dist/lib/browser/chunk-FL67SBF5.mjs +0 -39
- package/dist/lib/browser/chunk-FL67SBF5.mjs.map +0 -7
- package/dist/lib/node-esm/chunk-5GGKJL4Z.mjs +0 -40
- package/dist/lib/node-esm/chunk-5GGKJL4Z.mjs.map +0 -7
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { type StoryObj } from '@storybook/react-vite';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { Board } from '#types';
|
|
4
3
|
declare const meta: {
|
|
5
4
|
title: string;
|
|
6
5
|
render: () => React.JSX.Element | null;
|
|
@@ -9,33 +8,41 @@ declare const meta: {
|
|
|
9
8
|
layout: string;
|
|
10
9
|
translations: ({
|
|
11
10
|
readonly 'en-US': {
|
|
12
|
-
readonly [
|
|
13
|
-
readonly 'typename.label':
|
|
14
|
-
readonly 'typename.label_zero':
|
|
15
|
-
readonly 'typename.label_one':
|
|
16
|
-
readonly 'typename.label_other':
|
|
17
|
-
readonly 'object-name.placeholder':
|
|
18
|
-
readonly 'add-object.label':
|
|
19
|
-
readonly 'rename-object.label':
|
|
20
|
-
readonly 'delete-object.label':
|
|
21
|
-
readonly 'object-deleted.label':
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
readonly '
|
|
11
|
+
readonly [x: string]: {
|
|
12
|
+
readonly 'typename.label': 'Board';
|
|
13
|
+
readonly 'typename.label_zero': 'Boards';
|
|
14
|
+
readonly 'typename.label_one': 'Board';
|
|
15
|
+
readonly 'typename.label_other': 'Boards';
|
|
16
|
+
readonly 'object-name.placeholder': 'New board';
|
|
17
|
+
readonly 'add-object.label': 'Add board';
|
|
18
|
+
readonly 'rename-object.label': 'Rename board';
|
|
19
|
+
readonly 'delete-object.label': 'Delete board';
|
|
20
|
+
readonly 'object-deleted.label': 'Board deleted';
|
|
21
|
+
readonly 'plugin.name'?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
readonly 'typename.label'?: undefined;
|
|
24
|
+
readonly 'typename.label_zero'?: undefined;
|
|
25
|
+
readonly 'typename.label_one'?: undefined;
|
|
26
|
+
readonly 'typename.label_other'?: undefined;
|
|
27
|
+
readonly 'object-name.placeholder'?: undefined;
|
|
28
|
+
readonly 'add-object.label'?: undefined;
|
|
29
|
+
readonly 'rename-object.label'?: undefined;
|
|
30
|
+
readonly 'delete-object.label'?: undefined;
|
|
31
|
+
readonly 'object-deleted.label'?: undefined;
|
|
32
|
+
readonly 'plugin.name': 'Board';
|
|
26
33
|
};
|
|
27
34
|
};
|
|
28
35
|
} | {
|
|
29
36
|
readonly 'en-US': {
|
|
30
37
|
readonly "@dxos/react-ui-stack": {
|
|
31
|
-
readonly
|
|
32
|
-
readonly
|
|
33
|
-
readonly
|
|
34
|
-
readonly
|
|
35
|
-
readonly
|
|
36
|
-
readonly
|
|
37
|
-
readonly
|
|
38
|
-
readonly
|
|
38
|
+
readonly 'resize.label': 'Drag to resize';
|
|
39
|
+
readonly 'drag-handle.label': 'Drag to rearrange';
|
|
40
|
+
readonly 'pin-start.label': 'Pin to the left sidebar';
|
|
41
|
+
readonly 'pin-end.label': 'Pin to the right sidebar';
|
|
42
|
+
readonly 'increment-start.label': 'Move to the left';
|
|
43
|
+
readonly 'increment-end.label': 'Move to the right';
|
|
44
|
+
readonly 'close.label': 'Close';
|
|
45
|
+
readonly 'minify.label': 'Minify';
|
|
39
46
|
};
|
|
40
47
|
};
|
|
41
48
|
})[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BoardContainer.stories.d.ts","sourceRoot":"","sources":["../../../../../src/containers/BoardContainer/BoardContainer.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,KAA8B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"BoardContainer.stories.d.ts","sourceRoot":"","sources":["../../../../../src/containers/BoardContainer/BoardContainer.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,KAA8B,MAAM,OAAO,CAAC;AAiEnD,QAAA,MAAM,IAAI;IACR,KAAK;IACL,MAAM;IACN,UAAU;IAqCV,UAAU;QACR,MAAM;QACN,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEf,CAAC;eAEa,IAAI;AAEnB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAAU,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAIA,cAAc,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAIA,cAAc,QAAQ,CAAC;AAEvB,cAAc,eAAe,CAAC"}
|
|
@@ -1,20 +1,27 @@
|
|
|
1
|
-
import { meta } from '#meta';
|
|
2
|
-
import { Board } from '#types';
|
|
3
1
|
export declare const translations: [{
|
|
4
2
|
readonly 'en-US': {
|
|
5
|
-
readonly [
|
|
6
|
-
readonly 'typename.label':
|
|
7
|
-
readonly 'typename.label_zero':
|
|
8
|
-
readonly 'typename.label_one':
|
|
9
|
-
readonly 'typename.label_other':
|
|
10
|
-
readonly 'object-name.placeholder':
|
|
11
|
-
readonly 'add-object.label':
|
|
12
|
-
readonly 'rename-object.label':
|
|
13
|
-
readonly 'delete-object.label':
|
|
14
|
-
readonly 'object-deleted.label':
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
readonly '
|
|
3
|
+
readonly [x: string]: {
|
|
4
|
+
readonly 'typename.label': 'Board';
|
|
5
|
+
readonly 'typename.label_zero': 'Boards';
|
|
6
|
+
readonly 'typename.label_one': 'Board';
|
|
7
|
+
readonly 'typename.label_other': 'Boards';
|
|
8
|
+
readonly 'object-name.placeholder': 'New board';
|
|
9
|
+
readonly 'add-object.label': 'Add board';
|
|
10
|
+
readonly 'rename-object.label': 'Rename board';
|
|
11
|
+
readonly 'delete-object.label': 'Delete board';
|
|
12
|
+
readonly 'object-deleted.label': 'Board deleted';
|
|
13
|
+
readonly 'plugin.name'?: undefined;
|
|
14
|
+
} | {
|
|
15
|
+
readonly 'typename.label'?: undefined;
|
|
16
|
+
readonly 'typename.label_zero'?: undefined;
|
|
17
|
+
readonly 'typename.label_one'?: undefined;
|
|
18
|
+
readonly 'typename.label_other'?: undefined;
|
|
19
|
+
readonly 'object-name.placeholder'?: undefined;
|
|
20
|
+
readonly 'add-object.label'?: undefined;
|
|
21
|
+
readonly 'rename-object.label'?: undefined;
|
|
22
|
+
readonly 'delete-object.label'?: undefined;
|
|
23
|
+
readonly 'object-deleted.label'?: undefined;
|
|
24
|
+
readonly 'plugin.name': 'Board';
|
|
18
25
|
};
|
|
19
26
|
};
|
|
20
27
|
}];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/translations.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/translations.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,YAAY;;;uCAIC,OAAO;4CACF,QAAQ;2CACT,OAAO;6CACL,QAAQ;gDACL,WAAW;yCAClB,WAAW;4CACR,cAAc;4CACd,cAAc;6CACb,eAAe;;;;;;;;;;;;oCAGxB,OAAO;;;EAIC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Board.d.ts","sourceRoot":"","sources":["../../../../src/types/Board.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,EAAc,GAAG,EAAO,IAAI,EAAE,MAAM,YAAY,CAAC;AAIxD;;GAEG;AACH,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;wBAcjB,CAAC;AAEF,MAAM,WAAW,KAAM,SAAQ,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,KAAK,CAAC;CAAG;AAElE,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"Board.d.ts","sourceRoot":"","sources":["../../../../src/types/Board.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,EAAc,GAAG,EAAO,IAAI,EAAE,MAAM,YAAY,CAAC;AAIxD;;GAEG;AACH,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;wBAcjB,CAAC;AAEF,MAAM,WAAW,KAAM,SAAQ,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,KAAK,CAAC;CAAG;AAElE,eAAO,MAAM,SAAS,WAAW,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,KAAK,CAAC,CAAC;;;;;;;;;;;;;;;;;;EAKjE,CAAC"}
|