@maggioli-design-system/mds-table-row 4.4.1 → 4.4.2

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 (61) hide show
  1. package/dist/cjs/{index-6d791eac.js → index-74074cfd.js} +24 -17
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/mds-table-row.cjs.entry.js +12 -12
  4. package/dist/cjs/mds-table-row.cjs.js +2 -2
  5. package/dist/collection/collection-manifest.json +1 -1
  6. package/dist/collection/common/aria.js +18 -18
  7. package/dist/collection/common/keyboard-manager.js +38 -38
  8. package/dist/collection/common/unit.js +7 -7
  9. package/dist/collection/components/mds-table-row/mds-table-row.css +4 -0
  10. package/dist/collection/components/mds-table-row/mds-table-row.js +51 -51
  11. package/dist/collection/dictionary/autocomplete.js +56 -56
  12. package/dist/collection/dictionary/button.js +19 -19
  13. package/dist/collection/dictionary/color.js +14 -14
  14. package/dist/collection/dictionary/floating-ui.js +14 -14
  15. package/dist/collection/dictionary/input.js +31 -15
  16. package/dist/collection/dictionary/loading.js +2 -2
  17. package/dist/collection/dictionary/typography.js +46 -46
  18. package/dist/collection/dictionary/variant.js +54 -54
  19. package/dist/collection/fixtures/cities.js +107 -107
  20. package/dist/components/mds-table-row.d.ts +2 -2
  21. package/dist/components/mds-table-row.js +27 -27
  22. package/dist/documentation.json +2 -2
  23. package/dist/esm/{index-04035e77.js → index-152f5146.js} +24 -17
  24. package/dist/esm/loader.js +2 -2
  25. package/dist/esm/mds-table-row.entry.js +12 -12
  26. package/dist/esm/mds-table-row.js +3 -3
  27. package/dist/esm-es5/{index-04035e77.js → index-152f5146.js} +1 -1
  28. package/dist/esm-es5/loader.js +1 -1
  29. package/dist/esm-es5/mds-table-row.entry.js +1 -1
  30. package/dist/esm-es5/mds-table-row.js +1 -1
  31. package/dist/mds-table-row/mds-table-row.esm.js +1 -1
  32. package/dist/mds-table-row/mds-table-row.js +15 -15
  33. package/dist/mds-table-row/p-0461a91a.system.entry.js +1 -0
  34. package/{www/build/p-35ae09e1.system.js → dist/mds-table-row/p-1bbb8bb6.system.js} +1 -1
  35. package/dist/mds-table-row/{p-8f394fbb.system.js → p-6d1e82c7.system.js} +1 -1
  36. package/dist/mds-table-row/p-8b036a2e.entry.js +1 -0
  37. package/dist/mds-table-row/p-ccb2cba7.js +2 -0
  38. package/dist/stats.json +30 -30
  39. package/dist/types/common/keyboard-manager.d.ts +9 -9
  40. package/dist/types/components/mds-table-row/mds-table-row.d.ts +3 -3
  41. package/dist/types/dictionary/input.d.ts +2 -1
  42. package/dist/types/interface/input-value.d.ts +1 -1
  43. package/dist/types/stencil-public-runtime.d.ts +8 -0
  44. package/documentation.json +14 -4
  45. package/package.json +4 -4
  46. package/src/dictionary/input.ts +18 -0
  47. package/src/fixtures/icons.json +3 -0
  48. package/src/fixtures/iconsauce.json +3 -0
  49. package/www/build/mds-table-row.esm.js +1 -1
  50. package/www/build/mds-table-row.js +15 -15
  51. package/www/build/p-0461a91a.system.entry.js +1 -0
  52. package/{dist/mds-table-row/p-35ae09e1.system.js → www/build/p-1bbb8bb6.system.js} +1 -1
  53. package/www/build/{p-8f394fbb.system.js → p-6d1e82c7.system.js} +1 -1
  54. package/www/build/p-8b036a2e.entry.js +1 -0
  55. package/www/build/p-ccb2cba7.js +2 -0
  56. package/dist/mds-table-row/p-43afa545.system.entry.js +0 -1
  57. package/dist/mds-table-row/p-88b806ec.js +0 -2
  58. package/dist/mds-table-row/p-abb0ef2f.entry.js +0 -1
  59. package/www/build/p-43afa545.system.entry.js +0 -1
  60. package/www/build/p-88b806ec.js +0 -2
  61. package/www/build/p-abb0ef2f.entry.js +0 -1
