@swiftwc/ui 0.0.0-dev.41 → 0.0.0-dev.43
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/generated/components/picker-view.js +2 -2
- package/generated/components/progress-view.js +1 -0
- package/generated/css/index.css +483 -179
- package/package.json +1 -1
- package/scss/_vars.scss +2 -1
- package/scss/base/_reboot.scss +1 -1
- package/scss/base/_root.scss +28 -35
- package/scss/colors/_index.scss +135 -19
- package/scss/components/_bordered-prominent-button.scss +3 -2
- package/scss/components/_disclosure-group.scss +10 -10
- package/scss/components/_form-view.scss +58 -20
- package/scss/components/_glass-prominent-button.scss +4 -2
- package/scss/components/_label-view.scss +12 -0
- package/scss/components/_list-view.scss +65 -25
- package/scss/components/_menu-view.scss +12 -8
- package/scss/components/_picker-view.scss +30 -30
- package/scss/components/_table-row.scss +1 -0
- package/scss/components/_table-view.scss +1 -1
- package/scss/mixins/_index.scss +31 -0
- package/scss/placeholders/_lists.scss +79 -56
- package/scss/utils/_index.scss +16 -48
|
@@ -182,7 +182,7 @@ export class PickerView extends FormAssociatedBase {
|
|
|
182
182
|
const currentValueLabel = this.querySelector(':scope>label-view:not([slot])') ?? this.appendChild($(`<label-view></label-view>`, '>1'));
|
|
183
183
|
// reset state
|
|
184
184
|
currentValueLabel.setAttribute('system-image', 'dots-three'); // overwritten
|
|
185
|
-
currentValueLabel.setAttribute('title', this.#
|
|
185
|
+
currentValueLabel.setAttribute('title', this.#currentValueLabel); // overwritten
|
|
186
186
|
// clear all siblings
|
|
187
187
|
for (const el of this.querySelectorAll(':scope>:not([slot])'))
|
|
188
188
|
if (currentValueLabel !== el)
|
|
@@ -218,7 +218,7 @@ export class PickerView extends FormAssociatedBase {
|
|
|
218
218
|
el.remove();
|
|
219
219
|
const currentValueLabel = menu.querySelector(':scope>label-view[slot=label]') ?? menu.appendChild($(`<label-view slot="label"></label-view>`, '>1'));
|
|
220
220
|
currentValueLabel.setAttribute('system-image', 'dots-three'); // overwritten
|
|
221
|
-
currentValueLabel.setAttribute('title', this.#
|
|
221
|
+
currentValueLabel.setAttribute('title', this.#currentValueLabel); // overwritten
|
|
222
222
|
_a.#reflectButtons([...(this.#slots?.get('list')?.assignedElements() ?? [])], menu);
|
|
223
223
|
break;
|
|
224
224
|
}
|
|
@@ -62,6 +62,7 @@ export class ProgressView extends HTMLElement {
|
|
|
62
62
|
connectedCallback() {
|
|
63
63
|
if (devFlags.debug)
|
|
64
64
|
console.debug(`${_a.name} ⚡️ connect`);
|
|
65
|
+
this.inert = true;
|
|
65
66
|
this.#cssStyleObserver = new CSSStyleObserver({
|
|
66
67
|
properties: ['--progress-view-style-index'],
|
|
67
68
|
});
|