@maggioli-design-system/mds-input-select 2.0.5 → 3.0.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.
Files changed (110) hide show
  1. package/dist/cjs/{index-9a5feb6d.js → index-f192b288.js} +14 -3
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/mds-input-select.cjs.entry.js +8 -8
  4. package/dist/cjs/mds-input-select.cjs.js +2 -2
  5. package/dist/collection/collection-manifest.json +2 -2
  6. package/dist/collection/common/aria.js +17 -1
  7. package/dist/collection/common/device.js +6 -0
  8. package/dist/collection/common/keyboard-manager.js +2 -2
  9. package/dist/collection/common/locale.js +17 -5
  10. package/dist/collection/components/mds-input-select/mds-input-select.css +33 -503
  11. package/dist/collection/components/mds-input-select/mds-input-select.js +11 -11
  12. package/dist/collection/dictionary/button.js +1 -0
  13. package/dist/collection/dictionary/file-extensions.js +114 -56
  14. package/dist/collection/dictionary/text.js +60 -1
  15. package/dist/collection/dictionary/variant.js +10 -1
  16. package/dist/collection/type/variant-file-format.js +0 -34
  17. package/dist/components/mds-input-select.js +7 -7
  18. package/dist/documentation.json +12 -12
  19. package/dist/esm/{index-27f9b67f.js → index-f99575c3.js} +14 -3
  20. package/dist/esm/loader.js +2 -2
  21. package/dist/esm/mds-input-select.entry.js +8 -8
  22. package/dist/esm/mds-input-select.js +3 -3
  23. package/dist/esm-es5/index-f99575c3.js +1 -0
  24. package/dist/esm-es5/loader.js +1 -1
  25. package/dist/esm-es5/mds-input-select.entry.js +1 -1
  26. package/dist/esm-es5/mds-input-select.js +1 -1
  27. package/dist/mds-input-select/mds-input-select.esm.js +1 -1
  28. package/dist/mds-input-select/mds-input-select.js +1 -1
  29. package/dist/mds-input-select/p-39558724.system.js +2 -0
  30. package/dist/mds-input-select/p-99fd6ce0.entry.js +1 -0
  31. package/dist/mds-input-select/p-ec8a0b02.system.js +1 -0
  32. package/dist/mds-input-select/p-ecf343d4.js +2 -0
  33. package/dist/mds-input-select/p-f1804d7b.system.entry.js +1 -0
  34. package/dist/stats.json +44 -44
  35. package/dist/types/common/aria.d.ts +3 -1
  36. package/dist/types/common/date.d.ts +1 -1
  37. package/dist/types/common/device.d.ts +2 -0
  38. package/dist/types/common/file.d.ts +3 -4
  39. package/dist/types/common/locale.d.ts +3 -1
  40. package/dist/types/components/mds-input-select/mds-input-select.d.ts +3 -3
  41. package/dist/types/components.d.ts +6 -6
  42. package/dist/types/dictionary/file-extensions.d.ts +2 -1
  43. package/dist/types/dictionary/text.d.ts +3 -1
  44. package/dist/types/dictionary/variant.d.ts +2 -1
  45. package/dist/types/stencil-public-runtime.d.ts +6 -0
  46. package/dist/types/type/autocomplete.d.ts +1 -1
  47. package/dist/types/type/button.d.ts +1 -1
  48. package/dist/types/type/header-bar.d.ts +2 -0
  49. package/dist/types/type/input.d.ts +3 -0
  50. package/dist/types/type/text.d.ts +2 -0
  51. package/dist/types/type/variant-file-format.d.ts +4 -4
  52. package/dist/types/type/variant.d.ts +2 -1
  53. package/documentation.json +54 -39
  54. package/package.json +5 -5
  55. package/readme.md +4 -4
  56. package/src/common/aria.ts +22 -2
  57. package/src/common/device.ts +9 -0
  58. package/src/common/file.ts +2 -3
  59. package/src/common/keyboard-manager.ts +2 -2
  60. package/src/common/locale.ts +20 -6
  61. package/src/common/unit.ts +1 -1
  62. package/src/components/mds-input-select/.gitlab-ci.yml +5 -10
  63. package/src/components/mds-input-select/css/mds-input-select-pref-theme.css +2 -2
  64. package/src/components/mds-input-select/css/mds-input-select-variant.css +6 -6
  65. package/src/components/mds-input-select/mds-input-select.css +13 -17
  66. package/src/components/mds-input-select/mds-input-select.tsx +6 -6
  67. package/src/components/mds-input-select/readme.md +3 -3
  68. package/src/components.d.ts +6 -6
  69. package/src/dictionary/button.ts +1 -0
  70. package/src/dictionary/file-extensions.ts +118 -57
  71. package/src/dictionary/text.ts +64 -0
  72. package/src/dictionary/variant.ts +11 -0
  73. package/src/fixtures/icons.json +30 -3
  74. package/src/fixtures/iconsauce.json +21 -1
  75. package/src/meta/file-format/locale.el.json +39 -0
  76. package/src/meta/file-format/locale.en.json +39 -0
  77. package/src/meta/file-format/locale.es.json +39 -0
  78. package/src/meta/file-format/locale.it.json +39 -0
  79. package/src/tailwind/components.css +1 -1
  80. package/src/type/autocomplete.ts +0 -1
  81. package/src/type/button.ts +1 -0
  82. package/src/type/header-bar.ts +11 -0
  83. package/src/type/input.ts +4 -0
  84. package/src/type/text.ts +59 -0
  85. package/src/type/variant-file-format.ts +20 -37
  86. package/src/type/variant.ts +9 -1
  87. package/www/build/mds-input-select.esm.js +1 -1
  88. package/www/build/mds-input-select.js +1 -1
  89. package/www/build/p-39558724.system.js +2 -0
  90. package/www/build/p-99fd6ce0.entry.js +1 -0
  91. package/www/build/p-ec8a0b02.system.js +1 -0
  92. package/www/build/p-ecf343d4.js +2 -0
  93. package/www/build/p-f1804d7b.system.entry.js +1 -0
  94. package/dist/collection/type/language.js +0 -1
  95. package/dist/esm-es5/index-27f9b67f.js +0 -1
  96. package/dist/mds-input-select/p-5a0746e7.system.js +0 -2
  97. package/dist/mds-input-select/p-750f66cc.system.js +0 -1
  98. package/dist/mds-input-select/p-7ab40018.system.entry.js +0 -1
  99. package/dist/mds-input-select/p-babc558f.js +0 -2
  100. package/dist/mds-input-select/p-e743c791.entry.js +0 -1
  101. package/dist/types/interface/input-value.d.ts +0 -4
  102. package/dist/types/type/language.d.ts +0 -2
  103. package/src/interface/input-value.ts +0 -5
  104. package/src/type/language.ts +0 -8
  105. package/www/build/p-5a0746e7.system.js +0 -2
  106. package/www/build/p-750f66cc.system.js +0 -1
  107. package/www/build/p-7ab40018.system.entry.js +0 -1
  108. package/www/build/p-babc558f.js +0 -2
  109. package/www/build/p-e743c791.entry.js +0 -1
  110. /package/dist/collection/{interface/input-value.js → type/header-bar.js} +0 -0
