@base-framework/ui 1.0.26 → 1.0.27
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/atoms/form/inputs/checkbox.d.ts +1 -1
- package/dist/types/components/atoms/form/inputs/range-slider.d.ts +1 -1
- package/dist/types/components/atoms/progress/progress-bar.d.ts +1 -1
- package/dist/types/components/atoms/veil.d.ts +1 -1
- package/dist/types/components/molecules/breadcrumb/breadcrumb.d.ts +3 -2
- package/dist/types/components/molecules/breadcrumb/dots-indicator.d.ts +2 -2
- package/dist/types/components/molecules/combobox/combobox.d.ts +2 -2
- package/dist/types/components/molecules/counters/counter.d.ts +2 -2
- package/dist/types/components/molecules/date-time/date-picker.d.ts +2 -2
- package/dist/types/components/molecules/date-time/time-picker.d.ts +2 -2
- package/dist/types/components/molecules/form/form-field.d.ts +2 -2
- package/dist/types/components/molecules/theme-toggle.d.ts +1 -1
- package/dist/types/components/molecules/toggle/toggle.d.ts +2 -2
- package/dist/types/components/organisms/lists/data-table.d.ts +1 -1
- package/dist/types/components/organisms/search/search-dropdown.d.ts +2 -2
- package/package.json +1 -1
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* @param {object} props
|
|
7
7
|
* @returns {object}
|
|
8
8
|
*/
|
|
9
|
-
export const Checkbox: import("
|
|
9
|
+
export const Checkbox: typeof import("@base-framework/base").Component;
|
|
10
10
|
export default Checkbox;
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
* @param {array} children
|
|
10
10
|
* @returns {object}
|
|
11
11
|
*/
|
|
12
|
-
export const Veil: import("
|
|
12
|
+
export const Veil: typeof import("@base-framework/base").Component;
|
|
13
13
|
export function VeilJot(props: any): import("node_modules/@base-framework/base/dist/types/modules/component/jot").ComponentConstructor;
|
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @param {object} props
|
|
7
7
|
* @param {array} children
|
|
8
|
-
* @returns {
|
|
8
|
+
* @returns {typeof Component}
|
|
9
9
|
*/
|
|
10
|
-
export const Breadcrumb:
|
|
10
|
+
export const Breadcrumb: typeof Component;
|
|
11
11
|
export default Breadcrumb;
|
|
12
|
+
import { Component } from '@base-framework/base';
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* Renders a row of circular dots, one of which is "active."
|
|
5
5
|
*
|
|
6
6
|
* @param {object} props
|
|
7
|
-
* @returns {
|
|
7
|
+
* @returns {typeof Component}
|
|
8
8
|
* @example
|
|
9
9
|
* new DotsIndicator({ count: 4, activeIndex: 0 })
|
|
10
10
|
*/
|
|
11
|
-
export const DotsIndicator: import("
|
|
11
|
+
export const DotsIndicator: typeof import("@base-framework/base").Component;
|
|
12
12
|
export default DotsIndicator;
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @param {object} props
|
|
7
7
|
* @param {array} children
|
|
8
|
-
* @returns {
|
|
8
|
+
* @returns {typeof Component}
|
|
9
9
|
*/
|
|
10
|
-
export const Combobox: import("
|
|
10
|
+
export const Combobox: typeof import("@base-framework/base").Component;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @param {object} props
|
|
7
7
|
* @param {array} children
|
|
8
|
-
* @returns {
|
|
8
|
+
* @returns {typeof Component}
|
|
9
9
|
*/
|
|
10
|
-
export const Counter:
|
|
10
|
+
export const Counter: any;
|
|
11
11
|
export default Counter;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @param {object} props
|
|
7
7
|
* @param {array} children
|
|
8
|
-
* @returns {
|
|
8
|
+
* @returns {typeof Component}
|
|
9
9
|
*/
|
|
10
|
-
export const DatePicker:
|
|
10
|
+
export const DatePicker: any;
|
|
11
11
|
export default DatePicker;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This will create a time picker component.
|
|
5
5
|
*
|
|
6
6
|
* @param {object} props
|
|
7
|
-
* @returns {
|
|
7
|
+
* @returns {typeof Component}
|
|
8
8
|
*/
|
|
9
|
-
export const TimePicker:
|
|
9
|
+
export const TimePicker: any;
|
|
10
10
|
export default TimePicker;
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @param {object} props
|
|
7
7
|
* @param {array} children
|
|
8
|
-
* @returns {
|
|
8
|
+
* @returns {typeof Component}
|
|
9
9
|
*/
|
|
10
|
-
export const FormField:
|
|
10
|
+
export const FormField: any;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @param {object} props
|
|
7
7
|
* @param {array} children
|
|
8
|
-
* @returns {
|
|
8
|
+
* @returns {typeof Component}
|
|
9
9
|
*/
|
|
10
|
-
export const Toggle:
|
|
10
|
+
export const Toggle: any;
|
|
11
11
|
export default Toggle;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @param {object} props
|
|
7
7
|
* @returns {object}
|
|
8
8
|
*/
|
|
9
|
-
export const DataTable: import("
|
|
9
|
+
export const DataTable: typeof import("@base-framework/base").Component;
|
|
10
10
|
import { CheckboxCol } from './table-header.js';
|
|
11
11
|
import { HeaderCol } from './table-header.js';
|
|
12
12
|
import { TableHeader } from './table-header.js';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This will create a search dropdown.
|
|
5
5
|
*
|
|
6
6
|
* @param {object} props - The properties of the component.
|
|
7
|
-
* @returns {
|
|
7
|
+
* @returns {typeof Component} - The search dropdown component.
|
|
8
8
|
*/
|
|
9
|
-
export const SearchDropdown: import("
|
|
9
|
+
export const SearchDropdown: typeof import("@base-framework/base").Component;
|
|
10
10
|
export default SearchDropdown;
|
package/package.json
CHANGED