@siemens/ix-vue 0.0.0-pr-2155-20250924075220 → 0.0.0-pr-2166-20251001083917
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/components.d.ts +0 -2
- package/dist/components.js +286 -304
- package/dist/components.js.map +1 -1
- package/dist/context/IxApplicationContext.vue2.js +2 -4
- package/dist/context/IxApplicationContext.vue2.js.map +1 -1
- package/dist/index.js +75 -77
- package/dist/modal/Modal.vue.d.ts +2 -2
- package/dist/modal/index.js +2 -4
- package/dist/modal/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -92,11 +92,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
92
92
|
onDialogDismiss?: (args_0: IxModalCustomEvent<any>) => any;
|
|
93
93
|
}>, {
|
|
94
94
|
size: IxModalSize;
|
|
95
|
-
animation: boolean;
|
|
96
|
-
backdrop: boolean;
|
|
97
95
|
closeOnBackdropClick: boolean;
|
|
98
96
|
beforeDismiss: (reason?: any) => boolean | Promise<boolean>;
|
|
99
97
|
centered: boolean;
|
|
98
|
+
animation: boolean;
|
|
99
|
+
backdrop: boolean;
|
|
100
100
|
closeOnEscape: boolean;
|
|
101
101
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
102
102
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
package/dist/modal/index.js
CHANGED
|
@@ -49,7 +49,6 @@ import "@siemens/ix/components/ix-helper-text.js";
|
|
|
49
49
|
import "@siemens/ix/components/ix-icon-button.js";
|
|
50
50
|
import "@siemens/ix/components/ix-icon-toggle-button.js";
|
|
51
51
|
import "@siemens/ix/components/ix-input.js";
|
|
52
|
-
import "@siemens/ix/components/ix-input-group.js";
|
|
53
52
|
import "@siemens/ix/components/ix-key-value.js";
|
|
54
53
|
import "@siemens/ix/components/ix-key-value-list.js";
|
|
55
54
|
import "@siemens/ix/components/ix-kpi.js";
|
|
@@ -103,14 +102,13 @@ import "@siemens/ix/components/ix-tree.js";
|
|
|
103
102
|
import "@siemens/ix/components/ix-tree-item.js";
|
|
104
103
|
import "@siemens/ix/components/ix-typography.js";
|
|
105
104
|
import "@siemens/ix/components/ix-upload.js";
|
|
106
|
-
import "@siemens/ix/components/ix-validation-tooltip.js";
|
|
107
105
|
import "@siemens/ix/components/ix-workflow-step.js";
|
|
108
106
|
import "@siemens/ix/components/ix-workflow-steps.js";
|
|
109
107
|
import "./ix-view.js";
|
|
110
|
-
async function
|
|
108
|
+
async function tr(o) {
|
|
111
109
|
return r(o);
|
|
112
110
|
}
|
|
113
111
|
export {
|
|
114
|
-
|
|
112
|
+
tr as showModal
|
|
115
113
|
};
|
|
116
114
|
//# sourceMappingURL=index.js.map
|
package/dist/modal/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../src/modal/index.ts"],"sourcesContent":["import {\n ModalConfig as IxModalConfig,\n showModal as _showModal,\n} from '@siemens/ix';\nimport { VNode } from 'vue';\n\nexport { default as Modal } from './Modal.vue';\nexport { default as IxOverlay } from './IxOverlay.vue';\nexport * from './constants';\nexport * from './modal-slot-props';\n\nexport type ModalConfig = {\n content: VNode;\n};\n\nexport async function showModal(\n config: Omit<IxModalConfig, 'content'> & ModalConfig\n) {\n return _showModal(config);\n}\n"],"names":["showModal","config","_showModal"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/modal/index.ts"],"sourcesContent":["import {\n ModalConfig as IxModalConfig,\n showModal as _showModal,\n} from '@siemens/ix';\nimport { VNode } from 'vue';\n\nexport { default as Modal } from './Modal.vue';\nexport { default as IxOverlay } from './IxOverlay.vue';\nexport * from './constants';\nexport * from './modal-slot-props';\n\nexport type ModalConfig = {\n content: VNode;\n};\n\nexport async function showModal(\n config: Omit<IxModalConfig, 'content'> & ModalConfig\n) {\n return _showModal(config);\n}\n"],"names":["showModal","config","_showModal"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAeA,eAAsBA,GACpBC,GACA;AACA,SAAOC,EAAWD,CAAM;AAC1B;"}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"homepage": "https://ix.siemens.io",
|
|
4
4
|
"author": "Siemens AG",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "0.0.0-pr-
|
|
6
|
+
"version": "0.0.0-pr-2166-20251001083917",
|
|
7
7
|
"description": "Siemens iX for Vue",
|
|
8
8
|
"bugs": "https://github.com/siemens/ix/issues",
|
|
9
9
|
"repository": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@siemens/ix": "0.0.0-pr-
|
|
24
|
+
"@siemens/ix": "0.0.0-pr-2166-20251001083917",
|
|
25
25
|
"@stencil/vue-output-target": "^0.11.8"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"vite": "^6.3.5",
|
|
36
36
|
"vue-tsc": "^2.2.10",
|
|
37
37
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
38
|
+
"@siemens/ix": "0.0.0-pr-2166-20251001083917",
|
|
39
|
+
"eslint-config-ix": "1.0.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@siemens/ix-icons": "^3.0.0",
|