package/dist/stats.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
- "timestamp": "2024-10-04T09:01:01",
2
+ "timestamp": "2024-12-04T17:28:26",
3
3
  "compiler": {
4
4
  "name": "node",
5
- "version": "20.10.0"
5
+ "version": "22.11.0"
6
6
  },
7
7
  "app": {
8
8
  "namespace": "MdsInputSelect",
@@ -17,6 +17,7 @@
17
17
  "generatedFiles": [
18
18
  "./dist/collection/common/aria.js",
19
19
  "./dist/collection/common/date.js",
20
+ "./dist/collection/common/device.js",
20
21
  "./dist/collection/common/file.js",
21
22
  "./dist/collection/common/icon.js",
22
23
  "./dist/collection/common/keyboard-manager.js",
@@ -44,15 +45,14 @@
44
45
  "./dist/collection/dictionary/variant.js",
45
46
  "./dist/collection/fixtures/cities.js",
46
47
  "./dist/collection/fixtures/filenames.js",
47
- "./dist/collection/interface/input-value.js",
48
48
  "./dist/collection/type/autocomplete.js",
49
49
  "./dist/collection/type/button.js",
50
50
  "./dist/collection/type/date.js",
51
51
  "./dist/collection/type/file-types.js",
52
52
  "./dist/collection/type/floating-ui.js",
53
53
  "./dist/collection/type/form-rel.js",
54
+ "./dist/collection/type/header-bar.js",
54
55
  "./dist/collection/type/input.js",
55
- "./dist/collection/type/language.js",
56
56
  "./dist/collection/type/loading.js",
57
57
  "./dist/collection/type/preference.js",
58
58
  "./dist/collection/type/text.js",
@@ -76,19 +76,19 @@
76
76
  "files": 42,
77
77
  "generatedFiles": [
78
78
  "./dist/cjs/app-globals-3a1e7e63.js",
79
- "./dist/cjs/index-9a5feb6d.js",
79
+ "./dist/cjs/index-f192b288.js",
80
80
  "./dist/cjs/index.cjs.js",
81
81
  "./dist/cjs/loader.cjs.js",
82
82
  "./dist/cjs/mds-input-select.cjs.entry.js",
83
83
  "./dist/cjs/mds-input-select.cjs.js",
84
84
  "./dist/esm-es5/app-globals-0f993ce5.js",
85
- "./dist/esm-es5/index-27f9b67f.js",
85
+ "./dist/esm-es5/index-f99575c3.js",
86
86
  "./dist/esm-es5/index.js",
87
87
  "./dist/esm-es5/loader.js",
88
88
  "./dist/esm-es5/mds-input-select.entry.js",
89
89
  "./dist/esm-es5/mds-input-select.js",
90
90
  "./dist/esm/app-globals-0f993ce5.js",
91
- "./dist/esm/index-27f9b67f.js",
91
+ "./dist/esm/index-f99575c3.js",
92
92
  "./dist/esm/index.js",
93
93
  "./dist/esm/loader.js",
94
94
  "./dist/esm/mds-input-select.entry.js",
@@ -98,25 +98,25 @@
98
98
  "./dist/mds-input-select/index.esm.js",
99
99
  "./dist/mds-input-select/mds-input-select.esm.js",
100
100
  "./dist/mds-input-select/mds-input-select.js",
101
+ "./dist/mds-input-select/p-39558724.system.js",
101
102
  "./dist/mds-input-select/p-50ea2036.system.js",
102
103
  "./dist/mds-input-select/p-56ba5cbf.system.js",
103
- "./dist/mds-input-select/p-5a0746e7.system.js",
104
- "./dist/mds-input-select/p-750f66cc.system.js",
105
- "./dist/mds-input-select/p-7ab40018.system.entry.js",
106
- "./dist/mds-input-select/p-babc558f.js",
104
+ "./dist/mds-input-select/p-99fd6ce0.entry.js",
107
105
  "./dist/mds-input-select/p-e1255160.js",
108
- "./dist/mds-input-select/p-e743c791.entry.js",
106
+ "./dist/mds-input-select/p-ec8a0b02.system.js",
107
+ "./dist/mds-input-select/p-ecf343d4.js",
108
+ "./dist/mds-input-select/p-f1804d7b.system.entry.js",
109
109
  "./www/build/index.esm.js",
110
110
  "./www/build/mds-input-select.esm.js",
111
111
  "./www/build/mds-input-select.js",
112
+ "./www/build/p-39558724.system.js",
112
113
  "./www/build/p-50ea2036.system.js",
113
114
  "./www/build/p-56ba5cbf.system.js",
114
- "./www/build/p-5a0746e7.system.js",
115
- "./www/build/p-750f66cc.system.js",
116
- "./www/build/p-7ab40018.system.entry.js",
117
- "./www/build/p-babc558f.js",
115
+ "./www/build/p-99fd6ce0.entry.js",
118
116
  "./www/build/p-e1255160.js",
119
- "./www/build/p-e743c791.entry.js"
117
+ "./www/build/p-ec8a0b02.system.js",
118
+ "./www/build/p-ecf343d4.js",
119
+ "./www/build/p-f1804d7b.system.entry.js"
120
120
  ]
121
121
  },
122
122
  {
@@ -149,12 +149,12 @@
149
149
  "components": [
150
150
  "mds-input-select"
151
151
  ],
152
- "bundleId": "p-e743c791",
153
- "fileName": "p-e743c791.entry.js",
152
+ "bundleId": "p-99fd6ce0",
153
+ "fileName": "p-99fd6ce0.entry.js",
154
154
  "imports": [
155
- "p-babc558f.js"
155
+ "p-ecf343d4.js"
156
156
  ],
157
- "originalByteSize": 30540
157
+ "originalByteSize": 18240
158
158
  }
159
159
  ],
