@alfalab/core-components-picker-button 11.12.6 → 11.12.8

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 (41) hide show
  1. package/{Component-7f86a3f9.d.ts → Component-a9c8f92e.d.ts} +1 -1
  2. package/cssm/{Component-7f86a3f9.d.ts → Component-a9c8f92e.d.ts} +1 -1
  3. package/cssm/field/Component.d.ts +1 -1
  4. package/{esm/typings-7f86a3f9.d.ts → cssm/typings-a9c8f92e.d.ts} +8 -0
  5. package/cssm/utils-34f6b81b.d.ts +1 -1
  6. package/desktop/Component.desktop.js +1 -1
  7. package/{modern/Component-7f86a3f9.d.ts → esm/Component-a9c8f92e.d.ts} +1 -1
  8. package/esm/desktop/Component.desktop.js +1 -1
  9. package/esm/field/Component.d.ts +1 -1
  10. package/esm/field/Component.js +1 -1
  11. package/esm/field/index.css +6 -6
  12. package/esm/index.css +5 -5
  13. package/esm/option/Component.js +1 -1
  14. package/esm/option/index.css +4 -4
  15. package/{modern/typings-7f86a3f9.d.ts → esm/typings-a9c8f92e.d.ts} +8 -0
  16. package/esm/utils-34f6b81b.d.ts +1 -1
  17. package/field/Component.d.ts +1 -1
  18. package/field/Component.js +1 -1
  19. package/field/index.css +6 -6
  20. package/index.css +5 -5
  21. package/{esm/Component-7f86a3f9.d.ts → modern/Component-a9c8f92e.d.ts} +1 -1
  22. package/modern/desktop/Component.desktop.js +1 -1
  23. package/modern/field/Component.d.ts +1 -1
  24. package/modern/field/Component.js +1 -1
  25. package/modern/field/index.css +6 -6
  26. package/modern/index.css +5 -5
  27. package/modern/option/Component.js +1 -1
  28. package/modern/option/index.css +4 -4
  29. package/{cssm/typings-7f86a3f9.d.ts → modern/typings-a9c8f92e.d.ts} +8 -0
  30. package/modern/utils-34f6b81b.d.ts +1 -1
  31. package/moderncssm/Component-a9c8f92e.d.ts +5 -0
  32. package/moderncssm/field/Component.d.ts +1 -1
  33. package/moderncssm/{typings-7f86a3f9.d.ts → typings-a9c8f92e.d.ts} +8 -0
  34. package/moderncssm/utils-34f6b81b.d.ts +1 -1
  35. package/option/Component.js +1 -1
  36. package/option/index.css +4 -4
  37. package/package.json +6 -5
  38. package/typings-a9c8f92e.d.ts +1454 -0
  39. package/utils-34f6b81b.d.ts +1 -1
  40. package/moderncssm/Component-7f86a3f9.d.ts +0 -5
  41. package/typings-7f86a3f9.d.ts +0 -1446
@@ -1,5 +1,5 @@
1
1
  import { ReactNode, RefObject } from 'react';
2
- import { BaseSelectProps, GroupShape, OptionShape, OptionsListProps } from "./typings-7f86a3f9";
2
+ import { BaseSelectProps, GroupShape, OptionShape, OptionsListProps } from "./typings-a9c8f92e";
3
3
  declare const isGroup: (item: OptionShape | GroupShape) => item is GroupShape;
4
4
  declare const isOptionShape: (item: OptionShape | string | null) => item is OptionShape;
5
5
  declare const joinOptions: ({ selected, selectedMultiple, }: {
@@ -1,5 +0,0 @@
1
- /// <reference types="react" />
2
- import React from 'react';
3
- import { OptgroupProps } from "./typings-7f86a3f9";
4
- declare const Optgroup: ({ children, className, label, size }: OptgroupProps) => React.JSX.Element;
5
- export { Optgroup };