@getflip/swirl-components-angular 0.36.0 → 0.37.1
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +40 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +10 -10
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +9 -9
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +9 -9
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +4 -3
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +7 -7
|
@@ -162,7 +162,7 @@ export declare class SwirlBox {
|
|
|
162
162
|
protected el: HTMLElement;
|
|
163
163
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
164
164
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlBox, never>;
|
|
165
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlBox, "swirl-box", never, { "bordered": "bordered"; "centerBlock": "centerBlock"; "centerInline": "centerInline"; "cover": "cover"; "maxWidth": "maxWidth"; "overflow": "overflow"; "padding": "padding"; }, {}, never, ["*"], false>;
|
|
165
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlBox, "swirl-box", never, { "bordered": "bordered"; "centerBlock": "centerBlock"; "centerInline": "centerInline"; "cover": "cover"; "maxWidth": "maxWidth"; "overflow": "overflow"; "padding": "padding"; "paddingBlockEnd": "paddingBlockEnd"; "paddingBlockStart": "paddingBlockStart"; "paddingInlineEnd": "paddingInlineEnd"; "paddingInlineStart": "paddingInlineStart"; }, {}, never, ["*"], false>;
|
|
166
166
|
}
|
|
167
167
|
export declare interface SwirlButton extends Components.SwirlButton {
|
|
168
168
|
}
|
|
@@ -1454,6 +1454,7 @@ export declare interface SwirlOptionList extends Components.SwirlOptionList {
|
|
|
1454
1454
|
*
|
|
1455
1455
|
*/
|
|
1456
1456
|
itemDrop: EventEmitter<CustomEvent<{
|
|
1457
|
+
item: HTMLSwirlOptionListItemElement;
|
|
1457
1458
|
oldIndex: number;
|
|
1458
1459
|
newIndex: number;
|
|
1459
1460
|
}>>;
|
|
@@ -1502,7 +1503,7 @@ export declare class SwirlPagination {
|
|
|
1502
1503
|
protected el: HTMLElement;
|
|
1503
1504
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1504
1505
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlPagination, never>;
|
|
1505
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlPagination, "swirl-pagination", never, { "
|
|
1506
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlPagination, "swirl-pagination", never, { "firstPageButtonLabel": "firstPageButtonLabel"; "label": "label"; "lastPageButtonLabel": "lastPageButtonLabel"; "nextButtonLabel": "nextButtonLabel"; "page": "page"; "pageLabel": "pageLabel"; "pageSelectLabel": "pageSelectLabel"; "pages": "pages"; "prevButtonLabel": "prevButtonLabel"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
1506
1507
|
}
|
|
1507
1508
|
export declare interface SwirlPdfReader extends Components.SwirlPdfReader {
|
|
1508
1509
|
}
|
|
@@ -1619,7 +1620,7 @@ export declare class SwirlSearch {
|
|
|
1619
1620
|
protected el: HTMLElement;
|
|
1620
1621
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1621
1622
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlSearch, never>;
|
|
1622
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSearch, "swirl-search", never, { "autoFocus": "autoFocus"; "clearButtonLabel": "clearButtonLabel"; "disabled": "disabled"; "inputId": "inputId"; "inputName": "inputName"; "label": "label"; "placeholder": "placeholder"; "value": "value"; }, {}, never, ["*"], false>;
|
|
1623
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlSearch, "swirl-search", never, { "autoFocus": "autoFocus"; "clearButtonLabel": "clearButtonLabel"; "disabled": "disabled"; "inputId": "inputId"; "inputName": "inputName"; "label": "label"; "placeholder": "placeholder"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
1623
1624
|
}
|
|
1624
1625
|
export declare interface SwirlSelect extends Components.SwirlSelect {
|
|
1625
1626
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.37.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^14.1.0",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^14.1.0",
|
|
16
16
|
"@angular/router": "^14.1.0",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.38.1",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -317,13 +317,13 @@ export declare interface SwirlBox extends Components.SwirlBox {}
|
|
|
317
317
|
|
|
318
318
|
@ProxyCmp({
|
|
319
319
|
defineCustomElementFn: undefined,
|
|
320
|
-
inputs: ['bordered', 'centerBlock', 'centerInline', 'cover', 'maxWidth', 'overflow', 'padding']
|
|
320
|
+
inputs: ['bordered', 'centerBlock', 'centerInline', 'cover', 'maxWidth', 'overflow', 'padding', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart']
|
|
321
321
|
})
|
|
322
322
|
@Component({
|
|
323
323
|
selector: 'swirl-box',
|
|
324
324
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
325
325
|
template: '<ng-content></ng-content>',
|
|
326
|
-
inputs: ['bordered', 'centerBlock', 'centerInline', 'cover', 'maxWidth', 'overflow', 'padding']
|
|
326
|
+
inputs: ['bordered', 'centerBlock', 'centerInline', 'cover', 'maxWidth', 'overflow', 'padding', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart']
|
|
327
327
|
})
|
|
328
328
|
export class SwirlBox {
|
|
329
329
|
protected el: HTMLElement;
|
|
@@ -3269,7 +3269,7 @@ export declare interface SwirlOptionList extends Components.SwirlOptionList {
|
|
|
3269
3269
|
/**
|
|
3270
3270
|
*
|
|
3271
3271
|
*/
|
|
3272
|
-
itemDrop: EventEmitter<CustomEvent<{ oldIndex: number; newIndex: number }>>;
|
|
3272
|
+
itemDrop: EventEmitter<CustomEvent<{ item: HTMLSwirlOptionListItemElement; oldIndex: number; newIndex: number; }>>;
|
|
3273
3273
|
/**
|
|
3274
3274
|
*
|
|
3275
3275
|
*/
|
|
@@ -3356,13 +3356,13 @@ export declare interface SwirlPagination extends Components.SwirlPagination {
|
|
|
3356
3356
|
|
|
3357
3357
|
@ProxyCmp({
|
|
3358
3358
|
defineCustomElementFn: undefined,
|
|
3359
|
-
inputs: ['
|
|
3359
|
+
inputs: ['firstPageButtonLabel', 'label', 'lastPageButtonLabel', 'nextButtonLabel', 'page', 'pageLabel', 'pageSelectLabel', 'pages', 'prevButtonLabel', 'variant']
|
|
3360
3360
|
})
|
|
3361
3361
|
@Component({
|
|
3362
3362
|
selector: 'swirl-pagination',
|
|
3363
3363
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3364
3364
|
template: '<ng-content></ng-content>',
|
|
3365
|
-
inputs: ['
|
|
3365
|
+
inputs: ['firstPageButtonLabel', 'label', 'lastPageButtonLabel', 'nextButtonLabel', 'page', 'pageLabel', 'pageSelectLabel', 'pages', 'prevButtonLabel', 'variant']
|
|
3366
3366
|
})
|
|
3367
3367
|
export class SwirlPagination {
|
|
3368
3368
|
protected el: HTMLElement;
|
|
@@ -3601,13 +3601,13 @@ export declare interface SwirlSearch extends Components.SwirlSearch {
|
|
|
3601
3601
|
|
|
3602
3602
|
@ProxyCmp({
|
|
3603
3603
|
defineCustomElementFn: undefined,
|
|
3604
|
-
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value']
|
|
3604
|
+
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value', 'variant']
|
|
3605
3605
|
})
|
|
3606
3606
|
@Component({
|
|
3607
3607
|
selector: 'swirl-search',
|
|
3608
3608
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3609
3609
|
template: '<ng-content></ng-content>',
|
|
3610
|
-
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value']
|
|
3610
|
+
inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value', 'variant']
|
|
3611
3611
|
})
|
|
3612
3612
|
export class SwirlSearch {
|
|
3613
3613
|
protected el: HTMLElement;
|