160
160
  "esm": [
@@ -166,9 +166,9 @@
166
166
  "bundleId": "mds-input-select",
167
167
  "fileName": "mds-input-select.entry.js",
168
168
  "imports": [
169
- "index-27f9b67f.js"
169
+ "index-f99575c3.js"
170
170
  ],
171
- "originalByteSize": 30544
171
+ "originalByteSize": 18244
172
172
  }
173
173
  ],
174
174
  "es5": [
@@ -180,9 +180,9 @@
180
180
  "bundleId": "mds-input-select",
181
181
  "fileName": "mds-input-select.entry.js",
182
182
  "imports": [
183
- "index-27f9b67f.js"
183
+ "index-f99575c3.js"
184
184
  ],
185
- "originalByteSize": 30544
185
+ "originalByteSize": 18244
186
186
  }
187
187
  ],
188
188
  "system": [
@@ -191,12 +191,12 @@
191
191
  "components": [
192
192
  "mds-input-select"
193
193
  ],
194
- "bundleId": "p-7ab40018.system",
195
- "fileName": "p-7ab40018.system.entry.js",
194
+ "bundleId": "p-f1804d7b.system",
195
+ "fileName": "p-f1804d7b.system.entry.js",
196
196
  "imports": [
197
- "p-5a0746e7.system.js"
197
+ "p-39558724.system.js"
198
198
  ],
199
- "originalByteSize": 31459
199
+ "originalByteSize": 19159
200
200
  }
