@supersoniks/concorde 3.1.41 → 3.1.43

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 (192) hide show
  1. package/build-infos.json +1 -1
  2. package/concorde-core.bundle.js +577 -533
  3. package/concorde-core.es.js +3279 -3087
  4. package/dist/concorde-core.bundle.js +577 -533
  5. package/dist/concorde-core.es.js +3279 -3087
  6. package/index.html +0 -0
  7. package/package.json +3 -1
  8. package/scripts/pre-build.mjs +0 -0
  9. package/scripts/pre-publish.mjs +0 -0
  10. package/src/core/_types/types.ts +0 -0
  11. package/src/core/components/functional/functional.ts +1 -0
  12. package/src/core/components/functional/queue/queue.ts +0 -0
  13. package/src/core/components/functional/router/router.md +0 -0
  14. package/src/core/components/functional/router/router.ts +0 -0
  15. package/src/core/components/functional/sonic-scope/sonic-scope.ts +0 -0
  16. package/src/core/components/functional/states/states.md +0 -0
  17. package/src/core/components/functional/states/states.ts +0 -0
  18. package/src/core/components/functional/submit/submit.md +0 -0
  19. package/src/core/components/functional/submit/submit.ts +0 -0
  20. package/src/core/components/functional/translation/translation.ts +12 -0
  21. package/src/core/components/ui/_css/scroll.ts +1 -1
  22. package/src/core/components/ui/_css/size.ts +12 -12
  23. package/src/core/components/ui/_css/type.ts +54 -23
  24. package/src/core/components/ui/alert/alert.md +0 -0
  25. package/src/core/components/ui/alert/alert.ts +71 -58
  26. package/src/core/components/ui/alert-messages/alert-messages.ts +0 -0
  27. package/src/core/components/ui/badge/badge.md +0 -0
  28. package/src/core/components/ui/badge/badge.ts +25 -26
  29. package/src/core/components/ui/button/button.ts +2 -1
  30. package/src/core/components/ui/card/card-footer.ts +9 -10
  31. package/src/core/components/ui/card/card-header-descripton.ts +3 -3
  32. package/src/core/components/ui/card/card-header.ts +18 -19
  33. package/src/core/components/ui/card/card-main.ts +10 -15
  34. package/src/core/components/ui/card/card.md +2 -1
  35. package/src/core/components/ui/card/card.ts +19 -67
  36. package/src/core/components/ui/divider/divider.ts +41 -19
  37. package/src/core/components/ui/form/checkbox/checkbox.md +0 -0
  38. package/src/core/components/ui/form/checkbox/checkbox.ts +15 -19
  39. package/src/core/components/ui/form/css/form-control.ts +38 -35
  40. package/src/core/components/ui/form/fieldset/fieldset.ts +0 -0
  41. package/src/core/components/ui/form/fieldset/legend-description.ts +5 -5
  42. package/src/core/components/ui/form/fieldset/legend.ts +6 -3
  43. package/src/core/components/ui/form/input/input.md +2 -1
  44. package/src/core/components/ui/form/input/password-helper.ts +0 -0
  45. package/src/core/components/ui/form/input/same-value-helper.ts +0 -0
  46. package/src/core/components/ui/form/radio/radio.md +0 -0
  47. package/src/core/components/ui/form/radio/radio.ts +6 -4
  48. package/src/core/components/ui/form/select/select.md +0 -0
  49. package/src/core/components/ui/form/select/select.ts +2 -2
  50. package/src/core/components/ui/form/textarea/textarea.ts +2 -2
  51. package/src/core/components/ui/group/group.ts +0 -0
  52. package/src/core/components/ui/image/image.ts +0 -0
  53. package/src/core/components/ui/loader/loader.md +8 -0
  54. package/src/core/components/ui/loader/loader.ts +20 -11
  55. package/src/core/components/ui/loader/styles/fixed.ts +8 -10
  56. package/src/core/components/ui/loader/styles/inline.ts +2 -2
  57. package/src/core/components/ui/menu/menu.ts +0 -0
  58. package/src/core/components/ui/modal/modal-subtitle.ts +4 -1
  59. package/src/core/components/ui/modal/modal-title.ts +4 -1
  60. package/src/core/components/ui/modal/modal.md +0 -0
  61. package/src/core/components/ui/modal/modal.ts +6 -3
  62. package/src/core/components/ui/pop/pop.ts +1 -1
  63. package/src/core/components/ui/progress/progress.ts +13 -10
  64. package/src/core/components/ui/table/table-tbody.ts +4 -3
  65. package/src/core/components/ui/table/table-th.ts +19 -13
  66. package/src/core/components/ui/table/table.ts +12 -8
  67. package/src/core/components/ui/theme/theme-collection/core-variables.ts +33 -29
  68. package/src/core/components/ui/theme/theme-collection/dark.ts +0 -0
  69. package/src/core/components/ui/theme/theme-collection/light.ts +7 -11
  70. package/src/core/components/ui/theme/theme.ts +6 -6
  71. package/src/core/components/ui/toast/message-subscriber.ts +0 -0
  72. package/src/core/components/ui/toast/toast-item.ts +12 -10
  73. package/src/core/components/ui/toast/toast.ts +0 -0
  74. package/src/core/components/ui/tooltip/tooltip.ts +2 -2
  75. package/src/core/components/ui/ui.ts +0 -0
  76. package/src/core/core.ts +0 -0
  77. package/src/core/directives/DataProvider.ts +5 -4
  78. package/src/core/directives/Wording.ts +8 -6
  79. package/src/core/mixins/FormCheckable.ts +0 -0
  80. package/src/core/mixins/FormElement.ts +0 -0
  81. package/src/core/mixins/Subscriber.ts +0 -0
  82. package/src/core/utils/HTML.ts +0 -0
  83. package/src/core/utils/LocationHandler.ts +0 -0
  84. package/src/core/utils/Objects.ts +0 -0
  85. package/src/core/utils/PublisherProxy.ts +0 -0
  86. package/src/core/utils/route.ts +0 -0
  87. package/src/docs/docs.ts +0 -0
  88. package/src/docs/header/header.ts +2 -5
  89. package/src/docs/search/docs-search.json +0 -0
  90. package/src/docs/search/page.ts +0 -0
  91. package/src/docs/tailwind/css/tailwind.css +42 -33
  92. package/src/index.ts +0 -2
  93. package/src/tsconfig-model.json +0 -0
  94. package/src/tsconfig.json +6 -0
  95. package/src/tsconfig.tsbuildinfo +1 -0
  96. package/tailwind.config.js +1 -1
  97. package/vite/config.js +0 -0
  98. package/docs/assets/index-CnxgssIs.js +0 -4433
  99. package/docs/assets/index-DCqvoAAf.css +0 -1
  100. package/docs/css/docs.css +0 -0
  101. package/docs/fonts/ClashGrotesk-Bold.eot +0 -0
  102. package/docs/fonts/ClashGrotesk-Bold.ttf +0 -0
  103. package/docs/fonts/ClashGrotesk-Bold.woff +0 -0
  104. package/docs/fonts/ClashGrotesk-Bold.woff2 +0 -0
  105. package/docs/fonts/ClashGrotesk-Extralight.eot +0 -0
  106. package/docs/fonts/ClashGrotesk-Extralight.ttf +0 -0
  107. package/docs/fonts/ClashGrotesk-Extralight.woff +0 -0
  108. package/docs/fonts/ClashGrotesk-Extralight.woff2 +0 -0
  109. package/docs/fonts/ClashGrotesk-Light.eot +0 -0
  110. package/docs/fonts/ClashGrotesk-Light.ttf +0 -0
  111. package/docs/fonts/ClashGrotesk-Light.woff +0 -0
  112. package/docs/fonts/ClashGrotesk-Light.woff2 +0 -0
  113. package/docs/fonts/ClashGrotesk-Medium.eot +0 -0
  114. package/docs/fonts/ClashGrotesk-Medium.ttf +0 -0
  115. package/docs/fonts/ClashGrotesk-Medium.woff +0 -0
  116. package/docs/fonts/ClashGrotesk-Medium.woff2 +0 -0
  117. package/docs/fonts/ClashGrotesk-Regular.eot +0 -0
  118. package/docs/fonts/ClashGrotesk-Regular.ttf +0 -0
  119. package/docs/fonts/ClashGrotesk-Regular.woff +0 -0
  120. package/docs/fonts/ClashGrotesk-Regular.woff2 +0 -0
  121. package/docs/fonts/ClashGrotesk-Semibold.eot +0 -0
  122. package/docs/fonts/ClashGrotesk-Semibold.ttf +0 -0
  123. package/docs/fonts/ClashGrotesk-Semibold.woff +0 -0
  124. package/docs/fonts/ClashGrotesk-Semibold.woff2 +0 -0
  125. package/docs/fonts/ClashGrotesk-Variable.eot +0 -0
  126. package/docs/fonts/ClashGrotesk-Variable.ttf +0 -0
  127. package/docs/fonts/ClashGrotesk-Variable.woff +0 -0
  128. package/docs/fonts/ClashGrotesk-Variable.woff2 +0 -0
  129. package/docs/img/concorde-icon.svg +0 -5
  130. package/docs/img/concorde-logo.svg +0 -1
  131. package/docs/img/concorde.png +0 -0
  132. package/docs/img/concorde_def.png +0 -0
  133. package/docs/img/concorde_seuil.png.webp +0 -0
  134. package/docs/img/concorde_seuil_invert.png +0 -0
  135. package/docs/img/paul_metrand.jpg +0 -0
  136. package/docs/img/paul_metrand_xs.jpg +0 -0
  137. package/docs/index.html +0 -93
  138. package/docs/src/core/components/functional/date/date.md +0 -290
  139. package/docs/src/core/components/functional/fetch/fetch.md +0 -117
  140. package/docs/src/core/components/functional/if/if.md +0 -16
  141. package/docs/src/core/components/functional/list/list.md +0 -199
  142. package/docs/src/core/components/functional/mix/mix.md +0 -41
  143. package/docs/src/core/components/functional/queue/queue.md +0 -87
  144. package/docs/src/core/components/functional/router/router.md +0 -112
  145. package/docs/src/core/components/functional/sdui/default-library.json +0 -108
  146. package/docs/src/core/components/functional/sdui/example.json +0 -99
  147. package/docs/src/core/components/functional/sdui/sdui.md +0 -356
  148. package/docs/src/core/components/functional/states/states.md +0 -87
  149. package/docs/src/core/components/functional/submit/submit.md +0 -83
  150. package/docs/src/core/components/functional/subscriber/subscriber.md +0 -91
  151. package/docs/src/core/components/functional/value/value.md +0 -35
  152. package/docs/src/core/components/ui/alert/alert.md +0 -121
  153. package/docs/src/core/components/ui/badge/badge.md +0 -102
  154. package/docs/src/core/components/ui/button/button.md +0 -184
  155. package/docs/src/core/components/ui/captcha/captcha.md +0 -12
  156. package/docs/src/core/components/ui/card/card.md +0 -96
  157. package/docs/src/core/components/ui/divider/divider.md +0 -35
  158. package/docs/src/core/components/ui/form/checkbox/checkbox.md +0 -96
  159. package/docs/src/core/components/ui/form/fieldset/fieldset.md +0 -129
  160. package/docs/src/core/components/ui/form/form-actions/form-actions.md +0 -77
  161. package/docs/src/core/components/ui/form/form-layout/form-layout.md +0 -43
  162. package/docs/src/core/components/ui/form/input/input.md +0 -168
  163. package/docs/src/core/components/ui/form/input-autocomplete/input-autocomplete.md +0 -130
  164. package/docs/src/core/components/ui/form/radio/radio.md +0 -86
  165. package/docs/src/core/components/ui/form/select/select.md +0 -99
  166. package/docs/src/core/components/ui/form/textarea/textarea.md +0 -65
  167. package/docs/src/core/components/ui/group/group.md +0 -75
  168. package/docs/src/core/components/ui/icon/icon.md +0 -125
  169. package/docs/src/core/components/ui/icon/icons.json +0 -1
  170. package/docs/src/core/components/ui/image/image.md +0 -107
  171. package/docs/src/core/components/ui/link/link.md +0 -43
  172. package/docs/src/core/components/ui/loader/loader.md +0 -37
  173. package/docs/src/core/components/ui/menu/menu.md +0 -288
  174. package/docs/src/core/components/ui/modal/modal.md +0 -123
  175. package/docs/src/core/components/ui/pop/pop.md +0 -79
  176. package/docs/src/core/components/ui/progress/progress.md +0 -63
  177. package/docs/src/core/components/ui/table/table.md +0 -455
  178. package/docs/src/core/components/ui/tooltip/tooltip.md +0 -82
  179. package/docs/src/docs/_core-concept/overview.md +0 -57
  180. package/docs/src/docs/_core-concept/subscriber.md +0 -76
  181. package/docs/src/docs/_getting-started/concorde-outside.md +0 -143
  182. package/docs/src/docs/_getting-started/create-a-component.md +0 -137
  183. package/docs/src/docs/_getting-started/my-first-subscriber.md +0 -174
  184. package/docs/src/docs/_getting-started/pubsub.md +0 -150
  185. package/docs/src/docs/_getting-started/start.md +0 -39
  186. package/docs/src/docs/_getting-started/theming.md +0 -91
  187. package/docs/src/docs/search/docs-search.json +0 -3887
  188. package/docs/src/tag-list.json +0 -1
  189. package/docs/src/tsconfig-model.json +0 -23
  190. package/docs/src/tsconfig.json +0 -808
  191. package/docs/svg/regular/plane.svg +0 -1
  192. package/docs/svg/solid/plane.svg +0 -1
