@quidgest/ui 0.21.1 → 0.22.0
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/CHANGELOG.md +12 -0
- package/dist/json/api.json +202 -2
- package/dist/manifest/components.json +1 -0
- package/dist/ui.css +160 -0
- package/dist/ui.esm.js +276 -272
- package/dist/ui.js +178 -174
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +178 -174
- package/dist/ui.scss +127 -2
- package/esm/components/QProgress/QProgress.d.ts +21 -0
- package/esm/components/QProgress/QProgress.d.ts.map +1 -0
- package/esm/components/QProgress/QProgress.vue.js +112 -0
- package/esm/components/QProgress/QProgress2.vue.js +5 -0
- package/esm/components/QProgress/index.d.ts +45 -0
- package/esm/components/QProgress/index.d.ts.map +1 -0
- package/esm/components/QProgress/index.js +6 -0
- package/esm/components/QProgress/types.d.ts +78 -0
- package/esm/components/QProgress/types.d.ts.map +1 -0
- package/esm/components/index.d.ts +1 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +34 -32
- package/esm/index.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,18 @@ On `0.x`, breaking changes typically ship as a **minor** bump. The `/release` wo
|
|
|
9
9
|
|
|
10
10
|
Entries below start at **0.16.0**. Earlier history is in git / GitLab MRs. Patch releases within a minor line may be summarized under that minor unless a break shipped in between.
|
|
11
11
|
|
|
12
|
+
## [0.22.0] - 2026-09-14
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- `QProgress` — progress bar component
|
|
17
|
+
|
|
18
|
+
## [0.21.2] - 2026-09-11
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- `QObfuscation` — remove UTF-8 BOM from SCSS so style tooling does not choke on encoding
|
|
23
|
+
|
|
12
24
|
## [0.21.1] - 2026-09-11
|
|
13
25
|
|
|
14
26
|
### Added
|
package/dist/json/api.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.22.0",
|
|
3
3
|
"components": [
|
|
4
4
|
{
|
|
5
5
|
"name": "QAccordion",
|
|
@@ -4809,7 +4809,7 @@
|
|
|
4809
4809
|
},
|
|
4810
4810
|
{
|
|
4811
4811
|
"name": "QMeter",
|
|
4812
|
-
"description": "A meter represents a quantity within a known range, or a fractional value.",
|
|
4812
|
+
"description": "A meter represents a quantity within a known range, or a fractional value that is not ongoing progress.",
|
|
4813
4813
|
"meta": {
|
|
4814
4814
|
"props": [
|
|
4815
4815
|
{
|
|
@@ -7371,6 +7371,206 @@
|
|
|
7371
7371
|
}
|
|
7372
7372
|
]
|
|
7373
7373
|
},
|
|
7374
|
+
{
|
|
7375
|
+
"name": "QProgress",
|
|
7376
|
+
"description": "Shows progress of loading or completion of a task.",
|
|
7377
|
+
"meta": {
|
|
7378
|
+
"props": [
|
|
7379
|
+
{
|
|
7380
|
+
"name": "modelValue",
|
|
7381
|
+
"type": {
|
|
7382
|
+
"kind": "primitive",
|
|
7383
|
+
"name": "number"
|
|
7384
|
+
},
|
|
7385
|
+
"description": "",
|
|
7386
|
+
"required": false
|
|
7387
|
+
},
|
|
7388
|
+
{
|
|
7389
|
+
"name": "id",
|
|
7390
|
+
"type": {
|
|
7391
|
+
"kind": "primitive",
|
|
7392
|
+
"name": "string"
|
|
7393
|
+
},
|
|
7394
|
+
"description": "The component unique identifier.",
|
|
7395
|
+
"required": false,
|
|
7396
|
+
"category": "Identification"
|
|
7397
|
+
},
|
|
7398
|
+
{
|
|
7399
|
+
"name": "label",
|
|
7400
|
+
"type": {
|
|
7401
|
+
"kind": "primitive",
|
|
7402
|
+
"name": "string"
|
|
7403
|
+
},
|
|
7404
|
+
"description": "Text displayed above the progress bar.",
|
|
7405
|
+
"required": false,
|
|
7406
|
+
"category": "Content"
|
|
7407
|
+
},
|
|
7408
|
+
{
|
|
7409
|
+
"name": "text",
|
|
7410
|
+
"type": {
|
|
7411
|
+
"kind": "primitive",
|
|
7412
|
+
"name": "string"
|
|
7413
|
+
},
|
|
7414
|
+
"description": "Text displayed in the progress bar.\nNot shown if the 'mini' prop is true.",
|
|
7415
|
+
"required": false,
|
|
7416
|
+
"category": "Content"
|
|
7417
|
+
},
|
|
7418
|
+
{
|
|
7419
|
+
"name": "striped",
|
|
7420
|
+
"type": {
|
|
7421
|
+
"kind": "primitive",
|
|
7422
|
+
"name": "boolean"
|
|
7423
|
+
},
|
|
7424
|
+
"description": "Whether the progress bar is striped.",
|
|
7425
|
+
"default": "false",
|
|
7426
|
+
"required": false,
|
|
7427
|
+
"category": "Presentation"
|
|
7428
|
+
},
|
|
7429
|
+
{
|
|
7430
|
+
"name": "animated",
|
|
7431
|
+
"type": {
|
|
7432
|
+
"kind": "primitive",
|
|
7433
|
+
"name": "boolean"
|
|
7434
|
+
},
|
|
7435
|
+
"description": "Whether the progress bar has an animation.",
|
|
7436
|
+
"default": "false",
|
|
7437
|
+
"required": false,
|
|
7438
|
+
"category": "Presentation"
|
|
7439
|
+
},
|
|
7440
|
+
{
|
|
7441
|
+
"name": "mini",
|
|
7442
|
+
"type": {
|
|
7443
|
+
"kind": "primitive",
|
|
7444
|
+
"name": "boolean"
|
|
7445
|
+
},
|
|
7446
|
+
"description": "Whether the progress bar is mini.\nIf true, the values of the 'text', 'showValue', and 'showPercent' props will not be shown.",
|
|
7447
|
+
"default": "false",
|
|
7448
|
+
"required": false,
|
|
7449
|
+
"category": "Presentation"
|
|
7450
|
+
},
|
|
7451
|
+
{
|
|
7452
|
+
"name": "color",
|
|
7453
|
+
"type": {
|
|
7454
|
+
"kind": "primitive",
|
|
7455
|
+
"name": "string"
|
|
7456
|
+
},
|
|
7457
|
+
"description": "The color of the progress bar.",
|
|
7458
|
+
"required": false,
|
|
7459
|
+
"category": "Presentation"
|
|
7460
|
+
},
|
|
7461
|
+
{
|
|
7462
|
+
"name": "min",
|
|
7463
|
+
"type": {
|
|
7464
|
+
"kind": "primitive",
|
|
7465
|
+
"name": "number"
|
|
7466
|
+
},
|
|
7467
|
+
"description": "Minimum value for the range of the progress bar.\nIf greater than 'max', these values will be swapped.\nIf equal to 'max', 'max' will be max + 1.",
|
|
7468
|
+
"default": "0",
|
|
7469
|
+
"required": false,
|
|
7470
|
+
"category": "Content"
|
|
7471
|
+
},
|
|
7472
|
+
{
|
|
7473
|
+
"name": "max",
|
|
7474
|
+
"type": {
|
|
7475
|
+
"kind": "primitive",
|
|
7476
|
+
"name": "number"
|
|
7477
|
+
},
|
|
7478
|
+
"description": "Maximum value for the range of the progress bar.\nIf less than 'min', these values will be swapped.\nIf equal to 'min', 'max' will be max + 1.",
|
|
7479
|
+
"default": "100",
|
|
7480
|
+
"required": false,
|
|
7481
|
+
"category": "Content"
|
|
7482
|
+
},
|
|
7483
|
+
{
|
|
7484
|
+
"name": "showLimits",
|
|
7485
|
+
"type": {
|
|
7486
|
+
"kind": "primitive",
|
|
7487
|
+
"name": "boolean"
|
|
7488
|
+
},
|
|
7489
|
+
"description": "Whether to display the min and max values.",
|
|
7490
|
+
"default": "false",
|
|
7491
|
+
"required": false,
|
|
7492
|
+
"category": "Presentation"
|
|
7493
|
+
},
|
|
7494
|
+
{
|
|
7495
|
+
"name": "showValue",
|
|
7496
|
+
"type": {
|
|
7497
|
+
"kind": "primitive",
|
|
7498
|
+
"name": "boolean"
|
|
7499
|
+
},
|
|
7500
|
+
"description": "Whether to display the current value in the progress bar.\nNot shown if the 'mini' prop is true.",
|
|
7501
|
+
"default": "false",
|
|
7502
|
+
"required": false,
|
|
7503
|
+
"category": "Presentation"
|
|
7504
|
+
},
|
|
7505
|
+
{
|
|
7506
|
+
"name": "showPercent",
|
|
7507
|
+
"type": {
|
|
7508
|
+
"kind": "primitive",
|
|
7509
|
+
"name": "boolean"
|
|
7510
|
+
},
|
|
7511
|
+
"description": "Whether to display the current percent in the progress bar.\nNot shown if the 'mini' prop is true.",
|
|
7512
|
+
"default": "false",
|
|
7513
|
+
"required": false,
|
|
7514
|
+
"category": "Presentation"
|
|
7515
|
+
}
|
|
7516
|
+
],
|
|
7517
|
+
"events": [
|
|
7518
|
+
{
|
|
7519
|
+
"name": "update:modelValue",
|
|
7520
|
+
"description": "",
|
|
7521
|
+
"type": "[value: number]"
|
|
7522
|
+
}
|
|
7523
|
+
],
|
|
7524
|
+
"slots": []
|
|
7525
|
+
},
|
|
7526
|
+
"examples": [
|
|
7527
|
+
{
|
|
7528
|
+
"title": "Default",
|
|
7529
|
+
"description": "The default progress bar.",
|
|
7530
|
+
"code": "<q-progress v-bind=\"args\" />"
|
|
7531
|
+
},
|
|
7532
|
+
{
|
|
7533
|
+
"title": "Mini",
|
|
7534
|
+
"description": "The mini progress bar.",
|
|
7535
|
+
"code": "<q-progress v-bind=\"args\" />"
|
|
7536
|
+
},
|
|
7537
|
+
{
|
|
7538
|
+
"title": "Text",
|
|
7539
|
+
"description": "Displays custom text on the bar.",
|
|
7540
|
+
"code": "<q-progress v-bind=\"args\" />"
|
|
7541
|
+
},
|
|
7542
|
+
{
|
|
7543
|
+
"title": "Text Overflow",
|
|
7544
|
+
"description": "Displays long custom text on the bar, cutting off when it's too long and adding an ellipsis.",
|
|
7545
|
+
"code": "<q-progress v-bind=\"args\" />"
|
|
7546
|
+
},
|
|
7547
|
+
{
|
|
7548
|
+
"title": "Custom Label",
|
|
7549
|
+
"description": "Displays custom label.",
|
|
7550
|
+
"code": "<q-progress v-bind=\"args\" />"
|
|
7551
|
+
},
|
|
7552
|
+
{
|
|
7553
|
+
"title": "Colors",
|
|
7554
|
+
"description": "Displays the bar in different colors.",
|
|
7555
|
+
"code": "<q-progress\n\t\t\t\tv-for=\"(_, idx) in colors\"\n\t\t\t\t:key=\"colors[idx]\"\n\t\t\t\t:color=\"colors[idx]\"\n\t\t\t\tstyle=\"margin: 0.25rem 0\"\n\t\t\t\tv-bind=\"args\" />"
|
|
7556
|
+
},
|
|
7557
|
+
{
|
|
7558
|
+
"title": "Animated Striped",
|
|
7559
|
+
"description": "Displays an animated, striped progress bar.",
|
|
7560
|
+
"code": "<q-progress v-bind=\"args\" />"
|
|
7561
|
+
},
|
|
7562
|
+
{
|
|
7563
|
+
"title": "With Limits And Value",
|
|
7564
|
+
"description": "Displays the current value along with the min and max limits.",
|
|
7565
|
+
"code": "<q-progress v-bind=\"args\" />"
|
|
7566
|
+
},
|
|
7567
|
+
{
|
|
7568
|
+
"title": "With Limits And Percent",
|
|
7569
|
+
"description": "Displays the current percent along with the min and max limits.",
|
|
7570
|
+
"code": "<q-progress v-bind=\"args\" />"
|
|
7571
|
+
}
|
|
7572
|
+
]
|
|
7573
|
+
},
|
|
7374
7574
|
{
|
|
7375
7575
|
"name": "QPropertyList",
|
|
7376
7576
|
"description": "A versatile property list with expandable groups and an optional detail panel, allowing users to view and edit fields efficiently.",
|
package/dist/ui.css
CHANGED
|
@@ -6442,6 +6442,166 @@ body *::-webkit-scrollbar-track {
|
|
|
6442
6442
|
font-size: 0.9rem;
|
|
6443
6443
|
}
|
|
6444
6444
|
|
|
6445
|
+
@keyframes q-progress-move {
|
|
6446
|
+
from {
|
|
6447
|
+
background-position: 0 0;
|
|
6448
|
+
}
|
|
6449
|
+
to {
|
|
6450
|
+
background-position: 1rem 0;
|
|
6451
|
+
}
|
|
6452
|
+
}
|
|
6453
|
+
@keyframes q-progress-pulse {
|
|
6454
|
+
0% {
|
|
6455
|
+
transform: scale(0, 0);
|
|
6456
|
+
opacity: 0.4;
|
|
6457
|
+
}
|
|
6458
|
+
100% {
|
|
6459
|
+
transform: scale(10, 10);
|
|
6460
|
+
opacity: 0;
|
|
6461
|
+
}
|
|
6462
|
+
}
|
|
6463
|
+
.q-progress {
|
|
6464
|
+
--q-progress-main-color: var(--q-theme-primary);
|
|
6465
|
+
--q-progress-main-color-rgb: var(--q-theme-primary-rgb);
|
|
6466
|
+
--q-progress-on-main-color: var(--q-theme-on-primary);
|
|
6467
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-primary-rgb);
|
|
6468
|
+
}
|
|
6469
|
+
.q-progress__bar {
|
|
6470
|
+
display: flex;
|
|
6471
|
+
overflow: hidden;
|
|
6472
|
+
height: 1.2rem;
|
|
6473
|
+
line-height: 0;
|
|
6474
|
+
font-size: 0.75rem;
|
|
6475
|
+
background-color: var(--q-theme-neutral-light);
|
|
6476
|
+
border-radius: 0.25rem;
|
|
6477
|
+
}
|
|
6478
|
+
.q-progress__bar--mini {
|
|
6479
|
+
height: 0.35rem;
|
|
6480
|
+
font-size: 0;
|
|
6481
|
+
}
|
|
6482
|
+
.q-progress__fill {
|
|
6483
|
+
display: flex;
|
|
6484
|
+
flex-direction: column;
|
|
6485
|
+
justify-content: center;
|
|
6486
|
+
overflow: hidden;
|
|
6487
|
+
position: relative;
|
|
6488
|
+
color: var(--q-progress-on-main-color);
|
|
6489
|
+
text-align: center;
|
|
6490
|
+
white-space: nowrap;
|
|
6491
|
+
background-color: var(--q-progress-main-color);
|
|
6492
|
+
transition: width 0.4s ease;
|
|
6493
|
+
}
|
|
6494
|
+
.q-progress__fill-text {
|
|
6495
|
+
position: relative;
|
|
6496
|
+
margin: 0 10%;
|
|
6497
|
+
height: 100%;
|
|
6498
|
+
text-align: center;
|
|
6499
|
+
align-content: center;
|
|
6500
|
+
overflow: hidden;
|
|
6501
|
+
white-space: nowrap;
|
|
6502
|
+
text-overflow: ellipsis;
|
|
6503
|
+
line-height: initial;
|
|
6504
|
+
}
|
|
6505
|
+
.q-progress__fill--striped {
|
|
6506
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
6507
|
+
background-size: 1rem 1rem;
|
|
6508
|
+
}
|
|
6509
|
+
.q-progress__fill--animated {
|
|
6510
|
+
animation: 1s linear infinite q-progress-move;
|
|
6511
|
+
}
|
|
6512
|
+
.q-progress__fill--animated::before {
|
|
6513
|
+
content: "";
|
|
6514
|
+
position: absolute;
|
|
6515
|
+
left: -100%;
|
|
6516
|
+
width: 100%;
|
|
6517
|
+
height: 100%;
|
|
6518
|
+
background-image: radial-gradient(circle at 100%, var(--q-theme-neutral-dark) 75%, transparent 35%);
|
|
6519
|
+
animation: 5s linear infinite q-progress-pulse;
|
|
6520
|
+
}
|
|
6521
|
+
.q-progress__values {
|
|
6522
|
+
display: flex;
|
|
6523
|
+
justify-content: space-between;
|
|
6524
|
+
margin-top: 5px;
|
|
6525
|
+
}
|
|
6526
|
+
.q-progress__values-min, .q-progress__values-max {
|
|
6527
|
+
position: relative;
|
|
6528
|
+
}
|
|
6529
|
+
.q-progress--primary {
|
|
6530
|
+
--q-progress-main-color: var(--q-theme-primary);
|
|
6531
|
+
--q-progress-main-color-rgb: var(--q-theme-primary-rgb);
|
|
6532
|
+
--q-progress-on-main-color: var(--q-theme-on-primary);
|
|
6533
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-primary-rgb);
|
|
6534
|
+
--q-progress-on-hover-color: var(--q-theme-on-primary);
|
|
6535
|
+
--q-progress-on-hover-color-rgb: var(--q-theme-on-primary-rgb);
|
|
6536
|
+
}
|
|
6537
|
+
.q-progress--secondary {
|
|
6538
|
+
--q-progress-main-color: var(--q-theme-secondary);
|
|
6539
|
+
--q-progress-main-color-rgb: var(--q-theme-secondary-rgb);
|
|
6540
|
+
--q-progress-on-main-color: var(--q-theme-on-secondary);
|
|
6541
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-secondary-rgb);
|
|
6542
|
+
--q-progress-on-hover-color: var(--q-theme-on-secondary);
|
|
6543
|
+
--q-progress-on-hover-color-rgb: var(--q-theme-on-secondary-rgb);
|
|
6544
|
+
}
|
|
6545
|
+
.q-progress--highlight {
|
|
6546
|
+
--q-progress-main-color: var(--q-theme-highlight);
|
|
6547
|
+
--q-progress-main-color-rgb: var(--q-theme-highlight-rgb);
|
|
6548
|
+
--q-progress-on-main-color: var(--q-theme-on-highlight);
|
|
6549
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-highlight-rgb);
|
|
6550
|
+
--q-progress-on-hover-color: var(--q-theme-on-highlight);
|
|
6551
|
+
--q-progress-on-hover-color-rgb: var(--q-theme-on-highlight-rgb);
|
|
6552
|
+
}
|
|
6553
|
+
.q-progress--info {
|
|
6554
|
+
--q-progress-main-color: var(--q-theme-info);
|
|
6555
|
+
--q-progress-main-color-rgb: var(--q-theme-info-rgb);
|
|
6556
|
+
--q-progress-on-main-color: var(--q-theme-on-info);
|
|
6557
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-info-rgb);
|
|
6558
|
+
--q-progress-on-hover-color: var(--q-theme-on-info);
|
|
6559
|
+
--q-progress-on-hover-color-rgb: var(--q-theme-on-info-rgb);
|
|
6560
|
+
}
|
|
6561
|
+
.q-progress--success {
|
|
6562
|
+
--q-progress-main-color: var(--q-theme-success);
|
|
6563
|
+
--q-progress-main-color-rgb: var(--q-theme-success-rgb);
|
|
6564
|
+
--q-progress-on-main-color: var(--q-theme-on-success);
|
|
6565
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-success-rgb);
|
|
6566
|
+
--q-progress-on-hover-color: var(--q-theme-on-success);
|
|
6567
|
+
--q-progress-on-hover-color-rgb: var(--q-theme-on-success-rgb);
|
|
6568
|
+
}
|
|
6569
|
+
.q-progress--warning {
|
|
6570
|
+
--q-progress-main-color: var(--q-theme-warning);
|
|
6571
|
+
--q-progress-main-color-rgb: var(--q-theme-warning-rgb);
|
|
6572
|
+
--q-progress-on-main-color: var(--q-theme-on-warning);
|
|
6573
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-warning-rgb);
|
|
6574
|
+
--q-progress-on-hover-color: var(--q-theme-on-warning);
|
|
6575
|
+
--q-progress-on-hover-color-rgb: var(--q-theme-on-warning-rgb);
|
|
6576
|
+
}
|
|
6577
|
+
.q-progress--danger {
|
|
6578
|
+
--q-progress-main-color: var(--q-theme-danger);
|
|
6579
|
+
--q-progress-main-color-rgb: var(--q-theme-danger-rgb);
|
|
6580
|
+
--q-progress-on-main-color: var(--q-theme-on-danger);
|
|
6581
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-danger-rgb);
|
|
6582
|
+
--q-progress-on-hover-color: var(--q-theme-on-danger);
|
|
6583
|
+
--q-progress-on-hover-color-rgb: var(--q-theme-on-danger-rgb);
|
|
6584
|
+
}
|
|
6585
|
+
.q-progress--neutral {
|
|
6586
|
+
--q-progress-main-color: var(--q-theme-neutral);
|
|
6587
|
+
--q-progress-main-color-rgb: var(--q-theme-neutral-rgb);
|
|
6588
|
+
--q-progress-on-main-color: var(--q-theme-on-neutral);
|
|
6589
|
+
--q-progress-on-main-color-rgb: var(--q-theme-on-neutral-rgb);
|
|
6590
|
+
--q-progress-on-hover-color: var(--q-theme-on-neutral);
|
|
6591
|
+
--q-progress-on-hover-color-rgb: var(--q-theme-on-neutral-rgb);
|
|
6592
|
+
}
|
|
6593
|
+
|
|
6594
|
+
@media (prefers-reduced-motion: reduce) {
|
|
6595
|
+
.q-progress__fill {
|
|
6596
|
+
transition: none;
|
|
6597
|
+
}
|
|
6598
|
+
.q-progress__fill--animated {
|
|
6599
|
+
animation: none;
|
|
6600
|
+
}
|
|
6601
|
+
.q-progress__fill--animated::before {
|
|
6602
|
+
display: none;
|
|
6603
|
+
}
|
|
6604
|
+
}
|
|
6445
6605
|
.q-property-list {
|
|
6446
6606
|
margin: 0;
|
|
6447
6607
|
font-size: 0.9rem;
|