201
201
  ],
202
202
  "commonjs": [
@@ -208,9 +208,9 @@
208
208
  "bundleId": "mds-input-select.cjs",
209
209
  "fileName": "mds-input-select.cjs.entry.js",
210
210
  "imports": [
211
- "index-9a5feb6d.js"
211
+ "index-f192b288.js"
212
212
  ],
213
- "originalByteSize": 30639
213
+ "originalByteSize": 18339
214
214
  }
215
215
  ]
216
216
  },
@@ -249,13 +249,13 @@
249
249
  "text": "Emits an InputChangeEventDetail when the value of the input element changes"
250
250
  },
251
251
  "complexType": {
252
- "original": "InputValue",
253
- "resolved": "InputValue",
252
+ "original": "MdsInputEventDetail",
253
+ "resolved": "MdsInputEventDetail",
254
254
  "references": {
255
- "InputValue": {
255
+ "MdsInputEventDetail": {
256
256
  "location": "import",
257
- "path": "@interface/input-value",
258
- "id": "src/interface/input-value.ts::InputValue"
257
+ "path": "@type/input",
258
+ "id": "src/type/input.ts::MdsInputEventDetail"
259
259
  }
260
260
  }
261
261
  },
@@ -722,13 +722,13 @@
722
722
  "text": "Emits an InputChangeEventDetail when the value of the input element changes"
723
723
  },
724
724
  "complexType": {
725
- "original": "InputValue",
726
- "resolved": "InputValue",
725
+ "original": "MdsInputEventDetail",
726
+ "resolved": "MdsInputEventDetail",
727
727
  "references": {
728
- "InputValue": {
728
+ "MdsInputEventDetail": {
729
729
  "location": "import",
730
- "path": "@interface/input-value",
731
- "id": "src/interface/input-value.ts::InputValue"
730
+ "path": "@type/input",
731
+ "id": "src/type/input.ts::MdsInputEventDetail"
732
732
  }
733
733
  }
734
734
  },
@@ -866,12 +866,13 @@
866
866
  ],
