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,4 +1,4 @@
1
- import { g as getRenderingRef, f as forceUpdate, h } from './index-a3737440.js';
1
+ import { g as getRenderingRef, f as forceUpdate, h } from './index-4d9efff8.js';
2
2
 
3
3
  const appendToMap = (map, propName, value) => {
4
4
  const items = map.get(propName);
@@ -278,56 +278,83 @@ class None extends Symmetric$1 {
278
278
  }
279
279
  }
280
280
 
281
- class RSA extends Base {
282
- constructor(hash, publicKey, privateKey) {
281
+ class Rsa extends Base {
282
+ constructor(variant, publicKey, privateKey) {
283
283
  super();
284
- this.hash = hash;
285
- if (publicKey) {
286
- if (typeof publicKey == "string")
287
- publicKey = decode(publicKey);
288
- this.publicKey = crypto.subtle.importKey("spki", publicKey, { name: "RSASSA-PKCS1-v1_5", hash: { name: hash } }, false, ["verify"]);
289
- }
290
- if (privateKey) {
291
- if (typeof privateKey == "string")
292
- privateKey = decode(privateKey);
293
- this.privateKey = crypto.subtle.importKey("pkcs8", privateKey, { name: "RSASSA-PKCS1-v1_5", hash: { name: hash } }, true, ["sign"]);
294
- }
284
+ this.variant = variant;
285
+ this.publicKey = publicKey;
286
+ this.privateKey = privateKey;
287
+ }
288
+ get parameters() {
289
+ return getParameters(this.variant);
295
290
  }
296
291
  async signBinary(data) {
297
- return new Uint8Array(await crypto.subtle.sign("RSASSA-PKCS1-v1_5", await this.privateKey, data));
292
+ return this.privateKey
293
+ ? new Uint8Array(await crypto.subtle.sign(this.parameters, await this.privateKey, data))
294
+ : new Uint8Array(0);
298
295
  }
299
296
  async verifyBinary(data, signature) {
300
- return crypto.subtle.verify("RSASSA-PKCS1-v1_5", await this.publicKey, signature, data);
297
+ return !!this.publicKey && crypto.subtle.verify(this.parameters, await this.publicKey, signature, data);
301
298
  }
302
- }
303
-
304
- class RSAPSS extends Base {
305
- constructor(hash, publicKey, privateKey) {
306
- super();
307
- this.hash = hash;
308
- if (publicKey) {
309
- if (typeof publicKey == "string")
310
- publicKey = decode(publicKey);
311
- this.publicKey = crypto.subtle.importKey("spki", publicKey, { name: "RSA-PSS", hash: { name: hash } }, false, [
312
- "verify",
313
- ]);
314
- }
315
- if (privateKey) {
316
- if (typeof privateKey == "string")
317
- privateKey = decode(privateKey);
318
- this.privateKey = crypto.subtle.importKey("pkcs8", privateKey, { name: "RSA-PSS", hash: { name: hash } }, true, [
319
- "sign",
320
- "verify",
321
- ]);
322
- }
299
+ async export(type, format = "base64") {
300
+ const key = await (type == "private" ? this.privateKey : this.publicKey);
301
+ let result;
302
+ if (key)
303
+ switch (format) {
304
+ case "jwk":
305
+ result = await crypto.subtle.exportKey("jwk", key);
306
+ break;
307
+ case "buffer":
308
+ result = await crypto.subtle.exportKey(type == "private" ? "pkcs8" : "spki", key);
309
+ break;
310
+ case "base64":
311
+ {
312
+ const data = await this.export(type, "buffer");
313
+ result = data && encode(new Uint8Array(data), "standard", "=");
314
+ }
315
+ break;
316
+ case "pem":
317
+ {
318
+ const data = await this.export(type, "base64");
319
+ result =
320
+ data &&
321
+ [
322
+ `-----BEGIN ${type.toUpperCase()} KEY-----`,
323
+ ...slice(data, 64),
324
+ `-----END ${type.toUpperCase()} KEY-----`,
325
+ ].join("\n");
326
+ }
327
+ break;
328
+ }
329
+ return result;
323
330
  }
324
- async signBinary(data) {
325
- return new Uint8Array(await crypto.subtle.sign({ name: "RSA-PSS", saltLength: 128 }, await this.privateKey, data));
331
+ static import(variant, hash, publicKey, privateKey) {
332
+ return new Rsa(variant, Rsa.importHelper(variant, hash, "public", publicKey), Rsa.importHelper(variant, hash, "private", privateKey));
326
333
  }
327
- async verifyBinary(data, signature) {
328
- return crypto.subtle.verify({ name: "RSA-PSS", saltLength: 128 }, await this.publicKey, signature, data);
334
+ static importHelper(variant, hash, type, key) {
335
+ if (typeof key == "string")
336
+ key = decode(key);
337
+ return (key &&
338
+ crypto.subtle.importKey(type == "private" ? "pkcs8" : "spki", key, { name: getParameters(variant).name, hash: { name: hash } }, true, [type == "private" ? "sign" : "verify"]));
339
+ }
340
+ static generate(variant, hash, length) {
341
+ const keyPair = crypto.subtle.generateKey({
342
+ name: getParameters(variant).name,
343
+ modulusLength: length,
344
+ publicExponent: new Uint8Array([1, 0, 1]),
345
+ hash,
346
+ }, true, ["sign", "verify"]);
347
+ return new Rsa(variant, keyPair.then(value => value.publicKey), keyPair.then(value => value.privateKey));
329
348
  }
330
349
  }
350
+ function* slice(data, length) {
351
+ let start = 0;
352
+ while (start < data.length)
353
+ yield data.slice(start, (start = start + length));
354
+ }
355
+ function getParameters(variant) {
356
+ return variant == "PSS" ? { name: "RSA-PSS", saltLength: 128 } : { name: "RSASSA-PKCS1-v1_5" };
357
+ }
331
358
 
332
359
  var Signer;
333
360
  (function (Signer) {
@@ -337,30 +364,40 @@ var Signer;
337
364
  (function (Hash$1) {
338
365
  Hash$1.is = Hash.is;
339
366
  })(Signer.Hash || (Signer.Hash = {}));
340
- function create(algorithm, hash, ...keys) {
367
+ function generate(algorithm, hash, length) {
341
368
  let result;
342
369
  switch (algorithm) {
343
- case "HMAC":
344
- if (hash != undefined)
345
- result = new HMAC(hash, keys[0]);
346
- break;
347
370
  case "RSA":
348
- if (hash != undefined)
349
- result = new RSA(hash, keys[0], keys[1]);
371
+ result = Rsa.generate("SSA", hash, length);
350
372
  break;
351
373
  case "RSA-PSS":
352
- if (hash != undefined)
353
- result = new RSAPSS(hash, keys[0], keys[1]);
354
- break;
355
- case "ECDSA":
356
- if (hash != undefined)
357
- result = new ECDSA(hash, keys[0], keys[1]);
374
+ result = Rsa.generate("PSS", hash, length);
358
375
  break;
359
- case "None":
360
- result = new None();
361
376
  }
362
377
  return result;
363
378
  }
379
+ Signer.generate = generate;
380
+ function create(algorithm, hash, ...keys) {
381
+ let result;
382
+ if (hash != undefined)
383
+ switch (algorithm) {
384
+ case "HMAC":
385
+ result = new HMAC(hash, keys[0]);
386
+ break;
387
+ case "RSA":
388
+ result = Rsa.import("SSA", hash, keys[0], keys[1]);
389
+ break;
390
+ case "RSA-PSS":
391
+ result = Rsa.import("PSS", hash, keys[0], keys[1]);
392
+ break;
393
+ case "ECDSA":
394
+ result = new ECDSA(hash, keys[0], keys[1]);
395
+ break;
396
+ }
397
+ else if (algorithm == "None")
398
+ result = new None();
399
+ return result;
400
+ }
364
401
  Signer.create = create;
365
402
  })(Signer || (Signer = {}));
366
403
 
@@ -21,10 +21,10 @@ const plt = {
21
21
  ce: (eventName, opts) => new CustomEvent(eventName, opts),
22
22
  };
23
23
  const promiseResolve = (v) => Promise.resolve(v);
24
- const supportsConstructibleStylesheets = /*@__PURE__*/ (() => {
24
+ const supportsConstructableStylesheets = /*@__PURE__*/ (() => {
25
25
  try {
26
26
  new CSSStyleSheet();
27
- return typeof new CSSStyleSheet().replace === 'function';
27
+ return typeof new CSSStyleSheet().replaceSync === 'function';
28
28
  }
29
29
  catch (e) { }
30
30
  return false;
@@ -78,9 +78,14 @@ const uniqueTime = (key, measureText) => {
78
78
  const rootAppliedStyles = new WeakMap();
79
79
  const registerStyle = (scopeId, cssText, allowCS) => {
80
80
  let style = styles.get(scopeId);
81
- if (supportsConstructibleStylesheets && allowCS) {
81
+ if (supportsConstructableStylesheets && allowCS) {
82
82
  style = (style || new CSSStyleSheet());
83
- style.replace(cssText);
83
+ if (typeof style === 'string') {
84
+ style = cssText;
85
+ }
86
+ else {
87
+ style.replaceSync(cssText);
88
+ }
84
89
  }
85
90
  else {
86
91
  style = cssText;
@@ -89,7 +94,7 @@ const registerStyle = (scopeId, cssText, allowCS) => {
89
94
  };
90
95
  const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
91
96
  let scopeId = getScopeId(cmpMeta);
92
- let style = styles.get(scopeId);
97
+ const style = styles.get(scopeId);
93
98
  // if an element is NOT connected then getRootNode() will return the wrong root node
94
99
  // so the fallback is to always use the document for the root node in those cases
95
100
  styleContainerNode = styleContainerNode.nodeType === 11 /* DocumentFragment */ ? styleContainerNode : doc;
@@ -179,7 +184,7 @@ const h = (nodeName, vnodeData, ...children) => {
179
184
  let slotName = null;
180
185
  let simple = false;
181
186
  let lastSimple = false;
182
- let vNodeChildren = [];
187
+ const vNodeChildren = [];
183
188
  const walk = (c) => {
184
189
  for (let i = 0; i < c.length; i++) {
185
190
  child = c[i];
@@ -388,7 +393,7 @@ const setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
388
393
  if ((isProp || (isComplex && newValue !== null)) && !isSvg) {
389
394
  try {
390
395
  if (!elm.tagName.includes('-')) {
391
- let n = newValue == null ? '' : newValue;
396
+ const n = newValue == null ? '' : newValue;
392
397
  // Workaround for Safari, moving the <input> caret when re-assigning the same valued
393
398
  if (memberName === 'list') {
394
399
  isProp = false;
@@ -465,7 +470,7 @@ const updateElement = (oldVnode, newVnode, isSvgMode, memberName) => {
465
470
  };
466
471
  const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
467
472
  // tslint:disable-next-line: prefer-const
468
- let newVNode = newParentVNode.$children$[childIndex];
473
+ const newVNode = newParentVNode.$children$[childIndex];
469
474
  let i = 0;
470
475
  let elm;
471
476
  let childNode;
@@ -798,7 +803,7 @@ const patch = (oldVNode, newVNode) => {
798
803
  };
799
804
  const updateFallbackSlotVisibility = (elm) => {
800
805
  // tslint:disable-next-line: prefer-const
801
- let childNodes = elm.childNodes;
806
+ const childNodes = elm.childNodes;
802
807
  let childNode;
803
808
  let i;
804
809
  let ilen;
@@ -851,8 +856,8 @@ const relocateSlotContent = (elm) => {
851
856
  let relocateNodeData;
852
857
  let j;
853
858
  let i = 0;
854
- let childNodes = elm.childNodes;
855
- let ilen = childNodes.length;
859
+ const childNodes = elm.childNodes;
860
+ const ilen = childNodes.length;
856
861
  for (; i < ilen; i++) {
857
862
  childNode = childNodes[i];
858
863
  if (childNode['s-sr'] && (node = childNode['s-cr']) && node.parentNode) {
@@ -1732,7 +1737,9 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
1732
1737
  if (module) {
1733
1738
  return module[exportName];
1734
1739
  }
1740
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/
1735
1741
  return import(
1742
+ /* @vite-ignore */
1736
1743
  /* webpackInclude: /\.entry\.js$/ */
1737
1744
  /* webpackExclude: /\.system\.entry\.js$/ */
1738
1745
  /* webpackMode: "lazy" */
package/dist/esm/index.js CHANGED
@@ -1,8 +1,8 @@
1
- export { A as App, N as Notice } from './Notice-608b552c.js';
2
- import { I as Identifier } from './Trigger-365408f0.js';
3
- export { M as Message, T as Trigger } from './Trigger-365408f0.js';
1
+ export { A as App, N as Notice } from './Notice-4d3fbaaf.js';
2
+ import { I as Identifier } from './Trigger-327e506e.js';
3
+ export { M as Message, T as Trigger } from './Trigger-327e506e.js';
4
4
  export { G as GoogleFont } from './GoogleFont-8474516b.js';
5
- import './index-a3737440.js';
5
+ import './index-4d9efff8.js';
6
6
 
7
7
  class ClientIdentifier {
8
8
  constructor() { }
@@ -1,7 +1,7 @@
1
- import { p as promiseResolve, b as bootstrapLazy } from './index-a3737440.js';
1
+ import { p as promiseResolve, b as bootstrapLazy } from './index-4d9efff8.js';
2
2
 
3
3
  /*
4
- Stencil Client Patch Esm v2.15.2 | MIT Licensed | https://stenciljs.com
4
+ Stencil Client Patch Esm v2.17.4 | MIT Licensed | https://stenciljs.com
5
5
  */
6
6
  const patchEsm = () => {
7
7
  return promiseResolve();
@@ -10,7 +10,7 @@ const patchEsm = () => {
10
10
  const defineCustomElements = (win, options) => {
11
11
  if (typeof window === 'undefined') return Promise.resolve();
12
12
  return patchEsm().then(() => {
13
- return bootstrapLazy([["smoothly-google-font",[[2,"smoothly-google-font",{"value":[1]}]]],["smoothly-radio-group",[[4,"smoothly-radio-group",{"orientation":[513]}]]],["smoothly-reorder",[[0,"smoothly-reorder"]]],["smoothly-trigger-sink",[[6,"smoothly-trigger-sink",{"context":[16],"destination":[1],"filter":[1]},[[0,"trigger","TriggerListener"]]]]],["smoothly-trigger-source",[[6,"smoothly-trigger-source",{"listen":[1]}]]],["smoothly-accordion_51",[[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);
13
+ return bootstrapLazy([["smoothly-google-font",[[2,"smoothly-google-font",{"value":[1]}]]],["smoothly-radio-group",[[4,"smoothly-radio-group",{"orientation":[513]}]]],["smoothly-reorder",[[0,"smoothly-reorder"]]],["smoothly-trigger-sink",[[6,"smoothly-trigger-sink",{"context":[16],"destination":[1],"filter":[1]},[[0,"trigger","TriggerListener"]]]]],["smoothly-trigger-source",[[6,"smoothly-trigger-source",{"listen":[1]}]]],["smoothly-accordion_51",[[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);
14
14
  });
15
15
  };
16
16