@testgorilla/tgo-ui 3.10.17 → 3.10.19
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/components/button/button.model.d.ts +1 -1
- package/components/field/field.component.d.ts +8 -1
- package/components/inline-field/inline-field.component.d.ts +153 -0
- package/components/inline-field/inline-field.component.module.d.ts +13 -0
- package/components/inline-field/inline-field.model.d.ts +107 -0
- package/components/overflow-menu/overflow-menu.component.d.ts +9 -6
- package/components/overflow-menu/overflow-menu.model.d.ts +2 -1
- package/components/phone-input/phone-input.component.d.ts +1 -1
- package/components/skeleton/skeleton.component.d.ts +1 -1
- package/esm2022/components/button/button.component.mjs +6 -6
- package/esm2022/components/button/button.component.module.mjs +4 -4
- package/esm2022/components/button/button.model.mjs +1 -1
- package/esm2022/components/field/field.component.mjs +12 -3
- package/esm2022/components/filter-button/filter-button.component.mjs +1 -1
- package/esm2022/components/inline-field/inline-field.component.mjs +320 -0
- package/esm2022/components/inline-field/inline-field.component.module.mjs +43 -0
- package/esm2022/components/inline-field/inline-field.model.mjs +2 -0
- package/esm2022/components/multi-input/multi-input.component.mjs +1 -1
- package/esm2022/components/overflow-menu/overflow-menu.component.mjs +36 -22
- package/esm2022/components/overflow-menu/overflow-menu.model.mjs +1 -1
- package/esm2022/components/password-criteria/password.component.mjs +1 -1
- package/esm2022/components/phone-input/phone-input.component.mjs +8 -7
- package/esm2022/public-api.mjs +6 -1
- package/fesm2022/testgorilla-tgo-ui.mjs +408 -36
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -28,6 +28,9 @@ export * from './components/elevation-shadow/elevation-shadow.constant';
|
|
|
28
28
|
export * from './components/field/field.component';
|
|
29
29
|
export * from './components/field/field.component.module';
|
|
30
30
|
export * from './components/field/field.model';
|
|
31
|
+
export * from './components/inline-field/inline-field.component';
|
|
32
|
+
export * from './components/inline-field/inline-field.component.module';
|
|
33
|
+
export * from './components/inline-field/inline-field.model';
|
|
31
34
|
export * from './components/file-upload/file-upload.component';
|
|
32
35
|
export * from './components/file-upload/file-upload.component.module';
|
|
33
36
|
export * from './components/icon/icon.component';
|
|
@@ -130,6 +133,7 @@ export * from './components/tabs/tabs.model';
|
|
|
130
133
|
export * from './utils/localization/language.model';
|
|
131
134
|
export * from './utils/localization/language.service';
|
|
132
135
|
export * from './components/overflow-menu/overflow-menu.component';
|
|
136
|
+
export * from './components/overflow-menu/overflow-menu.model';
|
|
133
137
|
export * from './components/overflow-menu/overflow-menu.component.module';
|
|
134
138
|
export * from './models/application-theme.model';
|
|
135
139
|
export * from './components/segmented-button/segmented-button.component';
|