@telesign/boreal-vue 0.1.0-alpha.2 → 0.1.0-alpha.3
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/dist/components.d.ts +11 -1
- package/dist/components.js +98 -3
- package/dist/components.js.map +1 -1
- package/dist/css/boreal.css +1066 -1074
- package/dist/css/global.css +403 -407
- package/dist/css/theme-connect.css +163 -164
- package/dist/css/theme-engage.css +163 -164
- package/dist/css/theme-protect.css +163 -164
- package/dist/css/theme-proximus.css +164 -165
- package/dist/scss/maps/_primitives.scss +404 -408
- package/dist/scss/maps/_theme-connect.scss +164 -165
- package/dist/scss/maps/_theme-engage.scss +164 -165
- package/dist/scss/maps/_theme-protect.scss +164 -165
- package/dist/scss/maps/_theme-proximus.scss +165 -166
- package/dist/scss/variables/_primitives.scss +404 -408
- package/dist/scss/variables/_theme-connect.scss +164 -165
- package/dist/scss/variables/_theme-engage.scss +164 -165
- package/dist/scss/variables/_theme-protect.scss +164 -165
- package/dist/scss/variables/_theme-proximus.scss +165 -166
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
2
2
|
import type { JSX } from '@telesign/boreal-web-components';
|
|
3
|
+
export declare const BdsAvatar: StencilVueComponent<JSX.BdsAvatar>;
|
|
4
|
+
export declare const BdsBadge: StencilVueComponent<JSX.BdsBadge>;
|
|
3
5
|
export declare const BdsBanner: StencilVueComponent<JSX.BdsBanner>;
|
|
4
6
|
export declare const BdsButton: StencilVueComponent<JSX.BdsButton>;
|
|
5
|
-
export declare const BdsCheckbox: StencilVueComponent<JSX.BdsCheckbox>;
|
|
7
|
+
export declare const BdsCheckbox: StencilVueComponent<JSX.BdsCheckbox, JSX.BdsCheckbox["value"]>;
|
|
6
8
|
export declare const BdsDialog: StencilVueComponent<JSX.BdsDialog>;
|
|
9
|
+
export declare const BdsDivider: StencilVueComponent<JSX.BdsDivider>;
|
|
7
10
|
export declare const BdsFlag: StencilVueComponent<JSX.BdsFlag>;
|
|
11
|
+
export declare const BdsGrid: StencilVueComponent<JSX.BdsGrid>;
|
|
12
|
+
export declare const BdsGridItem: StencilVueComponent<JSX.BdsGridItem>;
|
|
13
|
+
export declare const BdsListMenu: StencilVueComponent<JSX.BdsListMenu>;
|
|
14
|
+
export declare const BdsListMenuItem: StencilVueComponent<JSX.BdsListMenuItem>;
|
|
8
15
|
export declare const BdsPopover: StencilVueComponent<JSX.BdsPopover>;
|
|
9
16
|
export declare const BdsSpinner: StencilVueComponent<JSX.BdsSpinner>;
|
|
17
|
+
export declare const BdsStatus: StencilVueComponent<JSX.BdsStatus>;
|
|
18
|
+
export declare const BdsTag: StencilVueComponent<JSX.BdsTag>;
|
|
10
19
|
export declare const BdsTextField: StencilVueComponent<JSX.BdsTextField, JSX.BdsTextField["value"]>;
|
|
20
|
+
export declare const BdsToggle: StencilVueComponent<JSX.BdsToggle, JSX.BdsToggle["value"]>;
|
|
11
21
|
export declare const BdsTooltip: StencilVueComponent<JSX.BdsTooltip>;
|
|
12
22
|
export declare const BdsTypography: StencilVueComponent<JSX.BdsTypography>;
|
package/dist/components.js
CHANGED
|
@@ -1,14 +1,34 @@
|
|
|
1
1
|
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
2
|
+
import { defineCustomElement as defineBdsAvatar } from '@telesign/boreal-web-components/components/bds-avatar.js';
|
|
3
|
+
import { defineCustomElement as defineBdsBadge } from '@telesign/boreal-web-components/components/bds-badge.js';
|
|
2
4
|
import { defineCustomElement as defineBdsBanner } from '@telesign/boreal-web-components/components/bds-banner.js';
|
|
3
5
|
import { defineCustomElement as defineBdsButton } from '@telesign/boreal-web-components/components/bds-button.js';
|
|
4
6
|
import { defineCustomElement as defineBdsCheckbox } from '@telesign/boreal-web-components/components/bds-checkbox.js';
|
|
5
7
|
import { defineCustomElement as defineBdsDialog } from '@telesign/boreal-web-components/components/bds-dialog.js';
|
|
8
|
+
import { defineCustomElement as defineBdsDivider } from '@telesign/boreal-web-components/components/bds-divider.js';
|
|
6
9
|
import { defineCustomElement as defineBdsFlag } from '@telesign/boreal-web-components/components/bds-flag.js';
|
|
10
|
+
import { defineCustomElement as defineBdsGrid } from '@telesign/boreal-web-components/components/bds-grid.js';
|
|
11
|
+
import { defineCustomElement as defineBdsGridItem } from '@telesign/boreal-web-components/components/bds-grid-item.js';
|
|
12
|
+
import { defineCustomElement as defineBdsListMenu } from '@telesign/boreal-web-components/components/bds-list-menu.js';
|
|
13
|
+
import { defineCustomElement as defineBdsListMenuItem } from '@telesign/boreal-web-components/components/bds-list-menu-item.js';
|
|
7
14
|
import { defineCustomElement as defineBdsPopover } from '@telesign/boreal-web-components/components/bds-popover.js';
|
|
8
15
|
import { defineCustomElement as defineBdsSpinner } from '@telesign/boreal-web-components/components/bds-spinner.js';
|
|
16
|
+
import { defineCustomElement as defineBdsStatus } from '@telesign/boreal-web-components/components/bds-status.js';
|
|
17
|
+
import { defineCustomElement as defineBdsTag } from '@telesign/boreal-web-components/components/bds-tag.js';
|
|
9
18
|
import { defineCustomElement as defineBdsTextField } from '@telesign/boreal-web-components/components/bds-text-field.js';
|
|
19
|
+
import { defineCustomElement as defineBdsToggle } from '@telesign/boreal-web-components/components/bds-toggle.js';
|
|
10
20
|
import { defineCustomElement as defineBdsTooltip } from '@telesign/boreal-web-components/components/bds-tooltip.js';
|
|
11
21
|
import { defineCustomElement as defineBdsTypography } from '@telesign/boreal-web-components/components/bds-typography.js';
|
|
22
|
+
export const BdsAvatar = defineContainer('bds-avatar', defineBdsAvatar, [
|
|
23
|
+
'username',
|
|
24
|
+
'variant',
|
|
25
|
+
'background',
|
|
26
|
+
'initialsColor'
|
|
27
|
+
]);
|
|
28
|
+
export const BdsBadge = defineContainer('bds-badge', defineBdsBadge, [
|
|
29
|
+
'variant',
|
|
30
|
+
'disabled'
|
|
31
|
+
]);
|
|
12
32
|
export const BdsBanner = defineContainer('bds-banner', defineBdsBanner, [
|
|
13
33
|
'variant',
|
|
14
34
|
'closable',
|
|
@@ -45,7 +65,7 @@ export const BdsCheckbox = defineContainer('bds-checkbox', defineBdsCheckbox, [
|
|
|
45
65
|
], [
|
|
46
66
|
'valueChange',
|
|
47
67
|
'bdsChange'
|
|
48
|
-
]);
|
|
68
|
+
], 'value', 'valueChange', undefined);
|
|
49
69
|
export const BdsDialog = defineContainer('bds-dialog', defineBdsDialog, [
|
|
50
70
|
'active',
|
|
51
71
|
'preventClose',
|
|
@@ -68,6 +88,9 @@ export const BdsDialog = defineContainer('bds-dialog', defineBdsDialog, [
|
|
|
68
88
|
'bdsClose',
|
|
69
89
|
'bdsMaximize'
|
|
70
90
|
]);
|
|
91
|
+
export const BdsDivider = defineContainer('bds-divider', defineBdsDivider, [
|
|
92
|
+
'orientation'
|
|
93
|
+
]);
|
|
71
94
|
export const BdsFlag = defineContainer('bds-flag', defineBdsFlag, [
|
|
72
95
|
'alignFlag',
|
|
73
96
|
'callSign',
|
|
@@ -78,6 +101,43 @@ export const BdsFlag = defineContainer('bds-flag', defineBdsFlag, [
|
|
|
78
101
|
'shape',
|
|
79
102
|
'shortName'
|
|
80
103
|
]);
|
|
104
|
+
export const BdsGrid = defineContainer('bds-grid', defineBdsGrid, [
|
|
105
|
+
'layout',
|
|
106
|
+
'rowGap'
|
|
107
|
+
]);
|
|
108
|
+
export const BdsGridItem = defineContainer('bds-grid-item', defineBdsGridItem, [
|
|
109
|
+
'colSpan',
|
|
110
|
+
'colSpanSm',
|
|
111
|
+
'colSpanMd',
|
|
112
|
+
'colSpanLg',
|
|
113
|
+
'colSpanXl',
|
|
114
|
+
'colSpan2xl',
|
|
115
|
+
'rowSpan',
|
|
116
|
+
'offset'
|
|
117
|
+
]);
|
|
118
|
+
export const BdsListMenu = defineContainer('bds-list-menu', defineBdsListMenu, [
|
|
119
|
+
'multiple',
|
|
120
|
+
'menuRole',
|
|
121
|
+
'bdsChange',
|
|
122
|
+
'bdsClicked'
|
|
123
|
+
], [
|
|
124
|
+
'bdsChange',
|
|
125
|
+
'bdsClicked'
|
|
126
|
+
]);
|
|
127
|
+
export const BdsListMenuItem = defineContainer('bds-list-menu-item', defineBdsListMenuItem, [
|
|
128
|
+
'variant',
|
|
129
|
+
'name',
|
|
130
|
+
'disabled',
|
|
131
|
+
'selected',
|
|
132
|
+
'value',
|
|
133
|
+
'activeItem',
|
|
134
|
+
'href',
|
|
135
|
+
'newTab',
|
|
136
|
+
'download',
|
|
137
|
+
'bdsSelect'
|
|
138
|
+
], [
|
|
139
|
+
'bdsSelect'
|
|
140
|
+
]);
|
|
81
141
|
export const BdsPopover = defineContainer('bds-popover', defineBdsPopover, [
|
|
82
142
|
'floatingOptions',
|
|
83
143
|
'disabled',
|
|
@@ -90,6 +150,23 @@ export const BdsSpinner = defineContainer('bds-spinner', defineBdsSpinner, [
|
|
|
90
150
|
'size',
|
|
91
151
|
'label'
|
|
92
152
|
]);
|
|
153
|
+
export const BdsStatus = defineContainer('bds-status', defineBdsStatus, [
|
|
154
|
+
'state',
|
|
155
|
+
'indicator'
|
|
156
|
+
]);
|
|
157
|
+
export const BdsTag = defineContainer('bds-tag', defineBdsTag, [
|
|
158
|
+
'multiselect',
|
|
159
|
+
'selected',
|
|
160
|
+
'closeButtonLabel',
|
|
161
|
+
'color',
|
|
162
|
+
'readonly',
|
|
163
|
+
'disabled',
|
|
164
|
+
'bdsClose',
|
|
165
|
+
'bdsSelect'
|
|
166
|
+
], [
|
|
167
|
+
'bdsClose',
|
|
168
|
+
'bdsSelect'
|
|
169
|
+
]);
|
|
93
170
|
export const BdsTextField = defineContainer('bds-text-field', defineBdsTextField, [
|
|
94
171
|
'name',
|
|
95
172
|
'disabled',
|
|
@@ -133,6 +210,24 @@ export const BdsTextField = defineContainer('bds-text-field', defineBdsTextField
|
|
|
133
210
|
'bdsClear',
|
|
134
211
|
'bdsValidationChange'
|
|
135
212
|
], 'value', 'valueChange', undefined);
|
|
213
|
+
export const BdsToggle = defineContainer('bds-toggle', defineBdsToggle, [
|
|
214
|
+
'name',
|
|
215
|
+
'disabled',
|
|
216
|
+
'required',
|
|
217
|
+
'info',
|
|
218
|
+
'error',
|
|
219
|
+
'errorMessage',
|
|
220
|
+
'checked',
|
|
221
|
+
'placement',
|
|
222
|
+
'label',
|
|
223
|
+
'helperText',
|
|
224
|
+
'value',
|
|
225
|
+
'valueChange',
|
|
226
|
+
'bdsChange'
|
|
227
|
+
], [
|
|
228
|
+
'valueChange',
|
|
229
|
+
'bdsChange'
|
|
230
|
+
], 'value', 'valueChange', undefined);
|
|
136
231
|
export const BdsTooltip = defineContainer('bds-tooltip', defineBdsTooltip, [
|
|
137
232
|
'multiline',
|
|
138
233
|
'disabled',
|
|
@@ -148,11 +243,11 @@ export const BdsTypography = defineContainer('bds-typography', defineBdsTypograp
|
|
|
148
243
|
'ellipsis',
|
|
149
244
|
'maxLines',
|
|
150
245
|
'tooltipText',
|
|
151
|
-
'
|
|
246
|
+
'required',
|
|
152
247
|
'htmlFor',
|
|
153
248
|
'href',
|
|
154
249
|
'target',
|
|
155
|
-
'
|
|
250
|
+
'downloadable',
|
|
156
251
|
'filename'
|
|
157
252
|
]);
|
|
158
253
|
//# sourceMappingURL=components.js.map
|
package/dist/components.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.js","sourceRoot":"","sources":["../lib/components.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAA4B,MAAM,oCAAoC,CAAC;AAI/F,OAAO,EAAE,mBAAmB,IAAI,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAClH,OAAO,EAAE,mBAAmB,IAAI,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAClH,OAAO,EAAE,mBAAmB,IAAI,iBAAiB,EAAE,MAAM,4DAA4D,CAAC;AACtH,OAAO,EAAE,mBAAmB,IAAI,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAClH,OAAO,EAAE,mBAAmB,IAAI,aAAa,EAAE,MAAM,wDAAwD,CAAC;AAC9G,OAAO,EAAE,mBAAmB,IAAI,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AACpH,OAAO,EAAE,mBAAmB,IAAI,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AACpH,OAAO,EAAE,mBAAmB,IAAI,kBAAkB,EAAE,MAAM,8DAA8D,CAAC;AACzH,OAAO,EAAE,mBAAmB,IAAI,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AACpH,OAAO,EAAE,mBAAmB,IAAI,mBAAmB,EAAE,MAAM,8DAA8D,CAAC;AAG1H,MAAM,CAAC,MAAM,SAAS,GAAqD,eAAe,CAAgB,YAAY,EAAE,eAAe,EAAE;IACvI,SAAS;IACT,UAAU;IACV,kBAAkB;IAClB,UAAU;CACX,EAAE;IACD,UAAU;CACX,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,SAAS,GAAqD,eAAe,CAAgB,YAAY,EAAE,eAAe,EAAE;IACvI,OAAO;IACP,UAAU;IACV,MAAM;IACN,MAAM;IACN,OAAO;IACP,SAAS;IACT,MAAM;IACN,SAAS;IACT,YAAY;IACZ,UAAU;CACX,EAAE;IACD,UAAU;CACX,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"components.js","sourceRoot":"","sources":["../lib/components.ts"],"names":[],"mappings":"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"}
|