shared-ritm 1.3.129 → 1.3.131

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.
Files changed (84) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +1625 -1649
  3. package/dist/shared-ritm.umd.js +135 -135
  4. package/dist/types/api/services/MetricsService.d.ts +2 -3
  5. package/dist/types/api/types/Api_Metrics.d.ts +0 -21
  6. package/package.json +70 -70
  7. package/src/App.vue +2461 -2461
  8. package/src/api/services/AuthService.ts +67 -67
  9. package/src/api/services/ControlsService.ts +100 -100
  10. package/src/api/services/EquipmentService.ts +68 -68
  11. package/src/api/services/GanttService.ts +58 -58
  12. package/src/api/services/InstrumentsService.ts +76 -76
  13. package/src/api/services/MetricsService.ts +3 -0
  14. package/src/api/services/RepairsService.ts +111 -111
  15. package/src/api/services/TasksService.ts +165 -165
  16. package/src/api/services/UserIssueService.ts +32 -32
  17. package/src/api/services/UserService.ts +129 -129
  18. package/src/api/services/VideoService.ts +118 -118
  19. package/src/api/settings/ApiService.ts +185 -185
  20. package/src/api/types/Api_Auth.ts +121 -121
  21. package/src/api/types/Api_Controls.ts +112 -112
  22. package/src/api/types/Api_Equipment.ts +54 -54
  23. package/src/api/types/Api_Instruments.ts +182 -182
  24. package/src/api/types/Api_Metrics.ts +112 -112
  25. package/src/api/types/Api_Repairs.ts +200 -200
  26. package/src/api/types/Api_Search.ts +81 -81
  27. package/src/api/types/Api_Tasks.ts +385 -378
  28. package/src/api/types/Api_User.ts +161 -161
  29. package/src/api/types/Api_User_Issue.ts +36 -36
  30. package/src/api/types/Api_Video.ts +244 -244
  31. package/src/common/app-button/Button.stories.ts +369 -369
  32. package/src/common/app-checkbox/AppCheckbox.vue +33 -33
  33. package/src/common/app-checkbox/Checkbox.stories.ts +252 -252
  34. package/src/common/app-date-picker/DatePicker.stories.ts +66 -66
  35. package/src/common/app-datepicker/AppDatepicker.vue +221 -221
  36. package/src/common/app-datepicker/Datepicker.stories.ts +145 -145
  37. package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
  38. package/src/common/app-dialogs/Confirm.stories.ts +93 -93
  39. package/src/common/app-dropdown/Dropdown.stories.ts +94 -94
  40. package/src/common/app-file/File.stories.ts +104 -104
  41. package/src/common/app-icon/AppIcon.vue +110 -110
  42. package/src/common/app-icon/Icon.stories.ts +91 -91
  43. package/src/common/app-input/AppInput.vue +150 -150
  44. package/src/common/app-input/Input.stories.ts +160 -160
  45. package/src/common/app-input-new/AppInputNew.vue +186 -186
  46. package/src/common/app-input-new/InputNew.stories.ts +240 -240
  47. package/src/common/app-input-search/InputSearch.stories.ts +149 -149
  48. package/src/common/app-layout/components/AppLayoutHeader.vue +289 -289
  49. package/src/common/app-loader/Loader.stories.ts +114 -114
  50. package/src/common/app-modal/index.vue +101 -101
  51. package/src/common/app-select/AppSelect.vue +167 -167
  52. package/src/common/app-select/Select.stories.ts +155 -155
  53. package/src/common/app-sheet-new/AppSheetNew.vue +254 -254
  54. package/src/common/app-sidebar/AppSidebar.vue +177 -177
  55. package/src/common/app-table/AppTable.vue +313 -313
  56. package/src/common/app-table/components/ModalSelect.stories.ts +323 -323
  57. package/src/common/app-table/components/ModalSelect.vue +311 -311
  58. package/src/common/app-table/components/TableModal.vue +369 -369
  59. package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
  60. package/src/common/app-table/controllers/useTableModel.ts +98 -98
  61. package/src/common/app-toggle/AppToggle.vue +12 -12
  62. package/src/common/app-toggle/Toggle.stories.ts +245 -245
  63. package/src/common/app-wrapper/AppWrapper.vue +31 -31
  64. package/src/configs/storybook.ts +14 -14
  65. package/src/icons/sidebar/user-requests-icon.vue +23 -23
  66. package/src/index.ts +134 -134
  67. package/src/shared/styles/general.css +140 -140
  68. package/src/styles/variables.sass +12 -12
  69. package/src/utils/files.ts +38 -38
  70. package/src/utils/helpers.ts +59 -59
  71. package/dist/types/api/services/PhotoService.d.ts +0 -40
  72. package/dist/types/stories/Button.stories.d.ts +0 -13
  73. package/dist/types/stories/Checkbox.stories.d.ts +0 -7
  74. package/dist/types/stories/Confirm.stories.d.ts +0 -8
  75. package/dist/types/stories/DatePicker.stories.d.ts +0 -8
  76. package/dist/types/stories/Dropdown.stories.d.ts +0 -8
  77. package/dist/types/stories/File.stories.d.ts +0 -8
  78. package/dist/types/stories/Icon.stories.d.ts +0 -7
  79. package/dist/types/stories/Input.stories.d.ts +0 -11
  80. package/dist/types/stories/InputNew.stories.d.ts +0 -12
  81. package/dist/types/stories/InputSearch.stories.d.ts +0 -10
  82. package/dist/types/stories/Loader.stories.d.ts +0 -8
  83. package/dist/types/stories/Select.stories.d.ts +0 -7
  84. package/dist/types/stories/Toggle.stories.d.ts +0 -8
