@ni/ok-components 0.1.25 → 0.1.26
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/all-components-bundle.js +216 -100
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +2879 -2857
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/all-components.d.ts +0 -1
- package/dist/esm/all-components.js +0 -1
- package/dist/esm/all-components.js.map +1 -1
- package/package.json +13 -13
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Production applications are encouraged to import only components
|
|
4
4
|
* that are required instead of leveraging this file.
|
|
5
5
|
*/
|
|
6
|
-
import '@ni/nimble-components/dist/esm/all-components';
|
|
7
6
|
import '@ni/spright-components/dist/esm/all-components';
|
|
8
7
|
import './button';
|
|
9
8
|
//# sourceMappingURL=all-components.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"all-components.js","sourceRoot":"","sources":["../../src/all-components.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO
|
|
1
|
+
{"version":3,"file":"all-components.js","sourceRoot":"","sources":["../../src/all-components.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,gDAAgD,CAAC;AAExD,OAAO,UAAU,CAAC","sourcesContent":["/**\n * Import of all the web components available in Nimble, Spright, and Ok.\n * Production applications are encouraged to import only components\n * that are required instead of leveraging this file.\n */\n\nimport '@ni/spright-components/dist/esm/all-components';\n\nimport './button';\n"]}
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/ok-components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"description": "NI Ok Components",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "
|
|
7
|
-
"build-bundle": "rollup --
|
|
6
|
+
"build": "tsc -p ./tsconfig.json",
|
|
7
|
+
"build-bundle": "rollup --config",
|
|
8
8
|
"lint": "eslint .",
|
|
9
9
|
"format": "eslint . --fix",
|
|
10
10
|
"pack": "npm pack",
|
|
11
11
|
"invoke-publish": "npm publish",
|
|
12
|
-
"
|
|
13
|
-
"test-chrome
|
|
14
|
-
"test-
|
|
15
|
-
"test-firefox
|
|
16
|
-
"test-
|
|
17
|
-
"test-webkit
|
|
18
|
-
"test-webkit": "karma start karma.conf.headless.js --browsers=WebkitHeadless --single-run --skip-tags SkipWebkit",
|
|
12
|
+
"test-chrome-debugger": "karma start karma.conf.cjs --browsers=ChromeDebugging --skip-tags SkipChrome",
|
|
13
|
+
"test-chrome": "karma start karma.conf.headless.cjs --browsers=ChromeHeadlessOpt --single-run --skip-tags SkipChrome",
|
|
14
|
+
"test-firefox-debugger": "karma start karma.conf.cjs --browsers=FirefoxDebugging --skip-tags SkipFirefox",
|
|
15
|
+
"test-firefox": "karma start karma.conf.headless.cjs --browsers=FirefoxHeadless --single-run --skip-tags SkipFirefox",
|
|
16
|
+
"test-webkit-debugger": "karma start karma.conf.cjs --browsers=WebkitDebugging --skip-tags SkipWebkit",
|
|
17
|
+
"test-webkit": "karma start karma.conf.headless.cjs --browsers=WebkitHeadless --single-run --skip-tags SkipWebkit",
|
|
19
18
|
"test": "concurrently --pad-prefix --timings --group \"npm:test-chrome\" \"npm:test-webkit\""
|
|
20
19
|
},
|
|
20
|
+
"type": "module",
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
23
|
"url": "git+https://github.com/ni/nimble.git"
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"@ni/fast-element": "^10.0.0",
|
|
38
38
|
"@ni/fast-foundation": "^10.1.2",
|
|
39
39
|
"@ni/fast-web-utilities": "^10.0.0",
|
|
40
|
-
"@ni/nimble-components": "^35.0.
|
|
41
|
-
"@ni/spright-components": "^6.4.
|
|
40
|
+
"@ni/nimble-components": "^35.0.2",
|
|
41
|
+
"@ni/spright-components": "^6.4.26",
|
|
42
42
|
"tslib": "^2.2.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@ni-private/eslint-config-nimble": "*",
|
|
46
46
|
"@ni-private/jasmine-extensions": "^0.0.1",
|
|
47
|
-
"@ni/jasmine-parameterized": "^1.0.
|
|
47
|
+
"@ni/jasmine-parameterized": "^1.0.9",
|
|
48
48
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
49
49
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
50
50
|
"@rollup/plugin-replace": "^6.0.0",
|