Skip to content

Commit

Permalink
v1.0.0-beta.14 - add built files
Browse files Browse the repository at this point in the history
  • Loading branch information
vcolavin committed Nov 18, 2019
1 parent ec3cf96 commit 65c0eeb
Show file tree
Hide file tree
Showing 311 changed files with 75,650 additions and 0 deletions.
29 changes: 29 additions & 0 deletions dist/calcite.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

(function(doc){
var scriptElm = doc.scripts[doc.scripts.length - 1];
var warn = ['[calcite] Deprecated script, please remove: ' + scriptElm.outerHTML];

warn.push('To improve performance it is recommended to set the differential scripts in the head as follows:')

var parts = scriptElm.src.split('/');
parts.pop();
parts.push('calcite');
var url = parts.join('/');

var scriptElm = doc.createElement('script');
scriptElm.setAttribute('type', 'module');
scriptElm.src = url + '/calcite.esm.js';
warn.push(scriptElm.outerHTML);
scriptElm.setAttribute('data-stencil-namespace', 'calcite');
doc.head.appendChild(scriptElm);

scriptElm = doc.createElement('script');
scriptElm.setAttribute('nomodule', '');
scriptElm.src = url + '/calcite.js';
warn.push(scriptElm.outerHTML);
scriptElm.setAttribute('data-stencil-namespace', 'calcite');
doc.head.appendChild(scriptElm);

console.warn(warn.join('\n'));

})(document);
1 change: 1 addition & 0 deletions dist/calcite/calcite.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/calcite/calcite.esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

880 changes: 880 additions & 0 deletions dist/calcite/calcite.js

Large diffs are not rendered by default.

Empty file added dist/calcite/index.esm.js
Empty file.
1 change: 1 addition & 0 deletions dist/calcite/p-031cbc0f.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions dist/calcite/p-06c12934.system.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/calcite/p-1527e794.system.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/calcite/p-1fvarh3i.entry.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/calcite/p-20xnmn8p.system.entry.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/calcite/p-23d973ba.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/calcite/p-2977e6f6.system.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 65c0eeb

Please sign in to comment.