@ds-autonomie/web-components 1.16.1 → 1.16.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 (54) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/chunks/{chunk.AWHBPZCA.js → chunk.2UZSRWJ7.js} +16 -17
  3. package/dist/chunks/{chunk.MYXTAE6O.js → chunk.43EIYNTL.js} +1 -3
  4. package/dist/chunks/{chunk.IJAP6FX7.js → chunk.4DRKFRDB.js} +1 -1
  5. package/dist/chunks/{chunk.QE5KX6GC.js → chunk.6TASDLIO.js} +17 -6
  6. package/dist/chunks/{chunk.WFCZZ5Y7.js → chunk.7DHGAM7P.js} +1 -1
  7. package/dist/chunks/{chunk.TJHLVV2Q.js → chunk.AMIXGL74.js} +42 -38
  8. package/dist/chunks/{chunk.YCOCNU2O.js → chunk.BAU3732X.js} +4 -2
  9. package/dist/chunks/{chunk.M6LJDR7Y.js → chunk.CKBRIIGV.js} +20 -18
  10. package/dist/chunks/{chunk.KFFAVINP.js → chunk.EAP74BQL.js} +2 -2
  11. package/dist/chunks/{chunk.VFWCJMJG.js → chunk.IDAQJSVV.js} +31 -26
  12. package/dist/chunks/{chunk.ZVIBE4XH.js → chunk.MJ3ZLDHO.js} +12 -1
  13. package/dist/chunks/{chunk.I7SW3V2A.js → chunk.NXQ42SSB.js} +1 -1
  14. package/dist/chunks/{chunk.U5EXTR5D.js → chunk.PNTPO2DN.js} +6 -7
  15. package/dist/chunks/{chunk.6GBDSLDV.js → chunk.QDXCYEAZ.js} +1 -1
  16. package/dist/chunks/{chunk.JUG6IFUT.js → chunk.TRKYAEYS.js} +1 -1
  17. package/dist/chunks/{chunk.APYW2WVZ.js → chunk.VC3XT47N.js} +1 -1
  18. package/dist/chunks/{chunk.FYTGBKGY.js → chunk.VDOVUA55.js} +5 -7
  19. package/dist/chunks/{chunk.UAC34KI2.js → chunk.VLSSVYAB.js} +2 -1
  20. package/dist/chunks/{chunk.2B2LL7AI.js → chunk.Z5LJXDHJ.js} +5 -1
  21. package/dist/chunks/{chunk.ULHEP5Y6.js → chunk.ZWVWEQGL.js} +20 -22
  22. package/dist/components/accordion/accordion.js +2 -2
  23. package/dist/components/accordion/accordion.styles.js +1 -1
  24. package/dist/components/alert/alert.d.ts +2 -0
  25. package/dist/components/alert/alert.js +1 -1
  26. package/dist/components/combobox/combobox.js +2 -2
  27. package/dist/components/combobox/combobox.styles.js +1 -1
  28. package/dist/components/dialog/dialog.js +1 -1
  29. package/dist/components/filter/filter-date/filter-date.js +2 -2
  30. package/dist/components/filter/filter-range/filter-range.js +2 -2
  31. package/dist/components/filter/filter-select/filter-select.js +2 -2
  32. package/dist/components/footer-mandatory-mentions/footer-mandatory-mentions.d.ts +1 -0
  33. package/dist/components/footer-mandatory-mentions/footer-mandatory-mentions.js +2 -1
  34. package/dist/components/input/input.js +2 -2
  35. package/dist/components/input/input.styles.js +1 -1
  36. package/dist/components/input-mask/input-mask.js +2 -2
  37. package/dist/components/input-mask/input-mask.styles.js +1 -1
  38. package/dist/components/input-phone/input-phone.js +5 -5
  39. package/dist/components/input-phone/input-phone.styles.js +1 -1
  40. package/dist/components/option/option.js +1 -1
  41. package/dist/components/pagination/pagination.d.ts +2 -0
  42. package/dist/components/pagination/pagination.js +3 -3
  43. package/dist/components/select/select.js +2 -2
  44. package/dist/components/select/select.styles.js +1 -1
  45. package/dist/components/textarea/textarea.js +2 -2
  46. package/dist/components/textarea/textarea.styles.js +1 -1
  47. package/dist/custom-elements.json +151 -107
  48. package/dist/design-system.js +20 -20
  49. package/dist/themes/dsa-wc-theme.css +15 -38
  50. package/dist/themes/dsa-wc-theme.min.css +1 -1
  51. package/dist/themes/dsa-wc-theme.styles.js +15 -38
  52. package/dist/vscode.html-custom-data.json +18 -12
  53. package/dist/web-types.json +83 -50
  54. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "name": "@ds-autonomie/web-components",
4
- "version": "1.16.1",
4
+ "version": "1.16.2",
5
5
  "description-markup": "markdown",
6
6
  "framework-config": {
7
7
  "enable-when": {
@@ -176,6 +176,13 @@
176
176
  "type": "HTMLElement"
177
177
  }
178
178
  },
