profoundjs 7.5.0 → 7.7.0
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/LICENSE.txt +27 -25
- package/htdocs/jszip/FileSaver.min.js +2 -2
- package/htdocs/profoundui/proddata/css/atrium.css +201 -201
- package/htdocs/profoundui/proddata/css/designer_respeditor.css +91 -91
- package/htdocs/profoundui/proddata/css/ipademulator.css +38 -38
- package/htdocs/profoundui/proddata/css/iphoneemulator.css +29 -29
- package/htdocs/profoundui/proddata/css/jumpstart.css +442 -442
- package/htdocs/profoundui/proddata/css/key_management.css +122 -122
- package/htdocs/profoundui/proddata/css/logic.css +1674 -1669
- package/htdocs/profoundui/proddata/css/markdown.css +754 -754
- package/htdocs/profoundui/proddata/css/profoundai.css +42 -0
- package/htdocs/profoundui/proddata/css/puisplash.css +186 -186
- package/htdocs/profoundui/proddata/css/qtips.css +32 -32
- package/htdocs/profoundui/proddata/html/genieframe.html +25 -25
- package/htdocs/profoundui/proddata/js/designer.js +4239 -4188
- package/htdocs/profoundui/proddata/js/key_management.js +34 -34
- package/htdocs/profoundui/proddata/js/profoundai.js +27 -0
- package/htdocs/profoundui/proddata/js/rich-display-react-component.js +45 -45
- package/htdocs/profoundui/proddata/js/rich-display-vue-component.js +28 -28
- package/htdocs/profoundui/proddata/js/runtime.js +1424 -1416
- package/htdocs/profoundui/proddata/js/soapclient.js +419 -419
- package/htdocs/profoundui/proddata/typings/profoundjs.d.ts +881 -881
- package/htdocs/profoundui/proddata/typings/profoundui.d.ts +388 -388
- package/htdocs/profoundui/userdata/atrium themes/css/xtheme-gray.css +414 -414
- package/htdocs/profoundui/userdata/atrium themes/css/xtheme-olive.css +623 -623
- package/htdocs/profoundui/userdata/atrium themes/css/xtheme-slate.css +672 -672
- package/htdocs/profoundui/userdata/atrium themes/css/xtheme-steel.css +10437 -10437
- package/htdocs/profoundui/userdata/css/atrium_banner.css +13 -13
- package/htdocs/profoundui/userdata/css/atrium_home.css +37 -37
- package/htdocs/profoundui/userdata/custom/themes/enhanced.js +104 -104
- package/htdocs/profoundui/userdata/custom/themes/hybrid.js +109 -109
- package/htdocs/profoundui/userdata/custom/themes/standard.js +68 -68
- package/htdocs/profoundui/userdata/custom/widgets/googlemaps.js +139 -139
- package/htdocs/profoundui/userdata/custom/widgets/listbox.js +37 -37
- package/htdocs/profoundui/userdata/custom/widgets/panel.js +74 -74
- package/htdocs/profoundui/userdata/custom/widgets/styled_button.js +71 -71
- package/htdocs/profoundui/userdata/custom/widgets/tabpanel.js +61 -61
- package/htdocs/profoundui/userdata/genie skins/Classic/Classic.css +562 -562
- package/htdocs/profoundui/userdata/genie skins/Classic/custom.js +3 -3
- package/htdocs/profoundui/userdata/genie skins/Gradient/Gradient.css +616 -616
- package/htdocs/profoundui/userdata/genie skins/Gradient/adjusted columns custom.js +83 -83
- package/htdocs/profoundui/userdata/genie skins/Gradient/custom.js +83 -83
- package/htdocs/profoundui/userdata/genie skins/Hybrid/Hybrid.css +616 -616
- package/htdocs/profoundui/userdata/genie skins/Hybrid/custom.js +330 -330
- package/htdocs/profoundui/userdata/genie skins/Plain/Plain.css +546 -546
- package/htdocs/profoundui/userdata/genie skins/Plain/custom.js +6 -6
- package/htdocs/profoundui/userdata/genie skins/Skyline/Skyline.css +753 -753
- package/htdocs/profoundui/userdata/genie skins/Skyline/adjusted columns custom.js +97 -97
- package/htdocs/profoundui/userdata/genie skins/Skyline/custom.js +97 -97
- package/htdocs/profoundui/userdata/genie skins/Tablet/Tablet.css +743 -743
- package/htdocs/profoundui/userdata/genie skins/Tablet/custom.js +153 -153
- package/htdocs/profoundui/userdata/samples/ordentry/OrdEntry.js +92 -92
- package/package.json +3 -3
- package/profound.jse +1 -1
- package/setup/pjsdist.savf +0 -0
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
// Example - creating a custom tab panel
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// Add a new tab style
|
|
7
|
-
// This will appear as an option in the "tab panel style" property of a tab panel
|
|
8
|
-
pui.widgets.tabStyles["Custom Tab Panel"] = {
|
|
9
|
-
// determines if images are provided in the /images/tabs/ folder for drawing the tabs
|
|
10
|
-
useImages: false,
|
|
11
|
-
|
|
12
|
-
// determines the tab height in pixels
|
|
13
|
-
height: 15,
|
|
14
|
-
|
|
15
|
-
// default background color
|
|
16
|
-
defaultBackColor: "#FAE5AF",
|
|
17
|
-
|
|
18
|
-
// highlight color
|
|
19
|
-
hiColor: "#666699"
|
|
20
|
-
|
|
21
|
-
// optional parameters...
|
|
22
|
-
//hiImages: // determines if hover highlight images are provided (true/false)
|
|
23
|
-
//leftWidth: // width of the image of the left side of the tab
|
|
24
|
-
//rightWidth: // width of the image of the right side of the tab
|
|
25
|
-
//selColor: // selected color
|
|
26
|
-
//borderColor:
|
|
27
|
-
//leftMargin:
|
|
28
|
-
//hiUnderline: // true or false
|
|
29
|
-
//selBold: // bold when selected (true/false)
|
|
30
|
-
//separated: // true or false
|
|
31
|
-
//backBar: // true or false
|
|
32
|
-
//backBarColor:
|
|
33
|
-
//borderSize:
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
// Now, add an entry to the Widgets Toolbox
|
|
40
|
-
pui.toolbox.add({
|
|
41
|
-
// specifies category - this can be an existing category or a new one
|
|
42
|
-
// if the category does not exist, it is created on the fly
|
|
43
|
-
category: "Custom Widgets",
|
|
44
|
-
|
|
45
|
-
widget: "tab panel",
|
|
46
|
-
text: "Custom Tab Panel",
|
|
47
|
-
icon: "/profoundui/proddata/images/tabs/custom/icon.png",
|
|
48
|
-
|
|
49
|
-
// this determines the look of the drag/drop proxy as we drag the widget element off the toolbox
|
|
50
|
-
// in this case, an image of the tab panel is used
|
|
51
|
-
proxyHeight: 202,
|
|
52
|
-
proxyWidth: 302,
|
|
53
|
-
proxyHTML: '<img src="/profoundui/proddata/images/tabs/custom/proxy.png" style="height: 202px; width: 302px;">',
|
|
54
|
-
|
|
55
|
-
// additional default property values can be specified here
|
|
56
|
-
defaults: {
|
|
57
|
-
"tab panel style": "Custom Tab Panel"
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
});
|
|
61
|
-
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
// Example - creating a custom tab panel
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// Add a new tab style
|
|
7
|
+
// This will appear as an option in the "tab panel style" property of a tab panel
|
|
8
|
+
pui.widgets.tabStyles["Custom Tab Panel"] = {
|
|
9
|
+
// determines if images are provided in the /images/tabs/ folder for drawing the tabs
|
|
10
|
+
useImages: false,
|
|
11
|
+
|
|
12
|
+
// determines the tab height in pixels
|
|
13
|
+
height: 15,
|
|
14
|
+
|
|
15
|
+
// default background color
|
|
16
|
+
defaultBackColor: "#FAE5AF",
|
|
17
|
+
|
|
18
|
+
// highlight color
|
|
19
|
+
hiColor: "#666699"
|
|
20
|
+
|
|
21
|
+
// optional parameters...
|
|
22
|
+
//hiImages: // determines if hover highlight images are provided (true/false)
|
|
23
|
+
//leftWidth: // width of the image of the left side of the tab
|
|
24
|
+
//rightWidth: // width of the image of the right side of the tab
|
|
25
|
+
//selColor: // selected color
|
|
26
|
+
//borderColor:
|
|
27
|
+
//leftMargin:
|
|
28
|
+
//hiUnderline: // true or false
|
|
29
|
+
//selBold: // bold when selected (true/false)
|
|
30
|
+
//separated: // true or false
|
|
31
|
+
//backBar: // true or false
|
|
32
|
+
//backBarColor:
|
|
33
|
+
//borderSize:
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
// Now, add an entry to the Widgets Toolbox
|
|
40
|
+
pui.toolbox.add({
|
|
41
|
+
// specifies category - this can be an existing category or a new one
|
|
42
|
+
// if the category does not exist, it is created on the fly
|
|
43
|
+
category: "Custom Widgets",
|
|
44
|
+
|
|
45
|
+
widget: "tab panel",
|
|
46
|
+
text: "Custom Tab Panel",
|
|
47
|
+
icon: "/profoundui/proddata/images/tabs/custom/icon.png",
|
|
48
|
+
|
|
49
|
+
// this determines the look of the drag/drop proxy as we drag the widget element off the toolbox
|
|
50
|
+
// in this case, an image of the tab panel is used
|
|
51
|
+
proxyHeight: 202,
|
|
52
|
+
proxyWidth: 302,
|
|
53
|
+
proxyHTML: '<img src="/profoundui/proddata/images/tabs/custom/proxy.png" style="height: 202px; width: 302px;">',
|
|
54
|
+
|
|
55
|
+
// additional default property values can be specified here
|
|
56
|
+
defaults: {
|
|
57
|
+
"tab panel style": "Custom Tab Panel"
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
});
|
|
61
|
+
|