@milaboratories/uikit 2.2.4 → 2.2.6

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 (31) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/pl-uikit.js +1001 -988
  3. package/dist/pl-uikit.umd.cjs +4 -4
  4. package/dist/src/components/PlDialogModal/PlDialogModal.vue.d.ts +8 -0
  5. package/dist/src/components/PlFileDialog/PlFileDialog.vue.d.ts +3 -0
  6. package/dist/src/components/PlFileInput/PlFileInput.vue.d.ts +18 -9
  7. package/dist/src/components/PlSlideModal/PlSlideModal.vue.d.ts +3 -3
  8. package/dist/src/generated/icons-24.d.ts +1 -1
  9. package/dist/src/index.d.ts +2 -2
  10. package/dist/style.css +1 -1
  11. package/dist/tsconfig.lib.tsbuildinfo +1 -1
  12. package/package.json +3 -3
  13. package/src/assets/icons/icon-assets/24_dna-add.svg +4 -0
  14. package/src/assets/icons/icon-assets/24_dna-import.svg +4 -0
  15. package/src/assets/icons/icon-assets/24_dna.svg +3 -3
  16. package/src/assets/icons/icon-assets-min/24_dna-add.svg +1 -0
  17. package/src/assets/icons/icon-assets-min/24_dna-import.svg +1 -0
  18. package/src/assets/icons/icon-assets-min/24_dna.svg +1 -1
  19. package/src/assets/icons/icons-24-generated.json +2 -2
  20. package/src/assets/icons/icons-24-generated.scss +2 -2
  21. package/src/assets/icons/icons-set.scss +2 -1
  22. package/src/components/PlBtnSplit/pl-btn-split.scss +2 -3
  23. package/src/components/PlDialogModal/PlDialogModal.vue +5 -1
  24. package/src/components/PlFileDialog/PlFileDialog.vue +3 -0
  25. package/src/components/PlFileInput/PlFileInput.vue +16 -6
  26. package/src/components/PlMaskIcon16/PlMaskIcon16.vue +7 -1
  27. package/src/components/PlMaskIcon24/PlMaskIcon24.vue +7 -1
  28. package/src/components/PlSlideModal/PlSlideModal.vue +1 -1
  29. package/src/generated/icons-24.ts +2 -2
  30. package/src/assets/icons/icon-assets/24_files-export.svg +0 -6
  31. package/src/assets/icons/icon-assets/24_files-import.svg +0 -6
@@ -36,6 +36,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
36
36
  * Actions slot has a top border (default: `true`)
37
37
  */
38
38
  actionsHasTopBorder?: boolean;
39
+ /**
40
+ * If `true`, the modal window closes when clicking outside the modal area (default: `true`)
41
+ */
42
+ closeOnOutsideClick?: boolean;
39
43
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
40
44
  "update:modelValue": (...args: any[]) => void;