867
867
  "componentGraph": {
868
868
  "sc-mds-input-select": [
869
- "p-babc558f.js"
869
+ "p-ecf343d4.js"
870
870
  ]
871
871
  },
872
872
  "sourceGraph": {
873
873
  "./src/common/aria.ts": [],
874
874
  "./src/common/date.ts": [],
875
+ "./src/common/device.ts": [],
875
876
  "./src/common/file.ts": [],
876
877
  "./src/common/icon.ts": [],
877
878
  "./src/common/keyboard-manager.ts": [],
@@ -911,15 +912,14 @@
911
912
  "./src/dictionary/variant.ts": [],
912
913
  "./src/fixtures/cities.ts": [],
913
914
  "./src/fixtures/filenames.ts": [],
914
- "./src/interface/input-value.ts": [],
915
915
  "./src/type/autocomplete.ts": [],
916
916
  "./src/type/button.ts": [],
917
917
  "./src/type/date.ts": [],
918
918
  "./src/type/file-types.ts": [],
919
919
  "./src/type/floating-ui.ts": [],
920
920
  "./src/type/form-rel.ts": [],
921
+ "./src/type/header-bar.ts": [],
921
922
  "./src/type/input.ts": [],
922
- "./src/type/language.ts": [],
923
923
  "./src/type/loading.ts": [],
924
924
  "./src/type/preference.ts": [],
925
925
  "./src/type/text.ts": [],
@@ -1,5 +1,7 @@
1
1
  declare const unslugName: (name: string) => string;
2
2
  declare const setAttributeIfEmpty: (element: HTMLElement, attribute: string, value: string) => string;
3
+ declare const removeAttributesIf: (element: HTMLElement, attribute: string, valueCheck: string | undefined, cleanAttributes: string | string[]) => boolean;
4
+ declare const ifAttribute: (element: HTMLElement, attribute: string, valueCheck?: string) => boolean;
3
5
  declare const hashValue: (value: string) => string;
4
6
  declare const hashRandomValue: (value?: string) => string;
5
- export { unslugName, setAttributeIfEmpty, hashRandomValue, hashValue, };
7
+ export { hashRandomValue, hashValue, removeAttributesIf, setAttributeIfEmpty, ifAttribute, unslugName, };
@@ -1,4 +1,4 @@
1
- import { ISO8601Date } from '@type/date';
1
+ import { ISO8601Date } from "../type/date";
2
2
  declare const isISO8601Date: (dateString: string) => boolean;
3
3
  declare const sanitizeISO8601Date: (dateString: string) => ISO8601Date;
4
4
  export { sanitizeISO8601Date, isISO8601Date, };
@@ -0,0 +1,2 @@
1
+ declare const isMobileDevice: () => boolean;
2
+ export { isMobileDevice, };
@@ -1,9 +1,8 @@
1
- import { ExtensionInfo } from '@dictionary/file-extensions';
1
+ import { ExtensionInfo } from "../dictionary/file-extensions";
2
+ import { ThemeFullVariantType } from "../type/variant";
2
3
  interface FileFormatsVariants {
3
- color: string;
4
4
  icon: string;
5
- iconBackground: string;
6
- variant: string;
5
+ variant: ThemeFullVariantType;
7
6
  }
8
7
  declare const getName: (rawFilename: string) => string;
9
8
  declare const getSuffix: (rawFilename: string, suffixOverride?: string) => string;
@@ -9,9 +9,11 @@ export declare class Locale {
9
9
  language: string;
10
10
  config: LocaleConfig;
11
11
  closestElement: HTMLElement;
12
+ element: HTMLElement;
12
13
  constructor(configData?: LocaleConfig);
13
14
  set: (configData: LocaleConfig) => void;
14
- lang: (element: HTMLElement) => string;
15
+ lang: (el: HTMLElement) => string;
16
+ update: (doc?: Document | ShadowRoot) => void;
15
17
  private pluralize;
16
18
  get: (tag: string | string[], context?: Record<string, string | number>) => string;
17
19
  }
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter } from '../../stencil-public-runtime';
2
- import { InputValue } from '@interface/input-value';
3
- import { ThemeStatusVariantType } from '@type/variant';
2
+ import { MdsInputEventDetail } from "../../type/input";
3
+ import { ThemeStatusVariantType } from "../../type/variant";
4
4
  /**
5
5
  * @part select - The select HTML element
6
6
  */
