@base-framework/ui 1.0.29 → 1.0.31

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,8 +3,8 @@
3
3
  *
4
4
  * Creates a range slider with a custom style matching the provided design.
5
5
  *
6
- * @param {object} props
7
- * @returns {object}
6
+ * @type {typeof Veil}
8
7
  */
9
- export const RangeSlider: typeof import("@base-framework/base").Component;
8
+ export const RangeSlider: typeof Veil;
10
9
  export default RangeSlider;
10
+ import { Veil } from '../../veil.js';
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * This will create a progress bar component.
5
5
  *
6
- * @param {object} props
7
- * @returns {object}
6
+ * @type {typeof Veil}
8
7
  */
9
- export const ProgressBar: typeof import("@base-framework/base").Component;
8
+ export const ProgressBar: typeof Veil;
9
+ import { Veil } from '../veil.js';
@@ -8,5 +8,5 @@
8
8
  * @type {typeof Component}
9
9
  */
10
10
  export const Veil: typeof Component;
11
- export function VeilJot(props: any): typeof Component;
11
+ export function VeilJot(props: any): typeof Veil;
12
12
  import { Component } from "@base-framework/base";
@@ -3,8 +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
- * @type {typeof Component}
6
+ * @type {typeof Veil}
7
7
  */
8
- export const Counter: typeof Component;
8
+ export const Counter: typeof Veil;
9
9
  export default Counter;
10
- import { Component } from '@base-framework/base';
10
+ import { Veil } from '../../atoms/veil.js';
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * This will create a date picker component.
5
5
  *
6
- * @type {typeof Component}
6
+ * @type {typeof Veil}
7
7
  */
8
- export const DatePicker: typeof Component;
8
+ export const DatePicker: typeof Veil;
9
9
  export default DatePicker;
10
- import { Component } from '@base-framework/base';
10
+ import { Veil } from '../../atoms/veil.js';
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * This will create a time picker component.
5
5
  *
6
- * @type {typeof Component}
6
+ * @type {typeof Veil}
7
7
  */
8
- export const TimePicker: typeof Component;
8
+ export const TimePicker: typeof Veil;
9
9
  export default TimePicker;
10
- import { Component } from '@base-framework/base';
10
+ import { Veil } from '../../atoms/veil.js';
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * Handles controlled form fields with accessibility.
5
5
  *
6
- * @type {typeof Component}
6
+ * @type {typeof Veil}
7
7
  */
8
- export const FormField: typeof Component;
9
- import { Component } from "@base-framework/base";
8
+ export const FormField: typeof Veil;
9
+ import { Veil } from "../../atoms/veil.js";
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * This will create a toggle switch component.
5
5
  *
6
- * @type {typeof Component}
6
+ * @type {typeof Veil}
7
7
  */
8
- export const Toggle: typeof Component;
8
+ export const Toggle: typeof Veil;
9
9
  export default Toggle;
10
- import { Component } from '@base-framework/base';
10
+ import { Veil } from '../../atoms/veil.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/ui",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
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": {