@kubex/zinc 1.0.7 → 1.0.8

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.
Files changed (31) hide show
  1. package/dist/custom-elements.json +318 -10
  2. package/dist/vscode.html-custom-data.json +33 -5
  3. package/dist/web-types.json +80 -12
  4. package/dist/zn.d.ts +53 -3
  5. package/dist/zn.min.js +371 -311
  6. package/docs/data/products-table.json +203 -0
  7. package/docs/pages/components/button.md +25 -0
  8. package/docs/pages/components/data-table.md +21 -0
  9. package/docs/pages/components/header.md +7 -0
  10. package/docs/pages/components/order-table.md +82 -5
  11. package/package.json +1 -1
  12. package/src/components/button/button.component.ts +168 -10
  13. package/src/components/button/button.scss +115 -0
  14. package/src/components/content-block/content-block.component.ts +18 -7
  15. package/src/components/content-block/content-block.scss +4 -2
  16. package/src/components/data-select/data-select.component.ts +0 -1
  17. package/src/components/data-table/data-table.component.ts +112 -20
  18. package/src/components/data-table/data-table.scss +14 -3
  19. package/src/components/editor/editor.scss +1 -0
  20. package/src/components/expanding-action/expanding-action.component.ts +1 -1
  21. package/src/components/header/header.component.ts +8 -2
  22. package/src/components/header/header.scss +5 -1
  23. package/src/components/linked-select/linked-select.component.ts +1 -0
  24. package/src/components/menu/menu.component.ts +0 -1
  25. package/src/components/navbar/navbar.component.ts +1 -1
  26. package/src/components/note/note.component.ts +70 -2
  27. package/src/components/note/note.scss +26 -4
  28. package/src/components/order-table/order-table.component.ts +49 -28
  29. package/src/components/panel/panel.component.ts +3 -1
  30. package/src/components/rating/rating.component.ts +10 -9
  31. package/src/components/rating/rating.scss +15 -1
@@ -42,13 +42,35 @@ $colors: (
42
42
  }
43
43
  }
44
44
 
