smoothly 0.2.9 → 0.2.10

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.
Files changed (46) hide show
  1. package/dist/cjs/{Notice-839702d8.js → Notice-a540b9fb.js} +1 -1
  2. package/dist/cjs/{Trigger-cf376531.js → Trigger-3443997e.js} +92 -55
  3. package/dist/cjs/{index-1c61bdd3.js → index-3efe2a41.js} +18 -11
  4. package/dist/cjs/index.cjs.js +3 -3
  5. package/dist/cjs/loader.cjs.js +3 -3
  6. package/dist/cjs/smoothly-accordion_51.cjs.entry.js +433 -13016
  7. package/dist/cjs/smoothly-google-font.cjs.entry.js +1 -1
  8. package/dist/cjs/smoothly-radio-group.cjs.entry.js +1 -1
  9. package/dist/cjs/smoothly-reorder.cjs.entry.js +1 -1
  10. package/dist/cjs/smoothly-trigger-sink.cjs.entry.js +2 -2
  11. package/dist/cjs/smoothly-trigger-source.cjs.entry.js +2 -2
  12. package/dist/cjs/smoothly.cjs.js +3 -3
  13. package/dist/collection/collection-manifest.json +1 -1
  14. package/dist/collection/components/display/index.js +27 -2
  15. package/dist/collection/components/display-date-time/index.js +3 -0
  16. package/dist/custom-elements/index.js +533 -13079
  17. package/dist/esm/{Notice-608b552c.js → Notice-4d3fbaaf.js} +1 -1
  18. package/dist/esm/{Trigger-365408f0.js → Trigger-327e506e.js} +92 -55
  19. package/dist/esm/{index-a3737440.js → index-4d9efff8.js} +18 -11
  20. package/dist/esm/index.js +4 -4
  21. package/dist/esm/loader.js +3 -3
  22. package/dist/esm/smoothly-accordion_51.entry.js +433 -13016
  23. package/dist/esm/smoothly-google-font.entry.js +1 -1
  24. package/dist/esm/smoothly-radio-group.entry.js +1 -1
  25. package/dist/esm/smoothly-reorder.entry.js +1 -1
  26. package/dist/esm/smoothly-trigger-sink.entry.js +2 -2
  27. package/dist/esm/smoothly-trigger-source.entry.js +2 -2
  28. package/dist/esm/smoothly.js +3 -3
  29. package/dist/smoothly/index.esm.js +1 -1
  30. package/dist/smoothly/p-191ee4b8.js +2 -0
  31. package/dist/smoothly/{p-0215b4da.entry.js → p-7a5eda51.entry.js} +1 -1
  32. package/dist/smoothly/{p-eec1c703.entry.js → p-8e4e941e.entry.js} +1 -1
  33. package/dist/smoothly/{p-993534fa.entry.js → p-919ae3e8.entry.js} +1 -1
  34. package/dist/smoothly/{p-6f009ac9.entry.js → p-9bc77fba.entry.js} +1 -1
  35. package/dist/smoothly/p-b1c579b3.js +1 -0
  36. package/dist/smoothly/{p-8ae38136.entry.js → p-d5d4832d.entry.js} +1 -1
  37. package/dist/smoothly/{p-6ca0d36c.js → p-d8a81a07.js} +1 -1
  38. package/dist/smoothly/p-fbcf1356.entry.js +1 -0
  39. package/dist/smoothly/smoothly.esm.js +1 -1
  40. package/dist/types/components/display/index.d.ts +2 -1
  41. package/dist/types/components/display-date-time/index.d.ts +3 -1
  42. package/dist/types/components.d.ts +148 -42
  43. package/package.json +14 -37
  44. package/dist/smoothly/p-0cba3e3d.js +0 -1
  45. package/dist/smoothly/p-7a30d9b8.js +0 -1
  46. package/dist/smoothly/p-9d825b5a.entry.js +0 -1
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const index = require('./index-1c61bdd3.js');
3
+ const index = require('./index-3efe2a41.js');
4
4
 
5
5
  const appendToMap = (map, propName, value) => {
6
6
  const items = map.get(propName);
@@ -280,56 +280,83 @@ class None extends Symmetric$1 {
280
280
  }
281
281
  }
282
282
 