@@ -337,7 +337,11 @@ const setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
337
337
  elm[memberName] = newValue;
338
338
  }
339
339
  }
340
- catch (e) { }
340
+ catch (e) {
341
+ /**
342
+ * in case someone tries to set a read-only property, e.g. "namespaceURI", we just ignore it
343
+ */
344
+ }
341
345
  }
342
346
  if (newValue == null || newValue === false) {
343
347
  if (newValue !== false || elm.getAttribute(memberName) === '') {
@@ -1048,10 +1052,10 @@ const setValue = (ref, propName, newVal, cmpMeta) => {
1048
1052
  */
1049
1053
  const proxyComponent = (Cstr, cmpMeta, flags) => {
1050
1054
  var _a;
1055
+ const prototype = Cstr.prototype;
1051
1056
  if (cmpMeta.$members$) {
1052
1057
  // It's better to have a const than two Object.entries()
1053
1058
  const members = Object.entries(cmpMeta.$members$);
1054
- const prototype = Cstr.prototype;
1055
1059
  members.map(([memberName, [memberFlags]]) => {
1056
1060
  if ((memberFlags & 31 /* MEMBER_FLAGS.Prop */ ||
1057
1061
  ((flags & 2 /* PROXY_FLAGS.proxyState */) && memberFlags & 32 /* MEMBER_FLAGS.State */))) {
@@ -1074,6 +1078,7 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1074
1078
  const attrNameToPropName = new Map();
1075
1079
  prototype.attributeChangedCallback = function (attrName, oldValue, newValue) {
1076
1080
  plt.jmp(() => {
1081
+ var _a;
1077
1082
  const propName = attrNameToPropName.get(attrName);
1078
1083
  // In a web component lifecycle the attributeChangedCallback runs prior to connectedCallback
1079
1084
  // in the case where an attribute was set inline.
@@ -1129,11 +1134,12 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1129
1134
  // 1. The instance is ready
1130
1135
  // 2. The watchers are ready
1131
1136
  // 3. The value has changed
1132
- if (!(flags & 8 /* HOST_FLAGS.isConstructingInstance */) &&
1137
+ if (flags &&
1138
+ !(flags & 8 /* HOST_FLAGS.isConstructingInstance */) &&
1133
1139
  flags & 128 /* HOST_FLAGS.isWatchReady */ &&
1134
1140
  newValue !== oldValue) {
1135
1141
  const instance = hostRef.$lazyInstance$ ;
1136
- const entry = cmpMeta.$watchers$[attrName];
1142
+ const entry = (_a = cmpMeta.$watchers$) === null || _a === void 0 ? void 0 : _a[attrName];
1137
1143
  entry === null || entry === void 0 ? void 0 : entry.forEach((callbackName) => {
1138
1144
  if (instance[callbackName] != null) {
1139
1145
  instance[callbackName].call(instance, newValue, oldValue, attrName);
@@ -1155,10 +1161,11 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1155
1161
  ...members
1156
1162
  .filter(([_, m]) => m[0] & 15 /* MEMBER_FLAGS.HasAttribute */)
1157
1163
  .map(([propName, m]) => {
1164
+ var _a;
1158
1165
  const attrName = m[1] || propName;
1159
1166
  attrNameToPropName.set(attrName, propName);
1160
1167
  if (m[0] & 512 /* MEMBER_FLAGS.ReflectAttr */) {
1161
- cmpMeta.$attrsToReflect$.push([propName, attrName]);
1168
+ (_a = cmpMeta.$attrsToReflect$) === null || _a === void 0 ? void 0 : _a.push([propName, attrName]);
1162
1169
  }
1163
1170
  return attrName;
1164
1171
  }),
@@ -1531,19 +1538,19 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
1531
1538
  return module[exportName];
1532
1539
  }
1533
1540
 
1534
- if (!hmrVersionId || !BUILD.hotModuleReplacement) {
1535
- const processMod = importedModule => {
1536
- cmpModules.set(bundleId, importedModule);
1537
- return importedModule[exportName];
1538
- }
1539
- switch(bundleId) {
1540
-
1541
- case 'mds-table-row.cjs':
1542
- return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
1543
- /* webpackMode: "lazy" */
1544
- './mds-table-row.cjs.entry.js')); }).then(processMod, consoleError);
1541
+ if (!hmrVersionId || !BUILD.hotModuleReplacement) {
1542
+ const processMod = importedModule => {
1543
+ cmpModules.set(bundleId, importedModule);
1544
+ return importedModule[exportName];
1545
+ }
1546
+ switch(bundleId) {
1547
+
1548
+ case 'mds-table-row.cjs':
1549
+ return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
1550
+ /* webpackMode: "lazy" */
1551
+ './mds-table-row.cjs.entry.js')); }).then(processMod, consoleError);
1552
+ }
1545
1553
  }
1546
- }
1547
1554
  return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
1548
1555
  /* @vite-ignore */
1549
1556
  /* webpackInclude: /\.entry\.js$/ */
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-6d791eac.js');
5
+ const index = require('./index-74074cfd.js');
6
6
 
7
7
  const defineCustomElements = (win, options) => {
8
8
  if (typeof window === 'undefined') return undefined;
@@ -2,21 +2,21 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-6d791eac.js');
5
+ const index = require('./index-74074cfd.js');
6
6
 
7
- const mdsTableRowCss = ".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";
7
+ const mdsTableRowCss = ".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.text{font-size:1rem}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";
8
8
 
9
9
  const MdsTableRow = class {
10
- constructor(hostRef) {
11
- index.registerInstance(this, hostRef);
12
- this.interactive = undefined;
13
- }
14
- tableInteractiveHandler(event) {
15
- this.interactive = event.detail;
16
- }
17
- render() {
18
- return (index.h(index.Host, { role: "row" }, index.h("slot", null)));
19
- }
10
+ constructor(hostRef) {
11
+ index.registerInstance(this, hostRef);
12
+ this.interactive = undefined;
13
+ }
14
+ tableInteractiveHandler(event) {
15
+ this.interactive = event.detail;
16
+ }
17
+ render() {
18
+ return (index.h(index.Host, { role: "row" }, index.h("slot", null)));
19
+ }
20
20
  };
21
21
  MdsTableRow.style = mdsTableRowCss;
22
22
 
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-6d791eac.js');
5
+ const index = require('./index-74074cfd.js');
6
6
 
7
7
  /*
8
- Stencil Client Patch Browser v4.7.2 | MIT Licensed | https://stenciljs.com
8
+ Stencil Client Patch Browser v4.8.0 | MIT Licensed | https://stenciljs.com
9
9
  */
10
10
  const patchBrowser = () => {
11
11
  const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('mds-table-row.cjs.js', document.baseURI).href));
@@ -4,7 +4,7 @@
4
4
  ],
5
5
  "compiler": {
6
6
  "name": "@stencil/core",
7
- "version": "4.7.2",
7
+ "version": "4.8.0",
8
8
  "typescriptVersion": "5.2.2"
9
9
  },
10
10
  "collections": [],
@@ -1,29 +1,29 @@
1
1
  const hash = (s) => {
2
- let i, h;
3
- for (i = 0, h = 0; i < s.length; i++) {
4
- h = Math.imul(31, h) + s.charCodeAt(i) | 0;
5
- }
6
- return h.toString();
2
+ let i, h;
3
+ for (i = 0, h = 0; i < s.length; i++) {
4
+ h = Math.imul(31, h) + s.charCodeAt(i) | 0;
5
+ }
6
+ return h.toString();
7
7
  };
8
8
  const randomInt = (max) => Math.floor(Math.random() * max);
9
9
  const unslugName = (name) => {
10
- var _a, _b, _c;
11
- return (_c = (_b = (_a = name.split('/')) === null || _a === void 0 ? void 0 : _a.slice(-1).pop()) === null || _b === void 0 ? void 0 : _b.replace(/-/g, ' ')) !== null && _c !== void 0 ? _c : name;
10
+ var _a, _b, _c;
11
+ return (_c = (_b = (_a = name.split('/')) === null || _a === void 0 ? void 0 : _a.slice(-1).pop()) === null || _b === void 0 ? void 0 : _b.replace(/-/g, ' ')) !== null && _c !== void 0 ? _c : name;
12
12
  };
13
13
  const setAttributeIfEmpty = (element, attribute, value) => {
14
- var _a;
15
- if (element.hasAttribute(attribute)) {
16
- return (_a = element.getAttribute(attribute)) !== null && _a !== void 0 ? _a : '';
17
- }
18
- element.setAttribute(attribute, value);
19
- return value;
14
+ var _a;
15
+ if (element.hasAttribute(attribute)) {
16
+ return (_a = element.getAttribute(attribute)) !== null && _a !== void 0 ? _a : '';
17
+ }
18
+ element.setAttribute(attribute, value);
19
+ return value;
20
20
  };
21
21
  const hashValue = (value) => `${value}-${hash(value)}`;
22
22
  const hashRandomValue = (value) => {
23
- const randomValue = randomInt(1000000);
24
- if (value) {
25
- return `${value}-${hash(randomValue.toString())}`;
26
- }
27
- return hash(randomValue.toString());
23
+ const randomValue = randomInt(1000000);
24
+ if (value) {
25
+ return `${value}-${hash(randomValue.toString())}`;
26
+ }
27
+ return hash(randomValue.toString());
28
28
  };
29
29
  export { unslugName, setAttributeIfEmpty, hashRandomValue, hashValue, };
@@ -1,40 +1,40 @@
1
1
  export class KeyboardManager {
2
- constructor() {
3
- this.elements = [];
4
- this.handleClickBehaviorDispatchEvent = (event) => {
5
- if (event.code === 'Space' || event.code === 'Enter' || event.code === 'NumpadEnter') {
6
- event.target.click();
7
- }
8
- };
9
- this.handleEscapeBehaviorDispatchEvent = (event) => {
10
- if (event.code === 'Escape' && this.escapeCallback) {
11
- this.escapeCallback();
12
- }
13
- };
14
- this.addElement = (el, name = 'element') => {
15
- this.elements[name] = el;
16
- };
17
- this.attachClickBehavior = (name = 'element') => {
18
- if (this.elements[name]) {
19
- this.elements[name].addEventListener('keydown', this.handleClickBehaviorDispatchEvent);
20
- }
21
- };
22
- this.detachClickBehavior = (name = 'element') => {
23
- if (this.elements[name]) {
24
- this.elements[name].removeEventListener('keydown', this.handleClickBehaviorDispatchEvent);
25
- }
26
- };
27
- this.attachEscapeBehavior = (callBack) => {
28
- this.escapeCallback = callBack;
29
- if (window !== undefined) {
30
- window.addEventListener('keydown', this.handleEscapeBehaviorDispatchEvent.bind(this));
31
- }
32
- };
33
- this.detachEscapeBehavior = () => {
34
- this.escapeCallback = () => { return; };
35
- if (window !== undefined) {
36
- window.removeEventListener('keydown', this.handleEscapeBehaviorDispatchEvent.bind(this));
37
- }
38
- };
39
- }
2
+ constructor() {
3
+ this.elements = [];
4
+ this.handleClickBehaviorDispatchEvent = (event) => {
5
+ if (event.code === 'Space' || event.code === 'Enter' || event.code === 'NumpadEnter') {
6
+ event.target.click();
7
+ }
8
+ };
9
+ this.handleEscapeBehaviorDispatchEvent = (event) => {
10
+ if (event.code === 'Escape' && this.escapeCallback) {
11
+ this.escapeCallback();
12
+ }
13
+ };
14
+ this.addElement = (el, name = 'element') => {
15
+ this.elements[name] = el;
16
+ };
17
+ this.attachClickBehavior = (name = 'element') => {
18
+ if (this.elements[name]) {
19
+ this.elements[name].addEventListener('keydown', this.handleClickBehaviorDispatchEvent);
20
+ }
21
+ };
22
+ this.detachClickBehavior = (name = 'element') => {
23
+ if (this.elements[name]) {
24
+ this.elements[name].removeEventListener('keydown', this.handleClickBehaviorDispatchEvent);
25
+ }
26
+ };
27
+ this.attachEscapeBehavior = (callBack) => {
28
+ this.escapeCallback = callBack;
29
+ if (window !== undefined) {
30
+ window.addEventListener('keydown', this.handleEscapeBehaviorDispatchEvent.bind(this));
31
+ }
32
+ };
33
+ this.detachEscapeBehavior = () => {
34
+ this.escapeCallback = () => { return; };
35
+ if (window !== undefined) {
36
+ window.removeEventListener('keydown', this.handleEscapeBehaviorDispatchEvent.bind(this));
37
+ }
38
+ };
39
+ }
40
40
  }
@@ -1,10 +1,10 @@
1
1
  const cssDurationToMilliseconds = (duration, defaultValue = 1000) => {
2
- if (duration.includes('s')) {
3
- return Number(duration.replace('s', '')) * 1000;
4
- }
5
- if (duration.includes('ms')) {
6
- return Number(duration.replace('s', ''));
7
- }
8
- return defaultValue;
2
+ if (duration.includes('s')) {
3
+ return Number(duration.replace('s', '')) * 1000;
4
+ }
5
+ if (duration.includes('ms')) {
6
+ return Number(duration.replace('s', ''));
7
+ }
8
+ return defaultValue;
9
9
  };
10
10
  export { cssDurationToMilliseconds, };
@@ -10,6 +10,10 @@
10
10
  border-width: 1px;
11
11
  }
12
12
 
13
+ .text {
14
+ font-size: 1rem;
15
+ }
16
+
13
17
  .shadow {
14
18
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
15
19
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
@@ -3,55 +3,55 @@ import { Host, h } from "@stencil/core";
3
3
  * @slot default - Put `mds-table-cell` element/s.
4
4
  */
5
5
  export class MdsTableRow {
6
- constructor() {
7
- this.interactive = undefined;
8
- }
9
- tableInteractiveHandler(event) {
10
- this.interactive = event.detail;
11
- }
12
- render() {
13
- return (h(Host, { role: "row" }, h("slot", null)));
14
- }
15
- static get is() { return "mds-table-row"; }
16
- static get encapsulation() { return "shadow"; }
17
- static get originalStyleUrls() {
18
- return {
19
- "$": ["mds-table-row.css"]
20
- };
21
- }
22
- static get styleUrls() {
23
- return {
24
- "$": ["mds-table-row.css"]
25
- };
26
- }
27
- static get properties() {
28
- return {
29
- "interactive": {
30
- "type": "boolean",
31
- "mutable": true,
32
- "complexType": {
33
- "original": "boolean",
34
- "resolved": "boolean",
35
- "references": {}
36
- },
37
- "required": false,
38
- "optional": false,
39
- "docs": {
40
- "tags": [],
41
- "text": ""
42
- },
43
- "attribute": "interactive",
44
- "reflect": true
45
- }
46
- };
47
- }
48
- static get listeners() {
49
- return [{
50
- "name": "mdsTableInteractiveChange",
51
- "method": "tableInteractiveHandler",
52
- "target": "document",
53
- "capture": false,
54
- "passive": false
55
- }];
56
- }
6
+ constructor() {
7
+ this.interactive = undefined;
8
+ }
9
+ tableInteractiveHandler(event) {
10
+ this.interactive = event.detail;
11
+ }
12
+ render() {
13
+ return (h(Host, { role: "row" }, h("slot", null)));
14
+ }
15
+ static get is() { return "mds-table-row"; }
16
+ static get encapsulation() { return "shadow"; }
17
+ static get originalStyleUrls() {
18
+ return {
19
+ "$": ["mds-table-row.css"]
20
+ };
21
+ }
22
+ static get styleUrls() {
23
+ return {
24
+ "$": ["mds-table-row.css"]
25
+ };
26
+ }
27
+ static get properties() {
28
+ return {
29
+ "interactive": {
30
+ "type": "boolean",
31
+ "mutable": true,
32
+ "complexType": {
33
+ "original": "boolean",
34
+ "resolved": "boolean",
35
+ "references": {}
36
+ },
37
+ "required": false,
38
+ "optional": false,
39
+ "docs": {
40
+ "tags": [],
41
+ "text": ""
42
+ },
43
+ "attribute": "interactive",
44
+ "reflect": true
45
+ }
46
+ };
47
+ }
48
+ static get listeners() {
49
+ return [{
50
+ "name": "mdsTableInteractiveChange",
51
+ "method": "tableInteractiveHandler",
52
+ "target": "document",
53
+ "capture": false,
54
+ "passive": false
55
+ }];
56
+ }
57
57
  }
@@ -1,59 +1,59 @@
1
1
  const autoCompleteDictionary = [
2
- 'additional-name',
3
- 'address',
4
- 'address-level1',
5
- 'address-level2',
6
- 'address-level3',
7
- 'address-level4',
8
- 'address-line1',
9
- 'address-line2',
10
- 'address-line3',
11
- 'bday',
12
- 'bday-day',
13
- 'bday-month',
14
- 'bday-year',
15
- 'cc-additional-name',
16
- 'cc-csc',
17
- 'cc-exp',
18
- 'cc-exp-month',
19
- 'cc-exp-year',
20
- 'cc-family-name',
21
- 'cc-family-name',
22
- 'cc-given-name',
23
- 'cc-name',
24
- 'cc-number',
25
- 'cc-type',
26
- 'country',
27
- 'country-name',
28
- 'current-password',
29
- 'email',
30
- 'family-name',
31
- 'given-name',
32
- 'honorific-prefix',
33
- 'honorific-suffix',
34
- 'impp',
35
- 'language',
36
- 'name',
37
- 'new-password',
38
- 'nickname',
39
- 'off',
40
- 'on',
41
- 'one-time-code',
42
- 'organization',
43
- 'organization-title',
44
- 'photo',
45
- 'postal-code',
46
- 'sex',
47
- 'street-address',
48
- 'tel',
49
- 'tel-area-code',
50
- 'tel-country-code',
51
- 'tel-extension',
52
- 'tel-local',
53
- 'tel-national',
54
- 'transaction-amount',
55
- 'transaction-currency',
56
- 'url',
57
- 'username',
2
+ 'additional-name',
3
+ 'address',
4
+ 'address-level1',
5
+ 'address-level2',
6
+ 'address-level3',
7
+ 'address-level4',
8
+ 'address-line1',
9
+ 'address-line2',
10
+ 'address-line3',
11
+ 'bday',
12
+ 'bday-day',
13
+ 'bday-month',
14
+ 'bday-year',
15
+ 'cc-additional-name',
16
+ 'cc-csc',
17
+ 'cc-exp',
18
+ 'cc-exp-month',
19
+ 'cc-exp-year',
20
+ 'cc-family-name',
21
+ 'cc-family-name',
22
+ 'cc-given-name',
23
+ 'cc-name',
24
+ 'cc-number',
25
+ 'cc-type',
26
+ 'country',
27
+ 'country-name',
28
+ 'current-password',
29
+ 'email',
30
+ 'family-name',
31
+ 'given-name',
32
+ 'honorific-prefix',
33
+ 'honorific-suffix',
34
+ 'impp',
35
+ 'language',
36
+ 'name',
37
+ 'new-password',
38
+ 'nickname',
39
+ 'off',
40
+ 'on',
41
+ 'one-time-code',
42
+ 'organization',
43
+ 'organization-title',
44
+ 'photo',
45
+ 'postal-code',
46
+ 'sex',
47
+ 'street-address',
48
+ 'tel',
49
+ 'tel-area-code',
50
+ 'tel-country-code',
51
+ 'tel-extension',
52
+ 'tel-local',
53
+ 'tel-national',
54
+ 'transaction-amount',
55
+ 'transaction-currency',
56
+ 'url',
57
+ 'username',
58
58
  ];
59
59
  export { autoCompleteDictionary, };
@@ -1,30 +1,30 @@
1
1
  const buttonVariantDictionary = [
2
- 'dark',
3
- 'error',
4
- 'info',
5
- 'light',
6
- 'primary',
7
- 'success',
8
- 'warning',
2
+ 'dark',
3
+ 'error',
4
+ 'info',
5
+ 'light',
6
+ 'primary',
7
+ 'success',
8
+ 'warning',
9
9
  ];
10
10
  const buttonToneVariantDictionary = [
11
- 'strong',
12
- 'weak',
13
- 'ghost',
14
- 'quiet',
11
+ 'strong',
12
+ 'weak',
13
+ 'ghost',
14
+ 'quiet',
15
15
  ];
16
16
  const buttonTargetDictionary = [
17
- 'blank',
18
- 'self',
17
+ 'blank',
18
+ 'self',
19
19
  ];
20
20
  const buttonSizeDictionary = [
21
- 'sm',
22
- 'md',
23
- 'lg',
24
- 'xl',
21
+ 'sm',
22
+ 'md',
23
+ 'lg',
24
+ 'xl',
25
25
  ];
26
26
  const buttonIconPositionDictionary = [
27
- 'left',
28
- 'right',
27
+ 'left',
28
+ 'right',
29
29
  ];
30
30
  export { buttonIconPositionDictionary, buttonSizeDictionary, buttonTargetDictionary, buttonToneVariantDictionary, buttonVariantDictionary, };
@@ -1,19 +1,19 @@
1
1
  const colorLabelDictionary = [
2
- 'amaranth',
3
- 'aqua',
4
- 'blue',
5
- 'green',
6
- 'lime',
7
- 'orange',
8
- 'orchid',
9
- 'sky',
10
- 'violet',
11
- 'yellow',
2
+ 'amaranth',
3
+ 'aqua',
4
+ 'blue',
5
+ 'green',
6
+ 'lime',
7
+ 'orange',
8
+ 'orchid',
9
+ 'sky',
10
+ 'violet',
11
+ 'yellow',
12
12
  ];
13
13
  const colorStatusDictionary = [
14
- 'error',
15
- 'info',
16
- 'success',
17
- 'warning',
14
+ 'error',
15
+ 'info',
16
+ 'success',
17
+ 'warning',
18
18
  ];
19
19
  export { colorLabelDictionary, colorStatusDictionary, };