ngx-tethys 22.0.0 → 22.0.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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [22.0.1](github.com/atinc/ngx-tethys/compare/22.0.0...22.0.1) (2026-09-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **style:** fix input style #TINFR-4053 ([#3934](/github.com/atinc/ngx-tethys/issues/3934)) ([cf5c4ab](github.com/atinc/ngx-tethys/commits/cf5c4ab951c5c7a89caaf940d7fef4d443f635a5)), closes [#TINFR-4053](github.com/atinc/ngx-tethys/issues/TINFR-4053)
|
|
11
|
+
|
|
5
12
|
# [22.0.0](github.com/atinc/ngx-tethys/compare/22.0.0-next.4...22.0.0) (2026-09-09)
|
|
6
13
|
|
|
7
14
|
|
package/fesm2022/ngx-tethys.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Version, InjectionToken, makeEnvironmentProviders } from '@angular/core';
|
|
2
2
|
|
|
3
|
-
const VERSION = new Version('22.0.
|
|
3
|
+
const VERSION = new Version('22.0.1');
|
|
4
4
|
|
|
5
5
|
const THY_GLOBAL_CONFIG = new InjectionToken('thy-global-config');
|
|
6
6
|
function getOverlayGlobalConfig(globalConfig) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngx-tethys.mjs","sources":["../../../src/version.ts","../../../src/core/global-config.ts","../../../src/core/provide.ts","../../../src/ngx-tethys.ts"],"sourcesContent":["import { Version } from '@angular/core';\n\nexport const VERSION = new Version('22.0.
|
|
1
|
+
{"version":3,"file":"ngx-tethys.mjs","sources":["../../../src/version.ts","../../../src/core/global-config.ts","../../../src/core/provide.ts","../../../src/ngx-tethys.ts"],"sourcesContent":["import { Version } from '@angular/core';\n\nexport const VERSION = new Version('22.0.1');\n","import { InjectionToken } from '@angular/core';\n\nexport interface ThyOverlayGlobalConfig {\n /**\n * Whether overlay-based components can automatically choose a better position\n * from their fallback positions when the preferred placement does not fit.\n */\n flexiblePosition?: boolean;\n\n /**\n * Whether overlay-based components can be pushed on-screen if none of the provided positions fit.\n */\n canPush?: boolean;\n}\n\nexport interface ThyGlobalConfig {\n overlay?: ThyOverlayGlobalConfig;\n}\n\nexport const THY_GLOBAL_CONFIG = new InjectionToken<ThyGlobalConfig>('thy-global-config');\n\nexport function getOverlayGlobalConfig(globalConfig?: ThyGlobalConfig | null): ThyOverlayGlobalConfig {\n return globalConfig?.overlay ?? {};\n}\n","import { EnvironmentProviders, Provider, makeEnvironmentProviders } from '@angular/core';\nimport { THY_GLOBAL_CONFIG, ThyGlobalConfig } from './global-config';\n\nexport type ThyTethysFeature = Provider | EnvironmentProviders;\n\nexport function provideTethys(...features: ThyTethysFeature[]): EnvironmentProviders {\n return makeEnvironmentProviders(features);\n}\n\nexport function withGlobalConfig(config: ThyGlobalConfig): EnvironmentProviders {\n return makeEnvironmentProviders([{ provide: THY_GLOBAL_CONFIG, useValue: config }]);\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;MAEa,OAAO,GAAG,IAAI,OAAO,CAAC,QAAQ;;MCiB9B,iBAAiB,GAAG,IAAI,cAAc,CAAkB,mBAAmB;AAElF,SAAU,sBAAsB,CAAC,YAAqC,EAAA;AACxE,IAAA,OAAO,YAAY,EAAE,OAAO,IAAI,EAAE;AACtC;;AClBM,SAAU,aAAa,CAAC,GAAG,QAA4B,EAAA;AACzD,IAAA,OAAO,wBAAwB,CAAC,QAAQ,CAAC;AAC7C;AAEM,SAAU,gBAAgB,CAAC,MAAuB,EAAA;AACpD,IAAA,OAAO,wBAAwB,CAAC,CAAC,EAAE,OAAO,EAAE,iBAAiB,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC,CAAC;AACvF;;ACXA;;AAEG;;;;"}
|
package/form/styles/forms.scss
CHANGED
|
@@ -22,6 +22,15 @@
|
|
|
22
22
|
background-clip: padding-box;
|
|
23
23
|
border: bootstrap-variables.$input-border-width solid variables.$input-border-color;
|
|
24
24
|
|
|
25
|
+
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
|
26
|
+
@if bootstrap-variables.$enable-rounded {
|
|
27
|
+
// Manually use the if/else instead of the mixin to account for iOS override
|
|
28
|
+
border-radius: variables.$input-border-radius-md;
|
|
29
|
+
} @else {
|
|
30
|
+
// Otherwise undo the iOS default
|
|
31
|
+
border-radius: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
25
34
|
@include transition.transition(bootstrap-variables.$input-transition);
|
|
26
35
|
|
|
27
36
|
// Unstyle the caret on `<select>`s in IE10+.
|
|
@@ -139,13 +139,17 @@
|
|
|
139
139
|
.input-group-text {
|
|
140
140
|
display: flex;
|
|
141
141
|
align-items: center;
|
|
142
|
+
padding: variables.$input-padding-y-md variables.$input-padding-x-md;
|
|
142
143
|
margin-bottom: 0; // Allow use of <label> elements by overriding our default margin-bottom
|
|
144
|
+
font-size: variables.$font-size-base;
|
|
143
145
|
font-weight: bootstrap-variables.$font-weight-normal;
|
|
146
|
+
line-height: bootstrap-variables.$input-line-height;
|
|
144
147
|
color: variables.$input-group-addon-color;
|
|
145
148
|
text-align: center;
|
|
146
149
|
white-space: nowrap;
|
|
147
150
|
background-color: variables.$input-group-addon-bg;
|
|
148
151
|
border: bootstrap-variables.$input-border-width solid bootstrap-variables.$input-group-addon-border-color;
|
|
152
|
+
@include border-radius.border-radius(variables.$input-border-radius-md);
|
|
149
153
|
|
|
150
154
|
// Nuke default margins from checkboxes and radios to vertically center within.
|
|
151
155
|
input[type='radio'],
|
package/package.json
CHANGED
package/schematics/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "22.0.
|
|
1
|
+
export declare const VERSION = "22.0.1";
|
package/schematics/version.js
CHANGED