@rancher/create-extension 3.0.6 → 3.0.8
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.
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
name: Test extensions build
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
on:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
defaults:
|
|
8
|
+
run:
|
|
9
|
+
shell: bash
|
|
10
|
+
working-directory: ./
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
build-extension-charts:
|
|
14
|
+
uses: rancher/dashboard/.github/workflows/build-extensions-test.yml@master
|
|
15
|
+
# with this input you can disable this test for any given extension
|
|
16
|
+
# if an exceptional case occurs. Example:
|
|
17
|
+
# with:
|
|
18
|
+
# disable_exts_build: elemental,elemental-v2
|
|
19
|
+
# where elemental,elemental-v2 are subfolder names under /pkg
|
package/app/init
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rancher/create-extension",
|
|
3
3
|
"description": "Rancher UI Extension generator",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.8",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "SUSE",
|
|
7
7
|
"packageManager": "yarn@4.5.0",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"semver": "^7.6.3"
|
|
24
24
|
},
|
|
25
25
|
"_pkgs": {
|
|
26
|
-
"core-js": "3.
|
|
27
|
-
"css-loader": "
|
|
26
|
+
"core-js": "3.45.0",
|
|
27
|
+
"css-loader": "7.1.2",
|
|
28
28
|
"@types/lodash": "4.14.184",
|
|
29
|
-
"@rancher/components": "0.3.0-alpha.
|
|
29
|
+
"@rancher/components": "0.3.0-alpha.2"
|
|
30
30
|
}
|
|
31
31
|
}
|
package/pkg/vue-shim.ts
CHANGED
|
@@ -1,4 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
export { };
|
|
3
|
+
|
|
4
|
+
declare module 'vue' {
|
|
5
|
+
interface ComponentCustomProperties {
|
|
6
|
+
/**
|
|
7
|
+
* Lookup a given string with the given arguments
|
|
8
|
+
* @param raw if set, do not do HTML escaping.
|
|
9
|
+
*/
|
|
10
|
+
t: {
|
|
11
|
+
(key: string, args?: Record<string, any>, raw?: boolean): string;
|
|
12
|
+
(options: { k: string; raw?: boolean; tag?: string | Record<string, any>; escapehtml?: boolean }): string;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
4
15
|
}
|