@base-framework/ui 1.0.28 → 1.0.29

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.
@@ -3,9 +3,7 @@
3
3
  *
4
4
  * This will render a Breadcrumb component.
5
5
  *
6
- * @param {object} props
7
- * @param {array} children
8
- * @returns {typeof Component}
6
+ * @type {typeof Component}
9
7
  */
10
8
  export const Breadcrumb: typeof Component;
11
9
  export default Breadcrumb;
@@ -3,10 +3,10 @@
3
3
  *
4
4
  * Renders a row of circular dots, one of which is "active."
5
5
  *
6
- * @param {object} props
7
- * @returns {typeof Component}
6
+ * @type {typeof Component}
8
7
  * @example
9
8
  * new DotsIndicator({ count: 4, activeIndex: 0 })
10
9
  */
11
- export const DotsIndicator: typeof import("@base-framework/base").Component;
10
+ export const DotsIndicator: typeof Component;
12
11
  export default DotsIndicator;
12
+ import { Component } from '@base-framework/base';
@@ -3,8 +3,7 @@
3
3
  *
4
4
  * This will render a combobox component.
5
5
  *
6
- * @param {object} props
7
- * @param {array} children
8
- * @returns {typeof Component}
6
+ * @type {typeof Component}
9
7
  */
10
- export const Combobox: typeof import("@base-framework/base").Component;
8
+ export const Combobox: typeof Component;
9
+ import { Component } from '@base-framework/base';
@@ -3,9 +3,8 @@
3
3
  *
4
4
  * This creates a counter component with an input for count and buttons to increment and decrement.
5
5
  *
6
- * @param {object} props
7
- * @param {array} children
8
- * @returns {typeof Component}
6
+ * @type {typeof Component}
9
7
  */
10
- export const Counter: typeof import("@base-framework/base").Component;
8
+ export const Counter: typeof Component;
11
9
  export default Counter;
10
+ import { Component } from '@base-framework/base';
@@ -3,9 +3,8 @@
3
3
  *
4
4
  * This will create a date picker component.
5
5
  *
6
- * @param {object} props
7
- * @param {array} children
8
- * @returns {typeof Component}
6
+ * @type {typeof Component}
9
7
  */
10
- export const DatePicker: typeof import("@base-framework/base").Component;
8
+ export const DatePicker: typeof Component;
11
9
  export default DatePicker;
10
+ import { Component } from '@base-framework/base';
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * This will create a time picker component.
5
5
  *
6
- * @param {object} props
7
- * @returns {typeof Component}
6
+ * @type {typeof Component}
8
7
  */
9
- export const TimePicker: typeof import("@base-framework/base").Component;
8
+ export const TimePicker: typeof Component;
10
9
  export default TimePicker;
10
+ import { Component } from '@base-framework/base';
@@ -3,8 +3,7 @@
3
3
  *
4
4
  * Handles controlled form fields with accessibility.
5
5
  *
6
- * @param {object} props
7
- * @param {array} children
8
- * @returns {typeof Component}
6
+ * @type {typeof Component}
9
7
  */
10
- export const FormField: typeof import("@base-framework/base").Component;
8
+ export const FormField: typeof Component;
9
+ import { Component } from "@base-framework/base";
@@ -3,9 +3,8 @@
3
3
  *
4
4
  * This will create a toggle switch component.
5
5
  *
6
- * @param {object} props
7
- * @param {array} children
8
- * @returns {typeof Component}
6
+ * @type {typeof Component}
9
7
  */
10
- export const Toggle: typeof import("@base-framework/base").Component;
8
+ export const Toggle: typeof Component;
11
9
  export default Toggle;
10
+ import { Component } from '@base-framework/base';
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * This will create a search dropdown.
5
5
  *
6
- * @param {object} props - The properties of the component.
7
- * @returns {typeof Component} - The search dropdown component.
6
+ * @type {typeof Component}
8
7
  */
9
- export const SearchDropdown: typeof import("@base-framework/base").Component;
8
+ export const SearchDropdown: typeof Component;
10
9
  export default SearchDropdown;
10
+ import { Component } from '@base-framework/base';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/ui",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "This is a UI package that adds components and atoms that use Tailwind CSS and a theme based on Shadcn.",
5
5
  "main": "./dist/index.es.js",
6
6
  "scripts": {