@nr1e/qwik-ui 0.0.0-snapshot-20251229035918 → 0.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-ui",
3
- "version": "0.0.0-snapshot-20251229035918",
3
+ "version": "0.0.2",
4
4
  "description": "NR1E Qwik UI Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {
@@ -1 +0,0 @@
1
- export declare const Counter: import("@builder.io/qwik").Component<unknown>;
@@ -1 +0,0 @@
1
- export declare const Logo: import("@builder.io/qwik").Component<unknown>;
@@ -1,29 +0,0 @@
1
- /**
2
- * Properties for PaceBar.
3
- */
4
- export interface PaceBarProps {
5
- /**
6
- * The value of the progress between 1 and 100.
7
- * Setting this to undefined will hide the progress bar.
8
- * Setting this to -1 to show an indeterminate indicator.
9
- */
10
- value?: number;
11
- /**
12
- * Any additional classes to apply to the progress bar.
13
- * Ex. progress-accent
14
- */
15
- class?: string;
16
- /**
17
- * Whether the progress bar should be rendered as an asymptotic progress bar.
18
- */
19
- asymptotic?: boolean;
20
- /**
21
- * The easing value to use. Smaller is slower, larger is faster. Default is 0.004.
22
- */
23
- easing?: number;
24
- /**
25
- * The interval in milliseconds to update the progress bar. Default is 10.
26
- */
27
- intervalMs?: number;
28
- }
29
- export declare const PaceBar: import("@builder.io/qwik").Component<PaceBarProps>;
@@ -1,5 +0,0 @@
1
- export interface ProgressBarProps {
2
- value?: number;
3
- class?: string;
4
- }
5
- export declare const ProgressBar: import("@builder.io/qwik").Component<ProgressBarProps>;
@@ -1,2 +0,0 @@
1
- import { type RenderOptions } from '@builder.io/qwik';
2
- export default function (opts: RenderOptions): Promise<import("@builder.io/qwik").RenderResult>;
@@ -1,14 +0,0 @@
1
- /**
2
- * WHAT IS THIS FILE?
3
- *
4
- * SSR entry point, in all cases the application is rendered outside the browser, this
5
- * entry point will be the common one.
6
- *
7
- * - Server (express, cloudflare...)
8
- * - npm run start
9
- * - npm run preview
10
- * - npm run build
11
- *
12
- */
13
- import { type RenderToStreamOptions } from '@builder.io/qwik/server';
14
- export default function (opts: RenderToStreamOptions): Promise<import("@builder.io/qwik/server").RenderToStreamResult>;
File without changes
@@ -1,3 +0,0 @@
1
- import './global.css';
2
- declare const _default: () => import("@builder.io/qwik").JSXOutput;
3
- export default _default;