@siemens/ix-vue 0.0.0-pr-2166-20251001134702 → 0.0.0-pr-2212-20251017115125
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/READMEOSS.html +29 -29
- package/dist/components.d.ts +2 -0
- package/dist/components.js +305 -286
- package/dist/components.js.map +1 -1
- package/dist/context/IxApplicationContext.vue2.js +4 -2
- package/dist/context/IxApplicationContext.vue2.js.map +1 -1
- package/dist/index.js +77 -75
- package/dist/modal/Modal.vue.d.ts +2 -2
- package/dist/modal/index.js +4 -2
- 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;
|
|
95
97
|
closeOnBackdropClick: boolean;
|
|
96
98
|
beforeDismiss: (reason?: any) => boolean | Promise<boolean>;
|
|
97
99
|
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,6 +49,7 @@ 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";
|
|
52
53
|
import "@siemens/ix/components/ix-key-value.js";
|
|
53
54
|
import "@siemens/ix/components/ix-key-value-list.js";
|
|
54
55
|
import "@siemens/ix/components/ix-kpi.js";
|
|
@@ -102,13 +103,14 @@ import "@siemens/ix/components/ix-tree.js";
|
|
|
102
103
|
import "@siemens/ix/components/ix-tree-item.js";
|
|
103
104
|
import "@siemens/ix/components/ix-typography.js";
|
|
104
105
|
import "@siemens/ix/components/ix-upload.js";
|
|
106
|
+
import "@siemens/ix/components/ix-validation-tooltip.js";
|
|
105
107
|
import "@siemens/ix/components/ix-workflow-step.js";
|
|
106
108
|
import "@siemens/ix/components/ix-workflow-steps.js";
|
|
107
109
|
import "./ix-view.js";
|
|
108
|
-
async function
|
|
110
|
+
async function mr(o) {
|
|
109
111
|
return r(o);
|
|
110
112
|
}
|
|
111
113
|
export {
|
|
112
|
-
|
|
114
|
+
mr as showModal
|
|
113
115
|
};
|
|
114
116
|
//# 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-2212-20251017115125",
|
|
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-2212-20251017115125",
|
|
25
25
|
"@stencil/vue-output-target": "^0.11.8"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"vite": "^6.3.5",
|
|
36
36
|
"vue-tsc": "^2.2.10",
|
|
37
37
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
38
|
-
"@siemens/ix": "0.0.0-pr-
|
|
38
|
+
"@siemens/ix": "0.0.0-pr-2212-20251017115125",
|
|
39
39
|
"eslint-config-ix": "1.0.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@siemens/ix-icons": "^3.
|
|
42
|
+
"@siemens/ix-icons": "^3.2.0",
|
|
43
43
|
"vue": ">=3.2.45"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|