@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.
- package/dist/types/components/molecules/breadcrumb/breadcrumb.d.ts +1 -3
- package/dist/types/components/molecules/breadcrumb/dots-indicator.d.ts +3 -3
- package/dist/types/components/molecules/combobox/combobox.d.ts +3 -4
- package/dist/types/components/molecules/counters/counter.d.ts +3 -4
- package/dist/types/components/molecules/date-time/date-picker.d.ts +3 -4
- package/dist/types/components/molecules/date-time/time-picker.d.ts +3 -3
- package/dist/types/components/molecules/form/form-field.d.ts +3 -4
- package/dist/types/components/molecules/toggle/toggle.d.ts +3 -4
- package/dist/types/components/organisms/search/search-dropdown.d.ts +3 -3
- package/package.json +1 -1
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Renders a row of circular dots, one of which is "active."
|
|
5
5
|
*
|
|
6
|
-
* @
|
|
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
|
|
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
|
-
* @
|
|
7
|
-
* @param {array} children
|
|
8
|
-
* @returns {typeof Component}
|
|
6
|
+
* @type {typeof Component}
|
|
9
7
|
*/
|
|
10
|
-
export const Combobox: typeof
|
|
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
|
-
* @
|
|
7
|
-
* @param {array} children
|
|
8
|
-
* @returns {typeof Component}
|
|
6
|
+
* @type {typeof Component}
|
|
9
7
|
*/
|
|
10
|
-
export const Counter: typeof
|
|
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
|
-
* @
|
|
7
|
-
* @param {array} children
|
|
8
|
-
* @returns {typeof Component}
|
|
6
|
+
* @type {typeof Component}
|
|
9
7
|
*/
|
|
10
|
-
export const DatePicker: typeof
|
|
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
|
-
* @
|
|
7
|
-
* @returns {typeof Component}
|
|
6
|
+
* @type {typeof Component}
|
|
8
7
|
*/
|
|
9
|
-
export const TimePicker: typeof
|
|
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
|
-
* @
|
|
7
|
-
* @param {array} children
|
|
8
|
-
* @returns {typeof Component}
|
|
6
|
+
* @type {typeof Component}
|
|
9
7
|
*/
|
|
10
|
-
export const FormField: typeof
|
|
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
|
-
* @
|
|
7
|
-
* @param {array} children
|
|
8
|
-
* @returns {typeof Component}
|
|
6
|
+
* @type {typeof Component}
|
|
9
7
|
*/
|
|
10
|
-
export const Toggle: typeof
|
|
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
|
-
* @
|
|
7
|
-
* @returns {typeof Component} - The search dropdown component.
|
|
6
|
+
* @type {typeof Component}
|
|
8
7
|
*/
|
|
9
|
-
export const SearchDropdown: typeof
|
|
8
|
+
export const SearchDropdown: typeof Component;
|
|
10
9
|
export default SearchDropdown;
|
|
10
|
+
import { Component } from '@base-framework/base';
|
package/package.json
CHANGED