@ouestfrance/sipa-bms-ui 8.20.0 → 8.21.0

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 (34) hide show
  1. package/dist/components/form/BmsFilePicker.vue.d.ts +4 -0
  2. package/dist/components/form/BmsMultiSelect.vue.d.ts +4 -0
  3. package/dist/components/form/RawAutocomplete.vue.d.ts +8 -0
  4. package/dist/mockServiceWorker.js +1 -1
  5. package/dist/sipa-bms-ui.css +54 -368
  6. package/dist/sipa-bms-ui.es.js +113 -44
  7. package/dist/sipa-bms-ui.es.js.map +1 -1
  8. package/dist/sipa-bms-ui.umd.js +112 -43
  9. package/dist/sipa-bms-ui.umd.js.map +1 -1
  10. package/package.json +12 -12
  11. package/src/assets/scss/_conf.scss +0 -1
  12. package/src/assets/scss/app.scss +0 -1
  13. package/src/components/button/BmsAllButtons.stories.js +50 -23
  14. package/src/components/button/BmsButton.stories.js +153 -59
  15. package/src/components/form/BmsFilePicker.stories.js +6 -1
  16. package/src/components/form/BmsFilePicker.vue +10 -5
  17. package/src/components/form/BmsMultiSelect.vue +32 -25
  18. package/src/components/form/BmsSelect.vue +18 -16
  19. package/src/components/form/RawAutocomplete.vue +16 -4
  20. package/src/components/form/RawInputText.vue +1 -0
  21. package/src/components/layout/BmsModal.stories.js +2 -1
  22. package/src/components/layout/BmsSplitWindow.vue +0 -1
  23. package/src/components/table/BmsTableFilters.vue +1 -1
  24. package/src/documentation/button/primaryButton.mdx +142 -0
  25. package/src/documentation/{secondaryButton.mdx → button/secondaryButton.mdx} +2 -2
  26. package/src/documentation/foundation/contributing.mdx +72 -0
  27. package/src/documentation/foundation/gettingstarted.mdx +7 -0
  28. package/src/documentation/{principles.mdx → foundation/principles.mdx} +9 -9
  29. package/src/documentation/icons.mdx +43 -0
  30. package/src/showroom/pages/forms.vue +10 -1
  31. package/src/assets/scss/_formkit.scss +0 -353
  32. package/src/components/form/Form.stories.js +0 -35
  33. package/src/documentation/primaryButton.mdx +0 -20
  34. /package/src/documentation/{button.mdx → button/button.mdx} +0 -0
@@ -1,4 +1,6 @@
1
1
  type __VLS_Props = {
2
+ dragOverMessage?: string;
3
+ dragOffMessage?: string;
2
4
  modelValue?: File[];
3
5
  limit: number;
4
6
  };
@@ -7,6 +9,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
7
9
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
8
10
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
9
11
  }>, {
12
+ dragOverMessage: string;
13
+ dragOffMessage: string;
10
14
  limit: number;
11
15
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
12
16
  export default _default;
@@ -9,8 +9,12 @@ type __VLS_PublicProps = {
9
9
  'modelValue'?: string[] | null;
10
10
  } & __VLS_Props;
11
11
  declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ select: (option: string | InputOption) => any;
13
+ input: (e: InputEvent) => any;
12
14
  "update:modelValue": (value: string[] | null) => any;
13
15
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
+ onSelect?: ((option: string | InputOption) => any) | undefined;
17
+ onInput?: ((e: InputEvent) => any) | undefined;
14
18
  "onUpdate:modelValue"?: ((value: string[] | null) => any) | undefined;
15
19
  }>, {
16
20
  label: string;
@@ -16,10 +16,18 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
16
16
  setFocus: () => void;
17
17
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
18
  select: (option: InputOption) => any;
19
+ input: (e: InputEvent) => any;
20
+ blur: () => any;
21
+ click: () => any;
22
+ focus: () => any;
19
23
  addNewOption: (newOption: string) => any;
20
24
  "update:modelValue": (value: string | null) => any;
21
25
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
22
26
  onSelect?: ((option: InputOption) => any) | undefined;
27
+ onInput?: ((e: InputEvent) => any) | undefined;
28
+ onBlur?: (() => any) | undefined;
29
+ onClick?: (() => any) | undefined;
30
+ onFocus?: (() => any) | undefined;
23
31
  onAddNewOption?: ((newOption: string) => any) | undefined;
24
32
  "onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
25
33
  }>, {
@@ -7,7 +7,7 @@
7
7
  * - Please do NOT modify this file.
8
8
  */
9
9
 
10
- const PACKAGE_VERSION = '2.12.3'
10
+ const PACKAGE_VERSION = '2.12.4'
11
11
  const INTEGRITY_CHECKSUM = '4db4a41e972cec1b64cc569c66952d82'
12
12
  const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
13
13
  const activeClientIds = new Set()