283
- class RSA extends Base {
284
- constructor(hash, publicKey, privateKey) {
283
+ class Rsa extends Base {
284
+ constructor(variant, publicKey, privateKey) {
285
285
  super();
286
- this.hash = hash;
287
- if (publicKey) {
288
- if (typeof publicKey == "string")
289
- publicKey = decode(publicKey);
290
- this.publicKey = crypto.subtle.importKey("spki", publicKey, { name: "RSASSA-PKCS1-v1_5", hash: { name: hash } }, false, ["verify"]);
291
- }
292
- if (privateKey) {
293
- if (typeof privateKey == "string")
294
- privateKey = decode(privateKey);
295
- this.privateKey = crypto.subtle.importKey("pkcs8", privateKey, { name: "RSASSA-PKCS1-v1_5", hash: { name: hash } }, true, ["sign"]);
296
- }
286
+ this.variant = variant;
287
+ this.publicKey = publicKey;
288
+ this.privateKey = privateKey;
289
+ }
290
+ get parameters() {
291
+ return getParameters(this.variant);
297
292
  }
298
293
  async signBinary(data) {
299
- return new Uint8Array(await crypto.subtle.sign("RSASSA-PKCS1-v1_5", await this.privateKey, data));
294
+ return this.privateKey
295
+ ? new Uint8Array(await crypto.subtle.sign(this.parameters, await this.privateKey, data))
296
+ : new Uint8Array(0);
300
297
  }
301
298
  async verifyBinary(data, signature) {
302
- return crypto.subtle.verify("RSASSA-PKCS1-v1_5", await this.publicKey, signature, data);
299
+ return !!this.publicKey && crypto.subtle.verify(this.parameters, await this.publicKey, signature, data);
303
300
  }
304
- }
305
-
306
- class RSAPSS extends Base {
307
- constructor(hash, publicKey, privateKey) {
308
- super();
309
- this.hash = hash;
310
- if (publicKey) {
311
- if (typeof publicKey == "string")
312
- publicKey = decode(publicKey);
313
- this.publicKey = crypto.subtle.importKey("spki", publicKey, { name: "RSA-PSS", hash: { name: hash } }, false, [
314
- "verify",
315
- ]);
316
- }
317
- if (privateKey) {
318
- if (typeof privateKey == "string")
319
- privateKey = decode(privateKey);
320
- this.privateKey = crypto.subtle.importKey("pkcs8", privateKey, { name: "RSA-PSS", hash: { name: hash } }, true, [
321
- "sign",
322
- "verify",
323
- ]);
324
- }
301
+ async export(type, format = "base64") {
302
+ const key = await (type == "private" ? this.privateKey : this.publicKey);
303
+ let result;
304
+ if (key)
305
+ switch (format) {
306
+ case "jwk":
307
+ result = await crypto.subtle.exportKey("jwk", key);
308
+ break;
309
+ case "buffer":
310
+ result = await crypto.subtle.exportKey(type == "private" ? "pkcs8" : "spki", key);
311
+ break;
312
+ case "base64":
313
+ {
314
+ const data = await this.export(type, "buffer");
315
+ result = data && encode(new Uint8Array(data), "standard", "=");
316
+ }
317
+ break;
318
+ case "pem":
319
+ {
320
+ const data = await this.export(type, "base64");
321
+ result =
322
+ data &&
323
+ [
324
+ `-----BEGIN ${type.toUpperCase()} KEY-----`,
325
+ ...slice(data, 64),
326
+ `-----END ${type.toUpperCase()} KEY-----`,
327
+ ].join("\n");
328
+ }
329
+ break;
330
+ }
331
+ return result;
325
332
  }
326
- async signBinary(data) {
327
- return new Uint8Array(await crypto.subtle.sign({ name: "RSA-PSS", saltLength: 128 }, await this.privateKey, data));
333
+ static import(variant, hash, publicKey, privateKey) {
334
+ return new Rsa(variant, Rsa.importHelper(variant, hash, "public", publicKey), Rsa.importHelper(variant, hash, "private", privateKey));
328
335
  }
329
- async verifyBinary(data, signature) {
330
- return crypto.subtle.verify({ name: "RSA-PSS", saltLength: 128 }, await this.publicKey, signature, data);
336
+ static importHelper(variant, hash, type, key) {
337
+ if (typeof key == "string")
338
+ key = decode(key);
339
+ return (key &&
340
+ crypto.subtle.importKey(type == "private" ? "pkcs8" : "spki", key, { name: getParameters(variant).name, hash: { name: hash } }, true, [type == "private" ? "sign" : "verify"]));
341
+ }
342
+ static generate(variant, hash, length) {
343
+ const keyPair = crypto.subtle.generateKey({
344
+ name: getParameters(variant).name,
345
+ modulusLength: length,
346
+ publicExponent: new Uint8Array([1, 0, 1]),
347
+ hash,
348
+ }, true, ["sign", "verify"]);
349
+ return new Rsa(variant, keyPair.then(value => value.publicKey), keyPair.then(value => value.privateKey));
331
350
  }
332
351
  }
352
+ function* slice(data, length) {
353
+ let start = 0;
354
+ while (start < data.length)
355
+ yield data.slice(start, (start = start + length));
356
+ }
357
+ function getParameters(variant) {
358
+ return variant == "PSS" ? { name: "RSA-PSS", saltLength: 128 } : { name: "RSASSA-PKCS1-v1_5" };
359
+ }
333
360
 
334
361
  var Signer;
335
362
  (function (Signer) {
@@ -339,30 +366,40 @@ var Signer;
339
366
  (function (Hash$1) {
340
367
  Hash$1.is = Hash.is;
341
368
  })(Signer.Hash || (Signer.Hash = {}));
342
- function create(algorithm, hash, ...keys) {
369
+ function generate(algorithm, hash, length) {
343
370
  let result;
344
371
  switch (algorithm) {
345
- case "HMAC":
346
- if (hash != undefined)
347
- result = new HMAC(hash, keys[0]);
348
- break;
349
372
  case "RSA":
350
- if (hash != undefined)
351
- result = new RSA(hash, keys[0], keys[1]);
373
+ result = Rsa.generate("SSA", hash, length);
352
374
  break;
353
375
  case "RSA-PSS":
354
- if (hash != undefined)
355
- result = new RSAPSS(hash, keys[0], keys[1]);
356
- break;
357
- case "ECDSA":
358
- if (hash != undefined)
359
- result = new ECDSA(hash, keys[0], keys[1]);
376
+ result = Rsa.generate("PSS", hash, length);
360
377
  break;
361
- case "None":
362
- result = new None();
363
378
  }
364
379
  return result;
365
380
  }
381
+ Signer.generate = generate;
382
+ function create(algorithm, hash, ...keys) {
383
+ let result;
384
+ if (hash != undefined)
385
+ switch (algorithm) {
386
+ case "HMAC":
387
+ result = new HMAC(hash, keys[0]);
388
+ break;
389
+ case "RSA":
390
+ result = Rsa.import("SSA", hash, keys[0], keys[1]);
391
+ break;
392
+ case "RSA-PSS":
393
+ result = Rsa.import("PSS", hash, keys[0], keys[1]);
394
+ break;
395
+ case "ECDSA":
396
+ result = new ECDSA(hash, keys[0], keys[1]);
397
+ break;
398
+ }
399
+ else if (algorithm == "None")
400
+ result = new None();
401
+ return result;
402
+ }
366
403
  Signer.create = create;
367
404
  })(Signer || (Signer = {}));
368
405
 
@@ -43,10 +43,10 @@ const plt = {
43
43
  ce: (eventName, opts) => new CustomEvent(eventName, opts),
44
44
  };
45
45
  const promiseResolve = (v) => Promise.resolve(v);
46
- const supportsConstructibleStylesheets = /*@__PURE__*/ (() => {
46
+ const supportsConstructableStylesheets = /*@__PURE__*/ (() => {
47
47
  try {
48
48
  new CSSStyleSheet();
49
- return typeof new CSSStyleSheet().replace === 'function';
49
+ return typeof new CSSStyleSheet().replaceSync === 'function';
50
50
  }
51
51
  catch (e) { }
52
52
  return false;
@@ -100,9 +100,14 @@ const uniqueTime = (key, measureText) => {
100
100
  const rootAppliedStyles = new WeakMap();
101
101
  const registerStyle = (scopeId, cssText, allowCS) => {
102
102
  let style = styles.get(scopeId);
103
- if (supportsConstructibleStylesheets && allowCS) {
103
+ if (supportsConstructableStylesheets && allowCS) {
104
104
  style = (style || new CSSStyleSheet());
105
- style.replace(cssText);
105
+ if (typeof style === 'string') {
106
+ style = cssText;
107
+ }
108
+ else {
109
+ style.replaceSync(cssText);
110
+ }
106
111
  }
107
112
  else {
108
113
  style = cssText;
@@ -111,7 +116,7 @@ const registerStyle = (scopeId, cssText, allowCS) => {
111
116
  };
112
117
  const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
113
118
  let scopeId = getScopeId(cmpMeta);
114
- let style = styles.get(scopeId);
119
+ const style = styles.get(scopeId);
115
120
  // if an element is NOT connected then getRootNode() will return the wrong root node
116
121
  // so the fallback is to always use the document for the root node in those cases
117
122
  styleContainerNode = styleContainerNode.nodeType === 11 /* DocumentFragment */ ? styleContainerNode : doc;
@@ -201,7 +206,7 @@ const h = (nodeName, vnodeData, ...children) => {
201
206
  let slotName = null;
202
207
  let simple = false;
203
208
  let lastSimple = false;
204
- let vNodeChildren = [];
209
+ const vNodeChildren = [];
205
210
  const walk = (c) => {
206
211
  for (let i = 0; i < c.length; i++) {
207
212
  child = c[i];
@@ -410,7 +415,7 @@ const setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
410
415
  if ((isProp || (isComplex && newValue !== null)) && !isSvg) {
411
416
  try {
412
417
  if (!elm.tagName.includes('-')) {
413
- let n = newValue == null ? '' : newValue;
418
+ const n = newValue == null ? '' : newValue;
414
419
  // Workaround for Safari, moving the <input> caret when re-assigning the same valued
415
420
  if (memberName === 'list') {
416
421
  isProp = false;
@@ -487,7 +492,7 @@ const updateElement = (oldVnode, newVnode, isSvgMode, memberName) => {
487
492
  };
488
493
  const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
489
494
  // tslint:disable-next-line: prefer-const
490
- let newVNode = newParentVNode.$children$[childIndex];
495
+ const newVNode = newParentVNode.$children$[childIndex];
491
496
  let i = 0;
492
497
  let elm;
493
498
  let childNode;
@@ -820,7 +825,7 @@ const patch = (oldVNode, newVNode) => {
820
825
  };
821
826
  const updateFallbackSlotVisibility = (elm) => {
822
827
  // tslint:disable-next-line: prefer-const
823
- let childNodes = elm.childNodes;
828
+ const childNodes = elm.childNodes;
824
829
  let childNode;
825
830
  let i;
826
831
  let ilen;
@@ -873,8 +878,8 @@ const relocateSlotContent = (elm) => {
873
878
  let relocateNodeData;
874
879
  let j;
875
880
  let i = 0;
876
- let childNodes = elm.childNodes;
877
- let ilen = childNodes.length;
881
+ const childNodes = elm.childNodes;
882
+ const ilen = childNodes.length;
878
883
  for (; i < ilen; i++) {
879
884
  childNode = childNodes[i];
880
885
  if (childNode['s-sr'] && (node = childNode['s-cr']) && node.parentNode) {
@@ -1754,7 +1759,9 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
1754
1759
  if (module) {
1755
1760
  return module[exportName];
1756
1761
  }
1762
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/
1757
1763
  return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
1764
+ /* @vite-ignore */
1758
1765
  /* webpackInclude: /\.entry\.js$/ */
1759
1766
  /* webpackExclude: /\.system\.entry\.js$/ */
1760
1767
  /* webpackMode: "lazy" */
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const Notice = require('./Notice-839702d8.js');
6
- const Trigger = require('./Trigger-cf376531.js');
5
+ const Notice = require('./Notice-a540b9fb.js');
6
+ const Trigger = require('./Trigger-3443997e.js');
7
7
  const GoogleFont = require('./GoogleFont-6c4f0da1.js');
8
- require('./index-1c61bdd3.js');
8
+ require('./index-3efe2a41.js');
9
9
 
10
10
  class ClientIdentifier {
11
11
  constructor() { }
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-1c61bdd3.js');
5
+ const index = require('./index-3efe2a41.js');
6
6
 
7
7
  /*
8
- Stencil Client Patch Esm v2.15.2 | MIT Licensed | https://stenciljs.com
8
+ Stencil Client Patch Esm v2.17.4 | MIT Licensed | https://stenciljs.com
9
9
  */
10
10
  const patchEsm = () => {
11
11
  return index.promiseResolve();
@@ -14,7 +14,7 @@ const patchEsm = () => {
14
14
  const defineCustomElements = (win, options) => {
15
15
  if (typeof window === 'undefined') return Promise.resolve();
16
16
  return patchEsm().then(() => {
17
- return index.bootstrapLazy([["smoothly-google-font.cjs",[[2,"smoothly-google-font",{"value":[1]}]]],["smoothly-radio-group.cjs",[[4,"smoothly-radio-group",{"orientation":[513]}]]],["smoothly-reorder.cjs",[[0,"smoothly-reorder"]]],["smoothly-trigger-sink.cjs",[[6,"smoothly-trigger-sink",{"context":[16],"destination":[1],"filter":[1]},[[0,"trigger","TriggerListener"]]]]],["smoothly-trigger-source.cjs",[[6,"smoothly-trigger-source",{"listen":[1]}]]],["smoothly-accordion_51.cjs",[[0,"smoothly-app-demo",{"baseUrl":[1,"base-url"]}],[0,"smoothly-input-demo"],[2,"smoothly-select-demo",null,[[0,"selectionChanged","handleSelectionChanged"]]],[0,"smoothly-display-demo"],[2,"smoothly-table-demo"],[4,"smoothly-app",{"color":[1]}],[0,"smoothly-dialog-demo"],[2,"smoothly-icon-demo"],[6,"smoothly-button",{"color":[513],"expand":[513],"fill":[513],"disabled":[516],"type":[513],"link":[1],"download":[4]}],[4,"smoothly-room",{"label":[1],"icon":[1],"path":[1],"to":[1]}],[2,"smoothly-input-date-range",{"value":[1025],"start":[1025],"end":[1025],"max":[1025],"min":[1025],"open":[1028],"showLabel":[516,"show-label"]},[[0,"startChanged","onStartChanged"],[0,"endChanged","onEndChanged"],[0,"dateRangeSet","onDateRangeSet"]]],[6,"smoothly-notifier",{"notices":[32]},[[0,"notice","onNotice"],[0,"remove","onRemove"]]],[1,"smoothly-picker",{"disabled":[516],"readonly":[516],"maxMenuHeight":[1,"max-menu-height"],"maxHeight":[1,"max-height"],"emptyMenuLabel":[1025,"empty-menu-label"],"multiple":[516],"mutable":[4],"optionStyle":[8,"option-style"],"options":[16],"labelSetting":[513,"label-setting"],"label":[513],"selections":[1040],"selectNoneName":[1025,"select-none-name"],"selectAllName":[1025,"select-all-name"],"selectionName":[1025,"selection-name"],"newOptionLabel":[1025,"new-option-label"],"valueValidator":[16],"isOpen":[32],"empty":[32]},[[0,"optionSelect","optionSelectHandler"],[0,"optionAdd","optionAddHandler"],[0,"menuEmpty","emptyHandler"]]],[6,"smoothly-dialog",{"color":[513],"open":[1540],"closable":[516],"header":[513]},[[0,"trigger","TriggerListener"]]],[2,"smoothly-backtotop",{"opacity":[1],"bottom":[1],"right":[1],"visible":[32]}],[2,"smoothly-checkbox",{"selectAll":[4,"select-all"],"size":[1],"intermediate":[1540],"selected":[1540],"disabled":[1540],"t":[32]}],[6,"smoothly-submit",{"processing":[1540],"color":[513],"expand":[513],"fill":[513],"disabled":[516],"prevent":[4],"submit":[64]},[[0,"click","handleSubmit"]]],[6,"smoothly-table-expandable-cell",{"align":[1],"open":[1540]},[[0,"click","onClick"]]],[6,"smoothly-table-expandable-row",{"align":[1],"open":[1540]},[[0,"click","onClick"]]],[0,"smoothly-urlencoded",{"data":[1]}],[6,"smoothly-accordion",{"value":[1025]},[[0,"smoothlyOpen","handleOpenClose"],[0,"smoothlyClose","handleOpenClose"],[0,"smoothlyAccordionItemDidLoad","onAccordionItemDidLoad"],[0,"smoothlyAccordionItemDidUnload","onAccordionItemDidUnload"]]],[6,"smoothly-accordion-item",{"name":[1],"brand":[1],"open":[1540]}],[2,"smoothly-display",{"type":[1],"value":[8],"currency":[1],"country":[1]}],[2,"smoothly-display-amount",{"amount":[8],"currency":[1]}],[2,"smoothly-frame",{"url":[1],"name":[1],"origin":[1],"send":[64]}],[6,"smoothly-popup",{"visible":[1540],"direction":[1537],"cssVariables":[32]}],[6,"smoothly-quiet",{"color":[1]}],[6,"smoothly-radio",{"name":[1],"value":[1],"checked":[1540],"tabIndex":[2,"tab-index"]}],[6,"smoothly-select",{"identifier":[1],"background":[513],"value":[1025]}],[2,"smoothly-skeleton",{"widths":[16],"width":[1],"color":[1],"period":[2],"distance":[1],"align":[513]}],[2,"smoothly-svg",{"url":[513],"size":[513],"color":[1]}],[6,"smoothly-table",null,[[0,"expansionLoad","handleEvents"],[0,"expansionOpen","handleEvents"]]],[6,"smoothly-table-cell"],[6,"smoothly-table-header",{"name":[1]}],[6,"smoothly-table-row",null,[[0,"expansionLoad","onExpansionLoad"],[0,"expansionOpen","onExpansionOpen"]]],[6,"smoothly-input-date",{"value":[1025],"open":[1028],"max":[1025],"min":[1025],"disabled":[1028]},[[0,"dateSet","dateSetHandler"]]],[1,"smoothly-menu-options",{"emptyMenuLabel":[1025,"empty-menu-label"],"newOptionLabel":[1,"new-option-label"],"maxMenuHeight":[1,"max-menu-height"],"order":[4],"optionStyle":[8,"option-style"],"options":[1040],"resetHighlightOnOptionsChange":[1028,"reset-highlight-on-options-change"],"mutable":[4],"filteredOptions":[32],"highlightIndex":[32],"keyword":[32],"moveHighlight":[64],"setHighlight":[64],"getHighlighted":[64],"filterOptions":[64]},[[0,"optionHover","optionHoverHandler"]]],[2,"smoothly-notification",{"notice":[16],"tick":[32]},[[0,"trigger","onTrigger"]]],[2,"smoothly-display-date-time",{"datetime":[1]}],[6,"smoothly-tab",{"label":[1],"open":[1540]},[[0,"click","onClick"]]],[6,"smoothly-tab-switch",{"selectedElement":[32]},[[0,"expansionOpen","openChanged"]]],[0,"smoothly-tuple",{"tuple":[16]}],[1,"smoothly-option",{"aliases":[513],"dataHighlight":[1540,"data-highlight"],"name":[1537],"value":[1537],"divider":[1540],"new":[4]}],[2,"smoothly-spinner",{"active":[516],"size":[513]}],[2,"smoothly-calendar",{"month":[1025],"value":[1025],"start":[1025],"end":[1025],"max":[1025],"min":[1025],"doubleInput":[516,"double-input"],"firstSelected":[32]}],[6,"smoothly-input",{"name":[513],"value":[1032],"type":[513],"required":[1540],"minLength":[1026,"min-length"],"showLabel":[516,"show-label"],"maxLength":[1026,"max-length"],"autocomplete":[1028],"pattern":[1040],"placeholder":[1025],"disabled":[1028],"readonly":[1028],"currency":[513],"initialValue":[32],"getFormData":[64],"setKeepFocusOnReRender":[64],"setSelectionRange":[64]}],[2,"smoothly-input-month",{"value":[1025]}],[6,"smoothly-selector",{"opened":[32],"selectedElement":[32],"missing":[32],"filter":[32]},[[0,"click","onClick"],[0,"itemSelected","onItemSelected"],[0,"keydown","onKeyDown"]]],[6,"smoothly-item",{"value":[8],"selected":[1540],"filter":[64]},[[0,"click","onClick"]]],[6,"smoothly-trigger",{"color":[513],"expand":[513],"fill":[513],"disabled":[516],"type":[513],"name":[1],"value":[8]},[[0,"click","onClick"]]],[2,"smoothly-icon",{"color":[513],"fill":[513],"name":[1],"size":[513],"toolTip":[1,"tool-tip"],"document":[32]}]]]], options);
17
+ return index.bootstrapLazy([["smoothly-google-font.cjs",[[2,"smoothly-google-font",{"value":[1]}]]],["smoothly-radio-group.cjs",[[4,"smoothly-radio-group",{"orientation":[513]}]]],["smoothly-reorder.cjs",[[0,"smoothly-reorder"]]],["smoothly-trigger-sink.cjs",[[6,"smoothly-trigger-sink",{"context":[16],"destination":[1],"filter":[1]},[[0,"trigger","TriggerListener"]]]]],["smoothly-trigger-source.cjs",[[6,"smoothly-trigger-source",{"listen":[1]}]]],["smoothly-accordion_51.cjs",[[0,"smoothly-app-demo",{"baseUrl":[1,"base-url"]}],[0,"smoothly-input-demo"],[2,"smoothly-select-demo",null,[[0,"selectionChanged","handleSelectionChanged"]]],[0,"smoothly-display-demo"],[2,"smoothly-table-demo"],[4,"smoothly-app",{"color":[1]}],[0,"smoothly-dialog-demo"],[2,"smoothly-icon-demo"],[6,"smoothly-button",{"color":[513],"expand":[513],"fill":[513],"disabled":[516],"type":[513],"link":[1],"download":[4]}],[4,"smoothly-room",{"label":[1],"icon":[1],"path":[1],"to":[1]}],[2,"smoothly-input-date-range",{"value":[1025],"start":[1025],"end":[1025],"max":[1025],"min":[1025],"open":[1028],"showLabel":[516,"show-label"]},[[0,"startChanged","onStartChanged"],[0,"endChanged","onEndChanged"],[0,"dateRangeSet","onDateRangeSet"]]],[6,"smoothly-notifier",{"notices":[32]},[[0,"notice","onNotice"],[0,"remove","onRemove"]]],[1,"smoothly-picker",{"disabled":[516],"readonly":[516],"maxMenuHeight":[1,"max-menu-height"],"maxHeight":[1,"max-height"],"emptyMenuLabel":[1025,"empty-menu-label"],"multiple":[516],"mutable":[4],"optionStyle":[8,"option-style"],"options":[16],"labelSetting":[513,"label-setting"],"label":[513],"selections":[1040],"selectNoneName":[1025,"select-none-name"],"selectAllName":[1025,"select-all-name"],"selectionName":[1025,"selection-name"],"newOptionLabel":[1025,"new-option-label"],"valueValidator":[16],"isOpen":[32],"empty":[32]},[[0,"optionSelect","optionSelectHandler"],[0,"optionAdd","optionAddHandler"],[0,"menuEmpty","emptyHandler"]]],[6,"smoothly-dialog",{"color":[513],"open":[1540],"closable":[516],"header":[513]},[[0,"trigger","TriggerListener"]]],[2,"smoothly-backtotop",{"opacity":[1],"bottom":[1],"right":[1],"visible":[32]}],[2,"smoothly-checkbox",{"selectAll":[4,"select-all"],"size":[1],"intermediate":[1540],"selected":[1540],"disabled":[1540],"t":[32]}],[6,"smoothly-submit",{"processing":[1540],"color":[513],"expand":[513],"fill":[513],"disabled":[516],"prevent":[4],"submit":[64]},[[0,"click","handleSubmit"]]],[6,"smoothly-table-expandable-cell",{"align":[1],"open":[1540]},[[0,"click","onClick"]]],[6,"smoothly-table-expandable-row",{"align":[1],"open":[1540]},[[0,"click","onClick"]]],[0,"smoothly-urlencoded",{"data":[1]}],[6,"smoothly-accordion",{"value":[1025]},[[0,"smoothlyOpen","handleOpenClose"],[0,"smoothlyClose","handleOpenClose"],[0,"smoothlyAccordionItemDidLoad","onAccordionItemDidLoad"],[0,"smoothlyAccordionItemDidUnload","onAccordionItemDidUnload"]]],[6,"smoothly-accordion-item",{"name":[1],"brand":[1],"open":[1540]}],[2,"smoothly-display",{"type":[1],"value":[8],"currency":[1],"country":[1],"format":[16]}],[2,"smoothly-display-amount",{"amount":[8],"currency":[1]}],[2,"smoothly-frame",{"url":[1],"name":[1],"origin":[1],"send":[64]}],[6,"smoothly-popup",{"visible":[1540],"direction":[1537],"cssVariables":[32]}],[6,"smoothly-quiet",{"color":[1]}],[6,"smoothly-radio",{"name":[1],"value":[1],"checked":[1540],"tabIndex":[2,"tab-index"]}],[6,"smoothly-select",{"identifier":[1],"background":[513],"value":[1025]}],[2,"smoothly-skeleton",{"widths":[16],"width":[1],"color":[1],"period":[2],"distance":[1],"align":[513]}],[2,"smoothly-svg",{"url":[513],"size":[513],"color":[1]}],[6,"smoothly-table",null,[[0,"expansionLoad","handleEvents"],[0,"expansionOpen","handleEvents"]]],[6,"smoothly-table-cell"],[6,"smoothly-table-header",{"name":[1]}],[6,"smoothly-table-row",null,[[0,"expansionLoad","onExpansionLoad"],[0,"expansionOpen","onExpansionOpen"]]],[6,"smoothly-input-date",{"value":[1025],"open":[1028],"max":[1025],"min":[1025],"disabled":[1028]},[[0,"dateSet","dateSetHandler"]]],[1,"smoothly-menu-options",{"emptyMenuLabel":[1025,"empty-menu-label"],"newOptionLabel":[1,"new-option-label"],"maxMenuHeight":[1,"max-menu-height"],"order":[4],"optionStyle":[8,"option-style"],"options":[1040],"resetHighlightOnOptionsChange":[1028,"reset-highlight-on-options-change"],"mutable":[4],"filteredOptions":[32],"highlightIndex":[32],"keyword":[32],"moveHighlight":[64],"setHighlight":[64],"getHighlighted":[64],"filterOptions":[64]},[[0,"optionHover","optionHoverHandler"]]],[2,"smoothly-notification",{"notice":[16],"tick":[32]},[[0,"trigger","onTrigger"]]],[2,"smoothly-display-date-time",{"datetime":[1]}],[6,"smoothly-tab",{"label":[1],"open":[1540]},[[0,"click","onClick"]]],[6,"smoothly-tab-switch",{"selectedElement":[32]},[[0,"expansionOpen","openChanged"]]],[0,"smoothly-tuple",{"tuple":[16]}],[1,"smoothly-option",{"aliases":[513],"dataHighlight":[1540,"data-highlight"],"name":[1537],"value":[1537],"divider":[1540],"new":[4]}],[2,"smoothly-spinner",{"active":[516],"size":[513]}],[2,"smoothly-calendar",{"month":[1025],"value":[1025],"start":[1025],"end":[1025],"max":[1025],"min":[1025],"doubleInput":[516,"double-input"],"firstSelected":[32]}],[6,"smoothly-input",{"name":[513],"value":[1032],"type":[513],"required":[1540],"minLength":[1026,"min-length"],"showLabel":[516,"show-label"],"maxLength":[1026,"max-length"],"autocomplete":[1028],"pattern":[1040],"placeholder":[1025],"disabled":[1028],"readonly":[1028],"currency":[513],"initialValue":[32],"getFormData":[64],"setKeepFocusOnReRender":[64],"setSelectionRange":[64]}],[2,"smoothly-input-month",{"value":[1025]}],[6,"smoothly-selector",{"opened":[32],"selectedElement":[32],"missing":[32],"filter":[32]},[[0,"click","onClick"],[0,"itemSelected","onItemSelected"],[0,"keydown","onKeyDown"]]],[6,"smoothly-item",{"value":[8],"selected":[1540],"filter":[64]},[[0,"click","onClick"]]],[6,"smoothly-trigger",{"color":[513],"expand":[513],"fill":[513],"disabled":[516],"type":[513],"name":[1],"value":[8]},[[0,"click","onClick"]]],[2,"smoothly-icon",{"color":[513],"fill":[513],"name":[1],"size":[513],"toolTip":[1,"tool-tip"],"document":[32]}]]]], options);
18
18
  });
19
19
  };
20
20