gnui 1.2.19 → 1.2.21
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/@types/gnui.d.ts +8 -0
- package/dist/js/gnui.esm.js +847 -263
- package/dist/js/gnui.js +847 -263
- package/dist/js/gnui.min.js +6 -6
- package/dist/styles/default.css +10743 -20757
- package/dist/styles/gpi.css +10773 -20787
- package/dist/styles/green24.css +11407 -21435
- package/dist/styles/insights.css +10759 -20774
- package/dist/styles/nac.css +10773 -20796
- package/dist/styles/ztnac.css +11407 -21436
- package/package.json +9 -3
- package/styleguide/assets/components.js +213 -12
- package/styleguide/assets/js/gnui.js +847 -263
- package/styleguide/assets/js/gnui.min.js +6 -6
- package/styleguide/assets/styles/default.css +10743 -20757
- package/styleguide/assets/styles/gpi.css +10773 -20787
- package/styleguide/assets/styles/green24.css +11407 -21435
- package/styleguide/assets/styles/insights.css +10759 -20774
- package/styleguide/assets/styles/nac.css +10773 -20796
- package/styleguide/assets/styles/ztnac.css +11407 -21436
- package/styleguide/category/COLOR/index.html +1 -1
- package/styleguide/category/COMPONENT/Alert(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Bignumber/index.html +1 -1
- package/styleguide/category/COMPONENT/Breadcrumb/index.html +1 -1
- package/styleguide/category/COMPONENT/Calendar(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Card/index.html +1 -1
- package/styleguide/category/COMPONENT/Chart(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Datagrid(js)/index.html +109 -11
- package/styleguide/category/COMPONENT/Datalist(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Growl(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/JsonView(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Loader(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/MenuButton(js)/index.html +169 -21
- package/styleguide/category/COMPONENT/Message(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Modal(js)/index.html +31 -1
- package/styleguide/category/COMPONENT/Pagination(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Panel/index.html +1 -1
- package/styleguide/category/COMPONENT/Progressbar(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Tab(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Tagcloud(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Tooltip(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Tree(js)/index.html +98 -19
- package/styleguide/category/CONTROLS/Button(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Checkbox/index.html +1 -1
- package/styleguide/category/CONTROLS/Colorpicker(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Datepicker(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Dropdown(js)/index.html +67 -10
- package/styleguide/category/CONTROLS/File/index.html +1 -1
- package/styleguide/category/CONTROLS/Form/Control/index.html +1 -1
- package/styleguide/category/CONTROLS/Form/Field/index.html +54 -2
- package/styleguide/category/CONTROLS/Form/Plain/index.html +2 -2
- package/styleguide/category/CONTROLS/Input/index.html +1 -1
- package/styleguide/category/CONTROLS/MultiText(js)/index.html +32 -1
- package/styleguide/category/CONTROLS/Picklist(js)/index.html +67 -13
- package/styleguide/category/CONTROLS/Radio/index.html +1 -1
- package/styleguide/category/CONTROLS/Select/index.html +1 -1
- package/styleguide/category/CONTROLS/SelectButton(js)/index.html +2 -2
- package/styleguide/category/CONTROLS/Slider/index.html +1 -1
- package/styleguide/category/CONTROLS/SortableList(js)/index.html +2 -2
- package/styleguide/category/CONTROLS/Switch(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/SyntaxInput(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Textarea/index.html +2 -2
- package/styleguide/category/CONTROLS/Time(js)/index.html +2 -2
- package/styleguide/category/ELEMENTS/Box/index.html +1 -1
- package/styleguide/category/ELEMENTS/Icon/index.html +1 -1
- package/styleguide/category/ELEMENTS/Image/index.html +1 -1
- package/styleguide/category/ELEMENTS/List/index.html +1 -1
- package/styleguide/category/ELEMENTS/Table/index.html +1 -1
- package/styleguide/category/ELEMENTS/Tag/index.html +1 -1
- package/styleguide/category/ELEMENTS/Title/index.html +1 -1
- package/styleguide/category/LAYOUT/Container/index.html +1 -1
- package/styleguide/category/LAYOUT/Grid/index.html +1 -1
- package/styleguide/category/LAYOUT/Splitter(js)/index.html +1 -1
- package/styleguide/category/UTILITY/index.html +9 -2
- package/styleguide/category/Utils/index.html +1 -1
- package/styleguide/color.html +1 -1
- package/styleguide/index.html +1 -1
- package/styleguide/tag/javascript/index.html +4680 -4183
- package/styleguide/tag/v.0.1.0/index.html +5762 -5206
package/@types/gnui.d.ts
CHANGED
|
@@ -215,6 +215,7 @@ declare module 'gnui' {
|
|
|
215
215
|
scrollHeight?: number | string;
|
|
216
216
|
icon?: string;
|
|
217
217
|
orientation?: GNUIOrientation;
|
|
218
|
+
orientationOptions?: GNUIOrientationOptions;
|
|
218
219
|
space?: number;
|
|
219
220
|
panel?: Array<any>;
|
|
220
221
|
timer?: any;
|
|
@@ -272,9 +273,16 @@ declare module 'gnui' {
|
|
|
272
273
|
type GNUIAnimation = 'slideup' | 'fadeout';
|
|
273
274
|
type GNUIAlign = 'full' | 'left' | 'center' | 'right';
|
|
274
275
|
type GNUIOrientation = 'horizontal' | 'vertical';
|
|
276
|
+
type GNUIHorizontalColumns = number | 'auto-fit';
|
|
275
277
|
type GNUIStyle = 'inline-block' | 'full' | 'round';
|
|
276
278
|
type GNUIBorder = 'outline' | 'border' | 'stripe' | 'borderless';
|
|
277
279
|
type GNUIColor = '' | 'success' | 'warning' | 'danger' | 'info' | 'dark' | 'cancel' | 'link' | 'trans' | 'secondary' | 'mono' | 'guide' | 'invert' | 'plain';
|
|
278
280
|
type GNUISize = '' | 'small' | 'normal' | 'medium' | 'large';
|
|
279
281
|
type GNUIState = '' | 'hover' | 'focus' | 'active';
|
|
282
|
+
|
|
283
|
+
interface GNUIOrientationOptions {
|
|
284
|
+
columns?: GNUIHorizontalColumns;
|
|
285
|
+
gap?: number | string;
|
|
286
|
+
minWidth?: number | string;
|
|
287
|
+
}
|
|
280
288
|
}
|