@v1nt1248/3nclient-lib 0.0.24 → 0.0.25
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/README.md +3 -6
- package/dist/index.d.ts +35 -2
- package/dist/tools/index.d.ts +2 -0
- package/dist/ui-3n-lib.js +6471 -7405
- package/package.json +1 -2
- package/dist/libs/index.d.ts +0 -4
- package/dist/libs/ipc-service-caller.d.ts +0 -12
- package/dist/libs/ipc-service.d.ts +0 -60
- package/dist/libs/serialization-for-ipc/copy-json.d.ts +0 -8
- package/dist/libs/serialization-for-ipc/json-n-binary.d.ts +0 -5
- package/dist/libs/serialization-for-ipc/protobuf-type.d.ts +0 -10
- package/dist/libs/serialization-for-ipc/types.d.ts +0 -3
- /package/dist/{libs → tools}/sqlite-on-3nstorage/deferred.d.ts +0 -0
- /package/dist/{libs → tools}/sqlite-on-3nstorage/index.d.ts +0 -0
- /package/dist/{libs → tools}/sqlite-on-3nstorage/synced.d.ts +0 -0
- /package/dist/{libs → tools}/sqlite-on-3nstorage/types.d.ts +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Library (Vue3 + Typescript + Vite)
|
|
2
2
|
|
|
3
|
-
Components, directives and plugins for Vue3 projects and some helpers methods.
|
|
3
|
+
Components, directives and plugins for Vue3 projects and some helpers methods (tools).
|
|
4
4
|
Storybook is used for documentation and demo.
|
|
5
5
|
|
|
6
6
|
For demo and development - `yarn storybook` or `npm run storybook`.
|
|
@@ -41,9 +41,6 @@ You can run the project as `yarn dev` or `npm run dev` if you don't want to use
|
|
|
41
41
|
- emoticons
|
|
42
42
|
- mailReg
|
|
43
43
|
|
|
44
|
-
## Libs
|
|
45
|
-
- ipc-service
|
|
46
|
-
- ipc-service-caller
|
|
47
|
-
- sqlite-on-3nstorage
|
|
48
|
-
|
|
49
44
|
## Tools
|
|
45
|
+
- sqlite-on-3nstorage
|
|
46
|
+
- ...
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
import type { CbFunction, Ui3nNotificationProps, VueEventBus } from './constants';
|
|
2
|
-
import type { Ui3nDialogComponentProps } from './components/ui3n-dialog.vue';
|
|
3
2
|
import type { DialogInstance } from './plugins/dialogs';
|
|
3
|
+
import type Ui3nButton from './components/ui3n-button.vue';
|
|
4
|
+
import type Ui3nDialog from './components/ui3n-dialog.vue';
|
|
5
|
+
import type { Ui3nDialogComponentProps } from './components/ui3n-dialog.vue';
|
|
6
|
+
import type Ui3nDropFiles from './components/ui3n-drop-files.vue';
|
|
7
|
+
import type Ui3nEmoji from './components/ui3n-emoji.vue';
|
|
8
|
+
import type Ui3nIcon from './components/ui3n-icon.vue';
|
|
9
|
+
import type Ui3nInput from './components/ui3n-input.vue';
|
|
10
|
+
import type Ui3nList from './components/ui3n-list.vue';
|
|
11
|
+
import type Ui3nMenu from './components/ui3n-menu.vue';
|
|
12
|
+
import type Ui3nNotification from './components/ui3n-notification.vue';
|
|
13
|
+
import type Ui3nTableSortIcon from './components/ui3n-table-sort-icon.vue';
|
|
14
|
+
import type Ui3nTable from './components/ui3n-table.vue';
|
|
15
|
+
import type Ui3nText from './components/ui3n-text.vue';
|
|
16
|
+
import type Ui3nVirtualScroll from './components/ui3n-virtual-scroll.vue';
|
|
17
|
+
import type Ui3nHtml from './directives/ui3n-html';
|
|
18
|
+
import type Ui3nClickOutside from './directives/ui3n-click-outside';
|
|
4
19
|
export * from './constants';
|
|
5
20
|
export * from './tools';
|
|
6
|
-
export * from './libs';
|
|
7
21
|
export * from './plugins';
|
|
8
22
|
export * from './directives';
|
|
9
23
|
export * from './components';
|
|
@@ -16,6 +30,25 @@ declare module 'vue' {
|
|
|
16
30
|
$changeLocale: (lang: string) => void;
|
|
17
31
|
$emitter: VueEventBus;
|
|
18
32
|
}
|
|
33
|
+
interface GlobalComponents {
|
|
34
|
+
Ui3nButton: typeof Ui3nButton;
|
|
35
|
+
Ui3nDialog: typeof Ui3nDialog;
|
|
36
|
+
Ui3nDropFiles: typeof Ui3nDropFiles;
|
|
37
|
+
Ui3nEmoji: typeof Ui3nEmoji;
|
|
38
|
+
Ui3nIcon: typeof Ui3nIcon;
|
|
39
|
+
Ui3nInput: typeof Ui3nInput;
|
|
40
|
+
Ui3nList: typeof Ui3nList;
|
|
41
|
+
Ui3nMenu: typeof Ui3nMenu;
|
|
42
|
+
Ui3nNotification: typeof Ui3nNotification;
|
|
43
|
+
Ui3nTableSortIcon: typeof Ui3nTableSortIcon;
|
|
44
|
+
Ui3nTable: typeof Ui3nTable;
|
|
45
|
+
Ui3nText: typeof Ui3nText;
|
|
46
|
+
Ui3nVirtualScroll: typeof Ui3nVirtualScroll;
|
|
47
|
+
}
|
|
48
|
+
interface GlobalDirectives {
|
|
49
|
+
Ui3nHtml: typeof Ui3nHtml;
|
|
50
|
+
Ui3nClickOutside: typeof Ui3nClickOutside;
|
|
51
|
+
}
|
|
19
52
|
}
|
|
20
53
|
declare module 'pinia' {
|
|
21
54
|
interface PiniaCustomProperties {
|
package/dist/tools/index.d.ts
CHANGED