45
- &__body {
46
- display: flex;
47
- flex-direction: column;
48
- gap: var(--zn-spacing-3x-small);
45
+ &__body-container {
46
+ position: relative;
49
47
  max-width: var(--zn-container-md);
50
48
  }
51
49
 
50
+ &__body {
51
+ display: block;
52
+ }
53
+
54
+ &__body--clamped {
55
+ display: -webkit-box;
56
+ -webkit-box-orient: vertical;
57
+ -webkit-line-clamp: var(--note-collapse-lines, 0);
58
+ overflow: hidden;
59
+ }
60
+
61
+ &__toggle {
62
+ margin-top: var(--zn-spacing-2x-small);
63
+ }
64
+
65
+ &__toggle__btn {
66
+ background: none;
67
+ border: none;
68
+ color: var(--zn-color-primary-500, currentColor);
69
+ font: inherit;
70
+ cursor: pointer;
71
+ padding: 0;
72
+ }
73
+
52
74
  @each $name, $color in $colors {
53
75
  &--#{'' + $name} {
54
76
  .note__header__caption {
@@ -1,9 +1,28 @@
1
- import {property} from 'lit/decorators.js';
2
1
  import {type CSSResultGroup, html, unsafeCSS} from 'lit';
2
+ import {property} from 'lit/decorators.js';
3
3
  import ZincElement from '../../internal/zinc-element';
4
4
 
5
5
  import styles from './order-table.scss';
6
6
 
7
+ interface OrderTableData {
8
+ headers: string[];
9
+ items: {
10
+ caption?: string;
11
+ summary?: string;
12
+ data: string[];
13
+ sub?: {
14
+ caption?: string;
15
+ summary?: string;
16
+ data: string[];
17
+ }[];
18
+ }[];
19
+ tax?: string;
20
+ discount?: string;
21
+ total?: string;
22
+ paid?: string;
23
+ remaining?: string;
24
+ }
25
+
7
26
  /**
8
27
  * @summary Short summary of the component's intended use.
9
28
  * @documentation https://zinc.style/components/order-table
@@ -24,35 +43,23 @@ import styles from './order-table.scss';
24
43
  export default class ZnOrderTable extends ZincElement {
25
44
  static styles: CSSResultGroup = unsafeCSS(styles);
26
45
 
27
- @property({type: Object, reflect: true}) data: Object;
46
+ @property({type: Object, reflect: true}) data: OrderTableData;
28
47
 
29
48
  private isMobile: boolean = false;
30
- private modifiedData: any = null;
31
-
32
- constructor() {
33
- super();
34
- this.modifiedData = this.data;
35
- }
36
-
49
+ private modifiedData: OrderTableData;
37
50
 
38
51
  connectedCallback() {
39
52
  this.isMobile = window.innerWidth < 768;
53
+ this.modifiedData = this.data;
40
54
 
41
- window.addEventListener('resize', () => {
42
- if (window.innerWidth < 768 && !this.isMobile) {
43
- this.isMobile = true;
44
- this.requestUpdate();
45
- } else if (window.innerWidth >= 768 && this.isMobile) {
46
- this.isMobile = false;
47
- this.requestUpdate();
48
- }
49
- });
55
+ window.addEventListener('resize', this.resizeEventHandler);
50
56
 
51
57
  if (this.data === null || this.data === undefined) {
52
58
  if (this.childNodes.length > 0 && this.childNodes[0].nodeType === 3) {
53
- const data: any = this.childNodes[0];
59
+ // @ts-ignore
60
+ const data: ChildNode & { textContent: string } = this.childNodes[0];
54
61
  try {
55
- this.data = JSON.parse(data.textContent);
62
+ this.data = JSON.parse(data?.textContent) as OrderTableData;
56
63
  } catch (e) { /* empty */
57
64
  }
58
65
  }
@@ -61,6 +68,20 @@ export default class ZnOrderTable extends ZincElement {
61
68
  super.connectedCallback();
62
69
  }
63
70
 
71
+ disconnectedCallback() {
72
+ window.removeEventListener('resize', this.resizeEventHandler);
73
+ }
74
+
75
+ resizeEventHandler = () => {
76
+ if (window.innerWidth < 768 && !this.isMobile) {
77
+ this.isMobile = true;
78
+ this.requestUpdate();
79
+ } else if (window.innerWidth >= 768 && this.isMobile) {
80
+ this.isMobile = false;
81
+ this.requestUpdate();
82
+ }
83
+ }
84
+
64
85
  render() {
65
86
  this.modifiedData = this.data;
66
87
  if (this.isMobile) {
@@ -107,7 +128,7 @@ export default class ZnOrderTable extends ZincElement {
107
128
  const rows = [];
108
129
 
109
130
 
110
- if (data && data['items']) {
131
+ if (data?.['items']) {
111
132
  for (const item of data['items']) {
112
133
  const caption = this.getCaption(item);
113
134
  const rowData = item['data'];
@@ -136,8 +157,8 @@ export default class ZnOrderTable extends ZincElement {
136
157
  }
137
158
 
138
159
  getCaption(item: any) {
139
- const caption = item['caption'];
140
- const summary = item['summary'];
160
+ const caption: string = item['caption'];
161
+ const summary: string = item['summary'];
141
162
 
142
163
  return html`
143
164
  <div class="row-item row-caption">
@@ -184,7 +205,7 @@ export default class ZnOrderTable extends ZincElement {
184
205
 
185
206
  getSummary() {
186
207
  let tax = html``;
187
- if (this.modifiedData && this.modifiedData['tax']) {
208
+ if (this.modifiedData?.['tax']) {
188
209
  tax = html`
189
210
  <div class="summary-item">
190
211
  <div class="summary-item-title">Tax</div>
@@ -193,7 +214,7 @@ export default class ZnOrderTable extends ZincElement {
193
214
  }
194
215
 
195
216
  let discount = html``;
196
- if (this.modifiedData && this.modifiedData['discount']) {
217
+ if (this.modifiedData?.['discount']) {
197
218
  discount = html`
198
219
  <div class="summary-item">
199
220
  <div class="summary-item-title">Discount</div>
@@ -202,7 +223,7 @@ export default class ZnOrderTable extends ZincElement {
202
223
  }
203
224
 
204
225
  let total = html``;
205
- if (this.modifiedData && this.modifiedData['total']) {
226
+ if (this.modifiedData?.['total']) {
206
227
  total = html`
207
228
  <div class="summary-item">
208
229
  <div class="summary-item-title">Grand Total</div>
@@ -212,7 +233,7 @@ export default class ZnOrderTable extends ZincElement {
212
233
 
213
234
 
214
235
  let paid = html``;
215
- if (this.modifiedData && this.modifiedData['paid']) {
236
+ if (this.modifiedData?.['paid']) {
216
237
  paid = html`
217
238
  <div class="summary-item">
218
239
  <div class="summary-item-title">Amount Paid</div>
@@ -222,7 +243,7 @@ export default class ZnOrderTable extends ZincElement {
222
243
 
223
244
 
224
245
  let remaining = html``;
225
- if (this.modifiedData && this.modifiedData['remaining']) {
246
+ if (this.modifiedData?.['remaining']) {
226
247
  remaining = html`
227
248
  <div class="summary-item">
228
249
  <div class="summary-item-title">Amount Outstanding</div>
@@ -28,6 +28,7 @@ export default class ZnPanel extends ZincElement {
28
28
 
29
29
  @property({attribute: 'basis-px', type: Number}) basis: number;
30
30
  @property() caption: string;
31
+ @property() icon: string;
31
32
  @property() description: string;
32
33
  @property({type: Boolean}) tabbed: boolean;
33
34
  @property({type: Boolean}) cosmic: boolean;
@@ -94,8 +95,9 @@ export default class ZnPanel extends ZincElement {
94
95
  <div class="panel__inner">
95
96
  ${hasHeader ? html`
96
97
  <zn-header class="panel__header"
98
+ icon="${this.icon}"
97
99
  caption="${this.caption}"
98
- description=${ifDefined(this.description)}
100
+ description="${ifDefined(this.description)}"
99
101
  transparent>
100
102
  ${hasActionSlot ? html`
101
103
  <slot name="actions" slot="actions" class="panel__header__actions"></slot>` : null}
@@ -54,7 +54,9 @@ export default class ZnRating extends ZincElement implements ZincFormControl {
54
54
 
55
55
  @property({type: Boolean}) disabled: boolean = false;
56
56
 
57
- @property() getSymbol: (value: number) => string = () => '<zn-icon src="warning"></zn-icon>';
57
+ @property({}) size: 'small' | 'medium' | 'large' = 'medium';
58
+
59
+ @property() getSymbol: (value: number) => string = () => '<zn-icon src="star" library="material"></zn-icon>';
58
60
 
59
61
  /** Gets the validity state object */
60
62
  get validity() {
@@ -170,6 +172,9 @@ export default class ZnRating extends ZincElement implements ZincFormControl {
170
172
  rating: true,
171
173
  'rating--readonly': this.readonly,
172
174
  'rating--disabled': this.disabled,
175
+ 'rating--small': this.size === 'small',
176
+ 'rating--medium': this.size === 'medium',
177
+ 'rating--large': this.size === 'large'
173
178
  })}"
174
179
  role="slider"
175
180
  aria-label="${this.label}"
@@ -196,21 +201,18 @@ export default class ZnRating extends ZincElement implements ZincFormControl {
196
201
  'rating__partial-symbol-container': true,
197
202
  'rating__symbol--hover': this.isHovering && Math.ceil(displayValue) === index + 1
198
203
  })}
199
- role="presentation"
200
- >
204
+ role="presentation">
201
205
  <div
202
206
  style=${styleMap({
203
207
  clipPath: `inset(0 0 0 ${(displayValue - index) * 100}%)`
204
- })}
205
- >
208
+ })}>
206
209
  ${unsafeHTML(this.getSymbol(index + 1))}
207
210
  </div>
208
211
  <div
209
212
  class="rating__partial--filled"
210
213
  style=${styleMap({
211
214
  clipPath: `inset(0 ${100 - (displayValue - index) * 100}% 0 0)`
212
- })}
213
- >
215
+ })}>
214
216
  ${unsafeHTML(this.getSymbol(index + 1))}
215
217
  </div>
216
218
  </span>
@@ -223,8 +225,7 @@ export default class ZnRating extends ZincElement implements ZincFormControl {
223
225
  'rating__symbol--hover': this.isHovering && Math.ceil(displayValue) === index + 1,
224
226
  'rating__symbol--active': displayValue >= index + 1
225
227
  })}
226
- role="presentation"
227
- >
228
+ role="presentation">
228
229
  ${unsafeHTML(this.getSymbol(index + 1))}
229
230
  </span>`;
230
231
  })}
@@ -2,7 +2,7 @@
2
2
 
3
3
  :host {
4
4
  --symbol-color: rgb(var(--zn-border-color));
5
- --symbol-color-active: rgb(var(--zn-primary));
5
+ --symbol-color-active: var(--zn-color-amber-400);
6
6
  --symbol-size: 1.2rem;
7
7
  --symbol-spacing: 4px;
8
8
 
@@ -79,4 +79,18 @@
79
79
  &--disabled .rating__symbols {
80
80
  cursor: not-allowed;
81
81
  }
82
+
83
+ &--small {
84
+ --symbol-size: 1rem;
85
+ --symbol-spacing: 2px;
86
+ }
87
+
88
+ &--medium {
89
+ --symbol-size: 1.2rem;
90
+ }
91
+
92
+ &--large {
93
+ --symbol-size: 1.5rem;
94
+ --symbol-spacing: 6px;
95
+ }
82
96
  }