@@ -1,39 +0,0 @@
1
- # Introduction
2
-
3
- ## What is Concorde ?
4
-
5
- Based on **[lit.dev](https://lit.dev)**, Concorde is a collection of webcomponents made to build shared apps or websites.
6
- Develop user interfaces without thinking about the implementation context, where everything is scoped, but preserving graphic consistency by setting the strict minimum of css variables.
7
-
8
- ## Why and use case
9
-
10
- In 2022, Supersoniks wanted to create a new version of his ticketing app, in production un nearly 100 websites. We needed shared components which could be implemented in mobile apps, modern websites, and also old ones made in php, without bundlers or whatever.
11
- Instead of building a new app for each type of project, which would become impossible to maintain, we've decided to create one app, composed by a few webcomponents wich could easily be recomposed on any website.
12
- Webcomponents appeared to be a the perfect solution to guarantee that compatibility with all past, present and futures environment, and lit seemed to be the best choice to build them.
13
-
14
- ### Stack
15
-
16
- * Lit
17
- * Typescript
18
- * Vite
19
- * Tailwind, not in the core, but in the starter kit
20
-
21
- ### Functionnal features and components
22
-
23
- * Data management with Publisher / Subscriber pattern
24
- * Form management
25
- * Fetching data, lists, queue with lazyload
26
- * Data binding
27
- * Simple router, state component, ...
28
- * And all ui component, with status variants to build an app with a consistent design
29
-
30
-
31
- ## Start a new project easily
32
-
33
- A new project with Vite, Typescript and Tailwind already configured and a simple example of a subscriber component :
34
-
35
- <sonic-code language="bash">
36
- <template>
37
- npx @supersoniks/create-concorde-ts-starter "project_name"
38
- </template>
39
- </sonic-code>
@@ -1,91 +0,0 @@
1
- # Adding styles
2
-
3
- ## Normal Behavior
4
-
5
- No style crosses the shadow root of a component, except for inheritable properties (which have the "inherit" property possible) and CSS variables.
6
- Properties integrated via a "[slot](https://developer.mozilla.org/en/docs/Web/HTML/Element/slot)" remain stylizable in a conventional way.
7
-
8
- - **During creation / from the inside:**
9
- - We edit the [static "styles" property of the lit component](https://lit.dev/docs/components/styles/), which can also reference shared and dynamic styles.
10
- These styles are scoped and do not impact the outside.
11
- - We use CSS variables as the value of properties intended to be customized from the outside.
12
- For each variable, we define a default value to have a simple but consistent base style.
13
- - We only rewrite inheritable properties with hard values if they are truly specific to the component.
14
- - The `<style>` tag as a direct child can be used as a last resort, especially if there is a need for particularly dynamic customization. Performance is reduced.
15
- - **During use / from the outside:**
16
- We define values for **inheritable CSS properties** (e.g., font-\_, color...) using tools like Tailwind.
17
- We modify the value of **CSS variables** used by the component.
18
-
19
- ## Choosing Style Presets via Reactive Properties:
20
-
21
- The declaration of reactive properties is useful for selecting a particular configuration that mostly affects a set of properties.
22
-
23
- For example, a `size` property (xs, sm, md, xl) will affect margins, font, line heights to align them with the corresponding CSS vars, which can be customized using the methods mentioned earlier if necessary.
24
-
25
- It is recommended to use the `{reflect: true}` property for reactive properties that have an associated style on the `:host()`. For example: `:host([type='primary']){...}`
26
-
27
- ☢️ **Caution:** Passing class names via reactive properties / HTML attributes of the component should be avoided as it can quickly lead to difficult-to-manage situations.
28
-
29
- #### CSS "display" Property
30
-
31
- By default, the display property is `inline`.
32
- Therefore, be careful to define it according to the needs, as one might mistakenly expect it to be `block` as with a regular `<div>`.
33
-
34
- ☢️ **Caution:** Defining the `display` property as `contents` may seem attractive at first, but:
35
-
36
- - It almost always leads to the creation of wrappers to style the content (instead of using `:host`).
37
- - It is no longer possible to directly add classes to the component or style it from the outside.
38
- Ultimately, the amount of code to write increases significantly.
39
-
40
- ## TAILWIND Functional Classes
41
-
42
- [tailwind](https://tailwindcss.com/) has been integrated into Concorde and is available in scoped components (with Shadow DOM).
43
- To use it, you need to import the following:
44
-
45
- <sonic-code language="javascript">
46
- <template>
47
- import { tailwind } from "@supersoniks/concorde/la-billetterie/ui/theme/theme";
48
- </template>
49
- </sonic-code>
50
-
51
- Then include the `tailwind` style in the static `styles` property of the component:
52
-
53
- <sonic-code language="javascript">
54
- <template>
55
- static styles = [tailwind];
56
- </template>
57
- </sonic-code>
58
-
59
- Finally, use it in the HTML within the render function:
60
-
61
- <sonic-code language="html">
62
- <template>
63
- <p class="m-2">A paragraph with margin</p>
64
- </template>
65
- </sonic-code>
66
-
67
- The colors from Concorde's theme are referenced in Tailwind's theme.
68
-
69
- ## Operation without Shadow DOM
70
-
71
- ### Usefulness
72
-
73
- This operation is particularly useful when it comes to **adding behavior to a simple existing element**.
74
- It may also become necessary to establish **compatibility with a traditional JS library**.
75
-
76
- For example, with a text input:
77
-
78
- - Trigger automatic data or filter update when typing text.
79
- - Automatic formatting.
80
- - Constraints that cannot be handled by native methods.
81
-
82
- ### Consequences
83
-
84
- If there is no shadow DOM (see the **noShadowDom** property of **Subscriber**):
85
-
86
- - Styling using the static "styles" property of the lit component will not be applied.
87
- - The element and its content can be styled in a traditional manner.
88
-
89
- For example, the components `queue`, `list`, and `fetch` do not have a shadow DOM.
90
-
91
- ℹ️ **Note:** Specifically in this case, it may be useful to set the `display` property to `contents`.