179
+ {
180
+ "name": "title",
181
+ "description": "The alert's title.",
182
+ "value": {
183
+ "type": "string"
184
+ }
185
+ },
179
186
  {
180
187
  "name": "open",
181
188
  "description": "Indicates whether or not the alert is open. You can toggle this attribute to show and hide the alert, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the alert's open state.",
@@ -262,6 +269,13 @@
262
269
  ]
263
270
  },
264
271
  "attributes": [
272
+ {
273
+ "name": "title",
274
+ "description": "The alert's title.",
275
+ "value": {
276
+ "type": "string"
277
+ }
278
+ },
265
279
  {
266
280
  "name": "open",
267
281
  "description": "Indicates whether or not the alert is open. You can toggle this attribute to show and hide the alert, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the alert's open state.",
@@ -4154,7 +4168,12 @@
4154
4168
  "name": "dsa-footer-mandatory-mentions",
4155
4169
  "description": "",
4156
4170
  "js": {
4157
- "properties": [],
4171
+ "properties": [
4172
+ {
4173
+ "name": "hasSlotController",
4174
+ "value": {}
4175
+ }
4176
+ ],
4158
4177
  "events": []
4159
4178
  },
4160
4179
  "attributes": []
@@ -7756,6 +7775,13 @@
7756
7775
  "type": "string"
7757
7776
  }
7758
7777
  },
7778
+ {
7779
+ "name": "navAriaLabel",
7780
+ "description": "Custom aria-label for the pagination <nav> element",
7781
+ "value": {
7782
+ "type": "string"
7783
+ }
7784
+ },
7759
7785
  {
7760
7786
  "name": "navigationType",
7761
7787
  "description": "Aria role of the pagination buttons. Should be set to 'link' if the action triggers a reloading of the page or a navigation to a different page.",
@@ -7844,6 +7870,13 @@
7844
7870
  "type": "string"
7845
7871
  }
7846
7872
  },
7873
+ {
7874
+ "name": "nav-aria-label",
7875
+ "description": "Custom aria-label for the pagination <nav> element",
7876
+ "value": {
7877
+ "type": "string"
7878
+ }
7879
+ },
7847
7880
  {
7848
7881
  "name": "navigation-type",
7849
7882
  "description": "Aria role of the pagination buttons. Should be set to 'link' if the action triggers a reloading of the page or a navigation to a different page.",
@@ -13861,6 +13894,54 @@
13861
13894
  }
13862
13895
  ]
13863
13896
  },
13897
+ {
13898
+ "name": "dsa-table-action",
13899
+ "description": "",
13900
+ "js": {
13901
+ "properties": [
13902
+ {
13903
+ "name": "localize",
13904
+ "value": {}
13905
+ },
13906
+ {
13907
+ "name": "closeButton",
13908
+ "value": {
13909
+ "type": "DSAButton"
13910
+ }
13911
+ },
13912
+ {
13913
+ "name": "show",
13914
+ "description": "`true` if it should be visible.",
13915
+ "value": {
13916
+ "type": "boolean"
13917
+ }
13918
+ },
13919
+ {
13920
+ "name": "handleClose",
13921
+ "value": {}
13922
+ },
13923
+ {
13924
+ "name": "handleShowChange",
13925
+ "value": {}
13926
+ }
13927
+ ],
13928
+ "events": [
13929
+ {
13930
+ "name": "dsa-table-actions-close",
13931
+ "description": "Emitted when the close button is activated."
13932
+ }
13933
+ ]
13934
+ },
13935
+ "attributes": [
13936
+ {
13937
+ "name": "show",
13938
+ "description": "`true` if it should be visible.",
13939
+ "value": {
13940
+ "type": "boolean"
13941
+ }
13942
+ }
13943
+ ]
13944
+ },
13864
13945
  {
13865
13946
  "name": "dsa-navbar-menu",
13866
13947
  "description": "",
@@ -14007,54 +14088,6 @@
14007
14088
  }
14008
14089
  ]
14009
14090
  },
14010
- {
14011
- "name": "dsa-table-action",
14012
- "description": "",
14013
- "js": {
14014
- "properties": [
14015
- {
14016
- "name": "localize",
14017
- "value": {}
14018
- },
14019
- {
14020
- "name": "closeButton",
14021
- "value": {
14022
- "type": "DSAButton"
14023
- }
14024
- },
14025
- {
14026
- "name": "show",
14027
- "description": "`true` if it should be visible.",
14028
- "value": {
14029
- "type": "boolean"
14030
- }
14031
- },
14032
- {
14033
- "name": "handleClose",
14034
- "value": {}
14035
- },
14036
- {
14037
- "name": "handleShowChange",
14038
- "value": {}
14039
- }
14040
- ],
14041
- "events": [
14042
- {
14043
- "name": "dsa-table-actions-close",
14044
- "description": "Emitted when the close button is activated."
14045
- }
14046
- ]
14047
- },
14048
- "attributes": [
14049
- {
14050
- "name": "show",
14051
- "description": "`true` if it should be visible.",
14052
- "value": {
14053
- "type": "boolean"
14054
- }
14055
- }
14056
- ]
14057
- },
14058
14091
  {
14059
14092
  "name": "dsa-table-body",
14060
14093
  "description": "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ds-autonomie/web-components",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
4
4
  "author": "CNSA",
5
5
  "license": "MIT",
6
6
  "customElements": "dist/custom-elements.json",