@@ -1,59 +1,59 @@
1
- // Эти все функции есть в квазаре, меняйте на них
2
- /**
3
- * Сравнивает два значения на глубокое равенство.
4
- * Поддерживает массивы, объекты и примитивы.
5
- */
6
- export function isEqual(a: any, b: any): boolean {
7
- if (Array.isArray(a) && Array.isArray(b)) {
8
- if (a.length !== b.length) return false
9
- return a.every((item, i) => isEqual(item, b[i]))
10
- }
11
- if (typeof a === 'object' && typeof b === 'object') {
12
- return JSON.stringify(a) === JSON.stringify(b)
13
- }
14
- return a === b
15
- }
16
-
17
- /**
18
- * Нормализует значение:
19
- * - Если передан массив объектов, возвращает массив `.value` или сам объект.
20
- * - Если передан объект, возвращает `.value` или сам объект.
21
- * - Если примитив — возвращает без изменений.
22
- */
23
- export function normalizeValue(val: any): any {
24
- if (Array.isArray(val)) {
25
- return val.map(v => (typeof v === 'object' && v !== null ? (v.value ?? v) : v))
26
- }
27
- return typeof val === 'object' && val !== null ? (val.value ?? val) : val
28
- }
29
-
30
- /**
31
- * Генерирует UUID v4.
32
- * Используется для идентификаторов временных сущностей.
33
- */
34
- export function uuidv4(): string {
35
- return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
36
- const r = (Math.random() * 16) | 0
37
- const v = c === 'x' ? r : (r & 0x3) | 0x8
38
- return v.toString(16)
39
- })
40
- }
41
-
42
- export function base64ToBlob(base64Data: string) {
43
- const parts = base64Data.split(';base64,')
44
- const contentType = parts[0].split(':')[1]
45
- const byteCharacters = atob(parts[1])
46
- const byteArrays: any[] = []
47
-
48
- for (let offset = 0; offset < byteCharacters.length; offset += 1024) {
49
- const slice = byteCharacters.slice(offset, offset + 1024)
50
- const byteNumbers = new Array(slice.length)
51
- for (let i = 0; i < slice.length; i++) {
52
- byteNumbers[i] = slice.charCodeAt(i)
53
- }
54
- const byteArray = new Uint8Array(byteNumbers)
55
- byteArrays.push(byteArray)
56
- }
57
-
58
- return new Blob(byteArrays, { type: contentType })
59
- }
1
+ // Эти все функции есть в квазаре, меняйте на них
2
+ /**
3
+ * Сравнивает два значения на глубокое равенство.
4
+ * Поддерживает массивы, объекты и примитивы.
5
+ */
6
+ export function isEqual(a: any, b: any): boolean {
7
+ if (Array.isArray(a) && Array.isArray(b)) {
8
+ if (a.length !== b.length) return false
9
+ return a.every((item, i) => isEqual(item, b[i]))
10
+ }
11
+ if (typeof a === 'object' && typeof b === 'object') {
12
+ return JSON.stringify(a) === JSON.stringify(b)
13
+ }
14
+ return a === b
15
+ }
16
+
17
+ /**
18
+ * Нормализует значение:
19
+ * - Если передан массив объектов, возвращает массив `.value` или сам объект.
20
+ * - Если передан объект, возвращает `.value` или сам объект.
21
+ * - Если примитив — возвращает без изменений.
22
+ */
23
+ export function normalizeValue(val: any): any {
24
+ if (Array.isArray(val)) {
25
+ return val.map(v => (typeof v === 'object' && v !== null ? (v.value ?? v) : v))
26
+ }
27
+ return typeof val === 'object' && val !== null ? (val.value ?? val) : val
28
+ }
29
+
30
+ /**
31
+ * Генерирует UUID v4.
32
+ * Используется для идентификаторов временных сущностей.
33
+ */
34
+ export function uuidv4(): string {
35
+ return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
36
+ const r = (Math.random() * 16) | 0
37
+ const v = c === 'x' ? r : (r & 0x3) | 0x8
38
+ return v.toString(16)
39
+ })
40
+ }
41
+
42
+ export function base64ToBlob(base64Data: string) {
43
+ const parts = base64Data.split(';base64,')
44
+ const contentType = parts[0].split(':')[1]
45
+ const byteCharacters = atob(parts[1])
46
+ const byteArrays: any[] = []
47
+
48
+ for (let offset = 0; offset < byteCharacters.length; offset += 1024) {
49
+ const slice = byteCharacters.slice(offset, offset + 1024)
50
+ const byteNumbers = new Array(slice.length)
51
+ for (let i = 0; i < slice.length; i++) {
52
+ byteNumbers[i] = slice.charCodeAt(i)
53
+ }
54
+ const byteArray = new Uint8Array(byteNumbers)
55
+ byteArrays.push(byteArray)
56
+ }
57
+
58
+ return new Blob(byteArrays, { type: contentType })
59
+ }
@@ -1,40 +0,0 @@
1
- import * as faceapi from 'face-api.js';
2
- declare class PhotoService {
3
- getVideoStreamConfig(width: number, height: number): {
4
- audio: boolean;
5
- video: {
6
- width: {
7
- min: number;
8
- ideal: number;
9
- };
10
- height: {
11
- min: number;
12
- ideal: number;
13
- };
14
- facingMode: string;
15
- };
16
- };
17
- getContourCoordinate(width: number, height: number): {
18
- x: number;
19
- y: number;
20
- width: number;
21
- height: number;
22
- };
23
- getBoxData(box: any): {
24
- x: any;
25
- y: any;
26
- width: any;
27
- height: any;
28
- } | null;
29
- setStylesForCanvas(canvasContainer: any): void;
30
- checkFaceInclusion(frame: any, face: any): boolean;
31
- getFaceDetections(videoRef: any): Promise<faceapi.WithFaceExpressions<faceapi.WithFaceLandmarks<{
32
- detection: faceapi.FaceDetection;
33
- }, faceapi.FaceLandmarks68>>[]>;
34
- getCanvas(videoRef: any): HTMLCanvasElement;
35
- getResizedAndDetection(canvas: any, detections: any, ctx: any, videoWidth: number, videoHeight: number): void;
36
- getFaceSnapshot(inputImage: any, box: any): Promise<string | null>;
37
- initModels(): Promise<void>;
38
- }
39
- export default function usePhotoService(): PhotoService;
40
- export {};
@@ -1,13 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppButton from '@/common/app-button/AppButton.vue';
3
- declare const meta: Meta<typeof AppButton>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppButton>;
6
- export declare const Primary: Story;
7
- export declare const Size: Story;
8
- export declare const Icon: Story;
9
- export declare const Badge: Story;
10
- export declare const Align: Story;
11
- export declare const Spacing: Story;
12
- export declare const Rounding: Story;
13
- export declare const Other: Story;
@@ -1,7 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppCheckbox from '@/common/app-checkbox/AppCheckbox.vue';
3
- declare const meta: Meta<typeof AppCheckbox>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppCheckbox>;
6
- export declare const Default: Story;
7
- export declare const States: Story;
@@ -1,8 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppDialog from '@/common/app-dialogs/AppConfirmDialog.vue';
3
- declare const meta: Meta<typeof AppDialog>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppDialog>;
6
- export declare const Edit: Story;
7
- export declare const Delete: Story;
8
- export declare const CustomMessage: Story;
@@ -1,8 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import DatePicker from '@/common/app-date-picker/AppDatePicker.vue';
3
- declare const meta: Meta<typeof DatePicker>;
4
- export default meta;
5
- type Story = StoryObj<typeof DatePicker>;
6
- export declare const Default: Story;
7
- export declare const States: Story;
8
- export declare const DateRestrictions: Story;
@@ -1,8 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppDropdown from '@/common/app-dropdown/AppDropdown.vue';
3
- declare const meta: Meta<typeof AppDropdown>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppDropdown>;
6
- export declare const Default: Story;
7
- export declare const WithSlots: Story;
8
- export declare const ContentSize: Story;
@@ -1,8 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppFile from '@/common/app-file/AppFile.vue';
3
- declare const meta: Meta<typeof AppFile>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppFile>;
6
- export declare const SingleFile: Story;
7
- export declare const MultipleFiles: Story;
8
- export declare const Disabled: Story;
@@ -1,7 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppIcon from '@/common/app-icon/AppIcon.vue';
3
- declare const meta: Meta<typeof AppIcon>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppIcon>;
6
- export declare const Default: Story;
7
- export declare const Sizes: Story;
@@ -1,11 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppInput from '@/common/app-input/AppInput.vue';
3
- declare const meta: Meta<typeof AppInput>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppInput>;
6
- export declare const Default: Story;
7
- export declare const InputTypes: Story;
8
- export declare const States: Story;
9
- export declare const Sizes: Story;
10
- export declare const Password: Story;
11
- export declare const WithMask: Story;
@@ -1,12 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppInputNew from '@/common/app-input-new/AppInputNew.vue';
3
- declare const meta: Meta<typeof AppInputNew>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppInputNew>;
6
- export declare const Default: Story;
7
- export declare const InputTypes: Story;
8
- export declare const Features: Story;
9
- export declare const States: Story;
10
- export declare const WithLabel: Story;
11
- export declare const Password: Story;
12
- export declare const WithAppendSlot: Story;
@@ -1,10 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue';
3
- declare const meta: Meta<typeof AppInputSearch>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppInputSearch>;
6
- export declare const Default: Story;
7
- export declare const InputTypes: Story;
8
- export declare const States: Story;
9
- export declare const SizesAndStyles: Story;
10
- export declare const WithMask: Story;
@@ -1,8 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppLoader from '@/common/app-loader/index.vue';
3
- declare const meta: Meta<typeof AppLoader>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppLoader>;
6
- export declare const GlobalLoader: Story;
7
- export declare const Size: Story;
8
- export declare const Thickness: Story;
@@ -1,7 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppSelect from '@/common/app-select/AppSelect.vue';
3
- declare const meta: Meta<typeof AppSelect>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppSelect>;
6
- export declare const Default: Story;
7
- export declare const States: Story;
@@ -1,8 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import AppToggle from '@/common/app-toggle/AppToggle.vue';
3
- declare const meta: Meta<typeof AppToggle>;
4
- export default meta;
5
- type Story = StoryObj<typeof AppToggle>;
6
- export declare const Default: Story;
7
- export declare const States: Story;
8
- export declare const WithBinding: Story;