@stencil/core 2.18.0 → 2.18.1
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/cli/index.cjs +261 -206
- package/cli/index.d.ts +1 -0
- package/cli/index.js +261 -206
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.d.ts +2 -2
- package/compiler/stencil.js +48945 -47701
- package/compiler/stencil.min.js +2 -2
- package/dependencies.json +1 -1
- package/dev-server/client/index.d.ts +2 -2
- package/dev-server/client/index.js +241 -241
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +3 -3
- package/dev-server/index.d.ts +1 -1
- package/dev-server/index.js +2 -2
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +1230 -1199
- package/internal/app-data/package.json +1 -1
- package/internal/client/css-shim.js +2 -2
- package/internal/client/dom.js +1 -1
- package/internal/client/index.js +619 -601
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/client/patch-esm.js +1 -1
- package/internal/client/polyfills/css-shim.js +1 -1
- package/internal/client/shadow-css.js +1 -1
- package/internal/hydrate/index.js +119 -119
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +100 -100
- package/internal/package.json +1 -1
- package/internal/stencil-core/index.d.ts +8 -10
- package/internal/stencil-private.d.ts +77 -34
- package/internal/stencil-public-compiler.d.ts +2 -2
- package/internal/stencil-public-runtime.d.ts +15 -4
- package/internal/testing/index.js +148 -148
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +898 -898
- package/mock-doc/index.js +898 -898
- package/mock-doc/package.json +1 -1
- package/package.json +19 -26
- package/readme.md +27 -33
- package/screenshot/index.d.ts +1 -1
- package/screenshot/index.js +3 -3
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +983 -849
- package/sys/node/glob.js +1 -1
- package/sys/node/index.d.ts +2 -0
- package/sys/node/index.js +374 -373
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.d.ts +6 -6
- package/testing/index.js +345 -345
- package/testing/jest/jest-config.d.ts +1 -1
- package/testing/matchers/index.d.ts +3 -3
- package/testing/mock-fetch.d.ts +1 -1
- package/testing/mocks.d.ts +2 -2
- package/testing/package.json +1 -1
- package/testing/puppeteer/puppeteer-element.d.ts +2 -2
- package/testing/puppeteer/puppeteer-events.d.ts +1 -1
- package/testing/testing-logger.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
package/sys/node/package.json
CHANGED
package/sys/node/worker.js
CHANGED
package/testing/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { createJestPuppeteerEnvironment } from './jest/jest-environment';
|
|
2
|
-
export { createTesting } from './testing';
|
|
3
|
-
export { createTestRunner } from './jest/jest-runner';
|
|
4
2
|
export { jestPreprocessor } from './jest/jest-preprocessor';
|
|
3
|
+
export { createTestRunner } from './jest/jest-runner';
|
|
5
4
|
export { jestSetupTestFramework } from './jest/jest-setup-test-framework';
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
5
|
+
export { mockFetch, MockHeaders, MockRequest, MockRequestInfo, MockRequestInit, MockResponse, MockResponseInit, } from './mock-fetch';
|
|
6
|
+
export { mockBuildCtx, mockCompilerCtx, mockCompilerSystem, mockConfig, mockDocument, mockLoadConfigInit, mockLogger, mockModule, mockValidatedConfig, mockWindow, } from './mocks';
|
|
7
|
+
export { E2EElement, E2EPage, newE2EPage } from './puppeteer';
|
|
8
8
|
export { newSpecPage } from './spec-page';
|
|
9
|
-
export { shuffleArray } from './testing-utils';
|
|
10
9
|
export { transpile } from './test-transpile';
|
|
10
|
+
export { createTesting } from './testing';
|
|
11
|
+
export { shuffleArray } from './testing-utils';
|
|
11
12
|
export type { EventSpy, SpecPage, Testing } from '@stencil/core/internal';
|
|
12
|
-
export { E2EElement, E2EPage, newE2EPage } from './puppeteer';
|