41
45
  }, string, import("vue").PublicProps, Readonly<{
@@ -75,6 +79,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
75
79
  * Actions slot has a top border (default: `true`)
76
80
  */
77
81
  actionsHasTopBorder?: boolean;
82
+ /**
83
+ * If `true`, the modal window closes when clicking outside the modal area (default: `true`)
84
+ */
85
+ closeOnOutsideClick?: boolean;
78
86
  }> & Readonly<{
79
87
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
80
88
  }>, {
@@ -6,6 +6,7 @@ declare const _default: import("vue").DefineComponent<{
6
6
  multi?: boolean;
7
7
  title?: string;
8
8
  autoSelectStorage?: boolean;
9
+ closeOnOutsideClick?: boolean;
9
10
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
10
11
  "update:modelValue": (value: boolean) => any;
11
12
  "import:files": (value: ImportedFiles) => any;
@@ -15,11 +16,13 @@ declare const _default: import("vue").DefineComponent<{
15
16
  multi?: boolean;
16
17
  title?: string;
17
18
  autoSelectStorage?: boolean;
19
+ closeOnOutsideClick?: boolean;
18
20
  }> & Readonly<{
19
21
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
20
22
  "onImport:files"?: ((value: ImportedFiles) => any) | undefined;
21
23
  }>, {
22
24
  title: string;
25
+ closeOnOutsideClick: boolean;
23
26
  extensions: string[];
24
27
  autoSelectStorage: boolean;
25
28
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -32,10 +32,6 @@ declare const __VLS_component: import("vue").DefineComponent<{
32
32
  * Allowed file extensions (should start with `.`)
33
33
  */
34
34
  extensions?: string[];
35
- /**
36
- * File dialog title
37
- */
38
- fileDialogTitle?: string;
39
35
  /**
40
36
  * Placeholder text
41
37
  */
@@ -60,6 +56,14 @@ declare const __VLS_component: import("vue").DefineComponent<{
60
56
  * Remove rounded border and change styles
61
57
  */
62
58
  cellStyle?: boolean;
59
+ /**
60
+ * File dialog title
61
+ */
62
+ fileDialogTitle?: string;
63
+ /**
64
+ * If `true`, the file dialog window closes when clicking outside the modal area (default: `true`)
65
+ */
66
+ fileDialogCloseOnOutsideClick?: boolean;
63
67
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
64
68
  "update:modelValue": (value: ImportFileHandle | undefined) => any;
65
69
  }, string, import("vue").PublicProps, Readonly<{
@@ -83,10 +87,6 @@ declare const __VLS_component: import("vue").DefineComponent<{
83
87
  * Allowed file extensions (should start with `.`)
84
88
  */
85
89
  extensions?: string[];
86
- /**
87
- * File dialog title
88
- */
89
- fileDialogTitle?: string;
90
90
  /**
91
91
  * Placeholder text
92
92
  */
@@ -111,6 +111,14 @@ declare const __VLS_component: import("vue").DefineComponent<{
111
111
  * Remove rounded border and change styles
112
112
  */
113
113
  cellStyle?: boolean;
114
+ /**
115
+ * File dialog title
116
+ */
117
+ fileDialogTitle?: string;
118
+ /**
119
+ * If `true`, the file dialog window closes when clicking outside the modal area (default: `true`)
120
+ */
121
+ fileDialogCloseOnOutsideClick?: boolean;
114
122
  }> & Readonly<{
115
123
  "onUpdate:modelValue"?: ((value: ImportFileHandle | undefined) => any) | undefined;
116
124
  }>, {
@@ -120,8 +128,9 @@ declare const __VLS_component: import("vue").DefineComponent<{
120
128
  helper: string;
121
129
  placeholder: string;
122
130
  extensions: string[];
123
- fileDialogTitle: string;
124
131
  cellStyle: boolean;
132
+ fileDialogTitle: string;
133
+ fileDialogCloseOnOutsideClick: boolean;
125
134
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
126
135
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
127
136
  export default _default;
@@ -13,7 +13,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
13
13
  */
14
14
  shadow?: boolean;
15
15
  /**
16
- * If `true`, the modal window closes when clicking outside the modal area.
16
+ * If `true`, the modal window closes when clicking outside the modal area (default: `true`)
17
17
  */
18
18
  closeOnOutsideClick?: boolean;
19
19
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
@@ -32,7 +32,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
32
32
  */
33
33
  shadow?: boolean;
34
34
  /**
35
- * If `true`, the modal window closes when clicking outside the modal area.
35
+ * If `true`, the modal window closes when clicking outside the modal area (default: `true`)
36
36
  */
37
37
  closeOnOutsideClick?: boolean;
38
38
  }> & Readonly<{
@@ -40,8 +40,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
40
40
  }>, {
41
41
  width: string;
42
42
  modelValue: boolean;
43
- shadow: boolean;
44
43
  closeOnOutsideClick: boolean;
44
+ shadow: boolean;
45
45
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
46
46
  title?(_: {}): any;
47
47
  default?(_: {}): any;
@@ -1 +1 @@
1
- export declare const maskIcons24: readonly ["add-layer", "add", "align-center", "align-left", "align-right", "annotate", "annotation", "area", "arrow-down", "arrow-left", "arrow-link", "arrow-right", "arrow-up", "axes", "bar-cross", "bar-error", "bar-stacked", "bar-trend", "bar", "bindot", "box", "boxplot-binned", "boxplot-jitter", "boxplot-notched", "boxplot", "bubble", "calendar", "canvas", "cell-type-num", "cell-type-txt", "checkbox-checked", "checkbox-intermediate", "checkbox", "checkmark", "chevron-down", "chevron-first", "chevron-last", "chevron-left", "chevron-right", "chevron-sort", "chevron-up", "clipboard-copied", "clipboard", "close", "cloud-download", "cloud-offline", "cloud-online", "cloud-upload", "cluster", "code", "color-fill", "color-none", "color-stroke", "color", "columns", "connected-points", "container", "cookie", "copy", "cpu", "data-dimentions", "debug", "delete-bin", "delete-circle", "delete-clear", "dendrogram-X-line", "dendrogram-X", "dendrogram-Y-line", "dendrogram-Y", "dna", "download", "drag-dots", "drag-horizontal", "drag-vertical", "duplicate", "edit", "error-bar", "error", "expand-left", "expand-right", "export", "file-doc-add", "file-doc-download", "file-doc-import", "file-doc", "files-export", "files-import", "filter-on", "filter", "fire-tips", "folder-parent", "frame-type-all", "frame-type-bottom", "frame-type-left-bottom", "frame-type-left", "frame-type-none", "generate", "graph", "heatmap", "help-outline", "help", "info-outline", "info", "jitter", "jump-link", "lasso", "layers", "learn", "legend-box-dot", "legend-box", "legend", "line-binned", "line-error", "line-jitter", "line", "linetype-dashed", "linetype-dotdash", "linetype-dotted", "linetype-longdash", "linetype-solid", "linetype-twodash", "link-disabled", "link", "loading", "lock", "maximize", "menu", "minimize", "minus", "more", "paper-clip", "pause", "pin", "play", "position-bottom-annotation", "position-bottom", "position-left-annotation", "position-left", "position-right-annotation", "position-right", "position-top-annotation", "position-top", "product", "publications", "radio-button-checked", "radio-button", "renew", "restart", "reverse", "rotation-0", "rotation-45", "rotation-90", "search", "server-on", "server", "settings", "sina", "skatterplot", "slice", "social-github", "social-linkedin", "social-twitter-X", "social-twitter-bird", "social-youtube", "sort-list-down", "sort-list-up", "sort", "statistics", "stop", "strip-plot", "success", "table-add", "table-alias", "table-import", "table", "template", "terminal", "text-align-center", "text-align-left", "text-align-right", "theme-dark", "theme-light", "time", "tune", "venn", "view-hide", "view-show", "violin-binned", "violin-jitter", "violin", "warning", "wetlab", "windows-collapse", "windows-expand", "x-axis", "y-axis", "zip", "zoom-in", "zoom-out"];
1
+ export declare const maskIcons24: readonly ["add-layer", "add", "align-center", "align-left", "align-right", "annotate", "annotation", "area", "arrow-down", "arrow-left", "arrow-link", "arrow-right", "arrow-up", "axes", "bar-cross", "bar-error", "bar-stacked", "bar-trend", "bar", "bindot", "box", "boxplot-binned", "boxplot-jitter", "boxplot-notched", "boxplot", "bubble", "calendar", "canvas", "cell-type-num", "cell-type-txt", "checkbox-checked", "checkbox-intermediate", "checkbox", "checkmark", "chevron-down", "chevron-first", "chevron-last", "chevron-left", "chevron-right", "chevron-sort", "chevron-up", "clipboard-copied", "clipboard", "close", "cloud-download", "cloud-offline", "cloud-online", "cloud-upload", "cluster", "code", "color-fill", "color-none", "color-stroke", "color", "columns", "connected-points", "container", "cookie", "copy", "cpu", "data-dimentions", "debug", "delete-bin", "delete-circle", "delete-clear", "dendrogram-X-line", "dendrogram-X", "dendrogram-Y-line", "dendrogram-Y", "dna-add", "dna-import", "dna", "download", "drag-dots", "drag-horizontal", "drag-vertical", "duplicate", "edit", "error-bar", "error", "expand-left", "expand-right", "export", "file-doc-add", "file-doc-download", "file-doc-import", "file-doc", "filter-on", "filter", "fire-tips", "folder-parent", "frame-type-all", "frame-type-bottom", "frame-type-left-bottom", "frame-type-left", "frame-type-none", "generate", "graph", "heatmap", "help-outline", "help", "info-outline", "info", "jitter", "jump-link", "lasso", "layers", "learn", "legend-box-dot", "legend-box", "legend", "line-binned", "line-error", "line-jitter", "line", "linetype-dashed", "linetype-dotdash", "linetype-dotted", "linetype-longdash", "linetype-solid", "linetype-twodash", "link-disabled", "link", "loading", "lock", "maximize", "menu", "minimize", "minus", "more", "paper-clip", "pause", "pin", "play", "position-bottom-annotation", "position-bottom", "position-left-annotation", "position-left", "position-right-annotation", "position-right", "position-top-annotation", "position-top", "product", "publications", "radio-button-checked", "radio-button", "renew", "restart", "reverse", "rotation-0", "rotation-45", "rotation-90", "search", "server-on", "server", "settings", "sina", "skatterplot", "slice", "social-github", "social-linkedin", "social-twitter-X", "social-twitter-bird", "social-youtube", "sort-list-down", "sort-list-up", "sort", "statistics", "stop", "strip-plot", "success", "table-add", "table-alias", "table-import", "table", "template", "terminal", "text-align-center", "text-align-left", "text-align-right", "theme-dark", "theme-light", "time", "tune", "venn", "view-hide", "view-show", "violin-binned", "violin-jitter", "violin", "warning", "wetlab", "windows-collapse", "windows-expand", "x-axis", "y-axis", "zip", "zoom-in", "zoom-out"];
@@ -235,6 +235,8 @@ declare const DemoData: {
235
235
  "dendrogram-X": string;
236
236
  "dendrogram-Y-line": string;
237
237
  "dendrogram-Y": string;
238
+ "dna-add": string;
239
+ "dna-import": string;
238
240
  dna: string;
239
241
  download: string;
240
242
  "drag-dots": string;
@@ -251,8 +253,6 @@ declare const DemoData: {
251
253
  "file-doc-download": string;
252
254
  "file-doc-import": string;
253
255
  "file-doc": string;
254
- "files-export": string;
255
- "files-import": string;
256
256
  "filter-on": string;
257
257
  filter: string;
258
258
  "fire-tips": string;