@@ -52,7 +52,7 @@ export declare class MdsInputSelect {
52
52
  /**
53
53
  * Emits an InputChangeEventDetail when the value of the input element changes
54
54
  */
55
- changeEvent: EventEmitter<InputValue>;
55
+ changeEvent: EventEmitter<MdsInputEventDetail>;
56
56
  /**
57
57
  * Emits the change event when the component value changes
58
58
  */
@@ -5,10 +5,10 @@
5
5
  * It contains typing information for all components that exist in this project.
6
6
  */
7
7
  import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
- import { ThemeStatusVariantType } from "@type/variant";
9
- import { InputValue } from "@interface/input-value";
10
- export { ThemeStatusVariantType } from "@type/variant";
11
- export { InputValue } from "@interface/input-value";
8
+ import { ThemeStatusVariantType } from "./type/variant";
9
+ import { MdsInputEventDetail } from "./type/input";
10
+ export { ThemeStatusVariantType } from "./type/variant";
11
+ export { MdsInputEventDetail } from "./type/input";
12
12
  export namespace Components {
13
13
  interface MdsInputSelect {
14
14
  /**
@@ -59,7 +59,7 @@ export interface MdsInputSelectCustomEvent<T> extends CustomEvent<T> {
59
59
  }
60
60
  declare global {
61
61
  interface HTMLMdsInputSelectElementEventMap {
62
- "mdsInputSelectChange": InputValue;
62
+ "mdsInputSelectChange": MdsInputEventDetail;
63
63
  }
64
64
  interface HTMLMdsInputSelectElement extends Components.MdsInputSelect, HTMLStencilElement {
65
65
  addEventListener<K extends keyof HTMLMdsInputSelectElementEventMap>(type: K, listener: (this: HTMLMdsInputSelectElement, ev: MdsInputSelectCustomEvent<HTMLMdsInputSelectElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
@@ -104,7 +104,7 @@ declare namespace LocalJSX {
104
104
  /**
105
105
  * Emits an InputChangeEventDetail when the value of the input element changes
106
106
  */
107
- "onMdsInputSelectChange"?: (event: MdsInputSelectCustomEvent<InputValue>) => void;
107
+ "onMdsInputSelectChange"?: (event: MdsInputSelectCustomEvent<MdsInputEventDetail>) => void;
108
108
  /**
109
109
  * Specifies a short hint that describes the expected value of the element
110
110
  */
@@ -1,9 +1,10 @@
1
+ import { FileFormat } from "../type/variant-file-format";
1
2
  interface FileExtenstion {
2
3
  [key: string]: ExtensionInfo;
3
4
  }
4
5
  interface ExtensionInfo {
5
6
  preview?: boolean;
6
- format: string;
7
+ format: FileFormat;
7
8
  description: string;
8
9
  }
9
10
  declare const fileExtensionsDictionary: FileExtenstion;
@@ -1,2 +1,4 @@
1
+ declare const typographyTagDictionary: string[];
2
+ declare const typographyHeadingTagDictionary: string[];
1
3
  declare const truncateDictionary: string[];
2
- export { truncateDictionary, };
4
+ export { truncateDictionary, typographyHeadingTagDictionary, typographyTagDictionary, };
@@ -5,8 +5,9 @@ declare const themeFullVariantDictionary: string[];
5
5
  declare const themeFullVariantAvatarDictionary: string[];
6
6
  declare const themeLabelVariantDictionary: string[];
7
7
  declare const toneVariantDictionary: string[];
8
+ declare const themeVariantChipDictionary: string[];
8
9
  declare const toneActionVariantDictionary: string[];
9
10
  declare const toneSimpleVariantDictionary: string[];
10
11
  declare const toneSmartVariantDictionary: string[];
11
12
  declare const toneMinimalVariantDictionary: string[];
12
- export { themeFullVariantAvatarDictionary, themeFullVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary, themeVariantDictionary, toneActionVariantDictionary, toneMinimalVariantDictionary, toneSimpleVariantDictionary, toneSmartVariantDictionary, toneVariantDictionary, };
13
+ export { themeFullVariantAvatarDictionary, themeFullVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary, themeVariantDictionary, themeVariantChipDictionary, toneActionVariantDictionary, toneMinimalVariantDictionary, toneSimpleVariantDictionary, toneSmartVariantDictionary, toneVariantDictionary, };
@@ -1015,6 +1015,8 @@ export declare namespace JSXBase {
1015
1015
  autoPlay?: boolean;
1016
1016
  autoplay?: boolean | string;
1017
1017
  controls?: boolean;
1018
+ controlslist?: 'nodownload' | 'nofullscreen' | 'noremoteplayback';
1019
+ controlsList?: 'nodownload' | 'nofullscreen' | 'noremoteplayback';
1018
1020
  crossOrigin?: string;
1019
1021
  crossorigin?: string;
1020
1022
  loop?: boolean;
@@ -1564,6 +1566,10 @@ export declare namespace JSXBase {
1564
1566
  onSubmitCapture?: (event: Event) => void;
1565
1567
  onInvalid?: (event: Event) => void;
1566
1568
  onInvalidCapture?: (event: Event) => void;
1569
+ onBeforeToggle?: (event: Event) => void;
1570
+ onBeforeToggleCapture?: (event: Event) => void;
1571
+ onToggle?: (event: Event) => void;
1572
+ onToggleCapture?: (event: Event) => void;
1567
1573
  onLoad?: (event: Event) => void;
1568
1574
  onLoadCapture?: (event: Event) => void;
1569
1575
  onError?: (event: Event) => void;
@@ -1,2 +1,2 @@
1
- export type AutocompleteType = 'additional-name' | 'address' | 'address-level1' | 'address-level2' | 'address-level3' | 'address-level4' | 'address-line1' | 'address-line2' | 'address-line3' | 'bday' | 'bday-day' | 'bday-month' | 'bday-year' | 'cc-additional-name' | 'cc-csc' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year' | 'cc-family-name' | 'cc-family-name' | 'cc-given-name' | 'cc-name' | 'cc-number' | 'cc-type' | 'country' | 'country-name' | 'current-password' | 'email' | 'family-name' | 'given-name' | 'honorific-prefix' | 'honorific-suffix' | 'impp' | 'language' | 'name' | 'new-password' | 'nickname' | 'off' | 'on' | 'one-time-code' | 'organization' | 'organization-title' | 'photo' | 'postal-code' | 'sex' | 'street-address' | 'tel' | 'tel-area-code' | 'tel-country-code' | 'tel-extension' | 'tel-local' | 'tel-national' | 'transaction-amount' | 'transaction-currency' | 'url' | 'username';
1
+ export type AutocompleteType = 'additional-name' | 'address' | 'address-level1' | 'address-level2' | 'address-level3' | 'address-level4' | 'address-line1' | 'address-line2' | 'address-line3' | 'bday' | 'bday-day' | 'bday-month' | 'bday-year' | 'cc-additional-name' | 'cc-csc' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year' | 'cc-family-name' | 'cc-given-name' | 'cc-name' | 'cc-number' | 'cc-type' | 'country' | 'country-name' | 'current-password' | 'email' | 'family-name' | 'given-name' | 'honorific-prefix' | 'honorific-suffix' | 'impp' | 'language' | 'name' | 'new-password' | 'nickname' | 'off' | 'on' | 'one-time-code' | 'organization' | 'organization-title' | 'photo' | 'postal-code' | 'sex' | 'street-address' | 'tel' | 'tel-area-code' | 'tel-country-code' | 'tel-extension' | 'tel-local' | 'tel-national' | 'transaction-amount' | 'transaction-currency' | 'url' | 'username';
2
2
  export type InputTextType = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'textarea' | 'time' | 'url';
@@ -2,4 +2,4 @@ export type ButtonType = 'a' | 'button' | 'reset' | 'submit';
2
2
  export type ButtonTargetType = 'self' | 'blank';
3
3
  export type ButtonSizeType = 'sm' | 'md' | 'lg' | 'xl';
4
4
  export type ButtonIconPositionType = 'left' | 'right';
5
- export type ButtonVariantType = 'primary' | 'dark' | 'light' | 'error' | 'info' | 'success' | 'warning';
5
+ export type ButtonVariantType = 'primary' | 'secondary' | 'dark' | 'light' | 'error' | 'info' | 'success' | 'warning';
@@ -0,0 +1,2 @@
1
+ export type HeaderBarMenuType = 'all' | 'desktop' | 'mobile' | 'none';
2
+ export type HeaderBarNavType = 'all' | 'desktop' | 'mobile' | 'none';
@@ -2,3 +2,6 @@ export type InputControlsLayoutType = 'horizontal' | 'vertical';
2
2
  export type InputControlsIconType = 'arrow' | 'arithmetic';
3
3
  export type InputValueType = null | number | string | undefined;
4
4
  export type InputTextType = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'textarea' | 'time' | 'url';
5
+ export interface MdsInputEventDetail {
6
+ value?: File | string | FormData | null;
7
+ }
@@ -1 +1,3 @@
1
+ export type TypographyTagType = 'abbr' | 'address' | 'article' | 'b' | 'bdo' | 'blockquote' | 'cite' | 'code' | 'dd' | 'del' | 'details' | 'dfn' | 'div' | 'dl' | 'dt' | 'em' | 'figcaption' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'i' | 'ins' | 'kbd' | 'label' | 'legend' | 'li' | 'mark' | 'ol' | 'p' | 'pre' | 'q' | 'rb' | 'rt' | 'ruby' | 's' | 'samp' | 'small' | 'span' | 'strong' | 'sub' | 'summary' | 'sup' | 'time' | 'u' | 'ul' | 'var';
2
+ export type TypographyHeadingTagType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
1
3
  export type TypographyTruncateType = 'all' | 'none' | 'word';
@@ -1,11 +1,11 @@
1
+ import { ThemeFullVariantType } from "./variant";
2
+ type FileFormat = 'archive' | 'attachment' | 'audio' | 'code' | 'data' | 'document' | 'email' | 'executable' | 'image' | 'markup' | 'slide' | 'spreadsheet' | 'text' | 'vector' | 'video';
1
3
  interface FileFormatVariant {
2
- color: string;
3
4
  icon: string;
4
- iconBackground: string;
5
- variant: string;
5
+ variant: ThemeFullVariantType;
6
6
  }
7
7
  interface FileFormatVariants {
8
8
  [key: string]: FileFormatVariant;
9
9
  }
10
10
  declare const fileFormatsVariant: FileFormatVariants;
11
- export { fileFormatsVariant, FileFormatVariant, FileFormatVariants, };
11
+ export { fileFormatsVariant, FileFormat, FileFormatVariant, FileFormatVariants, };
@@ -5,8 +5,9 @@ export type ThemeFullVariantAvatarType = 'amaranth' | 'aqua' | 'blue' | 'error'
5
5
  export type ThemeLuminanceVariantType = 'dark' | 'light';
6
6
  export type LabelVariantType = 'amaranth' | 'aqua' | 'blue' | 'green' | 'lime' | 'orange' | 'orchid' | 'sky' | 'violet' | 'yellow';
7
7
  export type ActionVariantType = 'primary' | 'dark' | 'light';
8
+ export type ChipVariantType = 'primary' | 'secondary' | 'dark' | 'error' | 'info' | 'success' | 'warning';
8
9
  export type StateVariantType = 'disabled' | 'focused' | 'readonly';
9
- export type ToneActionVariantType = 'primary' | 'secondary' | 'tertiary' | 'strong' | 'weak' | 'ghost' | 'quiet';
10
+ export type ToneActionVariantType = 'primary' | 'secondary' | 'strong' | 'weak' | 'ghost' | 'quiet';
10
11
  export type ToneVariantType = 'strong' | 'weak' | 'ghost' | 'quiet';
11
12
  export type ToneSimpleVariantType = 'quiet' | 'strong' | 'weak';
12
13
  export type ToneMinimalVariantType = 'strong' | 'weak';